In [1]:
import pandas as pd
import numpy as np
In [2]:
pd.set_option("display.max_columns",None)
df=pd.read_csv("E:\\KVR-PANDAS-EXCLUSIVE\\DATAFRAME\\EMPLOYEE SALARY REPORT\\Salaries.csv")
print(df)
            Id       EmployeeName  \
0            1     NATHANIEL FORD   
1            2       GARY JIMENEZ   
2            3     ALBERT PARDINI   
3            4  CHRISTOPHER CHONG   
4            5    PATRICK GARDNER   
...        ...                ...   
148649  148650      Roy I Tillery   
148650  148651       Not provided   
148651  148652       Not provided   
148652  148653       Not provided   
148653  148654          Joe Lopez   

                                              JobTitle    BasePay  \
0       GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY  167411.18   
1                      CAPTAIN III (POLICE DEPARTMENT)  155966.02   
2                      CAPTAIN III (POLICE DEPARTMENT)  212739.13   
3                 WIRE ROPE CABLE MAINTENANCE MECHANIC   77916.00   
4         DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT)  134401.60   
...                                                ...        ...   
148649                                       Custodian       0.00   
148650                                    Not provided        NaN   
148651                                    Not provided        NaN   
148652                                    Not provided        NaN   
148653                      Counselor, Log Cabin Ranch       0.00   

        OvertimePay   OtherPay  Benefits   TotalPay  TotalPayBenefits  Year  \
0              0.00  400184.25       NaN  567595.43         567595.43  2011   
1         245131.88  137811.38       NaN  538909.28         538909.28  2011   
2         106088.18   16452.60       NaN  335279.91         335279.91  2011   
3          56120.71  198306.90       NaN  332343.61         332343.61  2011   
4           9737.00  182234.59       NaN  326373.19         326373.19  2011   
...             ...        ...       ...        ...               ...   ...   
148649         0.00       0.00       0.0       0.00              0.00  2014   
148650          NaN        NaN       NaN       0.00              0.00  2014   
148651          NaN        NaN       NaN       0.00              0.00  2014   
148652          NaN        NaN       NaN       0.00              0.00  2014   
148653         0.00    -618.13       0.0    -618.13           -618.13  2014   

        Notes         Agency  Status  
0         NaN  San Francisco     NaN  
1         NaN  San Francisco     NaN  
2         NaN  San Francisco     NaN  
3         NaN  San Francisco     NaN  
4         NaN  San Francisco     NaN  
...       ...            ...     ...  
148649    NaN  San Francisco     NaN  
148650    NaN  San Francisco     NaN  
148651    NaN  San Francisco     NaN  
148652    NaN  San Francisco     NaN  
148653    NaN  San Francisco     NaN  

[148654 rows x 13 columns]
In [ ]:
for records in df.iterrows():
    print(records)
(0, Id                                                               1
EmployeeName                                        NATHANIEL FORD
JobTitle            GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY
BasePay                                                  167411.18
OvertimePay                                                    0.0
OtherPay                                                 400184.25
Benefits                                                       NaN
TotalPay                                                 567595.43
TotalPayBenefits                                         567595.43
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 0, dtype: object)
(1, Id                                                2
EmployeeName                           GARY JIMENEZ
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   155966.02
OvertimePay                               245131.88
OtherPay                                  137811.38
Benefits                                        NaN
TotalPay                                  538909.28
TotalPayBenefits                          538909.28
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 1, dtype: object)
(2, Id                                                3
EmployeeName                         ALBERT PARDINI
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   212739.13
OvertimePay                               106088.18
OtherPay                                    16452.6
Benefits                                        NaN
TotalPay                                  335279.91
TotalPayBenefits                          335279.91
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2, dtype: object)
(3, Id                                                     4
EmployeeName                           CHRISTOPHER CHONG
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                          77916.0
OvertimePay                                     56120.71
OtherPay                                        198306.9
Benefits                                             NaN
TotalPay                                       332343.61
TotalPayBenefits                               332343.61
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 3, dtype: object)
(4, Id                                                             5
EmployeeName                                     PATRICK GARDNER
JobTitle            DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT)
BasePay                                                 134401.6
OvertimePay                                               9737.0
OtherPay                                               182234.59
Benefits                                                     NaN
TotalPay                                               326373.19
TotalPayBenefits                                       326373.19
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4, dtype: object)
(5, Id                                          6
EmployeeName                   DAVID SULLIVAN
JobTitle            ASSISTANT DEPUTY CHIEF II
BasePay                              118602.0
OvertimePay                            8601.0
OtherPay                            189082.74
Benefits                                  NaN
TotalPay                            316285.74
TotalPayBenefits                    316285.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5, dtype: object)
(6, Id                                                   7
EmployeeName                                 ALSON LEE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       92492.01
OvertimePay                                    89062.9
OtherPay                                     134426.14
Benefits                                           NaN
TotalPay                                     315981.05
TotalPayBenefits                             315981.05
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6, dtype: object)
(7, Id                                               8
EmployeeName                         DAVID KUSHNER
JobTitle            DEPUTY DIRECTOR OF INVESTMENTS
BasePay                                  256576.96
OvertimePay                                    0.0
OtherPay                                   51322.5
Benefits                                       NaN
TotalPay                                 307899.46
TotalPayBenefits                         307899.46
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7, dtype: object)
(8, Id                                                   9
EmployeeName                            MICHAEL MORRIS
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      176932.64
OvertimePay                                   86362.68
OtherPay                                      40132.23
Benefits                                           NaN
TotalPay                                     303427.55
TotalPayBenefits                             303427.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8, dtype: object)
(9, Id                                                      10
EmployeeName                            JOANNE HAYES-WHITE
JobTitle            CHIEF OF DEPARTMENT, (FIRE DEPARTMENT)
BasePay                                           285262.0
OvertimePay                                            0.0
OtherPay                                          17115.73
Benefits                                               NaN
TotalPay                                         302377.73
TotalPayBenefits                                 302377.73
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 9, dtype: object)
(10, Id                                                                11
EmployeeName                                           ARTHUR KENNEY
JobTitle            ASSISTANT CHIEF OF DEPARTMENT, (FIRE DEPARTMENT)
BasePay                                                    194999.39
OvertimePay                                                 71344.88
OtherPay                                                     33149.9
Benefits                                                         NaN
TotalPay                                                   299494.17
TotalPayBenefits                                           299494.17
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 10, dtype: object)
(11, Id                                               12
EmployeeName                       PATRICIA JACKSON
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                     99722.0
OvertimePay                                87082.62
OtherPay                                   110804.3
Benefits                                        NaN
TotalPay                                  297608.92
TotalPayBenefits                          297608.92
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11, dtype: object)
(12, Id                                           13
EmployeeName                  EDWARD HARRINGTON
JobTitle            EXECUTIVE CONTRACT EMPLOYEE
BasePay                               294580.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              294580.02
TotalPayBenefits                      294580.02
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 12, dtype: object)
(13, Id                                 14
EmployeeName              JOHN MARTIN
JobTitle            DEPARTMENT HEAD V
BasePay                     271329.03
OvertimePay                       0.0
OtherPay                     21342.59
Benefits                          NaN
TotalPay                    292671.62
TotalPayBenefits            292671.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 13, dtype: object)
(14, Id                                                  15
EmployeeName                            DAVID FRANKLIN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      174872.64
OvertimePay                                    74050.3
OtherPay                                      37424.11
Benefits                                           NaN
TotalPay                                     286347.05
TotalPayBenefits                             286347.05
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 14, dtype: object)
(15, Id                                                  16
EmployeeName                           RICHARD CORRIEA
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                      198778.01
OvertimePay                                    73478.2
OtherPay                                      13957.65
Benefits                                           NaN
TotalPay                                     286213.86
TotalPayBenefits                             286213.86
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 15, dtype: object)
(16, Id                                 17
EmployeeName                 AMY HART
JobTitle            DEPARTMENT HEAD V
BasePay                     268604.57
OvertimePay                       0.0
OtherPay                     16115.86
Benefits                          NaN
TotalPay                    284720.43
TotalPayBenefits            284720.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 16, dtype: object)
(17, Id                                                     18
EmployeeName                               SEBASTIAN WONG
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.87
OvertimePay                                     119397.26
OtherPay                                         18625.08
Benefits                                              NaN
TotalPay                                        278569.21
TotalPayBenefits                                278569.21
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 17, dtype: object)
(18, Id                                                  19
EmployeeName                                MARTY ROSS
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.63
OvertimePay                                   69626.12
OtherPay                                      38115.47
Benefits                                           NaN
TotalPay                                     276434.22
TotalPayBenefits                             276434.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 18, dtype: object)
(19, Id                                          20
EmployeeName                     ELLEN MOFFATT
JobTitle            ASSISTANT MEDICAL EXAMINER
BasePay                              257510.59
OvertimePay                             880.16
OtherPay                               16159.5
Benefits                                   NaN
TotalPay                             274550.25
TotalPayBenefits                     274550.25
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 19, dtype: object)
(20, Id                                          21
EmployeeName                        VENUS AZAR
JobTitle            ASSISTANT MEDICAL EXAMINER
BasePay                              257510.48
OvertimePay                                0.0
OtherPay                              16679.79
Benefits                                   NaN
TotalPay                             274190.27
TotalPayBenefits                     274190.27
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 20, dtype: object)
(21, Id                                          22
EmployeeName                      JUDY MELINEK
JobTitle            ASSISTANT MEDICAL EXAMINER
BasePay                              257510.44
OvertimePay                             377.21
OtherPay                              15883.56
Benefits                                   NaN
TotalPay                             273771.21
TotalPayBenefits                     273771.21
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 21, dtype: object)
(22, Id                                         23
EmployeeName                    GEORGE GARCIA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                          93200.58
OtherPay                             39955.25
Benefits                                  NaN
TotalPay                            273702.71
TotalPayBenefits                    273702.71
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 22, dtype: object)
(23, Id                                                  24
EmployeeName                             VICTOR WYRSCH
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.63
OvertimePay                                   77896.14
OtherPay                                      24083.86
Benefits                                           NaN
TotalPay                                     270672.63
TotalPayBenefits                             270672.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 23, dtype: object)
(24, Id                                         25
EmployeeName                  JOSEPH DRISCOLL
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.86
OvertimePay                          97868.77
OtherPay                             31909.28
Benefits                                  NaN
TotalPay                            270324.91
TotalPayBenefits                    270324.91
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 24, dtype: object)
(25, Id                               26
EmployeeName           GREGORY SUHR
JobTitle            CHIEF OF POLICE
BasePay                   256470.41
OvertimePay                     0.0
OtherPay                   11522.18
Benefits                        NaN
TotalPay                  267992.59
TotalPayBenefits          267992.59
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 25, dtype: object)
(26, Id                                         27
EmployeeName                      JOHN HANLEY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                               92080.8
OvertimePay                           40008.0
OtherPay                            133695.76
Benefits                                  NaN
TotalPay                            265784.56
TotalPayBenefits                    265784.56
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 26, dtype: object)
(27, Id                                                  28
EmployeeName                            RAYMOND GUZMAN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.59
OvertimePay                                   80706.88
OtherPay                                      16063.99
Benefits                                           NaN
TotalPay                                     265463.46
TotalPayBenefits                             265463.46
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 27, dtype: object)
(28, Id                                                    29
EmployeeName                              DENISE SCHMITT
JobTitle            DEPUTY CHIEF III (POLICE DEPARTMENT)
BasePay                                         261717.6
OvertimePay                                          0.0
OtherPay                                          2357.0
Benefits                                             NaN
TotalPay                                        264074.6
TotalPayBenefits                                264074.6
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 28, dtype: object)
(29, Id                                                            30
EmployeeName                                       MONICA FIELDS
JobTitle            DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT)
BasePay                                                 246225.6
OvertimePay                                                  0.0
OtherPay                                                15140.54
Benefits                                                     NaN
TotalPay                                               261366.14
TotalPayBenefits                                       261366.14
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 29, dtype: object)
(30, Id                                           31
EmployeeName                    HARLAN KELLY-JR
JobTitle            EXECUTIVE CONTRACT EMPLOYEE
BasePay                               234325.02
OvertimePay                                 0.0
OtherPay                               25972.64
Benefits                                    NaN
TotalPay                              260297.66
TotalPayBenefits                      260297.66
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 30, dtype: object)
(31, Id                                                    32
EmployeeName                                 DAVID SHINN
JobTitle            DEPUTY CHIEF III (POLICE DEPARTMENT)
BasePay                                        254027.63
OvertimePay                                          0.0
OtherPay                                         5899.48
Benefits                                             NaN
TotalPay                                       259927.11
TotalPayBenefits                               259927.11
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 31, dtype: object)
(32, Id                                 33
EmployeeName              GARY AMELIO
JobTitle            DEPARTMENT HEAD V
BasePay                      248895.7
OvertimePay                       0.0
OtherPay                     10789.18
Benefits                          NaN
TotalPay                    259684.88
TotalPayBenefits            259684.88
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 32, dtype: object)
(33, Id                                                  34
EmployeeName                                JOHN TURSI
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      104861.39
OvertimePay                                   50227.61
OtherPay                                     103499.39
Benefits                                           NaN
TotalPay                                     258588.39
TotalPayBenefits                             258588.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 33, dtype: object)
(34, Id                                                  35
EmployeeName                                 JOSE VELO
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      177781.25
OvertimePay                                   59924.97
OtherPay                                       20658.0
Benefits                                           NaN
TotalPay                                     258364.22
TotalPayBenefits                             258364.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 34, dtype: object)
(35, Id                                                 36
EmployeeName                               KHOA TRINH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      101953.2
OvertimePay                                 139102.95
OtherPay                                     16483.94
Benefits                                          NaN
TotalPay                                    257540.09
TotalPayBenefits                            257540.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 35, dtype: object)
(36, Id                                                  37
EmployeeName                              SUSAN CURRIN
JobTitle            ADMINISTRATOR, SFGH MEDICAL CENTER
BasePay                                      245124.44
OvertimePay                                        0.0
OtherPay                                       12000.0
Benefits                                           NaN
TotalPay                                     257124.44
TotalPayBenefits                             257124.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 36, dtype: object)
(37, Id                                                  38
EmployeeName                               JAMES BOSCH
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       110661.2
OvertimePay                                   31162.04
OtherPay                                      111446.2
Benefits                                           NaN
TotalPay                                     253269.44
TotalPayBenefits                             253269.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 37, dtype: object)
(38, Id                                                  39
EmployeeName                                JONES WONG
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      132202.26
OvertimePay                                   52648.92
OtherPay                                      67083.83
Benefits                                           NaN
TotalPay                                     251935.01
TotalPayBenefits                             251935.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 38, dtype: object)
(39, Id                                                  40
EmployeeName                              BRENDAN WARD
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      147158.85
OvertimePay                                   64985.85
OtherPay                                      39540.46
Benefits                                           NaN
TotalPay                                     251685.16
TotalPayBenefits                             251685.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 39, dtype: object)
(40, Id                                                  41
EmployeeName                          MICHAEL THOMPSON
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.66
OvertimePay                                   60847.56
OtherPay                                      21055.17
Benefits                                           NaN
TotalPay                                     250595.39
TotalPayBenefits                             250595.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 40, dtype: object)
(41, Id                                                  42
EmployeeName                             THOMAS ABBOTT
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.63
OvertimePay                                    59760.9
OtherPay                                      21954.96
Benefits                                           NaN
TotalPay                                     250408.49
TotalPayBenefits                             250408.49
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 41, dtype: object)
(42, Id                                                            43
EmployeeName                                     THOMAS SIRAGUSA
JobTitle            DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT)
BasePay                                                218930.76
OvertimePay                                               4078.0
OtherPay                                                27330.59
Benefits                                                     NaN
TotalPay                                               250339.35
TotalPayBenefits                                       250339.35
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 42, dtype: object)
(43, Id                                44
EmployeeName        MICHAEL THOMPSON
JobTitle                 FIREFIGHTER
BasePay                    123013.02
OvertimePay                111729.65
OtherPay                    15575.26
Benefits                         NaN
TotalPay                   250317.93
TotalPayBenefits           250317.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 43, dtype: object)
(44, Id                                              45
EmployeeName                  SHARON MCCOLE WICHER
JobTitle            NURSING SUPERVISOR PSYCHIATRIC
BasePay                                  196081.86
OvertimePay                                    0.0
OtherPay                                  54040.18
Benefits                                       NaN
TotalPay                                 250122.04
TotalPayBenefits                         250122.04
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 44, dtype: object)
(45, Id                             46
EmployeeName            EDWIN LEE
JobTitle                    MAYOR
BasePay                 249375.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                249375.02
TotalPayBenefits        249375.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 45, dtype: object)
(46, Id                                                  47
EmployeeName                          BRYAN RUBENSTEIN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.64
OvertimePay                                   66199.23
OtherPay                                      14401.43
Benefits                                           NaN
TotalPay                                      249293.3
TotalPayBenefits                              249293.3
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 46, dtype: object)
(47, Id                                 48
EmployeeName             TRENT RHORER
JobTitle            DEPARTMENT HEAD V
BasePay                     248895.77
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    248895.77
TotalPayBenefits            248895.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 47, dtype: object)
(48, Id                                                    49
EmployeeName                                JAMES DUDLEY
JobTitle            DEPUTY CHIEF III (POLICE DEPARTMENT)
BasePay                                         233867.6
OvertimePay                                          0.0
OtherPay                                        14851.04
Benefits                                             NaN
TotalPay                                       248718.64
TotalPayBenefits                               248718.64
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 48, dtype: object)
(49, Id                                           50
EmployeeName                            KEN YEE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               137729.92
OvertimePay                            89856.01
OtherPay                               20848.46
Benefits                                    NaN
TotalPay                              248434.39
TotalPayBenefits                      248434.39
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 49, dtype: object)
(50, Id                                                  51
EmployeeName                           KIRK RICHARDSON
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.59
OvertimePay                                   58084.86
OtherPay                                      20477.16
Benefits                                           NaN
TotalPay                                     247254.61
TotalPayBenefits                             247254.61
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 50, dtype: object)
(51, Id                                 52
EmployeeName           BARBARA GARCIA
JobTitle            DEPARTMENT HEAD V
BasePay                     246305.62
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    246305.62
TotalPayBenefits            246305.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 51, dtype: object)
(52, Id                                         53
EmployeeName                 MICHAEL ROLOVICH
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.87
OvertimePay                          77937.25
OtherPay                             26203.69
Benefits                                  NaN
TotalPay                            244687.81
TotalPayBenefits                    244687.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 52, dtype: object)
(53, Id                                         54
EmployeeName                    DARRYL HUNTER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                          73207.61
OtherPay                             28988.36
Benefits                                  NaN
TotalPay                            242742.85
TotalPayBenefits                    242742.85
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 53, dtype: object)
(54, Id                                                     55
EmployeeName                                 RAY CRAWFORD
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.89
OvertimePay                                      82428.76
OtherPay                                         18310.77
Benefits                                              NaN
TotalPay                                        241286.42
TotalPayBenefits                                241286.42
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 54, dtype: object)
(55, Id                                                    56
EmployeeName                               KEVIN CASHMAN
JobTitle            DEPUTY CHIEF III (POLICE DEPARTMENT)
BasePay                                         226206.8
OvertimePay                                          0.0
OtherPay                                        15004.37
Benefits                                             NaN
TotalPay                                       241211.17
TotalPayBenefits                               241211.17
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 55, dtype: object)
(56, Id                                   57
EmployeeName        BENJAMIN ROSENFIELD
JobTitle              DEPARTMENT HEAD V
BasePay                       240731.93
OvertimePay                         0.0
OtherPay                         114.37
Benefits                            NaN
TotalPay                       240846.3
TotalPayBenefits               240846.3
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 56, dtype: object)
(57, Id                                         58
EmployeeName                     MARK KEARNEY
JobTitle            ASSISTANT DEPUTY CHIEF II
BasePay                              217410.8
OvertimePay                               0.0
OtherPay                              22608.3
Benefits                                  NaN
TotalPay                             240019.1
TotalPayBenefits                     240019.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 57, dtype: object)
(58, Id                                           59
EmployeeName                       DOUGLAS RIBA
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                               115381.02
OvertimePay                           105028.94
OtherPay                                19016.4
Benefits                                    NaN
TotalPay                              239426.36
TotalPayBenefits                      239426.36
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 58, dtype: object)
(59, Id                              60
EmployeeName        AI-KYUNG CHUNG
JobTitle               ANESTHETIST
BasePay                  214745.44
OvertimePay                9161.31
OtherPay                  14972.45
Benefits                       NaN
TotalPay                  238879.2
TotalPayBenefits          238879.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 59, dtype: object)
(60, Id                                           61
EmployeeName                      KENNETH SMITH
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            99584.94
OtherPay                               16113.62
Benefits                                    NaN
TotalPay                              238803.56
TotalPayBenefits                      238803.56
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 60, dtype: object)
(61, Id                                               62
EmployeeName                             ANNA BROWN
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   102571.24
OvertimePay                                  7437.0
OtherPay                                  128543.64
Benefits                                        NaN
TotalPay                                  238551.88
TotalPayBenefits                          238551.88
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 61, dtype: object)
(62, Id                                                     63
EmployeeName                            JAMES FAZACKERLEY
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.86
OvertimePay                                       80411.9
OtherPay                                         17542.29
Benefits                                              NaN
TotalPay                                        238501.05
TotalPayBenefits                                238501.05
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 62, dtype: object)
(63, Id                                                  64
EmployeeName                             CHARLES CRANE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.62
OvertimePay                                   54342.28
OtherPay                                      15444.38
Benefits                                           NaN
TotalPay                                     238479.28
TotalPayBenefits                             238479.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 63, dtype: object)
(64, Id                                                  65
EmployeeName                               GREGORY MAR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      148970.43
OvertimePay                                   66977.63
OtherPay                                      21889.67
Benefits                                           NaN
TotalPay                                     237837.73
TotalPayBenefits                             237837.73
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 64, dtype: object)
(65, Id                                               66
EmployeeName                          RICHARD PARRY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   185369.69
OvertimePay                                37873.61
OtherPay                                   14465.53
Benefits                                        NaN
TotalPay                                  237708.83
TotalPayBenefits                          237708.83
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 65, dtype: object)
(66, Id                                                                67
EmployeeName                                           ROBERT POSTEL
JobTitle            ASSISTANT CHIEF OF DEPARTMENT, (FIRE DEPARTMENT)
BasePay                                                    177914.76
OvertimePay                                                 36644.57
OtherPay                                                    22785.08
Benefits                                                         NaN
TotalPay                                                   237344.41
TotalPayBenefits                                           237344.41
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 66, dtype: object)
(67, Id                                         68
EmployeeName                    EDWARD ROLAND
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             139167.39
OvertimePay                          66596.28
OtherPay                             31070.15
Benefits                                  NaN
TotalPay                            236833.82
TotalPayBenefits                    236833.82
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 67, dtype: object)
(68, Id                                                    69
EmployeeName                              THOMAS SHAWYER
JobTitle            DEPUTY CHIEF III (POLICE DEPARTMENT)
BasePay                                         122974.0
OvertimePay                                          0.0
OtherPay                                       113226.92
Benefits                                             NaN
TotalPay                                       236200.92
TotalPayBenefits                               236200.92
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 68, dtype: object)
(69, Id                                           70
EmployeeName                          WING CHAN
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                               115455.44
OvertimePay                           104632.95
OtherPay                               14776.81
Benefits                                    NaN
TotalPay                               234865.2
TotalPayBenefits                       234865.2
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 69, dtype: object)
(70, Id                                 71
EmployeeName            GEORGE GASCON
JobTitle            DISTRICT ATTORNEY
BasePay                     220983.12
OvertimePay                       0.0
OtherPay                     13864.99
Benefits                          NaN
TotalPay                    234848.11
TotalPayBenefits            234848.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 70, dtype: object)
(71, Id                                                  72
EmployeeName                        RICHARD BUSALACCHI
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       92782.61
OvertimePay                                    5477.62
OtherPay                                     135684.25
Benefits                                           NaN
TotalPay                                     233944.48
TotalPayBenefits                             233944.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 71, dtype: object)
(72, Id                                                                 73
EmployeeName                                           LAWRENCE FREED
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       95770.8
OvertimePay                                                 118949.93
OtherPay                                                      18743.9
Benefits                                                          NaN
TotalPay                                                    233464.63
TotalPayBenefits                                            233464.63
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 72, dtype: object)
(73, Id                             74
EmployeeName        MONIQUE MOYER
JobTitle            PORT DIRECTOR
BasePay                 233357.28
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                233357.28
TotalPayBenefits        233357.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73, dtype: object)
(74, Id                                                  75
EmployeeName                            ANTONIO FLORES
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.88
OvertimePay                                   51864.26
OtherPay                                      50380.44
Benefits                                           NaN
TotalPay                                     232702.58
TotalPayBenefits                             232702.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 74, dtype: object)
(75, Id                                                  76
EmployeeName                               MARK GAMBLE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       85578.61
OvertimePay                                   42878.01
OtherPay                                      104030.1
Benefits                                           NaN
TotalPay                                     232486.72
TotalPayBenefits                             232486.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 75, dtype: object)
(76, Id                                                  77
EmployeeName                               KEVIN BURKE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      174872.64
OvertimePay                                   16876.74
OtherPay                                      40258.39
Benefits                                           NaN
TotalPay                                     232007.77
TotalPayBenefits                             232007.77
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 76, dtype: object)
(77, Id                                                                 78
EmployeeName                                               BERT REYES
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                      73754.05
OvertimePay                                                  18679.06
OtherPay                                                    139279.69
Benefits                                                          NaN
TotalPay                                                     231712.8
TotalPayBenefits                                             231712.8
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 77, dtype: object)
(78, Id                                         79
EmployeeName                   MICHAEL DELANE
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                           62283.7
OtherPay                             28821.55
Benefits                                  NaN
TotalPay                            231652.13
TotalPayBenefits                    231652.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 78, dtype: object)
(79, Id                                                  80
EmployeeName                          EDUARDO GONZALEZ
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.62
OvertimePay                                   35096.74
OtherPay                                      27802.89
Benefits                                           NaN
TotalPay                                     231592.25
TotalPayBenefits                             231592.25
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 79, dtype: object)
(80, Id                                           81
EmployeeName                        YIFANG QIAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               172529.08
OvertimePay                                 0.0
OtherPay                               58776.96
Benefits                                    NaN
TotalPay                              231306.04
TotalPayBenefits                      231306.04
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 80, dtype: object)
(81, Id                                           82
EmployeeName                     ROBERT WINSLOW
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122272.69
OvertimePay                            90593.53
OtherPay                               18238.75
Benefits                                    NaN
TotalPay                              231104.97
TotalPayBenefits                      231104.97
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 81, dtype: object)
(82, Id                                                  83
EmployeeName                              LORRIE KALOS
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.62
OvertimePay                                   41158.72
OtherPay                                      21055.17
Benefits                                           NaN
TotalPay                                     230906.51
TotalPayBenefits                             230906.51
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 82, dtype: object)
(83, Id                                                              84
EmployeeName                                        EDWARD REISKIN
JobTitle            GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY
BasePay                                                  230827.12
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 230827.12
TotalPayBenefits                                         230827.12
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 83, dtype: object)
(84, Id                                                     85
EmployeeName                                JEFFREY MYERS
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                          217410.8
OvertimePay                                           0.0
OtherPay                                         13216.41
Benefits                                              NaN
TotalPay                                        230627.21
TotalPayBenefits                                230627.21
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 84, dtype: object)
(85, Id                                      86
EmployeeName               JONATHAN BAXTER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       92767.41
OtherPay                          15371.07
Benefits                               NaN
TotalPay                         230543.46
TotalPayBenefits                 230543.46
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85, dtype: object)
(86, Id                                                  87
EmployeeName                            MICHAEL BRYANT
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      150464.82
OvertimePay                                   49813.69
OtherPay                                      30180.49
Benefits                                           NaN
TotalPay                                      230459.0
TotalPayBenefits                              230459.0
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 86, dtype: object)
(87, Id                             88
EmployeeName          KEVIN BARRY
JobTitle              MANAGER VII
BasePay                  96814.36
OvertimePay                   0.0
OtherPay                133563.47
Benefits                      NaN
TotalPay                230377.83
TotalPayBenefits        230377.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87, dtype: object)
(88, Id                                   89
EmployeeName        EVETTE GEER-STEVENS
JobTitle             TRANSIT SUPERVISOR
BasePay                         88062.0
OvertimePay                   135159.38
OtherPay                         7018.6
Benefits                            NaN
TotalPay                      230239.98
TotalPayBenefits              230239.98
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88, dtype: object)
(89, Id                                                                 90
EmployeeName                                                 MARY TSE
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     138878.82
OvertimePay                                                  31843.34
OtherPay                                                     59427.12
Benefits                                                          NaN
TotalPay                                                    230149.28
TotalPayBenefits                                            230149.28
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 89, dtype: object)
(90, Id                                                  91
EmployeeName                             MARK GONZALES
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      188842.37
OvertimePay                                   21453.59
OtherPay                                      18764.67
Benefits                                           NaN
TotalPay                                     229060.63
TotalPayBenefits                             229060.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 90, dtype: object)
(91, Id                                               92
EmployeeName                          DONNA MEIXNER
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    102722.4
OvertimePay                                  7437.0
OtherPay                                  118456.21
Benefits                                        NaN
TotalPay                                  228615.61
TotalPayBenefits                          228615.61
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 91, dtype: object)
(92, Id                                         93
EmployeeName                      PETE FAY JR
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             149362.84
OvertimePay                          51847.45
OtherPay                             27303.11
Benefits                                  NaN
TotalPay                             228513.4
TotalPayBenefits                     228513.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 92, dtype: object)
(93, Id                                               94
EmployeeName                            JOHN MURPHY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   215914.03
OvertimePay                                     0.0
OtherPay                                   12293.83
Benefits                                        NaN
TotalPay                                  228207.86
TotalPayBenefits                          228207.86
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 93, dtype: object)
(94, Id                                                  95
EmployeeName                                  REX HALE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.62
OvertimePay                                    33191.6
OtherPay                                      25434.68
Benefits                                           NaN
TotalPay                                      227318.9
TotalPayBenefits                              227318.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 94, dtype: object)
(95, Id                             96
EmployeeName         MIVIC HIROSE
JobTitle             MANAGER VIII
BasePay                 215180.76
OvertimePay                   0.0
OtherPay                  12000.0
Benefits                      NaN
TotalPay                227180.76
TotalPayBenefits        227180.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 95, dtype: object)
(96, Id                             97
EmployeeName           SARAH CARY
JobTitle              ANESTHETIST
BasePay                  208925.6
OvertimePay                5539.3
OtherPay                  12615.6
Benefits                      NaN
TotalPay                 227080.5
TotalPayBenefits         227080.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 96, dtype: object)
(97, Id                                                  98
EmployeeName                               KEVIN SMITH
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.67
OvertimePay                                   35402.71
OtherPay                                      22261.95
Benefits                                           NaN
TotalPay                                     226357.33
TotalPayBenefits                             226357.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 97, dtype: object)
(98, Id                                      99
EmployeeName             GREGORY STANGLAND
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       86719.38
OtherPay                          15315.61
Benefits                               NaN
TotalPay                         224439.97
TotalPayBenefits                 224439.97
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 98, dtype: object)
(99, Id                                                               100
EmployeeName                                             SONALI BOSE
JobTitle            DEPUTY DIRECTOR II - MUNICIPAL TRANSPORTATION AG
BasePay                                                    224035.85
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   224035.85
TotalPayBenefits                                           224035.85
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 99, dtype: object)
(100, Id                                                 101
EmployeeName                              KEVIN TAYLOR
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.65
OvertimePay                                   33656.87
OtherPay                                      21502.83
Benefits                                           NaN
TotalPay                                     223852.35
TotalPayBenefits                             223852.35
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 100, dtype: object)
(101, Id                                          102
EmployeeName                          ERIKA HOO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            84547.16
OtherPay                               16054.24
Benefits                                    NaN
TotalPay                               223706.4
TotalPayBenefits                       223706.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 101, dtype: object)
(102, Id                              103
EmployeeName        LAUIFI SEUMAALA
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                98534.35
OtherPay                   18890.96
Benefits                        NaN
TotalPay                   223360.0
TotalPayBenefits           223360.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 102, dtype: object)
(103, Id                                 104
EmployeeName             EDWARD DENNIS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                  126778.88
OtherPay                       7228.67
Benefits                           NaN
TotalPay                     222408.25
TotalPayBenefits             222408.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 103, dtype: object)
(104, Id                            105
EmployeeName        PATRIC STEELE
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              97395.59
OtherPay                 18760.77
Benefits                      NaN
TotalPay                 222091.0
TotalPayBenefits         222091.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 104, dtype: object)
(105, Id                            106
EmployeeName        MICHAEL WALSH
JobTitle              FIREFIGHTER
BasePay                 110474.93
OvertimePay              83670.04
OtherPay                 27043.61
Benefits                      NaN
TotalPay                221188.58
TotalPayBenefits        221188.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 105, dtype: object)
(106, Id                                                 107
EmployeeName                                SAMSON LAI
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      149362.86
OvertimePay                                    35003.5
OtherPay                                      36682.96
Benefits                                           NaN
TotalPay                                     221049.32
TotalPayBenefits                             221049.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 106, dtype: object)
(107, Id                                 108
EmployeeName               ANA SAMPERA
JobTitle            NURSING SUPERVISOR
BasePay                       188708.0
OvertimePay                        0.0
OtherPay                      32080.36
Benefits                           NaN
TotalPay                     220788.36
TotalPayBenefits             220788.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 107, dtype: object)
(108, Id                                 109
EmployeeName        GLORIA GARCIA ORME
JobTitle            NURSING SUPERVISOR
BasePay                       188708.0
OvertimePay                        0.0
OtherPay                      32080.36
Benefits                           NaN
TotalPay                     220788.36
TotalPayBenefits             220788.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 108, dtype: object)
(109, Id                             110
EmployeeName        SCOTT SCHOLZEN
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               96154.33
OtherPay                  18655.85
Benefits                       NaN
TotalPay                 220744.85
TotalPayBenefits         220744.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 109, dtype: object)
(110, Id                            111
EmployeeName           MARK SMITH
JobTitle              ANESTHETIST
BasePay                 206057.69
OvertimePay               3431.01
OtherPay                 10921.33
Benefits                      NaN
TotalPay                220410.03
TotalPayBenefits        220410.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 110, dtype: object)
(111, Id                                 112
EmployeeName             C PETRUZZELLA
JobTitle            POLICE OFFICER III
BasePay                       63811.18
OvertimePay                   57966.33
OtherPay                      98578.97
Benefits                           NaN
TotalPay                     220356.48
TotalPayBenefits             220356.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 111, dtype: object)
(112, Id                                                               113
EmployeeName                                           JOHN HALEY JR
JobTitle            DEPUTY DIRECTOR II - MUNICIPAL TRANSPORTATION AG
BasePay                                                    220115.22
OvertimePay                                                      0.0
OtherPay                                                       237.0
Benefits                                                         NaN
TotalPay                                                   220352.22
TotalPayBenefits                                           220352.22
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 112, dtype: object)
(113, Id                                 114
EmployeeName           NELA PONFERRADA
JobTitle            NURSING SUPERVISOR
BasePay                       188708.0
OvertimePay                        0.0
OtherPay                       31572.3
Benefits                           NaN
TotalPay                      220280.3
TotalPayBenefits              220280.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 113, dtype: object)
(114, Id                                 115
EmployeeName             CHARLES SCOTT
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                  119951.72
OtherPay                      11893.84
Benefits                           NaN
TotalPay                     220246.26
TotalPayBenefits             220246.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 114, dtype: object)
(115, Id                                   116
EmployeeName               LISETTE ADAMS
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.34
OvertimePay                     89920.21
OtherPay                         8383.77
Benefits                             NaN
TotalPay                       219932.32
TotalPayBenefits               219932.32
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 115, dtype: object)
(116, Id                                117
EmployeeName             JACKSON WONG
JobTitle            DEPUTY DIRECTOR V
BasePay                     219804.34
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    219804.34
TotalPayBenefits            219804.34
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 116, dtype: object)
(117, Id                                               118
EmployeeName                              IRENE SUNG
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    191054.19
OvertimePay                                      0.0
OtherPay                                    28658.16
Benefits                                         NaN
TotalPay                                   219712.35
TotalPayBenefits                           219712.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 117, dtype: object)
(118, Id                                                 119
EmployeeName                               KHAIRUL ALI
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      150432.85
OvertimePay                                   42365.89
OtherPay                                      25995.01
Benefits                                           NaN
TotalPay                                     218793.75
TotalPayBenefits                             218793.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 118, dtype: object)
(119, Id                                 120
EmployeeName             LESLIE DUBBIN
JobTitle            NURSING SUPERVISOR
BasePay                       179648.0
OvertimePay                        0.0
OtherPay                      39029.76
Benefits                           NaN
TotalPay                     218677.76
TotalPayBenefits             218677.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 119, dtype: object)
(120, Id                                        121
EmployeeName               MICHAEL CASTAGNOLA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                          52095.06
OtherPay                              25564.1
Benefits                                  NaN
TotalPay                            218206.04
TotalPayBenefits                    218206.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 120, dtype: object)
(121, Id                               122
EmployeeName        SHELLEY MITCHELL
JobTitle                 ANESTHETIST
BasePay                    203658.55
OvertimePay                  4759.36
OtherPay                     9561.44
Benefits                         NaN
TotalPay                   217979.35
TotalPayBenefits           217979.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 121, dtype: object)
(122, Id                                     123
EmployeeName                  SEAN BONETTI
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122594.0
OvertimePay                       79721.87
OtherPay                          15646.15
Benefits                               NaN
TotalPay                         217962.02
TotalPayBenefits                 217962.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 122, dtype: object)
(123, Id                                 124
EmployeeName             SUSAN ILNICKI
JobTitle            NURSING SUPERVISOR
BasePay                      188889.44
OvertimePay                        0.0
OtherPay                      28921.31
Benefits                           NaN
TotalPay                     217810.75
TotalPayBenefits             217810.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 123, dtype: object)
(124, Id                                 125
EmployeeName            TYRONNE JULIAN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                  126725.82
OtherPay                       2784.61
Benefits                           NaN
TotalPay                     217572.43
TotalPayBenefits             217572.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 124, dtype: object)
(125, Id                                              126
EmployeeName                        SHARON FERRIGNO
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   185369.68
OvertimePay                                27321.83
OtherPay                                    4651.44
Benefits                                        NaN
TotalPay                                  217342.95
TotalPayBenefits                          217342.95
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 125, dtype: object)
(126, Id                               127
EmployeeName        SHANNON SAKOWSKI
JobTitle                 ANESTHETIST
BasePay                    192170.93
OvertimePay                 11260.27
OtherPay                     13712.8
Benefits                         NaN
TotalPay                    217144.0
TotalPayBenefits            217144.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 126, dtype: object)
(127, Id                                                 128
EmployeeName                               JOHN HICKEY
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.63
OvertimePay                                   22432.91
OtherPay                                      25855.73
Benefits                                           NaN
TotalPay                                     216981.27
TotalPayBenefits                             216981.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 127, dtype: object)
(128, Id                                        129
EmployeeName                    GLEN KOJIMOTO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.85
OvertimePay                          58354.29
OtherPay                             17823.03
Benefits                                  NaN
TotalPay                            216724.17
TotalPayBenefits                    216724.17
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 128, dtype: object)
(129, Id                                          130
EmployeeName                         EDWARD CHU
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            77259.53
OtherPay                                16054.2
Benefits                                    NaN
TotalPay                              216418.73
TotalPayBenefits                      216418.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 129, dtype: object)
(130, Id                                                                131
EmployeeName                                            SOFIA MATHEWS
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                     158603.68
OvertimePay                                                       0.0
OtherPay                                                     57667.12
Benefits                                                          NaN
TotalPay                                                     216270.8
TotalPayBenefits                                             216270.8
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 130, dtype: object)
(131, Id                                        132
EmployeeName                       EDMUND DEA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             141648.87
OvertimePay                          43574.57
OtherPay                             30952.65
Benefits                                  NaN
TotalPay                            216176.09
TotalPayBenefits                    216176.09
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 131, dtype: object)
(132, Id                                 133
EmployeeName               JOHN RAHAIM
JobTitle            DEPARTMENT HEAD IV
BasePay                      215799.48
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     215799.48
TotalPayBenefits             215799.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 132, dtype: object)
(133, Id                                                 134
EmployeeName                          WILLIAM ROUALDES
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.93
OvertimePay                                    4836.87
OtherPay                                      61531.43
Benefits                                           NaN
TotalPay                                     215413.23
TotalPayBenefits                             215413.23
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 133, dtype: object)
(134, Id                                                 135
EmployeeName                          ZACHARY PUMPHREY
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      166203.84
OvertimePay                                    28448.6
OtherPay                                      20744.06
Benefits                                           NaN
TotalPay                                      215396.5
TotalPayBenefits                              215396.5
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 134, dtype: object)
(135, Id                                          136
EmployeeName                    MARK CASTAGNOLA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123416.25
OvertimePay                            66447.73
OtherPay                               25491.13
Benefits                                    NaN
TotalPay                              215355.11
TotalPayBenefits                      215355.11
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 135, dtype: object)
(136, Id                                    137
EmployeeName                NIKOLAS LEMOS
JobTitle            FORENSIC TOXICOLOGIST
BasePay                         182368.79
OvertimePay                           0.0
OtherPay                         32949.41
Benefits                              NaN
TotalPay                         215318.2
TotalPayBenefits                 215318.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 136, dtype: object)
(137, Id                                138
EmployeeName           MICHAEL CARLIN
JobTitle            DEPUTY DIRECTOR V
BasePay                     215180.75
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    215180.75
TotalPayBenefits            215180.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 137, dtype: object)
(138, Id                                                                139
EmployeeName                                              JESSE SMITH
JobTitle            CONFIDENTIAL CHIEF ATTORNEY II (CIVIL & CRIMINAL)
BasePay                                                     213907.72
OvertimePay                                                       0.0
OtherPay                                                      1080.96
Benefits                                                          NaN
TotalPay                                                    214988.68
TotalPayBenefits                                            214988.68
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 138, dtype: object)
(139, Id                                                                140
EmployeeName                                          THERESE STEWART
JobTitle            CONFIDENTIAL CHIEF ATTORNEY II (CIVIL & CRIMINAL)
BasePay                                                     213907.72
OvertimePay                                                       0.0
OtherPay                                                      1080.96
Benefits                                                          NaN
TotalPay                                                    214988.68
TotalPayBenefits                                            214988.68
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 139, dtype: object)
(140, Id                                                                141
EmployeeName                                             MARISA MORET
JobTitle            CONFIDENTIAL CHIEF ATTORNEY II (CIVIL & CRIMINAL)
BasePay                                                     213907.72
OvertimePay                                                       0.0
OtherPay                                                      1080.96
Benefits                                                          NaN
TotalPay                                                    214988.68
TotalPayBenefits                                            214988.68
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 140, dtype: object)
(141, Id                                          142
EmployeeName                 LUIS IBARRA-RIVERA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            74266.87
OtherPay                               17583.73
Benefits                                    NaN
TotalPay                               214955.6
TotalPayBenefits                       214955.6
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 141, dtype: object)
(142, Id                                               143
EmployeeName                            GERALD DARCY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  2433.29
OtherPay                                    82029.92
Benefits                                         NaN
TotalPay                                   214944.74
TotalPayBenefits                           214944.74
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 142, dtype: object)
(143, Id                                144
EmployeeName        DONNIE HORNBUCKLE
JobTitle                  FIREFIGHTER
BasePay                     105934.63
OvertimePay                  96611.56
OtherPay                     12306.26
Benefits                          NaN
TotalPay                    214852.45
TotalPayBenefits            214852.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 143, dtype: object)
(144, Id                                                 145
EmployeeName                               SANDRA TONG
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                      206438.88
OvertimePay                                        0.0
OtherPay                                       8377.03
Benefits                                           NaN
TotalPay                                     214815.91
TotalPayBenefits                             214815.91
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 144, dtype: object)
(145, Id                                                    146
EmployeeName                               ANTHONY DUMONT
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.63
OvertimePay                                      53209.03
OtherPay                                         20429.43
Benefits                                              NaN
TotalPay                                        214185.09
TotalPayBenefits                                214185.09
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 145, dtype: object)
(146, Id                                 147
EmployeeName           THERESA DENTONI
JobTitle            NURSING SUPERVISOR
BasePay                       183040.0
OvertimePay                        0.0
OtherPay                       31116.8
Benefits                           NaN
TotalPay                      214156.8
TotalPayBenefits              214156.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 146, dtype: object)
(147, Id                            148
EmployeeName            TIM AREJA
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              90329.62
OtherPay                  17596.3
Benefits                      NaN
TotalPay                213860.61
TotalPayBenefits        213860.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 147, dtype: object)
(148, Id                                          149
EmployeeName                      SIU-KWAN CHOW
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               167070.08
OvertimePay                                 0.0
OtherPay                               46665.54
Benefits                                    NaN
TotalPay                              213735.62
TotalPayBenefits                      213735.62
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 148, dtype: object)
(149, Id                                 150
EmployeeName             PATRICIA CARR
JobTitle            NURSING SUPERVISOR
BasePay                       183040.0
OvertimePay                        0.0
OtherPay                      30619.46
Benefits                           NaN
TotalPay                     213659.46
TotalPayBenefits             213659.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 149, dtype: object)
(150, Id                            151
EmployeeName           RASMI CHAN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              89485.44
OtherPay                  18117.8
Benefits                      NaN
TotalPay                213537.88
TotalPayBenefits        213537.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 150, dtype: object)
(151, Id                                                 152
EmployeeName                           MICHAEL KEARNEY
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      181502.08
OvertimePay                                        0.0
OtherPay                                       31449.4
Benefits                                           NaN
TotalPay                                     212951.48
TotalPayBenefits                             212951.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 151, dtype: object)
(152, Id                                                 153
EmployeeName                        MATTHEW MCNAUGHTON
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      173842.63
OvertimePay                                    1210.13
OtherPay                                       37804.9
Benefits                                           NaN
TotalPay                                     212857.66
TotalPayBenefits                             212857.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 152, dtype: object)
(153, Id                                                    154
EmployeeName                               JOHN CAVANAUGH
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.88
OvertimePay                                      54054.41
OtherPay                                         18236.44
Benefits                                              NaN
TotalPay                                        212837.73
TotalPayBenefits                                212837.73
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 153, dtype: object)
(154, Id                             155
EmployeeName           WHITNEY YEE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay              112320.96
OtherPay                  13544.56
Benefits                       NaN
TotalPay                 212705.52
TotalPayBenefits         212705.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 154, dtype: object)
(155, Id                                                 156
EmployeeName                            STEVEN MANNINA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.69
OvertimePay                                   57364.23
OtherPay                                       6235.28
Benefits                                           NaN
TotalPay                                      212650.2
TotalPayBenefits                              212650.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 155, dtype: object)
(156, Id                                               157
EmployeeName                          EDGAR CALLEJAS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     82235.56
OvertimePay                                  43352.6
OtherPay                                    86590.93
Benefits                                         NaN
TotalPay                                   212179.09
TotalPayBenefits                           212179.09
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 156, dtype: object)
(157, Id                                                 158
EmployeeName                               L MILITELLO
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                      182134.81
OvertimePay                                    18574.4
OtherPay                                      11000.84
Benefits                                           NaN
TotalPay                                     211710.05
TotalPayBenefits                             211710.05
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 157, dtype: object)
(158, Id                                                 159
EmployeeName                              MICHAEL BIEL
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                       198778.0
OvertimePay                                        0.0
OtherPay                                      12818.24
Benefits                                           NaN
TotalPay                                     211596.24
TotalPayBenefits                             211596.24
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 158, dtype: object)
(159, Id                                                               160
EmployeeName                                           DEBRA JOHNSON
JobTitle            DEPUTY DIRECTOR II - MUNICIPAL TRANSPORTATION AG
BasePay                                                    210821.61
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   210821.61
TotalPayBenefits                                           210821.61
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 159, dtype: object)
(160, Id                                 161
EmployeeName               HAROLD BYRD
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                  111199.78
OtherPay                      11373.58
Benefits                           NaN
TotalPay                     210635.36
TotalPayBenefits             210635.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 160, dtype: object)
(161, Id                                     162
EmployeeName                KARL JURGENSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       72836.43
OtherPay                          15336.91
Benefits                               NaN
TotalPay                         210578.32
TotalPayBenefits                 210578.32
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 161, dtype: object)
(162, Id                            163
EmployeeName        JULIE LABONTE
JobTitle             MANAGER VIII
BasePay                  207501.2
OvertimePay                   0.0
OtherPay                  2903.37
Benefits                      NaN
TotalPay                210404.57
TotalPayBenefits        210404.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 162, dtype: object)
(163, Id                                               164
EmployeeName                         JOHN BRAGAGNOLO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  6284.61
OtherPay                                    73334.31
Benefits                                         NaN
TotalPay                                   210076.88
TotalPayBenefits                           210076.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 163, dtype: object)
(164, Id                                     165
EmployeeName                 OSCAR CABRERA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          116603.33
OvertimePay                       78532.26
OtherPay                          14753.88
Benefits                               NaN
TotalPay                         209889.47
TotalPayBenefits                 209889.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 164, dtype: object)
(165, Id                              166
EmployeeName        MARTIEN VERHAEG
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                87642.33
OtherPay                   16228.64
Benefits                        NaN
TotalPay                  209805.64
TotalPayBenefits          209805.64
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 165, dtype: object)
(166, Id                                 167
EmployeeName             THOMAS ALDANA
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                  111323.49
OtherPay                       8344.75
Benefits                           NaN
TotalPay                     209762.44
TotalPayBenefits             209762.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 166, dtype: object)
(167, Id                            168
EmployeeName          CARL JEPSEN
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              89773.95
OtherPay                 14007.96
Benefits                      NaN
TotalPay                209716.56
TotalPayBenefits        209716.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 167, dtype: object)
(168, Id                               169
EmployeeName        AMPARO RODRIGUEZ
JobTitle               NURSE MANAGER
BasePay                     161044.0
OvertimePay                  4599.05
OtherPay                    43997.82
Benefits                         NaN
TotalPay                   209640.87
TotalPayBenefits           209640.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 168, dtype: object)
(169, Id                                                 170
EmployeeName                             WILLIAM SCOTT
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                   45597.19
OtherPay                                      33307.68
Benefits                                           NaN
TotalPay                                     209386.43
TotalPayBenefits                             209386.43
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 169, dtype: object)
(170, Id                                          171
EmployeeName                     GEORGE LYSENKO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            67899.46
OtherPay                               18300.05
Benefits                                    NaN
TotalPay                              209304.53
TotalPayBenefits                      209304.53
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 170, dtype: object)
(171, Id                                               172
EmployeeName                          MICHAEL BROWNE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.88
OvertimePay                                 47342.41
OtherPay                                    31413.52
Benefits                                         NaN
TotalPay                                   209213.81
TotalPayBenefits                           209213.81
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 171, dtype: object)
(172, Id                                        173
EmployeeName                    HARRY PINKARD
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              60373.82
OvertimePay                          25046.44
OtherPay                            123649.73
Benefits                                  NaN
TotalPay                            209069.99
TotalPayBenefits                    209069.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 172, dtype: object)
(173, Id                                          174
EmployeeName                    ALBERTO PEDRUCO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               135651.04
OvertimePay                            56307.38
OtherPay                               17085.77
Benefits                                    NaN
TotalPay                              209044.19
TotalPayBenefits                      209044.19
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 173, dtype: object)
(174, Id                                                 175
EmployeeName                              LAWRENCE LEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                  115239.98
OtherPay                                      16089.38
Benefits                                           NaN
TotalPay                                     208909.76
TotalPayBenefits                             208909.76
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 174, dtype: object)
(175, Id                                          176
EmployeeName                       DWAYNE CURRY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               133769.86
OvertimePay                            56093.64
OtherPay                               18879.06
Benefits                                    NaN
TotalPay                              208742.56
TotalPayBenefits                      208742.56
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 175, dtype: object)
(176, Id                                          177
EmployeeName                    RENEE MARQUARDT
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               175345.85
OvertimePay                                 0.0
OtherPay                               33357.87
Benefits                                    NaN
TotalPay                              208703.72
TotalPayBenefits                      208703.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 176, dtype: object)
(177, Id                            178
EmployeeName         HARVEY ELWIN
JobTitle             MANAGER VIII
BasePay                 200385.64
OvertimePay                   0.0
OtherPay                   8000.0
Benefits                      NaN
TotalPay                208385.64
TotalPayBenefits        208385.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 177, dtype: object)
(178, Id                                     179
EmployeeName                    LEON WHITE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       68861.18
OtherPay                           17071.3
Benefits                               NaN
TotalPay                         208337.48
TotalPayBenefits                 208337.48
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 178, dtype: object)
(179, Id                             180
EmployeeName        DENNIS HERRERA
JobTitle             CITY ATTORNEY
BasePay                  208243.12
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 208243.12
TotalPayBenefits         208243.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 179, dtype: object)
(180, Id                                                 181
EmployeeName                             DONALD BRYANT
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.36
OvertimePay                                   119407.7
OtherPay                                      11220.57
Benefits                                           NaN
TotalPay                                     208208.63
TotalPayBenefits                             208208.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 180, dtype: object)
(181, Id                                            182
EmployeeName                         NATHAN HARDY
JobTitle            MARINE ENGINEER OF FIRE BOATS
BasePay                                 140546.85
OvertimePay                              47122.83
OtherPay                                 20353.22
Benefits                                      NaN
TotalPay                                 208022.9
TotalPayBenefits                         208022.9
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 181, dtype: object)
(182, Id                               183
EmployeeName        SUSAN BUCHBINDER
JobTitle                MANAGER VIII
BasePay                    207874.94
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   207874.94
TotalPayBenefits           207874.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 182, dtype: object)
(183, Id                             184
EmployeeName        KIRSTEN BARASH
JobTitle               ANESTHETIST
BasePay                  189853.68
OvertimePay                7060.31
OtherPay                  10941.53
Benefits                       NaN
TotalPay                 207855.52
TotalPayBenefits         207855.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 183, dtype: object)
(184, Id                                                 185
EmployeeName                             DENNIS SUTTER
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       63878.03
OvertimePay                                   24586.55
OtherPay                                     119351.05
Benefits                                           NaN
TotalPay                                     207815.63
TotalPayBenefits                             207815.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 184, dtype: object)
(185, Id                            186
EmployeeName           JOHN BROWN
JobTitle             MANAGER VIII
BasePay                 207798.79
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                207798.79
TotalPayBenefits        207798.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 185, dtype: object)
(186, Id                                             187
EmployeeName                        KATHRYN BALLOU
JobTitle            NURSING SUPERVISOR PSYCHIATRIC
BasePay                                   177528.0
OvertimePay                                    0.0
OtherPay                                  30179.76
Benefits                                       NaN
TotalPay                                 207707.76
TotalPayBenefits                         207707.76
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 186, dtype: object)
(187, Id                                                                188
EmployeeName                                            DONALD FIELDS
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                      158603.6
OvertimePay                                                   2605.95
OtherPay                                                     46493.65
Benefits                                                          NaN
TotalPay                                                     207703.2
TotalPayBenefits                                             207703.2
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 187, dtype: object)
(188, Id                                 189
EmployeeName              LUIS HERRERA
JobTitle            DEPARTMENT HEAD IV
BasePay                      207699.73
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     207699.73
TotalPayBenefits             207699.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 188, dtype: object)
(189, Id                                          190
EmployeeName                      GEORGE FOURAS
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               173937.49
OvertimePay                                 0.0
OtherPay                               33362.65
Benefits                                    NaN
TotalPay                              207300.14
TotalPayBenefits                      207300.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 189, dtype: object)
(190, Id                                               191
EmployeeName                         MARTIN LALOR JR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.29
OvertimePay                                 47465.62
OtherPay                                    29377.94
Benefits                                         NaN
TotalPay                                   207277.85
TotalPayBenefits                           207277.85
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 190, dtype: object)
(191, Id                                             192
EmployeeName                            GRAD GREEN
JobTitle            NURSING SUPERVISOR PSYCHIATRIC
BasePay                                  178526.48
OvertimePay                                    0.0
OtherPay                                  28694.26
Benefits                                       NaN
TotalPay                                 207220.74
TotalPayBenefits                         207220.74
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 191, dtype: object)
(192, Id                                                 193
EmployeeName                              DARCY KELLER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                   43329.66
OtherPay                                      33299.41
Benefits                                           NaN
TotalPay                                     207087.03
TotalPayBenefits                             207087.03
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 192, dtype: object)
(193, Id                                        194
EmployeeName                    SAMUEL ROMERO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.87
OvertimePay                          47465.92
OtherPay                             18963.02
Benefits                                  NaN
TotalPay                            206975.81
TotalPayBenefits                    206975.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 193, dtype: object)
(194, Id                                          195
EmployeeName                     ALEXANDER CHEN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               174597.67
OvertimePay                                 0.0
OtherPay                               32202.61
Benefits                                    NaN
TotalPay                              206800.28
TotalPayBenefits                      206800.28
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 194, dtype: object)
(195, Id                            196
EmployeeName          OLLIE BANKS
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              84172.44
OtherPay                 16662.29
Benefits                      NaN
TotalPay                206769.39
TotalPayBenefits        206769.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 195, dtype: object)
(196, Id                                                  197
EmployeeName                            BURK DELVENTHAL
JobTitle            CHIEF ATTORNEY I (CIVIL & CRIMINAL)
BasePay                                        206752.0
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       206752.0
TotalPayBenefits                               206752.0
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 196, dtype: object)
(197, Id                                                                198
EmployeeName                                            THOMAS HARVEY
JobTitle            CAPTAIN, BUREAU OF FIRE PREVENTION AND PUBLIC ...
BasePay                                                     187237.53
OvertimePay                                                    743.34
OtherPay                                                     18723.76
Benefits                                                          NaN
TotalPay                                                    206704.63
TotalPayBenefits                                            206704.63
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 197, dtype: object)
(198, Id                             199
EmployeeName        MARTIN BELTRAN
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               82170.36
OtherPay                  18597.33
Benefits                       NaN
TotalPay                 206702.36
TotalPayBenefits         206702.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 198, dtype: object)
(199, Id                            200
EmployeeName          LORI BORGHI
JobTitle              ANESTHETIST
BasePay                 190352.67
OvertimePay               4455.28
OtherPay                 11712.14
Benefits                      NaN
TotalPay                206520.09
TotalPayBenefits        206520.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 199, dtype: object)
(200, Id                            201
EmployeeName           ROBERT TAI
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              85454.77
OtherPay                 14971.71
Benefits                      NaN
TotalPay                206361.14
TotalPayBenefits        206361.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 200, dtype: object)
(201, Id                                202
EmployeeName        CHRISTOPHER HAZEN
JobTitle                  FIREFIGHTER
BasePay                     105934.67
OvertimePay                  71960.12
OtherPay                     28447.45
Benefits                          NaN
TotalPay                    206342.24
TotalPayBenefits            206342.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 201, dtype: object)
(202, Id                                        203
EmployeeName                  PIERRE FRANCOIS
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              127203.0
OvertimePay                          53146.41
OtherPay                             25508.48
Benefits                                  NaN
TotalPay                            205857.89
TotalPayBenefits                    205857.89
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 202, dtype: object)
(203, Id                               204
EmployeeName        ROSELYN JEQUINTO
JobTitle               NURSE MANAGER
BasePay                    165996.75
OvertimePay                  8054.01
OtherPay                    31660.13
Benefits                         NaN
TotalPay                   205710.89
TotalPayBenefits           205710.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 203, dtype: object)
(204, Id                            205
EmployeeName         TROY JOLLIFF
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              82132.06
OtherPay                 17637.54
Benefits                      NaN
TotalPay                 205704.3
TotalPayBenefits         205704.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 204, dtype: object)
(205, Id                            206
EmployeeName        COLLEEN RILEY
JobTitle             MANAGER VIII
BasePay                 205609.58
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                205609.58
TotalPayBenefits        205609.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 205, dtype: object)
(206, Id                                               207
EmployeeName                          EUGENE GALEANO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.23
OvertimePay                                  4461.66
OtherPay                                    70568.42
Benefits                                         NaN
TotalPay                                   205464.31
TotalPayBenefits                           205464.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 206, dtype: object)
(207, Id                                     208
EmployeeName                 MICHAEL AHERN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           124894.0
OvertimePay                       65886.39
OtherPay                          14410.33
Benefits                               NaN
TotalPay                         205190.72
TotalPayBenefits                 205190.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 207, dtype: object)
(208, Id                                                 209
EmployeeName                           BRIAN DELAHUNTY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.56
OvertimePay                                   43708.28
OtherPay                                      30690.37
Benefits                                           NaN
TotalPay                                     204865.21
TotalPayBenefits                             204865.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 208, dtype: object)
(209, Id                                                 210
EmployeeName                            ROBERT SERRANO
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                        25400.0
OvertimePay                                   37100.14
OtherPay                                     142094.49
Benefits                                           NaN
TotalPay                                     204594.63
TotalPayBenefits                             204594.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 209, dtype: object)
(210, Id                                                 211
EmployeeName                           JAMES VANNUCCHI
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      149362.85
OvertimePay                                   20253.61
OtherPay                                      34958.63
Benefits                                           NaN
TotalPay                                     204575.09
TotalPayBenefits                             204575.09
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 210, dtype: object)
(211, Id                                              212
EmployeeName                         CROCE CASCIATO
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                     0.0
OtherPay                                   16206.24
Benefits                                        NaN
TotalPay                                  204547.86
TotalPayBenefits                          204547.86
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 211, dtype: object)
(212, Id                                        213
EmployeeName                   PHILIP STEVENS
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             176371.35
OvertimePay                            7654.0
OtherPay                             20392.43
Benefits                                  NaN
TotalPay                            204417.78
TotalPayBenefits                    204417.78
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 212, dtype: object)
(213, Id                               214
EmployeeName        TIMOTHY SULLIVAN
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 82384.96
OtherPay                    15962.27
Benefits                         NaN
TotalPay                   204281.88
TotalPayBenefits           204281.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 213, dtype: object)
(214, Id                                              215
EmployeeName                            JOHN FEENEY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188348.55
OvertimePay                                 5720.22
OtherPay                                   10173.43
Benefits                                        NaN
TotalPay                                   204242.2
TotalPayBenefits                           204242.2
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 214, dtype: object)
(215, Id                                          216
EmployeeName                   CANTREZ TRIPLETT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122820.36
OvertimePay                            66083.91
OtherPay                               15329.64
Benefits                                    NaN
TotalPay                              204233.91
TotalPayBenefits                      204233.91
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 215, dtype: object)
(216, Id                                 217
EmployeeName             GERARDO PINTO
JobTitle            TRANSIT SUPERVISOR
BasePay                       89078.11
OvertimePay                  114105.85
OtherPay                         773.7
Benefits                           NaN
TotalPay                     203957.66
TotalPayBenefits             203957.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 216, dtype: object)
(217, Id                            218
EmployeeName         NOEL MORONEY
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              86551.38
OtherPay                 11374.31
Benefits                      NaN
TotalPay                203860.34
TotalPayBenefits        203860.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 217, dtype: object)
(218, Id                                     219
EmployeeName              GERALD MANSUR JR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       65829.32
OtherPay                          15551.54
Benefits                               NaN
TotalPay                         203785.86
TotalPayBenefits                 203785.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 218, dtype: object)
(219, Id                             220
EmployeeName        ROLAND PICKENS
JobTitle              MANAGER VIII
BasePay                   203450.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  203450.0
TotalPayBenefits          203450.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 219, dtype: object)
(220, Id                                 221
EmployeeName           MERCEDES GERMAN
JobTitle            NURSING SUPERVISOR
BasePay                       184914.8
OvertimePay                        0.0
OtherPay                      18491.47
Benefits                           NaN
TotalPay                     203406.27
TotalPayBenefits             203406.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 220, dtype: object)
(221, Id                            222
EmployeeName          ALAN HARVEY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              76867.18
OtherPay                 20458.49
Benefits                      NaN
TotalPay                203260.33
TotalPayBenefits        203260.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 221, dtype: object)
(222, Id                                                   223
EmployeeName                               MICHAEL ELLIS
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                         111770.0
OvertimePay                                     61316.86
OtherPay                                        30020.72
Benefits                                             NaN
TotalPay                                       203107.58
TotalPayBenefits                               203107.58
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 222, dtype: object)
(223, Id                                        224
EmployeeName               BARBARA SCHULTHEIS
JobTitle            ASSISTANT DEPUTY CHIEF II
BasePay                             109667.03
OvertimePay                          13707.84
OtherPay                             79648.18
Benefits                                  NaN
TotalPay                            203023.05
TotalPayBenefits                    203023.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 223, dtype: object)
(224, Id                               225
EmployeeName          RAYMOND KOENIG
JobTitle            POLICE OFFICER I
BasePay                     63625.16
OvertimePay                 41441.44
OtherPay                    97799.84
Benefits                         NaN
TotalPay                   202866.44
TotalPayBenefits           202866.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 224, dtype: object)
(225, Id                                              226
EmployeeName                       STEPHEN TACCHINI
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                 2258.63
OtherPay                                   12252.44
Benefits                                        NaN
TotalPay                                  202852.67
TotalPayBenefits                          202852.67
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 225, dtype: object)
(226, Id                                     227
EmployeeName                 WILLIAM RADER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122418.3
OvertimePay                       64862.06
OtherPay                          15443.68
Benefits                               NaN
TotalPay                         202724.04
TotalPayBenefits                 202724.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 226, dtype: object)
(227, Id                                228
EmployeeName        GREGORY MCFARLAND
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  79964.69
OtherPay                     16824.25
Benefits                          NaN
TotalPay                    202723.58
TotalPayBenefits            202723.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 227, dtype: object)
(228, Id                                229
EmployeeName                 SAM YUEN
JobTitle            POLICE OFFICER II
BasePay                     110242.81
OvertimePay                  16939.01
OtherPay                      75533.1
Benefits                          NaN
TotalPay                    202714.92
TotalPayBenefits            202714.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 228, dtype: object)
(229, Id                                        230
EmployeeName                  FRANK CARDINALE
JobTitle            ASSISTANT DEPUTY CHIEF II
BasePay                              183500.8
OvertimePay                               0.0
OtherPay                              18933.1
Benefits                                  NaN
TotalPay                             202433.9
TotalPayBenefits                     202433.9
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 229, dtype: object)
(230, Id                                 231
EmployeeName           ANNE KRONENBERG
JobTitle            DEPARTMENT HEAD IV
BasePay                      202426.74
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     202426.74
TotalPayBenefits             202426.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 230, dtype: object)
(231, Id                             232
EmployeeName           BARRY BLOOM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               102118.8
OtherPay                  13390.01
Benefits                       NaN
TotalPay                 202348.81
TotalPayBenefits         202348.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 231, dtype: object)
(232, Id                                     233
EmployeeName           CLEMENTINO AVILA II
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          139580.96
OvertimePay                       33418.92
OtherPay                          29333.37
Benefits                               NaN
TotalPay                         202333.25
TotalPayBenefits                 202333.25
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 232, dtype: object)
(233, Id                                          234
EmployeeName                       RYAN KENNEDY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            63856.44
OtherPay                               15365.21
Benefits                                    NaN
TotalPay                              202326.65
TotalPayBenefits                      202326.65
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 233, dtype: object)
(234, Id                                          235
EmployeeName                         JOHN ROCCO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            56654.78
OtherPay                               22564.64
Benefits                                    NaN
TotalPay                              202324.42
TotalPayBenefits                      202324.42
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 234, dtype: object)
(235, Id                            236
EmployeeName          ARNOLD CHOY
JobTitle              FIREFIGHTER
BasePay                 110638.66
OvertimePay              65587.13
OtherPay                  26005.7
Benefits                      NaN
TotalPay                202231.49
TotalPayBenefits        202231.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 235, dtype: object)
(236, Id                                 237
EmployeeName              REGINA GOMEZ
JobTitle            NURSING SUPERVISOR
BasePay                      172916.55
OvertimePay                        0.0
OtherPay                      29240.55
Benefits                           NaN
TotalPay                      202157.1
TotalPayBenefits              202157.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 236, dtype: object)
(237, Id                                     238
EmployeeName                 MIKE BREILING
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       65069.19
OtherPay                           14539.0
Benefits                               NaN
TotalPay                         202013.18
TotalPayBenefits                 202013.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 237, dtype: object)
(238, Id                                     239
EmployeeName                  ANDREW LOGAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       72093.79
OtherPay                           7497.84
Benefits                               NaN
TotalPay                         201996.62
TotalPayBenefits                 201996.62
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 238, dtype: object)
(239, Id                                              240
EmployeeName                       GREGORY CORRALES
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.64
OvertimePay                                  1109.1
OtherPay                                    12252.7
Benefits                                        NaN
TotalPay                                  201703.44
TotalPayBenefits                          201703.44
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 239, dtype: object)
(240, Id                                              241
EmployeeName                           JOHN EHRLICH
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                 1068.45
OtherPay                                   12211.62
Benefits                                        NaN
TotalPay                                  201621.69
TotalPayBenefits                          201621.69
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 240, dtype: object)
(241, Id                                        242
EmployeeName                    GLENN KIRCHER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127886.02
OvertimePay                          57579.25
OtherPay                             16112.43
Benefits                                  NaN
TotalPay                             201577.7
TotalPayBenefits                     201577.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 241, dtype: object)
(242, Id                                                 243
EmployeeName                           ARTHUR STELLINI
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.63
OvertimePay                                   46800.24
OtherPay                                       5506.27
Benefits                                           NaN
TotalPay                                     201351.14
TotalPayBenefits                             201351.14
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 242, dtype: object)
(243, Id                                             244
EmployeeName                     MARGARET RYKOWSKI
JobTitle            NURSING SUPERVISOR PSYCHIATRIC
BasePay                                   183040.0
OvertimePay                                    0.0
OtherPay                                   18304.0
Benefits                                       NaN
TotalPay                                  201344.0
TotalPayBenefits                          201344.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 243, dtype: object)
(244, Id                                 245
EmployeeName           MICHAEL SIMMONS
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                   17715.27
OtherPay                      71120.05
Benefits                           NaN
TotalPay                     201277.12
TotalPayBenefits             201277.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 244, dtype: object)
(245, Id                                 246
EmployeeName               RUBY MARTIN
JobTitle            NURSING SUPERVISOR
BasePay                       177343.5
OvertimePay                        0.0
OtherPay                      23901.42
Benefits                           NaN
TotalPay                     201244.92
TotalPayBenefits             201244.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 245, dtype: object)
(246, Id                                                                247
EmployeeName                                            TYRONE PRUITT
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                      158603.6
OvertimePay                                                   3242.47
OtherPay                                                     39271.71
Benefits                                                          NaN
TotalPay                                                    201117.78
TotalPayBenefits                                            201117.78
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 246, dtype: object)
(247, Id                            248
EmployeeName         NANCY PARKER
JobTitle            NURSE MANAGER
BasePay                 171236.03
OvertimePay                   0.0
OtherPay                 29584.32
Benefits                      NaN
TotalPay                200820.35
TotalPayBenefits        200820.35
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 247, dtype: object)
(248, Id                                              249
EmployeeName                         DANIEL MAHONEY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    196061.3
OvertimePay                                     0.0
OtherPay                                    4749.91
Benefits                                        NaN
TotalPay                                  200811.21
TotalPayBenefits                          200811.21
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 248, dtype: object)
(249, Id                                     250
EmployeeName              BROOK MANCINELLI
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        71862.8
OtherPay                           6407.34
Benefits                               NaN
TotalPay                         200675.13
TotalPayBenefits                 200675.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 249, dtype: object)
(250, Id                                 251
EmployeeName           PHILIP GINSBURG
JobTitle            DEPARTMENT HEAD IV
BasePay                      200515.38
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     200515.38
TotalPayBenefits             200515.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 250, dtype: object)
(251, Id                            252
EmployeeName            DONNA LEE
JobTitle              ANESTHETIST
BasePay                 187094.56
OvertimePay               2341.63
OtherPay                 11051.55
Benefits                      NaN
TotalPay                200487.74
TotalPayBenefits        200487.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 251, dtype: object)
(252, Id                                              253
EmployeeName                          JOHN GOLDBERG
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.61
OvertimePay                                     0.0
OtherPay                                    12119.4
Benefits                                        NaN
TotalPay                                  200461.01
TotalPayBenefits                          200461.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 252, dtype: object)
(253, Id                                              254
EmployeeName                          ANTONIO PARRA
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                     0.0
OtherPay                                   12119.37
Benefits                                        NaN
TotalPay                                  200460.97
TotalPayBenefits                          200460.97
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 253, dtype: object)
(254, Id                            255
EmployeeName             CHAD LAW
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              76726.73
OtherPay                 17713.43
Benefits                      NaN
TotalPay                200374.81
TotalPayBenefits        200374.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 254, dtype: object)
(255, Id                             256
EmployeeName        CRISTINA REYES
JobTitle             NURSE MANAGER
BasePay                  171236.02
OvertimePay                    0.0
OtherPay                  29110.14
Benefits                       NaN
TotalPay                 200346.16
TotalPayBenefits         200346.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 255, dtype: object)
(256, Id                                          257
EmployeeName                       HAGOP HAJIAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               169197.16
OvertimePay                                 0.0
OtherPay                               31139.57
Benefits                                    NaN
TotalPay                              200336.73
TotalPayBenefits                      200336.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 256, dtype: object)
(257, Id                                              258
EmployeeName                          KEITH SANFORD
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.84
OvertimePay                                 1134.34
OtherPay                                   10799.25
Benefits                                        NaN
TotalPay                                  200275.43
TotalPayBenefits                          200275.43
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 257, dtype: object)
(258, Id                                             259
EmployeeName                            JESUS PENA
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123214.31
OvertimePay                                4729.13
OtherPay                                  72242.52
Benefits                                       NaN
TotalPay                                 200185.96
TotalPayBenefits                         200185.96
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 258, dtype: object)
(259, Id                                        260
EmployeeName                  FERNANDO DEALBA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              140546.9
OvertimePay                          33196.91
OtherPay                             26432.87
Benefits                                  NaN
TotalPay                            200176.68
TotalPayBenefits                    200176.68
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 259, dtype: object)
(260, Id                                        261
EmployeeName                    ROBERT STYLES
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              140441.9
OvertimePay                          41438.62
OtherPay                             18050.61
Benefits                                  NaN
TotalPay                            199931.13
TotalPayBenefits                    199931.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 260, dtype: object)
(261, Id                                              262
EmployeeName                          PAUL CHIGNELL
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188314.54
OvertimePay                                     0.0
OtherPay                                   11547.94
Benefits                                        NaN
TotalPay                                  199862.48
TotalPayBenefits                          199862.48
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 261, dtype: object)
(262, Id                                     263
EmployeeName                    CHRIS VEIN
JobTitle            SPECIAL ASSISTANT XXII
BasePay                          199765.74
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                         199765.74
TotalPayBenefits                 199765.74
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 262, dtype: object)
(263, Id                                 264
EmployeeName            THOMAS CUNNANE
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   14978.42
OtherPay                      72362.09
Benefits                           NaN
TotalPay                     199761.97
TotalPayBenefits             199761.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 263, dtype: object)
(264, Id                                 265
EmployeeName                 JAY HUISH
JobTitle            DEPUTY DIRECTOR IV
BasePay                      184386.79
OvertimePay                        0.0
OtherPay                      15366.99
Benefits                           NaN
TotalPay                     199753.78
TotalPayBenefits             199753.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 264, dtype: object)
(265, Id                                 266
EmployeeName         PATRICIA O'CONNER
JobTitle            NURSING SUPERVISOR
BasePay                       172198.0
OvertimePay                        0.0
OtherPay                      27521.88
Benefits                           NaN
TotalPay                     199719.88
TotalPayBenefits             199719.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 265, dtype: object)
(266, Id                                                     267
EmployeeName                                  NELSON ACETO
JobTitle            WIRE ROPE CABLE MAINTENANCE SUPERVISOR
BasePay                                           85624.87
OvertimePay                                       66164.73
OtherPay                                          47839.37
Benefits                                               NaN
TotalPay                                         199628.97
TotalPayBenefits                                 199628.97
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 266, dtype: object)
(267, Id                                          268
EmployeeName                        EDMUND VAIL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            64525.66
OtherPay                               11909.38
Benefits                                    NaN
TotalPay                              199540.06
TotalPayBenefits                      199540.06
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 267, dtype: object)
(268, Id                                          269
EmployeeName                       ANDREW SAITZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.05
OvertimePay                            59699.72
OtherPay                               16693.53
Benefits                                    NaN
TotalPay                               199498.3
TotalPayBenefits                       199498.3
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 268, dtype: object)
(269, Id                                          270
EmployeeName                      BONNIE TAYLOR
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                173453.3
OvertimePay                                 0.0
OtherPay                               26017.99
Benefits                                    NaN
TotalPay                              199471.29
TotalPayBenefits                      199471.29
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 269, dtype: object)
(270, Id                            271
EmployeeName            ARNIE LEE
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              75817.75
OtherPay                 17540.56
Benefits                      NaN
TotalPay                199292.97
TotalPayBenefits        199292.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 270, dtype: object)
(271, Id                                 272
EmployeeName           DENNIS MARTINEZ
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   45977.26
OtherPay                      40829.52
Benefits                           NaN
TotalPay                     199207.84
TotalPayBenefits             199207.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 271, dtype: object)
(272, Id                            273
EmployeeName         MITCHELL LEE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              76012.89
OtherPay                 17180.05
Benefits                      NaN
TotalPay                199127.59
TotalPayBenefits        199127.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 272, dtype: object)
(273, Id                                 274
EmployeeName        FERDINAND CADELINA
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                  107913.65
OtherPay                       2713.83
Benefits                           NaN
TotalPay                     199028.18
TotalPayBenefits             199028.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 273, dtype: object)
(274, Id                                              275
EmployeeName                           DENIS OLEARY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                     0.0
OtherPay                                   10542.72
Benefits                                        NaN
TotalPay                                  198884.32
TotalPayBenefits                          198884.32
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 274, dtype: object)
(275, Id                            276
EmployeeName        NEREE DASTOUS
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              73625.33
OtherPay                 19217.48
Benefits                      NaN
TotalPay                198777.47
TotalPayBenefits        198777.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 275, dtype: object)
(276, Id                                                 277
EmployeeName                               PERRY LEONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                  113729.55
OtherPay                                       7308.25
Benefits                                           NaN
TotalPay                                     198618.21
TotalPayBenefits                             198618.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 276, dtype: object)
(277, Id                                              278
EmployeeName                        LOUIS CASSANEGO
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                     0.0
OtherPay                                   10125.04
Benefits                                        NaN
TotalPay                                  198466.64
TotalPayBenefits                          198466.64
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 277, dtype: object)
(278, Id                                                                279
EmployeeName                                            MELISSA LERMA
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.08
OvertimePay                                                   1706.08
OtherPay                                                     69787.98
Benefits                                                          NaN
TotalPay                                                    198462.14
TotalPayBenefits                                            198462.14
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 278, dtype: object)
(279, Id                             280
EmployeeName        RAYMOND CHAVEZ
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                70730.5
OtherPay                  21611.32
Benefits                       NaN
TotalPay                 198276.48
TotalPayBenefits         198276.48
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 279, dtype: object)
(280, Id                                     281
EmployeeName             FREDERICK BINKLEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                       60981.91
OtherPay                          14860.06
Benefits                               NaN
TotalPay                         198246.93
TotalPayBenefits                 198246.93
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 280, dtype: object)
(281, Id                                     282
EmployeeName                   GUY GOODWIN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       67825.92
OtherPay                           7933.55
Benefits                               NaN
TotalPay                         198164.45
TotalPayBenefits                 198164.45
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 281, dtype: object)
(282, Id                              283
EmployeeName         JEFFREY ADACHI
JobTitle            PUBLIC DEFENDER
BasePay                   198027.44
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  198027.44
TotalPayBenefits          198027.44
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 282, dtype: object)
(283, Id                                          284
EmployeeName                  BERGLIOTH MATHEWS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            67514.41
OtherPay                                 7386.3
Benefits                                    NaN
TotalPay                              198005.73
TotalPayBenefits                      198005.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 283, dtype: object)
(284, Id                                              285
EmployeeName                             GARRET TOM
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                 2886.03
OtherPay                                    6646.21
Benefits                                        NaN
TotalPay                                  197873.86
TotalPayBenefits                          197873.86
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 284, dtype: object)
(285, Id                                                 286
EmployeeName                              JAMES MILLER
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.41
OvertimePay                                   35620.45
OtherPay                                      13162.31
Benefits                                           NaN
TotalPay                                     197827.17
TotalPayBenefits                             197827.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 285, dtype: object)
(286, Id                                 287
EmployeeName                  PAUL LEE
JobTitle            TRANSIT SUPERVISOR
BasePay                       89930.37
OvertimePay                  104568.19
OtherPay                       3312.11
Benefits                           NaN
TotalPay                     197810.67
TotalPayBenefits             197810.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 286, dtype: object)
(287, Id                                288
EmployeeName        TANGERINE BRIGHAM
JobTitle            DEPUTY DIRECTOR V
BasePay                      185724.5
OvertimePay                       0.0
OtherPay                      12000.0
Benefits                          NaN
TotalPay                     197724.5
TotalPayBenefits             197724.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 287, dtype: object)
(288, Id                                          289
EmployeeName                     PABLO SIGUENZA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               128569.01
OvertimePay                            49853.04
OtherPay                               19031.08
Benefits                                    NaN
TotalPay                              197453.13
TotalPayBenefits                      197453.13
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 288, dtype: object)
(289, Id                                                 290
EmployeeName                         DANIEL CUNNINGHAM
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.59
OvertimePay                                   44651.56
OtherPay                                      22315.92
Benefits                                           NaN
TotalPay                                     197434.07
TotalPayBenefits                             197434.07
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 289, dtype: object)
(290, Id                                                 291
EmployeeName                                JIMMIE LEW
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                   39489.61
OtherPay                                      27451.83
Benefits                                           NaN
TotalPay                                     197423.01
TotalPayBenefits                             197423.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 290, dtype: object)
(291, Id                                 292
EmployeeName                DEBBIE TAM
JobTitle            NURSING SUPERVISOR
BasePay                      190243.46
OvertimePay                        0.0
OtherPay                       7105.58
Benefits                           NaN
TotalPay                     197349.04
TotalPayBenefits             197349.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 291, dtype: object)
(292, Id                                               293
EmployeeName                               ALBERT YU
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                      4891.0
Benefits                                         NaN
TotalPay                                    197270.6
TotalPayBenefits                            197270.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 292, dtype: object)
(293, Id                                294
EmployeeName        MICHAEL HENNESSEY
JobTitle                      SHERIFF
BasePay                     197233.84
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    197233.84
TotalPayBenefits            197233.84
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 293, dtype: object)
(294, Id                            295
EmployeeName         BRIAN MURPHY
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              68438.92
OtherPay                 22759.89
Benefits                      NaN
TotalPay                197133.46
TotalPayBenefits        197133.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 294, dtype: object)
(295, Id                              296
EmployeeName        STEVEN WILLIAMS
JobTitle                FIREFIGHTER
BasePay                   113695.71
OvertimePay                69419.29
OtherPay                   14017.12
Benefits                        NaN
TotalPay                  197132.12
TotalPayBenefits          197132.12
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 295, dtype: object)
(296, Id                                              297
EmployeeName                            DAVID LAZAR
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   195975.32
OvertimePay                                     0.0
OtherPay                                     917.32
Benefits                                        NaN
TotalPay                                  196892.64
TotalPayBenefits                          196892.64
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 296, dtype: object)
(297, Id                                298
EmployeeName        JOSEPHINE RAPADAS
JobTitle                NURSE MANAGER
BasePay                     171071.36
OvertimePay                   7606.83
OtherPay                      18210.2
Benefits                          NaN
TotalPay                    196888.39
TotalPayBenefits            196888.39
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 297, dtype: object)
(298, Id                                                  299
EmployeeName                             JAMES HARRIGAN
JobTitle            CHIEF ATTORNEY I (CIVIL & CRIMINAL)
BasePay                                       196886.55
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      196886.55
TotalPayBenefits                              196886.55
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 298, dtype: object)
(299, Id                                                  300
EmployeeName                              JOANNE HOEPER
JobTitle            CHIEF ATTORNEY I (CIVIL & CRIMINAL)
BasePay                                       196886.55
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      196886.55
TotalPayBenefits                              196886.55
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 299, dtype: object)
(300, Id                            301
EmployeeName        MORGAN PETITI
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              73178.82
OtherPay                 17569.48
Benefits                      NaN
TotalPay                196682.95
TotalPayBenefits        196682.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 300, dtype: object)
(301, Id                            302
EmployeeName        PAUL URQUIAGA
JobTitle              FIREFIGHTER
BasePay                 108947.02
OvertimePay               61158.6
OtherPay                 26499.88
Benefits                      NaN
TotalPay                 196605.5
TotalPayBenefits         196605.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 301, dtype: object)
(302, Id                                 303
EmployeeName            EDGAR GONZALEZ
JobTitle            POLICE OFFICER III
BasePay                      112441.79
OvertimePay                   15338.11
OtherPay                      68766.28
Benefits                           NaN
TotalPay                     196546.18
TotalPayBenefits             196546.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 302, dtype: object)
(303, Id                                              304
EmployeeName                      DOUGLAS MCEACHERN
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   194566.01
OvertimePay                                  1109.1
OtherPay                                     819.03
Benefits                                        NaN
TotalPay                                  196494.14
TotalPayBenefits                          196494.14
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 303, dtype: object)
(304, Id                            305
EmployeeName             JAY KLOO
JobTitle            NURSE MANAGER
BasePay                  161044.0
OvertimePay                   0.0
OtherPay                 35429.68
Benefits                      NaN
TotalPay                196473.68
TotalPayBenefits        196473.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 304, dtype: object)
(305, Id                                                306
EmployeeName                                  WING NG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   85978.1
OtherPay                                     11408.55
Benefits                                          NaN
TotalPay                                    196386.65
TotalPayBenefits                            196386.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 305, dtype: object)
(306, Id                                       307
EmployeeName               MARGARET CALLAHAN
JobTitle            HUMAN RESOURCES DIRECTOR
BasePay                            196377.99
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           196377.99
TotalPayBenefits                   196377.99
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 306, dtype: object)
(307, Id                            308
EmployeeName          JOHNSON YOU
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              72451.83
OtherPay                 17837.79
Benefits                      NaN
TotalPay                196224.25
TotalPayBenefits        196224.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 307, dtype: object)
(308, Id                                 309
EmployeeName             JOHN VAN KOLL
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   23572.29
OtherPay                      60183.94
Benefits                           NaN
TotalPay                      196157.3
TotalPayBenefits              196157.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 308, dtype: object)
(309, Id                                          310
EmployeeName                       DANIEL YONTS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            50298.75
OtherPay                               22721.82
Benefits                                    NaN
TotalPay                               196125.6
TotalPayBenefits                       196125.6
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 309, dtype: object)
(310, Id                                                 311
EmployeeName                           BRODERICK TOPPS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       78949.19
OvertimePay                                  102454.79
OtherPay                                      14718.05
Benefits                                           NaN
TotalPay                                     196122.03
TotalPayBenefits                             196122.03
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 310, dtype: object)
(311, Id                                          312
EmployeeName                     DAVID THOMPSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            58270.63
OtherPay                               14738.61
Benefits                                    NaN
TotalPay                              196114.24
TotalPayBenefits                      196114.24
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 311, dtype: object)
(312, Id                                                 313
EmployeeName                               JAMES BLAKE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.65
OvertimePay                                        0.0
OtherPay                                      27291.01
Benefits                                           NaN
TotalPay                                     195983.66
TotalPayBenefits                             195983.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 312, dtype: object)
(313, Id                                               314
EmployeeName                           SUSAN FERNYAK
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    184805.62
OvertimePay                                      0.0
OtherPay                                     11124.0
Benefits                                         NaN
TotalPay                                   195929.62
TotalPayBenefits                           195929.62
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 313, dtype: object)
(314, Id                                        315
EmployeeName                 CLYDE CHRISTOBAL
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.89
OvertimePay                          31841.33
OtherPay                             23479.99
Benefits                                  NaN
TotalPay                            195868.21
TotalPayBenefits                    195868.21
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 314, dtype: object)
(315, Id                                316
EmployeeName            TODD RYDSTROM
JobTitle            DEPUTY DIRECTOR V
BasePay                      185724.5
OvertimePay                       0.0
OtherPay                      10000.0
Benefits                          NaN
TotalPay                     195724.5
TotalPayBenefits             195724.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 315, dtype: object)
(316, Id                                                               317
EmployeeName                                                BOND YEE
JobTitle            DEPUTY DIRECTOR II - MUNICIPAL TRANSPORTATION AG
BasePay                                                     195256.1
OvertimePay                                                      0.0
OtherPay                                                       408.0
Benefits                                                         NaN
TotalPay                                                    195664.1
TotalPayBenefits                                            195664.1
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 316, dtype: object)
(317, Id                            318
EmployeeName        THOMAS MURPHY
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              72308.94
OtherPay                 17411.01
Benefits                      NaN
TotalPay                195654.59
TotalPayBenefits        195654.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 317, dtype: object)
(318, Id                                        319
EmployeeName              GLENN ORTIZ-SCHULDT
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                          37549.62
OtherPay                             17542.28
Benefits                                  NaN
TotalPay                            195638.78
TotalPayBenefits                    195638.78
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 318, dtype: object)
(319, Id                                              320
EmployeeName                             ANN MANNIX
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188314.5
OvertimePay                                     0.0
OtherPay                                    7310.63
Benefits                                        NaN
TotalPay                                  195625.13
TotalPayBenefits                          195625.13
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 319, dtype: object)
(320, Id                                321
EmployeeName        FERDINAND MENESES
JobTitle                  FIREFIGHTER
BasePay                     105934.66
OvertimePay                  73298.91
OtherPay                     16278.33
Benefits                          NaN
TotalPay                     195511.9
TotalPayBenefits             195511.9
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 320, dtype: object)
(321, Id                            322
EmployeeName           DANIEL COX
JobTitle              ANESTHETIST
BasePay                  189841.6
OvertimePay                 444.6
OtherPay                   5213.4
Benefits                      NaN
TotalPay                 195499.6
TotalPayBenefits         195499.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 321, dtype: object)
(322, Id                                 323
EmployeeName                  LEON KUO
JobTitle            TRANSIT SUPERVISOR
BasePay                       86410.84
OvertimePay                  101652.14
OtherPay                       7436.03
Benefits                           NaN
TotalPay                     195499.01
TotalPayBenefits             195499.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 322, dtype: object)
(323, Id                            324
EmployeeName            ALVIN LAU
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              73130.52
OtherPay                 16406.95
Benefits                      NaN
TotalPay                195472.16
TotalPayBenefits        195472.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 323, dtype: object)
(324, Id                                          325
EmployeeName                         RYAN CREAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            48977.36
OtherPay                               23341.17
Benefits                                    NaN
TotalPay                              195423.52
TotalPayBenefits                      195423.52
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 324, dtype: object)
(325, Id                            326
EmployeeName         SAMUEL NIETO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              69602.62
OtherPay                  19832.9
Benefits                      NaN
TotalPay                195370.16
TotalPayBenefits        195370.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 325, dtype: object)
(326, Id                                               327
EmployeeName                             JOHN NESTOR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    135339.78
OvertimePay                                 16309.92
OtherPay                                    43704.98
Benefits                                         NaN
TotalPay                                   195354.68
TotalPayBenefits                           195354.68
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 326, dtype: object)
(327, Id                                                 328
EmployeeName                          RUDY CASTELLANOS
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168713.21
OvertimePay                                   12663.63
OtherPay                                      13913.92
Benefits                                           NaN
TotalPay                                     195290.76
TotalPayBenefits                             195290.76
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 327, dtype: object)
(328, Id                            329
EmployeeName          JANET HINES
JobTitle            NURSE MANAGER
BasePay                  171236.0
OvertimePay                   0.0
OtherPay                  24038.9
Benefits                      NaN
TotalPay                 195274.9
TotalPayBenefits         195274.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 328, dtype: object)
(329, Id                                          330
EmployeeName                   MICHAEL GONZALES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               137709.85
OvertimePay                            44327.76
OtherPay                               13194.76
Benefits                                    NaN
TotalPay                              195232.37
TotalPayBenefits                      195232.37
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 329, dtype: object)
(330, Id                            331
EmployeeName         JEFF IWASAKI
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              71448.55
OtherPay                 17839.48
Benefits                      NaN
TotalPay                195222.68
TotalPayBenefits        195222.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 330, dtype: object)
(331, Id                                332
EmployeeName            MONIQUE ZMUDA
JobTitle            DEPUTY DIRECTOR V
BasePay                     195121.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    195121.53
TotalPayBenefits            195121.53
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 331, dtype: object)
(332, Id                                                         333
EmployeeName                                  JENNIFER DEBERRY
JobTitle            INVESTIGATOR, BUREAU OF FIRE INVESTIGATION
BasePay                                              126857.54
OvertimePay                                           34841.75
OtherPay                                              33361.56
Benefits                                                   NaN
TotalPay                                             195060.85
TotalPayBenefits                                     195060.85
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 332, dtype: object)
(333, Id                                          334
EmployeeName                         LINDA ROSS
JobTitle            ASSISTANT CHIEF ATTORNEY II
BasePay                               194980.11
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              194980.11
TotalPayBenefits                      194980.11
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 333, dtype: object)
(334, Id                                          335
EmployeeName                       ROBERT MAERZ
JobTitle            ASSISTANT CHIEF ATTORNEY II
BasePay                                194980.1
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               194980.1
TotalPayBenefits                       194980.1
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 334, dtype: object)
(335, Id                                          336
EmployeeName                      DAVID PFEIFER
JobTitle            ASSISTANT CHIEF ATTORNEY II
BasePay                               194980.09
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              194980.09
TotalPayBenefits                      194980.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 335, dtype: object)
(336, Id                                                    337
EmployeeName                              MICHAEL WHOOLEY
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140370.59
OvertimePay                                      45903.66
OtherPay                                           8609.1
Benefits                                              NaN
TotalPay                                        194883.35
TotalPayBenefits                                194883.35
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 336, dtype: object)
(337, Id                                               338
EmployeeName                             LISA GOLDEN
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                      2484.0
Benefits                                         NaN
TotalPay                                    194863.6
TotalPayBenefits                            194863.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 337, dtype: object)
(338, Id                                               339
EmployeeName                             PHILIP PERA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.52
OvertimePay                                  25861.6
OtherPay                                    38477.41
Benefits                                         NaN
TotalPay                                   194820.53
TotalPayBenefits                           194820.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 338, dtype: object)
(339, Id                                                                340
EmployeeName                                               ALEC BALMY
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                     145835.82
OvertimePay                                                  12062.79
OtherPay                                                     36872.29
Benefits                                                          NaN
TotalPay                                                     194770.9
TotalPayBenefits                                             194770.9
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 339, dtype: object)
(340, Id                                          341
EmployeeName                       ROBERT LOPEZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               113021.59
OvertimePay                            58660.17
OtherPay                               23043.77
Benefits                                    NaN
TotalPay                              194725.53
TotalPayBenefits                      194725.53
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 340, dtype: object)
(341, Id                                               342
EmployeeName                        PETER THOSHINSKY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 14379.84
OtherPay                                    49657.86
Benefits                                         NaN
TotalPay                                   194519.25
TotalPayBenefits                           194519.25
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 341, dtype: object)
(342, Id                                 343
EmployeeName        GREGORY CACHARELIS
JobTitle                   FIREFIGHTER
BasePay                      105934.66
OvertimePay                   71373.32
OtherPay                      16994.89
Benefits                           NaN
TotalPay                     194302.87
TotalPayBenefits             194302.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 342, dtype: object)
(343, Id                                               344
EmployeeName                            MILTON ESTES
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     180356.1
OvertimePay                                      0.0
OtherPay                                     13932.0
Benefits                                         NaN
TotalPay                                    194288.1
TotalPayBenefits                            194288.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 343, dtype: object)
(344, Id                                        345
EmployeeName                     RONALD PRUYN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                          20673.41
OtherPay                              33033.7
Benefits                                  NaN
TotalPay                            194253.99
TotalPayBenefits                    194253.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 344, dtype: object)
(345, Id                            346
EmployeeName           JOHN KOSTA
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              70312.13
OtherPay                 17938.07
Benefits                      NaN
TotalPay                194184.89
TotalPayBenefits        194184.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 345, dtype: object)
(346, Id                                 347
EmployeeName              PAULINE MARX
JobTitle            DEPUTY DIRECTOR IV
BasePay                      180612.83
OvertimePay                        0.0
OtherPay                      13566.18
Benefits                           NaN
TotalPay                     194179.01
TotalPayBenefits             194179.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 346, dtype: object)
(347, Id                                  348
EmployeeName                  AMY BROWN
JobTitle            DEPUTY DIRECTOR III
BasePay                       179860.39
OvertimePay                         0.0
OtherPay                       14216.14
Benefits                            NaN
TotalPay                      194076.53
TotalPayBenefits              194076.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 347, dtype: object)
(348, Id                                              349
EmployeeName                           JOHN GARRITY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                 1131.28
OtherPay                                    4586.65
Benefits                                        NaN
TotalPay                                  194059.55
TotalPayBenefits                          194059.55
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 348, dtype: object)
(349, Id                            350
EmployeeName            RICKY HUI
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               71837.3
OtherPay                 16158.29
Benefits                      NaN
TotalPay                193930.24
TotalPayBenefits        193930.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 349, dtype: object)
(350, Id                                               351
EmployeeName                         CATHERINE JAMES
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     189350.0
OvertimePay                                      0.0
OtherPay                                      4567.0
Benefits                                         NaN
TotalPay                                    193917.0
TotalPayBenefits                            193917.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 350, dtype: object)
(351, Id                                                 352
EmployeeName                            JAMES CALONICO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      153932.54
OvertimePay                                   21953.42
OtherPay                                      18028.73
Benefits                                           NaN
TotalPay                                     193914.69
TotalPayBenefits                             193914.69
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 351, dtype: object)
(352, Id                            353
EmployeeName            AMEN CHOW
JobTitle               PHARMACIST
BasePay                 132224.22
OvertimePay              40592.45
OtherPay                 21086.11
Benefits                      NaN
TotalPay                193902.78
TotalPayBenefits        193902.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 352, dtype: object)
(353, Id                                 354
EmployeeName                  RANDY LY
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   16452.52
OtherPay                      64972.13
Benefits                           NaN
TotalPay                     193846.11
TotalPayBenefits             193846.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 353, dtype: object)
(354, Id                                 355
EmployeeName             LENORA JACOBS
JobTitle            NURSING SUPERVISOR
BasePay                       129148.5
OvertimePay                        0.0
OtherPay                       64687.4
Benefits                           NaN
TotalPay                      193835.9
TotalPayBenefits              193835.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 354, dtype: object)
(355, Id                             356
EmployeeName        ERNEST JOHNSON
JobTitle               FIREFIGHTER
BasePay                   104073.4
OvertimePay               73036.51
OtherPay                  16725.49
Benefits                       NaN
TotalPay                  193835.4
TotalPayBenefits          193835.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 355, dtype: object)
(356, Id                                357
EmployeeName        TERENCE OSULLIVAN
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  67825.38
OtherPay                     19907.17
Benefits                          NaN
TotalPay                    193667.19
TotalPayBenefits            193667.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 356, dtype: object)
(357, Id                            358
EmployeeName           KEVIN KUHN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              70824.16
OtherPay                 16879.59
Benefits                      NaN
TotalPay                193638.43
TotalPayBenefits        193638.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 357, dtype: object)
(358, Id                                     359
EmployeeName              MICHAEL MOYNIHAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                       55004.96
OtherPay                          16199.59
Benefits                               NaN
TotalPay                         193609.52
TotalPayBenefits                 193609.52
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 358, dtype: object)
(359, Id                                          360
EmployeeName                        JOHN MURPHY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.98
OvertimePay                            54870.85
OtherPay                               15365.22
Benefits                                    NaN
TotalPay                              193341.05
TotalPayBenefits                      193341.05
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 359, dtype: object)
(360, Id                                                                361
EmployeeName                                              JOSEPH CUFF
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                     158603.62
OvertimePay                                                       0.0
OtherPay                                                     34724.71
Benefits                                                          NaN
TotalPay                                                    193328.33
TotalPayBenefits                                            193328.33
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 360, dtype: object)
(361, Id                                 362
EmployeeName             GHODSI DAVARY
JobTitle            NURSING SUPERVISOR
BasePay                       183040.0
OvertimePay                        0.0
OtherPay                      10250.24
Benefits                           NaN
TotalPay                     193290.24
TotalPayBenefits             193290.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 361, dtype: object)
(362, Id                                 363
EmployeeName          GARY CONSTANTINE
JobTitle            POLICE OFFICER III
BasePay                      112441.83
OvertimePay                   14869.56
OtherPay                      65955.32
Benefits                           NaN
TotalPay                     193266.71
TotalPayBenefits             193266.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 362, dtype: object)
(363, Id                            364
EmployeeName        FLAVIA BAYATI
JobTitle            NURSE MANAGER
BasePay                  164711.0
OvertimePay                   0.0
OtherPay                 28384.07
Benefits                      NaN
TotalPay                193095.07
TotalPayBenefits        193095.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 363, dtype: object)
(364, Id                               365
EmployeeName        ANTONIO SANTIAGO
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                 94362.36
OtherPay                    11849.25
Benefits                         NaN
TotalPay                   193051.61
TotalPayBenefits           193051.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 364, dtype: object)
(365, Id                            366
EmployeeName        MICHAEL SMITH
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              69005.06
OtherPay                 18041.28
Benefits                      NaN
TotalPay                192980.98
TotalPayBenefits        192980.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 365, dtype: object)
(366, Id                                              367
EmployeeName                            JOHN LOFTUS
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                     0.0
OtherPay                                    4609.75
Benefits                                        NaN
TotalPay                                  192951.37
TotalPayBenefits                          192951.37
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 366, dtype: object)
(367, Id                                              368
EmployeeName                         DOMINIC CELAYA
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.64
OvertimePay                                     0.0
OtherPay                                    4586.67
Benefits                                        NaN
TotalPay                                  192928.31
TotalPayBenefits                          192928.31
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 367, dtype: object)
(368, Id                                              369
EmployeeName                        JOHN SANFORD JR
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.62
OvertimePay                                     0.0
OtherPay                                    4586.66
Benefits                                        NaN
TotalPay                                  192928.28
TotalPayBenefits                          192928.28
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 368, dtype: object)
(369, Id                                              370
EmployeeName                         STEPHEN TITTEL
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                     0.0
OtherPay                                    4586.63
Benefits                                        NaN
TotalPay                                  192928.23
TotalPayBenefits                          192928.23
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 369, dtype: object)
(370, Id                                              371
EmployeeName                         TERESA BARRETT
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188328.08
OvertimePay                                     0.0
OtherPay                                    4586.42
Benefits                                        NaN
TotalPay                                   192914.5
TotalPayBenefits                           192914.5
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 370, dtype: object)
(371, Id                                              372
EmployeeName                          VALERIE AGARD
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   185342.48
OvertimePay                                 3627.67
OtherPay                                     3936.6
Benefits                                        NaN
TotalPay                                  192906.75
TotalPayBenefits                          192906.75
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 371, dtype: object)
(372, Id                                                 373
EmployeeName                           LAURENCE RAMLAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                        78918.0
OvertimePay                                   38068.59
OtherPay                                      75792.63
Benefits                                           NaN
TotalPay                                     192779.22
TotalPayBenefits                             192779.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 372, dtype: object)
(373, Id                                 374
EmployeeName             MOHAMMED NURU
JobTitle            DEPUTY DIRECTOR IV
BasePay                      192007.49
OvertimePay                        0.0
OtherPay                         760.4
Benefits                           NaN
TotalPay                     192767.89
TotalPayBenefits             192767.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 373, dtype: object)
(374, Id                                            375
EmployeeName                            JASON PAW
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                 102990.88
OvertimePay                              85752.59
OtherPay                                  3961.68
Benefits                                      NaN
TotalPay                                192705.15
TotalPayBenefits                        192705.15
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 374, dtype: object)
(375, Id                                        376
EmployeeName                   DANIEL ARMENTA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                               76424.2
OvertimePay                               0.0
OtherPay                            116244.66
Benefits                                  NaN
TotalPay                            192668.86
TotalPayBenefits                    192668.86
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 375, dtype: object)
(376, Id                                                 377
EmployeeName                                MIKAIL ALI
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                      182135.01
OvertimePay                                    9688.59
OtherPay                                        841.15
Benefits                                           NaN
TotalPay                                     192664.75
TotalPayBenefits                             192664.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 376, dtype: object)
(377, Id                                                 378
EmployeeName                               KEVIN JONES
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.61
OvertimePay                                   30544.79
OtherPay                                       31574.4
Benefits                                           NaN
TotalPay                                      192585.8
TotalPayBenefits                              192585.8
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 377, dtype: object)
(378, Id                                          379
EmployeeName                    KENNETH CORDERO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127203.03
OvertimePay                            47341.24
OtherPay                               17982.25
Benefits                                    NaN
TotalPay                              192526.52
TotalPayBenefits                      192526.52
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 378, dtype: object)
(379, Id                             380
EmployeeName        ROBERT COLEMAN
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               64725.94
OtherPay                  21761.55
Benefits                       NaN
TotalPay                 192422.17
TotalPayBenefits         192422.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 379, dtype: object)
(380, Id                                               381
EmployeeName                         MICHAEL DRENNAN
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    192379.6
TotalPayBenefits                            192379.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 380, dtype: object)
(381, Id                                               382
EmployeeName                       WILLIAM MCFARLAND
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    192379.6
TotalPayBenefits                            192379.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 381, dtype: object)
(382, Id                                               383
EmployeeName                            RAJIV BHATIA
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    192379.6
TotalPayBenefits                            192379.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 382, dtype: object)
(383, Id                                               384
EmployeeName                            TOMAS ARAGON
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     192379.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    192379.6
TotalPayBenefits                            192379.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 383, dtype: object)
(384, Id                                     385
EmployeeName           NICOLETTE DIVECCHIO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       54524.26
OtherPay                          15277.88
Benefits                               NaN
TotalPay                         192207.13
TotalPayBenefits                 192207.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 384, dtype: object)
(385, Id                                 386
EmployeeName             DEBORAH JETER
JobTitle            DEPUTY DIRECTOR IV
BasePay                      192183.91
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     192183.91
TotalPayBenefits             192183.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 385, dtype: object)
(386, Id                                                 387
EmployeeName                           RICHARD ELLIOTT
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                  106701.58
OtherPay                                       7859.19
Benefits                                           NaN
TotalPay                                     192141.17
TotalPayBenefits                             192141.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 386, dtype: object)
(387, Id                                          388
EmployeeName                       JIM HALL III
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            60744.73
OtherPay                                8255.82
Benefits                                    NaN
TotalPay                              192105.55
TotalPayBenefits                      192105.55
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 387, dtype: object)
(388, Id                            389
EmployeeName         THOMAS BUSBY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              70333.26
OtherPay                 15824.19
Benefits                      NaN
TotalPay                192092.12
TotalPayBenefits        192092.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 388, dtype: object)
(389, Id                                          390
EmployeeName                    WILLIAM MULKEEN
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                                 61232.0
OvertimePay                            29440.91
OtherPay                              101385.37
Benefits                                    NaN
TotalPay                              192058.28
TotalPayBenefits                      192058.28
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 389, dtype: object)
(390, Id                                  391
EmployeeName              JENNIFER MATZ
JobTitle            DEPARTMENT HEAD III
BasePay                       192022.73
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      192022.73
TotalPayBenefits              192022.73
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 390, dtype: object)
(391, Id                                        392
EmployeeName                      DUSTIN NOVO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140441.86
OvertimePay                          33587.61
OtherPay                             17740.91
Benefits                                  NaN
TotalPay                            191770.38
TotalPayBenefits                    191770.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 391, dtype: object)
(392, Id                            393
EmployeeName        DAVID HAWKINS
JobTitle              FIREFIGHTER
BasePay                 104818.76
OvertimePay              74925.98
OtherPay                  11868.5
Benefits                      NaN
TotalPay                191613.24
TotalPayBenefits        191613.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 392, dtype: object)
(393, Id                                 394
EmployeeName                JON WALTON
JobTitle            DEPUTY DIRECTOR IV
BasePay                      188218.38
OvertimePay                        0.0
OtherPay                       3337.83
Benefits                           NaN
TotalPay                     191556.21
TotalPayBenefits             191556.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 393, dtype: object)
(394, Id                               395
EmployeeName        KATHLEEN MAXWELL
JobTitle               NURSE MANAGER
BasePay                    171374.32
OvertimePay                  2173.38
OtherPay                    17980.94
Benefits                         NaN
TotalPay                   191528.64
TotalPayBenefits           191528.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 394, dtype: object)
(395, Id                            396
EmployeeName         DAVID BRIGGS
JobTitle             MANAGER VIII
BasePay                 181522.51
OvertimePay                   0.0
OtherPay                  10000.0
Benefits                      NaN
TotalPay                191522.51
TotalPayBenefits        191522.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 395, dtype: object)
(396, Id                                              397
EmployeeName                          CHARLIE ORKES
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                    188341.6
OvertimePay                                  1109.1
OtherPay                                    1954.26
Benefits                                        NaN
TotalPay                                  191404.96
TotalPayBenefits                          191404.96
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 396, dtype: object)
(397, Id                                 398
EmployeeName                HANS VIGIL
JobTitle            POLICE OFFICER III
BasePay                       89873.18
OvertimePay                   29069.09
OtherPay                      72405.76
Benefits                           NaN
TotalPay                     191348.03
TotalPayBenefits             191348.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 397, dtype: object)
(398, Id                                                      399
EmployeeName                             WILLIAM SIFFERMANN
JobTitle            CHIEF PROBATION OFFICER, JUVENILE COURT
BasePay                                           191319.45
OvertimePay                                             0.0
OtherPay                                                0.0
Benefits                                                NaN
TotalPay                                          191319.45
TotalPayBenefits                                  191319.45
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 398, dtype: object)
(399, Id                                               400
EmployeeName                          MASAE KAWAMURA
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    191287.06
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   191287.06
TotalPayBenefits                           191287.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 399, dtype: object)
(400, Id                                             401
EmployeeName                       ROBERT KAPROSCH
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123169.39
OvertimePay                                3932.02
OtherPay                                  64004.25
Benefits                                       NaN
TotalPay                                 191105.66
TotalPayBenefits                         191105.66
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 400, dtype: object)
(401, Id                                                 402
EmployeeName                             THOMAS CLEARY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.41
OvertimePay                                   35055.93
OtherPay                                       6941.82
Benefits                                           NaN
TotalPay                                     191042.16
TotalPayBenefits                             191042.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 401, dtype: object)
(402, Id                                               403
EmployeeName                        ROBERT GUILLERMO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130457.9
OvertimePay                                  11305.4
OtherPay                                     49075.6
Benefits                                         NaN
TotalPay                                    190838.9
TotalPayBenefits                            190838.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 402, dtype: object)
(403, Id                                  404
EmployeeName        MAMI SUZUKI-VIDALON
JobTitle                    FIREFIGHTER
BasePay                        105934.7
OvertimePay                    67188.81
OtherPay                       17685.42
Benefits                            NaN
TotalPay                      190808.93
TotalPayBenefits              190808.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 403, dtype: object)
(404, Id                                  405
EmployeeName                 KAREN ROYE
JobTitle            DEPARTMENT HEAD III
BasePay                       190739.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      190739.36
TotalPayBenefits              190739.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 404, dtype: object)
(405, Id                            406
EmployeeName          JALAL AINEB
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              66708.34
OtherPay                 17998.95
Benefits                      NaN
TotalPay                190641.93
TotalPayBenefits        190641.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 405, dtype: object)
(406, Id                            407
EmployeeName         MICHAEL DALY
JobTitle            NURSE MANAGER
BasePay                  164035.5
OvertimePay                   0.0
OtherPay                 26596.23
Benefits                      NaN
TotalPay                190631.73
TotalPayBenefits        190631.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 406, dtype: object)
(407, Id                                 408
EmployeeName             LISA HOFFMANN
JobTitle            DEPUTY DIRECTOR IV
BasePay                      190617.54
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     190617.54
TotalPayBenefits             190617.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 407, dtype: object)
(408, Id                                               409
EmployeeName                       ELIZABETH JOHNSON
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    189728.71
OvertimePay                                      0.0
OtherPay                                       702.0
Benefits                                         NaN
TotalPay                                   190430.71
TotalPayBenefits                           190430.71
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 408, dtype: object)
(409, Id                                               410
EmployeeName                          MARK HERNANDEZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130505.2
OvertimePay                                   5990.5
OtherPay                                    53807.81
Benefits                                         NaN
TotalPay                                   190303.51
TotalPayBenefits                           190303.51
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 409, dtype: object)
(410, Id                                                 411
EmployeeName                              MARK SOLOMON
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149782.11
OvertimePay                                    8133.35
OtherPay                                      32355.58
Benefits                                           NaN
TotalPay                                     190271.04
TotalPayBenefits                             190271.04
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 410, dtype: object)
(411, Id                                  412
EmployeeName           JOHN BUCHANAN JR
JobTitle            DEPARTMENT HEAD III
BasePay                       190248.76
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      190248.76
TotalPayBenefits              190248.76
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 411, dtype: object)
(412, Id                                 413
EmployeeName              TED YAMASAKI
JobTitle            DEPUTY DIRECTOR IV
BasePay                      190108.91
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     190108.91
TotalPayBenefits             190108.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 412, dtype: object)
(413, Id                            414
EmployeeName        DANIEL MOLLOY
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               61896.0
OtherPay                 22238.32
Benefits                      NaN
TotalPay                190069.01
TotalPayBenefits        190069.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 413, dtype: object)
(414, Id                                                    415
EmployeeName                                  ANDY ZANOFF
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140564.02
OvertimePay                                      11877.35
OtherPay                                         37551.97
Benefits                                              NaN
TotalPay                                        189993.34
TotalPayBenefits                                189993.34
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 414, dtype: object)
(415, Id                                          416
EmployeeName                         SHARON WOO
JobTitle            ASSISTANT CHIEF ATTORNEY II
BasePay                                189931.7
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               189931.7
TotalPayBenefits                       189931.7
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 415, dtype: object)
(416, Id                                 417
EmployeeName             ERIC CRANSTON
JobTitle            SHERIFF'S SERGEANT
BasePay                       106106.0
OvertimePay                    69382.3
OtherPay                      14442.42
Benefits                           NaN
TotalPay                     189930.72
TotalPayBenefits             189930.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 416, dtype: object)
(417, Id                                418
EmployeeName        LAWRENCE NICHOLLS
JobTitle                NURSE MANAGER
BasePay                      161661.6
OvertimePay                     619.4
OtherPay                     27479.77
Benefits                          NaN
TotalPay                    189760.77
TotalPayBenefits            189760.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 417, dtype: object)
(418, Id                               419
EmployeeName        VINCENT PAMPANIN
JobTitle                 FIREFIGHTER
BasePay                     118167.0
OvertimePay                 51007.74
OtherPay                     20541.0
Benefits                         NaN
TotalPay                   189715.74
TotalPayBenefits           189715.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 418, dtype: object)
(419, Id                                                 420
EmployeeName                            ALEXIS GOLDNER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.95
OvertimePay                                   41304.21
OtherPay                                      17904.06
Benefits                                           NaN
TotalPay                                     189666.22
TotalPayBenefits                             189666.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 419, dtype: object)
(420, Id                                 421
EmployeeName          MADONNA VALENCIA
JobTitle            NURSING SUPERVISOR
BasePay                       163644.0
OvertimePay                        0.0
OtherPay                      25965.05
Benefits                           NaN
TotalPay                     189609.05
TotalPayBenefits             189609.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 420, dtype: object)
(421, Id                                                 422
EmployeeName                              MARK JOHNSON
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      150355.43
OvertimePay                                    9841.56
OtherPay                                      29403.44
Benefits                                           NaN
TotalPay                                     189600.43
TotalPayBenefits                             189600.43
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 421, dtype: object)
(422, Id                                          423
EmployeeName                   BRENDAN MCGORRIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            51115.99
OtherPay                               15365.22
Benefits                                    NaN
TotalPay                              189586.23
TotalPayBenefits                      189586.23
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 422, dtype: object)
(423, Id                                                         424
EmployeeName                                     ATTICA BOWDEN
JobTitle            INVESTIGATOR, BUREAU OF FIRE INVESTIGATION
BasePay                                              126857.59
OvertimePay                                           45929.05
OtherPay                                               16784.8
Benefits                                                   NaN
TotalPay                                             189571.44
TotalPayBenefits                                     189571.44
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 423, dtype: object)
(424, Id                                                    425
EmployeeName                           EHRHARDT GROOTHOFF
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.88
OvertimePay                                      31454.05
OtherPay                                          17542.3
Benefits                                              NaN
TotalPay                                        189543.23
TotalPayBenefits                                189543.23
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 424, dtype: object)
(425, Id                                              426
EmployeeName                       MICHAEL CONNOLLY
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   188341.63
OvertimePay                                     0.0
OtherPay                                     915.59
Benefits                                        NaN
TotalPay                                  189257.22
TotalPayBenefits                          189257.22
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 425, dtype: object)
(426, Id                            427
EmployeeName            NANCY LEW
JobTitle            NURSE MANAGER
BasePay                 171236.09
OvertimePay                   0.0
OtherPay                 17998.64
Benefits                      NaN
TotalPay                189234.73
TotalPayBenefits        189234.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 426, dtype: object)
(427, Id                                                 428
EmployeeName                              MARK SENORES
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       76298.77
OvertimePay                                  105953.61
OtherPay                                       6962.09
Benefits                                           NaN
TotalPay                                     189214.47
TotalPayBenefits                             189214.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 427, dtype: object)
(428, Id                            429
EmployeeName         ROSEMARY LEE
JobTitle            NURSE MANAGER
BasePay                 171236.01
OvertimePay                   0.0
OtherPay                 17963.61
Benefits                      NaN
TotalPay                189199.62
TotalPayBenefits        189199.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 428, dtype: object)
(429, Id                                430
EmployeeName              IVAR SATERO
JobTitle            DEPUTY DIRECTOR V
BasePay                     186021.06
OvertimePay                       0.0
OtherPay                      3140.95
Benefits                          NaN
TotalPay                    189162.01
TotalPayBenefits            189162.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 429, dtype: object)
(430, Id                             431
EmployeeName        VALERIE INOUYE
JobTitle              MANAGER VIII
BasePay                  189061.08
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 189061.08
TotalPayBenefits         189061.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 430, dtype: object)
(431, Id                                        432
EmployeeName                      DALE CARNES
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.01
OvertimePay                          45392.98
OtherPay                              16445.1
Benefits                                  NaN
TotalPay                            189041.09
TotalPayBenefits                    189041.09
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 431, dtype: object)
(432, Id                            433
EmployeeName        VINCENT DAVIS
JobTitle              FIREFIGHTER
BasePay                 103372.26
OvertimePay               78258.7
OtherPay                  7409.15
Benefits                      NaN
TotalPay                189040.11
TotalPayBenefits        189040.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 432, dtype: object)
(433, Id                                                      434
EmployeeName                                LEONARD BROBERG
JobTitle            ASSISTANT INSPECTOR (POLICE DEPARTMENT)
BasePay                                           123169.95
OvertimePay                                        45679.84
OtherPay                                           20149.41
Benefits                                                NaN
TotalPay                                           188999.2
TotalPayBenefits                                   188999.2
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 433, dtype: object)
(434, Id                                 435
EmployeeName               FUAD SWEISS
JobTitle            DEPUTY DIRECTOR IV
BasePay                      188842.42
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     188842.42
TotalPayBenefits             188842.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 434, dtype: object)
(435, Id                                          436
EmployeeName                  WILLIAM MCFARLAND
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            50096.28
OtherPay                                15549.0
Benefits                                    NaN
TotalPay                              188750.29
TotalPayBenefits                      188750.29
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 435, dtype: object)
(436, Id                                                 437
EmployeeName                           MARTIN HALLORAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130457.8
OvertimePay                                    2881.68
OtherPay                                      55339.68
Benefits                                           NaN
TotalPay                                     188679.16
TotalPayBenefits                             188679.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 436, dtype: object)
(437, Id                                                 438
EmployeeName                             ARTHUR BORGES
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.77
OvertimePay                                   13727.48
OtherPay                                       25885.4
Benefits                                           NaN
TotalPay                                     188663.65
TotalPayBenefits                             188663.65
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 437, dtype: object)
(438, Id                                         439
EmployeeName                     RANDY MANNING
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103146.49
OvertimePay                           28702.13
OtherPay                              56746.05
Benefits                                   NaN
TotalPay                             188594.67
TotalPayBenefits                     188594.67
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 438, dtype: object)
(439, Id                                               440
EmployeeName                         RICHARD ZERCHER
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     188592.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    188592.6
TotalPayBenefits                            188592.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 439, dtype: object)
(440, Id                                          441
EmployeeName                     DANIEL SCDORIS
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               109171.24
OvertimePay                            25388.04
OtherPay                               53970.93
Benefits                                    NaN
TotalPay                              188530.21
TotalPayBenefits                      188530.21
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 440, dtype: object)
(441, Id                            442
EmployeeName              LAN LEE
JobTitle            NURSE MANAGER
BasePay                  161044.0
OvertimePay                   0.0
OtherPay                 27437.04
Benefits                      NaN
TotalPay                188481.04
TotalPayBenefits        188481.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 441, dtype: object)
(442, Id                            443
EmployeeName        TROY WILLIAMS
JobTitle            NURSE MANAGER
BasePay                  161044.0
OvertimePay                   0.0
OtherPay                  27377.5
Benefits                      NaN
TotalPay                 188421.5
TotalPayBenefits         188421.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 442, dtype: object)
(443, Id                                          444
EmployeeName                       SANDRA HUANG
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               176314.14
OvertimePay                                 0.0
OtherPay                                12096.0
Benefits                                    NaN
TotalPay                              188410.14
TotalPayBenefits                      188410.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 443, dtype: object)
(444, Id                                     445
EmployeeName                  SAHIR PUTRUS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       50720.85
OtherPay                          15277.83
Benefits                               NaN
TotalPay                         188403.66
TotalPayBenefits                 188403.66
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 444, dtype: object)
(445, Id                             446
EmployeeName        ELAINE COLEMAN
JobTitle             NURSE MANAGER
BasePay                  171236.09
OvertimePay                    0.0
OtherPay                  17123.68
Benefits                       NaN
TotalPay                 188359.77
TotalPayBenefits         188359.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 445, dtype: object)
(446, Id                                     447
EmployeeName                 DENISE BAILEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                       50976.69
OtherPay                           14966.3
Benefits                               NaN
TotalPay                         188347.96
TotalPayBenefits                 188347.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 446, dtype: object)
(447, Id                                        448
EmployeeName        ANNETTE HOBRUCKER-PFEIFER
JobTitle               FIRE FIGHTER PARAMEDIC
BasePay                             122404.97
OvertimePay                          50649.77
OtherPay                              15277.8
Benefits                                  NaN
TotalPay                            188332.54
TotalPayBenefits                    188332.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 447, dtype: object)
(448, Id                                            449
EmployeeName                          WENDY STILL
JobTitle            CHIEF ADULT PROBATION OFFICER
BasePay                                  188288.1
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 188288.1
TotalPayBenefits                         188288.1
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 448, dtype: object)
(449, Id                            450
EmployeeName        CHUTEH KOTAKE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              64386.13
OtherPay                  17743.1
Benefits                      NaN
TotalPay                188063.88
TotalPayBenefits        188063.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 449, dtype: object)
(450, Id                            451
EmployeeName        DIANA GUEVARA
JobTitle               MANAGER VI
BasePay                 166066.08
OvertimePay                   0.0
OtherPay                 21993.31
Benefits                      NaN
TotalPay                188059.39
TotalPayBenefits        188059.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 450, dtype: object)
(451, Id                                                 452
EmployeeName                          RAEMONA WILLIAMS
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      148260.81
OvertimePay                                   14803.16
OtherPay                                      24979.59
Benefits                                           NaN
TotalPay                                     188043.56
TotalPayBenefits                             188043.56
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 451, dtype: object)
(452, Id                                 453
EmployeeName          BRONWYN GUNDOGDU
JobTitle            NURSING SUPERVISOR
BasePay                      187982.18
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     187982.18
TotalPayBenefits             187982.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 452, dtype: object)
(453, Id                                454
EmployeeName               TRYG MCCOY
JobTitle            DEPUTY DIRECTOR V
BasePay                     187976.14
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    187976.14
TotalPayBenefits            187976.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 453, dtype: object)
(454, Id                                 455
EmployeeName              JAMES FLORES
JobTitle            TRANSIT SUPERVISOR
BasePay                        88199.6
OvertimePay                   97858.62
OtherPay                       1803.48
Benefits                           NaN
TotalPay                      187861.7
TotalPayBenefits              187861.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 454, dtype: object)
(455, Id                                  456
EmployeeName                 VIVIAN DAY
JobTitle            DEPARTMENT HEAD III
BasePay                       187855.73
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      187855.73
TotalPayBenefits              187855.73
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 455, dtype: object)
(456, Id                                          457
EmployeeName                     JEFFREY BARDEN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127203.01
OvertimePay                            41809.29
OtherPay                                18749.8
Benefits                                    NaN
TotalPay                               187762.1
TotalPayBenefits                       187762.1
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 456, dtype: object)
(457, Id                                          458
EmployeeName                     MATTHEW CANNON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               137026.86
OvertimePay                            33397.36
OtherPay                               17246.59
Benefits                                    NaN
TotalPay                              187670.81
TotalPayBenefits                      187670.81
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 457, dtype: object)
(458, Id                                       459
EmployeeName                   ROBERT GALLOT
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.05
OvertimePay                          3115.45
OtherPay                            57585.87
Benefits                                 NaN
TotalPay                           187669.37
TotalPayBenefits                   187669.37
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 458, dtype: object)
(459, Id                                                460
EmployeeName                            ERIBERTO ISON
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  73696.27
OtherPay                                     14943.44
Benefits                                          NaN
TotalPay                                    187654.11
TotalPayBenefits                            187654.11
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 459, dtype: object)
(460, Id                                          461
EmployeeName                    RICHARD UNTALAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               137399.95
OvertimePay                            33554.54
OtherPay                               16643.23
Benefits                                    NaN
TotalPay                              187597.72
TotalPayBenefits                      187597.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 460, dtype: object)
(461, Id                                     462
EmployeeName               VERNONICA JONES
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.64
OvertimePay                       71499.83
OtherPay                           9648.25
Benefits                               NaN
TotalPay                         187589.72
TotalPayBenefits                 187589.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 461, dtype: object)
(462, Id                            463
EmployeeName         MICHAEL QUAN
JobTitle             MANAGER VIII
BasePay                 102242.01
OvertimePay                   0.0
OtherPay                 85231.49
Benefits                      NaN
TotalPay                 187473.5
TotalPayBenefits         187473.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 462, dtype: object)
(463, Id                                    464
EmployeeName               LARRY MITCHELL
JobTitle            MAINTENANCE MACHINIST
BasePay                           75870.3
OvertimePay                     103370.89
OtherPay                          8216.57
Benefits                              NaN
TotalPay                        187457.76
TotalPayBenefits                187457.76
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 463, dtype: object)
(464, Id                                               465
EmployeeName                               JOHN HART
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                 18014.24
OtherPay                                    38960.95
Benefits                                         NaN
TotalPay                                    187456.7
TotalPayBenefits                            187456.7
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 464, dtype: object)
(465, Id                                               466
EmployeeName                        CARLOS GUTIERREZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130457.9
OvertimePay                                  3044.77
OtherPay                                    53855.93
Benefits                                         NaN
TotalPay                                    187358.6
TotalPayBenefits                            187358.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 465, dtype: object)
(466, Id                                          467
EmployeeName                        JOHN BARKER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               155276.21
OvertimePay                                 0.0
OtherPay                               31931.61
Benefits                                    NaN
TotalPay                              187207.82
TotalPayBenefits                      187207.82
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 466, dtype: object)
(467, Id                                        468
EmployeeName                 ANTHONY ROBINSON
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140563.98
OvertimePay                           5283.09
OtherPay                             41259.22
Benefits                                  NaN
TotalPay                            187106.29
TotalPayBenefits                    187106.29
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 467, dtype: object)
(468, Id                                          469
EmployeeName                    MICHAEL COLEMAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                142248.5
OvertimePay                                 0.0
OtherPay                               44767.25
Benefits                                    NaN
TotalPay                              187015.75
TotalPayBenefits                      187015.75
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 468, dtype: object)
(469, Id                                               470
EmployeeName                            JOSHUA KUMLI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                 35508.55
OtherPay                                     20947.8
Benefits                                         NaN
TotalPay                                   186937.89
TotalPayBenefits                           186937.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 469, dtype: object)
(470, Id                                 471
EmployeeName                 JIM GIANG
JobTitle            TRANSIT SUPERVISOR
BasePay                       90108.62
OvertimePay                   91422.49
OtherPay                        5336.6
Benefits                           NaN
TotalPay                     186867.71
TotalPayBenefits             186867.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 470, dtype: object)
(471, Id                                                 472
EmployeeName                                 GLENN MAR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.76
OvertimePay                                   22203.89
OtherPay                                      15557.27
Benefits                                           NaN
TotalPay                                     186811.92
TotalPayBenefits                             186811.92
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 471, dtype: object)
(472, Id                                       473
EmployeeName                 MANUEL PEGUEROS
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126292.58
OvertimePay                          6236.69
OtherPay                            54237.25
Benefits                                 NaN
TotalPay                           186766.52
TotalPayBenefits                   186766.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 472, dtype: object)
(473, Id                            474
EmployeeName           THOMAS REY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              62776.35
OtherPay                 17981.88
Benefits                      NaN
TotalPay                186692.89
TotalPayBenefits        186692.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 473, dtype: object)
(474, Id                                                 475
EmployeeName                          MICHAEL PHILPOTT
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                   40102.94
OtherPay                                      16067.38
Benefits                                           NaN
TotalPay                                     186646.72
TotalPayBenefits                             186646.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 474, dtype: object)
(475, Id                                                          476
EmployeeName                                         DAMON HART
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130543.29
OvertimePay                                            31740.87
OtherPay                                               24346.72
Benefits                                                    NaN
TotalPay                                              186630.88
TotalPayBenefits                                      186630.88
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 475, dtype: object)
(476, Id                                 477
EmployeeName             JAMES DEIGNAN
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                    9252.03
OtherPay                      64937.87
Benefits                           NaN
TotalPay                     186611.31
TotalPayBenefits             186611.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 476, dtype: object)
(477, Id                                                               478
EmployeeName                                      CHRISTIANE HAYASHI
JobTitle            DEPUTY DIRECTOR I - MUNICIPAL TRANSPORTATION AGE
BasePay                                                    186541.05
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   186541.05
TotalPayBenefits                                           186541.05
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 477, dtype: object)
(478, Id                                            479
EmployeeName                       RICHARD CURRIE
JobTitle            MARINE ENGINEER OF FIRE BOATS
BasePay                                 140546.87
OvertimePay                              28449.31
OtherPay                                 17542.29
Benefits                                      NaN
TotalPay                                186538.47
TotalPayBenefits                        186538.47
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 478, dtype: object)
(479, Id                                          480
EmployeeName                       ALLEN TURPIN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               176050.04
OvertimePay                                 0.0
OtherPay                               10481.51
Benefits                                    NaN
TotalPay                              186531.55
TotalPayBenefits                      186531.55
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 479, dtype: object)
(480, Id                                 481
EmployeeName            HERBERT HENLEY
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   91198.76
OtherPay                       5219.84
Benefits                           NaN
TotalPay                      186512.8
TotalPayBenefits              186512.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 480, dtype: object)
(481, Id                                               482
EmployeeName                            DANIEL DEDET
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130466.65
OvertimePay                                 26074.89
OtherPay                                    29954.29
Benefits                                         NaN
TotalPay                                   186495.83
TotalPayBenefits                           186495.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 481, dtype: object)
(482, Id                            483
EmployeeName           DEREK WING
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              62854.45
OtherPay                 17702.71
Benefits                      NaN
TotalPay                186491.82
TotalPayBenefits        186491.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 482, dtype: object)
(483, Id                                                 484
EmployeeName                             TONEY CHAPLIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130481.5
OvertimePay                                   37935.71
OtherPay                                      18026.19
Benefits                                           NaN
TotalPay                                      186443.4
TotalPayBenefits                              186443.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 483, dtype: object)
(484, Id                                                 485
EmployeeName                           PIERRE MARTINEZ
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.19
OvertimePay                                   33859.27
OtherPay                                      22045.83
Benefits                                           NaN
TotalPay                                     186410.29
TotalPayBenefits                             186410.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 484, dtype: object)
(485, Id                                          486
EmployeeName                     DENNIS O'NEILL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               126732.39
OvertimePay                            44586.06
OtherPay                               15058.44
Benefits                                    NaN
TotalPay                              186376.89
TotalPayBenefits                      186376.89
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 485, dtype: object)
(486, Id                                                 487
EmployeeName                          MICHAEL DUDOROFF
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130466.6
OvertimePay                                   28591.77
OtherPay                                      27311.59
Benefits                                           NaN
TotalPay                                     186369.96
TotalPayBenefits                             186369.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 486, dtype: object)
(487, Id                                        488
EmployeeName                    RUDOLPH ERLER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                               77301.9
OvertimePay                           6342.63
OtherPay                            102724.32
Benefits                                  NaN
TotalPay                            186368.85
TotalPayBenefits                    186368.85
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 487, dtype: object)
(488, Id                                                    489
EmployeeName                                  MARTIN GRAN
JobTitle            DIRECTOR, EMPLOYEE RELATIONS DIVISION
BasePay                                         186341.79
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        186341.79
TotalPayBenefits                                186341.79
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 488, dtype: object)
(489, Id                               490
EmployeeName        GAVIN ESTUPINIAN
JobTitle                 FIREFIGHTER
BasePay                    105934.64
OvertimePay                 63019.63
OtherPay                    17342.94
Benefits                         NaN
TotalPay                   186297.21
TotalPayBenefits           186297.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 489, dtype: object)
(490, Id                                                 491
EmployeeName                               CARL FABBRI
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.77
OvertimePay                                   34003.88
OtherPay                                       3183.09
Benefits                                           NaN
TotalPay                                     186231.74
TotalPayBenefits                             186231.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 490, dtype: object)
(491, Id                            492
EmployeeName         JILL LECOUNT
JobTitle            NURSE MANAGER
BasePay                  171044.1
OvertimePay                   0.0
OtherPay                 15147.84
Benefits                      NaN
TotalPay                186191.94
TotalPayBenefits        186191.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 491, dtype: object)
(492, Id                                        493
EmployeeName                   JEFF COLUMBINI
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             129252.01
OvertimePay                          30839.74
OtherPay                             26013.27
Benefits                                  NaN
TotalPay                            186105.02
TotalPayBenefits                    186105.02
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 492, dtype: object)
(493, Id                             494
EmployeeName        ANDRE WILLIAMS
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               62182.73
OtherPay                  17958.55
Benefits                       NaN
TotalPay                 186075.92
TotalPayBenefits         186075.92
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 493, dtype: object)
(494, Id                                          495
EmployeeName                      FLOYD ROLLINS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123013.0
OvertimePay                            47172.46
OtherPay                               15863.95
Benefits                                    NaN
TotalPay                              186049.41
TotalPayBenefits                      186049.41
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 494, dtype: object)
(495, Id                                 496
EmployeeName             JOSE CASTILLO
JobTitle            TRANSIT SUPERVISOR
BasePay                        87384.6
OvertimePay                   97729.16
OtherPay                        837.79
Benefits                           NaN
TotalPay                     185951.55
TotalPayBenefits             185951.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 495, dtype: object)
(496, Id                                          497
EmployeeName                     THOMAS KOHMANN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            38790.92
OtherPay                                23865.0
Benefits                                    NaN
TotalPay                              185760.92
TotalPayBenefits                      185760.92
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 496, dtype: object)
(497, Id                                498
EmployeeName           KANDACE BENDER
JobTitle            DEPUTY DIRECTOR V
BasePay                      185724.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     185724.5
TotalPayBenefits             185724.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 497, dtype: object)
(498, Id                            499
EmployeeName          ROBERT SHAW
JobTitle             MANAGER VIII
BasePay                  185724.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 185724.5
TotalPayBenefits         185724.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 498, dtype: object)
(499, Id                                500
EmployeeName          LEONARDO FERMIN
JobTitle            DEPUTY DIRECTOR V
BasePay                      185724.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     185724.5
TotalPayBenefits             185724.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 499, dtype: object)
(500, Id                            501
EmployeeName          KATHRYN HOW
JobTitle             MANAGER VIII
BasePay                  185724.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 185724.5
TotalPayBenefits         185724.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 500, dtype: object)
(501, Id                                502
EmployeeName              THERESA LEE
JobTitle            DEPUTY DIRECTOR V
BasePay                      185724.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     185724.5
TotalPayBenefits             185724.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 501, dtype: object)
(502, Id                                 503
EmployeeName        SURINDERJEET BAJWA
JobTitle                  MANAGER VIII
BasePay                      185724.49
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     185724.49
TotalPayBenefits             185724.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 502, dtype: object)
(503, Id                                504
EmployeeName           STEVEN RITCHIE
JobTitle            DEPUTY DIRECTOR V
BasePay                     185724.49
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    185724.49
TotalPayBenefits            185724.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 503, dtype: object)
(504, Id                            505
EmployeeName          ELLEN LEVIN
JobTitle             MANAGER VIII
BasePay                 185724.48
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                185724.48
TotalPayBenefits        185724.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 504, dtype: object)
(505, Id                                506
EmployeeName           TUAMELIE MOALA
JobTitle            DEPUTY DIRECTOR V
BasePay                     185724.47
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    185724.47
TotalPayBenefits            185724.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 505, dtype: object)
(506, Id                                         507
EmployeeName                      ROBERT BRYAN
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.47
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.47
TotalPayBenefits                     185695.47
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 506, dtype: object)
(507, Id                                         508
EmployeeName             JULIA M C FRIEDLANDER
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.47
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.47
TotalPayBenefits                     185695.47
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 507, dtype: object)
(508, Id                                         509
EmployeeName                 JULIE VAN NOSTERN
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.47
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.47
TotalPayBenefits                     185695.47
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 508, dtype: object)
(509, Id                                         510
EmployeeName                 ALEETA VAN RUNKLE
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.46
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.46
TotalPayBenefits                     185695.46
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 509, dtype: object)
(510, Id                                         511
EmployeeName                   DONALD MARGOLIS
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.45
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.45
TotalPayBenefits                     185695.45
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 510, dtype: object)
(511, Id                                         512
EmployeeName                       JAMES EMERY
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.43
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.43
TotalPayBenefits                     185695.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 511, dtype: object)
(512, Id                                         513
EmployeeName                   WAYNE SNODGRASS
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.43
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.43
TotalPayBenefits                     185695.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 512, dtype: object)
(513, Id                                         514
EmployeeName                   THERESA MUELLER
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.42
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.42
TotalPayBenefits                     185695.42
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 513, dtype: object)
(514, Id                                         515
EmployeeName                          ALEX TSE
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.39
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.39
TotalPayBenefits                     185695.39
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 514, dtype: object)
(515, Id                                         516
EmployeeName                MATTHEW ROTHSCHILD
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.38
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.38
TotalPayBenefits                     185695.38
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 515, dtype: object)
(516, Id                                         517
EmployeeName                     VICKI CLAYTON
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.37
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.37
TotalPayBenefits                     185695.37
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 516, dtype: object)
(517, Id                                         518
EmployeeName                    PAUL HENDERSON
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.36
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.36
TotalPayBenefits                     185695.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 517, dtype: object)
(518, Id                                         519
EmployeeName                    NOREEN AMBROSE
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.36
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.36
TotalPayBenefits                     185695.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 518, dtype: object)
(519, Id                                         520
EmployeeName                         MARIA BEE
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.36
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.36
TotalPayBenefits                     185695.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 519, dtype: object)
(520, Id                                         521
EmployeeName                     KIMIKO BURTON
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.36
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.36
TotalPayBenefits                     185695.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 520, dtype: object)
(521, Id                                         522
EmployeeName                     OWEN CLEMENTS
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              185695.36
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             185695.36
TotalPayBenefits                     185695.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 521, dtype: object)
(522, Id                                         523
EmployeeName                NICHOLAS COLANGELO
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103567.01
OvertimePay                           30188.24
OtherPay                               51880.5
Benefits                                   NaN
TotalPay                             185635.75
TotalPayBenefits                     185635.75
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 522, dtype: object)
(523, Id                                                 524
EmployeeName                            JAMES SPILLANE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       51437.99
OvertimePay                                   37494.51
OtherPay                                       96685.9
Benefits                                           NaN
TotalPay                                      185618.4
TotalPayBenefits                              185618.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 523, dtype: object)
(524, Id                                 525
EmployeeName        DONALDSON SHUMPERT
JobTitle              TRAIN CONTROLLER
BasePay                        95632.6
OvertimePay                   77081.46
OtherPay                      12896.51
Benefits                           NaN
TotalPay                     185610.57
TotalPayBenefits             185610.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 524, dtype: object)
(525, Id                                              526
EmployeeName                             CURTIS LUM
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                   184700.97
OvertimePay                                     0.0
OtherPay                                     851.04
Benefits                                        NaN
TotalPay                                  185552.01
TotalPayBenefits                          185552.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 525, dtype: object)
(526, Id                                527
EmployeeName             BARBARA HALE
JobTitle            DEPUTY DIRECTOR V
BasePay                     185541.91
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    185541.91
TotalPayBenefits            185541.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 526, dtype: object)
(527, Id                                        528
EmployeeName                     HENRY LARKIN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              166570.2
OvertimePay                               0.0
OtherPay                             18858.72
Benefits                                  NaN
TotalPay                            185428.92
TotalPayBenefits                    185428.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 527, dtype: object)
(528, Id                                                 529
EmployeeName                            ROBERT VELARDE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                    25640.9
OtherPay                                      29287.06
Benefits                                           NaN
TotalPay                                     185404.36
TotalPayBenefits                             185404.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 528, dtype: object)
(529, Id                                          530
EmployeeName                    ZHI JIAR ZHUANG
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               175345.82
OvertimePay                                 0.0
OtherPay                               10017.33
Benefits                                    NaN
TotalPay                              185363.15
TotalPayBenefits                      185363.15
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 529, dtype: object)
(530, Id                                        531
EmployeeName        ZEBA IMAN NAZEERI-SIMMONS
JobTitle                          MANAGER VII
BasePay                              181066.7
OvertimePay                               0.0
OtherPay                              4284.19
Benefits                                  NaN
TotalPay                            185350.89
TotalPayBenefits                    185350.89
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 530, dtype: object)
(531, Id                                 532
EmployeeName             ROBERT BONNET
JobTitle            POLICE OFFICER III
BasePay                      117225.66
OvertimePay                   20304.62
OtherPay                      47786.99
Benefits                           NaN
TotalPay                     185317.27
TotalPayBenefits             185317.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 531, dtype: object)
(532, Id                                               533
EmployeeName                      JOSEPH FISCHER-III
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  4482.84
OtherPay                                    50364.21
Benefits                                         NaN
TotalPay                                   185305.01
TotalPayBenefits                           185305.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 532, dtype: object)
(533, Id                                                 534
EmployeeName                               LYN TOMIOKA
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                      182297.76
OvertimePay                                     845.55
OtherPay                                        2155.7
Benefits                                           NaN
TotalPay                                     185299.01
TotalPayBenefits                             185299.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 533, dtype: object)
(534, Id                                  535
EmployeeName              ROSE QUINONES
JobTitle            PHYSICIAN ASSISTANT
BasePay                       159457.99
OvertimePay                    24685.32
OtherPay                         1115.0
Benefits                            NaN
TotalPay                      185258.31
TotalPayBenefits              185258.31
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 534, dtype: object)
(535, Id                                          536
EmployeeName                     RAUL FRANCISCO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            44580.64
OtherPay                               17568.84
Benefits                                    NaN
TotalPay                              185254.49
TotalPayBenefits                      185254.49
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 535, dtype: object)
(536, Id                                 537
EmployeeName        MARGARET HANNAFORD
JobTitle                   MANAGER VII
BasePay                      176127.11
OvertimePay                        0.0
OtherPay                       9085.02
Benefits                           NaN
TotalPay                     185212.13
TotalPayBenefits             185212.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 536, dtype: object)
(537, Id                                                538
EmployeeName                              ROBERT CHIN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  73458.28
OtherPay                                     12706.06
Benefits                                          NaN
TotalPay                                    185178.74
TotalPayBenefits                            185178.74
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 537, dtype: object)
(538, Id                            539
EmployeeName         JOSEPH WOODS
JobTitle               MANAGER VI
BasePay                 180671.06
OvertimePay                   0.0
OtherPay                   4500.0
Benefits                      NaN
TotalPay                185171.06
TotalPayBenefits        185171.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 538, dtype: object)
(539, Id                                        540
EmployeeName                  NICOL JURATOVAC
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140441.89
OvertimePay                          35910.13
OtherPay                              8755.23
Benefits                                  NaN
TotalPay                            185107.25
TotalPayBenefits                    185107.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 539, dtype: object)
(540, Id                                 541
EmployeeName          ANDRE ANDREWS SR
JobTitle            TRANSIT SUPERVISOR
BasePay                       89755.51
OvertimePay                   90023.99
OtherPay                       5165.98
Benefits                           NaN
TotalPay                     184945.48
TotalPayBenefits             184945.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 540, dtype: object)
(541, Id                                          542
EmployeeName                    CHARLES STINSON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               141720.27
OvertimePay                                 0.0
OtherPay                               43173.11
Benefits                                    NaN
TotalPay                              184893.38
TotalPayBenefits                      184893.38
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 541, dtype: object)
(542, Id                            543
EmployeeName        DEBORAH LOGAN
JobTitle            NURSE MANAGER
BasePay                  158223.4
OvertimePay                   0.0
OtherPay                 26661.89
Benefits                      NaN
TotalPay                184885.29
TotalPayBenefits        184885.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 542, dtype: object)
(543, Id                                     544
EmployeeName                   DAVID ZWYER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        48379.4
OtherPay                          14049.85
Benefits                               NaN
TotalPay                         184834.24
TotalPayBenefits                 184834.24
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 543, dtype: object)
(544, Id                                               545
EmployeeName                           EDWARD CHEUNG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                 18721.14
OtherPay                                    35382.94
Benefits                                         NaN
TotalPay                                   184562.02
TotalPayBenefits                           184562.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 544, dtype: object)
(545, Id                                          546
EmployeeName                       ALAN REYNAUD
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            45870.31
OtherPay                               15554.55
Benefits                                    NaN
TotalPay                              184529.88
TotalPayBenefits                      184529.88
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 545, dtype: object)
(546, Id                                   547
EmployeeName                   MYO CHANG
JobTitle            PHYSICIAN SPECIALIST
BasePay                        184484.87
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       184484.87
TotalPayBenefits               184484.87
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 546, dtype: object)
(547, Id                                         548
EmployeeName                     JERRY COLEMAN
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              183653.74
OvertimePay                                0.0
OtherPay                                817.19
Benefits                                   NaN
TotalPay                             184470.93
TotalPayBenefits                     184470.93
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 547, dtype: object)
(548, Id                                         549
EmployeeName                       JUNE CRAVET
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              183653.74
OvertimePay                                0.0
OtherPay                                817.17
Benefits                                   NaN
TotalPay                             184470.91
TotalPayBenefits                     184470.91
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 548, dtype: object)
(549, Id                                          550
EmployeeName                      DEBORAH BORNE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               181718.79
OvertimePay                                 0.0
OtherPay                                 2646.0
Benefits                                    NaN
TotalPay                              184364.79
TotalPayBenefits                      184364.79
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 549, dtype: object)
(550, Id                                        551
EmployeeName                 PATRICK MULLANEY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.89
OvertimePay                           23373.0
OtherPay                             20287.81
Benefits                                  NaN
TotalPay                             184207.7
TotalPayBenefits                     184207.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 550, dtype: object)
(551, Id                                                 552
EmployeeName                             DENISE NEWMAN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       168713.2
OvertimePay                                    5340.28
OtherPay                                      10122.78
Benefits                                           NaN
TotalPay                                     184176.26
TotalPayBenefits                             184176.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 551, dtype: object)
(552, Id                                                 553
EmployeeName                               JOSEPH FONG
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.62
OvertimePay                                   46723.27
OtherPay                                       6969.47
Benefits                                           NaN
TotalPay                                     184174.36
TotalPayBenefits                             184174.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 552, dtype: object)
(553, Id                                            554
EmployeeName                           DAVID OWEN
JobTitle            MARINE ENGINEER OF FIRE BOATS
BasePay                                 140546.85
OvertimePay                              26059.18
OtherPay                                 17542.28
Benefits                                      NaN
TotalPay                                184148.31
TotalPayBenefits                        184148.31
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 553, dtype: object)
(554, Id                                          555
EmployeeName                   TIMOTHY SINCLAIR
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                175345.8
OvertimePay                                 0.0
OtherPay                                8767.29
Benefits                                    NaN
TotalPay                              184113.09
TotalPayBenefits                      184113.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 554, dtype: object)
(555, Id                            556
EmployeeName          JOHN FLORES
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               61569.8
OtherPay                 16499.67
Benefits                      NaN
TotalPay                184004.12
TotalPayBenefits        184004.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 555, dtype: object)
(556, Id                                          557
EmployeeName                     ALBERT CENDANA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                155013.0
OvertimePay                                 0.0
OtherPay                               28984.15
Benefits                                    NaN
TotalPay                              183997.15
TotalPayBenefits                      183997.15
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 556, dtype: object)
(557, Id                                        558
EmployeeName                    MICHAEL BELLO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.86
OvertimePay                          13910.78
OtherPay                             29537.51
Benefits                                  NaN
TotalPay                            183995.15
TotalPayBenefits                    183995.15
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 557, dtype: object)
(558, Id                                               559
EmployeeName                        KEVIN LABANOWSKI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.89
OvertimePay                                 29541.31
OtherPay                                    23939.28
Benefits                                         NaN
TotalPay                                   183938.48
TotalPayBenefits                           183938.48
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 558, dtype: object)
(559, Id                                          560
EmployeeName                     STEVEN WOZNIAK
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               175170.24
OvertimePay                                 0.0
OtherPay                                8758.56
Benefits                                    NaN
TotalPay                               183928.8
TotalPayBenefits                       183928.8
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 559, dtype: object)
(560, Id                             561
EmployeeName        KATHRYN FOWLER
JobTitle             NURSE MANAGER
BasePay                  152743.07
OvertimePay                    0.0
OtherPay                   31081.7
Benefits                       NaN
TotalPay                 183824.77
TotalPayBenefits         183824.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 560, dtype: object)
(561, Id                                 562
EmployeeName             JOSEPH MAYERS
JobTitle            POLICE OFFICER III
BasePay                       67817.57
OvertimePay                   28681.85
OtherPay                      87321.56
Benefits                           NaN
TotalPay                     183820.98
TotalPayBenefits             183820.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 561, dtype: object)
(562, Id                                          563
EmployeeName                   JOSHUA BAMBERGER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               183754.57
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              183754.57
TotalPayBenefits                      183754.57
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 562, dtype: object)
(563, Id                            564
EmployeeName         MAGALY SAADE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              58392.63
OtherPay                 19409.94
Benefits                      NaN
TotalPay                183737.25
TotalPayBenefits        183737.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 563, dtype: object)
(564, Id                            565
EmployeeName        ELISA RAMIREZ
JobTitle            NURSE MANAGER
BasePay                 170596.03
OvertimePay                   0.0
OtherPay                 13060.81
Benefits                      NaN
TotalPay                183656.84
TotalPayBenefits        183656.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 564, dtype: object)
(565, Id                                         566
EmployeeName                      BRADEN WOODS
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              183653.74
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             183653.74
TotalPayBenefits                     183653.74
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 565, dtype: object)
(566, Id                            567
EmployeeName            JACK CHOW
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              59761.06
OtherPay                 17944.28
Benefits                      NaN
TotalPay                 183640.0
TotalPayBenefits         183640.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 566, dtype: object)
(567, Id                                         568
EmployeeName                KATE HERRMAN STACY
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              181955.76
OvertimePay                                0.0
OtherPay                               1639.26
Benefits                                   NaN
TotalPay                             183595.02
TotalPayBenefits                     183595.02
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 567, dtype: object)
(568, Id                                          569
EmployeeName                      SUSAN GARRETT
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               159624.81
OvertimePay                                 0.0
OtherPay                               23943.72
Benefits                                    NaN
TotalPay                              183568.53
TotalPayBenefits                      183568.53
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 568, dtype: object)
(569, Id                                 570
EmployeeName            HERBERT CARNEY
JobTitle            POLICE OFFICER III
BasePay                      112401.11
OvertimePay                    11784.8
OtherPay                      59346.05
Benefits                           NaN
TotalPay                     183531.96
TotalPayBenefits             183531.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 569, dtype: object)
(570, Id                                                 571
EmployeeName                               JOHN CREMEN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      147158.86
OvertimePay                                   14702.89
OtherPay                                      21512.66
Benefits                                           NaN
TotalPay                                     183374.41
TotalPayBenefits                             183374.41
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 570, dtype: object)
(571, Id                            572
EmployeeName        JULIO ESCOBAR
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              60014.31
OtherPay                 17384.67
Benefits                      NaN
TotalPay                183333.64
TotalPayBenefits        183333.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 571, dtype: object)
(572, Id                                                 573
EmployeeName                               FRANK KOSTA
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      161964.13
OvertimePay                                    1752.29
OtherPay                                      19613.28
Benefits                                           NaN
TotalPay                                      183329.7
TotalPayBenefits                              183329.7
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 572, dtype: object)
(573, Id                            574
EmployeeName         FE HORTINELA
JobTitle            NURSE MANAGER
BasePay                 171236.01
OvertimePay                   0.0
OtherPay                 11986.52
Benefits                      NaN
TotalPay                183222.53
TotalPayBenefits        183222.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 573, dtype: object)
(574, Id                                575
EmployeeName        CHRISTINE WINKLER
JobTitle                NURSE MANAGER
BasePay                      171236.0
OvertimePay                       0.0
OtherPay                     11986.52
Benefits                          NaN
TotalPay                    183222.52
TotalPayBenefits            183222.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 574, dtype: object)
(575, Id                            576
EmployeeName           DERIO DITO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              59757.11
OtherPay                 17500.02
Benefits                      NaN
TotalPay                183191.77
TotalPayBenefits        183191.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 575, dtype: object)
(576, Id                                               577
EmployeeName                            THOMAS BIBER
JobTitle            AUTOMOTIVE MECHANIC SUPERVISOR I
BasePay                                     98628.22
OvertimePay                                 57199.53
OtherPay                                    27352.98
Benefits                                         NaN
TotalPay                                   183180.73
TotalPayBenefits                           183180.73
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 576, dtype: object)
(577, Id                                 578
EmployeeName            ALEXANDER KWAN
JobTitle            POLICE OFFICER III
BasePay                       111580.9
OvertimePay                   20803.92
OtherPay                      50782.71
Benefits                           NaN
TotalPay                     183167.53
TotalPayBenefits             183167.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 577, dtype: object)
(578, Id                                               579
EmployeeName                           NEIL SWENDSEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     135363.4
OvertimePay                                 24191.75
OtherPay                                    23587.59
Benefits                                         NaN
TotalPay                                   183142.74
TotalPayBenefits                           183142.74
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 578, dtype: object)
(579, Id                              580
EmployeeName        ROBERT MUHAMMAD
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                68980.44
OtherPay                     8182.6
Benefits                        NaN
TotalPay                  183097.72
TotalPayBenefits          183097.72
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 579, dtype: object)
(580, Id                                 581
EmployeeName               DENIS JOYCE
JobTitle            POLICE OFFICER III
BasePay                       94298.49
OvertimePay                    8265.54
OtherPay                      80511.29
Benefits                           NaN
TotalPay                     183075.32
TotalPayBenefits             183075.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 580, dtype: object)
(581, Id                               582
EmployeeName        ELLEN APOLINARIO
JobTitle               NURSE MANAGER
BasePay                    171236.01
OvertimePay                    987.9
OtherPay                    10833.97
Benefits                         NaN
TotalPay                   183057.88
TotalPayBenefits           183057.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 581, dtype: object)
(582, Id                                 583
EmployeeName              JULIET ELLIS
JobTitle            DEPUTY DIRECTOR IV
BasePay                      183038.47
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     183038.47
TotalPayBenefits             183038.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 582, dtype: object)
(583, Id                                               584
EmployeeName                             DARREN CHOY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130504.59
OvertimePay                                  6528.81
OtherPay                                    45997.68
Benefits                                         NaN
TotalPay                                   183031.08
TotalPayBenefits                           183031.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 583, dtype: object)
(584, Id                            585
EmployeeName            BRYAN MAR
JobTitle               PHARMACIST
BasePay                 133399.04
OvertimePay              48221.07
OtherPay                  1353.71
Benefits                      NaN
TotalPay                182973.82
TotalPayBenefits        182973.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 584, dtype: object)
(585, Id                                          586
EmployeeName                        FRANK HSIEH
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            40530.24
OtherPay                               19329.42
Benefits                                    NaN
TotalPay                              182964.69
TotalPayBenefits                      182964.69
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 585, dtype: object)
(586, Id                                        587
EmployeeName                  EDWARD CAMPBELL
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140810.55
OvertimePay                          32383.94
OtherPay                               9759.5
Benefits                                  NaN
TotalPay                            182953.99
TotalPayBenefits                    182953.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 586, dtype: object)
(587, Id                               588
EmployeeName        LENETTE THOMPSON
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                 54835.51
OtherPay                    22144.85
Benefits                         NaN
TotalPay                   182915.04
TotalPayBenefits           182915.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 587, dtype: object)
(588, Id                            589
EmployeeName         ROWENA PATEL
JobTitle            NURSE MANAGER
BasePay                  156312.0
OvertimePay                   0.0
OtherPay                 26573.04
Benefits                      NaN
TotalPay                182885.04
TotalPayBenefits        182885.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 588, dtype: object)
(589, Id                                               590
EmployeeName                         HERALIO SERRANO
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    178162.65
OvertimePay                                      0.0
OtherPay                                     4719.02
Benefits                                         NaN
TotalPay                                   182881.67
TotalPayBenefits                           182881.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 589, dtype: object)
(590, Id                                               591
EmployeeName                          BRIAN PHILPOTT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                  2713.71
OtherPay                                    49655.73
Benefits                                         NaN
TotalPay                                   182851.01
TotalPayBenefits                           182851.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 590, dtype: object)
(591, Id                                        592
EmployeeName                           VAN LY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153221.52
OvertimePay                               0.0
OtherPay                             29538.27
Benefits                                  NaN
TotalPay                            182759.79
TotalPayBenefits                    182759.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 591, dtype: object)
(592, Id                                                 593
EmployeeName                          RICHARD VAN KOLL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.95
OvertimePay                                   39050.79
OtherPay                                       13229.0
Benefits                                           NaN
TotalPay                                     182737.74
TotalPayBenefits                             182737.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 592, dtype: object)
(593, Id                                     594
EmployeeName                JOHN STANFIELD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122418.29
OvertimePay                       44409.33
OtherPay                          15903.78
Benefits                               NaN
TotalPay                          182731.4
TotalPayBenefits                  182731.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 593, dtype: object)
(594, Id                                                    595
EmployeeName                               MELANY BRANDON
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         168587.21
OvertimePay                                       3880.09
OtherPay                                         10263.81
Benefits                                              NaN
TotalPay                                        182731.11
TotalPayBenefits                                182731.11
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 594, dtype: object)
(595, Id                                                 596
EmployeeName                           EDWARD DELCARLO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.75
OvertimePay                                   32809.88
OtherPay                                        863.57
Benefits                                           NaN
TotalPay                                      182724.2
TotalPayBenefits                              182724.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 595, dtype: object)
(596, Id                                          597
EmployeeName                     ALBERT HOLT JR
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               158885.25
OvertimePay                                 0.0
OtherPay                               23833.16
Benefits                                    NaN
TotalPay                              182718.41
TotalPayBenefits                      182718.41
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 596, dtype: object)
(597, Id                            598
EmployeeName         MIRIAM DAMON
JobTitle            NURSE MANAGER
BasePay                 166062.06
OvertimePay                   0.0
OtherPay                 16606.26
Benefits                      NaN
TotalPay                182668.32
TotalPayBenefits        182668.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 597, dtype: object)
(598, Id                             599
EmployeeName        ANGELA PLATZER
JobTitle             NURSE MANAGER
BasePay                  166062.03
OvertimePay                    0.0
OtherPay                  16606.21
Benefits                       NaN
TotalPay                 182668.24
TotalPayBenefits         182668.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 598, dtype: object)
(599, Id                                          600
EmployeeName                 MATTHEW HUTCHINSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            45235.11
OtherPay                               14260.84
Benefits                                    NaN
TotalPay                              182600.94
TotalPayBenefits                      182600.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 599, dtype: object)
(600, Id                             601
EmployeeName        GENEVIEVE FARR
JobTitle             NURSE MANAGER
BasePay                   156312.0
OvertimePay                    0.0
OtherPay                  26236.37
Benefits                       NaN
TotalPay                 182548.37
TotalPayBenefits         182548.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 600, dtype: object)
(601, Id                                                                602
EmployeeName                                          LOURDES RUSSELL
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     131668.11
OvertimePay                                                     617.7
OtherPay                                                      50205.5
Benefits                                                          NaN
TotalPay                                                    182491.31
TotalPayBenefits                                            182491.31
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 601, dtype: object)
(602, Id                                              603
EmployeeName                        DERRICK JACKSON
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128147.09
OvertimePay                                28395.71
OtherPay                                   25920.06
Benefits                                        NaN
TotalPay                                  182462.86
TotalPayBenefits                          182462.86
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 602, dtype: object)
(603, Id                            604
EmployeeName        DWIGHT NEWTON
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              56641.93
OtherPay                 19884.19
Benefits                      NaN
TotalPay                182460.81
TotalPayBenefits        182460.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 603, dtype: object)
(604, Id                            605
EmployeeName        OLIVA IGNACIO
JobTitle            NURSE MANAGER
BasePay                 171236.02
OvertimePay                   0.0
OtherPay                 11156.69
Benefits                      NaN
TotalPay                182392.71
TotalPayBenefits        182392.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 604, dtype: object)
(605, Id                                                 606
EmployeeName                             JOSEPH ENGLER
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.72
OvertimePay                                   23653.04
OtherPay                                       9644.56
Benefits                                           NaN
TotalPay                                     182348.32
TotalPayBenefits                             182348.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 605, dtype: object)
(606, Id                                          607
EmployeeName           TERESITA PONTEJOS-MURPHY
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               173585.32
OvertimePay                                 0.0
OtherPay                                8678.78
Benefits                                    NaN
TotalPay                               182264.1
TotalPayBenefits                       182264.1
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 606, dtype: object)
(607, Id                            608
EmployeeName          VERNON FRAY
JobTitle              ELECTRICIAN
BasePay                   89394.0
OvertimePay              63115.82
OtherPay                 29719.33
Benefits                      NaN
TotalPay                182229.15
TotalPayBenefits        182229.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 607, dtype: object)
(608, Id                                          609
EmployeeName                        DAVID BROWN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            29706.88
OtherPay                               29399.75
Benefits                                    NaN
TotalPay                              182211.64
TotalPayBenefits                      182211.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 608, dtype: object)
(609, Id                                                 610
EmployeeName                             VINCENT NOLAN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      103491.94
OvertimePay                                   19514.01
OtherPay                                      59192.37
Benefits                                           NaN
TotalPay                                     182198.32
TotalPayBenefits                             182198.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 609, dtype: object)
(610, Id                                        611
EmployeeName                     ABDUL KHADIR
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.87
OvertimePay                          24805.87
OtherPay                             16826.88
Benefits                                  NaN
TotalPay                            182179.62
TotalPayBenefits                    182179.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 610, dtype: object)
(611, Id                                          612
EmployeeName                     ELIZABETH RODY
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               158400.22
OvertimePay                                 0.0
OtherPay                               23759.88
Benefits                                    NaN
TotalPay                               182160.1
TotalPayBenefits                       182160.1
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 611, dtype: object)
(612, Id                                          613
EmployeeName                      RAFAEL IBARRA
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               114085.47
OvertimePay                            25151.72
OtherPay                               42848.45
Benefits                                    NaN
TotalPay                              182085.64
TotalPayBenefits                      182085.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 612, dtype: object)
(613, Id                                 614
EmployeeName           RUBEN CABALLERO
JobTitle            NURSE PRACTITIONER
BasePay                       164424.0
OvertimePay                   17390.97
OtherPay                         250.0
Benefits                           NaN
TotalPay                     182064.97
TotalPayBenefits             182064.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 613, dtype: object)
(614, Id                            615
EmployeeName          TERENCE WOO
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              58550.59
OtherPay                 17566.38
Benefits                      NaN
TotalPay                182051.63
TotalPayBenefits        182051.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 614, dtype: object)
(615, Id                              616
EmployeeName        RAYCARDO AVILES
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                65765.11
OtherPay                   10303.46
Benefits                        NaN
TotalPay                  182003.24
TotalPayBenefits          182003.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 615, dtype: object)
(616, Id                                                 617
EmployeeName                           CHERISH MURDOCK
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      168692.64
OvertimePay                                    2512.53
OtherPay                                      10762.46
Benefits                                           NaN
TotalPay                                     181967.63
TotalPayBenefits                             181967.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 616, dtype: object)
(617, Id                                         618
EmployeeName                    CARYN BORTNICK
JobTitle            ASSISTANT CHIEF ATTORNEY I
BasePay                              181955.77
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             181955.77
TotalPayBenefits                     181955.77
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 617, dtype: object)
(618, Id                                 619
EmployeeName             ROBERT PORTER
JobTitle            POLICE OFFICER III
BasePay                      117283.28
OvertimePay                   19945.35
OtherPay                      44703.15
Benefits                           NaN
TotalPay                     181931.78
TotalPayBenefits             181931.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 618, dtype: object)
(619, Id                                          620
EmployeeName                      HUNG-MING CHU
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               172071.52
OvertimePay                                 0.0
OtherPay                                9853.64
Benefits                                    NaN
TotalPay                              181925.16
TotalPayBenefits                      181925.16
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 619, dtype: object)
(620, Id                                                 621
EmployeeName                               JOHN CAGNEY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.56
OvertimePay                                   25980.73
OtherPay                                       25444.5
Benefits                                           NaN
TotalPay                                     181891.79
TotalPayBenefits                             181891.79
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 620, dtype: object)
(621, Id                                        622
EmployeeName                   THOMAS DOUDIET
JobTitle            ASSISTANT DEPUTY CHIEF II
BasePay                              115294.0
OvertimePay                             77.41
OtherPay                             66489.33
Benefits                                  NaN
TotalPay                            181860.74
TotalPayBenefits                    181860.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 621, dtype: object)
(622, Id                                          623
EmployeeName                       LARS ASPELIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            42591.46
OtherPay                                16113.6
Benefits                                    NaN
TotalPay                              181810.05
TotalPayBenefits                      181810.05
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 622, dtype: object)
(623, Id                                        624
EmployeeName                   RICHARD GERING
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.03
OvertimePay                          33167.28
OtherPay                             21427.23
Benefits                                  NaN
TotalPay                            181797.54
TotalPayBenefits                    181797.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 623, dtype: object)
(624, Id                             625
EmployeeName        ROBERT LA EACE
JobTitle               FIREFIGHTER
BasePay                  105934.69
OvertimePay               60502.84
OtherPay                  15269.84
Benefits                       NaN
TotalPay                 181707.37
TotalPayBenefits         181707.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 624, dtype: object)
(625, Id                            626
EmployeeName           MARY KUCEL
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              58335.31
OtherPay                 17418.94
Benefits                      NaN
TotalPay                 181688.9
TotalPayBenefits         181688.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 625, dtype: object)
(626, Id                              627
EmployeeName        VITANI BENJAMIN
JobTitle                FIREFIGHTER
BasePay                   100497.64
OvertimePay                67067.31
OtherPay                   14098.89
Benefits                        NaN
TotalPay                  181663.84
TotalPayBenefits          181663.84
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 626, dtype: object)
(627, Id                                          628
EmployeeName                        JORGE PLATA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            43094.08
OtherPay                               15445.81
Benefits                                    NaN
TotalPay                              181644.88
TotalPayBenefits                      181644.88
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 627, dtype: object)
(628, Id                            629
EmployeeName          PETER ACTON
JobTitle              MANAGER VII
BasePay                 181641.48
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                181641.48
TotalPayBenefits        181641.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 628, dtype: object)
(629, Id                                                 630
EmployeeName                           WILLIAM GRIFFIN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.44
OvertimePay                                   19290.61
OtherPay                                      13299.52
Benefits                                           NaN
TotalPay                                     181640.57
TotalPayBenefits                             181640.57
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 629, dtype: object)
(630, Id                            631
EmployeeName          RAMON SIMON
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              55635.93
OtherPay                 20034.44
Benefits                      NaN
TotalPay                181605.04
TotalPayBenefits        181605.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 630, dtype: object)
(631, Id                                                 632
EmployeeName                           VINCENT REPETTO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                   24452.64
OtherPay                                       26690.3
Benefits                                           NaN
TotalPay                                      181600.9
TotalPayBenefits                              181600.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 631, dtype: object)
(632, Id                                          633
EmployeeName                    ANESTO ESTRELLA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               135660.87
OvertimePay                            28860.72
OtherPay                                17067.9
Benefits                                    NaN
TotalPay                              181589.49
TotalPayBenefits                      181589.49
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 632, dtype: object)
(633, Id                            634
EmployeeName        DAVID COUNTER
JobTitle              MANAGER VII
BasePay                  181584.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 181584.0
TotalPayBenefits         181584.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 633, dtype: object)
(634, Id                                               635
EmployeeName                              JON KASPER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.92
OvertimePay                                  28547.3
OtherPay                                    22541.64
Benefits                                         NaN
TotalPay                                   181546.86
TotalPayBenefits                           181546.86
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 634, dtype: object)
(635, Id                            636
EmployeeName          JANET BROCK
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              58724.04
OtherPay                 16857.46
Benefits                      NaN
TotalPay                181516.17
TotalPayBenefits        181516.17
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 635, dtype: object)
(636, Id                                   637
EmployeeName        BERNARDITA HERNANDEZ
JobTitle                   NURSE MANAGER
BasePay                         156312.0
OvertimePay                          0.0
OtherPay                        25202.31
Benefits                             NaN
TotalPay                       181514.31
TotalPayBenefits               181514.31
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 636, dtype: object)
(637, Id                                            638
EmployeeName                     JULIANO NOCOS JR
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                 106483.83
OvertimePay                              67332.92
OtherPay                                  7696.28
Benefits                                      NaN
TotalPay                                181513.03
TotalPayBenefits                        181513.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 637, dtype: object)
(638, Id                                 639
EmployeeName              MALCOLM FONG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   20913.39
OtherPay                       48131.3
Benefits                           NaN
TotalPay                     181445.76
TotalPayBenefits             181445.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 638, dtype: object)
(639, Id                                               640
EmployeeName                            PATRICK KWAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.92
OvertimePay                                  46966.4
OtherPay                                     3979.03
Benefits                                         NaN
TotalPay                                   181403.35
TotalPayBenefits                           181403.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 639, dtype: object)
(640, Id                            641
EmployeeName         THOMAS FOGLE
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               57624.7
OtherPay                 17840.89
Benefits                      NaN
TotalPay                181400.23
TotalPayBenefits        181400.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 640, dtype: object)
(641, Id                                                 642
EmployeeName                           ORLANDO ENCINAS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   96103.91
OtherPay                                       7672.12
Benefits                                           NaN
TotalPay                                     181356.43
TotalPayBenefits                             181356.43
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 641, dtype: object)
(642, Id                                 643
EmployeeName          ALEXANDRA MEDINA
JobTitle            POLICE OFFICER III
BasePay                      111581.04
OvertimePay                     2011.7
OtherPay                      67696.25
Benefits                           NaN
TotalPay                     181288.99
TotalPayBenefits             181288.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 642, dtype: object)
(643, Id                                               644
EmployeeName                        MICHAEL KOLTZOFF
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     69076.01
OvertimePay                                 32707.29
OtherPay                                    79426.59
Benefits                                         NaN
TotalPay                                   181209.89
TotalPayBenefits                           181209.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 643, dtype: object)
(644, Id                                                           645
EmployeeName                                          JOHN BAKER
JobTitle            MECHANICAL SHOP AND EQUIPMENT SUPERINTENDENT
BasePay                                                  96616.8
OvertimePay                                             69317.08
OtherPay                                                15221.78
Benefits                                                     NaN
TotalPay                                               181155.66
TotalPayBenefits                                       181155.66
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 644, dtype: object)
(645, Id                                          646
EmployeeName                      KENNETH HUPKE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            41689.64
OtherPay                               16302.93
Benefits                                    NaN
TotalPay                              181097.59
TotalPayBenefits                      181097.59
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 645, dtype: object)
(646, Id                                 647
EmployeeName        CHRISTOPHER PORTER
JobTitle             POLICE OFFICER II
BasePay                       105562.4
OvertimePay                   10535.32
OtherPay                      64971.08
Benefits                           NaN
TotalPay                      181068.8
TotalPayBenefits              181068.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 646, dtype: object)
(647, Id                                 648
EmployeeName                STEWART NG
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    13115.5
OtherPay                      55507.38
Benefits                           NaN
TotalPay                     181044.32
TotalPayBenefits             181044.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 647, dtype: object)
(648, Id                            649
EmployeeName         ROHAN KNIGHT
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              57319.91
OtherPay                 17688.34
Benefits                      NaN
TotalPay                180942.92
TotalPayBenefits        180942.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 648, dtype: object)
(649, Id                                                 650
EmployeeName                              VICTOR TSANG
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.98
OvertimePay                                   17330.37
OtherPay                                      14569.57
Benefits                                           NaN
TotalPay                                     180923.92
TotalPayBenefits                             180923.92
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 649, dtype: object)
(650, Id                               651
EmployeeName        PATRICK GRIMESEY
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 56927.28
OtherPay                    18030.51
Benefits                         NaN
TotalPay                   180892.44
TotalPayBenefits           180892.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 650, dtype: object)
(651, Id                                               652
EmployeeName                            SUSAN PHILIP
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    180857.67
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   180857.67
TotalPayBenefits                           180857.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 651, dtype: object)
(652, Id                                                653
EmployeeName                         ELIZABETH HILTON
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     177258.82
OvertimePay                                       0.0
OtherPay                                      3538.48
Benefits                                          NaN
TotalPay                                     180797.3
TotalPayBenefits                             180797.3
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 652, dtype: object)
(653, Id                                                 654
EmployeeName                                 GIN LOUIE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   96304.47
OtherPay                                        6798.6
Benefits                                           NaN
TotalPay                                     180683.48
TotalPayBenefits                             180683.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 653, dtype: object)
(654, Id                             655
EmployeeName        DONALD PEOPLES
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               60038.14
OtherPay                  14630.07
Benefits                       NaN
TotalPay                 180602.85
TotalPayBenefits         180602.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 654, dtype: object)
(655, Id                                                                656
EmployeeName                                            JOHN DARMANIN
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.05
OvertimePay                                                     369.1
OtherPay                                                     53241.41
Benefits                                                          NaN
TotalPay                                                    180578.56
TotalPayBenefits                                            180578.56
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 655, dtype: object)
(656, Id                            657
EmployeeName          EDGAR LOPEZ
JobTitle              MANAGER VII
BasePay                  180574.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 180574.5
TotalPayBenefits         180574.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 656, dtype: object)
(657, Id                                        658
EmployeeName                       EDWARD MOY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              168561.2
OvertimePay                           1752.29
OtherPay                             10247.21
Benefits                                  NaN
TotalPay                             180560.7
TotalPayBenefits                     180560.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 657, dtype: object)
(658, Id                                               659
EmployeeName                       LAWRENCE MCDEVITT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.19
OvertimePay                                 47588.94
OtherPay                                     2437.42
Benefits                                         NaN
TotalPay                                   180531.55
TotalPayBenefits                           180531.55
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 658, dtype: object)
(659, Id                                                660
EmployeeName                            STEPHEN ROSEN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                      3538.51
Benefits                                          NaN
TotalPay                                     180417.0
TotalPayBenefits                             180417.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 659, dtype: object)
(660, Id                                                661
EmployeeName                           RANDALL MARTIN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                       3538.5
Benefits                                          NaN
TotalPay                                    180416.99
TotalPayBenefits                            180416.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 660, dtype: object)
(661, Id                                                662
EmployeeName                       CHRISTOPHER GAUGER
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                      3538.49
Benefits                                          NaN
TotalPay                                    180416.98
TotalPayBenefits                            180416.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 661, dtype: object)
(662, Id                                                663
EmployeeName                             PATRICIA LEE
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                      3538.44
Benefits                                          NaN
TotalPay                                    180416.93
TotalPayBenefits                            180416.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 662, dtype: object)
(663, Id                                               664
EmployeeName                               HENRY YEE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.93
OvertimePay                                 15625.85
OtherPay                                    34324.97
Benefits                                         NaN
TotalPay                                   180408.75
TotalPayBenefits                           180408.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 663, dtype: object)
(664, Id                                                665
EmployeeName                            HARRY DORFMAN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                      3538.03
Benefits                                          NaN
TotalPay                                    180394.21
TotalPayBenefits                            180394.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 664, dtype: object)
(665, Id                                                666
EmployeeName                            ELAINE WARREN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.19
OvertimePay                                       0.0
OtherPay                                      3538.02
Benefits                                          NaN
TotalPay                                    180394.21
TotalPayBenefits                            180394.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 665, dtype: object)
(666, Id                                                667
EmployeeName                            SEAN CONNOLLY
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                      3537.96
Benefits                                          NaN
TotalPay                                    180394.14
TotalPayBenefits                            180394.14
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 666, dtype: object)
(667, Id                                                668
EmployeeName                              REBECCA LIU
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                      3537.96
Benefits                                          NaN
TotalPay                                    180394.14
TotalPayBenefits                            180394.14
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 667, dtype: object)
(668, Id                                                669
EmployeeName                             DAVID NORMAN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                      3537.96
Benefits                                          NaN
TotalPay                                    180394.14
TotalPayBenefits                            180394.14
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 668, dtype: object)
(669, Id                                                670
EmployeeName                          JOSHUA MILSTEIN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.19
OvertimePay                                       0.0
OtherPay                                      3537.94
Benefits                                          NaN
TotalPay                                    180394.13
TotalPayBenefits                            180394.13
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 669, dtype: object)
(670, Id                                                671
EmployeeName                       ELIZABETH SALVESON
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.23
OvertimePay                                       0.0
OtherPay                                      3537.86
Benefits                                          NaN
TotalPay                                    180394.09
TotalPayBenefits                            180394.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 670, dtype: object)
(671, Id                                                672
EmployeeName                             CHERYL ADAMS
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                      3537.89
Benefits                                          NaN
TotalPay                                    180394.07
TotalPayBenefits                            180394.07
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 671, dtype: object)
(672, Id                                                673
EmployeeName                           LOUISE SIMPSON
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                       3537.8
Benefits                                          NaN
TotalPay                                    180393.98
TotalPayBenefits                            180393.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 672, dtype: object)
(673, Id                                                674
EmployeeName                              BLAKE LOEBS
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.19
OvertimePay                                       0.0
OtherPay                                      3537.75
Benefits                                          NaN
TotalPay                                    180393.94
TotalPayBenefits                            180393.94
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 673, dtype: object)
(674, Id                                                675
EmployeeName                 ELIZABETH AGUILAR-TARCHI
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.17
OvertimePay                                       0.0
OtherPay                                      3537.11
Benefits                                          NaN
TotalPay                                    180393.28
TotalPayBenefits                            180393.28
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 674, dtype: object)
(675, Id                                               676
EmployeeName                               JULIAN NG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.76
OvertimePay                                 43793.11
OtherPay                                      6061.8
Benefits                                         NaN
TotalPay                                   180312.67
TotalPayBenefits                           180312.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 675, dtype: object)
(676, Id                                     677
EmployeeName                      PAUL JUG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       43235.97
OtherPay                          14654.75
Benefits                               NaN
TotalPay                         180295.72
TotalPayBenefits                 180295.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 676, dtype: object)
(677, Id                                     678
EmployeeName               RONALD JOHANSEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       47724.51
OtherPay                          10143.08
Benefits                               NaN
TotalPay                         180272.58
TotalPayBenefits                 180272.58
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 677, dtype: object)
(678, Id                            679
EmployeeName        ROMELIA SCOTT
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              56335.26
OtherPay                 17989.06
Benefits                      NaN
TotalPay                180258.96
TotalPayBenefits        180258.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 678, dtype: object)
(679, Id                            680
EmployeeName        STEVEN MILLER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              62047.83
OtherPay                 12268.78
Benefits                      NaN
TotalPay                180251.27
TotalPayBenefits        180251.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 679, dtype: object)
(680, Id                              681
EmployeeName        GREGORY ZANDERS
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                54846.07
OtherPay                   19427.96
Benefits                        NaN
TotalPay                  180208.69
TotalPayBenefits          180208.69
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 680, dtype: object)
(681, Id                                       682
EmployeeName                     MILTON YUEN
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.07
OvertimePay                          1854.12
OtherPay                            51284.37
Benefits                                 NaN
TotalPay                           180106.56
TotalPayBenefits                   180106.56
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 681, dtype: object)
(682, Id                            683
EmployeeName         AARON FISHER
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              56048.71
OtherPay                 18110.23
Benefits                      NaN
TotalPay                180093.59
TotalPayBenefits        180093.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 682, dtype: object)
(683, Id                              684
EmployeeName        STEPHEN MAGUIRE
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                57157.15
OtherPay                   17000.62
Benefits                        NaN
TotalPay                  180092.42
TotalPayBenefits          180092.42
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 683, dtype: object)
(684, Id                                                 685
EmployeeName                               PEI JIAN LI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   93921.49
OtherPay                                       8514.52
Benefits                                           NaN
TotalPay                                     180016.42
TotalPayBenefits                             180016.42
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 684, dtype: object)
(685, Id                                    686
EmployeeName              BIENVENIDO VEGA
JobTitle            MAINTENANCE MACHINIST
BasePay                          76205.47
OvertimePay                       93952.0
OtherPay                          9839.08
Benefits                              NaN
TotalPay                        179996.55
TotalPayBenefits                179996.55
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 685, dtype: object)
(686, Id                                                               687
EmployeeName                                            AMIT KOTHARI
JobTitle            DEPUTY DIRECTOR I - MUNICIPAL TRANSPORTATION AGE
BasePay                                                    179832.14
OvertimePay                                                      0.0
OtherPay                                                       120.0
Benefits                                                         NaN
TotalPay                                                   179952.14
TotalPayBenefits                                           179952.14
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 686, dtype: object)
(687, Id                            688
EmployeeName         VINCENT WONG
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              54740.48
OtherPay                 19273.96
Benefits                      NaN
TotalPay                179949.07
TotalPayBenefits        179949.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 687, dtype: object)
(688, Id                                                 689
EmployeeName                            MICHAEL NILAND
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.64
OvertimePay                                     947.48
OtherPay                                      48528.07
Benefits                                           NaN
TotalPay                                     179942.19
TotalPayBenefits                             179942.19
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 688, dtype: object)
(689, Id                                          690
EmployeeName                         DAVID PINE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                171265.8
OvertimePay                                 0.0
OtherPay                                8563.34
Benefits                                    NaN
TotalPay                              179829.14
TotalPayBenefits                      179829.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 689, dtype: object)
(690, Id                                 691
EmployeeName                CALVIN LEW
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    11725.3
OtherPay                      55642.28
Benefits                           NaN
TotalPay                     179789.01
TotalPayBenefits             179789.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 690, dtype: object)
(691, Id                                                 692
EmployeeName                              RONALD LEWIN
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       90812.64
OvertimePay                                   13825.49
OtherPay                                      74887.71
Benefits                                           NaN
TotalPay                                     179525.84
TotalPayBenefits                             179525.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 691, dtype: object)
(692, Id                             693
EmployeeName        JESSE BAUTISTA
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               51069.08
OtherPay                  22484.45
Benefits                       NaN
TotalPay                 179488.18
TotalPayBenefits         179488.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 692, dtype: object)
(693, Id                            694
EmployeeName         JAMES HUDSON
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              54207.93
OtherPay                 19340.47
Benefits                      NaN
TotalPay                179483.05
TotalPayBenefits        179483.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 693, dtype: object)
(694, Id                                                 695
EmployeeName                        CHRISTOPHER CRESCI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   92213.11
OtherPay                                       9580.51
Benefits                                           NaN
TotalPay                                     179374.02
TotalPayBenefits                             179374.02
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 694, dtype: object)
(695, Id                                                 696
EmployeeName                           ROBERT ARMANINO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.97
OvertimePay                                   14130.64
OtherPay                                      16194.87
Benefits                                           NaN
TotalPay                                     179349.48
TotalPayBenefits                             179349.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 695, dtype: object)
(696, Id                                 697
EmployeeName            WALTER MIRANDA
JobTitle            POLICE OFFICER III
BasePay                      112421.38
OvertimePay                   14005.29
OtherPay                      52876.17
Benefits                           NaN
TotalPay                     179302.84
TotalPayBenefits             179302.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 696, dtype: object)
(697, Id                                 698
EmployeeName            ROBERT DUDGEON
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.38
OvertimePay                        0.0
OtherPay                        5000.0
Benefits                           NaN
TotalPay                     179229.38
TotalPayBenefits             179229.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 697, dtype: object)
(698, Id                                 699
EmployeeName          AUGUSTINE CHEUNG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                   83345.77
OtherPay                       7432.87
Benefits                           NaN
TotalPay                     179179.34
TotalPayBenefits             179179.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 698, dtype: object)
(699, Id                                               700
EmployeeName                               JOHN SYME
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.93
OvertimePay                                 22935.98
OtherPay                                    25784.81
Benefits                                         NaN
TotalPay                                   179178.72
TotalPayBenefits                           179178.72
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 699, dtype: object)
(700, Id                             701
EmployeeName        CARL DRAKE III
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               54828.91
OtherPay                  18404.63
Benefits                       NaN
TotalPay                 179168.18
TotalPayBenefits         179168.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 700, dtype: object)
(701, Id                                       702
EmployeeName                      HANSON TOM
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.04
OvertimePay                              0.0
OtherPay                             16682.4
Benefits                                 NaN
TotalPay                           179123.44
TotalPayBenefits                   179123.44
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 701, dtype: object)
(702, Id                            703
EmployeeName             SARA COE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              50019.79
OtherPay                 23087.04
Benefits                      NaN
TotalPay                 179041.5
TotalPayBenefits         179041.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 702, dtype: object)
(703, Id                                          704
EmployeeName                   JOSEPH SCHIEBOLD
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            37766.24
OtherPay                               18122.53
Benefits                                    NaN
TotalPay                              178993.79
TotalPayBenefits                      178993.79
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 703, dtype: object)
(704, Id                                705
EmployeeName          MARCELLINA OGBU
JobTitle            DEPUTY DIRECTOR V
BasePay                     174391.95
OvertimePay                       0.0
OtherPay                       4600.0
Benefits                          NaN
TotalPay                    178991.95
TotalPayBenefits            178991.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 704, dtype: object)
(705, Id                             706
EmployeeName        EDWARD BARBERO
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               55079.91
OtherPay                  17883.12
Benefits                       NaN
TotalPay                 178897.67
TotalPayBenefits         178897.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 705, dtype: object)
(706, Id                                          707
EmployeeName                     JONATHAN FUCHS
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                178866.8
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               178866.8
TotalPayBenefits                       178866.8
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 706, dtype: object)
(707, Id                                          708
EmployeeName                       GRANT COLFAX
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                178866.8
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               178866.8
TotalPayBenefits                       178866.8
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 707, dtype: object)
(708, Id                                                 709
EmployeeName                                JOHN FEWER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      135363.35
OvertimePay                                   15105.79
OtherPay                                      28380.79
Benefits                                           NaN
TotalPay                                     178849.93
TotalPayBenefits                             178849.93
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 708, dtype: object)
(709, Id                                          710
EmployeeName                   CHRISTINE EMMONS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            45039.03
OtherPay                               10652.23
Benefits                                    NaN
TotalPay                              178796.27
TotalPayBenefits                      178796.27
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 709, dtype: object)
(710, Id                                     711
EmployeeName             CHRISTOPHER PRATT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       41100.06
OtherPay                           15277.8
Benefits                               NaN
TotalPay                         178782.85
TotalPayBenefits                 178782.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 710, dtype: object)
(711, Id                                        712
EmployeeName                    JAMES KIRCHER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.87
OvertimePay                          15272.37
OtherPay                             22961.04
Benefits                                  NaN
TotalPay                            178780.28
TotalPayBenefits                    178780.28
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 711, dtype: object)
(712, Id                                          713
EmployeeName                          ERICA PAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               161966.01
OvertimePay                                 0.0
OtherPay                                16810.3
Benefits                                    NaN
TotalPay                              178776.31
TotalPayBenefits                      178776.31
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 712, dtype: object)
(713, Id                                          714
EmployeeName                       YEVA JOHNSON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               177810.58
OvertimePay                                 0.0
OtherPay                                  950.0
Benefits                                    NaN
TotalPay                              178760.58
TotalPayBenefits                      178760.58
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 713, dtype: object)
(714, Id                                          715
EmployeeName                      DONALD GOGGIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             38566.1
OtherPay                               17030.62
Benefits                                    NaN
TotalPay                              178701.72
TotalPayBenefits                      178701.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 714, dtype: object)
(715, Id                                          716
EmployeeName                     ANTHONY BENDIK
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            39965.16
OtherPay                               15550.72
Benefits                                    NaN
TotalPay                              178620.87
TotalPayBenefits                      178620.87
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 715, dtype: object)
(716, Id                                          717
EmployeeName                        NORMAN CABA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            39356.21
OtherPay                               16054.24
Benefits                                    NaN
TotalPay                              178515.47
TotalPayBenefits                      178515.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 716, dtype: object)
(717, Id                                                                718
EmployeeName                                          KENNETH COFFLIN
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     138086.86
OvertimePay                                                    2100.0
OtherPay                                                     38237.27
Benefits                                                          NaN
TotalPay                                                    178424.13
TotalPayBenefits                                            178424.13
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 717, dtype: object)
(718, Id                                          719
EmployeeName                  DANIEL WLODARCZYK
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               176138.03
OvertimePay                                 0.0
OtherPay                                 2268.0
Benefits                                    NaN
TotalPay                              178406.03
TotalPayBenefits                      178406.03
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 718, dtype: object)
(719, Id                                 720
EmployeeName             PATRICK TUOHY
JobTitle            SHERIFF'S SERGEANT
BasePay                      104065.55
OvertimePay                   63138.82
OtherPay                      11196.87
Benefits                           NaN
TotalPay                     178401.24
TotalPayBenefits             178401.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 719, dtype: object)
(720, Id                                               721
EmployeeName                           MATTHEW MASON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 27624.39
OtherPay                                    20278.84
Benefits                                         NaN
TotalPay                                   178384.78
TotalPayBenefits                           178384.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 720, dtype: object)
(721, Id                                 722
EmployeeName               JOHN FUNGHI
JobTitle            ASSOCIATE ENGINEER
BasePay                      175286.05
OvertimePay                        0.0
OtherPay                       3035.32
Benefits                           NaN
TotalPay                     178321.37
TotalPayBenefits             178321.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 721, dtype: object)
(722, Id                            723
EmployeeName         CHERYL DAVIS
JobTitle              MANAGER VII
BasePay                 178305.38
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                178305.38
TotalPayBenefits        178305.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 722, dtype: object)
(723, Id                                     724
EmployeeName                LORENZO IBARRA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       39315.26
OtherPay                          16567.53
Benefits                               NaN
TotalPay                         178287.78
TotalPayBenefits                 178287.78
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 723, dtype: object)
(724, Id                                                 725
EmployeeName                                WAYMEN GEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77521.77
OvertimePay                                   93700.89
OtherPay                                       7057.05
Benefits                                           NaN
TotalPay                                     178279.71
TotalPayBenefits                             178279.71
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 724, dtype: object)
(725, Id                                     726
EmployeeName                DANIEL MARTINO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       40274.32
OtherPay                          15568.88
Benefits                               NaN
TotalPay                         178248.19
TotalPayBenefits                 178248.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 725, dtype: object)
(726, Id                             727
EmployeeName        ERICK MARTINEZ
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               55041.99
OtherPay                  17238.05
Benefits                       NaN
TotalPay                  178214.7
TotalPayBenefits          178214.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 726, dtype: object)
(727, Id                             728
EmployeeName        LANNIE ADELMAN
JobTitle             NURSE MANAGER
BasePay                  156312.01
OvertimePay                    0.0
OtherPay                  21883.72
Benefits                       NaN
TotalPay                 178195.73
TotalPayBenefits         178195.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 727, dtype: object)
(728, Id                                 729
EmployeeName           RAYMOND QUESADA
JobTitle            PROJECT MANAGER IV
BasePay                       141655.8
OvertimePay                        0.0
OtherPay                       36486.4
Benefits                           NaN
TotalPay                      178142.2
TotalPayBenefits              178142.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 728, dtype: object)
(729, Id                                 730
EmployeeName               JAMES BUICK
JobTitle            DEPUTY DIRECTOR IV
BasePay                      147424.92
OvertimePay                        0.0
OtherPay                       30668.5
Benefits                           NaN
TotalPay                     178093.42
TotalPayBenefits             178093.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 729, dtype: object)
(730, Id                                          731
EmployeeName                        MAYRA VIVAS
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               173160.17
OvertimePay                                 0.0
OtherPay                                 4927.5
Benefits                                    NaN
TotalPay                              178087.67
TotalPayBenefits                      178087.67
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 730, dtype: object)
(731, Id                                       732
EmployeeName                SHAHNAM FARHANGI
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            173904.42
OvertimePay                              0.0
OtherPay                             4108.91
Benefits                                 NaN
TotalPay                           178013.33
TotalPayBenefits                   178013.33
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 731, dtype: object)
(732, Id                                        733
EmployeeName                   WILLIAM STORTI
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             134605.88
OvertimePay                          20264.64
OtherPay                             23079.29
Benefits                                  NaN
TotalPay                            177949.81
TotalPayBenefits                    177949.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 732, dtype: object)
(733, Id                               734
EmployeeName        JONATHAN OKAMURA
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 54460.76
OtherPay                    17525.24
Benefits                         NaN
TotalPay                   177920.65
TotalPayBenefits           177920.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 733, dtype: object)
(734, Id                                                    735
EmployeeName                             ELISABETH FILISS
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.85
OvertimePay                                      24274.27
OtherPay                                         13087.88
Benefits                                              NaN
TotalPay                                         177909.0
TotalPayBenefits                                 177909.0
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 734, dtype: object)
(735, Id                                                 736
EmployeeName                         GIANRICO PIERUCCI
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.61
OvertimePay                                   27624.48
OtherPay                                      19707.47
Benefits                                           NaN
TotalPay                                     177798.56
TotalPayBenefits                             177798.56
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 735, dtype: object)
(736, Id                                     737
EmployeeName                GREGORY PERATA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           106441.6
OvertimePay                       60627.28
OtherPay                          10618.66
Benefits                               NaN
TotalPay                         177687.54
TotalPayBenefits                 177687.54
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 736, dtype: object)
(737, Id                                 738
EmployeeName           NICHOLAS DONATI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     9286.3
OtherPay                      55950.06
Benefits                           NaN
TotalPay                     177657.81
TotalPayBenefits             177657.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 737, dtype: object)
(738, Id                                          739
EmployeeName                      SEAN MCKINNEY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            38473.45
OtherPay                               16054.21
Benefits                                    NaN
TotalPay                              177632.66
TotalPayBenefits                      177632.66
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 738, dtype: object)
(739, Id                               740
EmployeeName        DOUGLAS CALDERON
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                 58520.96
OtherPay                    13129.28
Benefits                         NaN
TotalPay                   177584.92
TotalPayBenefits           177584.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 739, dtype: object)
(740, Id                               741
EmployeeName        GAVIN MCGOLDRICK
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 55439.25
OtherPay                    16195.41
Benefits                         NaN
TotalPay                   177569.31
TotalPayBenefits           177569.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 740, dtype: object)
(741, Id                                  742
EmployeeName        CHRISTOPHER CANNING
JobTitle             POLICE OFFICER III
BasePay                       111601.41
OvertimePay                    14415.78
OtherPay                       51537.32
Benefits                            NaN
TotalPay                      177554.51
TotalPayBenefits              177554.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 741, dtype: object)
(742, Id                                                743
EmployeeName                         CHARLES SULLIVAN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.19
OvertimePay                                       0.0
OtherPay                                        681.0
Benefits                                          NaN
TotalPay                                    177537.19
TotalPayBenefits                            177537.19
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 742, dtype: object)
(743, Id                            744
EmployeeName             EDDY WOO
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              49733.97
OtherPay                  21851.5
Benefits                      NaN
TotalPay                177520.14
TotalPayBenefits        177520.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 743, dtype: object)
(744, Id                                          745
EmployeeName                    ERNEST CARRILLO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            38334.82
OtherPay                               16053.91
Benefits                                    NaN
TotalPay                              177493.74
TotalPayBenefits                      177493.74
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 744, dtype: object)
(745, Id                                 746
EmployeeName               JAMES OSHEA
JobTitle            POLICE OFFICER III
BasePay                       64386.41
OvertimePay                    16693.7
OtherPay                      96404.64
Benefits                           NaN
TotalPay                     177484.75
TotalPayBenefits             177484.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 745, dtype: object)
(746, Id                                                 747
EmployeeName                               ROBERT DOSS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.51
OvertimePay                                   36222.99
OtherPay                                      10750.22
Benefits                                           NaN
TotalPay                                     177454.72
TotalPayBenefits                             177454.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 746, dtype: object)
(747, Id                                        748
EmployeeName                      BROOK BAKER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127202.99
OvertimePay                          32523.04
OtherPay                              17703.9
Benefits                                  NaN
TotalPay                            177429.93
TotalPayBenefits                    177429.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 747, dtype: object)
(748, Id                              749
EmployeeName        GARRETT EDWARDS
JobTitle             DEPUTY SHERIFF
BasePay                    83511.28
OvertimePay                83945.39
OtherPay                     9962.4
Benefits                        NaN
TotalPay                  177419.07
TotalPayBenefits          177419.07
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 748, dtype: object)
(749, Id                            750
EmployeeName        GEORGE PUTRIS
JobTitle              MANAGER VII
BasePay                 177413.32
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                177413.32
TotalPayBenefits        177413.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 749, dtype: object)
(750, Id                               751
EmployeeName        IRIN FAYE BLANCO
JobTitle               NURSE MANAGER
BasePay                     151554.0
OvertimePay                      0.0
OtherPay                    25764.18
Benefits                         NaN
TotalPay                   177318.18
TotalPayBenefits           177318.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 750, dtype: object)
(751, Id                                  752
EmployeeName             JOEL DELIZONNA
JobTitle            PILOT OF FIRE BOATS
BasePay                       140546.86
OvertimePay                    27612.22
OtherPay                        9109.48
Benefits                            NaN
TotalPay                      177268.56
TotalPayBenefits              177268.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 751, dtype: object)
(752, Id                            753
EmployeeName          ROBERT REED
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              53688.69
OtherPay                 17634.05
Benefits                      NaN
TotalPay                177257.41
TotalPayBenefits        177257.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 752, dtype: object)
(753, Id                             754
EmployeeName        ALFREDO ABARCA
JobTitle             NURSE MANAGER
BasePay                   166062.0
OvertimePay                    0.0
OtherPay                  11177.25
Benefits                       NaN
TotalPay                 177239.25
TotalPayBenefits         177239.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 753, dtype: object)
(754, Id                                                 755
EmployeeName                           MICHAEL FAVETTI
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      153905.73
OvertimePay                                   11747.67
OtherPay                                      11559.96
Benefits                                           NaN
TotalPay                                     177213.36
TotalPayBenefits                             177213.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 754, dtype: object)
(755, Id                            756
EmployeeName        TODD PLUNKETT
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              52578.13
OtherPay                 18694.64
Benefits                      NaN
TotalPay                177207.45
TotalPayBenefits        177207.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 755, dtype: object)
(756, Id                            757
EmployeeName         IRINA TORREY
JobTitle               MANAGER VI
BasePay                 177205.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                177205.08
TotalPayBenefits        177205.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 756, dtype: object)
(757, Id                            758
EmployeeName          WILLIAM LEE
JobTitle               MANAGER VI
BasePay                 177205.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                177205.08
TotalPayBenefits        177205.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 757, dtype: object)
(758, Id                                759
EmployeeName              JOYCE HICKS
JobTitle            DEPARTMENT HEAD I
BasePay                     177205.08
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    177205.08
TotalPayBenefits            177205.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 758, dtype: object)
(759, Id                            760
EmployeeName         SUSAN GIFFIN
JobTitle               MANAGER VI
BasePay                 177205.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                177205.08
TotalPayBenefits        177205.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 759, dtype: object)
(760, Id                            761
EmployeeName         KAREN KUBICK
JobTitle             MANAGER VIII
BasePay                 177200.17
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                177200.17
TotalPayBenefits        177200.17
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 760, dtype: object)
(761, Id                            762
EmployeeName         ANTHONY WEST
JobTitle              FIREFIGHTER
BasePay                 103321.52
OvertimePay              56919.07
OtherPay                 16947.51
Benefits                      NaN
TotalPay                 177188.1
TotalPayBenefits         177188.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 761, dtype: object)
(762, Id                              763
EmployeeName        CECILE SCHWANKE
JobTitle              NURSE MANAGER
BasePay                   161044.01
OvertimePay                     0.0
OtherPay                   16103.56
Benefits                        NaN
TotalPay                  177147.57
TotalPayBenefits          177147.57
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 762, dtype: object)
(763, Id                                 764
EmployeeName        TERRY COTTONREADER
JobTitle              POLICE OFFICER I
BasePay                        91486.8
OvertimePay                   13238.59
OtherPay                      72405.43
Benefits                           NaN
TotalPay                     177130.82
TotalPayBenefits             177130.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 763, dtype: object)
(764, Id                                 765
EmployeeName          ANTHONY LA ROCCA
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   15162.73
OtherPay                      49530.66
Benefits                           NaN
TotalPay                     177114.85
TotalPayBenefits             177114.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 764, dtype: object)
(765, Id                                               766
EmployeeName                           EUGENE YOSHII
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.18
OvertimePay                                 12513.28
OtherPay                                    33951.59
Benefits                                         NaN
TotalPay                                   176970.05
TotalPayBenefits                           176970.05
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 765, dtype: object)
(766, Id                                   767
EmployeeName            RAYMOND MACAULAY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121630.54
OvertimePay                     39140.57
OtherPay                        16169.43
Benefits                             NaN
TotalPay                       176940.54
TotalPayBenefits               176940.54
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 766, dtype: object)
(767, Id                                          768
EmployeeName                          EMILY LEE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               176930.25
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              176930.25
TotalPayBenefits                      176930.25
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 767, dtype: object)
(768, Id                                                 769
EmployeeName                           MICHAEL REDMOND
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.74
OvertimePay                                    9009.22
OtherPay                                      18842.76
Benefits                                           NaN
TotalPay                                     176902.72
TotalPayBenefits                             176902.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 768, dtype: object)
(769, Id                                               770
EmployeeName                           STEPHEN JONAS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130393.9
OvertimePay                                 22429.38
OtherPay                                    24070.82
Benefits                                         NaN
TotalPay                                    176894.1
TotalPayBenefits                            176894.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 769, dtype: object)
(770, Id                                                771
EmployeeName                            ROBERT DUNLAP
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176878.49
TotalPayBenefits                            176878.49
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 770, dtype: object)
(771, Id                                                772
EmployeeName                             MARK IVERSON
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176878.49
TotalPayBenefits                            176878.49
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 771, dtype: object)
(772, Id                                                773
EmployeeName                               KARA CHIEN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176878.49
TotalPayBenefits                            176878.49
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 772, dtype: object)
(773, Id                                                774
EmployeeName                           JAN LECKLIKNER
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176878.49
TotalPayBenefits                            176878.49
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 773, dtype: object)
(774, Id                                                775
EmployeeName                           KWIXUAN MALOOF
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176878.49
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176878.49
TotalPayBenefits                            176878.49
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 774, dtype: object)
(775, Id                                          776
EmployeeName                   MATTHEW SCHWARTZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127203.02
OvertimePay                            26298.18
OtherPay                               23370.63
Benefits                                    NaN
TotalPay                              176871.83
TotalPayBenefits                      176871.83
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 775, dtype: object)
(776, Id                                          777
EmployeeName               ALEXANDER DOUGLAS JR
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            30463.43
OtherPay                               23295.68
Benefits                                    NaN
TotalPay                              176864.14
TotalPayBenefits                      176864.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 776, dtype: object)
(777, Id                                                778
EmployeeName                       VICTORIA BALDOCCHI
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                      176856.3
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     176856.3
TotalPayBenefits                             176856.3
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 777, dtype: object)
(778, Id                                                779
EmployeeName                               DANNY CHOU
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 778, dtype: object)
(779, Id                                                780
EmployeeName                        LAURA VANMUNCHING
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 779, dtype: object)
(780, Id                                                781
EmployeeName                            DYANA LECHUGA
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 780, dtype: object)
(781, Id                                        782
EmployeeName             PAMELA PECORA HANSEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             176856.18
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            176856.18
TotalPayBenefits                    176856.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 781, dtype: object)
(782, Id                                                783
EmployeeName                         MARIANNE BARRETT
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 782, dtype: object)
(783, Id                                        784
EmployeeName                    JAMES ROWLAND
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             176856.18
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            176856.18
TotalPayBenefits                    176856.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 783, dtype: object)
(784, Id                                                785
EmployeeName                                WADE CHOW
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 784, dtype: object)
(785, Id                                                786
EmployeeName                             JEFFREY ROSS
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 785, dtype: object)
(786, Id                                        787
EmployeeName                    GREGORY BARGE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             176856.18
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            176856.18
TotalPayBenefits                    176856.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 786, dtype: object)
(787, Id                                                788
EmployeeName                            JULIUS DEGUIA
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     176856.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    176856.18
TotalPayBenefits                            176856.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 787, dtype: object)
(788, Id                                     789
EmployeeName              CHARLES HARDIMAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       39453.51
OtherPay                          14952.57
Benefits                               NaN
TotalPay                         176811.06
TotalPayBenefits                 176811.06
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 788, dtype: object)
(789, Id                                                 790
EmployeeName                               ROBERT YICK
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.96
OvertimePay                                   25914.78
OtherPay                                       1749.81
Benefits                                           NaN
TotalPay                                     176709.55
TotalPayBenefits                             176709.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 789, dtype: object)
(790, Id                            791
EmployeeName           ARNOLD WOO
JobTitle              FIREFIGHTER
BasePay                 115295.04
OvertimePay              46836.09
OtherPay                 14548.88
Benefits                      NaN
TotalPay                176680.01
TotalPayBenefits        176680.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 790, dtype: object)
(791, Id                             792
EmployeeName        MARIA DE JESUS
JobTitle             NURSE MANAGER
BasePay                   146919.0
OvertimePay                    0.0
OtherPay                  29746.49
Benefits                       NaN
TotalPay                 176665.49
TotalPayBenefits         176665.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 791, dtype: object)
(792, Id                              793
EmployeeName           MANFRED WONG
JobTitle            SENIOR ENGINEER
BasePay                   173074.44
OvertimePay                     0.0
OtherPay                     3572.4
Benefits                        NaN
TotalPay                  176646.84
TotalPayBenefits          176646.84
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 792, dtype: object)
(793, Id                                     794
EmployeeName                    BRUCE FINE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       38629.34
OtherPay                          15551.57
Benefits                               NaN
TotalPay                         176585.91
TotalPayBenefits                 176585.91
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 793, dtype: object)
(794, Id                                     795
EmployeeName                   MEIR GORDON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       38040.92
OtherPay                          15966.83
Benefits                               NaN
TotalPay                         176412.74
TotalPayBenefits                 176412.74
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 794, dtype: object)
(795, Id                                 796
EmployeeName             ALEC CARDENAS
JobTitle            POLICE OFFICER III
BasePay                      116442.95
OvertimePay                   17578.51
OtherPay                      42260.91
Benefits                           NaN
TotalPay                     176282.37
TotalPayBenefits             176282.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 795, dtype: object)
(796, Id                                                 797
EmployeeName                          TROY DANGERFIELD
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.47
OvertimePay                                     9397.8
OtherPay                                      17831.68
Benefits                                           NaN
TotalPay                                     176273.95
TotalPayBenefits                             176273.95
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 796, dtype: object)
(797, Id                                                    798
EmployeeName                            NIELS TANGHERLINI
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         139868.98
OvertimePay                                      14903.33
OtherPay                                          21497.8
Benefits                                              NaN
TotalPay                                        176270.11
TotalPayBenefits                                176270.11
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 797, dtype: object)
(798, Id                                     799
EmployeeName                ANTENOR MOLLOY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       31075.68
OtherPay                          22746.49
Benefits                               NaN
TotalPay                         176227.17
TotalPayBenefits                 176227.17
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 798, dtype: object)
(799, Id                            800
EmployeeName           LINDA SIMS
JobTitle            NURSE MANAGER
BasePay                  157240.2
OvertimePay                   0.0
OtherPay                 18867.55
Benefits                      NaN
TotalPay                176107.75
TotalPayBenefits        176107.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 799, dtype: object)
(800, Id                                  801
EmployeeName             GINA TOMLINSON
JobTitle            DEPUTY DIRECTOR III
BasePay                       176086.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      176086.04
TotalPayBenefits              176086.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 800, dtype: object)
(801, Id                                          802
EmployeeName                       ELAINE GECHT
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               176050.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              176050.04
TotalPayBenefits                      176050.04
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 801, dtype: object)
(802, Id                                 803
EmployeeName               DAVEY LACAP
JobTitle            TRANSIT SUPERVISOR
BasePay                        89416.8
OvertimePay                   76075.17
OtherPay                      10541.82
Benefits                           NaN
TotalPay                     176033.79
TotalPayBenefits             176033.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 802, dtype: object)
(803, Id                                      804
EmployeeName                  TERRENCE YUEN
JobTitle            COURT EXECUTIVE OFFICER
BasePay                           176028.39
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          176028.39
TotalPayBenefits                  176028.39
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 803, dtype: object)
(804, Id                                     805
EmployeeName                  MARC PEARSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       36468.91
OtherPay                          17130.63
Benefits                               NaN
TotalPay                         176004.53
TotalPayBenefits                 176004.53
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 804, dtype: object)
(805, Id                               806
EmployeeName        MANUEL ALVARENGA
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 49239.79
OtherPay                    20784.93
Benefits                         NaN
TotalPay                   175959.39
TotalPayBenefits           175959.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 805, dtype: object)
(806, Id                                       807
EmployeeName           MANOUCHEHR BOOZARPOUR
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.05
OvertimePay                              0.0
OtherPay                            13499.05
Benefits                                 NaN
TotalPay                            175940.1
TotalPayBenefits                    175940.1
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 806, dtype: object)
(807, Id                                     808
EmployeeName                  JOHN CHRISTY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       37038.11
OtherPay                          16496.74
Benefits                               NaN
TotalPay                         175939.84
TotalPayBenefits                 175939.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 807, dtype: object)
(808, Id                                                 809
EmployeeName                            HENRY PARRA JR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.83
OvertimePay                                    4397.38
OtherPay                                      22428.34
Benefits                                           NaN
TotalPay                                     175849.55
TotalPayBenefits                             175849.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 808, dtype: object)
(809, Id                                 810
EmployeeName                TWYILA LAY
JobTitle            NURSE PRACTITIONER
BasePay                      157127.95
OvertimePay                    6245.72
OtherPay                      12469.32
Benefits                           NaN
TotalPay                     175842.99
TotalPayBenefits             175842.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 809, dtype: object)
(810, Id                            811
EmployeeName          WILLIAM LAU
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              52505.74
OtherPay                 17312.52
Benefits                      NaN
TotalPay                 175752.9
TotalPayBenefits         175752.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 810, dtype: object)
(811, Id                                          812
EmployeeName                        DUSTIN WINN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            33976.93
OtherPay                               18623.36
Benefits                                    NaN
TotalPay                              175705.29
TotalPayBenefits                      175705.29
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 811, dtype: object)
(812, Id                              813
EmployeeName        FERNANDO JUAREZ
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                52249.52
OtherPay                   17420.76
Benefits                        NaN
TotalPay                  175604.92
TotalPayBenefits          175604.92
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 812, dtype: object)
(813, Id                                                 814
EmployeeName                             CLIFFORD COOK
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   19391.55
OtherPay                                      25686.52
Benefits                                           NaN
TotalPay                                     175559.66
TotalPayBenefits                             175559.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 813, dtype: object)
(814, Id                                                 815
EmployeeName                               JOHN MILLER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.64
OvertimePay                                   23225.25
OtherPay                                       21840.4
Benefits                                           NaN
TotalPay                                     175532.29
TotalPayBenefits                             175532.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 814, dtype: object)
(815, Id                            816
EmployeeName        DIANE BEETHAM
JobTitle            NURSE MANAGER
BasePay                 159418.08
OvertimePay                   0.0
OtherPay                 15941.82
Benefits                      NaN
TotalPay                 175359.9
TotalPayBenefits         175359.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 815, dtype: object)
(816, Id                                          817
EmployeeName                    MICHAEL MCSHANE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               175345.94
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              175345.94
TotalPayBenefits                      175345.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 816, dtype: object)
(817, Id                                                 818
EmployeeName                            RICHARD MARTIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.56
OvertimePay                                   21837.15
OtherPay                                      22994.92
Benefits                                           NaN
TotalPay                                     175298.63
TotalPayBenefits                             175298.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 817, dtype: object)
(818, Id                                                 819
EmployeeName                          MARIO DELGADILLO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.75
OvertimePay                                   11846.01
OtherPay                                      14401.68
Benefits                                           NaN
TotalPay                                     175298.44
TotalPayBenefits                             175298.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 818, dtype: object)
(819, Id                            820
EmployeeName          JOHN THOMAS
JobTitle                 ENGINEER
BasePay                 175285.88
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                175285.88
TotalPayBenefits        175285.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 819, dtype: object)
(820, Id                                 821
EmployeeName               DANIEL WADE
JobTitle            PROJECT MANAGER IV
BasePay                      175285.84
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     175285.84
TotalPayBenefits             175285.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 820, dtype: object)
(821, Id                                 822
EmployeeName               BARBARA MOY
JobTitle            PROJECT MANAGER IV
BasePay                      175285.83
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     175285.83
TotalPayBenefits             175285.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 821, dtype: object)
(822, Id                            823
EmployeeName          HOWARD FUNG
JobTitle                 ENGINEER
BasePay                 175285.82
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                175285.82
TotalPayBenefits        175285.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 822, dtype: object)
(823, Id                                 824
EmployeeName          CHARLES HIGUERAS
JobTitle            PROJECT MANAGER IV
BasePay                      175285.82
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     175285.82
TotalPayBenefits             175285.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 823, dtype: object)
(824, Id                              825
EmployeeName            HUSAM MASRI
JobTitle            SENIOR ENGINEER
BasePay                   175285.81
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  175285.81
TotalPayBenefits          175285.81
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 824, dtype: object)
(825, Id                                 826
EmployeeName           RONALD ALAMEIDA
JobTitle            PROJECT MANAGER IV
BasePay                      175285.81
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     175285.81
TotalPayBenefits             175285.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 825, dtype: object)
(826, Id                              827
EmployeeName           JOHANNA WONG
JobTitle            SENIOR ENGINEER
BasePay                   175285.81
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  175285.81
TotalPayBenefits          175285.81
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 826, dtype: object)
(827, Id                                 828
EmployeeName          THOMAS RODRIGUES
JobTitle            PROJECT MANAGER IV
BasePay                       175285.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      175285.8
TotalPayBenefits              175285.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 827, dtype: object)
(828, Id                                 829
EmployeeName        CHRISTOPHER NELSON
JobTitle               SENIOR ENGINEER
BasePay                       175285.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      175285.8
TotalPayBenefits              175285.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 828, dtype: object)
(829, Id                            830
EmployeeName          GERALD HESS
JobTitle              FIREFIGHTER
BasePay                  67709.64
OvertimePay              21917.99
OtherPay                 85545.32
Benefits                      NaN
TotalPay                175172.95
TotalPayBenefits        175172.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 829, dtype: object)
(830, Id                               831
EmployeeName        ALICE MOUGHAMIAN
JobTitle               NURSE MANAGER
BasePay                     140748.0
OvertimePay                      0.0
OtherPay                    34397.78
Benefits                         NaN
TotalPay                   175145.78
TotalPayBenefits           175145.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 830, dtype: object)
(831, Id                            832
EmployeeName         GERALD GAUER
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              51432.24
OtherPay                 17764.92
Benefits                      NaN
TotalPay                175131.81
TotalPayBenefits        175131.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 831, dtype: object)
(832, Id                            833
EmployeeName         DAVID MORRIS
JobTitle              FIREFIGHTER
BasePay                 110638.64
OvertimePay              47372.92
OtherPay                 17031.96
Benefits                      NaN
TotalPay                175043.52
TotalPayBenefits        175043.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 832, dtype: object)
(833, Id                                                 834
EmployeeName                            TIMOTHY BROPHY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.58
OvertimePay                                   16042.98
OtherPay                                      28518.49
Benefits                                           NaN
TotalPay                                     175043.05
TotalPayBenefits                             175043.05
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 833, dtype: object)
(834, Id                                          835
EmployeeName              FIROOZEH PARSA NEZHAD
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               174993.97
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              174993.97
TotalPayBenefits                      174993.97
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 834, dtype: object)
(835, Id                                  836
EmployeeName             JEFFREY AMDAHL
JobTitle            PILOT OF FIRE BOATS
BasePay                       140546.87
OvertimePay                    25277.42
OtherPay                        9109.48
Benefits                            NaN
TotalPay                      174933.77
TotalPayBenefits              174933.77
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 835, dtype: object)
(836, Id                                 837
EmployeeName                SIMON WONG
JobTitle            TRANSIT SUPERVISOR
BasePay                       88429.53
OvertimePay                   81671.14
OtherPay                        4813.0
Benefits                           NaN
TotalPay                     174913.67
TotalPayBenefits             174913.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 836, dtype: object)
(837, Id                                       838
EmployeeName                    NABIL TARAZI
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            174862.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           174862.52
TotalPayBenefits                   174862.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 837, dtype: object)
(838, Id                                       839
EmployeeName                 FARIBA MAHMOUDI
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            174862.48
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           174862.48
TotalPayBenefits                   174862.48
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 838, dtype: object)
(839, Id                                          840
EmployeeName             MONICA BANCHERO-HASSON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               174377.75
OvertimePay                                 0.0
OtherPay                                  450.0
Benefits                                    NaN
TotalPay                              174827.75
TotalPayBenefits                      174827.75
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 839, dtype: object)
(840, Id                                        841
EmployeeName                  FRANCO CALZOLAI
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140010.95
OvertimePay                          25514.06
OtherPay                               9247.6
Benefits                                  NaN
TotalPay                            174772.61
TotalPayBenefits                    174772.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 840, dtype: object)
(841, Id                                                 842
EmployeeName                             KURT BRUNEMAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      146514.88
OvertimePay                                    8310.25
OtherPay                                      19890.14
Benefits                                           NaN
TotalPay                                     174715.27
TotalPayBenefits                             174715.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 841, dtype: object)
(842, Id                               843
EmployeeName           ROMEO ARRIAZA
JobTitle            TRAIN CONTROLLER
BasePay                    104298.68
OvertimePay                 61148.44
OtherPay                     9245.66
Benefits                         NaN
TotalPay                   174692.78
TotalPayBenefits           174692.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 842, dtype: object)
(843, Id                                               844
EmployeeName                            JAMES AHERNE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                  37331.4
OtherPay                                     6880.43
Benefits                                         NaN
TotalPay                                   174669.77
TotalPayBenefits                           174669.77
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 843, dtype: object)
(844, Id                               845
EmployeeName        DAVID MONTEVERDI
JobTitle                 FIREFIGHTER
BasePay                    110638.66
OvertimePay                 42866.54
OtherPay                    21139.67
Benefits                         NaN
TotalPay                   174644.87
TotalPayBenefits           174644.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 844, dtype: object)
(845, Id                                               846
EmployeeName                             LISA FRAZER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.59
OvertimePay                                  4353.57
OtherPay                                    39809.66
Benefits                                         NaN
TotalPay                                   174644.82
TotalPayBenefits                           174644.82
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 845, dtype: object)
(846, Id                                          847
EmployeeName                    STEVEN THOMPSON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               174641.62
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              174641.62
TotalPayBenefits                      174641.62
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 846, dtype: object)
(847, Id                                                    848
EmployeeName                                  SANDRA TONG
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.88
OvertimePay                                      20407.79
OtherPay                                         13637.71
Benefits                                              NaN
TotalPay                                        174592.38
TotalPayBenefits                                174592.38
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 847, dtype: object)
(848, Id                                                 849
EmployeeName                             HEINZ HOFMANN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      150897.77
OvertimePay                                    15176.1
OtherPay                                       8517.25
Benefits                                           NaN
TotalPay                                     174591.12
TotalPayBenefits                             174591.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 848, dtype: object)
(849, Id                                                 850
EmployeeName                         DAVID MARTINOVICH
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130466.5
OvertimePay                                    23147.3
OtherPay                                      20954.36
Benefits                                           NaN
TotalPay                                     174568.16
TotalPayBenefits                             174568.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 849, dtype: object)
(850, Id                                851
EmployeeName        CLAUDIA VALENTINO
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  51240.46
OtherPay                     17385.45
Benefits                          NaN
TotalPay                    174560.55
TotalPayBenefits            174560.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 850, dtype: object)
(851, Id                                 852
EmployeeName                MASA RAMBO
JobTitle            NURSE PRACTITIONER
BasePay                       169520.0
OvertimePay                        0.0
OtherPay                        4987.2
Benefits                           NaN
TotalPay                      174507.2
TotalPayBenefits              174507.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 851, dtype: object)
(852, Id                                     853
EmployeeName                    JAMES LOWE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          118075.54
OvertimePay                       41650.07
OtherPay                          14749.96
Benefits                               NaN
TotalPay                         174475.57
TotalPayBenefits                 174475.57
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 852, dtype: object)
(853, Id                                 854
EmployeeName               DENNIS KERN
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174379.35
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174379.35
TotalPayBenefits             174379.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 853, dtype: object)
(854, Id                                                 855
EmployeeName                            PAMELA HOFSASS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130466.6
OvertimePay                                    22127.1
OtherPay                                      21782.73
Benefits                                           NaN
TotalPay                                     174376.43
TotalPayBenefits                             174376.43
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 854, dtype: object)
(855, Id                               856
EmployeeName        JOSEPH GOLDENSON
JobTitle                MANAGER VIII
BasePay                    174365.49
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   174365.49
TotalPayBenefits           174365.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 855, dtype: object)
(856, Id                                          857
EmployeeName                    DAVID HAYASHIDA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               174354.27
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              174354.27
TotalPayBenefits                      174354.27
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 856, dtype: object)
(857, Id                                     858
EmployeeName                    GLENN FREY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       37258.55
OtherPay                          14672.97
Benefits                               NaN
TotalPay                         174336.51
TotalPayBenefits                 174336.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 857, dtype: object)
(858, Id                                          859
EmployeeName                          ERIC LEAL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               140441.85
OvertimePay                            16878.09
OtherPay                               17006.31
Benefits                                    NaN
TotalPay                              174326.25
TotalPayBenefits                      174326.25
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 858, dtype: object)
(859, Id                                                               860
EmployeeName                                          REGINALD MASON
JobTitle            DEPUTY DIRECTOR I - MUNICIPAL TRANSPORTATION AGE
BasePay                                                    174229.39
OvertimePay                                                      0.0
OtherPay                                                         9.0
Benefits                                                         NaN
TotalPay                                                   174238.39
TotalPayBenefits                                           174238.39
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 859, dtype: object)
(860, Id                                 861
EmployeeName           PRISCILLA MORSE
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.59
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174229.59
TotalPayBenefits             174229.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 860, dtype: object)
(861, Id                                 862
EmployeeName            STEVE ARCELONA
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.58
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174229.58
TotalPayBenefits             174229.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 861, dtype: object)
(862, Id                                 863
EmployeeName               PHIL ARNOLD
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.56
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174229.56
TotalPayBenefits             174229.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 862, dtype: object)
(863, Id                                 864
EmployeeName            ROBERT CARLSON
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174229.53
TotalPayBenefits             174229.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 863, dtype: object)
(864, Id                                 865
EmployeeName               WILLIAM LEE
JobTitle            DEPUTY DIRECTOR IV
BasePay                      174229.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     174229.44
TotalPayBenefits             174229.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 864, dtype: object)
(865, Id                                                               866
EmployeeName                                              TRAVIS FOX
JobTitle            DEPUTY DIRECTOR I - MUNICIPAL TRANSPORTATION AGE
BasePay                                                    174229.42
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   174229.42
TotalPayBenefits                                           174229.42
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 865, dtype: object)
(866, Id                             867
EmployeeName        CYNTHIA NICHOL
JobTitle               MANAGER VII
BasePay                  174229.39
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 174229.39
TotalPayBenefits         174229.39
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 866, dtype: object)
(867, Id                                   868
EmployeeName        KATHARINE PETRUCIONE
JobTitle              DEPUTY DIRECTOR IV
BasePay                        174229.39
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       174229.39
TotalPayBenefits               174229.39
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 867, dtype: object)
(868, Id                                  869
EmployeeName                     JAY XU
JobTitle            DEPARTMENT HEAD III
BasePay                       174229.38
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      174229.38
TotalPayBenefits              174229.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 868, dtype: object)
(869, Id                                870
EmployeeName           MICHAEL MARCUM
JobTitle            ASSISTANT SHERIFF
BasePay                     174229.38
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    174229.38
TotalPayBenefits            174229.38
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 869, dtype: object)
(870, Id                                  871
EmployeeName                ANNE HINTON
JobTitle            DEPARTMENT HEAD III
BasePay                       174229.38
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      174229.38
TotalPayBenefits              174229.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 870, dtype: object)
(871, Id                                                               872
EmployeeName                                          MAXWELL BUNUAN
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                 22803.27
OtherPay                                                    46019.13
Benefits                                                         NaN
TotalPay                                                    174226.4
TotalPayBenefits                                            174226.4
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 871, dtype: object)
(872, Id                            873
EmployeeName        MICHAEL RUBIN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               54931.7
OtherPay                 13351.87
Benefits                      NaN
TotalPay                174218.21
TotalPayBenefits        174218.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 872, dtype: object)
(873, Id                                874
EmployeeName            MICHAEL ELLIS
JobTitle            POLICE OFFICER II
BasePay                     109749.06
OvertimePay                  33568.37
OtherPay                     30837.81
Benefits                          NaN
TotalPay                    174155.24
TotalPayBenefits            174155.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 873, dtype: object)
(874, Id                                          875
EmployeeName                    CLAYTON BULLOCK
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                165839.7
OvertimePay                                 0.0
OtherPay                                8292.46
Benefits                                    NaN
TotalPay                              174132.16
TotalPayBenefits                      174132.16
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 874, dtype: object)
(875, Id                            876
EmployeeName         KEITH ONISHI
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              50617.11
OtherPay                 17536.08
Benefits                      NaN
TotalPay                174087.83
TotalPayBenefits        174087.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 875, dtype: object)
(876, Id                                 877
EmployeeName              GLENN ORTEGA
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   12057.76
OtherPay                      49607.84
Benefits                           NaN
TotalPay                     174066.67
TotalPayBenefits             174066.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 876, dtype: object)
(877, Id                                                 878
EmployeeName                           DENISE FLAHERTY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.62
OvertimePay                                   22110.48
OtherPay                                       2894.88
Benefits                                           NaN
TotalPay                                     174028.98
TotalPayBenefits                             174028.98
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 877, dtype: object)
(878, Id                            879
EmployeeName          TODD PRAKIN
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              51443.65
OtherPay                  16643.9
Benefits                      NaN
TotalPay                 174022.2
TotalPayBenefits         174022.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 878, dtype: object)
(879, Id                                        880
EmployeeName                   MICHAEL MULLIN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              127203.0
OvertimePay                          21443.56
OtherPay                              25343.8
Benefits                                  NaN
TotalPay                            173990.36
TotalPayBenefits                    173990.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 879, dtype: object)
(880, Id                            881
EmployeeName        SPENCER NAKAO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              51360.18
OtherPay                 16676.36
Benefits                      NaN
TotalPay                173971.18
TotalPayBenefits        173971.18
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 880, dtype: object)
(881, Id                                 882
EmployeeName              THOMAS SMITH
JobTitle            POLICE OFFICER III
BasePay                      112758.78
OvertimePay                   23552.64
OtherPay                      37643.11
Benefits                           NaN
TotalPay                     173954.53
TotalPayBenefits             173954.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 881, dtype: object)
(882, Id                                          883
EmployeeName                       ANA GONZALEZ
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                164371.8
OvertimePay                                 0.0
OtherPay                                9518.59
Benefits                                    NaN
TotalPay                              173890.39
TotalPayBenefits                      173890.39
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 882, dtype: object)
(883, Id                                                                884
EmployeeName                                              THERESE GEE
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.11
OvertimePay                                                    479.59
OtherPay                                                      46313.1
Benefits                                                          NaN
TotalPay                                                     173760.8
TotalPayBenefits                                             173760.8
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 883, dtype: object)
(884, Id                                          885
EmployeeName                         STEPHEN WU
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               145397.21
OvertimePay                                 0.0
OtherPay                               28360.45
Benefits                                    NaN
TotalPay                              173757.66
TotalPayBenefits                      173757.66
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 884, dtype: object)
(885, Id                                                 886
EmployeeName                                 FRANK LEE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149103.78
OvertimePay                                   19780.25
OtherPay                                       4752.68
Benefits                                           NaN
TotalPay                                     173636.71
TotalPayBenefits                             173636.71
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 885, dtype: object)
(886, Id                                 887
EmployeeName            JOHN GALLAGHER
JobTitle            POLICE OFFICER III
BasePay                        61214.4
OvertimePay                   30476.51
OtherPay                      81907.27
Benefits                           NaN
TotalPay                     173598.18
TotalPayBenefits             173598.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 886, dtype: object)
(887, Id                            888
EmployeeName        GLEN ZORRILLA
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              49896.15
OtherPay                  17748.1
Benefits                      NaN
TotalPay                173578.89
TotalPayBenefits        173578.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 887, dtype: object)
(888, Id                              889
EmployeeName        ELLIZA WILLIAMS
JobTitle                ANESTHETIST
BasePay                   165289.56
OvertimePay                  655.32
OtherPay                    7603.88
Benefits                        NaN
TotalPay                  173548.76
TotalPayBenefits          173548.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 888, dtype: object)
(889, Id                                                890
EmployeeName                            LISA SAPORITO
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     173509.18
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    173509.18
TotalPayBenefits                            173509.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 889, dtype: object)
(890, Id                                                 891
EmployeeName                           WILLIAM CANNING
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.73
OvertimePay                                    9141.05
OtherPay                                      15288.75
Benefits                                           NaN
TotalPay                                     173480.53
TotalPayBenefits                             173480.53
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 890, dtype: object)
(891, Id                                 892
EmployeeName        MICHELE GRINDSTAFF
JobTitle                   FIREFIGHTER
BasePay                      105934.66
OvertimePay                   48482.65
OtherPay                      18997.37
Benefits                           NaN
TotalPay                     173414.68
TotalPayBenefits             173414.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 891, dtype: object)
(892, Id                            893
EmployeeName          ROBERT WONG
JobTitle              FIREFIGHTER
BasePay                 105934.72
OvertimePay              49964.55
OtherPay                 17431.25
Benefits                      NaN
TotalPay                173330.52
TotalPayBenefits        173330.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 892, dtype: object)
(893, Id                                          894
EmployeeName                    DENNIS SULLIVAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               120729.63
OvertimePay                            35170.62
OtherPay                                17429.5
Benefits                                    NaN
TotalPay                              173329.75
TotalPayBenefits                      173329.75
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 893, dtype: object)
(894, Id                                          895
EmployeeName                    PATRICK RABBITT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            30347.94
OtherPay                               19821.23
Benefits                                    NaN
TotalPay                              173274.18
TotalPayBenefits                      173274.18
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 894, dtype: object)
(895, Id                                  896
EmployeeName        MANJIT SINGH AULAKH
JobTitle             TRANSIT SUPERVISOR
BasePay                         88062.0
OvertimePay                    74882.87
OtherPay                       10322.48
Benefits                            NaN
TotalPay                      173267.35
TotalPayBenefits              173267.35
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 895, dtype: object)
(896, Id                                897
EmployeeName         PAUL SCHLOTFELDT
JobTitle            POLICE OFFICER II
BasePay                      63721.66
OvertimePay                  16357.45
OtherPay                     93158.12
Benefits                          NaN
TotalPay                    173237.23
TotalPayBenefits            173237.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 896, dtype: object)
(897, Id                             898
EmployeeName        ANDREW DEGRACA
JobTitle               MANAGER VII
BasePay                  168282.05
OvertimePay                    0.0
OtherPay                   4866.93
Benefits                       NaN
TotalPay                 173148.98
TotalPayBenefits         173148.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 897, dtype: object)
(898, Id                                                 899
EmployeeName                        MICHAEL MC EACHERN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.55
OvertimePay                                    17476.9
OtherPay                                      25182.77
Benefits                                           NaN
TotalPay                                     173141.22
TotalPayBenefits                             173141.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 898, dtype: object)
(899, Id                                                900
EmployeeName                           SHERYL BREGMAN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     171566.28
OvertimePay                                       0.0
OtherPay                                      1526.79
Benefits                                          NaN
TotalPay                                    173093.07
TotalPayBenefits                            173093.07
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 899, dtype: object)
(900, Id                                                                901
EmployeeName                                                 HUE KHUU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107007.01
OvertimePay                                                  64003.88
OtherPay                                                       2082.0
Benefits                                                          NaN
TotalPay                                                    173092.89
TotalPayBenefits                                            173092.89
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 900, dtype: object)
(901, Id                            902
EmployeeName        SCOTT SANDINE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              51718.69
OtherPay                  15380.6
Benefits                      NaN
TotalPay                173033.94
TotalPayBenefits        173033.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 901, dtype: object)
(902, Id                                               903
EmployeeName                                 DIEN HA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115966.61
OvertimePay                                 43502.56
OtherPay                                    13560.15
Benefits                                         NaN
TotalPay                                   173029.32
TotalPayBenefits                           173029.32
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 902, dtype: object)
(903, Id                                               904
EmployeeName                            MARIO MOLINA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                 23173.73
OtherPay                                    19224.47
Benefits                                         NaN
TotalPay                                   172879.74
TotalPayBenefits                           172879.74
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 903, dtype: object)
(904, Id                            905
EmployeeName         LARRY JACOBS
JobTitle              FIREFIGHTER
BasePay                 105738.66
OvertimePay              55334.44
OtherPay                 11806.38
Benefits                      NaN
TotalPay                172879.48
TotalPayBenefits        172879.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 904, dtype: object)
(905, Id                                                906
EmployeeName                           MARSHALL KHINE
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                      172784.7
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     172784.7
TotalPayBenefits                             172784.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 905, dtype: object)
(906, Id                                     907
EmployeeName                  MICHAEL KIRK
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       42184.64
OtherPay                           8186.84
Benefits                               NaN
TotalPay                         172776.48
TotalPayBenefits                 172776.48
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 906, dtype: object)
(907, Id                                          908
EmployeeName                     JOSEPH BARBERO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            30746.39
OtherPay                               18906.51
Benefits                                    NaN
TotalPay                              172757.91
TotalPayBenefits                      172757.91
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 907, dtype: object)
(908, Id                                  909
EmployeeName           MARY FITZPATRICK
JobTitle            DEPUTY DIRECTOR III
BasePay                       172639.93
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      172639.93
TotalPayBenefits              172639.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 908, dtype: object)
(909, Id                            910
EmployeeName         JERRY CHIANG
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              47401.02
OtherPay                 19187.59
Benefits                      NaN
TotalPay                 172523.3
TotalPayBenefits         172523.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 909, dtype: object)
(910, Id                                     911
EmployeeName                JAMES PERRY II
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          136434.88
OvertimePay                       28364.36
OtherPay                           7701.57
Benefits                               NaN
TotalPay                         172500.81
TotalPayBenefits                 172500.81
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 910, dtype: object)
(911, Id                             912
EmployeeName        PATRICK RIVERA
JobTitle               MANAGER VII
BasePay                  172495.27
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 172495.27
TotalPayBenefits         172495.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 911, dtype: object)
(912, Id                                              913
EmployeeName                          SYLVIA HARPER
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                     71230.0
OvertimePay                                     0.0
OtherPay                                  101242.15
Benefits                                        NaN
TotalPay                                  172472.15
TotalPayBenefits                          172472.15
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 912, dtype: object)
(913, Id                                  914
EmployeeName                   JOYCE GO
JobTitle            CLINICAL PHARMACIST
BasePay                       146838.59
OvertimePay                    10679.82
OtherPay                       14919.24
Benefits                            NaN
TotalPay                      172437.65
TotalPayBenefits              172437.65
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 913, dtype: object)
(914, Id                                 915
EmployeeName             VAGN PETERSEN
JobTitle            NURSE PRACTITIONER
BasePay                      153513.84
OvertimePay                    4943.23
OtherPay                      13963.14
Benefits                           NaN
TotalPay                     172420.21
TotalPayBenefits             172420.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 914, dtype: object)
(915, Id                              916
EmployeeName        MICHAEL COLEMAN
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                50587.27
OtherPay                   15830.32
Benefits                        NaN
TotalPay                  172352.25
TotalPayBenefits          172352.25
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 915, dtype: object)
(916, Id                            917
EmployeeName           GORDON HOY
JobTitle             MANAGER VIII
BasePay                 171065.59
OvertimePay                   0.0
OtherPay                  1192.56
Benefits                      NaN
TotalPay                172258.15
TotalPayBenefits        172258.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 916, dtype: object)
(917, Id                                 918
EmployeeName         DAWN KAMALANATHAN
JobTitle            DEPUTY DIRECTOR IV
BasePay                      172211.48
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     172211.48
TotalPayBenefits             172211.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 917, dtype: object)
(918, Id                            919
EmployeeName        DANIEL ROMERO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               50298.7
OtherPay                  15967.4
Benefits                      NaN
TotalPay                172200.74
TotalPayBenefits        172200.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 918, dtype: object)
(919, Id                            920
EmployeeName         MOISA TELLEZ
JobTitle              FIREFIGHTER
BasePay                 105667.63
OvertimePay              50329.96
OtherPay                 16086.38
Benefits                      NaN
TotalPay                172083.97
TotalPayBenefits        172083.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 919, dtype: object)
(920, Id                            921
EmployeeName         JAMES AYACHE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              49541.74
OtherPay                 16600.13
Benefits                      NaN
TotalPay                172076.52
TotalPayBenefits        172076.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 920, dtype: object)
(921, Id                            922
EmployeeName        ERIC MONTALVO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              48003.18
OtherPay                 18128.45
Benefits                      NaN
TotalPay                172066.27
TotalPayBenefits        172066.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 921, dtype: object)
(922, Id                               923
EmployeeName        STANLEY PERRIATT
JobTitle                 FIREFIGHTER
BasePay                    105934.64
OvertimePay                 49910.18
OtherPay                    16188.66
Benefits                         NaN
TotalPay                   172033.48
TotalPayBenefits           172033.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 922, dtype: object)
(923, Id                                 924
EmployeeName                JOHN ARNTZ
JobTitle            DEPARTMENT HEAD II
BasePay                      171991.61
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     171991.61
TotalPayBenefits             171991.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 923, dtype: object)
(924, Id                                               925
EmployeeName                        FREDERICK SCHIFF
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    135387.05
OvertimePay                                 11848.76
OtherPay                                     24750.5
Benefits                                         NaN
TotalPay                                   171986.31
TotalPayBenefits                           171986.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 924, dtype: object)
(925, Id                                          926
EmployeeName                           ANNE TAM
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            36525.73
OtherPay                               12327.61
Benefits                                    NaN
TotalPay                              171958.34
TotalPayBenefits                      171958.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 925, dtype: object)
(926, Id                                        927
EmployeeName                    ETHAN BANFORD
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.87
OvertimePay                           16596.0
OtherPay                             14806.17
Benefits                                  NaN
TotalPay                            171949.04
TotalPayBenefits                    171949.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 926, dtype: object)
(927, Id                                928
EmployeeName        CHRISTIAN COLLIER
JobTitle                  FIREFIGHTER
BasePay                      96430.24
OvertimePay                  58868.78
OtherPay                     16641.03
Benefits                          NaN
TotalPay                    171940.05
TotalPayBenefits            171940.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 927, dtype: object)
(928, Id                            929
EmployeeName         TIMOTHY NEFF
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              48065.09
OtherPay                 17938.15
Benefits                      NaN
TotalPay                171937.91
TotalPayBenefits        171937.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 928, dtype: object)
(929, Id                            930
EmployeeName          JOHN SIKORA
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               48294.4
OtherPay                 17593.45
Benefits                      NaN
TotalPay                171822.49
TotalPayBenefits        171822.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 929, dtype: object)
(930, Id                            931
EmployeeName          ELLEN STEIN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              48507.41
OtherPay                 17350.46
Benefits                      NaN
TotalPay                171792.51
TotalPayBenefits        171792.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 930, dtype: object)
(931, Id                              932
EmployeeName        VICTOR GONZALES
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                49300.33
OtherPay                   16515.72
Benefits                        NaN
TotalPay                   171750.7
TotalPayBenefits           171750.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 931, dtype: object)
(932, Id                             933
EmployeeName        DEAN WHITTAKER
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               48957.12
OtherPay                   16856.1
Benefits                       NaN
TotalPay                 171747.87
TotalPayBenefits         171747.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 932, dtype: object)
(933, Id                                                 934
EmployeeName                            TIMOTHY FALVEY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.41
OvertimePay                                   21856.48
OtherPay                                        819.02
Benefits                                           NaN
TotalPay                                     171719.91
TotalPayBenefits                             171719.91
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 933, dtype: object)
(934, Id                            935
EmployeeName         MICHAEL PATT
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              50581.38
OtherPay                 15196.95
Benefits                      NaN
TotalPay                171713.01
TotalPayBenefits        171713.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 934, dtype: object)
(935, Id                                               936
EmployeeName                        JOHN GLISCHINSKI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                 16818.84
OtherPay                                    24409.25
Benefits                                         NaN
TotalPay                                   171686.03
TotalPayBenefits                           171686.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 935, dtype: object)
(936, Id                                 937
EmployeeName              BOAZ MARILES
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    16649.8
OtherPay                      42571.98
Benefits                           NaN
TotalPay                     171663.58
TotalPayBenefits             171663.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 936, dtype: object)
(937, Id                                 938
EmployeeName                 HENRY YEE
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   19964.24
OtherPay                      39230.58
Benefits                           NaN
TotalPay                     171616.25
TotalPayBenefits             171616.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 937, dtype: object)
(938, Id                                 939
EmployeeName                PREM SINGH
JobTitle            TRANSIT SUPERVISOR
BasePay                        86019.1
OvertimePay                   74599.57
OtherPay                      10950.14
Benefits                           NaN
TotalPay                     171568.81
TotalPayBenefits             171568.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 938, dtype: object)
(939, Id                                        940
EmployeeName                     AMALIA FYLES
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              169572.0
OvertimePay                               0.0
OtherPay                              1994.81
Benefits                                  NaN
TotalPay                            171566.81
TotalPayBenefits                    171566.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 939, dtype: object)
(940, Id                                                941
EmployeeName                             RONALD FLYNN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     171566.28
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    171566.28
TotalPayBenefits                            171566.28
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 940, dtype: object)
(941, Id                            942
EmployeeName        JAMES KIMBALL
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              43670.28
OtherPay                 21936.69
Benefits                      NaN
TotalPay                171541.62
TotalPayBenefits        171541.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 941, dtype: object)
(942, Id                                          943
EmployeeName                 CHRISTOPHER MADSEN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127681.16
OvertimePay                            26427.84
OtherPay                               17387.25
Benefits                                    NaN
TotalPay                              171496.25
TotalPayBenefits                      171496.25
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 942, dtype: object)
(943, Id                                                 944
EmployeeName                            MICHAEL STASKO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.49
OvertimePay                                    8600.22
OtherPay                                      13812.98
Benefits                                           NaN
TotalPay                                     171463.69
TotalPayBenefits                             171463.69
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 943, dtype: object)
(944, Id                             945
EmployeeName        CLINTON BUNKER
JobTitle               ANESTHETIST
BasePay                  163240.28
OvertimePay                1143.54
OtherPay                   7065.24
Benefits                       NaN
TotalPay                 171449.06
TotalPayBenefits         171449.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 944, dtype: object)
(945, Id                                               946
EmployeeName                           KEVIN DEMPSEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  27678.4
OtherPay                                    13272.92
Benefits                                         NaN
TotalPay                                   171409.27
TotalPayBenefits                           171409.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 945, dtype: object)
(946, Id                                947
EmployeeName        LAURIE JURKIEWICZ
JobTitle                NURSE MIDWIFE
BasePay                      99691.31
OvertimePay                       0.0
OtherPay                     71668.16
Benefits                          NaN
TotalPay                    171359.47
TotalPayBenefits            171359.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 946, dtype: object)
(947, Id                            948
EmployeeName         DOROTHY QUAN
JobTitle            NURSE MANAGER
BasePay                  154939.5
OvertimePay                   0.0
OtherPay                 16403.96
Benefits                      NaN
TotalPay                171343.46
TotalPayBenefits        171343.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 947, dtype: object)
(948, Id                                        949
EmployeeName                    SHERYL CALSON
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              169572.0
OvertimePay                               0.0
OtherPay                               1521.4
Benefits                                  NaN
TotalPay                             171093.4
TotalPayBenefits                     171093.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 948, dtype: object)
(949, Id                            950
EmployeeName         MATTHEW ALBA
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              42119.67
OtherPay                 23008.92
Benefits                      NaN
TotalPay                171063.24
TotalPayBenefits        171063.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 949, dtype: object)
(950, Id                                  951
EmployeeName             CATHERINE DODD
JobTitle            DEPARTMENT HEAD III
BasePay                       171060.82
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      171060.82
TotalPayBenefits              171060.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 950, dtype: object)
(951, Id                                  952
EmployeeName        FERDINAND DIMAPASOC
JobTitle             POLICE OFFICER III
BasePay                       112401.08
OvertimePay                    16677.51
OtherPay                       41951.88
Benefits                            NaN
TotalPay                      171030.47
TotalPayBenefits              171030.47
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 951, dtype: object)
(952, Id                                       953
EmployeeName                 BRIAN HENDERSON
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            159498.81
OvertimePay                              0.0
OtherPay                            11488.66
Benefits                                 NaN
TotalPay                           170987.47
TotalPayBenefits                   170987.47
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 952, dtype: object)
(953, Id                            954
EmployeeName           KAEO NACUA
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               47854.4
OtherPay                 17184.35
Benefits                      NaN
TotalPay                 170973.4
TotalPayBenefits         170973.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 953, dtype: object)
(954, Id                                          955
EmployeeName                  JEANINE NICHOLSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               140441.88
OvertimePay                             17148.2
OtherPay                               13337.78
Benefits                                    NaN
TotalPay                              170927.86
TotalPayBenefits                      170927.86
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 954, dtype: object)
(955, Id                             956
EmployeeName        EDWARD LONDONO
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                47863.3
OtherPay                  17111.75
Benefits                       NaN
TotalPay                 170909.72
TotalPayBenefits         170909.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 955, dtype: object)
(956, Id                                                       957
EmployeeName                                     JAMIE YOUNG
JobTitle            ELECTRICAL TRANSIT MECHANIC SUPERVISOR I
BasePay                                            102868.73
OvertimePay                                         63114.86
OtherPay                                             4921.49
Benefits                                                 NaN
TotalPay                                           170905.08
TotalPayBenefits                                   170905.08
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 956, dtype: object)
(957, Id                               958
EmployeeName        ELIZABETH POTTER
JobTitle                   MANAGER V
BasePay                    160812.19
OvertimePay                      0.0
OtherPay                    10088.57
Benefits                         NaN
TotalPay                   170900.76
TotalPayBenefits           170900.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 957, dtype: object)
(958, Id                                 959
EmployeeName               STEVEN SETO
JobTitle            TRANSIT SUPERVISOR
BasePay                       89056.93
OvertimePay                    75883.5
OtherPay                       5954.23
Benefits                           NaN
TotalPay                     170894.66
TotalPayBenefits             170894.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 958, dtype: object)
(959, Id                                               960
EmployeeName                            TRACY MCCRAY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 10477.85
OtherPay                                    29920.14
Benefits                                         NaN
TotalPay                                   170879.54
TotalPayBenefits                           170879.54
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 959, dtype: object)
(960, Id                                                    961
EmployeeName                              JONATHAN FERDON
JobTitle            ATTORNEY FOR THE PUBLIC ADMINISTRATOR
BasePay                                         170844.78
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        170844.78
TotalPayBenefits                                170844.78
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 960, dtype: object)
(961, Id                                     962
EmployeeName                      ART RUIZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       33452.52
OtherPay                          14928.48
Benefits                               NaN
TotalPay                         170785.99
TotalPayBenefits                 170785.99
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 961, dtype: object)
(962, Id                                               963
EmployeeName                        TIMOTHY FLAHERTY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                 15154.59
OtherPay                                    25139.73
Benefits                                         NaN
TotalPay                                   170775.85
TotalPayBenefits                           170775.85
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 962, dtype: object)
(963, Id                                   964
EmployeeName            ALBERT WATERS II
JobTitle            CHIEF DEPUTY SHERIFF
BasePay                         153172.6
OvertimePay                      5483.94
OtherPay                         12092.9
Benefits                             NaN
TotalPay                       170749.44
TotalPayBenefits               170749.44
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 963, dtype: object)
(964, Id                                                 965
EmployeeName                               SEAN OLEARY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      134097.91
OvertimePay                                    26626.3
OtherPay                                       9980.44
Benefits                                           NaN
TotalPay                                     170704.65
TotalPayBenefits                             170704.65
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 964, dtype: object)
(965, Id                                                 966
EmployeeName                    ALFREDO SOLIS-SALCAZAR
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       78067.61
OvertimePay                                   82044.45
OtherPay                                      10541.95
Benefits                                           NaN
TotalPay                                     170654.01
TotalPayBenefits                             170654.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 965, dtype: object)
(966, Id                                 967
EmployeeName            JUDITH SANSONE
JobTitle            NURSING SUPERVISOR
BasePay                      155189.98
OvertimePay                        0.0
OtherPay                      15453.68
Benefits                           NaN
TotalPay                     170643.66
TotalPayBenefits             170643.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 966, dtype: object)
(967, Id                                          968
EmployeeName                       JAMES DRAPER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               128742.45
OvertimePay                            24428.01
OtherPay                               17447.21
Benefits                                    NaN
TotalPay                              170617.67
TotalPayBenefits                      170617.67
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 967, dtype: object)
(968, Id                                       969
EmployeeName                      JOE CHEUNG
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                             170572.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            170572.0
TotalPayBenefits                    170572.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 968, dtype: object)
(969, Id                                       970
EmployeeName                     DONALD CHAN
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.06
OvertimePay                              0.0
OtherPay                             8098.75
Benefits                                 NaN
TotalPay                           170539.81
TotalPayBenefits                   170539.81
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 969, dtype: object)
(970, Id                            971
EmployeeName         GABRIEL SHIN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              47640.85
OtherPay                  16904.8
Benefits                      NaN
TotalPay                170480.33
TotalPayBenefits        170480.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 970, dtype: object)
(971, Id                                       972
EmployeeName               MOJGAN YOUSEFKHAN
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162362.78
OvertimePay                              0.0
OtherPay                             8112.38
Benefits                                 NaN
TotalPay                           170475.16
TotalPayBenefits                   170475.16
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 971, dtype: object)
(972, Id                                          973
EmployeeName                      TERRY SMERDEL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               124863.62
OvertimePay                            31978.14
OtherPay                                13593.7
Benefits                                    NaN
TotalPay                              170435.46
TotalPayBenefits                      170435.46
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 972, dtype: object)
(973, Id                                     974
EmployeeName                  MATTHEW LANE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          116781.05
OvertimePay                       45173.46
OtherPay                           8430.27
Benefits                               NaN
TotalPay                         170384.78
TotalPayBenefits                 170384.78
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 973, dtype: object)
(974, Id                                                 975
EmployeeName                           LARRY CAMILLERI
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        69076.0
OvertimePay                                   21434.52
OtherPay                                      79863.62
Benefits                                           NaN
TotalPay                                     170374.14
TotalPayBenefits                             170374.14
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 974, dtype: object)
(975, Id                                                 976
EmployeeName                             DAVID ELLIOTT
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                    9086.08
OtherPay                                      30801.33
Benefits                                           NaN
TotalPay                                     170345.37
TotalPayBenefits                             170345.37
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 975, dtype: object)
(976, Id                                     977
EmployeeName                DOUGLAS SPIKES
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       32584.75
OtherPay                           15277.8
Benefits                               NaN
TotalPay                         170267.53
TotalPayBenefits                 170267.53
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 976, dtype: object)
(977, Id                                978
EmployeeName          GABRIEL ALCARAZ
JobTitle            POLICE OFFICER II
BasePay                     110118.84
OvertimePay                   32981.9
OtherPay                     27162.71
Benefits                          NaN
TotalPay                    170263.45
TotalPayBenefits            170263.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 977, dtype: object)
(978, Id                                                 979
EmployeeName                          VALERIE MATTHEWS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.58
OvertimePay                                   20619.01
OtherPay                                      19145.69
Benefits                                           NaN
TotalPay                                     170231.28
TotalPayBenefits                             170231.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 978, dtype: object)
(979, Id                               980
EmployeeName        EUGENE CLENDINEN
JobTitle                MANAGER VIII
BasePay                    161479.27
OvertimePay                      0.0
OtherPay                      8750.1
Benefits                         NaN
TotalPay                   170229.37
TotalPayBenefits           170229.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 979, dtype: object)
(980, Id                                 981
EmployeeName             EDWARD BROWNE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    7430.89
OtherPay                      50391.05
Benefits                           NaN
TotalPay                     170223.02
TotalPayBenefits             170223.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 980, dtype: object)
(981, Id                              982
EmployeeName        WILLIAM WYCKOFF
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                 52697.7
OtherPay                   11553.27
Benefits                        NaN
TotalPay                  170185.61
TotalPayBenefits          170185.61
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 981, dtype: object)
(982, Id                                          983
EmployeeName                     CHARLES MC COY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            31227.51
OtherPay                               15842.22
Benefits                                    NaN
TotalPay                              170174.73
TotalPayBenefits                      170174.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 982, dtype: object)
(983, Id                                     984
EmployeeName                MICHAEL HASTEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       32171.52
OtherPay                          15551.55
Benefits                               NaN
TotalPay                         170128.07
TotalPayBenefits                 170128.07
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 983, dtype: object)
(984, Id                                         985
EmployeeName                         PEIYUE HO
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103971.4
OvertimePay                           23945.61
OtherPay                               42208.3
Benefits                                   NaN
TotalPay                             170125.31
TotalPayBenefits                     170125.31
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 984, dtype: object)
(985, Id                                                   986
EmployeeName                               CAROL WOLTHER
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                        109160.81
OvertimePay                                     43092.79
OtherPay                                        17859.01
Benefits                                             NaN
TotalPay                                       170112.61
TotalPayBenefits                               170112.61
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 985, dtype: object)
(986, Id                                        987
EmployeeName                 KENNETH LOMBARDI
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              135103.4
OvertimePay                          23598.47
OtherPay                             11377.28
Benefits                                  NaN
TotalPay                            170079.15
TotalPayBenefits                    170079.15
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 986, dtype: object)
(987, Id                                               988
EmployeeName                             DANIEL COLE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    131715.02
OvertimePay                                  5201.24
OtherPay                                    33112.94
Benefits                                         NaN
TotalPay                                    170029.2
TotalPayBenefits                            170029.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 987, dtype: object)
(988, Id                                   989
EmployeeName        DOUGLAS PRICE-HANSON
JobTitle            PHYSICIAN SPECIALIST
BasePay                        159511.95
OvertimePay                          0.0
OtherPay                        10513.63
Benefits                             NaN
TotalPay                       170025.58
TotalPayBenefits               170025.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 988, dtype: object)
(989, Id                                               990
EmployeeName                             SUSAN OBATA
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    169941.65
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   169941.65
TotalPayBenefits                           169941.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 989, dtype: object)
(990, Id                                    991
EmployeeName             RICHARD THOMPSON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.08
OvertimePay                      64426.82
OtherPay                          9244.04
Benefits                              NaN
TotalPay                        169922.94
TotalPayBenefits                169922.94
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 990, dtype: object)
(991, Id                                                 992
EmployeeName                             LOUIS ESPINDA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.78
OvertimePay                                    6220.38
OtherPay                                       14638.5
Benefits                                           NaN
TotalPay                                     169909.66
TotalPayBenefits                             169909.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 991, dtype: object)
(992, Id                             993
EmployeeName        DAMEN TOLLIVER
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               54436.25
OtherPay                   9533.84
Benefits                       NaN
TotalPay                 169904.73
TotalPayBenefits         169904.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 992, dtype: object)
(993, Id                            994
EmployeeName          GRACE SALUD
JobTitle            NURSE MANAGER
BasePay                  156312.0
OvertimePay                   0.0
OtherPay                 13587.12
Benefits                      NaN
TotalPay                169899.12
TotalPayBenefits        169899.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 993, dtype: object)
(994, Id                              995
EmployeeName        YUSUFU CAUNGULA
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                53551.86
OtherPay                   10357.93
Benefits                        NaN
TotalPay                  169844.46
TotalPayBenefits          169844.46
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 994, dtype: object)
(995, Id                                        996
EmployeeName               ANTIONETTE GRIFFIN
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             169572.08
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            169822.08
TotalPayBenefits                    169822.08
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 995, dtype: object)
(996, Id                                        997
EmployeeName                    KATHERINE MAH
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             169572.06
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            169822.06
TotalPayBenefits                    169822.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 996, dtype: object)
(997, Id                                        998
EmployeeName              CHRISTINE DAVENPORT
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             169572.05
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            169822.05
TotalPayBenefits                    169822.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 997, dtype: object)
(998, Id                                        999
EmployeeName                      ANNE HUGHES
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             169572.01
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            169822.01
TotalPayBenefits                    169822.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 998, dtype: object)
(999, Id                                       1000
EmployeeName                       JOHN FAZIO
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              169572.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                             169822.0
TotalPayBenefits                     169822.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 999, dtype: object)
(1000, Id                                                   1001
EmployeeName                                 ROBERT KUZMA
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.84
OvertimePay                                       8577.69
OtherPay                                         20692.86
Benefits                                              NaN
TotalPay                                        169817.39
TotalPayBenefits                                169817.39
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1000, dtype: object)
(1001, Id                                1002
EmployeeName                DIANE CARR
JobTitle            NURSE PRACTITIONER
BasePay                       169520.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      169770.0
TotalPayBenefits              169770.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1001, dtype: object)
(1002, Id                                1003
EmployeeName              SHOTSY FAUST
JobTitle            NURSE PRACTITIONER
BasePay                       169520.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      169770.0
TotalPayBenefits              169770.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1002, dtype: object)
(1003, Id                                       1004
EmployeeName                     DIANE KNOLES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             167240.64
OvertimePay                               0.0
OtherPay                              2528.53
Benefits                                  NaN
TotalPay                            169769.17
TotalPayBenefits                    169769.17
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1003, dtype: object)
(1004, Id                                               1005
EmployeeName                             ERIC FLEMING
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     169647.29
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    169647.29
TotalPayBenefits                            169647.29
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1004, dtype: object)
(1005, Id                               1006
EmployeeName        CHRISTOPHER DUGAN
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  48209.91
OtherPay                     15364.97
Benefits                          NaN
TotalPay                    169509.52
TotalPayBenefits            169509.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1005, dtype: object)
(1006, Id                                    1007
EmployeeName               LEONARD CAULDER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122283.44
OvertimePay                       31623.64
OtherPay                          15536.35
Benefits                               NaN
TotalPay                         169443.43
TotalPayBenefits                 169443.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1006, dtype: object)
(1007, Id                                              1008
EmployeeName                             JOSEPH PACE
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    168950.01
OvertimePay                                      0.0
OtherPay                                       405.0
Benefits                                         NaN
TotalPay                                   169355.01
TotalPayBenefits                           169355.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1007, dtype: object)
(1008, Id                                1009
EmployeeName               ERIC TAPANG
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   14146.45
OtherPay                      42776.17
Benefits                           NaN
TotalPay                     169323.68
TotalPayBenefits             169323.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1008, dtype: object)
(1009, Id                                 1010
EmployeeName           SHELLEY THOMPSON
JobTitle            PROJECT MANAGER III
BasePay                       169276.41
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      169276.41
TotalPayBenefits              169276.41
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1009, dtype: object)
(1010, Id                                                1011
EmployeeName                              MARK MAHONEY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.67
OvertimePay                                   12792.88
OtherPay                                       7391.87
Benefits                                           NaN
TotalPay                                     169235.42
TotalPayBenefits                             169235.42
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1010, dtype: object)
(1011, Id                                         1012
EmployeeName                       RANDALL HIRO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            26801.45
OtherPay                                19323.1
Benefits                                    NaN
TotalPay                              169229.56
TotalPayBenefits                      169229.56
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1011, dtype: object)
(1012, Id                           1013
EmployeeName        PAUL GALLEGOS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              41715.68
OtherPay                 21571.91
Benefits                      NaN
TotalPay                169222.26
TotalPayBenefits        169222.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1012, dtype: object)
(1013, Id                            1014
EmployeeName        CONRAD BENITEZ
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               46289.28
OtherPay                  16991.36
Benefits                       NaN
TotalPay                 169215.32
TotalPayBenefits         169215.32
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1013, dtype: object)
(1014, Id                                         1015
EmployeeName                      DENIS BOUVIER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               169184.06
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              169184.06
TotalPayBenefits                      169184.06
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1014, dtype: object)
(1015, Id                                              1016
EmployeeName                               BRIEN HOO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.33
OvertimePay                                 24604.97
OtherPay                                     14106.1
Benefits                                         NaN
TotalPay                                    169145.4
TotalPayBenefits                            169145.4
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1015, dtype: object)
(1016, Id                                    1017
EmployeeName                PAUL SHIMAZAKI
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       39177.71
OtherPay                           7497.83
Benefits                               NaN
TotalPay                         169080.53
TotalPayBenefits                 169080.53
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1016, dtype: object)
(1017, Id                                 1018
EmployeeName              JESSICA DODGE
JobTitle            PHYSICIAN ASSISTANT
BasePay                       166457.02
OvertimePay                      665.91
OtherPay                        1941.28
Benefits                            NaN
TotalPay                      169064.21
TotalPayBenefits              169064.21
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1017, dtype: object)
(1018, Id                           1019
EmployeeName        RAUL SANDOVAL
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              48585.74
OtherPay                 14498.74
Benefits                      NaN
TotalPay                169019.13
TotalPayBenefits        169019.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1018, dtype: object)
(1019, Id                                         1020
EmployeeName                     LLOYD GOLDBERG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127203.02
OvertimePay                            18824.24
OtherPay                               22943.38
Benefits                                    NaN
TotalPay                              168970.64
TotalPayBenefits                      168970.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1019, dtype: object)
(1020, Id                                1021
EmployeeName            JOSEPH GARBAYO
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   36539.49
OtherPay                      20015.14
Benefits                           NaN
TotalPay                      168955.7
TotalPayBenefits              168955.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1020, dtype: object)
(1021, Id                                                   1022
EmployeeName                                YOUNG LAOLAGI
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          78332.62
OvertimePay                                      82703.33
OtherPay                                          7876.36
Benefits                                              NaN
TotalPay                                        168912.31
TotalPayBenefits                                168912.31
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1021, dtype: object)
(1022, Id                                         1023
EmployeeName                         EDWARD LEE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               159677.45
OvertimePay                                 0.0
OtherPay                                9234.02
Benefits                                    NaN
TotalPay                              168911.47
TotalPayBenefits                      168911.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1022, dtype: object)
(1023, Id                           1024
EmployeeName        MICHAEL HORTA
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              41268.73
OtherPay                 21684.64
Benefits                      NaN
TotalPay                168888.04
TotalPayBenefits        168888.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1023, dtype: object)
(1024, Id                           1025
EmployeeName         TRACY FRANTZ
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              52742.53
OtherPay                  10156.7
Benefits                      NaN
TotalPay                168833.87
TotalPayBenefits        168833.87
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1024, dtype: object)
(1025, Id                           1026
EmployeeName             FRED HOM
JobTitle                MANAGER V
BasePay                 168611.53
OvertimePay                   0.0
OtherPay                   193.15
Benefits                      NaN
TotalPay                168804.68
TotalPayBenefits        168804.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1025, dtype: object)
(1026, Id                                                1027
EmployeeName                              ROLAND JONES
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.53
OvertimePay                                   82162.63
OtherPay                                       8988.49
Benefits                                           NaN
TotalPay                                     168731.65
TotalPayBenefits                             168731.65
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1026, dtype: object)
(1027, Id                                    1028
EmployeeName             STEPHEN GIACALONE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122594.0
OvertimePay                       29707.65
OtherPay                          16418.75
Benefits                               NaN
TotalPay                          168720.4
TotalPayBenefits                  168720.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1027, dtype: object)
(1028, Id                           1029
EmployeeName        TERENCE WHITE
JobTitle              FIREFIGHTER
BasePay                 123012.99
OvertimePay              30224.22
OtherPay                  15426.7
Benefits                      NaN
TotalPay                168663.91
TotalPayBenefits        168663.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1028, dtype: object)
(1029, Id                           1030
EmployeeName          MARK MACIAS
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              38963.06
OtherPay                 23758.94
Benefits                      NaN
TotalPay                168656.64
TotalPayBenefits        168656.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1029, dtype: object)
(1030, Id                                1031
EmployeeName              STEPHEN KAWA
JobTitle            MAYORAL STAFF XVII
BasePay                       168603.2
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      168603.2
TotalPayBenefits              168603.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1030, dtype: object)
(1031, Id                            1032
EmployeeName        GARY FRANZELLA
JobTitle                MANAGER VI
BasePay                  168593.93
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 168593.93
TotalPayBenefits         168593.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1031, dtype: object)
(1032, Id                                              1033
EmployeeName                              JOHN BURKE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  17991.1
OtherPay                                    20086.57
Benefits                                         NaN
TotalPay                                    168559.2
TotalPayBenefits                            168559.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1032, dtype: object)
(1033, Id                                                1034
EmployeeName                                ERIC QUEMA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.77
OvertimePay                                     5110.5
OtherPay                                       14395.7
Benefits                                           NaN
TotalPay                                     168556.97
TotalPayBenefits                             168556.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1033, dtype: object)
(1034, Id                           1035
EmployeeName        ELYSE DUCKETT
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              45421.11
OtherPay                 17182.02
Benefits                      NaN
TotalPay                168537.79
TotalPayBenefits        168537.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1034, dtype: object)
(1035, Id                                         1036
EmployeeName                      AISHA KRIEGER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            32586.59
OtherPay                                12782.4
Benefits                                    NaN
TotalPay                               168474.0
TotalPayBenefits                       168474.0
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1035, dtype: object)
(1036, Id                                              1037
EmployeeName                           STEPHEN ROCHE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    135363.35
OvertimePay                                 11417.77
OtherPay                                     21652.1
Benefits                                         NaN
TotalPay                                   168433.22
TotalPayBenefits                           168433.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1036, dtype: object)
(1037, Id                                1038
EmployeeName            RICARDO VALDEZ
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    15679.0
OtherPay                      40283.45
Benefits                           NaN
TotalPay                     168383.89
TotalPayBenefits             168383.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1037, dtype: object)
(1038, Id                                                           1039
EmployeeName                                      VIRGINIA HARMON
JobTitle            MANAGER VII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  166852.4
OvertimePay                                                   0.0
OtherPay                                                  1525.43
Benefits                                                      NaN
TotalPay                                                168377.83
TotalPayBenefits                                        168377.83
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 1038, dtype: object)
(1039, Id                                         1040
EmployeeName                    WILMIE HATHAWAY
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               168371.77
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              168371.77
TotalPayBenefits                      168371.77
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1039, dtype: object)
(1040, Id                            1041
EmployeeName        BERNARD LANTIN
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               45804.33
OtherPay                  16625.13
Benefits                       NaN
TotalPay                 168364.11
TotalPayBenefits         168364.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1040, dtype: object)
(1041, Id                               1042
EmployeeName        NICHOLAS BAZARINI
JobTitle                  FIREFIGHTER
BasePay                     105934.68
OvertimePay                  44890.99
OtherPay                     17482.64
Benefits                          NaN
TotalPay                    168308.31
TotalPayBenefits            168308.31
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1041, dtype: object)
(1042, Id                                                1043
EmployeeName                             JOSEPH REILLY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.69
OvertimePay                                     8957.3
OtherPay                                      10305.65
Benefits                                           NaN
TotalPay                                     168307.64
TotalPayBenefits                             168307.64
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1042, dtype: object)
(1043, Id                                  1044
EmployeeName              BARBARA WISMER
JobTitle            PHYSICIAN SPECIALIST
BasePay                         166682.0
OvertimePay                          0.0
OtherPay                          1620.0
Benefits                             NaN
TotalPay                        168302.0
TotalPayBenefits                168302.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1043, dtype: object)
(1044, Id                               1045
EmployeeName        BRIDGET CULLINANE
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                  46656.69
OtherPay                     15662.44
Benefits                          NaN
TotalPay                    168253.78
TotalPayBenefits            168253.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1044, dtype: object)
(1045, Id                                              1046
EmployeeName                             JON MCMAHON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  10504.5
OtherPay                                    27212.34
Benefits                                         NaN
TotalPay                                   168174.79
TotalPayBenefits                           168174.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1045, dtype: object)
(1046, Id                                1047
EmployeeName                  PAUL LAU
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   72516.08
OtherPay                       7589.67
Benefits                           NaN
TotalPay                     168167.75
TotalPayBenefits             168167.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1046, dtype: object)
(1047, Id                                1048
EmployeeName                HOWARD CHU
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   15470.97
OtherPay                      40260.75
Benefits                           NaN
TotalPay                     168153.17
TotalPayBenefits             168153.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1047, dtype: object)
(1048, Id                                                1049
EmployeeName                               DEAN MARCIC
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      129864.73
OvertimePay                                   19294.07
OtherPay                                      18867.59
Benefits                                           NaN
TotalPay                                     168026.39
TotalPayBenefits                             168026.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1048, dtype: object)
(1049, Id                                                1050
EmployeeName                              G OVANESSIAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        79246.4
OvertimePay                                   31723.04
OtherPay                                       57035.8
Benefits                                           NaN
TotalPay                                     168005.24
TotalPayBenefits                             168005.24
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1049, dtype: object)
(1050, Id                                       1051
EmployeeName                     KATHRYN LUHE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164684.55
OvertimePay                               0.0
OtherPay                              3294.55
Benefits                                  NaN
TotalPay                             167979.1
TotalPayBenefits                     167979.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1050, dtype: object)
(1051, Id                                1052
EmployeeName             MICHAEL FEWER
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   10744.55
OtherPay                      44750.36
Benefits                           NaN
TotalPay                     167916.37
TotalPayBenefits             167916.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1051, dtype: object)
(1052, Id                            1053
EmployeeName        RHONDA SIMMONS
JobTitle                MANAGER VI
BasePay                  167900.85
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 167900.85
TotalPayBenefits         167900.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1052, dtype: object)
(1053, Id                                       1054
EmployeeName                    MARIAM MORLEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.61
OvertimePay                               0.0
OtherPay                              3500.44
Benefits                                  NaN
TotalPay                            167853.05
TotalPayBenefits                    167853.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1053, dtype: object)
(1054, Id                                              1055
EmployeeName                       VINCENT CATANZARO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130343.72
OvertimePay                                 10660.88
OtherPay                                    26838.05
Benefits                                         NaN
TotalPay                                   167842.65
TotalPayBenefits                           167842.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1054, dtype: object)
(1055, Id                           1056
EmployeeName         JAMES QUIRKE
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay              51200.21
OtherPay                 10689.93
Benefits                      NaN
TotalPay                167824.85
TotalPayBenefits        167824.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1055, dtype: object)
(1056, Id                                              1057
EmployeeName                            BRIAN DEVLIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  33221.4
OtherPay                                     4070.56
Benefits                                         NaN
TotalPay                                   167749.92
TotalPayBenefits                           167749.92
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1056, dtype: object)
(1057, Id                                       1058
EmployeeName                       KATHY BULL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                              3288.33
Benefits                                  NaN
TotalPay                            167661.71
TotalPayBenefits                    167661.71
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1057, dtype: object)
(1058, Id                                       1059
EmployeeName                     STEVEN GAYLE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                              3288.33
Benefits                                  NaN
TotalPay                            167661.71
TotalPayBenefits                    167661.71
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1058, dtype: object)
(1059, Id                                       1060
EmployeeName                   MELECIO SANTOS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                              3288.33
Benefits                                  NaN
TotalPay                            167661.71
TotalPayBenefits                    167661.71
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1059, dtype: object)
(1060, Id                                       1061
EmployeeName                     NICOLE SOLIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.37
OvertimePay                               0.0
OtherPay                              3288.33
Benefits                                  NaN
TotalPay                             167661.7
TotalPayBenefits                     167661.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1060, dtype: object)
(1061, Id                                       1062
EmployeeName                  KATHERINE ASADA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.32
OvertimePay                               0.0
OtherPay                              3288.33
Benefits                                  NaN
TotalPay                            167661.65
TotalPayBenefits                    167661.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1061, dtype: object)
(1062, Id                           1063
EmployeeName         GEORGE PETTY
JobTitle              FIREFIGHTER
BasePay                 105617.96
OvertimePay               40487.9
OtherPay                 21547.48
Benefits                      NaN
TotalPay                167653.34
TotalPayBenefits        167653.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1062, dtype: object)
(1063, Id                                       1064
EmployeeName                     RAYMOND FONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                              3288.03
Benefits                                  NaN
TotalPay                            167640.66
TotalPayBenefits                    167640.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1063, dtype: object)
(1064, Id                                       1065
EmployeeName                   THOMAS LAKRITZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.61
TotalPayBenefits                    167640.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1064, dtype: object)
(1065, Id                                       1066
EmployeeName                     ANDREW CLARK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.61
TotalPayBenefits                    167640.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1065, dtype: object)
(1066, Id                                       1067
EmployeeName               KRISTINE POPLAWSKI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.61
TotalPayBenefits                    167640.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1066, dtype: object)
(1067, Id                                       1068
EmployeeName                  CHERYL MATTHEWS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                              3287.99
Benefits                                  NaN
TotalPay                            167640.61
TotalPayBenefits                    167640.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1067, dtype: object)
(1068, Id                                       1069
EmployeeName                 PAMELA UNDERWOOD
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.61
TotalPayBenefits                    167640.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1068, dtype: object)
(1069, Id                                       1070
EmployeeName                      DONN FURMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                             167640.6
TotalPayBenefits                     167640.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1069, dtype: object)
(1070, Id                                       1071
EmployeeName                    FRANCIS BRASS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.59
TotalPayBenefits                    167640.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1070, dtype: object)
(1071, Id                                       1072
EmployeeName                    EILEEN MALLEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                              3287.94
Benefits                                  NaN
TotalPay                            167640.59
TotalPayBenefits                    167640.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1071, dtype: object)
(1072, Id                                       1073
EmployeeName                 CHRISTINE SACINO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                              3287.94
Benefits                                  NaN
TotalPay                            167640.59
TotalPayBenefits                    167640.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1072, dtype: object)
(1073, Id                                       1074
EmployeeName                        MELBA YEE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.93
Benefits                                  NaN
TotalPay                            167640.59
TotalPayBenefits                    167640.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1073, dtype: object)
(1074, Id                                       1075
EmployeeName                  TIMOTHY YOSHIDA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                              3287.93
Benefits                                  NaN
TotalPay                            167640.59
TotalPayBenefits                    167640.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1074, dtype: object)
(1075, Id                                       1076
EmployeeName                   DONNA CHIGNELL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.58
TotalPayBenefits                    167640.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1075, dtype: object)
(1076, Id                                       1077
EmployeeName                      THOMAS OWEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.58
TotalPayBenefits                    167640.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1076, dtype: object)
(1077, Id                                       1078
EmployeeName               JOSEPH SANDOVAL JR
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.68
OvertimePay                               0.0
OtherPay                               3287.9
Benefits                                  NaN
TotalPay                            167640.58
TotalPayBenefits                    167640.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1077, dtype: object)
(1078, Id                                       1079
EmployeeName                      KAREN KIRBY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                              3287.93
Benefits                                  NaN
TotalPay                            167640.57
TotalPayBenefits                    167640.57
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1078, dtype: object)
(1079, Id                                       1080
EmployeeName                VIRGINIA ELIZONDO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                              3287.92
Benefits                                  NaN
TotalPay                            167640.56
TotalPayBenefits                    167640.56
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1079, dtype: object)
(1080, Id                                       1081
EmployeeName                  TERENCE HOWZELL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                              3287.93
Benefits                                  NaN
TotalPay                            167640.56
TotalPayBenefits                    167640.56
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1080, dtype: object)
(1081, Id                                       1082
EmployeeName                  WILLIAM SANDERS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164352.6
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.55
TotalPayBenefits                    167640.55
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1081, dtype: object)
(1082, Id                                       1083
EmployeeName                  THOMAS CULLINAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.58
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.53
TotalPayBenefits                    167640.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1082, dtype: object)
(1083, Id                                       1084
EmployeeName                       JOHN RODDY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164352.6
OvertimePay                               0.0
OtherPay                              3287.92
Benefits                                  NaN
TotalPay                            167640.52
TotalPayBenefits                    167640.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1083, dtype: object)
(1084, Id                                       1085
EmployeeName                 JONATHAN ROLNICK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                               3287.9
Benefits                                  NaN
TotalPay                            167640.52
TotalPayBenefits                    167640.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1084, dtype: object)
(1085, Id                                       1086
EmployeeName                     LAURA MEYERS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164352.6
OvertimePay                               0.0
OtherPay                               3287.9
Benefits                                  NaN
TotalPay                             167640.5
TotalPayBenefits                     167640.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1085, dtype: object)
(1086, Id                                       1087
EmployeeName                  DAVID GREENBURG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.59
OvertimePay                               0.0
OtherPay                              3287.91
Benefits                                  NaN
TotalPay                             167640.5
TotalPayBenefits                     167640.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1086, dtype: object)
(1087, Id                                       1088
EmployeeName                    MAXWELL PELTZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.55
OvertimePay                               0.0
OtherPay                              3287.94
Benefits                                  NaN
TotalPay                            167640.49
TotalPayBenefits                    167640.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1087, dtype: object)
(1088, Id                                       1089
EmployeeName                     FRANK AGNOST
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.53
OvertimePay                               0.0
OtherPay                              3287.93
Benefits                                  NaN
TotalPay                            167640.46
TotalPayBenefits                    167640.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1088, dtype: object)
(1089, Id                                       1090
EmployeeName                   RICHARD FORMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.51
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.46
TotalPayBenefits                    167640.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1089, dtype: object)
(1090, Id                                       1091
EmployeeName                    ROBIN REITZES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.54
OvertimePay                               0.0
OtherPay                               3287.9
Benefits                                  NaN
TotalPay                            167640.44
TotalPayBenefits                    167640.44
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1090, dtype: object)
(1091, Id                                       1092
EmployeeName                    JUDITH GARVEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.38
OvertimePay                               0.0
OtherPay                              3287.95
Benefits                                  NaN
TotalPay                            167640.33
TotalPayBenefits                    167640.33
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1091, dtype: object)
(1092, Id                                      1093
EmployeeName                   ALAN JOHANSON
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.01
OvertimePay                              0.0
OtherPay                             5181.01
Benefits                                 NaN
TotalPay                           167622.02
TotalPayBenefits                   167622.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1092, dtype: object)
(1093, Id                            1094
EmployeeName        JEFFREY GODOWN
JobTitle                 MANAGER V
BasePay                  154910.03
OvertimePay                    0.0
OtherPay                  12696.23
Benefits                       NaN
TotalPay                 167606.26
TotalPayBenefits         167606.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1093, dtype: object)
(1094, Id                              1095
EmployeeName        CRISTINE DEBERRY
JobTitle                MANAGER VIII
BasePay                    161364.54
OvertimePay                      0.0
OtherPay                     6207.37
Benefits                         NaN
TotalPay                   167571.91
TotalPayBenefits           167571.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1094, dtype: object)
(1095, Id                                  1096
EmployeeName          CHRISTOPHER NGUYEN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        163550.02
OvertimePay                          0.0
OtherPay                          3996.0
Benefits                             NaN
TotalPay                       167546.02
TotalPayBenefits               167546.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1095, dtype: object)
(1096, Id                           1097
EmployeeName         EDWARD BYRNE
JobTitle               MANAGER VI
BasePay                 167519.48
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                167519.48
TotalPayBenefits        167519.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1096, dtype: object)
(1097, Id                                1098
EmployeeName                   ANA LEE
JobTitle            POLICE OFFICER III
BasePay                      112421.49
OvertimePay                   11304.01
OtherPay                      43763.24
Benefits                           NaN
TotalPay                     167488.74
TotalPayBenefits             167488.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1097, dtype: object)
(1098, Id                                                1099
EmployeeName                                 PING WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   89331.76
OtherPay                                         575.0
Benefits                                           NaN
TotalPay                                     167487.17
TotalPayBenefits                             167487.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1098, dtype: object)
(1099, Id                                                1100
EmployeeName                           KENNETH ESPOSTO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.87
OvertimePay                                   22262.03
OtherPay                                       14752.3
Benefits                                           NaN
TotalPay                                      167472.2
TotalPayBenefits                              167472.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1099, dtype: object)
(1100, Id                                       1101
EmployeeName                     DAVID AMMONS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164165.95
OvertimePay                               0.0
OtherPay                              3287.92
Benefits                                  NaN
TotalPay                            167453.87
TotalPayBenefits                    167453.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1100, dtype: object)
(1101, Id                                               1102
EmployeeName                              DAVID MERIN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                      167446.8
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     167446.8
TotalPayBenefits                             167446.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1101, dtype: object)
(1102, Id                                       1103
EmployeeName                      MARK JACOBS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                              3035.19
Benefits                                  NaN
TotalPay                            167408.57
TotalPayBenefits                    167408.57
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1102, dtype: object)
(1103, Id                                1104
EmployeeName                   JIA LIU
JobTitle            TRANSIT SUPERVISOR
BasePay                       88423.98
OvertimePay                    74164.4
OtherPay                        4808.4
Benefits                           NaN
TotalPay                     167396.78
TotalPayBenefits             167396.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1103, dtype: object)
(1104, Id                                               1105
EmployeeName                       CATHERINE ANDERSON
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     167369.95
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    167369.95
TotalPayBenefits                            167369.95
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1104, dtype: object)
(1105, Id                           1106
EmployeeName        REUBEN HALILI
JobTitle                 ENGINEER
BasePay                 157996.28
OvertimePay                   0.0
OtherPay                  9364.99
Benefits                      NaN
TotalPay                167361.27
TotalPayBenefits        167361.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1105, dtype: object)
(1106, Id                           1107
EmployeeName         WILLIAM WONG
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              44024.16
OtherPay                 17395.13
Benefits                      NaN
TotalPay                167353.96
TotalPayBenefits        167353.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1106, dtype: object)
(1107, Id                           1108
EmployeeName         SAMUEL JONES
JobTitle            NURSE MANAGER
BasePay                  156312.0
OvertimePay                   0.0
OtherPay                 10977.91
Benefits                      NaN
TotalPay                167289.91
TotalPayBenefits        167289.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1107, dtype: object)
(1108, Id                                                1109
EmployeeName                              PHYLLIS FORD
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.77
OvertimePay                                    9211.59
OtherPay                                       8996.66
Benefits                                           NaN
TotalPay                                     167259.02
TotalPayBenefits                             167259.02
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1108, dtype: object)
(1109, Id                             1110
EmployeeName        PATRICIA COGGAN
JobTitle              NURSE MANAGER
BasePay                    156312.0
OvertimePay                     0.0
OtherPay                   10941.84
Benefits                        NaN
TotalPay                  167253.84
TotalPayBenefits          167253.84
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1109, dtype: object)
(1110, Id                              1111
EmployeeName        ANTHONY MARTINEZ
JobTitle                 FIREFIGHTER
BasePay                    110638.66
OvertimePay                 31937.91
OtherPay                    24623.84
Benefits                         NaN
TotalPay                   167200.41
TotalPayBenefits           167200.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1110, dtype: object)
(1111, Id                                               1112
EmployeeName                             SCOTT BRODER
JobTitle            HEATING AND VENTILATING INSPECTOR
BasePay                                     101064.95
OvertimePay                                  63835.87
OtherPay                                       2213.5
Benefits                                          NaN
TotalPay                                    167114.32
TotalPayBenefits                            167114.32
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1111, dtype: object)
(1112, Id                                         1113
EmployeeName                   VICTORIA BEHRMAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               166983.47
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              166983.47
TotalPayBenefits                      166983.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1112, dtype: object)
(1113, Id                           1114
EmployeeName          JAY CLELAND
JobTitle              FIREFIGHTER
BasePay                 110638.67
OvertimePay              31946.87
OtherPay                 24392.23
Benefits                      NaN
TotalPay                166977.77
TotalPayBenefits        166977.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1113, dtype: object)
(1114, Id                                                1115
EmployeeName                          KEVIN MCNAUGHTON
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.79
OvertimePay                                     9218.4
OtherPay                                       8706.01
Benefits                                           NaN
TotalPay                                      166975.2
TotalPayBenefits                              166975.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1114, dtype: object)
(1115, Id                            1116
EmployeeName        DESMOND COTTER
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               47856.52
OtherPay                  13171.99
Benefits                       NaN
TotalPay                 166963.17
TotalPayBenefits         166963.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1115, dtype: object)
(1116, Id                                         1117
EmployeeName                       CHASE WILSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127886.01
OvertimePay                            21172.38
OtherPay                               17900.78
Benefits                                    NaN
TotalPay                              166959.17
TotalPayBenefits                      166959.17
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1116, dtype: object)
(1117, Id                           1118
EmployeeName        MICHAEL JONES
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              43435.49
OtherPay                 17517.81
Benefits                      NaN
TotalPay                166887.96
TotalPayBenefits        166887.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1117, dtype: object)
(1118, Id                           1119
EmployeeName        EVITA MULLINS
JobTitle            NURSE MANAGER
BasePay                 166062.05
OvertimePay                   0.0
OtherPay                    805.0
Benefits                      NaN
TotalPay                166867.05
TotalPayBenefits        166867.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1118, dtype: object)
(1119, Id                           1120
EmployeeName           JANE EVANS
JobTitle            NURSE MANAGER
BasePay                 166858.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                166858.01
TotalPayBenefits        166858.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1119, dtype: object)
(1120, Id                                1121
EmployeeName              PHILIP WELSH
JobTitle            POLICE OFFICER III
BasePay                      112401.04
OvertimePay                   14467.33
OtherPay                      39986.73
Benefits                           NaN
TotalPay                      166855.1
TotalPayBenefits              166855.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1120, dtype: object)
(1121, Id                                         1122
EmployeeName                        CURTIS CHAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                163374.4
OvertimePay                                 0.0
OtherPay                                 3456.0
Benefits                                    NaN
TotalPay                               166830.4
TotalPayBenefits                       166830.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1121, dtype: object)
(1122, Id                                1123
EmployeeName         OSCAR CARCELEN-JR
JobTitle            POLICE OFFICER III
BasePay                      118177.59
OvertimePay                   21963.98
OtherPay                      26687.81
Benefits                           NaN
TotalPay                     166829.38
TotalPayBenefits             166829.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1122, dtype: object)
(1123, Id                                                              1124
EmployeeName                                             ALLEN NANCE
JobTitle            ASST. CHIEF PROBATION OFFICER-JUVENILE PROBATION
BasePay                                                    160928.86
OvertimePay                                                      0.0
OtherPay                                                     5892.29
Benefits                                                         NaN
TotalPay                                                   166821.15
TotalPayBenefits                                           166821.15
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 1123, dtype: object)
(1124, Id                                         1125
EmployeeName                          TYSON YEE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               139621.91
OvertimePay                            16182.77
OtherPay                               11006.86
Benefits                                    NaN
TotalPay                              166811.54
TotalPayBenefits                      166811.54
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1124, dtype: object)
(1125, Id                                1126
EmployeeName              NANCY ORCUTT
JobTitle            NURSE PRACTITIONER
BasePay                      159457.99
OvertimePay                    7043.33
OtherPay                         250.0
Benefits                           NaN
TotalPay                     166751.32
TotalPayBenefits             166751.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1125, dtype: object)
(1126, Id                                  1127
EmployeeName              SABRINA BUTLER
JobTitle            CHIEF DEPUTY SHERIFF
BasePay                         153172.6
OvertimePay                       706.91
OtherPay                        12859.07
Benefits                             NaN
TotalPay                       166738.58
TotalPayBenefits               166738.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1126, dtype: object)
(1127, Id                           1128
EmployeeName             IDY CHAN
JobTitle            NURSE MANAGER
BasePay                 147546.47
OvertimePay                   0.0
OtherPay                 19117.63
Benefits                      NaN
TotalPay                 166664.1
TotalPayBenefits         166664.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1127, dtype: object)
(1128, Id                                         1129
EmployeeName                        DAVID HERSH
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               158709.08
OvertimePay                                 0.0
OtherPay                                 7935.7
Benefits                                    NaN
TotalPay                              166644.78
TotalPayBenefits                      166644.78
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1128, dtype: object)
(1129, Id                                                1130
EmployeeName                               JOHN CLEARY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130589.91
OvertimePay                                   18924.51
OtherPay                                       17105.0
Benefits                                           NaN
TotalPay                                     166619.42
TotalPayBenefits                             166619.42
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1129, dtype: object)
(1130, Id                                    1131
EmployeeName              STEVEN WOMBACHER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       36258.53
OtherPay                           7940.19
Benefits                               NaN
TotalPay                         166603.71
TotalPayBenefits                 166603.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1130, dtype: object)
(1131, Id                                1132
EmployeeName          JAMES CUNNINGHAM
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    9689.99
OtherPay                      44461.33
Benefits                           NaN
TotalPay                     166572.77
TotalPayBenefits             166572.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1131, dtype: object)
(1132, Id                                                1133
EmployeeName                             MICHAEL MORAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.66
OvertimePay                                    9070.09
OtherPay                                       8430.14
Benefits                                           NaN
TotalPay                                     166550.89
TotalPayBenefits                             166550.89
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1132, dtype: object)
(1133, Id                                1134
EmployeeName           CLARA SHAYEVICH
JobTitle            NURSE PRACTITIONER
BasePay                       164424.0
OvertimePay                        0.0
OtherPay                       2106.12
Benefits                           NaN
TotalPay                     166530.12
TotalPayBenefits             166530.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1133, dtype: object)
(1134, Id                                               1135
EmployeeName                             ANA GONZALEZ
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     166498.83
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    166498.83
TotalPayBenefits                            166498.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1134, dtype: object)
(1135, Id                                  1136
EmployeeName                  ELLEN BRIN
JobTitle            CHIEF DEPUTY SHERIFF
BasePay                         153172.6
OvertimePay                      1122.17
OtherPay                        12092.45
Benefits                             NaN
TotalPay                       166387.22
TotalPayBenefits               166387.22
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1135, dtype: object)
(1136, Id                                1137
EmployeeName              EDMUND HUANG
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   10562.83
OtherPay                      43341.47
Benefits                           NaN
TotalPay                     166325.76
TotalPayBenefits             166325.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1136, dtype: object)
(1137, Id                                       1138
EmployeeName                   JAMES OCONNELL
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140441.89
OvertimePay                          17142.37
OtherPay                               8714.1
Benefits                                  NaN
TotalPay                            166298.36
TotalPayBenefits                    166298.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1137, dtype: object)
(1138, Id                                                1139
EmployeeName                           VIVIAN WILLIAMS
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149024.02
OvertimePay                                    9204.61
OtherPay                                       8055.63
Benefits                                           NaN
TotalPay                                     166284.26
TotalPayBenefits                             166284.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1138, dtype: object)
(1139, Id                                         1140
EmployeeName                         ALLEN WONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             19933.0
OtherPay                               23229.83
Benefits                                    NaN
TotalPay                              166267.82
TotalPayBenefits                      166267.82
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1139, dtype: object)
(1140, Id                                1141
EmployeeName               SEAN ROGERS
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    8605.65
OtherPay                      45248.84
Benefits                           NaN
TotalPay                     166255.58
TotalPayBenefits             166255.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1140, dtype: object)
(1141, Id                           1142
EmployeeName          VICTOR WONG
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              42571.24
OtherPay                 17739.45
Benefits                      NaN
TotalPay                166245.34
TotalPayBenefits        166245.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1141, dtype: object)
(1142, Id                                                    1143
EmployeeName                                        RON HO
JobTitle            DIRECTOR, INFORMATION TECHNOLOGY GROUP
BasePay                                          163017.24
OvertimePay                                            0.0
OtherPay                                            3209.0
Benefits                                               NaN
TotalPay                                         166226.24
TotalPayBenefits                                 166226.24
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 1142, dtype: object)
(1143, Id                                1144
EmployeeName          ELIZABETH MURRAY
JobTitle            DEPARTMENT HEAD II
BasePay                      166213.58
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     166213.58
TotalPayBenefits             166213.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1143, dtype: object)
(1144, Id                                1145
EmployeeName            JASON ROBINSON
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   17293.78
OtherPay                      36439.64
Benefits                           NaN
TotalPay                     166154.86
TotalPayBenefits             166154.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1144, dtype: object)
(1145, Id                              1146
EmployeeName        DEBORAH WILLIAMS
JobTitle               NURSE MANAGER
BasePay                    166062.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   166062.05
TotalPayBenefits           166062.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1145, dtype: object)
(1146, Id                                1147
EmployeeName        LAWRENCE HENDERSON
JobTitle            POLICE OFFICER III
BasePay                      117283.24
OvertimePay                   23560.82
OtherPay                      25182.92
Benefits                           NaN
TotalPay                     166026.98
TotalPayBenefits             166026.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1146, dtype: object)
(1147, Id                           1148
EmployeeName         STEPHEN CRUZ
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               49053.4
OtherPay                 11015.72
Benefits                      NaN
TotalPay                166003.78
TotalPayBenefits        166003.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1147, dtype: object)
(1148, Id                                                1149
EmployeeName                            THOMAS NEWLAND
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130434.16
OvertimePay                                   18930.96
OtherPay                                      16582.36
Benefits                                           NaN
TotalPay                                     165947.48
TotalPayBenefits                             165947.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1148, dtype: object)
(1149, Id                               1150
EmployeeName        LAWRENCE STRINGER
JobTitle                  MANAGER VII
BasePay                     165873.28
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    165873.28
TotalPayBenefits            165873.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1149, dtype: object)
(1150, Id                                                               1151
EmployeeName                                            ROBERT ALONZO
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       89815.6
OvertimePay                                                   40871.1
OtherPay                                                     35182.83
Benefits                                                          NaN
TotalPay                                                    165869.53
TotalPayBenefits                                            165869.53
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1150, dtype: object)
(1151, Id                                       1152
EmployeeName                        RUTH BOND
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             165862.79
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            165862.79
TotalPayBenefits                    165862.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1151, dtype: object)
(1152, Id                                           1153
EmployeeName                         STEVEN MEIER
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                 111825.01
OvertimePay                              35791.99
OtherPay                                 18244.37
Benefits                                      NaN
TotalPay                                165861.37
TotalPayBenefits                        165861.37
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 1152, dtype: object)
(1153, Id                                 1154
EmployeeName                JILL BOURNE
JobTitle            DEPUTY DIRECTOR III
BasePay                       160959.56
OvertimePay                         0.0
OtherPay                         4900.0
Benefits                            NaN
TotalPay                      165859.56
TotalPayBenefits              165859.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1153, dtype: object)
(1154, Id                                                1155
EmployeeName                            MICHAEL MORLEY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130456.99
OvertimePay                                   22872.83
OtherPay                                      12510.14
Benefits                                           NaN
TotalPay                                     165839.96
TotalPayBenefits                             165839.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1154, dtype: object)
(1155, Id                                              1156
EmployeeName                         MATTHEW O'LEARY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.46
OvertimePay                                 18776.99
OtherPay                                    16574.22
Benefits                                         NaN
TotalPay                                   165832.67
TotalPayBenefits                           165832.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1155, dtype: object)
(1156, Id                                       1157
EmployeeName                    STEVEN BOKURA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             148260.81
OvertimePay                               0.0
OtherPay                             17553.11
Benefits                                  NaN
TotalPay                            165813.92
TotalPayBenefits                    165813.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1156, dtype: object)
(1157, Id                             1158
EmployeeName        RICHARD STEVENS
JobTitle                FIREFIGHTER
BasePay                   104814.71
OvertimePay                43290.19
OtherPay                   17707.57
Benefits                        NaN
TotalPay                  165812.47
TotalPayBenefits          165812.47
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1157, dtype: object)
(1158, Id                                              1159
EmployeeName                           FRANK HARRELL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129456.71
OvertimePay                                 26862.89
OtherPay                                     9489.62
Benefits                                         NaN
TotalPay                                   165809.22
TotalPayBenefits                           165809.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1158, dtype: object)
(1159, Id                                                      1160
EmployeeName                                    JOHN DONOHOE
JobTitle            COMMUNICATIONS LINE WORKER SUPERVISOR II
BasePay                                             106257.4
OvertimePay                                          38376.8
OtherPay                                            21154.34
Benefits                                                 NaN
TotalPay                                           165788.54
TotalPayBenefits                                   165788.54
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 1159, dtype: object)
(1160, Id                                1161
EmployeeName              STEVEN LANDI
JobTitle            POLICE OFFICER III
BasePay                      117283.24
OvertimePay                   27923.92
OtherPay                       20563.7
Benefits                           NaN
TotalPay                     165770.86
TotalPayBenefits             165770.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1160, dtype: object)
(1161, Id                                1162
EmployeeName                 HOYT WONG
JobTitle            POLICE OFFICER III
BasePay                      116975.68
OvertimePay                   18646.53
OtherPay                      30146.84
Benefits                           NaN
TotalPay                     165769.05
TotalPayBenefits             165769.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1161, dtype: object)
(1162, Id                                    1163
EmployeeName                SCOTT EBERHART
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122420.0
OvertimePay                       25246.78
OtherPay                          18090.73
Benefits                               NaN
TotalPay                         165757.51
TotalPayBenefits                 165757.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1162, dtype: object)
(1163, Id                           1164
EmployeeName        DANIEL BRIGHT
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              39615.08
OtherPay                 20178.15
Benefits                      NaN
TotalPay                 165727.9
TotalPayBenefits         165727.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1163, dtype: object)
(1164, Id                                  1165
EmployeeName                FRED STRAUSS
JobTitle            PHYSICIAN SPECIALIST
BasePay                        162896.24
OvertimePay                          0.0
OtherPay                         2797.16
Benefits                             NaN
TotalPay                        165693.4
TotalPayBenefits                165693.4
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1164, dtype: object)
(1165, Id                                1166
EmployeeName                  JOHN POH
JobTitle            NURSE PRACTITIONER
BasePay                      159457.94
OvertimePay                    5970.08
OtherPay                         250.0
Benefits                           NaN
TotalPay                     165678.02
TotalPayBenefits             165678.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1165, dtype: object)
(1166, Id                                         1167
EmployeeName                        BRIAN WALSH
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            21405.25
OtherPay                               21162.35
Benefits                                    NaN
TotalPay                               165672.6
TotalPayBenefits                       165672.6
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1166, dtype: object)
(1167, Id                                              1168
EmployeeName                          DONALD WOOLARD
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    135339.73
OvertimePay                                  6750.17
OtherPay                                    23581.44
Benefits                                         NaN
TotalPay                                   165671.34
TotalPayBenefits                           165671.34
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1167, dtype: object)
(1168, Id                                       1169
EmployeeName                JENNIFER WILLIAMS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             163999.99
OvertimePay                               0.0
OtherPay                              1637.54
Benefits                                  NaN
TotalPay                            165637.53
TotalPayBenefits                    165637.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1168, dtype: object)
(1169, Id                            1170
EmployeeName        DAVID NONOMURA
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                40632.3
OtherPay                  19065.79
Benefits                       NaN
TotalPay                 165632.75
TotalPayBenefits         165632.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1169, dtype: object)
(1170, Id                                       1171
EmployeeName                     DAVID DELBON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                              1271.84
Benefits                                  NaN
TotalPay                            165624.46
TotalPayBenefits                    165624.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1170, dtype: object)
(1171, Id                                       1172
EmployeeName                       MARK HAYES
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.01
OvertimePay                          19035.35
OtherPay                             19383.26
Benefits                                  NaN
TotalPay                            165621.62
TotalPayBenefits                    165621.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1171, dtype: object)
(1172, Id                              1173
EmployeeName        JOSEPH GIACOMINI
JobTitle                 FIREFIGHTER
BasePay                    105934.66
OvertimePay                 43155.77
OtherPay                    16520.33
Benefits                         NaN
TotalPay                   165610.76
TotalPayBenefits           165610.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1172, dtype: object)
(1173, Id                           1174
EmployeeName          JASON BLAND
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              38539.17
OtherPay                 21126.58
Benefits                      NaN
TotalPay                165600.41
TotalPayBenefits        165600.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1173, dtype: object)
(1174, Id                             1175
EmployeeName        MICHAEL KIRTLEY
JobTitle                FIREFIGHTER
BasePay                    102308.9
OvertimePay                47416.93
OtherPay                   15850.85
Benefits                        NaN
TotalPay                  165576.68
TotalPayBenefits          165576.68
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1174, dtype: object)
(1175, Id                                       1176
EmployeeName                    DIANE VACCARO
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              164372.0
OvertimePay                             948.3
OtherPay                                250.0
Benefits                                  NaN
TotalPay                             165570.3
TotalPayBenefits                     165570.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1175, dtype: object)
(1176, Id                                 1177
EmployeeName                 JEAN PINTO
JobTitle            PILOT OF FIRE BOATS
BasePay                       140546.85
OvertimePay                    20912.21
OtherPay                        4110.98
Benefits                            NaN
TotalPay                      165570.04
TotalPayBenefits              165570.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1176, dtype: object)
(1177, Id                                  1178
EmployeeName              MICHELE FISHER
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.01
OvertimePay                     35356.22
OtherPay                         8559.39
Benefits                             NaN
TotalPay                       165543.62
TotalPayBenefits               165543.62
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1177, dtype: object)
(1178, Id                                1179
EmployeeName              STEVEN RATTO
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   16685.31
OtherPay                      36397.91
Benefits                           NaN
TotalPay                     165504.67
TotalPayBenefits             165504.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1178, dtype: object)
(1179, Id                                              1180
EmployeeName                            KEVIN KNOBLE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.33
OvertimePay                                 19744.98
OtherPay                                     15320.9
Benefits                                         NaN
TotalPay                                   165500.21
TotalPayBenefits                           165500.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1179, dtype: object)
(1180, Id                                1181
EmployeeName                DAVID PAUL
JobTitle            NURSE PRACTITIONER
BasePay                      162201.31
OvertimePay                        0.0
OtherPay                        3281.0
Benefits                           NaN
TotalPay                     165482.31
TotalPayBenefits             165482.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1180, dtype: object)
(1181, Id                                              1182
EmployeeName                          DANIEL MANNING
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.58
OvertimePay                                 23934.63
OtherPay                                     11063.7
Benefits                                         NaN
TotalPay                                   165479.91
TotalPayBenefits                           165479.91
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1181, dtype: object)
(1182, Id                                         1183
EmployeeName                        PAUL O'KANE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            27590.11
OtherPay                                14756.8
Benefits                                    NaN
TotalPay                              165451.92
TotalPayBenefits                      165451.92
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1182, dtype: object)
(1183, Id                                                1184
EmployeeName                             MICHAEL FLYNN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.79
OvertimePay                                    4348.12
OtherPay                                      11975.06
Benefits                                           NaN
TotalPay                                     165373.97
TotalPayBenefits                             165373.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1183, dtype: object)
(1184, Id                                       1185
EmployeeName             FREDERICK SHEINFIELD
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                              1012.56
Benefits                                  NaN
TotalPay                             165365.2
TotalPayBenefits                     165365.2
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1184, dtype: object)
(1185, Id                                       1186
EmployeeName                      MARIE BLITS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                              1012.56
Benefits                                  NaN
TotalPay                            165365.19
TotalPayBenefits                    165365.19
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1185, dtype: object)
(1186, Id                                    1187
EmployeeName             CHRISTOPHER POSEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       32075.58
OtherPay                          10860.29
Benefits                               NaN
TotalPay                         165340.86
TotalPayBenefits                 165340.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1186, dtype: object)
(1187, Id                                  1188
EmployeeName               NILDA ALVERIO
JobTitle            PHYSICIAN SPECIALIST
BasePay                        160180.98
OvertimePay                          0.0
OtherPay                         5138.28
Benefits                             NaN
TotalPay                       165319.26
TotalPayBenefits               165319.26
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1187, dtype: object)
(1188, Id                              1189
EmployeeName        STEPHEN FINNEGAN
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                 36561.12
OtherPay                    22807.71
Benefits                         NaN
TotalPay                   165303.51
TotalPayBenefits           165303.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1188, dtype: object)
(1189, Id                                                1190
EmployeeName                            JOSEPH NANNERY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.88
OvertimePay                                   18253.35
OtherPay                                      16549.16
Benefits                                           NaN
TotalPay                                     165260.39
TotalPayBenefits                             165260.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1189, dtype: object)
(1190, Id                                      1191
EmployeeName                       ELSON HAO
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.06
OvertimePay                              0.0
OtherPay                             2815.61
Benefits                                 NaN
TotalPay                           165256.67
TotalPayBenefits                   165256.67
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1190, dtype: object)
(1191, Id                                1192
EmployeeName            STEPHEN KIRWAN
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   20737.03
OtherPay                      32091.91
Benefits                           NaN
TotalPay                      165250.4
TotalPayBenefits              165250.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1191, dtype: object)
(1192, Id                                               1193
EmployeeName                       CONRAD DEL ROSARIO
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     165242.19
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    165242.19
TotalPayBenefits                            165242.19
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1192, dtype: object)
(1193, Id                                1194
EmployeeName             DAVID NASTARI
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   26020.84
OtherPay                      26814.26
Benefits                           NaN
TotalPay                     165236.16
TotalPayBenefits             165236.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1193, dtype: object)
(1194, Id                           1195
EmployeeName           SOLA CHUOP
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              42086.49
OtherPay                 17188.28
Benefits                      NaN
TotalPay                165209.43
TotalPayBenefits        165209.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1194, dtype: object)
(1195, Id                               1196
EmployeeName        DANIEL MC AULIFFE
JobTitle                    MANAGER V
BasePay                      165201.4
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     165201.4
TotalPayBenefits             165201.4
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1195, dtype: object)
(1196, Id                                         1197
EmployeeName                      PAUL MCDONAGH
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            25558.88
OtherPay                               16501.22
Benefits                                    NaN
TotalPay                              165165.09
TotalPayBenefits                      165165.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1196, dtype: object)
(1197, Id                                    1198
EmployeeName                 DAVID SPENCER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        27475.6
OtherPay                          15277.83
Benefits                               NaN
TotalPay                         165158.42
TotalPayBenefits                 165158.42
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1197, dtype: object)
(1198, Id                                              1199
EmployeeName                                DAVID DO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                 29413.73
OtherPay                                     5256.32
Benefits                                         NaN
TotalPay                                   165151.58
TotalPayBenefits                           165151.58
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1198, dtype: object)
(1199, Id                                1200
EmployeeName           TAE-WOL STANLEY
JobTitle            NURSE PRACTITIONER
BasePay                      154673.99
OvertimePay                        0.0
OtherPay                      10474.88
Benefits                           NaN
TotalPay                     165148.87
TotalPayBenefits             165148.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1199, dtype: object)
(1200, Id                                 1201
EmployeeName                TERRY SALTZ
JobTitle            PROJECT MANAGER III
BasePay                        165127.4
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       165127.4
TotalPayBenefits               165127.4
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1200, dtype: object)
(1201, Id                                       1202
EmployeeName                     EVAN ACKIRON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                               759.42
Benefits                                  NaN
TotalPay                            165112.06
TotalPayBenefits                    165112.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1201, dtype: object)
(1202, Id                                  1203
EmployeeName               DENIS BOUVIER
JobTitle            PHYSICIAN SPECIALIST
BasePay                         165104.4
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        165104.4
TotalPayBenefits                165104.4
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1202, dtype: object)
(1203, Id                                                        1204
EmployeeName                                     LIZA JOHANSEN
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128123.97
OvertimePay                                           27519.69
OtherPay                                               9450.73
Benefits                                                   NaN
TotalPay                                             165094.39
TotalPayBenefits                                     165094.39
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1203, dtype: object)
(1204, Id                                1205
EmployeeName                DAVID GOFF
JobTitle            POLICE OFFICER III
BasePay                      117283.26
OvertimePay                   21008.81
OtherPay                      26777.77
Benefits                           NaN
TotalPay                     165069.84
TotalPayBenefits             165069.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1204, dtype: object)
(1205, Id                              1206
EmployeeName        STEPHEN NAKAJIMA
JobTitle                  MANAGER VI
BasePay                    165046.17
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   165046.17
TotalPayBenefits           165046.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1205, dtype: object)
(1206, Id                           1207
EmployeeName           CAROL ISEN
JobTitle               MANAGER VI
BasePay                 165046.15
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                165046.15
TotalPayBenefits        165046.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1206, dtype: object)
(1207, Id                            1208
EmployeeName        JOSHUA PEREIRA
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               41471.86
OtherPay                  17632.95
Benefits                       NaN
TotalPay                 165039.48
TotalPayBenefits         165039.48
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1207, dtype: object)
(1208, Id                                                               1209
EmployeeName                                             DUANE SILVER
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89705.38
OvertimePay                                                  67624.42
OtherPay                                                      7688.56
Benefits                                                          NaN
TotalPay                                                    165018.36
TotalPayBenefits                                            165018.36
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1208, dtype: object)
(1209, Id                             1210
EmployeeName        MICHAEL CASTAIN
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                45115.58
OtherPay                    13950.2
Benefits                        NaN
TotalPay                  165000.44
TotalPayBenefits          165000.44
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1209, dtype: object)
(1210, Id                                                1211
EmployeeName                                    IP NGO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   84767.48
OtherPay                                        2649.4
Benefits                                           NaN
TotalPay                                     164997.29
TotalPayBenefits                             164997.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1210, dtype: object)
(1211, Id                            1212
EmployeeName        ROGER PHILLIPS
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               45724.86
OtherPay                  13286.38
Benefits                       NaN
TotalPay                 164945.88
TotalPayBenefits         164945.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1211, dtype: object)
(1212, Id                                       1213
EmployeeName                  FRANK CERCOS IV
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.01
OvertimePay                          18389.94
OtherPay                              19337.3
Benefits                                  NaN
TotalPay                            164930.25
TotalPayBenefits                    164930.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1212, dtype: object)
(1213, Id                                                        1214
EmployeeName                                    THOMAS MAGUIRE
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128123.95
OvertimePay                                           22989.43
OtherPay                                              13781.92
Benefits                                                   NaN
TotalPay                                              164895.3
TotalPayBenefits                                      164895.3
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1213, dtype: object)
(1214, Id                           1215
EmployeeName        GLORIA WILDER
JobTitle                MANAGER V
BasePay                  164876.6
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 164876.6
TotalPayBenefits         164876.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1214, dtype: object)
(1215, Id                                    1216
EmployeeName                    ERIK BROWN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       28016.34
OtherPay                          14437.68
Benefits                               NaN
TotalPay                          164859.0
TotalPayBenefits                  164859.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1215, dtype: object)
(1216, Id                           1217
EmployeeName        JOSHUA CUSICK
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              48269.68
OtherPay                 10651.03
Benefits                      NaN
TotalPay                164855.34
TotalPayBenefits        164855.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1216, dtype: object)
(1217, Id                                 1218
EmployeeName                MIRIAN SAEZ
JobTitle            DEPUTY DIRECTOR III
BasePay                       164850.39
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      164850.39
TotalPayBenefits              164850.39
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1217, dtype: object)
(1218, Id                                                               1219
EmployeeName                                          DANIEL DECOSSIO
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                     144362.14
OvertimePay                                                   9503.16
OtherPay                                                     10982.55
Benefits                                                          NaN
TotalPay                                                    164847.85
TotalPayBenefits                                            164847.85
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1218, dtype: object)
(1219, Id                                                1220
EmployeeName                                LIAM FROST
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149755.35
OvertimePay                                    6783.61
OtherPay                                       8238.23
Benefits                                           NaN
TotalPay                                     164777.19
TotalPayBenefits                             164777.19
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1219, dtype: object)
(1220, Id                               1221
EmployeeName           WILLIAM GARCIA
JobTitle            POLICE OFFICER II
BasePay                     115125.18
OvertimePay                  22664.51
OtherPay                     26982.29
Benefits                          NaN
TotalPay                    164771.98
TotalPayBenefits            164771.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1220, dtype: object)
(1221, Id                                                1222
EmployeeName                               KENWADE LEE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.98
OvertimePay                                     8685.5
OtherPay                                        7015.5
Benefits                                           NaN
TotalPay                                     164724.98
TotalPayBenefits                             164724.98
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1221, dtype: object)
(1222, Id                                1223
EmployeeName            KRIS BLEYTHING
JobTitle            NURSE PRACTITIONER
BasePay                       164444.2
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      164694.2
TotalPayBenefits              164694.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1222, dtype: object)
(1223, Id                                       1224
EmployeeName                  KEVIN OSULLIVAN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.86
OvertimePay                           6105.88
OtherPay                              18037.1
Benefits                                  NaN
TotalPay                            164689.84
TotalPayBenefits                    164689.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1223, dtype: object)
(1224, Id                                              1225
EmployeeName                              JA HAN KIM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130170.34
OvertimePay                                 23266.65
OtherPay                                    11220.89
Benefits                                         NaN
TotalPay                                   164657.88
TotalPayBenefits                           164657.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1224, dtype: object)
(1225, Id                                                1226
EmployeeName                         RICHARD STRUCKMAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.79
OvertimePay                                    8299.66
OtherPay                                       7288.47
Benefits                                           NaN
TotalPay                                     164638.92
TotalPayBenefits                             164638.92
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1225, dtype: object)
(1226, Id                                       1227
EmployeeName                     ROBERT BONTA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.54
OvertimePay                               0.0
OtherPay                               272.93
Benefits                                  NaN
TotalPay                            164625.47
TotalPayBenefits                    164625.47
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1226, dtype: object)
(1227, Id                                       1228
EmployeeName             FATIMA ASCANO-MARTIN
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             164372.01
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            164622.01
TotalPayBenefits                    164622.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1227, dtype: object)
(1228, Id                                    1229
EmployeeName            K CARLTON BISCEVIC
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121829.81
OvertimePay                       34765.23
OtherPay                           8002.17
Benefits                               NaN
TotalPay                         164597.21
TotalPayBenefits                 164597.21
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1228, dtype: object)
(1229, Id                           1230
EmployeeName        DANIEL TAUBER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              41446.43
OtherPay                 17162.75
Benefits                      NaN
TotalPay                164543.84
TotalPayBenefits        164543.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1229, dtype: object)
(1230, Id                                              1231
EmployeeName                            MAURA PENGEL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115946.22
OvertimePay                                 20010.89
OtherPay                                    28583.36
Benefits                                         NaN
TotalPay                                   164540.47
TotalPayBenefits                           164540.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1230, dtype: object)
(1231, Id                                            1232
EmployeeName                     MANUEL BONILLA JR
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123192.11
OvertimePay                               33422.36
OtherPay                                   7919.83
Benefits                                       NaN
TotalPay                                  164534.3
TotalPayBenefits                          164534.3
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1231, dtype: object)
(1232, Id                                       1233
EmployeeName                   RICHARD HANDEL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                               177.58
Benefits                                  NaN
TotalPay                            164530.24
TotalPayBenefits                    164530.24
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1232, dtype: object)
(1233, Id                                              1234
EmployeeName                          STEPHANIE LONG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                   969.91
OtherPay                                    33080.31
Benefits                                         NaN
TotalPay                                   164508.13
TotalPayBenefits                           164508.13
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1233, dtype: object)
(1234, Id                           1235
EmployeeName        JASON HARRELL
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              36788.77
OtherPay                 21766.15
Benefits                      NaN
TotalPay                164489.59
TotalPayBenefits        164489.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1234, dtype: object)
(1235, Id                             1236
EmployeeName        TIMOTHY RAMIREZ
JobTitle                MANAGER VII
BasePay                   159487.34
OvertimePay                     0.0
OtherPay                     5000.0
Benefits                        NaN
TotalPay                  164487.34
TotalPayBenefits          164487.34
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1235, dtype: object)
(1236, Id                                              1237
EmployeeName                           JOSEPH MINNER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.47
OvertimePay                                 15181.65
OtherPay                                    18801.85
Benefits                                         NaN
TotalPay                                   164464.97
TotalPayBenefits                           164464.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1236, dtype: object)
(1237, Id                           1238
EmployeeName             KIT CHAN
JobTitle            NURSE MANAGER
BasePay                 163553.09
OvertimePay                   0.0
OtherPay                    910.0
Benefits                      NaN
TotalPay                164463.09
TotalPayBenefits        164463.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1237, dtype: object)
(1238, Id                                                               1239
EmployeeName                                         EILEEN MCCRYSTLE
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.09
OvertimePay                                                   2384.59
OtherPay                                                     35105.14
Benefits                                                          NaN
TotalPay                                                    164457.82
TotalPayBenefits                                            164457.82
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1238, dtype: object)
(1239, Id                                       1240
EmployeeName                  GREGORY GOLDMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164436.18
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164436.18
TotalPayBenefits                    164436.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1239, dtype: object)
(1240, Id                           1241
EmployeeName          PHILIP TING
JobTitle                 ASSESSOR
BasePay                  164425.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 164425.0
TotalPayBenefits         164425.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1240, dtype: object)
(1241, Id                                         1242
EmployeeName                          JON BOONE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               136687.95
OvertimePay                                 0.0
OtherPay                               27703.24
Benefits                                    NaN
TotalPay                              164391.19
TotalPayBenefits                      164391.19
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1241, dtype: object)
(1242, Id                                1243
EmployeeName           ANTHONY PEDROZA
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                    6275.38
OtherPay                      45706.61
Benefits                           NaN
TotalPay                     164383.02
TotalPayBenefits             164383.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1242, dtype: object)
(1243, Id                                       1244
EmployeeName                  STEVEN WEINKAUF
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164373.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             164373.4
TotalPayBenefits                     164373.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1243, dtype: object)
(1244, Id                                       1245
EmployeeName                    INES FRAENKEL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164373.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             164373.4
TotalPayBenefits                     164373.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1244, dtype: object)
(1245, Id                                       1246
EmployeeName                      SALLY GRATZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.39
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.39
TotalPayBenefits                    164373.39
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1245, dtype: object)
(1246, Id                                       1247
EmployeeName                   PAUL SPRAGGINS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.39
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.39
TotalPayBenefits                    164373.39
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1246, dtype: object)
(1247, Id                                       1248
EmployeeName                    JOEL BLACKMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.39
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.39
TotalPayBenefits                    164373.39
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1247, dtype: object)
(1248, Id                                       1249
EmployeeName                 JENNIFER JOHNSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1248, dtype: object)
(1249, Id                                       1250
EmployeeName               CHRISTINE SCHENONE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1249, dtype: object)
(1250, Id                                       1251
EmployeeName                    REBECCA YOUNG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1250, dtype: object)
(1251, Id                                       1252
EmployeeName                       SUJUNG KIM
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1251, dtype: object)
(1252, Id                                       1253
EmployeeName                     SIMIN OBRIEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1252, dtype: object)
(1253, Id                                       1254
EmployeeName             REBECCA MARCUS-WOODS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1253, dtype: object)
(1254, Id                                       1255
EmployeeName               DOROTHY BUSTAMANTE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1254, dtype: object)
(1255, Id                                       1256
EmployeeName                   SANDY FEINLAND
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1255, dtype: object)
(1256, Id                                       1257
EmployeeName                  GREGORY FELDMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.38
TotalPayBenefits                    164373.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1256, dtype: object)
(1257, Id                                       1258
EmployeeName                        LISA KATZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164373.37
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164373.37
TotalPayBenefits                    164373.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1257, dtype: object)
(1258, Id                           1259
EmployeeName           ALLEN WONG
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              41053.35
OtherPay                 17384.95
Benefits                      NaN
TotalPay                164372.94
TotalPayBenefits        164372.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1258, dtype: object)
(1259, Id                                       1260
EmployeeName                   NANCY TAVERNIT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.67
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.67
TotalPayBenefits                    164352.67
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1259, dtype: object)
(1260, Id                                       1261
EmployeeName                  J MICHAEL SWART
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1260, dtype: object)
(1261, Id                                       1262
EmployeeName                      FREYA HORNE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1261, dtype: object)
(1262, Id                                       1263
EmployeeName                     DIANA GARCIA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1262, dtype: object)
(1263, Id                                       1264
EmployeeName                       MARK BLAKE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1263, dtype: object)
(1264, Id                                       1265
EmployeeName                     TODD BARRETT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1264, dtype: object)
(1265, Id                                       1266
EmployeeName                   VINCE CHHABRIA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1265, dtype: object)
(1266, Id                                       1267
EmployeeName                   WILLIAM MURPHY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1266, dtype: object)
(1267, Id                                       1268
EmployeeName                     MIKE GOLSTON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1267, dtype: object)
(1268, Id                                       1269
EmployeeName                     LESLIE COGAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1268, dtype: object)
(1269, Id                                       1270
EmployeeName              LAWRENCE HECIMOVICH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1269, dtype: object)
(1270, Id                                       1271
EmployeeName                     BASSAM TOTAH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1270, dtype: object)
(1271, Id                                       1272
EmployeeName                CONSTANCE MENEFEE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1271, dtype: object)
(1272, Id                                       1273
EmployeeName                 MICHAEL MENESINI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1272, dtype: object)
(1273, Id                                       1274
EmployeeName                      YVONNE MERE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1273, dtype: object)
(1274, Id                                       1275
EmployeeName                  KATHLEEN MURPHY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1274, dtype: object)
(1275, Id                                       1276
EmployeeName                     ELAINE ONEIL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1275, dtype: object)
(1276, Id                                       1277
EmployeeName                   GINA ROCCANOVA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1276, dtype: object)
(1277, Id                                       1278
EmployeeName                     KENNETH ROUX
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1277, dtype: object)
(1278, Id                                       1279
EmployeeName                    ADRIANNE TONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.66
TotalPayBenefits                    164352.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1278, dtype: object)
(1279, Id                                       1280
EmployeeName                     SHARON BACON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1279, dtype: object)
(1280, Id                                       1281
EmployeeName                   JEAN ALEXANDER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1280, dtype: object)
(1281, Id                                       1282
EmployeeName                ANTONIO HERNANDEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1281, dtype: object)
(1282, Id                                       1283
EmployeeName                      PETER KEITH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1282, dtype: object)
(1283, Id                                       1284
EmployeeName                      LINDA ALLEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1283, dtype: object)
(1284, Id                                       1285
EmployeeName                KATHERINE MAHONEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1284, dtype: object)
(1285, Id                                       1286
EmployeeName                     JOHN MALAMUT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1285, dtype: object)
(1286, Id                                       1287
EmployeeName                 KATHARINE PORTER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1286, dtype: object)
(1287, Id                                       1288
EmployeeName                    MARIO VAZQUEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1287, dtype: object)
(1288, Id                                       1289
EmployeeName                    VICTORIA WONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.65
TotalPayBenefits                    164352.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1288, dtype: object)
(1289, Id                                       1290
EmployeeName                BRIAN BRINGARDNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.64
TotalPayBenefits                    164352.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1289, dtype: object)
(1290, Id                                       1291
EmployeeName           CURTIS CHRISTY-CIRILLO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.64
TotalPayBenefits                    164352.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1290, dtype: object)
(1291, Id                                       1292
EmployeeName                      LINDA SAKAI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.64
TotalPayBenefits                    164352.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1291, dtype: object)
(1292, Id                                       1293
EmployeeName                     ROBERT STONE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.64
TotalPayBenefits                    164352.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1292, dtype: object)
(1293, Id                                       1294
EmployeeName                KIMBERLY WILLIAMS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1293, dtype: object)
(1294, Id                                       1295
EmployeeName                 CATHARINE BARNES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1294, dtype: object)
(1295, Id                                       1296
EmployeeName             MARGARET BAUMGARTNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1295, dtype: object)
(1296, Id                                       1297
EmployeeName                    JENNIFER CHOI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1296, dtype: object)
(1297, Id                                       1298
EmployeeName                    SHERRI KAISER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1297, dtype: object)
(1298, Id                                       1299
EmployeeName                      MARK LIPTON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1298, dtype: object)
(1299, Id                                       1300
EmployeeName                     STACEY LUCAS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1299, dtype: object)
(1300, Id                                       1301
EmployeeName                    LEONOR NOGUEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1300, dtype: object)
(1301, Id                                       1302
EmployeeName                       CAROL WONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.63
TotalPayBenefits                    164352.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1301, dtype: object)
(1302, Id                                       1303
EmployeeName                 TIFFANEY CHAPLIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.62
TotalPayBenefits                    164352.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1302, dtype: object)
(1303, Id                                       1304
EmployeeName            MICHAEL LEON GUERRERO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.62
TotalPayBenefits                    164352.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1303, dtype: object)
(1304, Id                                       1305
EmployeeName                      ADINE VARAH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.62
TotalPayBenefits                    164352.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1304, dtype: object)
(1305, Id                                       1306
EmployeeName                    SALLIE GIBSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.61
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.61
TotalPayBenefits                    164352.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1305, dtype: object)
(1306, Id                                       1307
EmployeeName                   ARCHIBALD WONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              164352.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             164352.6
TotalPayBenefits                     164352.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1306, dtype: object)
(1307, Id                                       1308
EmployeeName                        CELIA LEE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.59
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.59
TotalPayBenefits                    164352.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1307, dtype: object)
(1308, Id                                       1309
EmployeeName                   JAMES THOMPSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.59
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.59
TotalPayBenefits                    164352.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1308, dtype: object)
(1309, Id                                       1310
EmployeeName                    PAUL ZAREFSKY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.59
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.59
TotalPayBenefits                    164352.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1309, dtype: object)
(1310, Id                                       1311
EmployeeName                   LISA BERKOWITZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.58
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.58
TotalPayBenefits                    164352.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1310, dtype: object)
(1311, Id                                       1312
EmployeeName                    LORETTA WIDER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.58
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.58
TotalPayBenefits                    164352.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1311, dtype: object)
(1312, Id                                       1313
EmployeeName                    CAROLYN STEIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.54
TotalPayBenefits                    164352.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1312, dtype: object)
(1313, Id                                       1314
EmployeeName                       TERESA TAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.54
TotalPayBenefits                    164352.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1313, dtype: object)
(1314, Id                                       1315
EmployeeName                    MICHAEL WEISS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164352.41
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164352.41
TotalPayBenefits                    164352.41
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1314, dtype: object)
(1315, Id                                                1316
EmployeeName                            THOMAS BUCKLEY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.67
OvertimePay                                    6744.06
OtherPay                                       8553.95
Benefits                                           NaN
TotalPay                                     164348.68
TotalPayBenefits                             164348.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1315, dtype: object)
(1316, Id                           1317
EmployeeName           JOHN DOYLE
JobTitle               MANAGER VI
BasePay                 164345.11
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                164345.11
TotalPayBenefits        164345.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1316, dtype: object)
(1317, Id                                         1318
EmployeeName                     JANEEN PIROSKO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122243.94
OvertimePay                            23084.22
OtherPay                               18975.89
Benefits                                    NaN
TotalPay                              164304.05
TotalPayBenefits                      164304.05
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1317, dtype: object)
(1318, Id                           1319
EmployeeName           KELLY HOLT
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay              48094.19
OtherPay                 10268.73
Benefits                      NaN
TotalPay                164297.63
TotalPayBenefits        164297.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1318, dtype: object)
(1319, Id                                                1320
EmployeeName                             DANIEL LEYDON
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.52
OvertimePay                                    5133.12
OtherPay                                      10105.28
Benefits                                           NaN
TotalPay                                     164288.92
TotalPayBenefits                             164288.92
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1319, dtype: object)
(1320, Id                                              1321
EmployeeName                            RONALD BANTA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                  7460.28
OtherPay                                    26359.58
Benefits                                         NaN
TotalPay                                   164277.83
TotalPayBenefits                           164277.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1320, dtype: object)
(1321, Id                                                1322
EmployeeName                               EDMUND COTA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.56
OvertimePay                                    8531.95
OtherPay                                       6686.94
Benefits                                           NaN
TotalPay                                     164269.45
TotalPayBenefits                             164269.45
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1321, dtype: object)
(1322, Id                                1323
EmployeeName             THOMAS LOVRIN
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    8503.37
OtherPay                      43361.56
Benefits                           NaN
TotalPay                     164266.01
TotalPayBenefits             164266.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1322, dtype: object)
(1323, Id                            1324
EmployeeName        JOSEPH HALLISY
JobTitle               FIREFIGHTER
BasePay                    56220.0
OvertimePay               30262.34
OtherPay                  77773.09
Benefits                       NaN
TotalPay                 164255.43
TotalPayBenefits         164255.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1323, dtype: object)
(1324, Id                           1325
EmployeeName        ERIC STIVESON
JobTitle              FIREFIGHTER
BasePay                 104814.74
OvertimePay              46389.05
OtherPay                 13011.89
Benefits                      NaN
TotalPay                164215.68
TotalPayBenefits        164215.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1324, dtype: object)
(1325, Id                            1326
EmployeeName        ANTONIO FLORES
JobTitle               MANAGER VII
BasePay                  164211.77
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 164211.77
TotalPayBenefits         164211.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1325, dtype: object)
(1326, Id                           1327
EmployeeName         WARREN HOUSE
JobTitle              FIREFIGHTER
BasePay                  101027.4
OvertimePay              50531.95
OtherPay                 12639.42
Benefits                      NaN
TotalPay                164198.77
TotalPayBenefits        164198.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1326, dtype: object)
(1327, Id                                                            1328
EmployeeName                                    TIMOTHY PAPANDREOU
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  164070.75
OvertimePay                                                    0.0
OtherPay                                                     120.0
Benefits                                                       NaN
TotalPay                                                 164190.75
TotalPayBenefits                                         164190.75
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1327, dtype: object)
(1328, Id                            1329
EmployeeName        MICHAEL LAWSON
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                41270.8
OtherPay                  16904.08
Benefits                       NaN
TotalPay                 164109.55
TotalPayBenefits         164109.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1328, dtype: object)
(1329, Id                                       1330
EmployeeName                  ANDREW GSCHWIND
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164103.72
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164103.72
TotalPayBenefits                    164103.72
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1329, dtype: object)
(1330, Id                                                            1331
EmployeeName                                          ASHISH PATEL
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  164096.27
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 164096.27
TotalPayBenefits                                         164096.27
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1330, dtype: object)
(1331, Id                                              1332
EmployeeName                          MARTIN BANDVIK
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.79
OvertimePay                                 13804.11
OtherPay                                    19824.13
Benefits                                         NaN
TotalPay                                   164086.03
TotalPayBenefits                           164086.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1331, dtype: object)
(1332, Id                                1333
EmployeeName         NICHOLAS FERRANDO
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   10273.63
OtherPay                      41389.18
Benefits                           NaN
TotalPay                     164084.24
TotalPayBenefits             164084.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1332, dtype: object)
(1333, Id                                                            1334
EmployeeName                                        KERSTIN MAGARY
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  164071.52
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 164071.52
TotalPayBenefits                                         164071.52
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1333, dtype: object)
(1334, Id                                1335
EmployeeName                  TOM KONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                   71916.16
OtherPay                       3076.98
Benefits                           NaN
TotalPay                     164071.24
TotalPayBenefits             164071.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1334, dtype: object)
(1335, Id                           1336
EmployeeName        SHELIA HUNTER
JobTitle              FIREFIGHTER
BasePay                 121645.25
OvertimePay               24565.3
OtherPay                 17847.31
Benefits                      NaN
TotalPay                164057.86
TotalPayBenefits        164057.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1335, dtype: object)
(1336, Id                              1337
EmployeeName        PHILIP TELESFORO
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                  40454.6
OtherPay                     17654.1
Benefits                         NaN
TotalPay                   164043.38
TotalPayBenefits           164043.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1336, dtype: object)
(1337, Id                                       1338
EmployeeName                  SANDRA GARTZMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164041.79
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164041.79
TotalPayBenefits                    164041.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1337, dtype: object)
(1338, Id                                       1339
EmployeeName                     JOHN KENNEDY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164041.46
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164041.46
TotalPayBenefits                    164041.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1338, dtype: object)
(1339, Id                                       1340
EmployeeName                    DAVID STEVENS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             164020.71
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            164020.71
TotalPayBenefits                    164020.71
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1339, dtype: object)
(1340, Id                                               1341
EmployeeName                               CHEUNG LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                  53041.23
OtherPay                                      11962.0
Benefits                                          NaN
TotalPay                                    164003.23
TotalPayBenefits                            164003.23
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1340, dtype: object)
(1341, Id                                                            1342
EmployeeName                                            DAVID HILL
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  163929.74
OvertimePay                                                    0.0
OtherPay                                                      65.0
Benefits                                                       NaN
TotalPay                                                 163994.74
TotalPayBenefits                                         163994.74
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1341, dtype: object)
(1342, Id                                1343
EmployeeName             KEVIN NEEDHAM
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   15378.03
OtherPay                      36228.44
Benefits                           NaN
TotalPay                     163987.18
TotalPayBenefits             163987.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1342, dtype: object)
(1343, Id                                1344
EmployeeName                 JOHN TACK
JobTitle            POLICE OFFICER III
BasePay                      111663.34
OvertimePay                    5659.21
OtherPay                      46662.54
Benefits                           NaN
TotalPay                     163985.09
TotalPayBenefits             163985.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1343, dtype: object)
(1344, Id                           1345
EmployeeName          JO ROBINSON
JobTitle               MANAGER IV
BasePay                 144258.69
OvertimePay                   0.0
OtherPay                 19701.59
Benefits                      NaN
TotalPay                163960.28
TotalPayBenefits        163960.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1344, dtype: object)
(1345, Id                           1346
EmployeeName          JOSEPH JOHN
JobTitle              MANAGER VII
BasePay                 163929.86
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                163929.86
TotalPayBenefits        163929.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1345, dtype: object)
(1346, Id                           1347
EmployeeName          VAKIL KUNER
JobTitle              MANAGER VII
BasePay                 163929.83
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                163929.83
TotalPayBenefits        163929.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1346, dtype: object)
(1347, Id                                                            1348
EmployeeName                                              JUN CHEN
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  163929.78
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 163929.78
TotalPayBenefits                                         163929.78
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1347, dtype: object)
(1348, Id                                1349
EmployeeName            THERESA SPARKS
JobTitle            DEPARTMENT HEAD II
BasePay                      163929.76
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     163929.76
TotalPayBenefits             163929.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1348, dtype: object)
(1349, Id                                                            1350
EmployeeName                                          JOY HOULIHAN
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  163929.74
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 163929.74
TotalPayBenefits                                         163929.74
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1349, dtype: object)
(1350, Id                                1351
EmployeeName              REBECCA KATZ
JobTitle            DEPARTMENT HEAD II
BasePay                      163929.74
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     163929.74
TotalPayBenefits             163929.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1350, dtype: object)
(1351, Id                                  1352
EmployeeName        CHRISTOPHER IGLESIAS
JobTitle                     MANAGER VII
BasePay                        163929.74
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       163929.74
TotalPayBenefits               163929.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1351, dtype: object)
(1352, Id                            1353
EmployeeName        KENNETH SALMON
JobTitle               MANAGER VII
BasePay                  163929.74
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 163929.74
TotalPayBenefits         163929.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1352, dtype: object)
(1353, Id                              1354
EmployeeName           VICENTE MAYOR
JobTitle            TRAIN CONTROLLER
BasePay                    101947.66
OvertimePay                 54830.13
OtherPay                     7119.73
Benefits                         NaN
TotalPay                   163897.52
TotalPayBenefits           163897.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1353, dtype: object)
(1354, Id                                       1355
EmployeeName                   SHAYNE KAIALOA
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127886.02
OvertimePay                          25393.97
OtherPay                             10590.15
Benefits                                  NaN
TotalPay                            163870.14
TotalPayBenefits                    163870.14
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1354, dtype: object)
(1355, Id                                 1356
EmployeeName           KENNETH BUKOWSKI
JobTitle            DEPUTY DIRECTOR III
BasePay                        163845.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       163845.0
TotalPayBenefits               163845.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1355, dtype: object)
(1356, Id                                         1357
EmployeeName                    WILLIAM HUGGETT
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               156027.31
OvertimePay                                 0.0
OtherPay                                7801.52
Benefits                                    NaN
TotalPay                              163828.83
TotalPayBenefits                      163828.83
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1356, dtype: object)
(1357, Id                                                               1358
EmployeeName                                                SAMMY YEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                      107023.2
OvertimePay                                                  54599.32
OtherPay                                                       2202.0
Benefits                                                          NaN
TotalPay                                                    163824.52
TotalPayBenefits                                            163824.52
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1357, dtype: object)
(1358, Id                                            1359
EmployeeName                          JAMES RAMSEY
JobTitle            INSPECTOR, (POLICE DEPARTMENT)
BasePay                                  123170.03
OvertimePay                                8049.95
OtherPay                                   32588.5
Benefits                                       NaN
TotalPay                                 163808.48
TotalPayBenefits                         163808.48
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1358, dtype: object)
(1359, Id                                       1360
EmployeeName                         TYLER VU
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             163806.21
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            163806.21
TotalPayBenefits                    163806.21
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1359, dtype: object)
(1360, Id                                1361
EmployeeName            KIRK EDISON JR
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   33142.82
OtherPay                      18240.56
Benefits                           NaN
TotalPay                     163804.83
TotalPayBenefits             163804.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1360, dtype: object)
(1361, Id                                                1362
EmployeeName                            MICHAEL CAPLAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.73
OvertimePay                                    8430.59
OtherPay                                       6312.79
Benefits                                           NaN
TotalPay                                     163794.11
TotalPayBenefits                             163794.11
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1361, dtype: object)
(1362, Id                           1363
EmployeeName           EDWARD YUP
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              40386.98
OtherPay                 17468.79
Benefits                      NaN
TotalPay                163790.47
TotalPayBenefits        163790.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1362, dtype: object)
(1363, Id                                       1364
EmployeeName                    ERIK RAPOPORT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             163785.49
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            163785.49
TotalPayBenefits                    163785.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1363, dtype: object)
(1364, Id                                1365
EmployeeName              JOHN NOGUCHI
JobTitle            DEPARTMENT HEAD II
BasePay                      163768.65
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     163768.65
TotalPayBenefits             163768.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1364, dtype: object)
(1365, Id                                            1366
EmployeeName                         RICHARD JONES
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123192.16
OvertimePay                               29220.92
OtherPay                                  11341.21
Benefits                                       NaN
TotalPay                                 163754.29
TotalPayBenefits                         163754.29
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1365, dtype: object)
(1366, Id                            1367
EmployeeName        JEANA PIERALDE
JobTitle                 MANAGER V
BasePay                  136501.28
OvertimePay                    0.0
OtherPay                  27240.51
Benefits                       NaN
TotalPay                 163741.79
TotalPayBenefits         163741.79
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1366, dtype: object)
(1367, Id                                1368
EmployeeName               JOO-HAN KIM
JobTitle            POLICE OFFICER III
BasePay                      117262.93
OvertimePay                   19565.41
OtherPay                      26910.77
Benefits                           NaN
TotalPay                     163739.11
TotalPayBenefits             163739.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1367, dtype: object)
(1368, Id                                       1369
EmployeeName                   ANITA PARATLEY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              127203.0
OvertimePay                          18430.17
OtherPay                             18076.91
Benefits                                  NaN
TotalPay                            163710.08
TotalPayBenefits                    163710.08
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1368, dtype: object)
(1369, Id                           1370
EmployeeName             BARRY LO
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               35578.6
OtherPay                 22195.54
Benefits                      NaN
TotalPay                163708.79
TotalPayBenefits        163708.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1369, dtype: object)
(1370, Id                                                1371
EmployeeName                            MICHAEL BECKER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   11289.53
OtherPay                                      21923.35
Benefits                                           NaN
TotalPay                                     163694.47
TotalPayBenefits                             163694.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1370, dtype: object)
(1371, Id                                              1372
EmployeeName                            ROWLAND WING
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    133647.74
OvertimePay                                 12325.08
OtherPay                                    17721.22
Benefits                                         NaN
TotalPay                                   163694.04
TotalPayBenefits                           163694.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1371, dtype: object)
(1372, Id                                  1373
EmployeeName             JONATHAN BARASH
JobTitle            PHYSICIAN SPECIALIST
BasePay                        159821.08
OvertimePay                          0.0
OtherPay                          3865.0
Benefits                             NaN
TotalPay                       163686.08
TotalPayBenefits               163686.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1372, dtype: object)
(1373, Id                                1374
EmployeeName            BRIGID DONOVAN
JobTitle            NURSE PRACTITIONER
BasePay                      140865.17
OvertimePay                   15149.02
OtherPay                       7671.15
Benefits                           NaN
TotalPay                     163685.34
TotalPayBenefits             163685.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1373, dtype: object)
(1374, Id                                 1375
EmployeeName                NAOMI KELLY
JobTitle            DEPUTY DIRECTOR III
BasePay                       159693.53
OvertimePay                         0.0
OtherPay                        3928.81
Benefits                            NaN
TotalPay                      163622.34
TotalPayBenefits              163622.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1374, dtype: object)
(1375, Id                                 1376
EmployeeName                LINDA YEUNG
JobTitle            DEPUTY DIRECTOR III
BasePay                       159693.52
OvertimePay                         0.0
OtherPay                        3928.82
Benefits                            NaN
TotalPay                      163622.34
TotalPayBenefits              163622.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1375, dtype: object)
(1376, Id                                         1377
EmployeeName                      ROBERT ARZAVE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            25091.89
OtherPay                               15424.82
Benefits                                    NaN
TotalPay                              163621.71
TotalPayBenefits                      163621.71
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1376, dtype: object)
(1377, Id                                    1378
EmployeeName                   NASH QUINTO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          140546.87
OvertimePay                       11519.03
OtherPay                          11551.58
Benefits                               NaN
TotalPay                         163617.48
TotalPayBenefits                 163617.48
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1377, dtype: object)
(1378, Id                                       1379
EmployeeName                   KRISTEN JENSEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             162249.88
OvertimePay                               0.0
OtherPay                              1349.98
Benefits                                  NaN
TotalPay                            163599.86
TotalPayBenefits                    163599.86
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1378, dtype: object)
(1379, Id                                 1380
EmployeeName          ULYSSES VINSON JR
JobTitle            DEPUTY DIRECTOR III
BasePay                       163574.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      163574.51
TotalPayBenefits              163574.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1379, dtype: object)
(1380, Id                                       1381
EmployeeName                  KATHLEEN MORRIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              163573.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             163573.5
TotalPayBenefits                     163573.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1380, dtype: object)
(1381, Id                                       1382
EmployeeName                     DEAN CRISPEN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              127886.0
OvertimePay                           11934.4
OtherPay                             23748.72
Benefits                                  NaN
TotalPay                            163569.12
TotalPayBenefits                    163569.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1381, dtype: object)
(1382, Id                                    1383
EmployeeName                 RAFAEL GORDON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                       25873.52
OtherPay                          15277.85
Benefits                               NaN
TotalPay                         163556.33
TotalPayBenefits                 163556.33
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1382, dtype: object)
(1383, Id                                      1384
EmployeeName                   JONATHAN CHOW
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.05
OvertimePay                              0.0
OtherPay                              1110.0
Benefits                                 NaN
TotalPay                           163551.05
TotalPayBenefits                   163551.05
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1383, dtype: object)
(1384, Id                                      1385
EmployeeName                      ARTHUR LEE
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.04
OvertimePay                              0.0
OtherPay                              1100.0
Benefits                                 NaN
TotalPay                           163541.04
TotalPayBenefits                   163541.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1384, dtype: object)
(1385, Id                                       1386
EmployeeName                   ASHLEY WORSHAM
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              163538.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             163538.6
TotalPayBenefits                     163538.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1385, dtype: object)
(1386, Id                               1387
EmployeeName        MICHAEL LLEWELLYN
JobTitle                   MANAGER VI
BasePay                      163451.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     163451.6
TotalPayBenefits             163451.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1386, dtype: object)
(1387, Id                           1388
EmployeeName         EILEEN HIRST
JobTitle               MANAGER VI
BasePay                 163451.59
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                163451.59
TotalPayBenefits        163451.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1387, dtype: object)
(1388, Id                                       1389
EmployeeName                  JAMES HANNAWALT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             163438.13
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            163438.13
TotalPayBenefits                    163438.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1388, dtype: object)
(1389, Id                                     1390
EmployeeName                 VICTOR ZARAZUA
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                           35737.48
Benefits                                NaN
TotalPay                          163415.08
TotalPayBenefits                  163415.08
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1389, dtype: object)
(1390, Id                                1391
EmployeeName            JONATHAN SMITH
JobTitle            TRANSIT SUPERVISOR
BasePay                        89416.8
OvertimePay                    64762.0
OtherPay                       9225.58
Benefits                           NaN
TotalPay                     163404.38
TotalPayBenefits             163404.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1390, dtype: object)
(1391, Id                            1392
EmployeeName           BROCK DAVIS
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               64338.09
OtherPay                  12204.65
Benefits                       NaN
TotalPay                 163382.74
TotalPayBenefits         163382.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1391, dtype: object)
(1392, Id                              1393
EmployeeName          RODRIGO PALAAD
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  7912.08
OtherPay                    28484.68
Benefits                         NaN
TotalPay                   163380.76
TotalPayBenefits           163380.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1392, dtype: object)
(1393, Id                           1394
EmployeeName         LINDA MARINI
JobTitle               MANAGER VI
BasePay                  163346.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 163346.8
TotalPayBenefits         163346.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1393, dtype: object)
(1394, Id                                         1395
EmployeeName                      RUBEN MONTERO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            32328.06
OtherPay                                7877.31
Benefits                                    NaN
TotalPay                               163310.4
TotalPayBenefits                       163310.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1394, dtype: object)
(1395, Id                                    1396
EmployeeName                   BRANDON TOM
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       25622.57
OtherPay                          15277.87
Benefits                               NaN
TotalPay                         163305.43
TotalPayBenefits                 163305.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1395, dtype: object)
(1396, Id                                                1397
EmployeeName                             HECTOR SAINEZ
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.62
OvertimePay                                   12362.15
OtherPay                                       1896.71
Benefits                                           NaN
TotalPay                                     163303.48
TotalPayBenefits                             163303.48
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1396, dtype: object)
(1397, Id                                1398
EmployeeName        GERALD SANGUINETTI
JobTitle                   MANAGER VII
BasePay                      163285.14
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     163285.14
TotalPayBenefits             163285.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1397, dtype: object)
(1398, Id                              1399
EmployeeName         GRACE CABAUATAN
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  8754.56
OtherPay                    27528.98
Benefits                         NaN
TotalPay                   163267.54
TotalPayBenefits           163267.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1398, dtype: object)
(1399, Id                           1400
EmployeeName            JOEL SOTO
JobTitle              FIREFIGHTER
BasePay                 101989.63
OvertimePay              50187.14
OtherPay                  11058.6
Benefits                      NaN
TotalPay                163235.37
TotalPayBenefits        163235.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1399, dtype: object)
(1400, Id                                1401
EmployeeName              JUN TING LIU
JobTitle            NURSE PRACTITIONER
BasePay                      159457.26
OvertimePay                        0.0
OtherPay                       3769.78
Benefits                           NaN
TotalPay                     163227.04
TotalPayBenefits             163227.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1400, dtype: object)
(1401, Id                               1402
EmployeeName        CHRISTIAN KITCHIN
JobTitle                SPECIAL NURSE
BasePay                     124568.32
OvertimePay                  16171.43
OtherPay                     22452.04
Benefits                          NaN
TotalPay                    163191.79
TotalPayBenefits            163191.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1401, dtype: object)
(1402, Id                                     1403
EmployeeName                     JOHNNY LIM
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                           35504.21
Benefits                                NaN
TotalPay                          163181.81
TotalPayBenefits                  163181.81
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1402, dtype: object)
(1403, Id                                              1404
EmployeeName                                 TOM LEE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130505.0
OvertimePay                                  11418.4
OtherPay                                    21252.58
Benefits                                         NaN
TotalPay                                   163175.98
TotalPayBenefits                           163175.98
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1403, dtype: object)
(1404, Id                                       1405
EmployeeName                 WARREN METLITZKY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             163155.51
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            163155.51
TotalPayBenefits                    163155.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1404, dtype: object)
(1405, Id                                 1406
EmployeeName        MIGUEL CONTRERAS SR
JobTitle             TRANSIT SUPERVISOR
BasePay                         88400.7
OvertimePay                    72630.66
OtherPay                        2096.76
Benefits                            NaN
TotalPay                      163128.12
TotalPayBenefits              163128.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1405, dtype: object)
(1406, Id                                 1407
EmployeeName        VIOLETA EVANGELISTA
JobTitle               REGISTERED NURSE
BasePay                       126393.65
OvertimePay                    14998.89
OtherPay                        21725.5
Benefits                            NaN
TotalPay                      163118.04
TotalPayBenefits              163118.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1406, dtype: object)
(1407, Id                                          1408
EmployeeName                  FREDERICK MCGREGOR
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                160529.83
OvertimePay                                  0.0
OtherPay                                 2568.82
Benefits                                     NaN
TotalPay                               163098.65
TotalPayBenefits                       163098.65
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 1407, dtype: object)
(1408, Id                                         1409
EmployeeName                       DAVID MURRAY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.98
OvertimePay                            24626.67
OtherPay                                15365.2
Benefits                                    NaN
TotalPay                              163096.85
TotalPayBenefits                      163096.85
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1408, dtype: object)
(1409, Id                            1410
EmployeeName        DONNA CHILDERS
JobTitle                 MANAGER V
BasePay                  160529.74
OvertimePay                    0.0
OtherPay                   2562.78
Benefits                       NaN
TotalPay                 163092.52
TotalPayBenefits         163092.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1409, dtype: object)
(1410, Id                                       1411
EmployeeName                    NIKKI GRIFFEY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                           5515.69
OtherPay                             17021.65
Benefits                                  NaN
TotalPay                            163084.22
TotalPayBenefits                    163084.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1410, dtype: object)
(1411, Id                           1412
EmployeeName           JAMES ONOE
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              39391.58
OtherPay                 17755.74
Benefits                      NaN
TotalPay                163081.96
TotalPayBenefits        163081.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1411, dtype: object)
(1412, Id                                              1413
EmployeeName                               JODY KATO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.41
OvertimePay                                  3204.78
OtherPay                                    29381.46
Benefits                                         NaN
TotalPay                                   163043.65
TotalPayBenefits                           163043.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1412, dtype: object)
(1413, Id                                1414
EmployeeName               LAWRENCE NG
JobTitle            TRANSIT SUPERVISOR
BasePay                       85270.03
OvertimePay                   69910.69
OtherPay                        7805.2
Benefits                           NaN
TotalPay                     162985.92
TotalPayBenefits             162985.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1413, dtype: object)
(1414, Id                           1415
EmployeeName           PAUL SAITZ
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              46635.39
OtherPay                 10402.13
Benefits                      NaN
TotalPay                162972.18
TotalPayBenefits        162972.18
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1414, dtype: object)
(1415, Id                                           1416
EmployeeName                       MARIO MELENDEZ
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                 103290.56
OvertimePay                              53734.69
OtherPay                                  5945.56
Benefits                                      NaN
TotalPay                                162970.81
TotalPayBenefits                        162970.81
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 1415, dtype: object)
(1416, Id                            1417
EmployeeName        MICHAEL TEUPEL
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               48991.79
OtherPay                   8039.52
Benefits                       NaN
TotalPay                 162965.98
TotalPayBenefits         162965.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1416, dtype: object)
(1417, Id                                                           1418
EmployeeName                                     ANDREW HOWARD IV
JobTitle            MANAGER VII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 160209.96
OvertimePay                                                   0.0
OtherPay                                                  2751.72
Benefits                                                      NaN
TotalPay                                                162961.68
TotalPayBenefits                                        162961.68
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 1417, dtype: object)
(1418, Id                                                1419
EmployeeName                              PATRICK WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   78026.28
OtherPay                                       7345.64
Benefits                                           NaN
TotalPay                                     162952.32
TotalPayBenefits                             162952.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1418, dtype: object)
(1419, Id                                       1420
EmployeeName                   RAFAL OFIERSKI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             162944.57
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            162944.57
TotalPayBenefits                    162944.57
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1419, dtype: object)
(1420, Id                                         1421
EmployeeName                        KAREN HEALD
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            24074.83
OtherPay                               15743.89
Benefits                                    NaN
TotalPay                              162923.74
TotalPayBenefits                      162923.74
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1420, dtype: object)
(1421, Id                                  1422
EmployeeName                 DAVID STIER
JobTitle            PHYSICIAN SPECIALIST
BasePay                        162323.39
OvertimePay                          0.0
OtherPay                           576.0
Benefits                             NaN
TotalPay                       162899.39
TotalPayBenefits               162899.39
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1421, dtype: object)
(1422, Id                                    1423
EmployeeName                DANIEL FLEMING
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       25212.88
OtherPay                          15277.84
Benefits                               NaN
TotalPay                         162895.72
TotalPayBenefits                 162895.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1422, dtype: object)
(1423, Id                            1424
EmployeeName        EDWARD LABRADO
JobTitle               FIREFIGHTER
BasePay                  115873.07
OvertimePay                27287.4
OtherPay                  19725.39
Benefits                       NaN
TotalPay                 162885.86
TotalPayBenefits         162885.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1423, dtype: object)
(1424, Id                           1425
EmployeeName         CHARLES PERL
JobTitle               MANAGER VI
BasePay                 162857.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                162857.57
TotalPayBenefits        162857.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1424, dtype: object)
(1425, Id                           1426
EmployeeName            FANNY LEE
JobTitle               MANAGER VI
BasePay                 162857.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                162857.56
TotalPayBenefits        162857.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1425, dtype: object)
(1426, Id                                            1427
EmployeeName                        DION MCDONNELL
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                   123192.2
OvertimePay                               30298.13
OtherPay                                   9361.82
Benefits                                       NaN
TotalPay                                 162852.15
TotalPayBenefits                         162852.15
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1426, dtype: object)
(1427, Id                           1428
EmployeeName         KATHRYN JUNG
JobTitle               MANAGER VI
BasePay                 162808.88
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                162808.88
TotalPayBenefits        162808.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1427, dtype: object)
(1428, Id                                1429
EmployeeName             MICHAEL MOODY
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   24554.06
OtherPay                      25831.46
Benefits                           NaN
TotalPay                     162806.96
TotalPayBenefits             162806.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1428, dtype: object)
(1429, Id                           1430
EmployeeName        MARIA NILSSON
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              39005.39
OtherPay                 17825.42
Benefits                      NaN
TotalPay                162765.46
TotalPayBenefits        162765.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1429, dtype: object)
(1430, Id                                1431
EmployeeName          LAURIE NOBILETTE
JobTitle            NURSE PRACTITIONER
BasePay                       162514.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      162764.0
TotalPayBenefits              162764.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1430, dtype: object)
(1431, Id                                1432
EmployeeName          THOMAS WESTBROOK
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    2763.35
OtherPay                      47538.29
Benefits                           NaN
TotalPay                     162723.09
TotalPayBenefits             162723.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1431, dtype: object)
(1432, Id                                1433
EmployeeName           MANUEL ABUDA-JR
JobTitle            TRANSIT SUPERVISOR
BasePay                        89416.8
OvertimePay                   61660.88
OtherPay                      11644.54
Benefits                           NaN
TotalPay                     162722.22
TotalPayBenefits             162722.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1432, dtype: object)
(1433, Id                                       1434
EmployeeName               CHRISTINE VAN AKEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             162699.26
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            162699.26
TotalPayBenefits                    162699.26
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1433, dtype: object)
(1434, Id                                1435
EmployeeName                 HARRY LEE
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   12145.84
OtherPay                      38115.14
Benefits                           NaN
TotalPay                     162682.43
TotalPayBenefits             162682.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1434, dtype: object)
(1435, Id                                                1436
EmployeeName                            TRENIA WEARING
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      134074.15
OvertimePay                                   27608.58
OtherPay                                        948.65
Benefits                                           NaN
TotalPay                                     162631.38
TotalPayBenefits                             162631.38
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1435, dtype: object)
(1436, Id                                                1437
EmployeeName                             ROBERT STEGER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   27512.14
OtherPay                                       4624.97
Benefits                                           NaN
TotalPay                                      162618.7
TotalPayBenefits                              162618.7
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1436, dtype: object)
(1437, Id                                       1438
EmployeeName                    RICHARD MCGEE
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             146649.31
OvertimePay                               0.0
OtherPay                             15922.37
Benefits                                  NaN
TotalPay                            162571.68
TotalPayBenefits                    162571.68
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1437, dtype: object)
(1438, Id                           1439
EmployeeName           DARRYL LOO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              39262.92
OtherPay                 17364.43
Benefits                      NaN
TotalPay                162561.99
TotalPayBenefits        162561.99
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1438, dtype: object)
(1439, Id                                    1440
EmployeeName              JONATHAN HUGGINS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122007.76
OvertimePay                       25287.68
OtherPay                          15261.99
Benefits                               NaN
TotalPay                         162557.43
TotalPayBenefits                 162557.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1439, dtype: object)
(1440, Id                                                1441
EmployeeName                           STEPHEN PAULSEN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                   11872.39
OtherPay                                      20224.33
Benefits                                           NaN
TotalPay                                     162554.66
TotalPayBenefits                             162554.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1440, dtype: object)
(1441, Id                                 1442
EmployeeName             MICHELLE DURGY
JobTitle            DEPUTY DIRECTOR III
BasePay                       162527.43
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      162527.43
TotalPayBenefits              162527.43
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1441, dtype: object)
(1442, Id                                       1443
EmployeeName                    JANICE PAPEDO
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             162240.46
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            162490.46
TotalPayBenefits                    162490.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1442, dtype: object)
(1443, Id                           1444
EmployeeName        ROSALY FERRER
JobTitle            NURSE MANAGER
BasePay                  145321.6
OvertimePay                   0.0
OtherPay                 17157.03
Benefits                      NaN
TotalPay                162478.63
TotalPayBenefits        162478.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1443, dtype: object)
(1444, Id                           1445
EmployeeName          SARA CONRAD
JobTitle               PHARMACIST
BasePay                 133387.55
OvertimePay              28189.08
OtherPay                   895.26
Benefits                      NaN
TotalPay                162471.89
TotalPayBenefits        162471.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1444, dtype: object)
(1445, Id                                 1446
EmployeeName        FRANCIS VALLESTEROS
JobTitle               REGISTERED NURSE
BasePay                       123921.07
OvertimePay                    14954.69
OtherPay                        23572.8
Benefits                            NaN
TotalPay                      162448.56
TotalPayBenefits              162448.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1445, dtype: object)
(1446, Id                                      1447
EmployeeName                 MARGARET DIVINE
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           162441.06
TotalPayBenefits                   162441.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1446, dtype: object)
(1447, Id                                      1448
EmployeeName                XENOPHON DAVIDIS
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           162441.03
TotalPayBenefits                   162441.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1447, dtype: object)
(1448, Id                                      1449
EmployeeName                   JOSEPH BIRRER
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           162441.03
TotalPayBenefits                   162441.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1448, dtype: object)
(1449, Id                                      1450
EmployeeName                  BENJAMIN LEUNG
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           162441.01
TotalPayBenefits                   162441.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1449, dtype: object)
(1450, Id                                      1451
EmployeeName                     NORMAN CHAN
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            162441.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           162441.01
TotalPayBenefits                   162441.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1450, dtype: object)
(1451, Id                                      1452
EmployeeName                    AMIR KOLEINI
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                             162441.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            162441.0
TotalPayBenefits                    162441.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1451, dtype: object)
(1452, Id                                1453
EmployeeName           JEFFREY SCHMIDT
JobTitle            NURSING SUPERVISOR
BasePay                      157858.05
OvertimePay                        0.0
OtherPay                       4570.77
Benefits                           NaN
TotalPay                     162428.82
TotalPayBenefits             162428.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1452, dtype: object)
(1453, Id                           1454
EmployeeName             JOHN YEE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              36751.61
OtherPay                 19706.49
Benefits                      NaN
TotalPay                162392.75
TotalPayBenefits        162392.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1453, dtype: object)
(1454, Id                                1455
EmployeeName               STEVEN MAES
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   28437.14
OtherPay                      21492.18
Benefits                           NaN
TotalPay                     162350.76
TotalPayBenefits             162350.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1454, dtype: object)
(1455, Id                                    1456
EmployeeName                 MICHAEL SIMON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       31990.05
OtherPay                           7933.51
Benefits                               NaN
TotalPay                         162328.55
TotalPayBenefits                 162328.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1455, dtype: object)
(1456, Id                                                1457
EmployeeName                           JOSEPH MCFADDEN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149045.04
OvertimePay                                   10371.82
OtherPay                                       2910.47
Benefits                                           NaN
TotalPay                                     162327.33
TotalPayBenefits                             162327.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1456, dtype: object)
(1457, Id                           1458
EmployeeName           RONALD LAU
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              39036.89
OtherPay                 17351.26
Benefits                      NaN
TotalPay                162322.82
TotalPayBenefits        162322.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1457, dtype: object)
(1458, Id                                                1459
EmployeeName                           KEVIN WHITFIELD
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.55
OvertimePay                                   21374.34
OtherPay                                      10465.24
Benefits                                           NaN
TotalPay                                     162321.13
TotalPayBenefits                             162321.13
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1458, dtype: object)
(1459, Id                              1460
EmployeeName        RAMON BARRETO JR
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 36024.66
OtherPay                    20341.79
Benefits                         NaN
TotalPay                   162301.12
TotalPayBenefits           162301.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1459, dtype: object)
(1460, Id                                              1461
EmployeeName                          MICHELLE CRAIG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.39
OvertimePay                                 26997.19
OtherPay                                     4786.04
Benefits                                         NaN
TotalPay                                   162259.62
TotalPayBenefits                           162259.62
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1460, dtype: object)
(1461, Id                              1462
EmployeeName           NELIA BASANES
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  8846.13
OtherPay                    26369.31
Benefits                         NaN
TotalPay                   162199.44
TotalPayBenefits           162199.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1461, dtype: object)
(1462, Id                              1463
EmployeeName           EVELYN FERRER
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   8791.2
OtherPay                    26415.41
Benefits                         NaN
TotalPay                   162190.61
TotalPayBenefits           162190.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1462, dtype: object)
(1463, Id                                                1464
EmployeeName                            STEPHEN MURPHY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                   17022.68
OtherPay                                      14697.87
Benefits                                           NaN
TotalPay                                     162178.51
TotalPayBenefits                             162178.51
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1463, dtype: object)
(1464, Id                               1465
EmployeeName               THOMAS LEE
JobTitle            POLICE OFFICER II
BasePay                     101345.76
OvertimePay                   25911.4
OtherPay                     34916.62
Benefits                          NaN
TotalPay                    162173.78
TotalPayBenefits            162173.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1464, dtype: object)
(1465, Id                              1466
EmployeeName        ARNOLD DIGNADICE
JobTitle               NURSE MANAGER
BasePay                     151554.0
OvertimePay                      0.0
OtherPay                    10608.78
Benefits                         NaN
TotalPay                   162162.78
TotalPayBenefits           162162.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1465, dtype: object)
(1466, Id                               1467
EmployeeName         RICHARD O'REILLY
JobTitle            POLICE OFFICER II
BasePay                      114937.1
OvertimePay                  13579.72
OtherPay                     33619.53
Benefits                          NaN
TotalPay                    162136.35
TotalPayBenefits            162136.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1466, dtype: object)
(1467, Id                                  1468
EmployeeName            ALISA OBERSCHELP
JobTitle            PHYSICIAN SPECIALIST
BasePay                        158087.51
OvertimePay                          0.0
OtherPay                         4048.67
Benefits                             NaN
TotalPay                       162136.18
TotalPayBenefits               162136.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1467, dtype: object)
(1468, Id                                                1469
EmployeeName                              FRANKLIN LEE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       62712.06
OvertimePay                                   27744.77
OtherPay                                      71656.45
Benefits                                           NaN
TotalPay                                     162113.28
TotalPayBenefits                             162113.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1468, dtype: object)
(1469, Id                               1470
EmployeeName        CLAUDIO RIVIECCIO
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                  38431.22
OtherPay                     17734.28
Benefits                          NaN
TotalPay                    162100.15
TotalPayBenefits            162100.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1469, dtype: object)
(1470, Id                                1471
EmployeeName              ALEX RODATOS
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   42249.54
OtherPay                        7403.2
Benefits                           NaN
TotalPay                     162074.17
TotalPayBenefits             162074.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1470, dtype: object)
(1471, Id                                   1472
EmployeeName                   ANDRE KURY
JobTitle            MAINTENANCE MACHINIST
BasePay                          75291.37
OvertimePay                      77109.94
OtherPay                          9667.69
Benefits                              NaN
TotalPay                         162069.0
TotalPayBenefits                 162069.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 1471, dtype: object)
(1472, Id                                            1473
EmployeeName                        CHARLES ROWLES
JobTitle            TRANSMISSION LINE SUPERVISOR I
BasePay                                   97758.37
OvertimePay                                4190.08
OtherPay                                  60046.38
Benefits                                       NaN
TotalPay                                 161994.83
TotalPayBenefits                         161994.83
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1472, dtype: object)
(1473, Id                                       1474
EmployeeName            ROSE-ELLEN FAIRGRIEVE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             158751.73
OvertimePay                               0.0
OtherPay                              3175.82
Benefits                                  NaN
TotalPay                            161927.55
TotalPayBenefits                    161927.55
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1473, dtype: object)
(1474, Id                                              1475
EmployeeName                            ALEX TAKAOKA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                  9901.34
OtherPay                                    21530.54
Benefits                                         NaN
TotalPay                                   161913.39
TotalPayBenefits                           161913.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1474, dtype: object)
(1475, Id                             1476
EmployeeName        SUSAN DEMARTINI
JobTitle                FIREFIGHTER
BasePay                    78100.39
OvertimePay                21259.97
OtherPay                   62488.59
Benefits                        NaN
TotalPay                  161848.95
TotalPayBenefits          161848.95
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1475, dtype: object)
(1476, Id                                              1477
EmployeeName                          DAVID HAMILTON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.87
OvertimePay                                 29381.19
OtherPay                                     1900.57
Benefits                                         NaN
TotalPay                                   161739.63
TotalPayBenefits                           161739.63
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1476, dtype: object)
(1477, Id                                1478
EmployeeName           RANDALL SOO-HOO
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                    9157.83
OtherPay                      40149.71
Benefits                           NaN
TotalPay                     161728.95
TotalPayBenefits             161728.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1477, dtype: object)
(1478, Id                                                1479
EmployeeName                               JOHN GERATY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       149023.9
OvertimePay                                        0.0
OtherPay                                      12702.02
Benefits                                           NaN
TotalPay                                     161725.92
TotalPayBenefits                             161725.92
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1478, dtype: object)
(1479, Id                                                1480
EmployeeName                           GERALD SCULLION
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                       92782.63
OvertimePay                                   52252.02
OtherPay                                      16686.23
Benefits                                           NaN
TotalPay                                     161720.88
TotalPayBenefits                             161720.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1479, dtype: object)
(1480, Id                                         1481
EmployeeName                   JENNIFER MATHEWS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            22863.67
OtherPay                               15723.68
Benefits                                    NaN
TotalPay                              161692.35
TotalPayBenefits                      161692.35
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1480, dtype: object)
(1481, Id                                    1482
EmployeeName                 KEVIN CHOCKER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       17608.45
OtherPay                          21665.46
Benefits                               NaN
TotalPay                         161678.89
TotalPayBenefits                 161678.89
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1481, dtype: object)
(1482, Id                                       1483
EmployeeName        HEATHER TANNEHILL-PLAMOND
JobTitle                  PROJECT MANAGER III
BasePay                             156916.91
OvertimePay                               0.0
OtherPay                              4733.85
Benefits                                  NaN
TotalPay                            161650.76
TotalPayBenefits                    161650.76
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1482, dtype: object)
(1483, Id                                                        1484
EmployeeName                                          LISA MOY
JobTitle            INVESTIGATOR, BUREAU OF FIRE INVESTIGATION
BasePay                                              126952.57
OvertimePay                                           10454.58
OtherPay                                              24235.48
Benefits                                                   NaN
TotalPay                                             161642.63
TotalPayBenefits                                     161642.63
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1483, dtype: object)
(1484, Id                                 1485
EmployeeName            ANGELA CALVILLO
JobTitle            DEPARTMENT HEAD III
BasePay                       161636.03
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      161636.03
TotalPayBenefits              161636.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1484, dtype: object)
(1485, Id                                1486
EmployeeName               GAIL NORMAN
JobTitle            NURSE PRACTITIONER
BasePay                      143742.18
OvertimePay                    9629.56
OtherPay                       8233.62
Benefits                           NaN
TotalPay                     161605.36
TotalPayBenefits             161605.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1485, dtype: object)
(1486, Id                                                1487
EmployeeName                           MARYANNE LOWMAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        49340.0
OvertimePay                                   23771.27
OtherPay                                      88476.88
Benefits                                           NaN
TotalPay                                     161588.15
TotalPayBenefits                             161588.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1486, dtype: object)
(1487, Id                             1488
EmployeeName        LOUISE DIMATTIO
JobTitle              NURSE MANAGER
BasePay                   150940.19
OvertimePay                     0.0
OtherPay                   10615.19
Benefits                        NaN
TotalPay                  161555.38
TotalPayBenefits          161555.38
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1487, dtype: object)
(1488, Id                           1489
EmployeeName         JAMES FEWELL
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              30207.77
OtherPay                 25393.45
Benefits                      NaN
TotalPay                161535.88
TotalPayBenefits        161535.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1488, dtype: object)
(1489, Id                               1490
EmployeeName            JOHN RUGGEIRO
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                   9443.76
OtherPay                     41750.39
Benefits                          NaN
TotalPay                    161437.08
TotalPayBenefits            161437.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1489, dtype: object)
(1490, Id                            1491
EmployeeName        JOSEPH SALLADY
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               43702.57
OtherPay                  11797.16
Benefits                       NaN
TotalPay                 161434.37
TotalPayBenefits         161434.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1490, dtype: object)
(1491, Id                                    1492
EmployeeName                 JULIE RUSSELL
JobTitle            SUPERVISING PHARMACIST
BasePay                          159737.96
OvertimePay                            0.0
OtherPay                            1650.0
Benefits                               NaN
TotalPay                         161387.96
TotalPayBenefits                 161387.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1491, dtype: object)
(1492, Id                                1493
EmployeeName            BRIAN SCHAFFER
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   16508.53
OtherPay                      32456.89
Benefits                           NaN
TotalPay                     161386.86
TotalPayBenefits             161386.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1492, dtype: object)
(1493, Id                                                               1494
EmployeeName                                          KATHLEEN HAROLD
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.08
OvertimePay                                                    650.98
OtherPay                                                     33766.97
Benefits                                                          NaN
TotalPay                                                    161386.03
TotalPayBenefits                                            161386.03
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1493, dtype: object)
(1494, Id                                       1495
EmployeeName                    MARLENA BYRNE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             161361.81
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            161361.81
TotalPayBenefits                    161361.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1494, dtype: object)
(1495, Id                              1496
EmployeeName              JOSE LOPEZ
JobTitle            POLICE OFFICER I
BasePay                    106065.17
OvertimePay                 11960.42
OtherPay                    43327.55
Benefits                         NaN
TotalPay                   161353.14
TotalPayBenefits           161353.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1495, dtype: object)
(1496, Id                             1497
EmployeeName        JULIE DEJARLAIS
JobTitle                FIREFIGHTER
BasePay                   110638.65
OvertimePay                32815.84
OtherPay                   17862.76
Benefits                        NaN
TotalPay                  161317.25
TotalPayBenefits          161317.25
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1496, dtype: object)
(1497, Id                                                1498
EmployeeName                               DOMINIC YIN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      148909.65
OvertimePay                                    9822.74
OtherPay                                       2563.88
Benefits                                           NaN
TotalPay                                     161296.27
TotalPayBenefits                             161296.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1497, dtype: object)
(1498, Id                                                1499
EmployeeName                          EDWARD SANTOS JR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.93
OvertimePay                                    4506.29
OtherPay                                       7765.49
Benefits                                           NaN
TotalPay                                     161295.71
TotalPayBenefits                             161295.71
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1498, dtype: object)
(1499, Id                                         1500
EmployeeName                    DARIUS LUTTROPP
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               135314.45
OvertimePay                             5927.55
OtherPay                               20020.93
Benefits                                    NaN
TotalPay                              161262.93
TotalPayBenefits                      161262.93
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1499, dtype: object)
(1500, Id                                               1501
EmployeeName                          JONATHAN GIVNER
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     161254.64
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    161254.64
TotalPayBenefits                            161254.64
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1500, dtype: object)
(1501, Id                                    1502
EmployeeName                    MARK JONES
JobTitle            SUPERVISING PHARMACIST
BasePay                          159737.99
OvertimePay                            0.0
OtherPay                            1500.0
Benefits                               NaN
TotalPay                         161237.99
TotalPayBenefits                 161237.99
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1501, dtype: object)
(1502, Id                           1503
EmployeeName           KEVIN KONE
JobTitle               MANAGER VI
BasePay                 161219.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                161219.01
TotalPayBenefits        161219.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1502, dtype: object)
(1503, Id                                                1504
EmployeeName                       GAETANO CALTAGIRONE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.77
OvertimePay                                    8029.59
OtherPay                                       4137.52
Benefits                                           NaN
TotalPay                                     161217.88
TotalPayBenefits                             161217.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1503, dtype: object)
(1504, Id                              1505
EmployeeName            HSINMEI CHEN
JobTitle            REGISTERED NURSE
BasePay                    127477.29
OvertimePay                  3626.36
OtherPay                    30105.51
Benefits                         NaN
TotalPay                   161209.16
TotalPayBenefits           161209.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1504, dtype: object)
(1505, Id                                                1506
EmployeeName                         CORNELIUS JOHNSON
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      146125.06
OvertimePay                                     8747.4
OtherPay                                       6327.53
Benefits                                           NaN
TotalPay                                     161199.99
TotalPayBenefits                             161199.99
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1505, dtype: object)
(1506, Id                           1507
EmployeeName         EDWARD BANKS
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              37231.07
OtherPay                 17975.98
Benefits                      NaN
TotalPay                161141.71
TotalPayBenefits        161141.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1506, dtype: object)
(1507, Id                                                1508
EmployeeName                       ROBERT JR OSULLIVAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.55
OvertimePay                                    5482.91
OtherPay                                       6599.29
Benefits                                           NaN
TotalPay                                     161132.75
TotalPayBenefits                             161132.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1507, dtype: object)
(1508, Id                                         1509
EmployeeName                     NEAL CAVELLINI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            21371.42
OtherPay                               16650.25
Benefits                                    NaN
TotalPay                              161126.67
TotalPayBenefits                      161126.67
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1508, dtype: object)
(1509, Id                                                   1510
EmployeeName                                BETH GOUDREAU
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         141621.16
OvertimePay                                       1110.45
OtherPay                                         18360.34
Benefits                                              NaN
TotalPay                                        161091.95
TotalPayBenefits                                161091.95
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1509, dtype: object)
(1510, Id                            1511
EmployeeName        PATRICIA GREEN
JobTitle             NURSE MANAGER
BasePay                   161044.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  161044.0
TotalPayBenefits          161044.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1510, dtype: object)
(1511, Id                            1512
EmployeeName        RICARDO DUARTE
JobTitle             NURSE MANAGER
BasePay                  161031.61
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 161031.61
TotalPayBenefits         161031.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1511, dtype: object)
(1512, Id                                1513
EmployeeName                  MARIA SU
JobTitle            DEPARTMENT HEAD II
BasePay                      154858.96
OvertimePay                        0.0
OtherPay                       6167.87
Benefits                           NaN
TotalPay                     161026.83
TotalPayBenefits             161026.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1512, dtype: object)
(1513, Id                               1514
EmployeeName           JAMES ARNSWALD
JobTitle            POLICE OFFICER II
BasePay                     113225.29
OvertimePay                  19975.15
OtherPay                     27801.57
Benefits                          NaN
TotalPay                    161002.01
TotalPayBenefits            161002.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1513, dtype: object)
(1514, Id                           1515
EmployeeName          SHON BUFORD
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               29025.2
OtherPay                 26021.87
Benefits                      NaN
TotalPay                160981.73
TotalPayBenefits        160981.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1514, dtype: object)
(1515, Id                                 1516
EmployeeName         MARGARET STEVENSON
JobTitle            DEPUTY DIRECTOR III
BasePay                       160928.82
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      160928.82
TotalPayBenefits              160928.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1515, dtype: object)
(1516, Id                                        1517
EmployeeName                         JON SMITH
JobTitle            ASSISTANT MEDICAL EXAMINER
BasePay                              153902.71
OvertimePay                                0.0
OtherPay                               7019.05
Benefits                                   NaN
TotalPay                             160921.76
TotalPayBenefits                     160921.76
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 1516, dtype: object)
(1517, Id                                              1518
EmployeeName                            THOMAS WATTS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.47
OvertimePay                                 22400.73
OtherPay                                     8039.47
Benefits                                         NaN
TotalPay                                   160921.67
TotalPayBenefits                           160921.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1517, dtype: object)
(1518, Id                                1519
EmployeeName               SHELLEY HOM
JobTitle            NURSE PRACTITIONER
BasePay                      159457.92
OvertimePay                        0.0
OtherPay                        1425.0
Benefits                           NaN
TotalPay                     160882.92
TotalPayBenefits             160882.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1518, dtype: object)
(1519, Id                                1520
EmployeeName           RICCI RODRIGUEZ
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                    7504.39
OtherPay                      40874.41
Benefits                           NaN
TotalPay                      160795.6
TotalPayBenefits              160795.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1519, dtype: object)
(1520, Id                           1521
EmployeeName         JOHN MURNANE
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              40475.47
OtherPay                 14363.88
Benefits                      NaN
TotalPay                160774.05
TotalPayBenefits        160774.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1520, dtype: object)
(1521, Id                                                1522
EmployeeName                             TIMOTHY PLYER
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149104.13
OvertimePay                                    6789.18
OtherPay                                       4879.59
Benefits                                           NaN
TotalPay                                      160772.9
TotalPayBenefits                              160772.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1521, dtype: object)
(1522, Id                                1523
EmployeeName             ANTRON BARRON
JobTitle            POLICE OFFICER III
BasePay                      112155.05
OvertimePay                   39692.49
OtherPay                       8888.06
Benefits                           NaN
TotalPay                      160735.6
TotalPayBenefits              160735.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1522, dtype: object)
(1523, Id                             1524
EmployeeName        CHARLES RICARDO
JobTitle                 MANAGER VI
BasePay                    160725.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   160725.5
TotalPayBenefits           160725.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1523, dtype: object)
(1524, Id                              1525
EmployeeName        DENISE PEMBERTON
JobTitle                 FIREFIGHTER
BasePay                     104154.6
OvertimePay                 41649.28
OtherPay                    14907.34
Benefits                         NaN
TotalPay                   160711.22
TotalPayBenefits           160711.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1524, dtype: object)
(1525, Id                                       1526
EmployeeName                 CHRISTINE MARTIN
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             156306.93
OvertimePay                            502.02
OtherPay                              3859.56
Benefits                                  NaN
TotalPay                            160668.51
TotalPayBenefits                    160668.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1525, dtype: object)
(1526, Id                               1527
EmployeeName        DANTE GIOVANNELLI
JobTitle             POLICE OFFICER I
BasePay                     106065.18
OvertimePay                  15781.31
OtherPay                     38819.42
Benefits                          NaN
TotalPay                    160665.91
TotalPayBenefits            160665.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1526, dtype: object)
(1527, Id                              1528
EmployeeName              REY JACALA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  7362.66
OtherPay                    26302.35
Benefits                         NaN
TotalPay                   160649.01
TotalPayBenefits           160649.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1527, dtype: object)
(1528, Id                              1529
EmployeeName         YOLANDA VALLERO
JobTitle            REGISTERED NURSE
BasePay                    126922.95
OvertimePay                   8791.2
OtherPay                    24911.77
Benefits                         NaN
TotalPay                   160625.92
TotalPayBenefits           160625.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1528, dtype: object)
(1529, Id                               1530
EmployeeName              KEVIN BYRNE
JobTitle            POLICE OFFICER II
BasePay                      109729.2
OvertimePay                  21925.24
OtherPay                     28965.15
Benefits                          NaN
TotalPay                    160619.59
TotalPayBenefits            160619.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1529, dtype: object)
(1530, Id                           1531
EmployeeName         KAREN ACOSTA
JobTitle            NURSE MANAGER
BasePay                 146006.09
OvertimePay                   0.0
OtherPay                 14600.63
Benefits                      NaN
TotalPay                160606.72
TotalPayBenefits        160606.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1530, dtype: object)
(1531, Id                                 1532
EmployeeName                BYRON RHETT
JobTitle            DEPUTY DIRECTOR III
BasePay                       160598.73
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      160598.73
TotalPayBenefits              160598.73
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1531, dtype: object)
(1532, Id                                 1533
EmployeeName               PETER DAILEY
JobTitle            DEPUTY DIRECTOR III
BasePay                       160598.72
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      160598.72
TotalPayBenefits              160598.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1532, dtype: object)
(1533, Id                                 1534
EmployeeName              THOMAS CARTER
JobTitle            DEPUTY DIRECTOR III
BasePay                       160598.71
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      160598.71
TotalPayBenefits              160598.71
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1533, dtype: object)
(1534, Id                              1535
EmployeeName        MICHAEL MAGALONG
JobTitle                 FIREFIGHTER
BasePay                    105934.69
OvertimePay                 29980.47
OtherPay                    24680.94
Benefits                         NaN
TotalPay                    160596.1
TotalPayBenefits            160596.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1534, dtype: object)
(1535, Id                           1536
EmployeeName             JOHN WON
JobTitle              FIREFIGHTER
BasePay                 115295.02
OvertimePay              30791.55
OtherPay                 14508.66
Benefits                      NaN
TotalPay                160595.23
TotalPayBenefits        160595.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1535, dtype: object)
(1536, Id                             1537
EmployeeName        THERESA FOGARTY
JobTitle                FIREFIGHTER
BasePay                   126873.14
OvertimePay                  511.56
OtherPay                   33199.08
Benefits                        NaN
TotalPay                  160583.78
TotalPayBenefits          160583.78
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1536, dtype: object)
(1537, Id                                                1538
EmployeeName                            MARK MCDONOUGH
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       49340.01
OvertimePay                                   30756.63
OtherPay                                      80440.06
Benefits                                           NaN
TotalPay                                      160536.7
TotalPayBenefits                              160536.7
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1537, dtype: object)
(1538, Id                                                   1539
EmployeeName                                 HERBERT DANG
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         130871.01
OvertimePay                                           0.0
OtherPay                                         29659.44
Benefits                                              NaN
TotalPay                                        160530.45
TotalPayBenefits                                160530.45
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1538, dtype: object)
(1539, Id                                       1540
EmployeeName               KATHERINE HATHAWAY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              160480.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             160480.9
TotalPayBenefits                     160480.9
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1539, dtype: object)
(1540, Id                                              1541
EmployeeName                            KEVIN MURRAY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                 22176.16
OtherPay                                      7814.1
Benefits                                         NaN
TotalPay                                   160471.77
TotalPayBenefits                           160471.77
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1540, dtype: object)
(1541, Id                           1542
EmployeeName            SUE BLACK
JobTitle                MANAGER V
BasePay                  160468.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 160468.7
TotalPayBenefits         160468.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1541, dtype: object)
(1542, Id                                         1543
EmployeeName                        GEORGE WONG
JobTitle            ASSISTANT CHIEF ATTORNEY II
BasePay                               107690.63
OvertimePay                                 0.0
OtherPay                                52762.5
Benefits                                    NaN
TotalPay                              160453.13
TotalPayBenefits                      160453.13
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1542, dtype: object)
(1543, Id                           1544
EmployeeName          CARL BARNES
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              36221.51
OtherPay                 18289.41
Benefits                      NaN
TotalPay                160445.56
TotalPayBenefits        160445.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1543, dtype: object)
(1544, Id                                    1545
EmployeeName               DANIEL BECKWITH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          132474.12
OvertimePay                       18629.17
OtherPay                           9333.84
Benefits                               NaN
TotalPay                         160437.13
TotalPayBenefits                 160437.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1544, dtype: object)
(1545, Id                                                            1546
EmployeeName                                       TERRIE WILLIAMS
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  160415.66
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 160415.66
TotalPayBenefits                                         160415.66
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 1545, dtype: object)
(1546, Id                                                1547
EmployeeName                                 ALVIN YEE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149990.75
OvertimePay                                    7368.26
OtherPay                                       3056.16
Benefits                                           NaN
TotalPay                                     160415.17
TotalPayBenefits                             160415.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1546, dtype: object)
(1547, Id                                    1548
EmployeeName                JEFFREY COVITZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          127969.56
OvertimePay                       22014.16
OtherPay                          10400.02
Benefits                               NaN
TotalPay                         160383.74
TotalPayBenefits                 160383.74
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1547, dtype: object)
(1548, Id                                    1549
EmployeeName              RICHARD WENDLAND
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       23897.35
OtherPay                          14055.78
Benefits                               NaN
TotalPay                         160358.12
TotalPayBenefits                 160358.12
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1548, dtype: object)
(1549, Id                           1550
EmployeeName         SIULAGI SALA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              37086.47
OtherPay                 17305.98
Benefits                      NaN
TotalPay                160327.11
TotalPayBenefits        160327.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1549, dtype: object)
(1550, Id                                    1551
EmployeeName               BERNARD MAGUIRE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       23674.87
OtherPay                          14189.67
Benefits                               NaN
TotalPay                         160269.53
TotalPayBenefits                 160269.53
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1550, dtype: object)
(1551, Id                           1552
EmployeeName        JOSE CISNEROS
JobTitle                TREASURER
BasePay                 160257.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                160257.08
TotalPayBenefits        160257.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1551, dtype: object)
(1552, Id                                1553
EmployeeName              MEGHAN WHITE
JobTitle            NURSE PRACTITIONER
BasePay                      146186.13
OvertimePay                    5044.44
OtherPay                       9024.61
Benefits                           NaN
TotalPay                     160255.18
TotalPayBenefits             160255.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1552, dtype: object)
(1553, Id                                1554
EmployeeName            RUTH ARMSTRONG
JobTitle            NURSE PRACTITIONER
BasePay                      147766.97
OvertimePay                    8141.55
OtherPay                       4299.82
Benefits                           NaN
TotalPay                     160208.34
TotalPayBenefits             160208.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1553, dtype: object)
(1554, Id                                1555
EmployeeName           ARMANDO MARACHA
JobTitle            POLICE OFFICER III
BasePay                      111499.51
OvertimePay                   12068.14
OtherPay                      36620.48
Benefits                           NaN
TotalPay                     160188.13
TotalPayBenefits             160188.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1554, dtype: object)
(1555, Id                                         1556
EmployeeName                      JIRO YAMAMOTO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               120798.63
OvertimePay                            24298.56
OtherPay                               15076.89
Benefits                                    NaN
TotalPay                              160174.08
TotalPayBenefits                      160174.08
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1555, dtype: object)
(1556, Id                                                1557
EmployeeName                          LOPE AVARICIO JR
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   74019.99
OtherPay                                       8495.82
Benefits                                           NaN
TotalPay                                     160096.21
TotalPayBenefits                             160096.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1556, dtype: object)
(1557, Id                                1558
EmployeeName                TONII CATO
JobTitle            POLICE OFFICER III
BasePay                       110880.9
OvertimePay                    4928.66
OtherPay                      44283.61
Benefits                           NaN
TotalPay                     160093.17
TotalPayBenefits             160093.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1557, dtype: object)
(1558, Id                              1559
EmployeeName           VICTOR FRENCH
JobTitle            REGISTERED NURSE
BasePay                    121916.96
OvertimePay                 11935.96
OtherPay                    26226.99
Benefits                         NaN
TotalPay                   160079.91
TotalPayBenefits           160079.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1558, dtype: object)
(1559, Id                              1560
EmployeeName        MELCHOR PICARDAL
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 37752.52
OtherPay                    16386.98
Benefits                         NaN
TotalPay                   160074.15
TotalPayBenefits           160074.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1559, dtype: object)
(1560, Id                                       1561
EmployeeName                  STEPHEN CASSIDY
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                               31848.0
OvertimePay                          31140.37
OtherPay                             97031.05
Benefits                                  NaN
TotalPay                            160019.42
TotalPayBenefits                    160019.42
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1560, dtype: object)
(1561, Id                                                1562
EmployeeName                            COLLEEN FATOOH
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      143467.09
OvertimePay                                     7816.3
OtherPay                                       8691.36
Benefits                                           NaN
TotalPay                                     159974.75
TotalPayBenefits                             159974.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1561, dtype: object)
(1562, Id                                1563
EmployeeName               NANCY LEWIS
JobTitle            NURSE PRACTITIONER
BasePay                      159457.99
OvertimePay                        0.0
OtherPay                        508.75
Benefits                           NaN
TotalPay                     159966.74
TotalPayBenefits             159966.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1562, dtype: object)
(1563, Id                                         1564
EmployeeName                        GORDON JUAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               139079.51
OvertimePay                                 0.0
OtherPay                               20861.96
Benefits                                    NaN
TotalPay                              159941.47
TotalPayBenefits                      159941.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1563, dtype: object)
(1564, Id                                       1565
EmployeeName                     JONATHAN LOW
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              140546.9
OvertimePay                           3949.88
OtherPay                             15437.67
Benefits                                  NaN
TotalPay                            159934.45
TotalPayBenefits                    159934.45
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1564, dtype: object)
(1565, Id                                              1566
EmployeeName                          ROBERT BOHANAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                  7419.47
OtherPay                                    22032.86
Benefits                                         NaN
TotalPay                                   159933.89
TotalPayBenefits                           159933.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1565, dtype: object)
(1566, Id                                          1567
EmployeeName                     JOHN APPLEGARTH
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                157396.59
OvertimePay                                  0.0
OtherPay                                 2525.49
Benefits                                     NaN
TotalPay                               159922.08
TotalPayBenefits                       159922.08
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 1566, dtype: object)
(1567, Id                           1568
EmployeeName          DAVID SAITZ
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              32071.14
OtherPay                 21904.08
Benefits                      NaN
TotalPay                159909.89
TotalPayBenefits        159909.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1567, dtype: object)
(1568, Id                            1569
EmployeeName        NOEL BARRANTES
JobTitle            DEPUTY SHERIFF
BasePay                   86756.61
OvertimePay               68004.76
OtherPay                   5112.76
Benefits                       NaN
TotalPay                 159874.13
TotalPayBenefits         159874.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1568, dtype: object)
(1569, Id                           1570
EmployeeName          CHRIS SALAS
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              36462.79
OtherPay                 17473.46
Benefits                      NaN
TotalPay                159870.93
TotalPayBenefits        159870.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1569, dtype: object)
(1570, Id                                     1571
EmployeeName        VALERIE STEPHENSON-BOYD
JobTitle                        FIREFIGHTER
BasePay                           104987.85
OvertimePay                        48182.51
OtherPay                             6682.2
Benefits                                NaN
TotalPay                          159852.56
TotalPayBenefits                  159852.56
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1570, dtype: object)
(1571, Id                              1572
EmployeeName         RAVINDER AULAKH
JobTitle            REGISTERED NURSE
BasePay                     124968.0
OvertimePay                  8687.52
OtherPay                    26183.56
Benefits                         NaN
TotalPay                   159839.08
TotalPayBenefits           159839.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1571, dtype: object)
(1572, Id                                                1573
EmployeeName                          TIMOTHY OBERZEIR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       149044.9
OvertimePay                                    5117.89
OtherPay                                       5660.14
Benefits                                           NaN
TotalPay                                     159822.93
TotalPayBenefits                             159822.93
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1572, dtype: object)
(1573, Id                                                1574
EmployeeName                                 STEVE LIN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       70670.96
OvertimePay                                   62098.79
OtherPay                                      27047.79
Benefits                                           NaN
TotalPay                                     159817.54
TotalPayBenefits                             159817.54
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1573, dtype: object)
(1574, Id                                                1575
EmployeeName                             JEFFREY LEVIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    9257.55
OtherPay                                      20090.47
Benefits                                           NaN
TotalPay                                     159805.96
TotalPayBenefits                             159805.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1574, dtype: object)
(1575, Id                                             1576
EmployeeName                          ANDREW MEEHAN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128170.22
OvertimePay                                17717.63
OtherPay                                   13918.02
Benefits                                        NaN
TotalPay                                  159805.87
TotalPayBenefits                          159805.87
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 1575, dtype: object)
(1576, Id                                       1577
EmployeeName                  SCOTT DARMSTADT
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.02
OvertimePay                          19027.03
OtherPay                             13556.06
Benefits                                  NaN
TotalPay                            159786.11
TotalPayBenefits                    159786.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1576, dtype: object)
(1577, Id                           1578
EmployeeName        ADRIENNE SIMS
JobTitle              FIREFIGHTER
BasePay                 105857.35
OvertimePay              38135.73
OtherPay                 15791.02
Benefits                      NaN
TotalPay                 159784.1
TotalPayBenefits         159784.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1577, dtype: object)
(1578, Id                                          1579
EmployeeName                  WINONA MINDOLOVICH
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                157532.89
OvertimePay                                  0.0
OtherPay                                 2231.46
Benefits                                     NaN
TotalPay                               159764.35
TotalPayBenefits                       159764.35
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 1578, dtype: object)
(1579, Id                           1580
EmployeeName         DAVID LESTER
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              35928.44
OtherPay                 17868.59
Benefits                      NaN
TotalPay                159731.66
TotalPayBenefits        159731.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1579, dtype: object)
(1580, Id                           1581
EmployeeName         JEREMY SILVA
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              36223.91
OtherPay                 17565.13
Benefits                      NaN
TotalPay                159723.69
TotalPayBenefits        159723.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1580, dtype: object)
(1581, Id                                1582
EmployeeName         DOROTHY CHRISTIAN
JobTitle            NURSE PRACTITIONER
BasePay                      159457.99
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     159707.99
TotalPayBenefits             159707.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1581, dtype: object)
(1582, Id                                1583
EmployeeName          MEREDITH FLORIAN
JobTitle            NURSE PRACTITIONER
BasePay                      159457.98
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     159707.98
TotalPayBenefits             159707.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1582, dtype: object)
(1583, Id                                1584
EmployeeName              MICHAEL HARA
JobTitle            POLICE OFFICER III
BasePay                      111890.05
OvertimePay                   20662.03
OtherPay                      27145.56
Benefits                           NaN
TotalPay                     159697.64
TotalPayBenefits             159697.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1583, dtype: object)
(1584, Id                                1585
EmployeeName              GEORGE PEREZ
JobTitle            POLICE OFFICER III
BasePay                      112421.49
OvertimePay                   12583.72
OtherPay                      34690.96
Benefits                           NaN
TotalPay                     159696.17
TotalPayBenefits             159696.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1584, dtype: object)
(1585, Id                                         1586
EmployeeName                          JOEL SATO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               140433.05
OvertimePay                            10028.89
OtherPay                                 9226.3
Benefits                                    NaN
TotalPay                              159688.24
TotalPayBenefits                      159688.24
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1585, dtype: object)
(1586, Id                                1587
EmployeeName           ERIC CARACCIOLO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   11294.21
OtherPay                      35992.15
Benefits                           NaN
TotalPay                     159687.44
TotalPayBenefits             159687.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1586, dtype: object)
(1587, Id                           1588
EmployeeName           CARLOS HOY
JobTitle              FIREFIGHTER
BasePay                 105253.26
OvertimePay              35585.84
OtherPay                 18832.44
Benefits                      NaN
TotalPay                159671.54
TotalPayBenefits        159671.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1587, dtype: object)
(1588, Id                                       1589
EmployeeName                       PIERA WONG
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             159406.01
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            159656.01
TotalPayBenefits                    159656.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1588, dtype: object)
(1589, Id                                       1590
EmployeeName                    LUIS BELICENA
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              159406.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                             159656.0
TotalPayBenefits                     159656.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1589, dtype: object)
(1590, Id                                              1591
EmployeeName                           RICHARD ERNST
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.59
OvertimePay                                 13471.01
OtherPay                                    15687.71
Benefits                                         NaN
TotalPay                                   159640.31
TotalPayBenefits                           159640.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1590, dtype: object)
(1591, Id                                                1592
EmployeeName                            JASON CHERNISS
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.24
OvertimePay                                    4271.63
OtherPay                                        6275.6
Benefits                                           NaN
TotalPay                                     159597.47
TotalPayBenefits                             159597.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1591, dtype: object)
(1592, Id                                         1593
EmployeeName                       KYLE MERKINS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            11589.81
OtherPay                               24863.19
Benefits                                    NaN
TotalPay                              159557.99
TotalPayBenefits                      159557.99
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1592, dtype: object)
(1593, Id                                         1594
EmployeeName                    STEPHANIE COHEN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               159128.42
OvertimePay                                 0.0
OtherPay                                  408.8
Benefits                                    NaN
TotalPay                              159537.22
TotalPayBenefits                      159537.22
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1593, dtype: object)
(1594, Id                                              1595
EmployeeName                        ARLIN VANDERBILT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                  23750.0
OtherPay                                     5279.02
Benefits                                         NaN
TotalPay                                   159486.96
TotalPayBenefits                           159486.96
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1594, dtype: object)
(1595, Id                           1596
EmployeeName          LORGE QUANT
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              35955.13
OtherPay                 17568.58
Benefits                      NaN
TotalPay                159458.36
TotalPayBenefits        159458.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1595, dtype: object)
(1596, Id                                                1597
EmployeeName                              DAVID FALZON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130457.9
OvertimePay                                   27371.96
OtherPay                                       1577.55
Benefits                                           NaN
TotalPay                                     159407.41
TotalPayBenefits                             159407.41
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1596, dtype: object)
(1597, Id                            1598
EmployeeName           DWIGHT HALL
JobTitle            DEPUTY SHERIFF
BasePay                   86249.25
OvertimePay               62010.44
OtherPay                  11146.19
Benefits                       NaN
TotalPay                 159405.88
TotalPayBenefits         159405.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1597, dtype: object)
(1598, Id                                                1599
EmployeeName                           NARDA GILLESPIE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.92
OvertimePay                                   19437.51
OtherPay                                       9510.09
Benefits                                           NaN
TotalPay                                     159405.52
TotalPayBenefits                             159405.52
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1598, dtype: object)
(1599, Id                                       1600
EmployeeName                  SUSAN CHRISTIAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             159402.37
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            159402.37
TotalPayBenefits                    159402.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1599, dtype: object)
(1600, Id                                                1601
EmployeeName                            J DEFILIPPO JR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149033.91
OvertimePay                                    8527.94
OtherPay                                       1811.62
Benefits                                           NaN
TotalPay                                     159373.47
TotalPayBenefits                             159373.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1600, dtype: object)
(1601, Id                           1602
EmployeeName         JAMES KOTTER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              31763.39
OtherPay                 21658.76
Benefits                      NaN
TotalPay                159356.81
TotalPayBenefits        159356.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1601, dtype: object)
(1602, Id                                1603
EmployeeName                CHANH TRAN
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   63414.81
OtherPay                        5847.1
Benefits                           NaN
TotalPay                     159356.11
TotalPayBenefits             159356.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1602, dtype: object)
(1603, Id                               1604
EmployeeName            MICHAEL TURSI
JobTitle            POLICE OFFICER II
BasePay                     106125.77
OvertimePay                  24894.01
OtherPay                     28335.63
Benefits                          NaN
TotalPay                    159355.41
TotalPayBenefits            159355.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1603, dtype: object)
(1604, Id                                1605
EmployeeName              JOHN PAI JR.
JobTitle            POLICE OFFICER III
BasePay                       112401.1
OvertimePay                    4590.88
OtherPay                      42346.91
Benefits                           NaN
TotalPay                     159338.89
TotalPayBenefits             159338.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1604, dtype: object)
(1605, Id                              1606
EmployeeName         NELSON RAMOS-JR
JobTitle            POLICE OFFICER I
BasePay                    106065.16
OvertimePay                 14721.43
OtherPay                    38550.68
Benefits                         NaN
TotalPay                   159337.27
TotalPayBenefits           159337.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1605, dtype: object)
(1606, Id                                1607
EmployeeName          MARSHELL MCGEHEE
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                   66113.15
OtherPay                       4142.03
Benefits                           NaN
TotalPay                     159333.28
TotalPayBenefits             159333.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1606, dtype: object)
(1607, Id                                1608
EmployeeName             SHIRLEY BANKS
JobTitle            NURSE PRACTITIONER
BasePay                      159057.05
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     159307.05
TotalPayBenefits             159307.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1607, dtype: object)
(1608, Id                                                1609
EmployeeName                           STEVE VALLOTTON
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                       86332.15
OvertimePay                                   61747.92
OtherPay                                      11149.37
Benefits                                           NaN
TotalPay                                     159229.44
TotalPayBenefits                             159229.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1608, dtype: object)
(1609, Id                                                1610
EmployeeName                            LEONARDO OSIAS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   73539.45
OtherPay                                       8085.15
Benefits                                           NaN
TotalPay                                      159193.6
TotalPayBenefits                              159193.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1609, dtype: object)
(1610, Id                                1611
EmployeeName          STEVE HILDEBRAND
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   38948.78
OtherPay                       7818.05
Benefits                           NaN
TotalPay                     159167.91
TotalPayBenefits             159167.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1610, dtype: object)
(1611, Id                                                1612
EmployeeName                           RICHARD QUESADA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.75
OvertimePay                                        0.0
OtherPay                                      10074.61
Benefits                                           NaN
TotalPay                                     159125.36
TotalPayBenefits                             159125.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1611, dtype: object)
(1612, Id                                       1613
EmployeeName                     STEPHEN OLMO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             159117.85
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            159117.85
TotalPayBenefits                    159117.85
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1612, dtype: object)
(1613, Id                                                   1614
EmployeeName                           SALVATORE TAORMINA
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.92
OvertimePay                                       4164.46
OtherPay                                         14373.91
Benefits                                              NaN
TotalPay                                        159085.29
TotalPayBenefits                                159085.29
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1613, dtype: object)
(1614, Id                                    1615
EmployeeName                  TINA SEIBERT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       21399.68
OtherPay                          15277.83
Benefits                               NaN
TotalPay                          159082.5
TotalPayBenefits                  159082.5
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1614, dtype: object)
(1615, Id                                1616
EmployeeName              ARTHUR GABAC
JobTitle            POLICE OFFICER III
BasePay                      117303.52
OvertimePay                    9530.74
OtherPay                       32245.9
Benefits                           NaN
TotalPay                     159080.16
TotalPayBenefits             159080.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1615, dtype: object)
(1616, Id                           1617
EmployeeName            JOHN CABA
JobTitle              FIREFIGHTER
BasePay                 110806.97
OvertimePay              22595.95
OtherPay                  25667.2
Benefits                      NaN
TotalPay                159070.12
TotalPayBenefits        159070.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1616, dtype: object)
(1617, Id                                1618
EmployeeName              MARY HANSELL
JobTitle            NURSING SUPERVISOR
BasePay                       144582.9
OvertimePay                        0.0
OtherPay                      14458.29
Benefits                           NaN
TotalPay                     159041.19
TotalPayBenefits             159041.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1617, dtype: object)
(1618, Id                                              1619
EmployeeName                             EDDIE HAGAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 15137.51
OtherPay                                    13400.13
Benefits                                         NaN
TotalPay                                   159019.19
TotalPayBenefits                           159019.19
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1618, dtype: object)
(1619, Id                              1620
EmployeeName        DOUGLAS MANGUIAT
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                  35774.4
OtherPay                     17242.6
Benefits                         NaN
TotalPay                   158951.65
TotalPayBenefits           158951.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1619, dtype: object)
(1620, Id                                1621
EmployeeName           MICHAEL MONTERO
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   16626.65
OtherPay                      29861.53
Benefits                           NaN
TotalPay                     158909.63
TotalPayBenefits             158909.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1620, dtype: object)
(1621, Id                                    1622
EmployeeName               MICHAEL FERRARA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       20948.38
OtherPay                          15551.52
Benefits                               NaN
TotalPay                         158904.88
TotalPayBenefits                 158904.88
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1621, dtype: object)
(1622, Id                                              1623
EmployeeName                        JOSEPH MCCLOSKEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                 10634.12
OtherPay                                    17763.73
Benefits                                         NaN
TotalPay                                   158879.39
TotalPayBenefits                           158879.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1622, dtype: object)
(1623, Id                                       1624
EmployeeName                     JON DEL BINO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140546.88
OvertimePay                           2093.32
OtherPay                             16217.31
Benefits                                  NaN
TotalPay                            158857.51
TotalPayBenefits                    158857.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1623, dtype: object)
(1624, Id                                1625
EmployeeName                CLIFF CHIU
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   14012.31
OtherPay                      32387.62
Benefits                           NaN
TotalPay                     158821.38
TotalPayBenefits             158821.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1624, dtype: object)
(1625, Id                                   1626
EmployeeName        MORGEN ELIZABETHCHILD
JobTitle                    NURSE MANAGER
BasePay                         151553.96
OvertimePay                           0.0
OtherPay                          7257.48
Benefits                              NaN
TotalPay                        158811.44
TotalPayBenefits                158811.44
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 1625, dtype: object)
(1626, Id                                         1627
EmployeeName                       JEFFREY WONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               140433.05
OvertimePay                             9824.32
OtherPay                                8547.74
Benefits                                    NaN
TotalPay                              158805.11
TotalPayBenefits                      158805.11
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1626, dtype: object)
(1627, Id                                    1628
EmployeeName                   RAYMOND LEE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          104661.67
OvertimePay                       47392.94
OtherPay                           6741.46
Benefits                               NaN
TotalPay                         158796.07
TotalPayBenefits                 158796.07
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1627, dtype: object)
(1628, Id                                         1629
EmployeeName                     PAMELA SWEDLOW
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               151174.24
OvertimePay                                 0.0
OtherPay                                 7559.0
Benefits                                    NaN
TotalPay                              158733.24
TotalPayBenefits                      158733.24
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1628, dtype: object)
(1629, Id                           1630
EmployeeName        GAVIN MARCONI
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              41133.85
OtherPay                 11661.57
Benefits                      NaN
TotalPay                158730.06
TotalPayBenefits        158730.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1629, dtype: object)
(1630, Id                                1631
EmployeeName              ALLYN LUENOW
JobTitle            POLICE OFFICER III
BasePay                        44390.4
OvertimePay                   38987.25
OtherPay                      75335.48
Benefits                           NaN
TotalPay                     158713.13
TotalPayBenefits             158713.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1630, dtype: object)
(1631, Id                                              1632
EmployeeName                           MARTHA JUAREZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  7656.77
OtherPay                                    20595.39
Benefits                                         NaN
TotalPay                                   158710.07
TotalPayBenefits                           158710.07
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1631, dtype: object)
(1632, Id                           1633
EmployeeName        DAVID RUSSELL
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               36091.1
OtherPay                 16663.26
Benefits                      NaN
TotalPay                158689.02
TotalPayBenefits        158689.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1632, dtype: object)
(1633, Id                                                1634
EmployeeName                           PHILIP SECONDEZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   70358.67
OtherPay                                      10729.54
Benefits                                           NaN
TotalPay                                     158668.61
TotalPayBenefits                             158668.61
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1633, dtype: object)
(1634, Id                                                1635
EmployeeName                              ROBERT MOSER
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       149023.2
OvertimePay                                    8181.75
OtherPay                                       1437.17
Benefits                                           NaN
TotalPay                                     158642.12
TotalPayBenefits                             158642.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1634, dtype: object)
(1635, Id                              1636
EmployeeName         CATHERINE CHUKU
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  7032.96
OtherPay                     24623.6
Benefits                         NaN
TotalPay                   158640.56
TotalPayBenefits           158640.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1635, dtype: object)
(1636, Id                                                1637
EmployeeName                             THOMAS FELEDY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      148969.96
OvertimePay                                    3782.18
OtherPay                                       5881.85
Benefits                                           NaN
TotalPay                                     158633.99
TotalPayBenefits                             158633.99
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1636, dtype: object)
(1637, Id                                         1638
EmployeeName                   DOMINIC OTTOBONI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            13398.78
OtherPay                               22082.96
Benefits                                    NaN
TotalPay                              158586.74
TotalPayBenefits                      158586.74
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1637, dtype: object)
(1638, Id                                                1639
EmployeeName                                MICHAEL LA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    74434.5
OtherPay                                        6570.0
Benefits                                           NaN
TotalPay                                      158584.9
TotalPayBenefits                              158584.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1638, dtype: object)
(1639, Id                           1640
EmployeeName          NEAL JAYMES
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               37774.3
OtherPay                 14866.78
Benefits                      NaN
TotalPay                158575.76
TotalPayBenefits        158575.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1639, dtype: object)
(1640, Id                             1641
EmployeeName           CLIFTON WONG
JobTitle            SENIOR ENGINEER
BasePay                   140002.84
OvertimePay                     0.0
OtherPay                   18572.43
Benefits                        NaN
TotalPay                  158575.27
TotalPayBenefits          158575.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1640, dtype: object)
(1641, Id                                1642
EmployeeName           CAROL TANIGUCHI
JobTitle            NURSE PRACTITIONER
BasePay                      156483.22
OvertimePay                        0.0
OtherPay                       2074.28
Benefits                           NaN
TotalPay                      158557.5
TotalPayBenefits              158557.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1641, dtype: object)
(1642, Id                                              1643
EmployeeName                            JASON SAWYER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.29
OvertimePay                                 15768.02
OtherPay                                    12342.87
Benefits                                         NaN
TotalPay                                   158545.18
TotalPayBenefits                           158545.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1642, dtype: object)
(1643, Id                                    1644
EmployeeName                 REGINA MORLEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       24473.67
OtherPay                          11661.38
Benefits                               NaN
TotalPay                         158540.05
TotalPayBenefits                 158540.05
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1643, dtype: object)
(1644, Id                                                               1645
EmployeeName                                           TOD STEPHENSON
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     138878.88
OvertimePay                                                       0.0
OtherPay                                                     19659.29
Benefits                                                          NaN
TotalPay                                                    158538.17
TotalPayBenefits                                            158538.17
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1644, dtype: object)
(1645, Id                                1646
EmployeeName              DONNA KOTAKE
JobTitle            DEPUTY DIRECTOR II
BasePay                      152503.34
OvertimePay                        0.0
OtherPay                        6000.0
Benefits                           NaN
TotalPay                     158503.34
TotalPayBenefits             158503.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1645, dtype: object)
(1646, Id                               1647
EmployeeName          LEONARD CALDERA
JobTitle            POLICE OFFICER II
BasePay                     110242.88
OvertimePay                  18490.87
OtherPay                     29768.34
Benefits                          NaN
TotalPay                    158502.09
TotalPayBenefits            158502.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1646, dtype: object)
(1647, Id                           1648
EmployeeName         GEORGE SMITH
JobTitle              FIREFIGHTER
BasePay                 109942.38
OvertimePay              26762.96
OtherPay                 21773.14
Benefits                      NaN
TotalPay                158478.48
TotalPayBenefits        158478.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1647, dtype: object)
(1648, Id                                         1649
EmployeeName                      ANGELA ROMERO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               134807.11
OvertimePay                             6504.52
OtherPay                               17161.21
Benefits                                    NaN
TotalPay                              158472.84
TotalPayBenefits                      158472.84
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1648, dtype: object)
(1649, Id                           1650
EmployeeName          JOSEPH BEAM
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              34395.53
OtherPay                 18109.28
Benefits                      NaN
TotalPay                158439.45
TotalPayBenefits        158439.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1649, dtype: object)
(1650, Id                              1651
EmployeeName          MARGARITA HILL
JobTitle            REGISTERED NURSE
BasePay                    127431.51
OvertimePay                  5274.72
OtherPay                    25711.65
Benefits                         NaN
TotalPay                   158417.88
TotalPayBenefits           158417.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1650, dtype: object)
(1651, Id                                1652
EmployeeName                 SUK CHUNG
JobTitle            NURSE PRACTITIONER
BasePay                      153334.65
OvertimePay                    1115.44
OtherPay                       3964.43
Benefits                           NaN
TotalPay                     158414.52
TotalPayBenefits             158414.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1651, dtype: object)
(1652, Id                                                         1653
EmployeeName                                      TIMOTHY KIELY
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130505.21
OvertimePay                                            15958.09
OtherPay                                               11938.69
Benefits                                                    NaN
TotalPay                                              158401.99
TotalPayBenefits                                      158401.99
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 1652, dtype: object)
(1653, Id                               1654
EmployeeName        ALEXANDER UNTALAN
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                  41627.96
OtherPay                     10798.05
Benefits                          NaN
TotalPay                    158360.66
TotalPayBenefits            158360.66
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1653, dtype: object)
(1654, Id                                         1655
EmployeeName                        BRETT EVART
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                               117646.08
OvertimePay                            26028.61
OtherPay                               14684.31
Benefits                                    NaN
TotalPay                               158359.0
TotalPayBenefits                       158359.0
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1654, dtype: object)
(1655, Id                           1656
EmployeeName              JOE LUI
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              33215.27
OtherPay                 19207.94
Benefits                      NaN
TotalPay                158357.86
TotalPayBenefits        158357.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1655, dtype: object)
(1656, Id                              1657
EmployeeName               PERRY LAW
JobTitle            TRAIN CONTROLLER
BasePay                    100281.13
OvertimePay                 46751.33
OtherPay                    11314.12
Benefits                         NaN
TotalPay                   158346.58
TotalPayBenefits           158346.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1656, dtype: object)
(1657, Id                           1658
EmployeeName        LESLIE HOLPIT
JobTitle            NURSE MANAGER
BasePay                 143947.09
OvertimePay                   0.0
OtherPay                 14394.88
Benefits                      NaN
TotalPay                158341.97
TotalPayBenefits        158341.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1657, dtype: object)
(1658, Id                                              1659
EmployeeName                        MICHAEL NEVIN JR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                  8118.33
OtherPay                                     19741.7
Benefits                                         NaN
TotalPay                                   158341.57
TotalPayBenefits                           158341.57
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1658, dtype: object)
(1659, Id                                                1660
EmployeeName                              PETER P X LI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77287.11
OvertimePay                                    73972.5
OtherPay                                       7066.14
Benefits                                           NaN
TotalPay                                     158325.75
TotalPayBenefits                             158325.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1659, dtype: object)
(1660, Id                           1661
EmployeeName             IVY FINE
JobTitle               MANAGER VI
BasePay                 153323.83
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                158323.83
TotalPayBenefits        158323.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1660, dtype: object)
(1661, Id                                1662
EmployeeName            LUCRETIA BOLIN
JobTitle            NURSE PRACTITIONER
BasePay                       144789.7
OvertimePay                    3970.94
OtherPay                       9549.36
Benefits                           NaN
TotalPay                      158310.0
TotalPayBenefits              158310.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1661, dtype: object)
(1662, Id                             1663
EmployeeName        TERRI ELLENBERG
JobTitle              NURSE MANAGER
BasePay                   150504.25
OvertimePay                     0.0
OtherPay                    7799.52
Benefits                        NaN
TotalPay                  158303.77
TotalPayBenefits          158303.77
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1662, dtype: object)
(1663, Id                                1664
EmployeeName               JOSE PUBILL
JobTitle            POLICE OFFICER III
BasePay                      117283.23
OvertimePay                   19660.76
OtherPay                      21357.48
Benefits                           NaN
TotalPay                     158301.47
TotalPayBenefits             158301.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1663, dtype: object)
(1664, Id                                     1665
EmployeeName                  BAQIR HUSSAIN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.56
OvertimePay                             0.0
OtherPay                           30618.05
Benefits                                NaN
TotalPay                          158295.61
TotalPayBenefits                  158295.61
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1664, dtype: object)
(1665, Id                                    1666
EmployeeName          CHRISTOPHER HEUERMAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       19808.82
OtherPay                          16080.38
Benefits                               NaN
TotalPay                         158294.19
TotalPayBenefits                 158294.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1665, dtype: object)
(1666, Id                                             1667
EmployeeName                            LUKE MARTIN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128123.98
OvertimePay                                16580.06
OtherPay                                   13576.49
Benefits                                        NaN
TotalPay                                  158280.53
TotalPayBenefits                          158280.53
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 1666, dtype: object)
(1667, Id                                                1668
EmployeeName                               JAMES GRANT
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   70959.92
OtherPay                                        9655.0
Benefits                                           NaN
TotalPay                                     158195.32
TotalPayBenefits                             158195.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1667, dtype: object)
(1668, Id                                              1669
EmployeeName                              TRACY BOES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.52
OvertimePay                                  5904.92
OtherPay                                    21771.14
Benefits                                         NaN
TotalPay                                   158157.58
TotalPayBenefits                           158157.58
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1668, dtype: object)
(1669, Id                                                1670
EmployeeName                             JOSEPH TOOMEY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        9867.93
OvertimePay                                   62600.83
OtherPay                                      85688.69
Benefits                                           NaN
TotalPay                                     158157.45
TotalPayBenefits                             158157.45
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1669, dtype: object)
(1670, Id                                         1671
EmployeeName                         JOHN GRANT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             19596.2
OtherPay                               15427.61
Benefits                                    NaN
TotalPay                              158128.81
TotalPayBenefits                      158128.81
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1670, dtype: object)
(1671, Id                              1672
EmployeeName        STEPHEN GONZALES
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                 31760.54
OtherPay                    20405.88
Benefits                         NaN
TotalPay                    158101.1
TotalPayBenefits            158101.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1671, dtype: object)
(1672, Id                                1673
EmployeeName          ALEJANDRO CORTES
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   29602.86
OtherPay                      16055.79
Benefits                           NaN
TotalPay                     158080.07
TotalPayBenefits             158080.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1672, dtype: object)
(1673, Id                                1674
EmployeeName             COLLEEN BALES
JobTitle            NURSE PRACTITIONER
BasePay                      156391.44
OvertimePay                     115.76
OtherPay                       1563.26
Benefits                           NaN
TotalPay                     158070.46
TotalPayBenefits             158070.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1673, dtype: object)
(1674, Id                                              1675
EmployeeName                           MARINA CHACON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.52
OvertimePay                                 11076.92
OtherPay                                    16484.82
Benefits                                         NaN
TotalPay                                   158043.26
TotalPayBenefits                           158043.26
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1674, dtype: object)
(1675, Id                                1676
EmployeeName               RYAN CROSBY
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   10419.37
OtherPay                      35194.21
Benefits                           NaN
TotalPay                     158014.65
TotalPayBenefits             158014.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1675, dtype: object)
(1676, Id                                                1677
EmployeeName                               JULIAN HILL
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.75
OvertimePay                                    4606.55
OtherPay                                        4337.7
Benefits                                           NaN
TotalPay                                      157995.0
TotalPayBenefits                              157995.0
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1676, dtype: object)
(1677, Id                                1678
EmployeeName               JAMES TRAIL
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    40569.1
OtherPay                       5001.12
Benefits                           NaN
TotalPay                     157991.66
TotalPayBenefits             157991.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1677, dtype: object)
(1678, Id                                           1679
EmployeeName                         WILLIAM GUNN
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                 107144.76
OvertimePay                                708.76
OtherPay                                 50097.98
Benefits                                      NaN
TotalPay                                 157951.5
TotalPayBenefits                         157951.5
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 1678, dtype: object)
(1679, Id                              1680
EmployeeName          GLORIA CORNEJO
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   8532.0
OtherPay                     26177.8
Benefits                         NaN
TotalPay                    157949.8
TotalPayBenefits            157949.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1679, dtype: object)
(1680, Id                                1681
EmployeeName              RENE AREVALO
JobTitle            TRANSIT SUPERVISOR
BasePay                       90094.21
OvertimePay                   67042.02
OtherPay                        802.15
Benefits                           NaN
TotalPay                     157938.38
TotalPayBenefits             157938.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1680, dtype: object)
(1681, Id                                1682
EmployeeName              JAMES PINEDA
JobTitle            SHERIFF'S SERGEANT
BasePay                       98906.26
OvertimePay                   48063.88
OtherPay                      10951.64
Benefits                           NaN
TotalPay                     157921.78
TotalPayBenefits             157921.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1681, dtype: object)
(1682, Id                              1683
EmployeeName        CELERINA HERRERA
JobTitle            REGISTERED NURSE
BasePay                     126617.7
OvertimePay                  5274.72
OtherPay                    26027.77
Benefits                         NaN
TotalPay                   157920.19
TotalPayBenefits           157920.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1682, dtype: object)
(1683, Id                              1684
EmployeeName        ELIZABETH JACOBI
JobTitle                   MANAGER V
BasePay                    145891.45
OvertimePay                      0.0
OtherPay                     12000.0
Benefits                         NaN
TotalPay                   157891.45
TotalPayBenefits           157891.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1683, dtype: object)
(1684, Id                                         1685
EmployeeName                       DAVID RITTER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            20476.95
OtherPay                               14306.83
Benefits                                    NaN
TotalPay                              157888.78
TotalPayBenefits                      157888.78
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1684, dtype: object)
(1685, Id                                1686
EmployeeName           MICHAEL PEREGOY
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   39857.76
OtherPay                       5599.91
Benefits                           NaN
TotalPay                     157879.13
TotalPayBenefits             157879.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1685, dtype: object)
(1686, Id                                         1687
EmployeeName               WALTER VILLAVICENCIO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                             18285.6
OtherPay                               16464.73
Benefits                                    NaN
TotalPay                              157855.35
TotalPayBenefits                      157855.35
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1686, dtype: object)
(1687, Id                             1688
EmployeeName        LEONARDO HARRIS
JobTitle                FIREFIGHTER
BasePay                   102578.76
OvertimePay                38973.14
OtherPay                   16247.86
Benefits                        NaN
TotalPay                  157799.76
TotalPayBenefits          157799.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1687, dtype: object)
(1688, Id                                                1689
EmployeeName                              ROBERT LYNCH
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.78
OvertimePay                                   12451.87
OtherPay                                      14876.12
Benefits                                           NaN
TotalPay                                     157794.77
TotalPayBenefits                             157794.77
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1688, dtype: object)
(1689, Id                                1690
EmployeeName             DORETHA CROSS
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                    58352.5
OtherPay                       9327.46
Benefits                           NaN
TotalPay                     157774.16
TotalPayBenefits             157774.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1689, dtype: object)
(1690, Id                                       1691
EmployeeName                       ANITA WOOD
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             157714.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            157714.54
TotalPayBenefits                    157714.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1690, dtype: object)
(1691, Id                                 1692
EmployeeName                 SUSAN POFF
JobTitle            PHYSICIAN ASSISTANT
BasePay                       157709.99
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      157709.99
TotalPayBenefits              157709.99
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1691, dtype: object)
(1692, Id                                1693
EmployeeName           CARMELO DANGELO
JobTitle            POLICE OFFICER III
BasePay                      117303.66
OvertimePay                   18969.48
OtherPay                      21404.66
Benefits                           NaN
TotalPay                      157677.8
TotalPayBenefits              157677.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1692, dtype: object)
(1693, Id                                   1694
EmployeeName                    JOE GAUCI
JobTitle            MAINTENANCE MACHINIST
BasePay                          71499.38
OvertimePay                      78531.85
OtherPay                          7645.74
Benefits                              NaN
TotalPay                        157676.97
TotalPayBenefits                157676.97
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 1693, dtype: object)
(1694, Id                              1695
EmployeeName          EVELYN MENDOZA
JobTitle            REGISTERED NURSE
BasePay                     120396.0
OvertimePay                 15250.95
OtherPay                    22028.13
Benefits                         NaN
TotalPay                   157675.08
TotalPayBenefits           157675.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1694, dtype: object)
(1695, Id                                                1696
EmployeeName                             JOSEPH CORDES
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149024.01
OvertimePay                                    4810.65
OtherPay                                       3804.31
Benefits                                           NaN
TotalPay                                     157638.97
TotalPayBenefits                             157638.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1695, dtype: object)
(1696, Id                                       1697
EmployeeName                   REBECCA WAGNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             157633.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            157633.02
TotalPayBenefits                    157633.02
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1696, dtype: object)
(1697, Id                           1698
EmployeeName          EDWARD AMIT
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              43665.13
OtherPay                  8006.75
Benefits                      NaN
TotalPay                157606.53
TotalPayBenefits        157606.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1697, dtype: object)
(1698, Id                             1699
EmployeeName        MICHAEL DIETZEN
JobTitle                FIREFIGHTER
BasePay                    96546.12
OvertimePay                45646.93
OtherPay                   15405.66
Benefits                        NaN
TotalPay                  157598.71
TotalPayBenefits          157598.71
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1698, dtype: object)
(1699, Id                                    1700
EmployeeName                KEITH PHILLIPS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       24259.03
OtherPay                          10924.78
Benefits                               NaN
TotalPay                         157588.81
TotalPayBenefits                 157588.81
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1699, dtype: object)
(1700, Id                            1701
EmployeeName        MICHAEL MARTIN
JobTitle               MANAGER VII
BasePay                  157539.97
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 157539.97
TotalPayBenefits         157539.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1700, dtype: object)
(1701, Id                             1702
EmployeeName        MAURICE CASTAIN
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                34095.34
OtherPay                   17501.99
Benefits                        NaN
TotalPay                  157531.98
TotalPayBenefits          157531.98
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1701, dtype: object)
(1702, Id                                1703
EmployeeName             DINO ZOGRAFOS
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   21066.33
OtherPay                      24057.29
Benefits                           NaN
TotalPay                     157504.33
TotalPayBenefits             157504.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1702, dtype: object)
(1703, Id                                1704
EmployeeName              LARRY PORTER
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   59854.97
OtherPay                       9583.63
Benefits                           NaN
TotalPay                      157500.6
TotalPayBenefits              157500.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1703, dtype: object)
(1704, Id                                1705
EmployeeName            STEVIE BACOLOT
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   10897.55
OtherPay                      34166.22
Benefits                           NaN
TotalPay                     157485.22
TotalPayBenefits             157485.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1704, dtype: object)
(1705, Id                                         1706
EmployeeName                      KEVIN PARDINI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            15273.94
OtherPay                                19083.6
Benefits                                    NaN
TotalPay                              157462.57
TotalPayBenefits                      157462.57
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1705, dtype: object)
(1706, Id                           1707
EmployeeName         BRUCE MARTIN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              34728.66
OtherPay                 16781.42
Benefits                      NaN
TotalPay                157444.76
TotalPayBenefits        157444.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1706, dtype: object)
(1707, Id                                         1708
EmployeeName                        MARC KASPER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                122665.5
OvertimePay                            26190.06
OtherPay                                8580.32
Benefits                                    NaN
TotalPay                              157435.88
TotalPayBenefits                      157435.88
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1707, dtype: object)
(1708, Id                           1709
EmployeeName              JAY LEE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              36641.91
OtherPay                 14854.46
Benefits                      NaN
TotalPay                157431.05
TotalPayBenefits        157431.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1708, dtype: object)
(1709, Id                                    1710
EmployeeName                      AL GARZA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       20368.79
OtherPay                          14654.72
Benefits                               NaN
TotalPay                         157428.51
TotalPayBenefits                 157428.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1709, dtype: object)
(1710, Id                               1711
EmployeeName           RICHARD ARAUJO
JobTitle            POLICE OFFICER II
BasePay                     108058.92
OvertimePay                    4364.6
OtherPay                     45001.52
Benefits                          NaN
TotalPay                    157425.04
TotalPayBenefits            157425.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1710, dtype: object)
(1711, Id                                                   1712
EmployeeName                              FREDERICK SALAN
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         140546.88
OvertimePay                                           0.0
OtherPay                                         16827.88
Benefits                                              NaN
TotalPay                                        157374.76
TotalPayBenefits                                157374.76
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1711, dtype: object)
(1712, Id                                                    1713
EmployeeName                                 JAMES CRISOLO
JobTitle            CHIEF DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                          148448.51
OvertimePay                                            0.0
OtherPay                                           8907.44
Benefits                                               NaN
TotalPay                                         157355.95
TotalPayBenefits                                 157355.95
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 1712, dtype: object)
(1713, Id                                    1714
EmployeeName                  DANIEL CASEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       17983.07
OtherPay                          16925.21
Benefits                               NaN
TotalPay                         157313.26
TotalPayBenefits                 157313.26
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1713, dtype: object)
(1714, Id                                         1715
EmployeeName                           JOE CHAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            18609.57
OtherPay                               15549.02
Benefits                                    NaN
TotalPay                              157263.58
TotalPayBenefits                      157263.58
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1714, dtype: object)
(1715, Id                                1716
EmployeeName            MICHAEL AMODEO
JobTitle            NURSE PRACTITIONER
BasePay                      157004.78
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     157254.78
TotalPayBenefits             157254.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1715, dtype: object)
(1716, Id                                              1717
EmployeeName                         JOSHUA PHILLIPS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.22
OvertimePay                                  7772.98
OtherPay                                    18964.45
Benefits                                         NaN
TotalPay                                   157242.65
TotalPayBenefits                           157242.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1716, dtype: object)
(1717, Id                           1718
EmployeeName          HARALD SIMS
JobTitle            NURSE MANAGER
BasePay                 150126.33
OvertimePay                546.46
OtherPay                  6568.37
Benefits                      NaN
TotalPay                157241.16
TotalPayBenefits        157241.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1717, dtype: object)
(1718, Id                                    1719
EmployeeName            KATHLEEN GILBRAITH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       19364.94
OtherPay                          15447.85
Benefits                               NaN
TotalPay                         157217.79
TotalPayBenefits                 157217.79
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1718, dtype: object)
(1719, Id                                                1720
EmployeeName                                 MAUNG GYI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   71725.36
OtherPay                                        7911.9
Benefits                                           NaN
TotalPay                                     157217.66
TotalPayBenefits                             157217.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1719, dtype: object)
(1720, Id                           1721
EmployeeName        GILLIAN OTWAY
JobTitle            NURSE MANAGER
BasePay                 142922.01
OvertimePay                   0.0
OtherPay                  14292.4
Benefits                      NaN
TotalPay                157214.41
TotalPayBenefits        157214.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1720, dtype: object)
(1721, Id                                1722
EmployeeName              JOELLE FELIX
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   18866.84
OtherPay                      25905.23
Benefits                           NaN
TotalPay                     157193.51
TotalPayBenefits             157193.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1721, dtype: object)
(1722, Id                                  1723
EmployeeName        ANASTASIOS MAVROUDIS
JobTitle                        ENGINEER
BasePay                        157181.85
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       157181.85
TotalPayBenefits               157181.85
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1722, dtype: object)
(1723, Id                             1724
EmployeeName             JIMMY CHIU
JobTitle            SENIOR ENGINEER
BasePay                   156118.23
OvertimePay                     0.0
OtherPay                     1063.6
Benefits                        NaN
TotalPay                  157181.83
TotalPayBenefits          157181.83
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1723, dtype: object)
(1724, Id                                1725
EmployeeName             TRISCILA CAEL
JobTitle            ASSOCIATE ENGINEER
BasePay                      157181.83
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     157181.83
TotalPayBenefits             157181.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1724, dtype: object)
(1725, Id                                                  1726
EmployeeName                             JUDITH MOSQUEDA
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                        153934.83
OvertimePay                                          0.0
OtherPay                                          3247.0
Benefits                                             NaN
TotalPay                                       157181.83
TotalPayBenefits                               157181.83
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 1725, dtype: object)
(1726, Id                                1727
EmployeeName                BESSIE TAM
JobTitle            ASSOCIATE ENGINEER
BasePay                      155049.82
OvertimePay                        0.0
OtherPay                        2132.0
Benefits                           NaN
TotalPay                     157181.82
TotalPayBenefits             157181.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1726, dtype: object)
(1727, Id                             1728
EmployeeName            SAED TOLOUI
JobTitle            SENIOR ENGINEER
BasePay                   157181.82
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  157181.82
TotalPayBenefits          157181.82
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1727, dtype: object)
(1728, Id                           1729
EmployeeName        JIGNESH DESAI
JobTitle                 ENGINEER
BasePay                 155049.82
OvertimePay                   0.0
OtherPay                   2132.0
Benefits                      NaN
TotalPay                157181.82
TotalPayBenefits        157181.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1728, dtype: object)
(1729, Id                           1730
EmployeeName          CALVIN HUEY
JobTitle                 ENGINEER
BasePay                 157181.82
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                157181.82
TotalPayBenefits        157181.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1729, dtype: object)
(1730, Id                                 1731
EmployeeName               DAVID TSZTOO
JobTitle            PROJECT MANAGER III
BasePay                       157181.82
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      157181.82
TotalPayBenefits              157181.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1730, dtype: object)
(1731, Id                                        1732
EmployeeName                    BROOK MEBRAHTU
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                              157181.81
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             157181.81
TotalPayBenefits                     157181.81
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 1731, dtype: object)
(1732, Id                                 1733
EmployeeName               JOSEPH ORTIZ
JobTitle            PROJECT MANAGER III
BasePay                       157181.81
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      157181.81
TotalPayBenefits              157181.81
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1732, dtype: object)
(1733, Id                           1734
EmployeeName           RAMON KONG
JobTitle                 ENGINEER
BasePay                  157181.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 157181.8
TotalPayBenefits         157181.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1733, dtype: object)
(1734, Id                                 1735
EmployeeName            RAVI KRISHNAIAH
JobTitle            PROJECT MANAGER III
BasePay                        157181.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       157181.8
TotalPayBenefits               157181.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1734, dtype: object)
(1735, Id                                 1736
EmployeeName                  DAN MAUER
JobTitle            LANDSCAPE ARCHITECT
BasePay                        157181.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       157181.8
TotalPayBenefits               157181.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1735, dtype: object)
(1736, Id                              1737
EmployeeName        KIMBER VON BLOHN
JobTitle                    ENGINEER
BasePay                    157181.44
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   157181.44
TotalPayBenefits           157181.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1736, dtype: object)
(1737, Id                           1738
EmployeeName            LENA CHEN
JobTitle                ARCHITECT
BasePay                 157177.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                157177.01
TotalPayBenefits        157177.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1737, dtype: object)
(1738, Id                                       1739
EmployeeName                 MICHAEL COCHRANE
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.02
OvertimePay                           11884.7
OtherPay                             18075.55
Benefits                                  NaN
TotalPay                            157163.27
TotalPayBenefits                    157163.27
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1738, dtype: object)
(1739, Id                              1740
EmployeeName        ELIZABETH DAYRIT
JobTitle               NURSE MANAGER
BasePay                    142843.99
OvertimePay                      0.0
OtherPay                    14284.37
Benefits                         NaN
TotalPay                   157128.36
TotalPayBenefits           157128.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1739, dtype: object)
(1740, Id                                              1741
EmployeeName                               HUGH HALL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  9752.31
OtherPay                                     16891.3
Benefits                                         NaN
TotalPay                                   157125.14
TotalPayBenefits                           157125.14
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1740, dtype: object)
(1741, Id                                1742
EmployeeName            JEFFREY ALOISE
JobTitle            POLICE OFFICER III
BasePay                      112421.47
OvertimePay                   37518.82
OtherPay                       7164.59
Benefits                           NaN
TotalPay                     157104.88
TotalPayBenefits             157104.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1741, dtype: object)
(1742, Id                                1743
EmployeeName            JULIA GALLETLY
JobTitle            NURSE PRACTITIONER
BasePay                       149274.7
OvertimePay                    3202.91
OtherPay                       4603.86
Benefits                           NaN
TotalPay                     157081.47
TotalPayBenefits             157081.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1742, dtype: object)
(1743, Id                              1744
EmployeeName        TERESITA POBLETE
JobTitle            REGISTERED NURSE
BasePay                     125274.6
OvertimePay                  9462.75
OtherPay                    22343.98
Benefits                         NaN
TotalPay                   157081.33
TotalPayBenefits           157081.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1743, dtype: object)
(1744, Id                            1745
EmployeeName        JOHN HERNANDEZ
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               29782.46
OtherPay                  21344.88
Benefits                       NaN
TotalPay                 157061.98
TotalPayBenefits         157061.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1744, dtype: object)
(1745, Id                                 1746
EmployeeName                  PHAT PHAN
JobTitle            STATIONARY ENGINEER
BasePay                        72410.16
OvertimePay                    71106.68
OtherPay                       13528.17
Benefits                            NaN
TotalPay                      157045.01
TotalPayBenefits              157045.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1745, dtype: object)
(1746, Id                               1747
EmployeeName                 VIEN LAM
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                  12850.54
OtherPay                     33947.15
Benefits                          NaN
TotalPay                    157040.63
TotalPayBenefits            157040.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1746, dtype: object)
(1747, Id                                    1748
EmployeeName                MIKAEL BAYLESS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       19155.21
OtherPay                          15463.34
Benefits                               NaN
TotalPay                         157023.54
TotalPayBenefits                 157023.54
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1747, dtype: object)
(1748, Id                                1749
EmployeeName             LANAIR HAYNES
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                   67731.55
OtherPay                         184.6
Benefits                           NaN
TotalPay                     156994.25
TotalPayBenefits             156994.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1748, dtype: object)
(1749, Id                                1750
EmployeeName             JOSEPH GARCIA
JobTitle            PLUMBING INSPECTOR
BasePay                       101268.3
OvertimePay                   10558.54
OtherPay                      45160.58
Benefits                           NaN
TotalPay                     156987.42
TotalPayBenefits             156987.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1749, dtype: object)
(1750, Id                           1751
EmployeeName          JORGE SOLIS
JobTitle            NURSE MANAGER
BasePay                 156236.85
OvertimePay                   0.0
OtherPay                    735.0
Benefits                      NaN
TotalPay                156971.85
TotalPayBenefits        156971.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1750, dtype: object)
(1751, Id                                                1752
EmployeeName                            MICHAEL CLEARY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       149044.7
OvertimePay                                     3531.7
OtherPay                                       4389.78
Benefits                                           NaN
TotalPay                                     156966.18
TotalPayBenefits                             156966.18
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1751, dtype: object)
(1752, Id                                1753
EmployeeName             GREGORY PITTS
JobTitle            TRANSIT SUPERVISOR
BasePay                       75109.37
OvertimePay                   78645.12
OtherPay                       3188.03
Benefits                           NaN
TotalPay                     156942.52
TotalPayBenefits             156942.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1752, dtype: object)
(1753, Id                               1754
EmployeeName        LISSETTE WATERMAN
JobTitle                NURSE MANAGER
BasePay                     155957.13
OvertimePay                       0.0
OtherPay                       967.88
Benefits                          NaN
TotalPay                    156925.01
TotalPayBenefits            156925.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1753, dtype: object)
(1754, Id                           1755
EmployeeName         BRUCE SAMSON
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              40553.27
OtherPay                 10430.16
Benefits                      NaN
TotalPay                 156918.1
TotalPayBenefits         156918.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1754, dtype: object)
(1755, Id                                              1756
EmployeeName                        NICHOLAS CHORLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 17578.32
OtherPay                                     8853.23
Benefits                                         NaN
TotalPay                                    156913.1
TotalPayBenefits                            156913.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1755, dtype: object)
(1756, Id                                                1757
EmployeeName                             GEORGE NAZZAL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.41
OvertimePay                                   16400.86
OtherPay                                      10020.93
Benefits                                           NaN
TotalPay                                      156898.2
TotalPayBenefits                              156898.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1756, dtype: object)
(1757, Id                                1758
EmployeeName            JOSEPH SALAZAR
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   25135.94
OtherPay                      19337.19
Benefits                           NaN
TotalPay                     156894.56
TotalPayBenefits             156894.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1757, dtype: object)
(1758, Id                                         1759
EmployeeName                      CRISTEO REYES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             17188.3
OtherPay                               16572.68
Benefits                                    NaN
TotalPay                              156865.97
TotalPayBenefits                      156865.97
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1758, dtype: object)
(1759, Id                           1760
EmployeeName        DAVID CRESPIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               34824.5
OtherPay                 16059.24
Benefits                      NaN
TotalPay                 156818.4
TotalPayBenefits         156818.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1759, dtype: object)
(1760, Id                                              1761
EmployeeName                         JOSHUA ESPINOZA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.43
OvertimePay                                  9591.07
OtherPay                                    16713.52
Benefits                                         NaN
TotalPay                                   156786.02
TotalPayBenefits                           156786.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1760, dtype: object)
(1761, Id                           1762
EmployeeName         REUBEN RAMOS
JobTitle              FIREFIGHTER
BasePay                 110638.63
OvertimePay              30365.93
OtherPay                 15739.13
Benefits                      NaN
TotalPay                156743.69
TotalPayBenefits        156743.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1761, dtype: object)
(1762, Id                                                1763
EmployeeName                             SYLVIA MORROW
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.55
OvertimePay                                    8290.62
OtherPay                                      17965.62
Benefits                                           NaN
TotalPay                                     156737.79
TotalPayBenefits                             156737.79
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1762, dtype: object)
(1763, Id                                    1764
EmployeeName                JASON REICHARD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       19050.61
OtherPay                          15277.83
Benefits                               NaN
TotalPay                         156733.42
TotalPayBenefits                 156733.42
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1763, dtype: object)
(1764, Id                                   1765
EmployeeName          MICHAEL BOROVINA-JR
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                      52848.14
OtherPay                          7622.81
Benefits                              NaN
TotalPay                        156722.97
TotalPayBenefits                156722.97
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 1764, dtype: object)
(1765, Id                                    1766
EmployeeName                 RICHARD NOLAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                       20126.38
OtherPay                          14189.69
Benefits                               NaN
TotalPay                         156721.03
TotalPayBenefits                 156721.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1765, dtype: object)
(1766, Id                           1767
EmployeeName          RICK FIGARI
JobTitle              FIREFIGHTER
BasePay                 103385.86
OvertimePay              37025.21
OtherPay                 16300.89
Benefits                      NaN
TotalPay                156711.96
TotalPayBenefits        156711.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1766, dtype: object)
(1767, Id                                                1768
EmployeeName                           ELAINE ECONOMUS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   11520.09
OtherPay                                      14700.26
Benefits                                           NaN
TotalPay                                     156701.94
TotalPayBenefits                             156701.94
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1767, dtype: object)
(1768, Id                                    1769
EmployeeName                BAOTRAM NGUYEN
JobTitle            SUPERVISING PHARMACIST
BasePay                          156693.69
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                         156693.69
TotalPayBenefits                 156693.69
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1768, dtype: object)
(1769, Id                                1770
EmployeeName                JORDAN HOM
JobTitle            POLICE OFFICER III
BasePay                      117303.66
OvertimePay                   13690.58
OtherPay                      25677.89
Benefits                           NaN
TotalPay                     156672.13
TotalPayBenefits             156672.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1769, dtype: object)
(1770, Id                              1771
EmployeeName         EVELYN DELAPENA
JobTitle            REGISTERED NURSE
BasePay                    126922.95
OvertimePay                  6007.32
OtherPay                    23735.92
Benefits                         NaN
TotalPay                   156666.19
TotalPayBenefits           156666.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1770, dtype: object)
(1771, Id                                       1772
EmployeeName                    RUDY GUAJARDO
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             140203.28
OvertimePay                           4186.64
OtherPay                             12271.74
Benefits                                  NaN
TotalPay                            156661.66
TotalPayBenefits                    156661.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1771, dtype: object)
(1772, Id                                1773
EmployeeName         DANIELLE BERTHOLD
JobTitle            NURSE PRACTITIONER
BasePay                      143553.65
OvertimePay                    3666.57
OtherPay                       9419.57
Benefits                           NaN
TotalPay                     156639.79
TotalPayBenefits             156639.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1772, dtype: object)
(1773, Id                               1774
EmployeeName        KATHRYN CARDINALE
JobTitle                  FIREFIGHTER
BasePay                     115295.01
OvertimePay                  29870.13
OtherPay                     11452.85
Benefits                          NaN
TotalPay                    156617.99
TotalPayBenefits            156617.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1773, dtype: object)
(1774, Id                                              1775
EmployeeName                              SUSAN REED
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                  4738.24
OtherPay                                    21388.71
Benefits                                         NaN
TotalPay                                   156584.89
TotalPayBenefits                           156584.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1774, dtype: object)
(1775, Id                                              1776
EmployeeName                             PETER DACRE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  4365.48
OtherPay                                    21756.17
Benefits                                         NaN
TotalPay                                    156579.6
TotalPayBenefits                            156579.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1775, dtype: object)
(1776, Id                                    1777
EmployeeName                  JARED KUNKEL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       18882.41
OtherPay                          15277.83
Benefits                               NaN
TotalPay                         156565.23
TotalPayBenefits                 156565.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1776, dtype: object)
(1777, Id                                                1778
EmployeeName                             MILANDA MOORE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.72
OvertimePay                                    3170.82
OtherPay                                       4334.91
Benefits                                           NaN
TotalPay                                     156556.45
TotalPayBenefits                             156556.45
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1777, dtype: object)
(1778, Id                                1779
EmployeeName           CYNTHIA JOHNSON
JobTitle            NURSE PRACTITIONER
BasePay                      153782.06
OvertimePay                        0.0
OtherPay                       2763.54
Benefits                           NaN
TotalPay                      156545.6
TotalPayBenefits              156545.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1778, dtype: object)
(1779, Id                                1780
EmployeeName             KEVIN OMALLEY
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   25504.93
OtherPay                      18608.36
Benefits                           NaN
TotalPay                     156534.71
TotalPayBenefits             156534.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1779, dtype: object)
(1780, Id                                              1781
EmployeeName                         MATTHEW RODGERS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                 10121.36
OtherPay                                    15930.96
Benefits                                         NaN
TotalPay                                   156533.89
TotalPayBenefits                           156533.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1780, dtype: object)
(1781, Id                                         1782
EmployeeName                    MICHAEL MALONEY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            20417.02
OtherPay                               12997.54
Benefits                                    NaN
TotalPay                              156519.58
TotalPayBenefits                      156519.58
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1781, dtype: object)
(1782, Id                              1783
EmployeeName        RICHARD ESPINOZA
JobTitle                 FIREFIGHTER
BasePay                    105934.64
OvertimePay                 32857.03
OtherPay                    17724.84
Benefits                         NaN
TotalPay                   156516.51
TotalPayBenefits           156516.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1782, dtype: object)
(1783, Id                           1784
EmployeeName          KEVIN WALSH
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              36004.73
OtherPay                 14574.88
Benefits                      NaN
TotalPay                156514.28
TotalPayBenefits        156514.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1783, dtype: object)
(1784, Id                                         1785
EmployeeName                       DAVID SMILEY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               120988.29
OvertimePay                            23233.24
OtherPay                               12284.68
Benefits                                    NaN
TotalPay                              156506.21
TotalPayBenefits                      156506.21
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1784, dtype: object)
(1785, Id                                 1786
EmployeeName                 MILTON GEE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73659.64
OvertimePay                    55999.77
OtherPay                       26845.34
Benefits                            NaN
TotalPay                      156504.75
TotalPayBenefits              156504.75
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1785, dtype: object)
(1786, Id                             1787
EmployeeName        WALTER CALCAGNO
JobTitle                 MANAGER VI
BasePay                   156493.88
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  156493.88
TotalPayBenefits          156493.88
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1786, dtype: object)
(1787, Id                               1788
EmployeeName        ERLINDA DELA CRUZ
JobTitle             REGISTERED NURSE
BasePay                      126984.0
OvertimePay                    4395.6
OtherPay                     25080.25
Benefits                          NaN
TotalPay                    156459.85
TotalPayBenefits            156459.85
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1787, dtype: object)
(1788, Id                                 1789
EmployeeName        DALISAY TAYO-SAMONI
JobTitle             NURSE PRACTITIONER
BasePay                       154673.71
OvertimePay                         0.0
OtherPay                        1766.74
Benefits                            NaN
TotalPay                      156440.45
TotalPayBenefits              156440.45
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1788, dtype: object)
(1789, Id                                                1790
EmployeeName                           SIMON SILVERMAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.02
OvertimePay                                    4259.64
OtherPay                                       3119.02
Benefits                                           NaN
TotalPay                                     156428.68
TotalPayBenefits                             156428.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1789, dtype: object)
(1790, Id                                              1791
EmployeeName                          ROBERT DANIELE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.21
OvertimePay                                  7863.32
OtherPay                                    18058.84
Benefits                                         NaN
TotalPay                                   156427.37
TotalPayBenefits                           156427.37
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1790, dtype: object)
(1791, Id                                                1792
EmployeeName                                MARK OSUNA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       149050.4
OvertimePay                                    5799.54
OtherPay                                       1574.59
Benefits                                           NaN
TotalPay                                     156424.53
TotalPayBenefits                             156424.53
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1791, dtype: object)
(1792, Id                                       1793
EmployeeName                    PERRY BONELLI
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                               91858.0
OvertimePay                          57453.52
OtherPay                               7070.0
Benefits                                  NaN
TotalPay                            156381.52
TotalPayBenefits                    156381.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1792, dtype: object)
(1793, Id                                                1794
EmployeeName                              BELINDA KERR
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.77
OvertimePay                                    1136.38
OtherPay                                       6215.86
Benefits                                           NaN
TotalPay                                     156376.01
TotalPayBenefits                             156376.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1793, dtype: object)
(1794, Id                                                1795
EmployeeName                            MICHAEL SERUJO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                   12636.95
OtherPay                                      13223.86
Benefits                                           NaN
TotalPay                                     156342.38
TotalPayBenefits                             156342.38
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1794, dtype: object)
(1795, Id                           1796
EmployeeName          MARCO NOCON
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              32644.53
OtherPay                 17762.17
Benefits                      NaN
TotalPay                156341.34
TotalPayBenefits        156341.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1795, dtype: object)
(1796, Id                                 1797
EmployeeName                     NAM DO
JobTitle            CLINICAL PHARMACIST
BasePay                        142125.5
OvertimePay                    13615.68
OtherPay                          493.2
Benefits                            NaN
TotalPay                      156234.38
TotalPayBenefits              156234.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1796, dtype: object)
(1797, Id                                              1798
EmployeeName                       DOMENICO DISCENZA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                 10035.67
OtherPay                                    15699.05
Benefits                                         NaN
TotalPay                                   156216.28
TotalPayBenefits                           156216.28
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1797, dtype: object)
(1798, Id                                                      1799
EmployeeName                                    KARL JOHNSON
JobTitle            ELECTRICAL TRANSIT MECHANIC SUPERVISOR I
BasePay                                            103065.94
OvertimePay                                         21143.28
OtherPay                                            31968.34
Benefits                                                 NaN
TotalPay                                           156177.56
TotalPayBenefits                                   156177.56
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 1798, dtype: object)
(1799, Id                            1800
EmployeeName        CARLOS SALAZAR
JobTitle             NURSE MANAGER
BasePay                  156170.72
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 156170.72
TotalPayBenefits         156170.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1799, dtype: object)
(1800, Id                              1801
EmployeeName        MICHAEL CAMPBELL
JobTitle                   MANAGER V
BasePay                    156157.66
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   156157.66
TotalPayBenefits           156157.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1800, dtype: object)
(1801, Id                                       1802
EmployeeName                      DINAH VERBY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              156154.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             156154.5
TotalPayBenefits                     156154.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1801, dtype: object)
(1802, Id                                1803
EmployeeName          RICARDO GUERRERO
JobTitle            POLICE OFFICER III
BasePay                      112380.73
OvertimePay                    9289.92
OtherPay                      34477.67
Benefits                           NaN
TotalPay                     156148.32
TotalPayBenefits             156148.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1802, dtype: object)
(1803, Id                                         1804
EmployeeName                     MELISSA TAPPLY
JobTitle            SENIOR COURT STAFF ATTORNEY
BasePay                               110800.24
OvertimePay                                 0.0
OtherPay                               45333.73
Benefits                                    NaN
TotalPay                              156133.97
TotalPayBenefits                      156133.97
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1803, dtype: object)
(1804, Id                            1805
EmployeeName        JULIO DELUCCHI
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               27858.98
OtherPay                  22339.92
Benefits                       NaN
TotalPay                 156133.57
TotalPayBenefits         156133.57
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1804, dtype: object)
(1805, Id                                       1806
EmployeeName                    RONNIE WAGNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             156131.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            156131.87
TotalPayBenefits                    156131.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1805, dtype: object)
(1806, Id                           1807
EmployeeName        OLIANA SADLER
JobTitle               MANAGER VI
BasePay                 156131.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                156131.57
TotalPayBenefits        156131.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1806, dtype: object)
(1807, Id                              1808
EmployeeName        ALICE VILLAGOMEZ
JobTitle                  MANAGER VI
BasePay                     156122.8
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    156122.8
TotalPayBenefits            156122.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1807, dtype: object)
(1808, Id                                      1809
EmployeeName                 MARCUS SANTIAGO
JobTitle            HEAD PARK PATROL OFFICER
BasePay                             67008.38
OvertimePay                         28180.55
OtherPay                            60933.35
Benefits                                 NaN
TotalPay                           156122.28
TotalPayBenefits                   156122.28
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1808, dtype: object)
(1809, Id                                1810
EmployeeName        THOMAS JOHANNESSEN
JobTitle                   FIREFIGHTER
BasePay                      123013.02
OvertimePay                   14836.12
OtherPay                      18268.91
Benefits                           NaN
TotalPay                     156118.05
TotalPayBenefits             156118.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1809, dtype: object)
(1810, Id                                       1811
EmployeeName                      GREG WYRSCH
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              139256.2
OvertimePay                            115.65
OtherPay                              16699.6
Benefits                                  NaN
TotalPay                            156071.45
TotalPayBenefits                    156071.45
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1810, dtype: object)
(1811, Id                           1812
EmployeeName          KENT NELSON
JobTitle              MANAGER VII
BasePay                 150479.01
OvertimePay                   0.0
OtherPay                  5570.85
Benefits                      NaN
TotalPay                156049.86
TotalPayBenefits        156049.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1811, dtype: object)
(1812, Id                            1813
EmployeeName        HENDRYCK LASAK
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               32343.95
OtherPay                  17765.65
Benefits                       NaN
TotalPay                 156044.27
TotalPayBenefits         156044.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1812, dtype: object)
(1813, Id                              1814
EmployeeName             JOAN GRIPPO
JobTitle            REGISTERED NURSE
BasePay                     125217.2
OvertimePay                  7802.18
OtherPay                    23023.92
Benefits                         NaN
TotalPay                    156043.3
TotalPayBenefits            156043.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1813, dtype: object)
(1814, Id                                                1815
EmployeeName                              STEVEN BALMA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.71
OvertimePay                                    1654.58
OtherPay                                       5347.93
Benefits                                           NaN
TotalPay                                     156026.22
TotalPayBenefits                             156026.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1814, dtype: object)
(1815, Id                           1816
EmployeeName        WAYMAN DUNCAN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              32304.34
OtherPay                  17786.9
Benefits                      NaN
TotalPay                156025.92
TotalPayBenefits        156025.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1815, dtype: object)
(1816, Id                                       1817
EmployeeName                       JOHN ALDEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             156007.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            156007.01
TotalPayBenefits                    156007.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1816, dtype: object)
(1817, Id                               1818
EmployeeName             JESSIE ORTIZ
JobTitle            POLICE OFFICER II
BasePay                     107603.86
OvertimePay                  37604.12
OtherPay                     10797.81
Benefits                          NaN
TotalPay                    156005.79
TotalPayBenefits            156005.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1817, dtype: object)
(1818, Id                           1819
EmployeeName        JANET DEMPSEY
JobTitle             UNDERSHERIFF
BasePay                 147167.95
OvertimePay                   0.0
OtherPay                  8830.77
Benefits                      NaN
TotalPay                155998.72
TotalPayBenefits        155998.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1818, dtype: object)
(1819, Id                                                1820
EmployeeName                               DAVID SMITH
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149077.25
OvertimePay                                    2225.73
OtherPay                                        4679.8
Benefits                                           NaN
TotalPay                                     155982.78
TotalPayBenefits                             155982.78
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1819, dtype: object)
(1820, Id                              1821
EmployeeName           MIRIAM ISIDRO
JobTitle            REGISTERED NURSE
BasePay                     125518.8
OvertimePay                  8656.88
OtherPay                    21805.94
Benefits                         NaN
TotalPay                   155981.62
TotalPayBenefits           155981.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1820, dtype: object)
(1821, Id                                              1822
EmployeeName                                 C BREEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.72
OvertimePay                                  6571.88
OtherPay                                    18940.43
Benefits                                         NaN
TotalPay                                   155970.03
TotalPayBenefits                           155970.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1821, dtype: object)
(1822, Id                            1823
EmployeeName        MARGE VIZCARRA
JobTitle                MANAGER VI
BasePay                   150951.2
OvertimePay                    0.0
OtherPay                    5000.0
Benefits                       NaN
TotalPay                  155951.2
TotalPayBenefits          155951.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1822, dtype: object)
(1823, Id                                                1824
EmployeeName                              ERIC VINTERO
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149034.25
OvertimePay                                    3618.79
OtherPay                                       3296.86
Benefits                                           NaN
TotalPay                                      155949.9
TotalPayBenefits                              155949.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1823, dtype: object)
(1824, Id                                     1825
EmployeeName                   DENISE MERLO
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                           28237.52
Benefits                                NaN
TotalPay                          155915.12
TotalPayBenefits                  155915.12
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1824, dtype: object)
(1825, Id                               1826
EmployeeName              CARL BRYANT
JobTitle            POLICE OFFICER II
BasePay                     110222.96
OvertimePay                   5358.04
OtherPay                     40325.28
Benefits                          NaN
TotalPay                    155906.28
TotalPayBenefits            155906.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1825, dtype: object)
(1826, Id                                         1827
EmployeeName                      ETHAN JACKSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            17118.46
OtherPay                               15667.93
Benefits                                    NaN
TotalPay                              155891.41
TotalPayBenefits                      155891.41
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1826, dtype: object)
(1827, Id                                    1828
EmployeeName                 CRAIG JOHNSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121579.09
OvertimePay                       19131.14
OtherPay                          15174.57
Benefits                               NaN
TotalPay                          155884.8
TotalPayBenefits                  155884.8
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1827, dtype: object)
(1828, Id                              1829
EmployeeName        LOURDES MANDAPAT
JobTitle            REGISTERED NURSE
BasePay                    125179.98
OvertimePay                   8547.0
OtherPay                    22138.64
Benefits                         NaN
TotalPay                   155865.62
TotalPayBenefits           155865.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1828, dtype: object)
(1829, Id                                       1830
EmployeeName                      ANDREW YICK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             155858.06
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            155858.06
TotalPayBenefits                    155858.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1829, dtype: object)
(1830, Id                                       1831
EmployeeName                     MICHAEL BERG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             155858.06
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            155858.06
TotalPayBenefits                    155858.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1830, dtype: object)
(1831, Id                                    1832
EmployeeName             STEVE SILVESTRICH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                       18168.71
OtherPay                          15277.79
Benefits                               NaN
TotalPay                         155851.51
TotalPayBenefits                 155851.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1831, dtype: object)
(1832, Id                                1833
EmployeeName                 MARK HAWK
JobTitle            NURSE PRACTITIONER
BasePay                       145888.7
OvertimePay                    2874.84
OtherPay                       7061.51
Benefits                           NaN
TotalPay                     155825.05
TotalPayBenefits             155825.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1832, dtype: object)
(1833, Id                           1834
EmployeeName         CLIFTON HONG
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              30275.46
OtherPay                 19600.73
Benefits                      NaN
TotalPay                155810.85
TotalPayBenefits        155810.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1833, dtype: object)
(1834, Id                                                        1835
EmployeeName                                       LAURA KELLY
JobTitle            INVESTIGATOR, BUREAU OF FIRE INVESTIGATION
BasePay                                              126857.55
OvertimePay                                           19458.52
OtherPay                                               9460.64
Benefits                                                   NaN
TotalPay                                             155776.71
TotalPayBenefits                                     155776.71
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1834, dtype: object)
(1835, Id                                                1836
EmployeeName                              RAMON JUNSAY
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   68852.91
OtherPay                                       9353.43
Benefits                                           NaN
TotalPay                                     155775.34
TotalPayBenefits                             155775.34
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1835, dtype: object)
(1836, Id                           1837
EmployeeName          DANIEL LEHR
JobTitle               MANAGER IV
BasePay                 143253.43
OvertimePay                   0.0
OtherPay                 12457.68
Benefits                      NaN
TotalPay                155711.11
TotalPayBenefits        155711.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1836, dtype: object)
(1837, Id                                                         1838
EmployeeName                                        CHANH PHUNG
JobTitle            ASSISTANT ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                90911.13
OvertimePay                                            52579.59
OtherPay                                               12218.39
Benefits                                                    NaN
TotalPay                                              155709.11
TotalPayBenefits                                      155709.11
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 1837, dtype: object)
(1838, Id                                1839
EmployeeName        PAULINE BUENCAMINO
JobTitle              REGISTERED NURSE
BasePay                       126984.0
OvertimePay                     4395.6
OtherPay                      24318.35
Benefits                           NaN
TotalPay                     155697.95
TotalPayBenefits             155697.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1838, dtype: object)
(1839, Id                           1840
EmployeeName          TAMI TURNER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              45024.89
OtherPay                  4698.08
Benefits                      NaN
TotalPay                155657.63
TotalPayBenefits        155657.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1839, dtype: object)
(1840, Id                                                        1841
EmployeeName                                       KEVIN HORAN
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128147.09
OvertimePay                                           10030.13
OtherPay                                              17458.74
Benefits                                                   NaN
TotalPay                                             155635.96
TotalPayBenefits                                     155635.96
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1840, dtype: object)
(1841, Id                               1842
EmployeeName        JOSEPHINE CABRERA
JobTitle             REGISTERED NURSE
BasePay                      123809.4
OvertimePay                  12490.81
OtherPay                     19297.59
Benefits                          NaN
TotalPay                     155597.8
TotalPayBenefits             155597.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1841, dtype: object)
(1842, Id                                 1843
EmployeeName                 EDWARD LOR
JobTitle            CLINICAL PHARMACIST
BasePay                       147093.75
OvertimePay                      252.47
OtherPay                        8247.46
Benefits                            NaN
TotalPay                      155593.68
TotalPayBenefits              155593.68
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1842, dtype: object)
(1843, Id                                              1844
EmployeeName                           MICHAEL DEELY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                 19819.76
OtherPay                                     5266.11
Benefits                                         NaN
TotalPay                                   155567.43
TotalPayBenefits                           155567.43
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1843, dtype: object)
(1844, Id                           1845
EmployeeName         HEATH STOYER
JobTitle               PHARMACIST
BasePay                 133142.35
OvertimePay              10708.32
OtherPay                  11665.6
Benefits                      NaN
TotalPay                155516.27
TotalPayBenefits        155516.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1844, dtype: object)
(1845, Id                               1846
EmployeeName          MATTHEW FREEMAN
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.58
OvertimePay                   8386.44
OtherPay                      8188.55
Benefits                          NaN
TotalPay                    155502.57
TotalPayBenefits            155502.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1845, dtype: object)
(1846, Id                                              1847
EmployeeName                        MICHAEL WIBUNSIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                 14524.04
OtherPay                                    10518.67
Benefits                                         NaN
TotalPay                                   155500.65
TotalPayBenefits                           155500.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1846, dtype: object)
(1847, Id                               1848
EmployeeName              SCOTT BIGGS
JobTitle            POLICE OFFICER II
BasePay                     110238.92
OvertimePay                  30434.76
OtherPay                     14819.29
Benefits                          NaN
TotalPay                    155492.97
TotalPayBenefits            155492.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1847, dtype: object)
(1848, Id                             1849
EmployeeName        MARIBETH JENSEN
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                 34727.3
OtherPay                   14820.41
Benefits                        NaN
TotalPay                  155482.35
TotalPayBenefits          155482.35
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1848, dtype: object)
(1849, Id                           1850
EmployeeName         DEREK OLEARY
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              27748.78
OtherPay                 21791.68
Benefits                      NaN
TotalPay                155475.11
TotalPayBenefits        155475.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1849, dtype: object)
(1850, Id                                       1851
EmployeeName                 CHRISTOPHER HITE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             155446.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            155446.62
TotalPayBenefits                    155446.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1850, dtype: object)
(1851, Id                                                1852
EmployeeName                                 LOUIS LIM
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   67791.53
OtherPay                                      10051.37
Benefits                                           NaN
TotalPay                                      155411.9
TotalPayBenefits                              155411.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1851, dtype: object)
(1852, Id                           1853
EmployeeName         JOSEPH NARAS
JobTitle              MANAGER III
BasePay                 108635.19
OvertimePay                   0.0
OtherPay                 46766.53
Benefits                      NaN
TotalPay                155401.72
TotalPayBenefits        155401.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1852, dtype: object)
(1853, Id                                1854
EmployeeName          MICHAEL ROBINSON
JobTitle            POLICE OFFICER III
BasePay                      108170.36
OvertimePay                   40180.66
OtherPay                       7044.73
Benefits                           NaN
TotalPay                     155395.75
TotalPayBenefits             155395.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1853, dtype: object)
(1854, Id                              1855
EmployeeName        LUISITO BAYBAYAN
JobTitle            REGISTERED NURSE
BasePay                     126495.6
OvertimePay                  3392.85
OtherPay                    25493.81
Benefits                         NaN
TotalPay                   155382.26
TotalPayBenefits           155382.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1854, dtype: object)
(1855, Id                                              1856
EmployeeName                         RAYMOND BEAZLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130504.93
OvertimePay                                  8441.93
OtherPay                                    16421.74
Benefits                                         NaN
TotalPay                                    155368.6
TotalPayBenefits                            155368.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1855, dtype: object)
(1856, Id                                                1857
EmployeeName                                  DAVID LU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   70367.54
OtherPay                                       7420.31
Benefits                                           NaN
TotalPay                                     155368.25
TotalPayBenefits                             155368.25
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1856, dtype: object)
(1857, Id                                                1858
EmployeeName                             TERESA GRACIE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.93
OvertimePay                                    5433.38
OtherPay                                        868.43
Benefits                                           NaN
TotalPay                                     155346.74
TotalPayBenefits                             155346.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1857, dtype: object)
(1858, Id                                                1859
EmployeeName                                ALBERT LUM
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.97
OvertimePay                                    6879.87
OtherPay                                       17977.4
Benefits                                           NaN
TotalPay                                     155315.24
TotalPayBenefits                             155315.24
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1858, dtype: object)
(1859, Id                                                1860
EmployeeName                               RAJ VASWANI
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.91
OvertimePay                                    3519.64
OtherPay                                       2732.95
Benefits                                           NaN
TotalPay                                      155297.5
TotalPayBenefits                              155297.5
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1859, dtype: object)
(1860, Id                                             1861
EmployeeName                         SCOTT HEIDOHRN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   127586.24
OvertimePay                                11780.71
OtherPay                                   15914.12
Benefits                                        NaN
TotalPay                                  155281.07
TotalPayBenefits                          155281.07
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 1860, dtype: object)
(1861, Id                                 1862
EmployeeName             MICHELLE FOUTS
JobTitle            CLINICAL PHARMACIST
BasePay                       154447.36
OvertimePay                         0.0
OtherPay                          824.0
Benefits                            NaN
TotalPay                      155271.36
TotalPayBenefits              155271.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1861, dtype: object)
(1862, Id                                                               1863
EmployeeName                                                 DAISY YU
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     124372.08
OvertimePay                                                  12886.19
OtherPay                                                     17993.04
Benefits                                                          NaN
TotalPay                                                    155251.31
TotalPayBenefits                                            155251.31
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1862, dtype: object)
(1863, Id                                    1864
EmployeeName              JAMES MAC DONELL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                       16754.04
OtherPay                          16081.51
Benefits                               NaN
TotalPay                         155240.56
TotalPayBenefits                 155240.56
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1863, dtype: object)
(1864, Id                                                   1865
EmployeeName                                 STUART BEACH
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         137128.01
OvertimePay                                       4417.81
OtherPay                                         13671.36
Benefits                                              NaN
TotalPay                                        155217.18
TotalPayBenefits                                155217.18
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1864, dtype: object)
(1865, Id                                                           1866
EmployeeName                                          JAMES KELLY
JobTitle            MANAGER VII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 153070.58
OvertimePay                                                   0.0
OtherPay                                                  2130.14
Benefits                                                      NaN
TotalPay                                                155200.72
TotalPayBenefits                                        155200.72
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 1865, dtype: object)
(1866, Id                                            1867
EmployeeName                           JOHN MONROE
JobTitle            INSPECTOR, (POLICE DEPARTMENT)
BasePay                                  123187.73
OvertimePay                               27070.49
OtherPay                                   4931.27
Benefits                                       NaN
TotalPay                                 155189.49
TotalPayBenefits                         155189.49
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 1866, dtype: object)
(1867, Id                                    1868
EmployeeName                KJELL HARSHMAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       21783.02
OtherPay                          10924.82
Benefits                               NaN
TotalPay                         155112.84
TotalPayBenefits                 155112.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1867, dtype: object)
(1868, Id                              1869
EmployeeName          MARISSA ORBINO
JobTitle            REGISTERED NURSE
BasePay                     124297.8
OvertimePay                 12197.78
OtherPay                    18616.87
Benefits                         NaN
TotalPay                   155112.45
TotalPayBenefits           155112.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1868, dtype: object)
(1869, Id                            1870
EmployeeName        THOMAS MCGUIRE
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               26822.85
OtherPay                   22342.8
Benefits                       NaN
TotalPay                  155100.3
TotalPayBenefits          155100.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1869, dtype: object)
(1870, Id                            1871
EmployeeName        ERIK ZAMMARCHI
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               34234.03
OtherPay                  14929.16
Benefits                       NaN
TotalPay                 155097.85
TotalPayBenefits         155097.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1870, dtype: object)
(1871, Id                                              1872
EmployeeName                             SETH RISKIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  4030.29
OtherPay                                    20609.45
Benefits                                         NaN
TotalPay                                   155097.69
TotalPayBenefits                           155097.69
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1871, dtype: object)
(1872, Id                             1873
EmployeeName        SHAWN ZIMMERMAN
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                 30184.4
OtherPay                    18966.7
Benefits                        NaN
TotalPay                  155085.74
TotalPayBenefits          155085.74
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1872, dtype: object)
(1873, Id                                                         1874
EmployeeName                                     STEVEN POMATTO
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130457.94
OvertimePay                                            12668.64
OtherPay                                               11954.32
Benefits                                                    NaN
TotalPay                                               155080.9
TotalPayBenefits                                       155080.9
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 1873, dtype: object)
(1874, Id                              1875
EmployeeName         ERLINDA MENDOZA
JobTitle            REGISTERED NURSE
BasePay                    122706.75
OvertimePay                  7785.45
OtherPay                    24557.91
Benefits                         NaN
TotalPay                   155050.11
TotalPayBenefits           155050.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1874, dtype: object)
(1875, Id                               1876
EmployeeName            MATHEW PASHBY
JobTitle            POLICE OFFICER II
BasePay                     110223.05
OvertimePay                  34538.32
OtherPay                     10276.67
Benefits                          NaN
TotalPay                    155038.04
TotalPayBenefits            155038.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1875, dtype: object)
(1876, Id                               1877
EmployeeName        CELERINA VALIENTE
JobTitle             REGISTERED NURSE
BasePay                     122262.44
OvertimePay                  12120.31
OtherPay                     20612.26
Benefits                          NaN
TotalPay                    154995.01
TotalPayBenefits            154995.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1876, dtype: object)
(1877, Id                                                1878
EmployeeName                       CHRISTOPHER PEDRINI
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.59
OvertimePay                                    3531.42
OtherPay                                       2394.35
Benefits                                           NaN
TotalPay                                     154970.36
TotalPayBenefits                             154970.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1877, dtype: object)
(1878, Id                                                1879
EmployeeName                               MARTIN DITO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                   12318.56
OtherPay                                      12151.48
Benefits                                           NaN
TotalPay                                     154946.44
TotalPayBenefits                             154946.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1878, dtype: object)
(1879, Id                                1880
EmployeeName           SUSANNE KILLING
JobTitle            NURSE PRACTITIONER
BasePay                      154673.67
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     154923.67
TotalPayBenefits             154923.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1879, dtype: object)
(1880, Id                                1881
EmployeeName         PATRICIA MCCARTHY
JobTitle            NURSE PRACTITIONER
BasePay                      150550.24
OvertimePay                        0.0
OtherPay                       4353.29
Benefits                           NaN
TotalPay                     154903.53
TotalPayBenefits             154903.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1880, dtype: object)
(1881, Id                               1882
EmployeeName        ANDREW SOBOZINSKY
JobTitle                  FIREFIGHTER
BasePay                     123104.99
OvertimePay                  17034.92
OtherPay                      14756.8
Benefits                          NaN
TotalPay                    154896.71
TotalPayBenefits            154896.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1881, dtype: object)
(1882, Id                                                               1883
EmployeeName                                               BENSON LAM
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      86419.77
OvertimePay                                                  53819.61
OtherPay                                                     14632.97
Benefits                                                          NaN
TotalPay                                                    154872.35
TotalPayBenefits                                            154872.35
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1882, dtype: object)
(1883, Id                                    1884
EmployeeName               MICHAEL MENEFEE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                       18641.54
OtherPay                          13824.34
Benefits                               NaN
TotalPay                         154870.84
TotalPayBenefits                 154870.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1883, dtype: object)
(1884, Id                              1885
EmployeeName         MINERVA BARRION
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                  8376.22
OtherPay                    26963.69
Benefits                         NaN
TotalPay                   154835.91
TotalPayBenefits           154835.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1884, dtype: object)
(1885, Id                                                1886
EmployeeName                                STEVE FORD
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149103.73
OvertimePay                                    3141.94
OtherPay                                       2576.87
Benefits                                           NaN
TotalPay                                     154822.54
TotalPayBenefits                             154822.54
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1885, dtype: object)
(1886, Id                                                1887
EmployeeName                                 MARK COTA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.74
OvertimePay                                    4949.42
OtherPay                                        819.53
Benefits                                           NaN
TotalPay                                     154819.69
TotalPayBenefits                             154819.69
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1886, dtype: object)
(1887, Id                                                1888
EmployeeName                          ANTONIO CASILLAS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                         9868.0
OvertimePay                                   77595.99
OtherPay                                      67354.28
Benefits                                           NaN
TotalPay                                     154818.27
TotalPayBenefits                             154818.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1887, dtype: object)
(1888, Id                           1889
EmployeeName         MICHAEL JUAN
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              31156.08
OtherPay                 17716.11
Benefits                      NaN
TotalPay                154806.86
TotalPayBenefits        154806.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1888, dtype: object)
(1889, Id                                                1890
EmployeeName                           KENNETH STOCKER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.93
OvertimePay                                   18165.94
OtherPay                                       6172.53
Benefits                                           NaN
TotalPay                                      154796.4
TotalPayBenefits                              154796.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1889, dtype: object)
(1890, Id                                                         1891
EmployeeName                                 PATRICK OVERSTREET
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130505.14
OvertimePay                                            15721.01
OtherPay                                                8548.58
Benefits                                                    NaN
TotalPay                                              154774.73
TotalPayBenefits                                      154774.73
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 1890, dtype: object)
(1891, Id                                                1892
EmployeeName                             DAVID JOHNSON
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      134097.86
OvertimePay                                    3328.19
OtherPay                                      17318.63
Benefits                                           NaN
TotalPay                                     154744.68
TotalPayBenefits                             154744.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1891, dtype: object)
(1892, Id                                1893
EmployeeName            MICHAEL HUTTON
JobTitle            POLICE OFFICER III
BasePay                      112421.38
OvertimePay                   13922.14
OtherPay                      28377.45
Benefits                           NaN
TotalPay                     154720.97
TotalPayBenefits             154720.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1892, dtype: object)
(1893, Id                            1894
EmployeeName        CAROLINE PRIEM
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               29992.49
OtherPay                  18767.78
Benefits                       NaN
TotalPay                 154694.93
TotalPayBenefits         154694.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1893, dtype: object)
(1894, Id                                                              1895
EmployeeName                                          ROBERTA BOOMER
JobTitle            BOARD SECRETARY - MUNICIPAL TRANSPORTATION AGENC
BasePay                                                     154690.6
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                    154690.6
TotalPayBenefits                                            154690.6
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 1894, dtype: object)
(1895, Id                                  1896
EmployeeName        JACKY SPENCER-DAVIES
JobTitle                   NURSE MANAGER
BasePay                         132327.0
OvertimePay                          0.0
OtherPay                        22347.47
Benefits                             NaN
TotalPay                       154674.47
TotalPayBenefits               154674.47
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1895, dtype: object)
(1896, Id                                1897
EmployeeName             MIGUEL TORRES
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                       8.31
OtherPay                      42263.77
Benefits                           NaN
TotalPay                     154673.17
TotalPayBenefits             154673.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1896, dtype: object)
(1897, Id                              1898
EmployeeName           MARIA ANTONIO
JobTitle            REGISTERED NURSE
BasePay                    126800.85
OvertimePay                 16257.59
OtherPay                    11609.43
Benefits                         NaN
TotalPay                   154667.87
TotalPayBenefits           154667.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1897, dtype: object)
(1898, Id                           1899
EmployeeName        RICHARD LOPES
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              31424.09
OtherPay                 17303.06
Benefits                      NaN
TotalPay                 154661.8
TotalPayBenefits         154661.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1898, dtype: object)
(1899, Id                              1900
EmployeeName             STEVEN UANG
JobTitle            POLICE OFFICER I
BasePay                     102942.2
OvertimePay                 34900.35
OtherPay                    16805.49
Benefits                         NaN
TotalPay                   154648.04
TotalPayBenefits           154648.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1899, dtype: object)
(1900, Id                              1901
EmployeeName          ESTHER MARANIA
JobTitle            REGISTERED NURSE
BasePay                    125323.44
OvertimePay                  10378.5
OtherPay                    18943.36
Benefits                         NaN
TotalPay                    154645.3
TotalPayBenefits            154645.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1900, dtype: object)
(1901, Id                           1902
EmployeeName        CARLEY ANGELL
JobTitle            SPECIAL NURSE
BasePay                 125199.63
OvertimePay               4375.73
OtherPay                 25069.57
Benefits                      NaN
TotalPay                154644.93
TotalPayBenefits        154644.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1901, dtype: object)
(1902, Id                                              1903
EmployeeName                              STEVE QUON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.88
OvertimePay                                  5914.41
OtherPay                                    18250.35
Benefits                                         NaN
TotalPay                                   154622.64
TotalPayBenefits                           154622.64
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1902, dtype: object)
(1903, Id                                1904
EmployeeName              DAVID CORREA
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   37301.79
OtherPay                       4908.61
Benefits                           NaN
TotalPay                     154611.48
TotalPayBenefits             154611.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1903, dtype: object)
(1904, Id                              1905
EmployeeName         ROSEMARIE TIBAY
JobTitle            REGISTERED NURSE
BasePay                    123958.62
OvertimePay                  6289.64
OtherPay                    24321.43
Benefits                         NaN
TotalPay                   154569.69
TotalPayBenefits           154569.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1904, dtype: object)
(1905, Id                                       1906
EmployeeName                    NATASHA PARKS
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.02
OvertimePay                           9333.79
OtherPay                             18021.29
Benefits                                  NaN
TotalPay                             154558.1
TotalPayBenefits                     154558.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1905, dtype: object)
(1906, Id                                1907
EmployeeName              CINTIA JONES
JobTitle            TRANSIT SUPERVISOR
BasePay                        79594.5
OvertimePay                   67362.26
OtherPay                       7563.14
Benefits                           NaN
TotalPay                      154519.9
TotalPayBenefits              154519.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1906, dtype: object)
(1907, Id                                                1908
EmployeeName                              KERVIN SILAS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.58
OvertimePay                                    9240.22
OtherPay                                       14798.1
Benefits                                           NaN
TotalPay                                      154519.9
TotalPayBenefits                              154519.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1907, dtype: object)
(1908, Id                                                               1909
EmployeeName                                            BRUCE GUITRON
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     138878.92
OvertimePay                                                    432.56
OtherPay                                                     15204.84
Benefits                                                          NaN
TotalPay                                                    154516.32
TotalPayBenefits                                            154516.32
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1908, dtype: object)
(1909, Id                              1910
EmployeeName         EDGARDO VERGARA
JobTitle            REGISTERED NURSE
BasePay                     125763.0
OvertimePay                  7188.62
OtherPay                    21545.73
Benefits                         NaN
TotalPay                   154497.35
TotalPayBenefits           154497.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1909, dtype: object)
(1910, Id                           1911
EmployeeName         GIDEON PRICE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              31008.78
OtherPay                 17544.45
Benefits                      NaN
TotalPay                154487.88
TotalPayBenefits        154487.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1910, dtype: object)
(1911, Id                                         1912
EmployeeName                   MICHAEL CHARLTON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            16010.12
OtherPay                               15365.23
Benefits                                    NaN
TotalPay                              154480.34
TotalPayBenefits                      154480.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1911, dtype: object)
(1912, Id                           1913
EmployeeName        KEITH ALMIROL
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              37603.03
OtherPay                 10930.11
Benefits                      NaN
TotalPay                154467.79
TotalPayBenefits        154467.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1912, dtype: object)
(1913, Id                                       1914
EmployeeName                    ADENA GILBERT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             154418.86
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            154418.86
TotalPayBenefits                    154418.86
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1913, dtype: object)
(1914, Id                            1915
EmployeeName        LUKE MICHAELIS
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               36879.98
OtherPay                  11592.19
Benefits                       NaN
TotalPay                 154406.84
TotalPayBenefits         154406.84
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1914, dtype: object)
(1915, Id                                         1916
EmployeeName                     PATRICK D'ARCY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                            14381.48
OtherPay                               16904.42
Benefits                                    NaN
TotalPay                              154390.89
TotalPayBenefits                      154390.89
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1915, dtype: object)
(1916, Id                             1917
EmployeeName            UDAY PRASAD
JobTitle            SENIOR ENGINEER
BasePay                   140003.05
OvertimePay                     0.0
OtherPay                   14378.36
Benefits                        NaN
TotalPay                  154381.41
TotalPayBenefits          154381.41
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1916, dtype: object)
(1917, Id                             1918
EmployeeName           RONALD CHENG
JobTitle            SENIOR ENGINEER
BasePay                   140003.05
OvertimePay                     0.0
OtherPay                   14378.33
Benefits                        NaN
TotalPay                  154381.38
TotalPayBenefits          154381.38
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1917, dtype: object)
(1918, Id                             1919
EmployeeName             ERNEST TOM
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                   14378.36
Benefits                        NaN
TotalPay                  154381.37
TotalPayBenefits          154381.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1918, dtype: object)
(1919, Id                             1920
EmployeeName            PATRICK LAU
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                   14378.34
Benefits                        NaN
TotalPay                  154381.36
TotalPayBenefits          154381.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1919, dtype: object)
(1920, Id                                         1921
EmployeeName                    LAWRENCE CONRAD
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                             11396.4
OtherPay                               19878.64
Benefits                                    NaN
TotalPay                              154380.06
TotalPayBenefits                      154380.06
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1920, dtype: object)
(1921, Id                              1922
EmployeeName            EVELYN ANDES
JobTitle            REGISTERED NURSE
BasePay                    125946.15
OvertimePay                  7020.75
OtherPay                    21387.72
Benefits                         NaN
TotalPay                   154354.62
TotalPayBenefits           154354.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1921, dtype: object)
(1922, Id                              1923
EmployeeName             MARY ESMERO
JobTitle            REGISTERED NURSE
BasePay                    125091.45
OvertimePay                   8681.3
OtherPay                    20545.34
Benefits                         NaN
TotalPay                   154318.09
TotalPayBenefits           154318.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1922, dtype: object)
(1923, Id                                      1924
EmployeeName                  KATHRYN MILLER
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            154317.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           154317.54
TotalPayBenefits                   154317.54
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 1923, dtype: object)
(1924, Id                             1925
EmployeeName             LUKE CHENG
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                   14308.93
Benefits                        NaN
TotalPay                  154311.94
TotalPayBenefits          154311.94
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1924, dtype: object)
(1925, Id                                              1926
EmployeeName                          JOHN GREENWOOD
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.14
OvertimePay                                 11964.37
OtherPay                                    11813.27
Benefits                                         NaN
TotalPay                                   154282.78
TotalPayBenefits                           154282.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1925, dtype: object)
(1926, Id                                1927
EmployeeName              KELLY WESLEY
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    34058.4
OtherPay                       7784.38
Benefits                           NaN
TotalPay                     154264.22
TotalPayBenefits             154264.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1926, dtype: object)
(1927, Id                                                1928
EmployeeName                                PIUS OMEBE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77359.52
OvertimePay                                   69489.99
OtherPay                                       7379.36
Benefits                                           NaN
TotalPay                                     154228.87
TotalPayBenefits                             154228.87
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1927, dtype: object)
(1928, Id                              1929
EmployeeName        ARMANDO CUARESMA
JobTitle            REGISTERED NURSE
BasePay                     124786.2
OvertimePay                 12014.63
OtherPay                    17408.03
Benefits                         NaN
TotalPay                   154208.86
TotalPayBenefits           154208.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1928, dtype: object)
(1929, Id                              1930
EmployeeName           MICHAEL CELIS
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  8945.89
OtherPay                    39191.65
Benefits                         NaN
TotalPay                   154202.72
TotalPayBenefits           154202.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1929, dtype: object)
(1930, Id                              1931
EmployeeName        MICHAEL PETERSON
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 31417.85
OtherPay                    16845.74
Benefits                         NaN
TotalPay                   154198.24
TotalPayBenefits           154198.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1930, dtype: object)
(1931, Id                              1932
EmployeeName        GEOFFREY QUESADA
JobTitle                 FIREFIGHTER
BasePay                    105934.66
OvertimePay                 31419.76
OtherPay                    16840.11
Benefits                         NaN
TotalPay                   154194.53
TotalPayBenefits           154194.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1931, dtype: object)
(1932, Id                                                               1933
EmployeeName                                              GREG SUTTER
JobTitle            WATER CONSTRUCTION AND MAINTENANCE SUPERINTENDENT
BasePay                                                     115415.62
OvertimePay                                                  14965.88
OtherPay                                                     23790.62
Benefits                                                          NaN
TotalPay                                                    154172.12
TotalPayBenefits                                            154172.12
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1932, dtype: object)
(1933, Id                                1934
EmployeeName         NICHOLAS SHIHADEH
JobTitle            POLICE OFFICER III
BasePay                      112401.11
OvertimePay                    7310.94
OtherPay                      34446.25
Benefits                           NaN
TotalPay                      154158.3
TotalPayBenefits              154158.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1933, dtype: object)
(1934, Id                           1935
EmployeeName         ROBERT VIGIL
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              31252.63
OtherPay                 16939.79
Benefits                      NaN
TotalPay                154127.11
TotalPayBenefits        154127.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1934, dtype: object)
(1935, Id                             1936
EmployeeName            RAYMOND LUI
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                    14101.4
Benefits                        NaN
TotalPay                  154104.43
TotalPayBenefits          154104.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1935, dtype: object)
(1936, Id                           1937
EmployeeName        BRUNO WALTHER
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               29989.6
OtherPay                 18180.18
Benefits                      NaN
TotalPay                154104.42
TotalPayBenefits        154104.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1936, dtype: object)
(1937, Id                              1938
EmployeeName               CAROL KUO
JobTitle            REGISTERED NURSE
BasePay                     117689.0
OvertimePay                   9078.4
OtherPay                    27331.58
Benefits                         NaN
TotalPay                   154098.98
TotalPayBenefits           154098.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1937, dtype: object)
(1938, Id                                    1939
EmployeeName                 MARK NICHOLAS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                       16400.47
OtherPay                          15277.81
Benefits                               NaN
TotalPay                         154083.26
TotalPayBenefits                 154083.26
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1938, dtype: object)
(1939, Id                                1940
EmployeeName             VALERIE SOBEL
JobTitle            NURSE PRACTITIONER
BasePay                      148397.75
OvertimePay                        0.0
OtherPay                       5680.68
Benefits                           NaN
TotalPay                     154078.43
TotalPayBenefits             154078.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1939, dtype: object)
(1940, Id                           1941
EmployeeName        CARLOS JACOBO
JobTitle               MANAGER VI
BasePay                 154050.45
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                154050.45
TotalPayBenefits        154050.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1940, dtype: object)
(1941, Id                                1942
EmployeeName             MICHAEL WALSH
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8054.43
OtherPay                      33553.12
Benefits                           NaN
TotalPay                      154029.0
TotalPayBenefits              154029.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1941, dtype: object)
(1942, Id                                 1943
EmployeeName              ERIC BELLFORT
JobTitle            PHYSICIAN ASSISTANT
BasePay                        131789.0
OvertimePay                    21532.59
OtherPay                          695.0
Benefits                            NaN
TotalPay                      154016.59
TotalPayBenefits              154016.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1942, dtype: object)
(1943, Id                                 1944
EmployeeName             EDWARD SWEENEY
JobTitle            DEPUTY DIRECTOR III
BasePay                        153338.6
OvertimePay                         0.0
OtherPay                         648.93
Benefits                            NaN
TotalPay                      153987.53
TotalPayBenefits              153987.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 1943, dtype: object)
(1944, Id                                       1945
EmployeeName                       JANA CLARK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153977.75
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            153977.75
TotalPayBenefits                    153977.75
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1944, dtype: object)
(1945, Id                           1946
EmployeeName        GILLIAN SMITH
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              34372.74
OtherPay                 13656.52
Benefits                      NaN
TotalPay                153963.94
TotalPayBenefits        153963.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1945, dtype: object)
(1946, Id                                                1947
EmployeeName                               PABLO OSSIO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      138147.64
OvertimePay                                    8841.85
OtherPay                                        6970.7
Benefits                                           NaN
TotalPay                                     153960.19
TotalPayBenefits                             153960.19
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1946, dtype: object)
(1947, Id                              1948
EmployeeName           RICARDA ORIAS
JobTitle            REGISTERED NURSE
BasePay                    126449.82
OvertimePay                  5274.72
OtherPay                    22223.05
Benefits                         NaN
TotalPay                   153947.59
TotalPayBenefits           153947.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1947, dtype: object)
(1948, Id                                              1949
EmployeeName                            SCOTT WARNKE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.44
OvertimePay                                 16043.12
OtherPay                                     7414.78
Benefits                                         NaN
TotalPay                                   153939.34
TotalPayBenefits                           153939.34
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1948, dtype: object)
(1949, Id                                       1950
EmployeeName                       GALE LEUNG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153928.22
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            153928.22
TotalPayBenefits                    153928.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1949, dtype: object)
(1950, Id                               1951
EmployeeName        ROBERT DOTSON III
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                  30862.12
OtherPay                     17124.98
Benefits                          NaN
TotalPay                    153921.75
TotalPayBenefits            153921.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1950, dtype: object)
(1951, Id                                  1952
EmployeeName            CHRISTOPHER KROL
JobTitle            SHERIFF'S LIEUTENANT
BasePay                         121630.3
OvertimePay                     15721.12
OtherPay                        16508.76
Benefits                             NaN
TotalPay                       153860.18
TotalPayBenefits               153860.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 1951, dtype: object)
(1952, Id                           1953
EmployeeName         KENDRICK LOW
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              30534.55
OtherPay                 17390.43
Benefits                      NaN
TotalPay                153859.68
TotalPayBenefits        153859.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1952, dtype: object)
(1953, Id                                1954
EmployeeName              ROGER PETERS
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    9795.23
OtherPay                      31640.18
Benefits                           NaN
TotalPay                     153856.83
TotalPayBenefits             153856.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1953, dtype: object)
(1954, Id                                              1955
EmployeeName                          NOAH MALLINGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                  16167.0
OtherPay                                      7224.8
Benefits                                         NaN
TotalPay                                   153849.77
TotalPayBenefits                           153849.77
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1954, dtype: object)
(1955, Id                                               1956
EmployeeName                          RENOTA MARTINEZ
JobTitle            LIEUTENANT I, (POLICE DEPARTMENT)
BasePay                                     140654.87
OvertimePay                                  12244.43
OtherPay                                       896.43
Benefits                                          NaN
TotalPay                                    153795.73
TotalPayBenefits                            153795.73
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 1955, dtype: object)
(1956, Id                            1957
EmployeeName        MICHAEL MURPHY
JobTitle               FIREFIGHTER
BasePay                  105209.47
OvertimePay               38180.33
OtherPay                  10382.33
Benefits                       NaN
TotalPay                 153772.13
TotalPayBenefits         153772.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1956, dtype: object)
(1957, Id                                     1958
EmployeeName                    RONALD BELL
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.58
OvertimePay                             0.0
OtherPay                           26066.42
Benefits                                NaN
TotalPay                           153744.0
TotalPayBenefits                   153744.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 1957, dtype: object)
(1958, Id                                    1959
EmployeeName                 GABRIEL LOPEZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                       15785.96
OtherPay                          15551.54
Benefits                               NaN
TotalPay                         153742.47
TotalPayBenefits                 153742.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1958, dtype: object)
(1959, Id                                                        1960
EmployeeName                                          MARK LEE
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128411.09
OvertimePay                                           11415.77
OtherPay                                              13911.59
Benefits                                                   NaN
TotalPay                                             153738.45
TotalPayBenefits                                     153738.45
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 1959, dtype: object)
(1960, Id                                                              1961
EmployeeName                                            CARTER ROHAN
JobTitle            DEPUTY DIRECTOR II - MUNICIPAL TRANSPORTATION AG
BasePay                                                    132253.76
OvertimePay                                                      0.0
OtherPay                                                     21479.9
Benefits                                                         NaN
TotalPay                                                   153733.66
TotalPayBenefits                                           153733.66
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 1960, dtype: object)
(1961, Id                                              1962
EmployeeName                            RAYMOND LOCK
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.59
OvertimePay                                 13699.65
OtherPay                                     9542.58
Benefits                                         NaN
TotalPay                                   153723.82
TotalPayBenefits                           153723.82
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1961, dtype: object)
(1962, Id                            1963
EmployeeName        GREGORY WAGNER
JobTitle              MANAGER VIII
BasePay                  152310.49
OvertimePay                    0.0
OtherPay                   1412.95
Benefits                       NaN
TotalPay                 153723.44
TotalPayBenefits         153723.44
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1962, dtype: object)
(1963, Id                                                   1964
EmployeeName                             ANTHONY TAORMINA
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                          139654.2
OvertimePay                                       1206.64
OtherPay                                         12805.08
Benefits                                              NaN
TotalPay                                        153665.92
TotalPayBenefits                                153665.92
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 1963, dtype: object)
(1964, Id                                              1965
EmployeeName                         MAURO BENEDETTI
JobTitle            AUTOMOTIVE MECHANIC SUPERVISOR I
BasePay                                    100339.83
OvertimePay                                  44457.9
OtherPay                                     8814.87
Benefits                                         NaN
TotalPay                                    153612.6
TotalPayBenefits                            153612.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1964, dtype: object)
(1965, Id                               1966
EmployeeName              DELENE WOLF
JobTitle            DEPARTMENT HEAD I
BasePay                     143592.81
OvertimePay                       0.0
OtherPay                      10000.0
Benefits                          NaN
TotalPay                    153592.81
TotalPayBenefits            153592.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1965, dtype: object)
(1966, Id                                1967
EmployeeName                 ALAN CHAU
JobTitle            TRANSIT SUPERVISOR
BasePay                       88062.03
OvertimePay                   63327.85
OtherPay                       2196.39
Benefits                           NaN
TotalPay                     153586.27
TotalPayBenefits             153586.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1966, dtype: object)
(1967, Id                                1968
EmployeeName              ROBERT ROYER
JobTitle            POLICE OFFICER III
BasePay                      112973.21
OvertimePay                    7508.93
OtherPay                      33085.16
Benefits                           NaN
TotalPay                      153567.3
TotalPayBenefits              153567.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1967, dtype: object)
(1968, Id                           1969
EmployeeName        KAREN NAPITAN
JobTitle            NURSE MANAGER
BasePay                  130351.0
OvertimePay                   0.0
OtherPay                 23189.24
Benefits                      NaN
TotalPay                153540.24
TotalPayBenefits        153540.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1968, dtype: object)
(1969, Id                                    1970
EmployeeName                   BRIAN BURNS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       23816.71
OtherPay                           7310.42
Benefits                               NaN
TotalPay                         153532.13
TotalPayBenefits                 153532.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1969, dtype: object)
(1970, Id                             1971
EmployeeName        GREGORY COLLACO
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                31970.63
OtherPay                   15578.29
Benefits                        NaN
TotalPay                  153483.56
TotalPayBenefits          153483.56
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1970, dtype: object)
(1971, Id                            1972
EmployeeName        KENNETH MARTIN
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               36653.52
OtherPay                  10893.01
Benefits                       NaN
TotalPay                  153481.2
TotalPayBenefits          153481.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 1971, dtype: object)
(1972, Id                                              1973
EmployeeName                      MICHAEL ANDRAYCHAK
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130476.4
OvertimePay                                  4978.14
OtherPay                                    18025.93
Benefits                                         NaN
TotalPay                                   153480.47
TotalPayBenefits                           153480.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1972, dtype: object)
(1973, Id                                    1974
EmployeeName                JESSICA GALENS
JobTitle            SUPERVISING PHARMACIST
BasePay                          148519.05
OvertimePay                        4547.54
OtherPay                             406.6
Benefits                               NaN
TotalPay                         153473.19
TotalPayBenefits                 153473.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1973, dtype: object)
(1974, Id                                              1975
EmployeeName                            AARON LOZADA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                 13616.67
OtherPay                                     9362.22
Benefits                                         NaN
TotalPay                                   153460.46
TotalPayBenefits                           153460.46
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1974, dtype: object)
(1975, Id                               1976
EmployeeName            HOLLY STOUMEN
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                  25063.35
OtherPay                     18150.67
Benefits                          NaN
TotalPay                    153456.95
TotalPayBenefits            153456.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1975, dtype: object)
(1976, Id                                       1977
EmployeeName                       PHONG WANG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153440.35
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            153440.35
TotalPayBenefits                    153440.35
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1976, dtype: object)
(1977, Id                           1978
EmployeeName         IMELDA PRADO
JobTitle            NURSE MANAGER
BasePay                 145523.95
OvertimePay                   0.0
OtherPay                  7888.43
Benefits                      NaN
TotalPay                153412.38
TotalPayBenefits        153412.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1977, dtype: object)
(1978, Id                                             1979
EmployeeName                   CHRISTOPHER SCHAFFER
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   126670.14
OvertimePay                                16103.87
OtherPay                                   10610.57
Benefits                                        NaN
TotalPay                                  153384.58
TotalPayBenefits                          153384.58
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 1978, dtype: object)
(1979, Id                              1980
EmployeeName              MAY DEVERA
JobTitle            REGISTERED NURSE
BasePay                     126617.7
OvertimePay                   8547.0
OtherPay                    18149.74
Benefits                         NaN
TotalPay                   153314.44
TotalPayBenefits           153314.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1979, dtype: object)
(1980, Id                                1981
EmployeeName              NICOLE AVRIL
JobTitle            DEPUTY DIRECTOR IV
BasePay                      153305.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     153305.04
TotalPayBenefits             153305.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1980, dtype: object)
(1981, Id                                              1982
EmployeeName                                 MARK IM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                 13108.94
OtherPay                                     9726.45
Benefits                                         NaN
TotalPay                                   153293.33
TotalPayBenefits                           153293.33
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1981, dtype: object)
(1982, Id                              1983
EmployeeName        ANTONIO VILLALTA
JobTitle            TRAIN CONTROLLER
BasePay                     99594.89
OvertimePay                 48277.07
OtherPay                     5408.56
Benefits                         NaN
TotalPay                   153280.52
TotalPayBenefits           153280.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 1982, dtype: object)
(1983, Id                                    1984
EmployeeName                  KENNETH DUNN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       15308.77
OtherPay                          15551.54
Benefits                               NaN
TotalPay                         153265.31
TotalPayBenefits                 153265.31
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 1983, dtype: object)
(1984, Id                                       1985
EmployeeName                      LELA HARRIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153254.28
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            153254.28
TotalPayBenefits                    153254.28
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1984, dtype: object)
(1985, Id                                         1986
EmployeeName                      MICHAEL BARRY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            11954.77
OtherPay                               18180.51
Benefits                                    NaN
TotalPay                              153240.28
TotalPayBenefits                      153240.28
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1985, dtype: object)
(1986, Id                                1987
EmployeeName             BERNARD CORRY
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   12577.21
OtherPay                      28203.92
Benefits                           NaN
TotalPay                     153202.58
TotalPayBenefits             153202.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1986, dtype: object)
(1987, Id                                   1988
EmployeeName        CHRISTOPHER MCDANIELS
JobTitle                       MANAGER VI
BasePay                         153202.27
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        153202.27
TotalPayBenefits                153202.27
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 1987, dtype: object)
(1988, Id                           1989
EmployeeName         BRUCE STORRS
JobTitle               MANAGER VI
BasePay                 153202.26
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153202.26
TotalPayBenefits        153202.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 1988, dtype: object)
(1989, Id                               1990
EmployeeName        EDWIN BATONGBACAL
JobTitle                   MANAGER VI
BasePay                     153202.22
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    153202.22
TotalPayBenefits            153202.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1989, dtype: object)
(1990, Id                                         1991
EmployeeName                    STEPHEN CASSIDY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            11898.51
OtherPay                               18188.64
Benefits                                    NaN
TotalPay                              153192.15
TotalPayBenefits                      153192.15
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 1990, dtype: object)
(1991, Id                             1992
EmployeeName        LAWRENCE POWELL
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                33932.56
OtherPay                    13313.9
Benefits                        NaN
TotalPay                  153181.13
TotalPayBenefits          153181.13
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 1991, dtype: object)
(1992, Id                                              1993
EmployeeName                            PILAR TORRES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.98
OvertimePay                                  4886.97
OtherPay                                    17823.88
Benefits                                         NaN
TotalPay                                   153168.83
TotalPayBenefits                           153168.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 1992, dtype: object)
(1993, Id                                1994
EmployeeName             RAMON REYNOSO
JobTitle            POLICE OFFICER III
BasePay                      111102.91
OvertimePay                   36538.27
OtherPay                       5525.74
Benefits                           NaN
TotalPay                     153166.92
TotalPayBenefits             153166.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1993, dtype: object)
(1994, Id                                                               1995
EmployeeName                                             JANICE HAYES
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     131668.13
OvertimePay                                                       0.0
OtherPay                                                     21491.07
Benefits                                                          NaN
TotalPay                                                     153159.2
TotalPayBenefits                                             153159.2
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 1994, dtype: object)
(1995, Id                                       1996
EmployeeName                   LORENZO DONATI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             153158.14
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            153158.14
TotalPayBenefits                    153158.14
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 1995, dtype: object)
(1996, Id                                                1997
EmployeeName                            SIDNEY SAKURAI
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.52
OvertimePay                                   13571.12
OtherPay                                       9099.96
Benefits                                           NaN
TotalPay                                      153152.6
TotalPayBenefits                              153152.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1996, dtype: object)
(1997, Id                                1998
EmployeeName            ROBERTO GUZMAN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    63929.7
OtherPay                        1128.8
Benefits                           NaN
TotalPay                      153120.5
TotalPayBenefits              153120.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 1997, dtype: object)
(1998, Id                               1999
EmployeeName        MICHAEL CAMPANALI
JobTitle                  FIREFIGHTER
BasePay                     105934.66
OvertimePay                  28908.73
OtherPay                     18274.28
Benefits                          NaN
TotalPay                    153117.67
TotalPayBenefits            153117.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 1998, dtype: object)
(1999, Id                                                2000
EmployeeName                              KIRK TOMIOKA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.52
OvertimePay                                    5723.13
OtherPay                                       16909.5
Benefits                                           NaN
TotalPay                                     153114.15
TotalPayBenefits                             153114.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 1999, dtype: object)
(2000, Id                                                2001
EmployeeName                            STEPHAN THORNE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.65
OvertimePay                                    1056.94
OtherPay                                       3011.62
Benefits                                           NaN
TotalPay                                     153113.21
TotalPayBenefits                             153113.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2000, dtype: object)
(2001, Id                                    2002
EmployeeName                   SWATI PATEL
JobTitle            SUPERVISING PHARMACIST
BasePay                          151888.03
OvertimePay                            0.0
OtherPay                            1200.0
Benefits                               NaN
TotalPay                         153088.03
TotalPayBenefits                 153088.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2001, dtype: object)
(2002, Id                                                2003
EmployeeName                               BRIAN OGAWA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.51
OvertimePay                                   15434.77
OtherPay                                        7159.6
Benefits                                           NaN
TotalPay                                     153075.88
TotalPayBenefits                             153075.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2002, dtype: object)
(2003, Id                           2004
EmployeeName        BLAKE SUMMERS
JobTitle               MANAGER VI
BasePay                 153071.47
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153071.47
TotalPayBenefits        153071.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2003, dtype: object)
(2004, Id                           2005
EmployeeName           PAUL MAZZA
JobTitle               MANAGER VI
BasePay                 153070.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.65
TotalPayBenefits        153070.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2004, dtype: object)
(2005, Id                               2006
EmployeeName        JAIME FLORES-LOVO
JobTitle                   MANAGER VI
BasePay                     153070.64
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    153070.64
TotalPayBenefits            153070.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2005, dtype: object)
(2006, Id                           2007
EmployeeName        GREGORY MAYER
JobTitle               MANAGER VI
BasePay                 153070.62
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.62
TotalPayBenefits        153070.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2006, dtype: object)
(2007, Id                             2008
EmployeeName        JOCELYN QUINTOS
JobTitle                 MANAGER VI
BasePay                   153070.61
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  153070.61
TotalPayBenefits          153070.61
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2007, dtype: object)
(2008, Id                           2009
EmployeeName             EMMA WOO
JobTitle               MANAGER VI
BasePay                 153070.61
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.61
TotalPayBenefits        153070.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2008, dtype: object)
(2009, Id                                 2010
EmployeeName             SUSAN REYNOLDS
JobTitle            DEPUTY DIRECTOR III
BasePay                        153070.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       153070.6
TotalPayBenefits               153070.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2009, dtype: object)
(2010, Id                           2011
EmployeeName        MATTHEW SMYTH
JobTitle               MANAGER VI
BasePay                 153070.59
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.59
TotalPayBenefits        153070.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2010, dtype: object)
(2011, Id                            2012
EmployeeName        RAFAEL CENTENO
JobTitle                MANAGER VI
BasePay                  153070.58
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 153070.58
TotalPayBenefits         153070.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2011, dtype: object)
(2012, Id                            2013
EmployeeName        DARIUSH KAYHAN
JobTitle                MANAGER VI
BasePay                  153070.58
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 153070.58
TotalPayBenefits         153070.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2012, dtype: object)
(2013, Id                            2014
EmployeeName        MATTHEW REEVES
JobTitle                MANAGER VI
BasePay                  153070.58
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 153070.58
TotalPayBenefits         153070.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2013, dtype: object)
(2014, Id                           2015
EmployeeName        TERESA SERATA
JobTitle               MANAGER VI
BasePay                 153070.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.57
TotalPayBenefits        153070.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2014, dtype: object)
(2015, Id                           2016
EmployeeName           SOPHIA HOM
JobTitle               MANAGER VI
BasePay                 153070.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.57
TotalPayBenefits        153070.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2015, dtype: object)
(2016, Id                           2017
EmployeeName        LAWRENCE FUNK
JobTitle               MANAGER VI
BasePay                 153070.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.57
TotalPayBenefits        153070.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2016, dtype: object)
(2017, Id                             2018
EmployeeName        JEREMY HALLISEY
JobTitle                 MANAGER VI
BasePay                   153070.57
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  153070.57
TotalPayBenefits          153070.57
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2017, dtype: object)
(2018, Id                                 2019
EmployeeName         CHRISTINE ANDERSON
JobTitle            DEPUTY DIRECTOR III
BasePay                       153070.56
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      153070.56
TotalPayBenefits              153070.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2018, dtype: object)
(2019, Id                                                           2020
EmployeeName                                        DIANA HAMMONS
JobTitle            MANAGER VII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 153070.55
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                153070.55
TotalPayBenefits                                        153070.55
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 2019, dtype: object)
(2020, Id                             2021
EmployeeName        DANIEL GONZALES
JobTitle                 MANAGER VI
BasePay                   153070.54
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  153070.54
TotalPayBenefits          153070.54
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2020, dtype: object)
(2021, Id                           2022
EmployeeName           ANNE OKUBO
JobTitle               MANAGER VI
BasePay                 153070.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.53
TotalPayBenefits        153070.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2021, dtype: object)
(2022, Id                                 2023
EmployeeName               PAMELA LEVIN
JobTitle            DEPUTY DIRECTOR III
BasePay                       153070.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      153070.53
TotalPayBenefits              153070.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2022, dtype: object)
(2023, Id                              2024
EmployeeName        CHARLES THOMPSON
JobTitle                  MANAGER VI
BasePay                    153070.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   153070.51
TotalPayBenefits           153070.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2023, dtype: object)
(2024, Id                           2025
EmployeeName        ZIHONG GORMAN
JobTitle               MANAGER VI
BasePay                 153070.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153070.51
TotalPayBenefits        153070.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2024, dtype: object)
(2025, Id                                 2026
EmployeeName               LEO LEVENSON
JobTitle            DEPUTY DIRECTOR III
BasePay                       153070.49
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      153070.49
TotalPayBenefits              153070.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2025, dtype: object)
(2026, Id                                 2027
EmployeeName               NANCY ALFARO
JobTitle            DEPUTY DIRECTOR III
BasePay                       153070.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      153070.36
TotalPayBenefits              153070.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2026, dtype: object)
(2027, Id                              2028
EmployeeName         OFELIA THOMPSON
JobTitle            REGISTERED NURSE
BasePay                     123321.0
OvertimePay                 11538.45
OtherPay                    18204.77
Benefits                         NaN
TotalPay                   153064.22
TotalPayBenefits           153064.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2027, dtype: object)
(2028, Id                                2029
EmployeeName               DAVID KUCIA
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                   22102.37
OtherPay                      13653.39
Benefits                           NaN
TotalPay                     153059.45
TotalPayBenefits             153059.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2028, dtype: object)
(2029, Id                           2030
EmployeeName          JOHN UPDIKE
JobTitle                MANAGER V
BasePay                 150547.59
OvertimePay                   0.0
OtherPay                  2504.26
Benefits                      NaN
TotalPay                153051.85
TotalPayBenefits        153051.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2029, dtype: object)
(2030, Id                              2031
EmployeeName          VICTORIA JONES
JobTitle            REGISTERED NURSE
BasePay                     125559.7
OvertimePay                  4555.85
OtherPay                    22936.11
Benefits                         NaN
TotalPay                   153051.66
TotalPayBenefits           153051.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2030, dtype: object)
(2031, Id                                                2032
EmployeeName                         JENNIFER DORANTES
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149050.64
OvertimePay                                    3170.82
OtherPay                                        824.13
Benefits                                           NaN
TotalPay                                     153045.59
TotalPayBenefits                             153045.59
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2031, dtype: object)
(2032, Id                                         2033
EmployeeName                       ROBERT KISHI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               138392.86
OvertimePay                                 0.0
OtherPay                               14652.59
Benefits                                    NaN
TotalPay                              153045.45
TotalPayBenefits                      153045.45
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2032, dtype: object)
(2033, Id                           2034
EmployeeName         JULIA DAWSON
JobTitle               MANAGER VI
BasePay                 153036.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                153036.65
TotalPayBenefits        153036.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2033, dtype: object)
(2034, Id                             2035
EmployeeName        ALMIR GUIMARAES
JobTitle                  MANAGER V
BasePay                   153016.85
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  153016.85
TotalPayBenefits          153016.85
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2034, dtype: object)
(2035, Id                                          2036
EmployeeName                          NANCY WONG
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152999.03
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152999.03
TotalPayBenefits                       152999.03
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2035, dtype: object)
(2036, Id                                              2037
EmployeeName                                TOM YUEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                  9985.63
OtherPay                                    12528.11
Benefits                                         NaN
TotalPay                                    152995.3
TotalPayBenefits                            152995.3
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2036, dtype: object)
(2037, Id                                               2038
EmployeeName                            MICHAEL SLADE
JobTitle            LIEUTENANT II (POLICE DEPARTMENT)
BasePay                                      54505.38
OvertimePay                                       0.0
OtherPay                                     98480.01
Benefits                                          NaN
TotalPay                                    152985.39
TotalPayBenefits                            152985.39
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2037, dtype: object)
(2038, Id                                 2039
EmployeeName                  DAVID KIM
JobTitle            STATIONARY ENGINEER
BasePay                         81091.4
OvertimePay                    61806.15
OtherPay                       10074.64
Benefits                            NaN
TotalPay                      152972.19
TotalPayBenefits              152972.19
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2038, dtype: object)
(2039, Id                           2040
EmployeeName        DENNIS FOSTER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              26385.95
OtherPay                  20624.0
Benefits                      NaN
TotalPay                152944.61
TotalPayBenefits        152944.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2039, dtype: object)
(2040, Id                                2041
EmployeeName             MATTHEW LOBRE
JobTitle            POLICE OFFICER III
BasePay                      112441.81
OvertimePay                    6923.35
OtherPay                      33572.59
Benefits                           NaN
TotalPay                     152937.75
TotalPayBenefits             152937.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2040, dtype: object)
(2041, Id                              2042
EmployeeName        CHARLES FARRUGIA
JobTitle                 FIREFIGHTER
BasePay                    105934.66
OvertimePay                 28848.49
OtherPay                    18141.07
Benefits                         NaN
TotalPay                   152924.22
TotalPayBenefits           152924.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2041, dtype: object)
(2042, Id                           2043
EmployeeName        CHERYL NASHIR
JobTitle               MANAGER VI
BasePay                 152920.07
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                152920.07
TotalPayBenefits        152920.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2042, dtype: object)
(2043, Id                                              2044
EmployeeName                               HENRY LAM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.87
OvertimePay                                  9855.59
OtherPay                                    12578.68
Benefits                                         NaN
TotalPay                                   152892.14
TotalPayBenefits                           152892.14
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2043, dtype: object)
(2044, Id                                          2045
EmployeeName                        DONNA JACOBS
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.69
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.69
TotalPayBenefits                       152867.69
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2044, dtype: object)
(2045, Id                                          2046
EmployeeName                      NORMAN GOLDWYN
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.36
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.36
TotalPayBenefits                       152867.36
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2045, dtype: object)
(2046, Id                                          2047
EmployeeName                     MITCHELL SUTTON
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.36
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.36
TotalPayBenefits                       152867.36
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2046, dtype: object)
(2047, Id                                          2048
EmployeeName                          DALE RILEY
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.35
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.35
TotalPayBenefits                       152867.35
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2047, dtype: object)
(2048, Id                                          2049
EmployeeName                      PAUL KARAWANNY
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.32
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.32
TotalPayBenefits                       152867.32
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2048, dtype: object)
(2049, Id                                          2050
EmployeeName                         MARCO BRUNO
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                 152867.3
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                152867.3
TotalPayBenefits                        152867.3
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2049, dtype: object)
(2050, Id                                          2051
EmployeeName                        KJELD MOLVIG
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.28
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.28
TotalPayBenefits                       152867.28
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2050, dtype: object)
(2051, Id                                          2052
EmployeeName                       ANITA SEVILLA
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                152867.27
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               152867.27
TotalPayBenefits                       152867.27
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2051, dtype: object)
(2052, Id                                                2053
EmployeeName                              DONNA LOFTUS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.82
OvertimePay                                   10056.62
OtherPay                                      12339.82
Benefits                                           NaN
TotalPay                                     152863.26
TotalPayBenefits                             152863.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2052, dtype: object)
(2053, Id                                  2054
EmployeeName        DAISY MAE QUITORIANO
JobTitle                   NURSE MANAGER
BasePay                         142844.0
OvertimePay                          0.0
OtherPay                         9999.08
Benefits                             NaN
TotalPay                       152843.08
TotalPayBenefits               152843.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2053, dtype: object)
(2054, Id                                    2055
EmployeeName        SHERYL CALIX RONQUILLO
JobTitle                     NURSE MANAGER
BasePay                           142844.0
OvertimePay                            0.0
OtherPay                           9999.08
Benefits                               NaN
TotalPay                         152843.08
TotalPayBenefits                 152843.08
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2054, dtype: object)
(2055, Id                                              2056
EmployeeName                        MALCOLM ANDERSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.92
OvertimePay                                   5809.6
OtherPay                                    16570.75
Benefits                                         NaN
TotalPay                                   152838.27
TotalPayBenefits                           152838.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2055, dtype: object)
(2056, Id                                               2057
EmployeeName                         LAM DALAROY SIAO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                     101666.93
OvertimePay                                  35216.66
OtherPay                                     15954.33
Benefits                                          NaN
TotalPay                                    152837.92
TotalPayBenefits                            152837.92
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2056, dtype: object)
(2057, Id                              2058
EmployeeName        FREDERICK REPPUN
JobTitle                 FIREFIGHTER
BasePay                      56220.0
OvertimePay                 13317.33
OtherPay                    83294.48
Benefits                         NaN
TotalPay                   152831.81
TotalPayBenefits           152831.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2057, dtype: object)
(2058, Id                           2059
EmployeeName         ANNE RUGGELS
JobTitle               MANAGER VI
BasePay                 152807.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                152807.16
TotalPayBenefits        152807.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2058, dtype: object)
(2059, Id                              2060
EmployeeName         ZENAIDA CAJILIG
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   8058.6
OtherPay                     17756.6
Benefits                         NaN
TotalPay                    152799.2
TotalPayBenefits            152799.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2059, dtype: object)
(2060, Id                             2061
EmployeeName        RONALD ROBINSON
JobTitle                FIREFIGHTER
BasePay                   115441.84
OvertimePay                22670.35
OtherPay                   14624.33
Benefits                        NaN
TotalPay                  152736.52
TotalPayBenefits          152736.52
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2060, dtype: object)
(2061, Id                                2062
EmployeeName            MICHAEL PALADA
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                   12467.03
OtherPay                      27824.28
Benefits                           NaN
TotalPay                     152733.13
TotalPayBenefits             152733.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2061, dtype: object)
(2062, Id                                                               2063
EmployeeName                                             GERALD WHITE
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     131668.14
OvertimePay                                                       0.0
OtherPay                                                     21045.71
Benefits                                                          NaN
TotalPay                                                    152713.85
TotalPayBenefits                                            152713.85
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2062, dtype: object)
(2063, Id                                2064
EmployeeName               JAMES JONES
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   37238.28
OtherPay                        3071.6
Benefits                           NaN
TotalPay                     152710.96
TotalPayBenefits             152710.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2063, dtype: object)
(2064, Id                            2065
EmployeeName          EDWIN CLAROS
JobTitle            DEPUTY SHERIFF
BasePay                   86547.75
OvertimePay               54092.26
OtherPay                   12052.8
Benefits                       NaN
TotalPay                 152692.81
TotalPayBenefits         152692.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2064, dtype: object)
(2065, Id                                2066
EmployeeName            MICHAEL BECKER
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                    10823.4
OtherPay                      24554.17
Benefits                           NaN
TotalPay                     152681.26
TotalPayBenefits             152681.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2065, dtype: object)
(2066, Id                                       2067
EmployeeName                    ALANNA WALKER
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              98396.76
OvertimePay                          16516.01
OtherPay                             37763.29
Benefits                                  NaN
TotalPay                            152676.06
TotalPayBenefits                    152676.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2066, dtype: object)
(2067, Id                                                2068
EmployeeName                               GREGORY YEE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.45
OvertimePay                                    1746.04
OtherPay                                       1876.05
Benefits                                           NaN
TotalPay                                     152666.54
TotalPayBenefits                             152666.54
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2067, dtype: object)
(2068, Id                                              2069
EmployeeName                            BRIAN PETITI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.22
OvertimePay                                 10382.86
OtherPay                                    11770.68
Benefits                                         NaN
TotalPay                                   152658.76
TotalPayBenefits                           152658.76
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2068, dtype: object)
(2069, Id                              2070
EmployeeName        MICHAEL WILLIAMS
JobTitle             SENIOR ENGINEER
BasePay                    140003.02
OvertimePay                      0.0
OtherPay                    12641.82
Benefits                         NaN
TotalPay                   152644.84
TotalPayBenefits           152644.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2069, dtype: object)
(2070, Id                                              2071
EmployeeName                              JOHN LEWIS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130504.7
OvertimePay                                   7118.8
OtherPay                                     15014.6
Benefits                                         NaN
TotalPay                                    152638.1
TotalPayBenefits                            152638.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2070, dtype: object)
(2071, Id                                2072
EmployeeName        MARIA ROELLA ANTOC
JobTitle                 NURSE MANAGER
BasePay                       142844.0
OvertimePay                        0.0
OtherPay                       9768.33
Benefits                           NaN
TotalPay                     152612.33
TotalPayBenefits             152612.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2071, dtype: object)
(2072, Id                            2073
EmployeeName        HENRY THOMPSON
JobTitle               MANAGER VII
BasePay                  152600.82
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 152600.82
TotalPayBenefits         152600.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2072, dtype: object)
(2073, Id                           2074
EmployeeName         FRANK ROLDAN
JobTitle              FIREFIGHTER
BasePay                 105934.73
OvertimePay              29283.18
OtherPay                 17374.58
Benefits                      NaN
TotalPay                152592.49
TotalPayBenefits        152592.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2073, dtype: object)
(2074, Id                                                2075
EmployeeName                           ROBERT MCMILLAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        39472.0
OvertimePay                                   29686.02
OtherPay                                      83424.09
Benefits                                           NaN
TotalPay                                     152582.11
TotalPayBenefits                             152582.11
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2074, dtype: object)
(2075, Id                                              2076
EmployeeName                           DANIEL GREELY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                  8142.87
OtherPay                                    13947.43
Benefits                                         NaN
TotalPay                                   152548.27
TotalPayBenefits                           152548.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2075, dtype: object)
(2076, Id                                                2077
EmployeeName                               DEAN TAYLOR
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                    5624.02
OtherPay                                      16466.09
Benefits                                           NaN
TotalPay                                     152548.07
TotalPayBenefits                             152548.07
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2076, dtype: object)
(2077, Id                                                          2078
EmployeeName                                           DEREK KIM
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 139111.3
OvertimePay                                                  0.0
OtherPay                                                13428.02
Benefits                                                     NaN
TotalPay                                               152539.32
TotalPayBenefits                                       152539.32
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2077, dtype: object)
(2078, Id                                                2079
EmployeeName                             PATRICK TOBIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      135339.72
OvertimePay                                    3649.36
OtherPay                                      13545.13
Benefits                                           NaN
TotalPay                                     152534.21
TotalPayBenefits                             152534.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2078, dtype: object)
(2079, Id                               2080
EmployeeName        ALBERT BRONSON JR
JobTitle                  FIREFIGHTER
BasePay                     105934.68
OvertimePay                   36751.6
OtherPay                      9842.83
Benefits                          NaN
TotalPay                    152529.11
TotalPayBenefits            152529.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2079, dtype: object)
(2080, Id                              2081
EmployeeName         GRACE FORTALEZA
JobTitle            REGISTERED NURSE
BasePay                     121367.4
OvertimePay                  10256.4
OtherPay                    20800.63
Benefits                         NaN
TotalPay                   152424.43
TotalPayBenefits           152424.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2080, dtype: object)
(2081, Id                                    2082
EmployeeName                   MICHAEL DAY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122810.03
OvertimePay                        13985.2
OtherPay                          15623.46
Benefits                               NaN
TotalPay                         152418.69
TotalPayBenefits                 152418.69
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2081, dtype: object)
(2082, Id                               2083
EmployeeName        TERESITA COSMIANO
JobTitle             REGISTERED NURSE
BasePay                      123809.4
OvertimePay                   6410.25
OtherPay                     22197.35
Benefits                          NaN
TotalPay                     152417.0
TotalPayBenefits             152417.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2082, dtype: object)
(2083, Id                                              2084
EmployeeName                            RAYMOND CRUZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    131098.18
OvertimePay                                   3519.4
OtherPay                                    17761.89
Benefits                                         NaN
TotalPay                                   152379.47
TotalPayBenefits                           152379.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2083, dtype: object)
(2084, Id                                               2085
EmployeeName                            ALLEN BARLAAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      78337.31
OvertimePay                                  67796.89
OtherPay                                      6238.19
Benefits                                          NaN
TotalPay                                    152372.39
TotalPayBenefits                            152372.39
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2084, dtype: object)
(2085, Id                                2086
EmployeeName            SUSAN ROLOVICH
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    11763.2
OtherPay                       28174.6
Benefits                           NaN
TotalPay                     152359.23
TotalPayBenefits             152359.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2085, dtype: object)
(2086, Id                                                          2087
EmployeeName                                           NEAL POPP
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                145983.24
OvertimePay                                                  0.0
OtherPay                                                 6338.48
Benefits                                                     NaN
TotalPay                                               152321.72
TotalPayBenefits                                       152321.72
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2086, dtype: object)
(2087, Id                                                        2088
EmployeeName                                     DANIEL SILVER
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              125142.53
OvertimePay                                           16885.49
OtherPay                                              10286.65
Benefits                                                   NaN
TotalPay                                             152314.67
TotalPayBenefits                                     152314.67
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 2087, dtype: object)
(2088, Id                                         2089
EmployeeName                     TIMOTHY FARMER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            18535.23
OtherPay                               10673.69
Benefits                                    NaN
TotalPay                              152313.94
TotalPayBenefits                      152313.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2088, dtype: object)
(2089, Id                                              2090
EmployeeName                               CRAIG TOM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.67
OvertimePay                                 11810.27
OtherPay                                    10020.66
Benefits                                         NaN
TotalPay                                    152307.6
TotalPayBenefits                            152307.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2089, dtype: object)
(2090, Id                                     2091
EmployeeName                DAVID AUGUSTINE
JobTitle            ATTORNEY, TAX COLLECTOR
BasePay                           150138.06
OvertimePay                             0.0
OtherPay                            2162.27
Benefits                                NaN
TotalPay                          152300.33
TotalPayBenefits                  152300.33
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2090, dtype: object)
(2091, Id                                                            2092
EmployeeName                                      TERESITA NAVARRO
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  152299.22
OvertimePay                                                    0.0
OtherPay                                                       0.0
Benefits                                                       NaN
TotalPay                                                 152299.22
TotalPayBenefits                                         152299.22
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 2091, dtype: object)
(2092, Id                                              2093
EmployeeName                       HOWARD WEATHERSBY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                 11985.96
OtherPay                                     9763.15
Benefits                                         NaN
TotalPay                                   152230.65
TotalPayBenefits                           152230.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2092, dtype: object)
(2093, Id                                2094
EmployeeName             GENELL HILTON
JobTitle            NURSE PRACTITIONER
BasePay                      134994.59
OvertimePay                     7216.3
OtherPay                       10018.7
Benefits                           NaN
TotalPay                     152229.59
TotalPayBenefits             152229.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2093, dtype: object)
(2094, Id                                    2095
EmployeeName                 ROBERT THOMAS
JobTitle            SUPERVISING PHARMACIST
BasePay                          150268.75
OvertimePay                            0.0
OtherPay                            1950.0
Benefits                               NaN
TotalPay                         152218.75
TotalPayBenefits                 152218.75
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2094, dtype: object)
(2095, Id                                         2096
EmployeeName                      BRICE PEOPLES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            13059.19
OtherPay                               16054.24
Benefits                                    NaN
TotalPay                              152218.44
TotalPayBenefits                      152218.44
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2095, dtype: object)
(2096, Id                           2097
EmployeeName         SHOU MEI LIN
JobTitle            SPECIAL NURSE
BasePay                  123140.6
OvertimePay              10488.29
OtherPay                 18588.53
Benefits                      NaN
TotalPay                152217.42
TotalPayBenefits        152217.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2096, dtype: object)
(2097, Id                             2098
EmployeeName        GREGORY CUTCHER
JobTitle              NURSE MANAGER
BasePay                   136227.01
OvertimePay                     0.0
OtherPay                    15956.7
Benefits                        NaN
TotalPay                  152183.71
TotalPayBenefits          152183.71
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2097, dtype: object)
(2098, Id                           2099
EmployeeName          AMY SWANSON
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              38685.52
OtherPay                  7555.09
Benefits                      NaN
TotalPay                152175.29
TotalPayBenefits        152175.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2098, dtype: object)
(2099, Id                                         2100
EmployeeName                        DAWN DEWITT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            19123.83
OtherPay                                9928.44
Benefits                                    NaN
TotalPay                              152157.28
TotalPayBenefits                      152157.28
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2099, dtype: object)
(2100, Id                                                          2101
EmployeeName                                       ANGELA CARMEN
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                152119.52
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               152119.52
TotalPayBenefits                                       152119.52
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2100, dtype: object)
(2101, Id                                       2102
EmployeeName                     PETER KEARNS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             152105.74
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            152105.74
TotalPayBenefits                    152105.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2101, dtype: object)
(2102, Id                                              2103
EmployeeName                            JAMES MILLER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.22
OvertimePay                                  10563.0
OtherPay                                    10984.96
Benefits                                         NaN
TotalPay                                   152053.18
TotalPayBenefits                           152053.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2102, dtype: object)
(2103, Id                              2104
EmployeeName           ROSIE LEGASPI
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   8058.6
OtherPay                    16986.79
Benefits                         NaN
TotalPay                   152029.39
TotalPayBenefits           152029.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2103, dtype: object)
(2104, Id                                2105
EmployeeName           WILLIAM MCMANUS
JobTitle            TRANSIT SUPERVISOR
BasePay                        83213.1
OvertimePay                   56601.25
OtherPay                      12144.22
Benefits                           NaN
TotalPay                     151958.57
TotalPayBenefits             151958.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2104, dtype: object)
(2105, Id                                                2106
EmployeeName                             JAMES GARRITY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.54
OvertimePay                                    4240.28
OtherPay                                      17208.54
Benefits                                           NaN
TotalPay                                     151930.36
TotalPayBenefits                             151930.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2105, dtype: object)
(2106, Id                                              2107
EmployeeName                               MARK SHEA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 10250.22
OtherPay                                    11146.56
Benefits                                         NaN
TotalPay                                   151878.33
TotalPayBenefits                           151878.33
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2106, dtype: object)
(2107, Id                                              2108
EmployeeName                           MARK OBROCHTA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130481.5
OvertimePay                                  12551.8
OtherPay                                     8838.59
Benefits                                         NaN
TotalPay                                   151871.89
TotalPayBenefits                           151871.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2107, dtype: object)
(2108, Id                                              2109
EmployeeName                                KIRK YIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    132713.25
OvertimePay                                  6735.87
OtherPay                                    12359.74
Benefits                                         NaN
TotalPay                                   151808.86
TotalPayBenefits                           151808.86
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2108, dtype: object)
(2109, Id                                      2110
EmployeeName                    RICARDO OLEA
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            151212.42
OvertimePay                              0.0
OtherPay                              575.73
Benefits                                 NaN
TotalPay                           151788.15
TotalPayBenefits                   151788.15
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2109, dtype: object)
(2110, Id                                              2111
EmployeeName                          JOSEPH ALLEGRO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    135316.09
OvertimePay                                  7604.06
OtherPay                                     8862.32
Benefits                                         NaN
TotalPay                                   151782.47
TotalPayBenefits                           151782.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2110, dtype: object)
(2111, Id                              2112
EmployeeName            LOUIS DORSEY
JobTitle            TRAIN CONTROLLER
BasePay                    103562.93
OvertimePay                 35489.24
OtherPay                    12711.48
Benefits                         NaN
TotalPay                   151763.65
TotalPayBenefits           151763.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2111, dtype: object)
(2112, Id                           2113
EmployeeName          JERRY SHEAR
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              29244.85
OtherPay                 16566.23
Benefits                      NaN
TotalPay                151745.73
TotalPayBenefits        151745.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2112, dtype: object)
(2113, Id                                2114
EmployeeName            REBECCA SIEGEL
JobTitle            NURSE PRACTITIONER
BasePay                      147138.28
OvertimePay                        0.0
OtherPay                       4606.74
Benefits                           NaN
TotalPay                     151745.02
TotalPayBenefits             151745.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2113, dtype: object)
(2114, Id                                                2115
EmployeeName                           SPENCER GREGORY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.95
OvertimePay                                    1566.49
OtherPay                                      19715.72
Benefits                                           NaN
TotalPay                                     151740.16
TotalPayBenefits                             151740.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2114, dtype: object)
(2115, Id                                    2116
EmployeeName                 NICHOLAS HOLL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                       13655.93
OtherPay                           15657.2
Benefits                               NaN
TotalPay                         151718.14
TotalPayBenefits                 151718.14
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2115, dtype: object)
(2116, Id                                  2117
EmployeeName                RONALD TERRY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121630.43
OvertimePay                     13630.66
OtherPay                        16432.53
Benefits                             NaN
TotalPay                       151693.62
TotalPayBenefits               151693.62
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2116, dtype: object)
(2117, Id                                  2118
EmployeeName                   ZHI HUANG
JobTitle            PHYSICIAN SPECIALIST
BasePay                        147804.03
OvertimePay                          0.0
OtherPay                          3869.0
Benefits                             NaN
TotalPay                       151673.03
TotalPayBenefits               151673.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2117, dtype: object)
(2118, Id                                              2119
EmployeeName                              ALBERT LEE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                 11005.94
OtherPay                                    10171.68
Benefits                                         NaN
TotalPay                                   151659.13
TotalPayBenefits                           151659.13
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2118, dtype: object)
(2119, Id                                              2120
EmployeeName                          KEITH MATTHEWS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129841.16
OvertimePay                                 14255.48
OtherPay                                     7549.83
Benefits                                         NaN
TotalPay                                   151646.47
TotalPayBenefits                           151646.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2119, dtype: object)
(2120, Id                                       2121
EmployeeName                  GREGORY STEWART
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              140564.0
OvertimePay                               0.0
OtherPay                             11074.92
Benefits                                  NaN
TotalPay                            151638.92
TotalPayBenefits                    151638.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2120, dtype: object)
(2121, Id                               2122
EmployeeName         KENNETH FERRIGNO
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.59
OvertimePay                   1692.68
OtherPay                      11007.6
Benefits                          NaN
TotalPay                    151627.87
TotalPayBenefits            151627.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2121, dtype: object)
(2122, Id                                              2123
EmployeeName                          GEORGIA SAWYER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.16
OvertimePay                                 16078.08
OtherPay                                      5011.6
Benefits                                         NaN
TotalPay                                   151594.84
TotalPayBenefits                           151594.84
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2122, dtype: object)
(2123, Id                                         2124
EmployeeName                      HEATHER PIPER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                            12404.49
OtherPay                               16054.21
Benefits                                    NaN
TotalPay                               151563.7
TotalPayBenefits                       151563.7
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2123, dtype: object)
(2124, Id                                 2125
EmployeeName        EDDIEBERTO MARTINEZ
JobTitle              POLICE OFFICER II
BasePay                       110223.07
OvertimePay                    33451.71
OtherPay                        7869.09
Benefits                            NaN
TotalPay                      151543.87
TotalPayBenefits              151543.87
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2124, dtype: object)
(2125, Id                                              2126
EmployeeName                             JASON LYNCH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130418.8
OvertimePay                                  5700.16
OtherPay                                     15419.4
Benefits                                         NaN
TotalPay                                   151538.36
TotalPayBenefits                           151538.36
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2125, dtype: object)
(2126, Id                                              2127
EmployeeName                       JENNIFER DUDOROFF
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.29
OvertimePay                                  3911.68
OtherPay                                    17122.26
Benefits                                         NaN
TotalPay                                   151468.23
TotalPayBenefits                           151468.23
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2126, dtype: object)
(2127, Id                                              2128
EmployeeName                              KYLE CHING
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 11779.83
OtherPay                                     9203.92
Benefits                                         NaN
TotalPay                                    151465.3
TotalPayBenefits                            151465.3
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2127, dtype: object)
(2128, Id                              2129
EmployeeName        DANIEL MCCLOSKEY
JobTitle                 FIREFIGHTER
BasePay                    105934.64
OvertimePay                 36390.56
OtherPay                     9139.48
Benefits                         NaN
TotalPay                   151464.68
TotalPayBenefits           151464.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2128, dtype: object)
(2129, Id                                              2130
EmployeeName                         JOSEPH BARRETTA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130528.83
OvertimePay                                  9670.47
OtherPay                                     11236.5
Benefits                                         NaN
TotalPay                                    151435.8
TotalPayBenefits                            151435.8
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2129, dtype: object)
(2130, Id                                              2131
EmployeeName                           EDMUND GARCIA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130364.78
OvertimePay                                  6122.42
OtherPay                                    14935.79
Benefits                                         NaN
TotalPay                                   151422.99
TotalPayBenefits                           151422.99
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2130, dtype: object)
(2131, Id                                         2132
EmployeeName                         MARC EVANS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               135660.89
OvertimePay                             3530.66
OtherPay                               12230.37
Benefits                                    NaN
TotalPay                              151421.92
TotalPayBenefits                      151421.92
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2131, dtype: object)
(2132, Id                               2133
EmployeeName        RANDALL HENDERSON
JobTitle                  FIREFIGHTER
BasePay                     105934.63
OvertimePay                  28695.62
OtherPay                     16777.52
Benefits                          NaN
TotalPay                    151407.77
TotalPayBenefits            151407.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2132, dtype: object)
(2133, Id                                              2134
EmployeeName                            ERIC LEDERER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.16
OvertimePay                                  7024.47
OtherPay                                    13875.53
Benefits                                         NaN
TotalPay                                   151405.16
TotalPayBenefits                           151405.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2133, dtype: object)
(2134, Id                                                2135
EmployeeName                              LORI CADIGAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      128872.84
OvertimePay                                    9779.12
OtherPay                                      12741.32
Benefits                                           NaN
TotalPay                                     151393.28
TotalPayBenefits                             151393.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2134, dtype: object)
(2135, Id                                2136
EmployeeName          REBECCA WIGHTMAN
JobTitle            COURT COMMISSIONER
BasePay                       151387.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      151387.6
TotalPayBenefits              151387.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2135, dtype: object)
(2136, Id                                              2137
EmployeeName                            BARRETT CHAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.44
OvertimePay                                  17608.0
OtherPay                                     3255.22
Benefits                                         NaN
TotalPay                                   151339.66
TotalPayBenefits                           151339.66
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2136, dtype: object)
(2137, Id                              2138
EmployeeName                CHEE LAM
JobTitle            REGISTERED NURSE
BasePay                    127035.28
OvertimePay                  7838.82
OtherPay                    16459.92
Benefits                         NaN
TotalPay                   151334.02
TotalPayBenefits           151334.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2137, dtype: object)
(2138, Id                           2139
EmployeeName         ADRIENNE PON
JobTitle               MANAGER VI
BasePay                 151331.42
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                151331.42
TotalPayBenefits        151331.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2138, dtype: object)
(2139, Id                                                2140
EmployeeName                               FELIX THIEU
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.49
OvertimePay                                   12011.58
OtherPay                                       8836.18
Benefits                                           NaN
TotalPay                                     151329.25
TotalPayBenefits                             151329.25
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2139, dtype: object)
(2140, Id                             2141
EmployeeName        DENISE MARTINEZ
JobTitle                 MANAGER VI
BasePay                   151312.86
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  151312.86
TotalPayBenefits          151312.86
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2140, dtype: object)
(2141, Id                                                2142
EmployeeName                              MOLLY PENGEL
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149049.76
OvertimePay                                    1219.88
OtherPay                                       1031.32
Benefits                                           NaN
TotalPay                                     151300.96
TotalPayBenefits                             151300.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2141, dtype: object)
(2142, Id                           2143
EmployeeName        RONALD CUPIDO
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              30142.53
OtherPay                 15208.75
Benefits                      NaN
TotalPay                151285.93
TotalPayBenefits        151285.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2142, dtype: object)
(2143, Id                                                2144
EmployeeName                           RICHARD DANIELE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                     7969.5
OtherPay                                      12830.76
Benefits                                           NaN
TotalPay                                     151281.83
TotalPayBenefits                             151281.83
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2143, dtype: object)
(2144, Id                                                   2145
EmployeeName                                   SIMON PANG
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                         136939.09
OvertimePay                                           0.0
OtherPay                                         14331.15
Benefits                                              NaN
TotalPay                                        151270.24
TotalPayBenefits                                151270.24
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 2144, dtype: object)
(2145, Id                                              2146
EmployeeName                             KEVIN HEALY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.89
OvertimePay                                   5923.1
OtherPay                                     14841.8
Benefits                                         NaN
TotalPay                                   151222.79
TotalPayBenefits                           151222.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2145, dtype: object)
(2146, Id                                                        2147
EmployeeName                                    WILLIAM TOOMEY
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128147.13
OvertimePay                                           16148.75
OtherPay                                               6894.91
Benefits                                                   NaN
TotalPay                                             151190.79
TotalPayBenefits                                     151190.79
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 2146, dtype: object)
(2147, Id                            2148
EmployeeName        ALAN CAMARILLO
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               28017.81
OtherPay                  17229.29
Benefits                       NaN
TotalPay                 151181.75
TotalPayBenefits         151181.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2147, dtype: object)
(2148, Id                                              2149
EmployeeName                             RACHEL KARP
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  6347.16
OtherPay                                    14329.85
Benefits                                         NaN
TotalPay                                   151158.56
TotalPayBenefits                           151158.56
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2148, dtype: object)
(2149, Id                                              2150
EmployeeName                         WILLIAM BRACONI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.45
OvertimePay                                 12937.44
OtherPay                                     7697.66
Benefits                                         NaN
TotalPay                                   151116.55
TotalPayBenefits                           151116.55
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2149, dtype: object)
(2150, Id                                2151
EmployeeName           MATTHEW GARDNER
JobTitle            POLICE OFFICER III
BasePay                      117303.67
OvertimePay                    3466.23
OtherPay                      30338.57
Benefits                           NaN
TotalPay                     151108.47
TotalPayBenefits             151108.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2150, dtype: object)
(2151, Id                                2152
EmployeeName              KEVIN MARTIN
JobTitle            POLICE OFFICER III
BasePay                      112416.83
OvertimePay                   10776.24
OtherPay                       27900.9
Benefits                           NaN
TotalPay                     151093.97
TotalPayBenefits             151093.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2151, dtype: object)
(2152, Id                                       2153
EmployeeName                    PAUL CRAWFORD
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127202.99
OvertimePay                           6716.78
OtherPay                             17170.51
Benefits                                  NaN
TotalPay                            151090.28
TotalPayBenefits                    151090.28
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2152, dtype: object)
(2153, Id                            2154
EmployeeName        STEPHEN ENGLER
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               29523.54
OtherPay                  15628.38
Benefits                       NaN
TotalPay                 151086.59
TotalPayBenefits         151086.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2153, dtype: object)
(2154, Id                                         2155
EmployeeName                    AARON STEVENSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122766.66
OvertimePay                            13559.08
OtherPay                               14712.63
Benefits                                    NaN
TotalPay                              151038.37
TotalPayBenefits                      151038.37
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2154, dtype: object)
(2155, Id                              2156
EmployeeName        SHIRLEY GERVACIO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  6446.88
OtherPay                     17605.2
Benefits                         NaN
TotalPay                   151036.08
TotalPayBenefits           151036.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2155, dtype: object)
(2156, Id                                                2157
EmployeeName                           ANGELO PORTELLI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   62672.24
OtherPay                                      10775.82
Benefits                                           NaN
TotalPay                                     151028.46
TotalPayBenefits                             151028.46
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2156, dtype: object)
(2157, Id                              2158
EmployeeName        ROBERT SCHEPPLER
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                 23529.17
OtherPay                    21554.13
Benefits                         NaN
TotalPay                   151017.98
TotalPayBenefits           151017.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2157, dtype: object)
(2158, Id                                              2159
EmployeeName                             DEAN SORGIE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.31
OvertimePay                                  7917.71
OtherPay                                    12635.61
Benefits                                         NaN
TotalPay                                   150987.63
TotalPayBenefits                           150987.63
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2158, dtype: object)
(2159, Id                                                2160
EmployeeName                              DANIEL PEREA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.47
OvertimePay                                     438.83
OtherPay                                        1492.9
Benefits                                           NaN
TotalPay                                      150976.2
TotalPayBenefits                              150976.2
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2159, dtype: object)
(2160, Id                               2161
EmployeeName        KATHERINE GORWOOD
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.65
OvertimePay                   2462.07
OtherPay                      9579.41
Benefits                          NaN
TotalPay                    150969.13
TotalPayBenefits            150969.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2160, dtype: object)
(2161, Id                              2162
EmployeeName             ROLLY JUNIO
JobTitle            POLICE OFFICER I
BasePay                    104882.94
OvertimePay                 11454.25
OtherPay                    34596.47
Benefits                         NaN
TotalPay                   150933.66
TotalPayBenefits           150933.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2161, dtype: object)
(2162, Id                               2163
EmployeeName              EDWIN JAMES
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.59
OvertimePay                   2410.78
OtherPay                      9579.27
Benefits                          NaN
TotalPay                    150917.64
TotalPayBenefits            150917.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2162, dtype: object)
(2163, Id                                                2164
EmployeeName                             MIRIAM PENGEL
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149023.36
OvertimePay                                    1056.94
OtherPay                                        819.86
Benefits                                           NaN
TotalPay                                     150900.16
TotalPayBenefits                             150900.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2163, dtype: object)
(2164, Id                               2165
EmployeeName            WILLIAM KRAUS
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                   35041.6
OtherPay                      5606.34
Benefits                          NaN
TotalPay                    150871.01
TotalPayBenefits            150871.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2164, dtype: object)
(2165, Id                                         2166
EmployeeName                       EUGENE ADAMS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             10307.9
OtherPay                               17454.21
Benefits                                    NaN
TotalPay                              150867.12
TotalPayBenefits                      150867.12
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2165, dtype: object)
(2166, Id                                         2167
EmployeeName            CATHERINE EMMONS-SAMSON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               109966.66
OvertimePay                            30094.78
OtherPay                               10804.17
Benefits                                    NaN
TotalPay                              150865.61
TotalPayBenefits                      150865.61
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2166, dtype: object)
(2167, Id                           2168
EmployeeName        CONRAD BROSAS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              27930.56
OtherPay                 16967.92
Benefits                      NaN
TotalPay                150833.15
TotalPayBenefits        150833.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2167, dtype: object)
(2168, Id                                       2169
EmployeeName                   SHARON REARDON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             150828.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            150828.04
TotalPayBenefits                    150828.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2168, dtype: object)
(2169, Id                                       2170
EmployeeName                LAWRENCE DE SOUZA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             150828.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            150828.04
TotalPayBenefits                    150828.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2169, dtype: object)
(2170, Id                                         2171
EmployeeName                     BRENT STUCKERT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             8205.07
OtherPay                               19487.38
Benefits                                    NaN
TotalPay                              150797.45
TotalPayBenefits                      150797.45
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2170, dtype: object)
(2171, Id                                              2172
EmployeeName                             AVA GARRICK
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.54
OvertimePay                                    754.9
OtherPay                                    19555.73
Benefits                                         NaN
TotalPay                                   150787.17
TotalPayBenefits                           150787.17
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2171, dtype: object)
(2172, Id                                                2173
EmployeeName                            VERE ELLINWOOD
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                       86815.17
OvertimePay                                   55622.52
OtherPay                                        8346.0
Benefits                                           NaN
TotalPay                                     150783.69
TotalPayBenefits                             150783.69
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2172, dtype: object)
(2173, Id                                              2174
EmployeeName                            GEORGE ROSKO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  3401.99
OtherPay                                     16921.8
Benefits                                         NaN
TotalPay                                   150781.75
TotalPayBenefits                           150781.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2173, dtype: object)
(2174, Id                                                2175
EmployeeName                            JEFFREY SKOVER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                    7868.91
OtherPay                                      12427.51
Benefits                                           NaN
TotalPay                                     150777.99
TotalPayBenefits                             150777.99
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2174, dtype: object)
(2175, Id                               2176
EmployeeName         MATTHEW SULLIVAN
JobTitle            POLICE OFFICER II
BasePay                     107797.61
OvertimePay                  16220.74
OtherPay                     26736.29
Benefits                          NaN
TotalPay                    150754.64
TotalPayBenefits            150754.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2175, dtype: object)
(2176, Id                                              2177
EmployeeName                           BRENDA WALKER
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    144868.95
OvertimePay                                      0.0
OtherPay                                      5853.5
Benefits                                         NaN
TotalPay                                   150722.45
TotalPayBenefits                           150722.45
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2176, dtype: object)
(2177, Id                                                2178
EmployeeName                                 JASON FOX
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      149044.49
OvertimePay                                     854.36
OtherPay                                        819.24
Benefits                                           NaN
TotalPay                                     150718.09
TotalPayBenefits                             150718.09
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2177, dtype: object)
(2178, Id                               2179
EmployeeName             SCOTT CAIREL
JobTitle            POLICE OFFICER II
BasePay                     110242.87
OvertimePay                  11544.65
OtherPay                     28891.03
Benefits                          NaN
TotalPay                    150678.55
TotalPayBenefits            150678.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2178, dtype: object)
(2179, Id                             2180
EmployeeName        ENIO SEBASTIANI
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                   10661.15
Benefits                        NaN
TotalPay                  150664.17
TotalPayBenefits          150664.17
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2179, dtype: object)
(2180, Id                           2181
EmployeeName        DAVID D'AMICO
JobTitle              FIREFIGHTER
BasePay                 103589.57
OvertimePay              41897.33
OtherPay                  5107.98
Benefits                      NaN
TotalPay                150594.88
TotalPayBenefits        150594.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2180, dtype: object)
(2181, Id                                2182
EmployeeName         MATTHEW MACKENZIE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   11182.66
OtherPay                       26984.3
Benefits                           NaN
TotalPay                      150588.4
TotalPayBenefits              150588.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2181, dtype: object)
(2182, Id                            2183
EmployeeName             JIMMY BUI
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               58126.61
OtherPay                   5601.67
Benefits                       NaN
TotalPay                 150568.29
TotalPayBenefits         150568.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2182, dtype: object)
(2183, Id                               2184
EmployeeName            PAUL MIYAMOTO
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.58
OvertimePay                   2145.27
OtherPay                      9474.59
Benefits                          NaN
TotalPay                    150547.44
TotalPayBenefits            150547.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2183, dtype: object)
(2184, Id                                2185
EmployeeName        MARILYN OBEDZINSKI
JobTitle            NURSE PRACTITIONER
BasePay                       148982.0
OvertimePay                        0.0
OtherPay                        1525.0
Benefits                           NaN
TotalPay                      150507.0
TotalPayBenefits              150507.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2184, dtype: object)
(2185, Id                                2186
EmployeeName            CARLOS RECINOS
JobTitle            POLICE OFFICER III
BasePay                      117299.49
OvertimePay                   10039.39
OtherPay                       23162.5
Benefits                           NaN
TotalPay                     150501.38
TotalPayBenefits             150501.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2185, dtype: object)
(2186, Id                                2187
EmployeeName               MARK BUHLER
JobTitle            NURSE PRACTITIONER
BasePay                      138805.03
OvertimePay                    1394.29
OtherPay                      10263.75
Benefits                           NaN
TotalPay                     150463.07
TotalPayBenefits             150463.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2186, dtype: object)
(2187, Id                                                2188
EmployeeName                               CARL BONNER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                   15155.22
OtherPay                                       4787.59
Benefits                                           NaN
TotalPay                                     150419.21
TotalPayBenefits                             150419.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2187, dtype: object)
(2188, Id                           2189
EmployeeName          PAULA KEHOE
JobTitle               MANAGER IV
BasePay                 150371.36
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                150371.36
TotalPayBenefits        150371.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2188, dtype: object)
(2189, Id                                         2190
EmployeeName                      KENNETH JONES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                              957.98
OtherPay                                26278.7
Benefits                                    NaN
TotalPay                              150356.68
TotalPayBenefits                      150356.68
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2189, dtype: object)
(2190, Id                              2191
EmployeeName        KIMBERLY GRINTON
JobTitle                 FIREFIGHTER
BasePay                    105934.66
OvertimePay                 27201.47
OtherPay                    17216.08
Benefits                         NaN
TotalPay                   150352.21
TotalPayBenefits           150352.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2190, dtype: object)
(2191, Id                           2192
EmployeeName           KIM NGUYEN
JobTitle               PHARMACIST
BasePay                  133399.0
OvertimePay               16063.4
OtherPay                   884.88
Benefits                      NaN
TotalPay                150347.28
TotalPayBenefits        150347.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2191, dtype: object)
(2192, Id                            2193
EmployeeName        MICHAEL VIEIRA
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               27300.25
OtherPay                  17107.83
Benefits                       NaN
TotalPay                 150342.72
TotalPayBenefits         150342.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2192, dtype: object)
(2193, Id                                                         2194
EmployeeName                                       PAUL DOHERTY
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130457.94
OvertimePay                                            16133.09
OtherPay                                                3751.33
Benefits                                                    NaN
TotalPay                                              150342.36
TotalPayBenefits                                      150342.36
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 2193, dtype: object)
(2194, Id                            2195
EmployeeName        CYNTHIA LUCERO
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               25593.92
OtherPay                  18809.51
Benefits                       NaN
TotalPay                  150338.1
TotalPayBenefits          150338.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2194, dtype: object)
(2195, Id                           2196
EmployeeName          TODD WEDDLE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              33680.94
OtherPay                 10720.42
Benefits                      NaN
TotalPay                150336.04
TotalPayBenefits        150336.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2195, dtype: object)
(2196, Id                                                2197
EmployeeName                               HENRY KELLY
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   65542.19
OtherPay                                       7192.94
Benefits                                           NaN
TotalPay                                     150315.53
TotalPayBenefits                             150315.53
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2196, dtype: object)
(2197, Id                            2198
EmployeeName        HEIDI BERGMARK
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               26428.89
OtherPay                  17933.22
Benefits                       NaN
TotalPay                 150296.78
TotalPayBenefits         150296.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2197, dtype: object)
(2198, Id                               2199
EmployeeName           COLLEEN CHAWLA
JobTitle            DEPUTY DIRECTOR V
BasePay                     147934.77
OvertimePay                       0.0
OtherPay                      2357.32
Benefits                          NaN
TotalPay                    150292.09
TotalPayBenefits            150292.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2198, dtype: object)
(2199, Id                                               2200
EmployeeName                                 WAYNE YU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                  42685.62
OtherPay                                      8594.65
Benefits                                          NaN
TotalPay                                    150280.27
TotalPayBenefits                            150280.27
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2199, dtype: object)
(2200, Id                                2201
EmployeeName                LORI LAMMA
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   34966.65
OtherPay                       2878.97
Benefits                           NaN
TotalPay                     150267.04
TotalPayBenefits             150267.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2200, dtype: object)
(2201, Id                                2202
EmployeeName              BRADFORD LUM
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   60346.73
OtherPay                       1856.42
Benefits                           NaN
TotalPay                     150265.15
TotalPayBenefits             150265.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2201, dtype: object)
(2202, Id                             2203
EmployeeName        EDWARD MARTINEZ
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                25358.83
OtherPay                   18971.62
Benefits                        NaN
TotalPay                   150265.1
TotalPayBenefits           150265.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2202, dtype: object)
(2203, Id                                    2204
EmployeeName                  GEORGE CERNA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       11530.03
OtherPay                          16327.68
Benefits                               NaN
TotalPay                         150262.71
TotalPayBenefits                 150262.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2203, dtype: object)
(2204, Id                                   2205
EmployeeName                FELICIA SMITH
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                      44770.66
OtherPay                          9605.52
Benefits                              NaN
TotalPay                        150257.98
TotalPayBenefits                150257.98
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2204, dtype: object)
(2205, Id                                    2206
EmployeeName                 MEGAN FRANZEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121568.95
OvertimePay                       17822.09
OtherPay                          10857.56
Benefits                               NaN
TotalPay                          150248.6
TotalPayBenefits                  150248.6
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2205, dtype: object)
(2206, Id                                2207
EmployeeName           MIRANDA SURJADI
JobTitle            NURSE PRACTITIONER
BasePay                       149994.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      150244.0
TotalPayBenefits              150244.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2206, dtype: object)
(2207, Id                                  2208
EmployeeName              LAWRENCE PRICE
JobTitle            PHYSICIAN SPECIALIST
BasePay                        145723.23
OvertimePay                          0.0
OtherPay                          4498.0
Benefits                             NaN
TotalPay                       150221.23
TotalPayBenefits               150221.23
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2207, dtype: object)
(2208, Id                                    2209
EmployeeName                 HANSJUERG ENZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                       11753.97
OtherPay                          16060.27
Benefits                               NaN
TotalPay                         150219.23
TotalPayBenefits                 150219.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2208, dtype: object)
(2209, Id                                             2210
EmployeeName                          CLIFFORD JAVA
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128147.23
OvertimePay                                 9414.19
OtherPay                                   12647.68
Benefits                                        NaN
TotalPay                                   150209.1
TotalPayBenefits                           150209.1
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2209, dtype: object)
(2210, Id                                         2211
EmployeeName                     MICHAEL DUNCAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123436.02
OvertimePay                             5549.91
OtherPay                               21198.86
Benefits                                    NaN
TotalPay                              150184.79
TotalPayBenefits                      150184.79
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2210, dtype: object)
(2211, Id                                                2212
EmployeeName                             PATRICK LOUIE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77656.99
OvertimePay                                   67853.69
OtherPay                                       4650.77
Benefits                                           NaN
TotalPay                                     150161.45
TotalPayBenefits                             150161.45
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2211, dtype: object)
(2212, Id                           2213
EmployeeName             YOON LEE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              33096.05
OtherPay                 11084.43
Benefits                      NaN
TotalPay                150115.13
TotalPayBenefits        150115.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2212, dtype: object)
(2213, Id                                  2214
EmployeeName             JOSEPH ENGELMAN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        149632.01
OvertimePay                          0.0
OtherPay                          470.12
Benefits                             NaN
TotalPay                       150102.13
TotalPayBenefits               150102.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2213, dtype: object)
(2214, Id                               2215
EmployeeName             MARTIN GARAY
JobTitle            POLICE OFFICER II
BasePay                     108643.07
OvertimePay                   7462.66
OtherPay                     33958.46
Benefits                          NaN
TotalPay                    150064.19
TotalPayBenefits            150064.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2214, dtype: object)
(2215, Id                              2216
EmployeeName              DIANE KHUU
JobTitle            POLICE OFFICER I
BasePay                     97808.32
OvertimePay                  8978.85
OtherPay                    43270.75
Benefits                         NaN
TotalPay                   150057.92
TotalPayBenefits           150057.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2215, dtype: object)
(2216, Id                                              2217
EmployeeName                            KYRA DELANEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129512.83
OvertimePay                                 10045.88
OtherPay                                    10492.44
Benefits                                         NaN
TotalPay                                   150051.15
TotalPayBenefits                           150051.15
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2216, dtype: object)
(2217, Id                                                2218
EmployeeName                                JOHN EVANS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.93
OvertimePay                                    6163.74
OtherPay                                      13422.14
Benefits                                           NaN
TotalPay                                     150043.81
TotalPayBenefits                             150043.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2217, dtype: object)
(2218, Id                                2219
EmployeeName            STEVEN GRIFFIN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     4315.6
OtherPay                      33271.34
Benefits                           NaN
TotalPay                     150008.39
TotalPayBenefits             150008.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2218, dtype: object)
(2219, Id                                2220
EmployeeName                 JAY DOWKE
JobTitle            POLICE OFFICER III
BasePay                      112380.37
OvertimePay                   15463.96
OtherPay                      22142.91
Benefits                           NaN
TotalPay                     149987.24
TotalPayBenefits             149987.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2219, dtype: object)
(2220, Id                                                          2221
EmployeeName                                         MURRAY BOND
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 149975.8
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                149975.8
TotalPayBenefits                                        149975.8
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2220, dtype: object)
(2221, Id                              2222
EmployeeName             MARILOU GAN
JobTitle            REGISTERED NURSE
BasePay                    119703.78
OvertimePay                   8791.2
OtherPay                    21475.87
Benefits                         NaN
TotalPay                   149970.85
TotalPayBenefits           149970.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2221, dtype: object)
(2222, Id                           2223
EmployeeName        BRIAN COLLINS
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              26506.04
OtherPay                 17523.92
Benefits                      NaN
TotalPay                149964.61
TotalPayBenefits        149964.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2222, dtype: object)
(2223, Id                              2224
EmployeeName            GREGORY NEAL
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 14306.42
OtherPay                    29580.85
Benefits                         NaN
TotalPay                   149952.47
TotalPayBenefits           149952.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2223, dtype: object)
(2224, Id                                                2225
EmployeeName                               SIDNEY LAWS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                     4302.5
OtherPay                                      15128.08
Benefits                                           NaN
TotalPay                                     149912.15
TotalPayBenefits                             149912.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2224, dtype: object)
(2225, Id                              2226
EmployeeName        MICHAEL MCCARRON
JobTitle                   MANAGER V
BasePay                    149896.61
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   149896.61
TotalPayBenefits           149896.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2225, dtype: object)
(2226, Id                                              2227
EmployeeName                         KEITH PASQUINZO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.37
OvertimePay                                  3980.21
OtherPay                                    15432.83
Benefits                                         NaN
TotalPay                                   149870.41
TotalPayBenefits                           149870.41
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2226, dtype: object)
(2227, Id                                                               2228
EmployeeName                                             JEFFERY CHIN
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.04
OvertimePay                                                   4289.52
OtherPay                                                     18605.14
Benefits                                                          NaN
TotalPay                                                     149862.7
TotalPayBenefits                                             149862.7
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2227, dtype: object)
(2228, Id                             2229
EmployeeName        JUSTIN APOSTOLI
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                29371.56
OtherPay                   14552.24
Benefits                        NaN
TotalPay                  149858.45
TotalPayBenefits          149858.45
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2228, dtype: object)
(2229, Id                                                2230
EmployeeName                              BRIAN DANKER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                    7725.43
OtherPay                                      11626.07
Benefits                                           NaN
TotalPay                                     149833.06
TotalPayBenefits                             149833.06
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2229, dtype: object)
(2230, Id                                         2231
EmployeeName                        MATTHEW LEE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             1069.58
OtherPay                               25636.75
Benefits                                    NaN
TotalPay                              149811.34
TotalPayBenefits                      149811.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2230, dtype: object)
(2231, Id                              2232
EmployeeName             JEFFREY ENG
JobTitle            TRAIN CONTROLLER
BasePay                     90429.98
OvertimePay                 51011.01
OtherPay                     8364.06
Benefits                         NaN
TotalPay                   149805.05
TotalPayBenefits           149805.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2231, dtype: object)
(2232, Id                                                        2233
EmployeeName                                       SAMSON CHAN
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128147.07
OvertimePay                                           15135.62
OtherPay                                               6493.62
Benefits                                                   NaN
TotalPay                                             149776.31
TotalPayBenefits                                     149776.31
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 2232, dtype: object)
(2233, Id                            2234
EmployeeName        STEVE FIGUEROA
JobTitle               FIREFIGHTER
BasePay                  105934.63
OvertimePay               32619.83
OtherPay                  11191.54
Benefits                       NaN
TotalPay                  149746.0
TotalPayBenefits          149746.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2233, dtype: object)
(2234, Id                           2235
EmployeeName           DONALD ENG
JobTitle              MANAGER VII
BasePay                  99398.92
OvertimePay                   0.0
OtherPay                 50326.38
Benefits                      NaN
TotalPay                 149725.3
TotalPayBenefits         149725.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2234, dtype: object)
(2235, Id                                2236
EmployeeName                BENNY CHIN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   30009.04
OtherPay                       7285.55
Benefits                           NaN
TotalPay                     149716.04
TotalPayBenefits             149716.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2235, dtype: object)
(2236, Id                                 2237
EmployeeName              LOK SHUN CHAN
JobTitle            CLINICAL PHARMACIST
BasePay                        147093.6
OvertimePay                      1698.0
OtherPay                          920.0
Benefits                            NaN
TotalPay                       149711.6
TotalPayBenefits               149711.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2236, dtype: object)
(2237, Id                               2238
EmployeeName        KATHLEEN FLANAGAN
JobTitle                NURSE MANAGER
BasePay                     142837.02
OvertimePay                    6867.5
OtherPay                          0.0
Benefits                          NaN
TotalPay                    149704.52
TotalPayBenefits            149704.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2237, dtype: object)
(2238, Id                                2239
EmployeeName              BRITT ELMORE
JobTitle            POLICE OFFICER III
BasePay                      112416.81
OvertimePay                   33975.39
OtherPay                       3295.28
Benefits                           NaN
TotalPay                     149687.48
TotalPayBenefits             149687.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2238, dtype: object)
(2239, Id                                2240
EmployeeName              SEAN PERDOMO
JobTitle            POLICE OFFICER III
BasePay                      110001.08
OvertimePay                   13635.31
OtherPay                      26041.33
Benefits                           NaN
TotalPay                     149677.72
TotalPayBenefits             149677.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2239, dtype: object)
(2240, Id                                     2241
EmployeeName                    JOHN MARIAN
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                            111910.2
OvertimePay                        25999.19
OtherPay                           11743.82
Benefits                                NaN
TotalPay                          149653.21
TotalPayBenefits                  149653.21
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2240, dtype: object)
(2241, Id                                                2242
EmployeeName                                 KIM LEWIS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.22
OvertimePay                                   13142.96
OtherPay                                       6023.88
Benefits                                           NaN
TotalPay                                     149648.06
TotalPayBenefits                             149648.06
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2241, dtype: object)
(2242, Id                                2243
EmployeeName                 JULIE TSE
JobTitle            NURSE PRACTITIONER
BasePay                       145626.0
OvertimePay                        0.0
OtherPay                        4000.0
Benefits                           NaN
TotalPay                      149626.0
TotalPayBenefits              149626.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2242, dtype: object)
(2243, Id                             2244
EmployeeName        JOSEPH VIGLIZZO
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                25572.14
OtherPay                   18118.48
Benefits                        NaN
TotalPay                  149625.26
TotalPayBenefits          149625.26
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2243, dtype: object)
(2244, Id                              2245
EmployeeName           MARILOU DARIO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   8058.6
OtherPay                    14582.02
Benefits                         NaN
TotalPay                   149624.62
TotalPayBenefits           149624.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2244, dtype: object)
(2245, Id                                  2246
EmployeeName                 DAVID HARDY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.22
OvertimePay                     18883.96
OtherPay                         9567.97
Benefits                             NaN
TotalPay                       149612.15
TotalPayBenefits               149612.15
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2245, dtype: object)
(2246, Id                                              2247
EmployeeName                         CHARLES LIMBERT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  9789.78
OtherPay                                     9333.29
Benefits                                         NaN
TotalPay                                    149604.6
TotalPayBenefits                            149604.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2246, dtype: object)
(2247, Id                                    2248
EmployeeName              CHRISTOPHER BONN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.65
OvertimePay                       32601.44
OtherPay                          10519.73
Benefits                               NaN
TotalPay                         149562.82
TotalPayBenefits                 149562.82
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2247, dtype: object)
(2248, Id                           2249
EmployeeName         GIL INTENGAN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               26829.6
OtherPay                 16789.98
Benefits                      NaN
TotalPay                149554.22
TotalPayBenefits        149554.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2248, dtype: object)
(2249, Id                                         2250
EmployeeName                     ANTHONY RIVERA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            11647.55
OtherPay                               14801.03
Benefits                                    NaN
TotalPay                               149553.6
TotalPayBenefits                       149553.6
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2249, dtype: object)
(2250, Id                           2251
EmployeeName         SCOTT DOONAN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              33849.59
OtherPay                  9754.74
Benefits                      NaN
TotalPay                149539.01
TotalPayBenefits        149539.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2250, dtype: object)
(2251, Id                           2252
EmployeeName        JOSEPH MALLOY
JobTitle            SPECIAL NURSE
BasePay                 121150.62
OvertimePay                9298.3
OtherPay                 19031.32
Benefits                      NaN
TotalPay                149480.24
TotalPayBenefits        149480.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2251, dtype: object)
(2252, Id                                                2253
EmployeeName                                HOLLY PERA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130466.6
OvertimePay                                     7917.5
OtherPay                                      11093.87
Benefits                                           NaN
TotalPay                                     149477.97
TotalPayBenefits                             149477.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2252, dtype: object)
(2253, Id                                                2254
EmployeeName                               HOWARD DONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77500.48
OvertimePay                                   64707.92
OtherPay                                       7254.73
Benefits                                           NaN
TotalPay                                     149463.13
TotalPayBenefits                             149463.13
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2253, dtype: object)
(2254, Id                                2255
EmployeeName          NATALEE ERNSTROM
JobTitle            NURSE PRACTITIONER
BasePay                      147927.64
OvertimePay                        0.0
OtherPay                        1525.0
Benefits                           NaN
TotalPay                     149452.64
TotalPayBenefits             149452.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2254, dtype: object)
(2255, Id                                                2256
EmployeeName                                ALVIN WONG
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                    5893.87
OtherPay                                      13072.22
Benefits                                           NaN
TotalPay                                     149447.68
TotalPayBenefits                             149447.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2255, dtype: object)
(2256, Id                                              2257
EmployeeName                            SHAUGHN RYAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129945.55
OvertimePay                                  6248.88
OtherPay                                    13241.92
Benefits                                         NaN
TotalPay                                   149436.35
TotalPayBenefits                           149436.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2256, dtype: object)
(2257, Id                                2258
EmployeeName                BILL LIANG
JobTitle            TRANSIT SUPERVISOR
BasePay                        84113.6
OvertimePay                   62715.08
OtherPay                       2593.78
Benefits                           NaN
TotalPay                     149422.46
TotalPayBenefits             149422.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2257, dtype: object)
(2258, Id                            2259
EmployeeName        CYNTHIA FAENZI
JobTitle               FIREFIGHTER
BasePay                  104648.99
OvertimePay                28880.9
OtherPay                  15887.72
Benefits                       NaN
TotalPay                 149417.61
TotalPayBenefits         149417.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2258, dtype: object)
(2259, Id                                                  2260
EmployeeName                               LEWIS HAZZARD
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                         74628.31
OvertimePay                                     61685.03
OtherPay                                        13089.86
Benefits                                             NaN
TotalPay                                        149403.2
TotalPayBenefits                                149403.2
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 2259, dtype: object)
(2260, Id                              2261
EmployeeName           BRIAN HOPKINS
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                 37645.24
OtherPay                     5672.84
Benefits                         NaN
TotalPay                   149383.27
TotalPayBenefits           149383.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2260, dtype: object)
(2261, Id                                   2262
EmployeeName                 FABIAN BROWN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.41
OvertimePay                      39310.32
OtherPay                         13817.42
Benefits                              NaN
TotalPay                        149382.15
TotalPayBenefits                149382.15
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2261, dtype: object)
(2262, Id                                     2263
EmployeeName                   WALLACE WONG
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           103219.63
OvertimePay                             0.0
OtherPay                            46102.6
Benefits                                NaN
TotalPay                          149322.23
TotalPayBenefits                  149322.23
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2262, dtype: object)
(2263, Id                              2264
EmployeeName          GLICERIA REYES
JobTitle            REGISTERED NURSE
BasePay                     122756.9
OvertimePay                  9096.45
OtherPay                    17464.13
Benefits                         NaN
TotalPay                   149317.48
TotalPayBenefits           149317.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2263, dtype: object)
(2264, Id                                                2265
EmployeeName                             MICHELLE JEAN
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      148481.09
OvertimePay                                        0.0
OtherPay                                        819.22
Benefits                                           NaN
TotalPay                                     149300.31
TotalPayBenefits                             149300.31
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2264, dtype: object)
(2265, Id                              2266
EmployeeName           JOCELYN RAMOS
JobTitle            REGISTERED NURSE
BasePay                     122832.6
OvertimePay                   7692.3
OtherPay                    18765.02
Benefits                         NaN
TotalPay                   149289.92
TotalPayBenefits           149289.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2265, dtype: object)
(2266, Id                              2267
EmployeeName            JESUSA ABUAN
JobTitle            REGISTERED NURSE
BasePay                    126871.68
OvertimePay                  7655.67
OtherPay                    14761.63
Benefits                         NaN
TotalPay                   149288.98
TotalPayBenefits           149288.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2266, dtype: object)
(2267, Id                                 2268
EmployeeName              TROY DRYSDALE
JobTitle            CLINICAL PHARMACIST
BasePay                       135077.63
OvertimePay                     7230.03
OtherPay                        6972.37
Benefits                            NaN
TotalPay                      149280.03
TotalPayBenefits              149280.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2267, dtype: object)
(2268, Id                             2269
EmployeeName            CHEONG YUEN
JobTitle            SENIOR ENGINEER
BasePay                   140003.82
OvertimePay                     0.0
OtherPay                    9265.43
Benefits                        NaN
TotalPay                  149269.25
TotalPayBenefits          149269.25
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2268, dtype: object)
(2269, Id                                  2270
EmployeeName              KAREN HOLBROOK
JobTitle            PHYSICIAN SPECIALIST
BasePay                        135910.08
OvertimePay                          0.0
OtherPay                         13347.0
Benefits                             NaN
TotalPay                       149257.08
TotalPayBenefits               149257.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2269, dtype: object)
(2270, Id                                       2271
EmployeeName                   SCARLET GORDON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              149252.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             149252.0
TotalPayBenefits                     149252.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2270, dtype: object)
(2271, Id                                2272
EmployeeName               WILLIAM PON
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4995.25
OtherPay                      31851.35
Benefits                           NaN
TotalPay                     149247.67
TotalPayBenefits             149247.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2271, dtype: object)
(2272, Id                                 2273
EmployeeName                  AMY LOGAN
JobTitle            CLINICAL PHARMACIST
BasePay                       146539.39
OvertimePay                     2585.16
OtherPay                         113.04
Benefits                            NaN
TotalPay                      149237.59
TotalPayBenefits              149237.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2272, dtype: object)
(2273, Id                                         2274
EmployeeName                           ANSON WU
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            18256.69
OtherPay                                7867.43
Benefits                                    NaN
TotalPay                              149229.14
TotalPayBenefits                      149229.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2273, dtype: object)
(2274, Id                              2275
EmployeeName              RYAN JONES
JobTitle            POLICE OFFICER I
BasePay                    103700.69
OvertimePay                  34663.7
OtherPay                     10862.3
Benefits                         NaN
TotalPay                   149226.69
TotalPayBenefits           149226.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2274, dtype: object)
(2275, Id                            2276
EmployeeName        LINDA MEDEIROS
JobTitle             NURSE MANAGER
BasePay                  149222.39
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 149222.39
TotalPayBenefits         149222.39
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2275, dtype: object)
(2276, Id                              2277
EmployeeName        ANTONIA MALGIERI
JobTitle                   MANAGER V
BasePay                    149200.07
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   149200.07
TotalPayBenefits           149200.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2276, dtype: object)
(2277, Id                                 2278
EmployeeName               FLORENCE TOY
JobTitle            CLINICAL PHARMACIST
BasePay                       147080.99
OvertimePay                     1878.43
OtherPay                          216.0
Benefits                            NaN
TotalPay                      149175.42
TotalPayBenefits              149175.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2277, dtype: object)
(2278, Id                                2279
EmployeeName             ANTHONY GOMES
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   12251.74
OtherPay                      24499.82
Benefits                           NaN
TotalPay                     149172.98
TotalPayBenefits             149172.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2278, dtype: object)
(2279, Id                                      2280
EmployeeName                  MARTA MCGOVERN
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.12
OvertimePay                          1569.26
OtherPay                            20592.52
Benefits                                 NaN
TotalPay                            149129.9
TotalPayBenefits                    149129.9
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2279, dtype: object)
(2280, Id                                     2281
EmployeeName                       PING YAN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.53
OvertimePay                             0.0
OtherPay                            21434.9
Benefits                                NaN
TotalPay                          149112.43
TotalPayBenefits                  149112.43
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2280, dtype: object)
(2281, Id                                2282
EmployeeName        RAYMOND BIRMINGHAM
JobTitle            BUILDING INSPECTOR
BasePay                      103479.61
OvertimePay                   33623.04
OtherPay                      11992.71
Benefits                           NaN
TotalPay                     149095.36
TotalPayBenefits             149095.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2281, dtype: object)
(2282, Id                             2283
EmployeeName           ROBERT CLARK
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                    9085.02
Benefits                        NaN
TotalPay                  149088.05
TotalPayBenefits          149088.05
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2282, dtype: object)
(2283, Id                                 2284
EmployeeName        RAQUEL NICDAO-ICBAN
JobTitle               REGISTERED NURSE
BasePay                        126984.0
OvertimePay                     6446.88
OtherPay                        15647.5
Benefits                            NaN
TotalPay                      149078.38
TotalPayBenefits              149078.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2283, dtype: object)
(2284, Id                                2285
EmployeeName                 PAUL WONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    57801.1
OtherPay                       3210.19
Benefits                           NaN
TotalPay                     149073.29
TotalPayBenefits             149073.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2284, dtype: object)
(2285, Id                                           2286
EmployeeName                        KENNETH PAYNE
JobTitle            CHIEF WATER SERVICE INSPECTOR
BasePay                                 117137.39
OvertimePay                              10266.57
OtherPay                                 21669.29
Benefits                                      NaN
TotalPay                                149073.25
TotalPayBenefits                        149073.25
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2285, dtype: object)
(2286, Id                                         2287
EmployeeName                      BRUCE KREJCIK
JobTitle            POWER GENERATION SUPERVISOR
BasePay                                94659.35
OvertimePay                            40203.88
OtherPay                               14205.41
Benefits                                    NaN
TotalPay                              149068.64
TotalPayBenefits                      149068.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2286, dtype: object)
(2287, Id                                2288
EmployeeName               LAMAR TONEY
JobTitle            POLICE OFFICER III
BasePay                      110359.28
OvertimePay                    9620.81
OtherPay                      29073.96
Benefits                           NaN
TotalPay                     149054.05
TotalPayBenefits             149054.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2287, dtype: object)
(2288, Id                           2289
EmployeeName        JOSEPH DEVATY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              30216.54
OtherPay                  12891.9
Benefits                      NaN
TotalPay                 149043.1
TotalPayBenefits         149043.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2288, dtype: object)
(2289, Id                           2290
EmployeeName          FANTA SESAY
JobTitle                MANAGER V
BasePay                 149004.22
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                149004.22
TotalPayBenefits        149004.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2289, dtype: object)
(2290, Id                               2291
EmployeeName        CHRISTOPHER NOCON
JobTitle              SENIOR ENGINEER
BasePay                     140003.09
OvertimePay                       0.0
OtherPay                      8984.36
Benefits                          NaN
TotalPay                    148987.45
TotalPayBenefits            148987.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2290, dtype: object)
(2291, Id                                             2292
EmployeeName                      MICHAEL RODRIGUEZ
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                    128147.1
OvertimePay                                15554.93
OtherPay                                    5282.25
Benefits                                        NaN
TotalPay                                  148984.28
TotalPayBenefits                          148984.28
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2291, dtype: object)
(2292, Id                                              2293
EmployeeName                          ANTHONY DAMATO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.99
OvertimePay                                  6779.24
OtherPay                                    11739.44
Benefits                                         NaN
TotalPay                                   148976.67
TotalPayBenefits                           148976.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2292, dtype: object)
(2293, Id                              2294
EmployeeName        MICHAEL GUAJARDO
JobTitle                 FIREFIGHTER
BasePay                    105934.64
OvertimePay                 25351.99
OtherPay                    17687.84
Benefits                         NaN
TotalPay                   148974.47
TotalPayBenefits           148974.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2293, dtype: object)
(2294, Id                                           2295
EmployeeName                          JOHN TEAHAN
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                  113175.0
OvertimePay                              17275.81
OtherPay                                  18512.1
Benefits                                      NaN
TotalPay                                148962.91
TotalPayBenefits                        148962.91
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2294, dtype: object)
(2295, Id                                2296
EmployeeName        BLESILDA HUYPUNGCO
JobTitle              REGISTERED NURSE
BasePay                       124542.0
OvertimePay                     8058.6
OtherPay                      16344.22
Benefits                           NaN
TotalPay                     148944.82
TotalPayBenefits             148944.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2295, dtype: object)
(2296, Id                                              2297
EmployeeName                            GREGORY KANE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  7059.53
OtherPay                                    11352.75
Benefits                                         NaN
TotalPay                                   148893.83
TotalPayBenefits                           148893.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2296, dtype: object)
(2297, Id                                2298
EmployeeName             ANNETTE BURNS
JobTitle            NURSE PRACTITIONER
BasePay                      147602.16
OvertimePay                        0.0
OtherPay                       1290.81
Benefits                           NaN
TotalPay                     148892.97
TotalPayBenefits             148892.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2297, dtype: object)
(2298, Id                                       2299
EmployeeName                     JERRY THREET
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148887.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148887.64
TotalPayBenefits                    148887.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2298, dtype: object)
(2299, Id                                       2300
EmployeeName                     ASIT PANWALA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148887.37
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148887.37
TotalPayBenefits                    148887.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2299, dtype: object)
(2300, Id                              2301
EmployeeName          ALBERTO DUARTE
JobTitle            POLICE OFFICER I
BasePay                    106046.06
OvertimePay                 32289.21
OtherPay                    10511.92
Benefits                         NaN
TotalPay                   148847.19
TotalPayBenefits           148847.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2300, dtype: object)
(2301, Id                                       2302
EmployeeName                     SARAH WILNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148839.59
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148839.59
TotalPayBenefits                    148839.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2301, dtype: object)
(2302, Id                           2303
EmployeeName        CHARLES KWONG
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              24000.82
OtherPay                 18899.84
Benefits                      NaN
TotalPay                148835.31
TotalPayBenefits        148835.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2302, dtype: object)
(2303, Id                                              2304
EmployeeName                         DEBORAH GIZDICH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                  1545.94
OtherPay                                    16796.36
Benefits                                         NaN
TotalPay                                   148823.87
TotalPayBenefits                           148823.87
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2303, dtype: object)
(2304, Id                                               2305
EmployeeName                              REMA BREALL
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     148818.46
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    148818.46
TotalPayBenefits                            148818.46
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2304, dtype: object)
(2305, Id                                    2306
EmployeeName                 PAUL MANGIOLA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122218.48
OvertimePay                        11946.9
OtherPay                           14649.6
Benefits                               NaN
TotalPay                         148814.98
TotalPayBenefits                 148814.98
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2305, dtype: object)
(2306, Id                                       2307
EmployeeName                   CONNIE BRANDON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148811.35
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148811.35
TotalPayBenefits                    148811.35
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2306, dtype: object)
(2307, Id                                         2308
EmployeeName                      RAJESH PAREKH
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               141720.27
OvertimePay                                 0.0
OtherPay                                7086.03
Benefits                                    NaN
TotalPay                               148806.3
TotalPayBenefits                       148806.3
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2307, dtype: object)
(2308, Id                                 2309
EmployeeName        PHILIP KATZENBERGER
JobTitle                     MANAGER VI
BasePay                       148803.94
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      148803.94
TotalPayBenefits              148803.94
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2308, dtype: object)
(2309, Id                               2310
EmployeeName            JOSEY RUSSELL
JobTitle            POLICE OFFICER II
BasePay                     110309.03
OvertimePay                   14696.4
OtherPay                     23788.53
Benefits                          NaN
TotalPay                    148793.96
TotalPayBenefits            148793.96
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2309, dtype: object)
(2310, Id                                2311
EmployeeName            NHON-TUAN TRAN
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   57097.56
OtherPay                       1586.67
Benefits                           NaN
TotalPay                     148778.43
TotalPayBenefits             148778.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2310, dtype: object)
(2311, Id                           2312
EmployeeName         RONALD PEREZ
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              23901.02
OtherPay                 18932.72
Benefits                      NaN
TotalPay                148768.44
TotalPayBenefits        148768.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2311, dtype: object)
(2312, Id                               2313
EmployeeName           TAKAFUMI IDETA
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.61
OvertimePay                    251.43
OtherPay                      9579.36
Benefits                          NaN
TotalPay                     148758.4
TotalPayBenefits             148758.4
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2312, dtype: object)
(2313, Id                            2314
EmployeeName        LAVERNE MALIGA
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               31265.45
OtherPay                  11548.21
Benefits                       NaN
TotalPay                 148748.32
TotalPayBenefits         148748.32
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2313, dtype: object)
(2314, Id                                2315
EmployeeName              GERALD LYONS
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   17761.72
OtherPay                      18551.92
Benefits                           NaN
TotalPay                     148735.09
TotalPayBenefits             148735.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2314, dtype: object)
(2315, Id                                              2316
EmployeeName                            KEVIN MANNIX
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                  5210.28
OtherPay                                    13057.07
Benefits                                         NaN
TotalPay                                   148725.32
TotalPayBenefits                           148725.32
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2315, dtype: object)
(2316, Id                                       2317
EmployeeName                  KULVINDAR SINGH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148714.51
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148714.51
TotalPayBenefits                    148714.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2316, dtype: object)
(2317, Id                              2318
EmployeeName             HONG NGUYEN
JobTitle            TRANSIT OPERATOR
BasePay                     67040.52
OvertimePay                 77780.85
OtherPay                     3889.91
Benefits                         NaN
TotalPay                   148711.28
TotalPayBenefits           148711.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2317, dtype: object)
(2318, Id                                2319
EmployeeName        MERCEDITAS SARZABA
JobTitle              REGISTERED NURSE
BasePay                       124210.5
OvertimePay                    4981.68
OtherPay                      19511.17
Benefits                           NaN
TotalPay                     148703.35
TotalPayBenefits             148703.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2318, dtype: object)
(2319, Id                                            2320
EmployeeName                         DERMOT DORGAN
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  122587.69
OvertimePay                               11750.34
OtherPay                                  14337.51
Benefits                                       NaN
TotalPay                                 148675.54
TotalPayBenefits                         148675.54
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 2319, dtype: object)
(2320, Id                                2321
EmployeeName             PAUL HATHAWAY
JobTitle            NURSE PRACTITIONER
BasePay                      148418.57
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     148668.57
TotalPayBenefits             148668.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2320, dtype: object)
(2321, Id                                              2322
EmployeeName                            SCOTT GAINES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.25
OvertimePay                                 16329.78
OtherPay                                     1856.34
Benefits                                         NaN
TotalPay                                   148667.37
TotalPayBenefits                           148667.37
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2321, dtype: object)
(2322, Id                                2323
EmployeeName            EDWARD ZELTSER
JobTitle            POLICE OFFICER III
BasePay                      109770.98
OvertimePay                    8834.86
OtherPay                      30046.55
Benefits                           NaN
TotalPay                     148652.39
TotalPayBenefits             148652.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2322, dtype: object)
(2323, Id                            2324
EmployeeName             JOHN CHOI
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               50243.35
OtherPay                  11884.42
Benefits                       NaN
TotalPay                 148633.78
TotalPayBenefits         148633.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2323, dtype: object)
(2324, Id                             2325
EmployeeName        DARRYL BREWSTER
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 26054.5
OtherPay                   16643.03
Benefits                        NaN
TotalPay                   148632.2
TotalPayBenefits           148632.2
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2324, dtype: object)
(2325, Id                                    2326
EmployeeName                 JUSTIN SCHORR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          123824.99
OvertimePay                        5086.11
OtherPay                          19707.52
Benefits                               NaN
TotalPay                         148618.62
TotalPayBenefits                 148618.62
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2325, dtype: object)
(2326, Id                                2327
EmployeeName                GORDON YEE
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   26772.35
OtherPay                       9410.54
Benefits                           NaN
TotalPay                     148604.34
TotalPayBenefits             148604.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2326, dtype: object)
(2327, Id                               2328
EmployeeName            JOSEPH TOOMEY
JobTitle            POLICE OFFICER II
BasePay                     105783.48
OvertimePay                  12345.01
OtherPay                     30468.06
Benefits                          NaN
TotalPay                    148596.55
TotalPayBenefits            148596.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2327, dtype: object)
(2328, Id                                              2329
EmployeeName                            ROBERT TOTAH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130528.81
OvertimePay                                  7033.07
OtherPay                                    11014.32
Benefits                                         NaN
TotalPay                                    148576.2
TotalPayBenefits                            148576.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2328, dtype: object)
(2329, Id                                         2330
EmployeeName                  LEONETTE MORRISON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                141500.3
OvertimePay                                 0.0
OtherPay                                7075.01
Benefits                                    NaN
TotalPay                              148575.31
TotalPayBenefits                      148575.31
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2329, dtype: object)
(2330, Id                            2331
EmployeeName        BRIAN MCCARTHY
JobTitle               FIREFIGHTER
BasePay                  105934.72
OvertimePay               32618.62
OtherPay                   9997.66
Benefits                       NaN
TotalPay                  148551.0
TotalPayBenefits          148551.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2330, dtype: object)
(2331, Id                                             2332
EmployeeName                         GERALD NEWBECK
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                    128124.0
OvertimePay                                 5457.73
OtherPay                                   14940.91
Benefits                                        NaN
TotalPay                                  148522.64
TotalPayBenefits                          148522.64
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2331, dtype: object)
(2332, Id                           2333
EmployeeName        GREG TRUMPLER
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              33002.07
OtherPay                  9570.34
Benefits                      NaN
TotalPay                148507.08
TotalPayBenefits        148507.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2332, dtype: object)
(2333, Id                               2334
EmployeeName              JOHNA PECOT
JobTitle            SHERIFF'S CAPTAIN
BasePay                     138927.62
OvertimePay                       0.0
OtherPay                      9579.34
Benefits                          NaN
TotalPay                    148506.96
TotalPayBenefits            148506.96
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2333, dtype: object)
(2334, Id                              2335
EmployeeName        KENNETH MCCARTHY
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 25258.18
OtherPay                     17304.8
Benefits                         NaN
TotalPay                   148497.65
TotalPayBenefits           148497.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2334, dtype: object)
(2335, Id                                                2336
EmployeeName                            ANKA-YUEN CHAN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   63880.86
OtherPay                                       7029.32
Benefits                                           NaN
TotalPay                                     148490.58
TotalPayBenefits                             148490.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2335, dtype: object)
(2336, Id                                2337
EmployeeName                ERIC BALMY
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    7145.37
OtherPay                       28930.6
Benefits                           NaN
TotalPay                     148477.04
TotalPayBenefits             148477.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2336, dtype: object)
(2337, Id                                2338
EmployeeName        KINNIE JAMERSON JR
JobTitle                   FIREFIGHTER
BasePay                      110638.67
OvertimePay                   22307.53
OtherPay                       15515.3
Benefits                           NaN
TotalPay                      148461.5
TotalPayBenefits              148461.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2337, dtype: object)
(2338, Id                           2339
EmployeeName         ERIC BOTELHO
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              22005.33
OtherPay                 20495.46
Benefits                      NaN
TotalPay                148435.44
TotalPayBenefits        148435.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2338, dtype: object)
(2339, Id                                              2340
EmployeeName                         NICOLE BRUCKERT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.32
OvertimePay                                   606.64
OtherPay                                    17323.59
Benefits                                         NaN
TotalPay                                   148411.55
TotalPayBenefits                           148411.55
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2339, dtype: object)
(2340, Id                           2341
EmployeeName        HARRY HIGGINS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              24821.35
OtherPay                 17635.39
Benefits                      NaN
TotalPay                148391.41
TotalPayBenefits        148391.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2340, dtype: object)
(2341, Id                                          2342
EmployeeName                    MICHAEL SPILLANE
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102254.11
OvertimePay                              37272.5
OtherPay                                 8820.54
Benefits                                     NaN
TotalPay                               148347.15
TotalPayBenefits                       148347.15
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2341, dtype: object)
(2342, Id                                 2343
EmployeeName        MAGDALENA SARMIENTO
JobTitle               REGISTERED NURSE
BasePay                        126984.0
OvertimePay                     6446.88
OtherPay                       14914.12
Benefits                            NaN
TotalPay                       148345.0
TotalPayBenefits               148345.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2342, dtype: object)
(2343, Id                                              2344
EmployeeName                        HECTOR JUSINO JR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.76
OvertimePay                                  4222.63
OtherPay                                    13648.49
Benefits                                         NaN
TotalPay                                   148328.88
TotalPayBenefits                           148328.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2343, dtype: object)
(2344, Id                                       2345
EmployeeName                       JOHN WHITE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             148326.94
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            148326.94
TotalPayBenefits                    148326.94
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2344, dtype: object)
(2345, Id                              2346
EmployeeName        BIJAN AHMADZADEH
JobTitle             SENIOR ENGINEER
BasePay                    142281.93
OvertimePay                      0.0
OtherPay                     6040.37
Benefits                         NaN
TotalPay                    148322.3
TotalPayBenefits            148322.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2345, dtype: object)
(2346, Id                           2347
EmployeeName        JOSHUA WILSON
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               27445.2
OtherPay                  14864.6
Benefits                      NaN
TotalPay                148244.48
TotalPayBenefits        148244.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2346, dtype: object)
(2347, Id                                         2348
EmployeeName                         HERMAN WOO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                                 0.0
OtherPay                               25108.89
Benefits                                    NaN
TotalPay                               148213.9
TotalPayBenefits                       148213.9
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2347, dtype: object)
(2348, Id                           2349
EmployeeName        WILLIAM DAVIS
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay              22741.98
OtherPay                  19525.4
Benefits                      NaN
TotalPay                148202.08
TotalPayBenefits        148202.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2348, dtype: object)
(2349, Id                                         2350
EmployeeName                    THERESA WOLOWIC
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               131711.91
OvertimePay                                 0.0
OtherPay                               16453.35
Benefits                                    NaN
TotalPay                              148165.26
TotalPayBenefits                      148165.26
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2349, dtype: object)
(2350, Id                                2351
EmployeeName              STEVEN ZUKOR
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                    5070.34
OtherPay                      25731.01
Benefits                           NaN
TotalPay                     148105.04
TotalPayBenefits             148105.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2350, dtype: object)
(2351, Id                           2352
EmployeeName         DONYALE HOYE
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              32010.29
OtherPay                 10153.85
Benefits                      NaN
TotalPay                 148098.8
TotalPayBenefits         148098.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2351, dtype: object)
(2352, Id                                         2353
EmployeeName                        PETER GROSS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123218.19
OvertimePay                             2150.76
OtherPay                               22707.94
Benefits                                    NaN
TotalPay                              148076.89
TotalPayBenefits                      148076.89
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2352, dtype: object)
(2353, Id                                2354
EmployeeName             ROBERT MERINO
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   10617.57
OtherPay                      25036.92
Benefits                           NaN
TotalPay                     148075.94
TotalPayBenefits             148075.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2353, dtype: object)
(2354, Id                           2355
EmployeeName           JOSE ZALBA
JobTitle              FIREFIGHTER
BasePay                 110638.66
OvertimePay              11032.54
OtherPay                 26389.51
Benefits                      NaN
TotalPay                148060.71
TotalPayBenefits        148060.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2354, dtype: object)
(2355, Id                                         2356
EmployeeName                        JAMES REIDY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             2495.68
OtherPay                               22447.31
Benefits                                    NaN
TotalPay                               148048.0
TotalPayBenefits                       148048.0
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2355, dtype: object)
(2356, Id                                2357
EmployeeName               SCOTT KORTE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   27506.65
OtherPay                       8115.24
Benefits                           NaN
TotalPay                     148043.33
TotalPayBenefits             148043.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2356, dtype: object)
(2357, Id                                    2358
EmployeeName                GARRETH MILLER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                       10896.49
OtherPay                          14734.62
Benefits                               NaN
TotalPay                         148036.07
TotalPayBenefits                 148036.07
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2357, dtype: object)
(2358, Id                            2359
EmployeeName          KENNICE BURT
JobTitle            DEPUTY SHERIFF
BasePay                   86840.08
OvertimePay               47478.16
OtherPay                  13707.61
Benefits                       NaN
TotalPay                 148025.85
TotalPayBenefits         148025.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2358, dtype: object)
(2359, Id                             2360
EmployeeName              FRANK LAU
JobTitle            SENIOR ENGINEER
BasePay                   139935.55
OvertimePay                     0.0
OtherPay                     8078.8
Benefits                        NaN
TotalPay                  148014.35
TotalPayBenefits          148014.35
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2359, dtype: object)
(2360, Id                                2361
EmployeeName        KENNETH MAC DONALD
JobTitle             POLICE OFFICER II
BasePay                      110242.87
OvertimePay                   14114.72
OtherPay                      23634.87
Benefits                           NaN
TotalPay                     147992.46
TotalPayBenefits             147992.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2360, dtype: object)
(2361, Id                                              2362
EmployeeName                             WALLACE GIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                 10315.21
OtherPay                                     7189.55
Benefits                                         NaN
TotalPay                                   147986.31
TotalPayBenefits                           147986.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2361, dtype: object)
(2362, Id                              2363
EmployeeName          MARRIALEE SALM
JobTitle            REGISTERED NURSE
BasePay                     118778.0
OvertimePay                   5071.7
OtherPay                    24127.02
Benefits                         NaN
TotalPay                   147976.72
TotalPayBenefits           147976.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2362, dtype: object)
(2363, Id                                                2364
EmployeeName                           WILLIAM SIEBERT
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.31
OvertimePay                                   13038.65
OtherPay                                        4446.6
Benefits                                           NaN
TotalPay                                     147966.56
TotalPayBenefits                             147966.56
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2363, dtype: object)
(2364, Id                                2365
EmployeeName          CHRISTINE FALVEY
JobTitle            MAYORAL STAFF XVII
BasePay                      147962.84
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     147962.84
TotalPayBenefits             147962.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2364, dtype: object)
(2365, Id                               2366
EmployeeName         RICARDO SANTIAGO
JobTitle            POLICE OFFICER II
BasePay                     106967.67
OvertimePay                  36909.72
OtherPay                      4072.15
Benefits                          NaN
TotalPay                    147949.54
TotalPayBenefits            147949.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2365, dtype: object)
(2366, Id                                              2367
EmployeeName                          ARLINE GILMORE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130528.82
OvertimePay                                 10901.13
OtherPay                                     6501.06
Benefits                                         NaN
TotalPay                                   147931.01
TotalPayBenefits                           147931.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2366, dtype: object)
(2367, Id                                               2368
EmployeeName                                 THACH LY
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                  37353.76
OtherPay                                     11576.65
Benefits                                          NaN
TotalPay                                    147930.41
TotalPayBenefits                            147930.41
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2367, dtype: object)
(2368, Id                                 2369
EmployeeName            STEPHEN ECHAVES
JobTitle            CLINICAL PHARMACIST
BasePay                        147093.6
OvertimePay                         0.0
OtherPay                          824.0
Benefits                            NaN
TotalPay                       147917.6
TotalPayBenefits               147917.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2368, dtype: object)
(2369, Id                                                2370
EmployeeName                                ROBERT LEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.21
OvertimePay                                    6274.73
OtherPay                                      11123.08
Benefits                                           NaN
TotalPay                                     147903.02
TotalPayBenefits                             147903.02
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2369, dtype: object)
(2370, Id                                2371
EmployeeName             ARLENE BORICK
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                      25619.61
Benefits                           NaN
TotalPay                     147894.21
TotalPayBenefits             147894.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2370, dtype: object)
(2371, Id                                                2372
EmployeeName                            MATTHEW HANLEY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.58
OvertimePay                                    8653.53
OtherPay                                       8755.64
Benefits                                           NaN
TotalPay                                     147890.75
TotalPayBenefits                             147890.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2371, dtype: object)
(2372, Id                            2373
EmployeeName        MICHELLE MCCOY
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               24287.85
OtherPay                  17665.28
Benefits                       NaN
TotalPay                 147887.79
TotalPayBenefits         147887.79
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2372, dtype: object)
(2373, Id                              2374
EmployeeName        ELSA EVANGELISTA
JobTitle            REGISTERED NURSE
BasePay                     122100.0
OvertimePay                  1868.73
OtherPay                     23914.1
Benefits                         NaN
TotalPay                   147882.83
TotalPayBenefits           147882.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2373, dtype: object)
(2374, Id                                                2375
EmployeeName                                PHILIP FEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                   16565.58
OtherPay                                        838.28
Benefits                                           NaN
TotalPay                                     147880.26
TotalPayBenefits                             147880.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2374, dtype: object)
(2375, Id                                2376
EmployeeName          PETER RICHARDSON
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                   11783.11
OtherPay                      23672.04
Benefits                           NaN
TotalPay                      147856.2
TotalPayBenefits              147856.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2375, dtype: object)
(2376, Id                                              2377
EmployeeName                            ROBERT SWALL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.21
OvertimePay                                  7535.32
OtherPay                                     9813.26
Benefits                                         NaN
TotalPay                                   147853.79
TotalPayBenefits                           147853.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2376, dtype: object)
(2377, Id                                         2378
EmployeeName                       JONATHAN NYE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               116897.41
OvertimePay                                 0.0
OtherPay                               30953.34
Benefits                                    NaN
TotalPay                              147850.75
TotalPayBenefits                      147850.75
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2377, dtype: object)
(2378, Id                                              2379
EmployeeName                       GABRIEL GALLAREAD
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    127256.06
OvertimePay                                  9503.79
OtherPay                                    11065.46
Benefits                                         NaN
TotalPay                                   147825.31
TotalPayBenefits                           147825.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2378, dtype: object)
(2379, Id                                              2380
EmployeeName                            SEAN GRIFFIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115966.59
OvertimePay                                 25750.33
OtherPay                                     6095.13
Benefits                                         NaN
TotalPay                                   147812.05
TotalPayBenefits                           147812.05
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2379, dtype: object)
(2380, Id                                         2381
EmployeeName                       THERESA KWAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             2412.45
OtherPay                               22264.63
Benefits                                    NaN
TotalPay                              147782.09
TotalPayBenefits                      147782.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2380, dtype: object)
(2381, Id                            2382
EmployeeName        CHUCK WATANABE
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               25534.63
OtherPay                  16303.65
Benefits                       NaN
TotalPay                 147772.96
TotalPayBenefits         147772.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2381, dtype: object)
(2382, Id                                                2383
EmployeeName                           ANTHONY SMERDEL
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                      130055.98
OvertimePay                                        0.0
OtherPay                                      17712.74
Benefits                                           NaN
TotalPay                                     147768.72
TotalPayBenefits                             147768.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2382, dtype: object)
(2383, Id                                              2384
EmployeeName                           SAMUEL CHRIST
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.32
OvertimePay                                  9633.77
OtherPay                                      7699.9
Benefits                                         NaN
TotalPay                                   147767.99
TotalPayBenefits                           147767.99
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2383, dtype: object)
(2384, Id                                2385
EmployeeName             DAMON JACKSON
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   25454.75
OtherPay                       9889.54
Benefits                           NaN
TotalPay                     147765.75
TotalPayBenefits             147765.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2384, dtype: object)
(2385, Id                           2386
EmployeeName        GARRET LUCIER
JobTitle              FIREFIGHTER
BasePay                 101998.51
OvertimePay              32912.24
OtherPay                 12846.23
Benefits                      NaN
TotalPay                147756.98
TotalPayBenefits        147756.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2385, dtype: object)
(2386, Id                                              2387
EmployeeName                              JUSTIN ERB
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115946.24
OvertimePay                                 24650.61
OtherPay                                     7147.84
Benefits                                         NaN
TotalPay                                   147744.69
TotalPayBenefits                           147744.69
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2386, dtype: object)
(2387, Id                                             2388
EmployeeName                        CRISTINA FRANCO
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128123.96
OvertimePay                                 3168.43
OtherPay                                   16439.64
Benefits                                        NaN
TotalPay                                  147732.03
TotalPayBenefits                          147732.03
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2387, dtype: object)
(2388, Id                           2389
EmployeeName            CRAIG LEE
JobTitle                MANAGER V
BasePay                 142720.31
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                147720.31
TotalPayBenefits        147720.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2388, dtype: object)
(2389, Id                           2390
EmployeeName        JASON WATROUS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              33758.45
OtherPay                  8012.95
Benefits                      NaN
TotalPay                147706.07
TotalPayBenefits        147706.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2389, dtype: object)
(2390, Id                           2391
EmployeeName        RACHEL MARCIC
JobTitle              FIREFIGHTER
BasePay                 105204.25
OvertimePay              26284.47
OtherPay                 16203.24
Benefits                      NaN
TotalPay                147691.96
TotalPayBenefits        147691.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2390, dtype: object)
(2391, Id                              2392
EmployeeName         ZENAIDA PUENTES
JobTitle            REGISTERED NURSE
BasePay                    125457.75
OvertimePay                  1391.93
OtherPay                    20827.98
Benefits                         NaN
TotalPay                   147677.66
TotalPayBenefits           147677.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2391, dtype: object)
(2392, Id                              2393
EmployeeName         MARCIAL MARQUEZ
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                   3177.4
OtherPay                     38417.4
Benefits                         NaN
TotalPay                    147660.0
TotalPayBenefits            147660.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2392, dtype: object)
(2393, Id                                         2394
EmployeeName                   MAUREEN FLAHERTY
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               147603.91
OvertimePay                                 0.0
OtherPay                                   45.0
Benefits                                    NaN
TotalPay                              147648.91
TotalPayBenefits                      147648.91
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2393, dtype: object)
(2394, Id                                    2395
EmployeeName                TIMOTHY MCHALE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                        9672.02
OtherPay                          15554.34
Benefits                               NaN
TotalPay                         147631.37
TotalPayBenefits                 147631.37
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2394, dtype: object)
(2395, Id                              2396
EmployeeName        EMMANUEL BULATAO
JobTitle            REGISTERED NURSE
BasePay                    119047.52
OvertimePay                  6150.89
OtherPay                    22418.57
Benefits                         NaN
TotalPay                   147616.98
TotalPayBenefits           147616.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2395, dtype: object)
(2396, Id                                              2397
EmployeeName                          LEONARD POGGIO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                  3185.69
OtherPay                                    13961.97
Benefits                                         NaN
TotalPay                                    147605.6
TotalPayBenefits                            147605.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2396, dtype: object)
(2397, Id                                         2398
EmployeeName                  STUART WASHINGTON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               140571.73
OvertimePay                                 0.0
OtherPay                                 7028.7
Benefits                                    NaN
TotalPay                              147600.43
TotalPayBenefits                      147600.43
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2397, dtype: object)
(2398, Id                                                2399
EmployeeName                             JOHN CATANACH
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   48889.64
OtherPay                                      21117.85
Benefits                                           NaN
TotalPay                                     147587.89
TotalPayBenefits                             147587.89
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2398, dtype: object)
(2399, Id                              2400
EmployeeName             FRANK LATKO
JobTitle            REGISTERED NURSE
BasePay                     126495.6
OvertimePay                   329.67
OtherPay                    20748.91
Benefits                         NaN
TotalPay                   147574.18
TotalPayBenefits           147574.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2399, dtype: object)
(2400, Id                                         2401
EmployeeName                          RICKY YEE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123012.99
OvertimePay                             8390.54
OtherPay                               16169.18
Benefits                                    NaN
TotalPay                              147572.71
TotalPayBenefits                      147572.71
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2400, dtype: object)
(2401, Id                                              2402
EmployeeName                         WILLIAM MORALES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129964.51
OvertimePay                                   959.53
OtherPay                                    16635.29
Benefits                                         NaN
TotalPay                                   147559.33
TotalPayBenefits                           147559.33
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2401, dtype: object)
(2402, Id                                2403
EmployeeName             IVAN SEQUEIRA
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                   30003.99
OtherPay                       5122.19
Benefits                           NaN
TotalPay                     147542.98
TotalPayBenefits             147542.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2402, dtype: object)
(2403, Id                                                2404
EmployeeName                             MARK SULLIVAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.15
OvertimePay                                    6380.13
OtherPay                                      10644.65
Benefits                                           NaN
TotalPay                                     147529.93
TotalPayBenefits                             147529.93
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2403, dtype: object)
(2404, Id                                2405
EmployeeName           STEVEN MATTHIAS
JobTitle            POLICE OFFICER III
BasePay                      112400.88
OvertimePay                     8183.8
OtherPay                      26936.39
Benefits                           NaN
TotalPay                     147521.07
TotalPayBenefits             147521.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2404, dtype: object)
(2405, Id                                2406
EmployeeName               ANA ALVAREZ
JobTitle            DEPUTY DIRECTOR II
BasePay                      138204.53
OvertimePay                        0.0
OtherPay                       9316.04
Benefits                           NaN
TotalPay                     147520.57
TotalPayBenefits             147520.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2405, dtype: object)
(2406, Id                                 2407
EmployeeName                   RITA LAM
JobTitle            CLINICAL PHARMACIST
BasePay                       146890.93
OvertimePay                         0.0
OtherPay                         623.13
Benefits                            NaN
TotalPay                      147514.06
TotalPayBenefits              147514.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2406, dtype: object)
(2407, Id                                         2408
EmployeeName                    ERICA ARTESEROS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123120.01
OvertimePay                            16989.86
OtherPay                                 7387.2
Benefits                                    NaN
TotalPay                              147497.07
TotalPayBenefits                      147497.07
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2407, dtype: object)
(2408, Id                                                2409
EmployeeName                        MICHELLE HENDERSON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    5673.71
OtherPay                                      11361.63
Benefits                                           NaN
TotalPay                                     147493.28
TotalPayBenefits                             147493.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2408, dtype: object)
(2409, Id                                       2410
EmployeeName                     BICKA BARLOW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              147490.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             147490.4
TotalPayBenefits                     147490.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2409, dtype: object)
(2410, Id                                      2411
EmployeeName                GENERAL JAMES JR
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126470.97
OvertimePay                              0.0
OtherPay                             21019.1
Benefits                                 NaN
TotalPay                           147490.07
TotalPayBenefits                   147490.07
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2410, dtype: object)
(2411, Id                                                2412
EmployeeName                               JAMESON PON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   10658.45
OtherPay                                       6336.38
Benefits                                           NaN
TotalPay                                     147476.42
TotalPayBenefits                             147476.42
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2411, dtype: object)
(2412, Id                             2413
EmployeeName        MATTHEW TARLACH
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                23387.06
OtherPay                   18145.43
Benefits                        NaN
TotalPay                  147467.15
TotalPayBenefits          147467.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2412, dtype: object)
(2413, Id                                                2414
EmployeeName                             JOSELITO CRUZ
JobTitle            RADIOLOGIC TECHNOLOGIST SUPERVISOR
BasePay                                      122740.84
OvertimePay                                    16794.2
OtherPay                                       7923.63
Benefits                                           NaN
TotalPay                                     147458.67
TotalPayBenefits                             147458.67
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2413, dtype: object)
(2414, Id                           2415
EmployeeName            PETER LEE
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              27527.68
OtherPay                 13974.77
Benefits                      NaN
TotalPay                147437.11
TotalPayBenefits        147437.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2414, dtype: object)
(2415, Id                              2416
EmployeeName          CYNTHIA MANUEL
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  7252.74
OtherPay                    13187.62
Benefits                         NaN
TotalPay                   147424.36
TotalPayBenefits           147424.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2415, dtype: object)
(2416, Id                                                          2417
EmployeeName                                     THEODORE ARANAS
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                144906.79
OvertimePay                                                  0.0
OtherPay                                                 2514.71
Benefits                                                     NaN
TotalPay                                                147421.5
TotalPayBenefits                                        147421.5
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2416, dtype: object)
(2417, Id                                       2418
EmployeeName                    SAMARA MARION
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             147410.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            147410.92
TotalPayBenefits                    147410.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2417, dtype: object)
(2418, Id                                              2419
EmployeeName                            KEVIN PHIPPS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.22
OvertimePay                                  7507.28
OtherPay                                     9394.75
Benefits                                         NaN
TotalPay                                   147407.25
TotalPayBenefits                           147407.25
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2418, dtype: object)
(2419, Id                                      2420
EmployeeName                   BRIDGET SMITH
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            147302.21
OvertimePay                              0.0
OtherPay                                90.0
Benefits                                 NaN
TotalPay                           147392.21
TotalPayBenefits                   147392.21
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2419, dtype: object)
(2420, Id                                   2421
EmployeeName               CESAR GONZALES
JobTitle            MAINTENANCE MACHINIST
BasePay                          76266.41
OvertimePay                       62937.3
OtherPay                          8186.09
Benefits                              NaN
TotalPay                         147389.8
TotalPayBenefits                 147389.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2420, dtype: object)
(2421, Id                                              2422
EmployeeName                         TADAO YAMAGUCHI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.39
OvertimePay                                 11002.96
OtherPay                                     5909.99
Benefits                                         NaN
TotalPay                                   147389.34
TotalPayBenefits                           147389.34
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2421, dtype: object)
(2422, Id                           2423
EmployeeName         JAMES CARLIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              23843.79
OtherPay                 17609.84
Benefits                      NaN
TotalPay                147388.29
TotalPayBenefits        147388.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2422, dtype: object)
(2423, Id                                  2424
EmployeeName        KEVIN FISHER-PAULSON
JobTitle               SHERIFF'S CAPTAIN
BasePay                         136869.6
OvertimePay                      1039.21
OtherPay                          9456.0
Benefits                             NaN
TotalPay                       147364.81
TotalPayBenefits               147364.81
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2423, dtype: object)
(2424, Id                                              2425
EmployeeName                               SCOTT LAU
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.93
OvertimePay                                  7071.72
OtherPay                                      9823.3
Benefits                                         NaN
TotalPay                                   147352.95
TotalPayBenefits                           147352.95
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2424, dtype: object)
(2425, Id                                2426
EmployeeName         CHRISTOPHER HAYES
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   27945.22
OtherPay                        6985.6
Benefits                           NaN
TotalPay                     147352.25
TotalPayBenefits             147352.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2425, dtype: object)
(2426, Id                                2427
EmployeeName            JOANNA LEONARD
JobTitle            NURSE PRACTITIONER
BasePay                      147033.05
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     147283.05
TotalPayBenefits             147283.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2426, dtype: object)
(2427, Id                             2428
EmployeeName        ANTONIO LANSANG
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                    7262.81
Benefits                        NaN
TotalPay                  147265.83
TotalPayBenefits          147265.83
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2427, dtype: object)
(2428, Id                                2429
EmployeeName            SHARON LEGENZA
JobTitle            NURSE PRACTITIONER
BasePay                      123836.73
OvertimePay                    8900.53
OtherPay                      14514.54
Benefits                           NaN
TotalPay                      147251.8
TotalPayBenefits              147251.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2428, dtype: object)
(2429, Id                                                   2430
EmployeeName                          RIGOBERTO HERNANDEZ
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          76403.23
OvertimePay                                      68615.06
OtherPay                                          2205.84
Benefits                                              NaN
TotalPay                                        147224.13
TotalPayBenefits                                147224.13
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 2429, dtype: object)
(2430, Id                                                2431
EmployeeName                             LAWRENCE MACK
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130466.59
OvertimePay                                    8836.94
OtherPay                                       7912.84
Benefits                                           NaN
TotalPay                                     147216.37
TotalPayBenefits                             147216.37
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2430, dtype: object)
(2431, Id                                2432
EmployeeName                 MARTY WAY
JobTitle            POLICE OFFICER III
BasePay                        63921.6
OvertimePay                   42270.08
OtherPay                      41004.57
Benefits                           NaN
TotalPay                     147196.25
TotalPayBenefits             147196.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2431, dtype: object)
(2432, Id                               2433
EmployeeName        VILLAMOR CORRALES
JobTitle             REGISTERED NURSE
BasePay                      119496.0
OvertimePay                   3309.12
OtherPay                     24383.64
Benefits                          NaN
TotalPay                    147188.76
TotalPayBenefits            147188.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2432, dtype: object)
(2433, Id                                       2434
EmployeeName                         IRA BARG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              147186.3
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             147186.3
TotalPayBenefits                     147186.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2433, dtype: object)
(2434, Id                                              2435
EmployeeName                         MARICELA SAINEZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.46
OvertimePay                                  6219.44
OtherPay                                    10485.39
Benefits                                         NaN
TotalPay                                   147186.29
TotalPayBenefits                           147186.29
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2434, dtype: object)
(2435, Id                           2436
EmployeeName           MERJO ROCA
JobTitle            NURSE MANAGER
BasePay                  137551.6
OvertimePay                   0.0
OtherPay                  9632.28
Benefits                      NaN
TotalPay                147183.88
TotalPayBenefits        147183.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2435, dtype: object)
(2436, Id                                              2437
EmployeeName                          JOHN ROBERTSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.45
OvertimePay                                  9598.57
OtherPay                                     7118.95
Benefits                                         NaN
TotalPay                                   147174.97
TotalPayBenefits                           147174.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2436, dtype: object)
(2437, Id                           2438
EmployeeName        AVANTIKA NATH
JobTitle                  DENTIST
BasePay                 147167.58
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                147167.58
TotalPayBenefits        147167.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2437, dtype: object)
(2438, Id                                              2439
EmployeeName                         ANTHONY MONTOYA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115839.94
OvertimePay                                  18499.4
OtherPay                                    12817.24
Benefits                                         NaN
TotalPay                                   147156.58
TotalPayBenefits                           147156.58
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2438, dtype: object)
(2439, Id                                              2440
EmployeeName                            JUAN DANIELS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                  6430.59
OtherPay                                    10266.89
Benefits                                         NaN
TotalPay                                   147155.45
TotalPayBenefits                           147155.45
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2439, dtype: object)
(2440, Id                           2441
EmployeeName         JOSEPH SILVA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              29935.93
OtherPay                 11282.39
Benefits                      NaN
TotalPay                147152.98
TotalPayBenefits        147152.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2440, dtype: object)
(2441, Id                                                      2442
EmployeeName                                   TERRY ELISAIA
JobTitle            COMMUNICATIONS LINE WORKER SUPERVISOR II
BasePay                                            105465.45
OvertimePay                                         30020.37
OtherPay                                            11661.08
Benefits                                                 NaN
TotalPay                                            147146.9
TotalPayBenefits                                    147146.9
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 2441, dtype: object)
(2442, Id                                                               2443
EmployeeName                                               PATRICK HO
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89815.81
OvertimePay                                                  47951.48
OtherPay                                                       9374.9
Benefits                                                          NaN
TotalPay                                                    147142.19
TotalPayBenefits                                            147142.19
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2442, dtype: object)
(2443, Id                               2444
EmployeeName        MARIA EDNA AQUINO
JobTitle             REGISTERED NURSE
BasePay                      126984.0
OvertimePay                   6749.07
OtherPay                      13394.6
Benefits                          NaN
TotalPay                    147127.67
TotalPayBenefits            147127.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2443, dtype: object)
(2444, Id                             2445
EmployeeName        THOMAS THORNTON
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                24724.33
OtherPay                   16467.17
Benefits                        NaN
TotalPay                  147126.17
TotalPayBenefits          147126.17
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2444, dtype: object)
(2445, Id                                              2446
EmployeeName                        LAWRENCE GRAY JR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130447.34
OvertimePay                                  6583.72
OtherPay                                    10089.17
Benefits                                         NaN
TotalPay                                   147120.23
TotalPayBenefits                           147120.23
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2445, dtype: object)
(2446, Id                                                2447
EmployeeName                           RONALD REYNOLDS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.57
OvertimePay                                    9918.77
OtherPay                                       6715.05
Benefits                                           NaN
TotalPay                                     147115.39
TotalPayBenefits                             147115.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2446, dtype: object)
(2447, Id                           2448
EmployeeName        ANTON SHELTON
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              22981.96
OtherPay                  18191.7
Benefits                      NaN
TotalPay                147108.32
TotalPayBenefits        147108.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2447, dtype: object)
(2448, Id                                                2449
EmployeeName                              PHILLIP WONG
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                   10103.24
OtherPay                                       6510.34
Benefits                                           NaN
TotalPay                                     147095.17
TotalPayBenefits                             147095.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2448, dtype: object)
(2449, Id                                 2450
EmployeeName               JAMES GASPER
JobTitle            CLINICAL PHARMACIST
BasePay                       147093.63
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      147093.63
TotalPayBenefits              147093.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2449, dtype: object)
(2450, Id                                 2451
EmployeeName            THI TRAM NGUYEN
JobTitle            CLINICAL PHARMACIST
BasePay                       147093.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      147093.62
TotalPayBenefits              147093.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2450, dtype: object)
(2451, Id                                                2452
EmployeeName                   ROBERTO BARRIENTOS-CRUZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   62461.61
OtherPay                                       7029.32
Benefits                                           NaN
TotalPay                                     147071.33
TotalPayBenefits                             147071.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2451, dtype: object)
(2452, Id                            2453
EmployeeName        WILLIAM DORSEY
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               23560.88
OtherPay                  17567.89
Benefits                       NaN
TotalPay                 147063.42
TotalPayBenefits         147063.42
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2452, dtype: object)
(2453, Id                           2454
EmployeeName          MARK SIKORA
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              23950.56
OtherPay                 17175.96
Benefits                      NaN
TotalPay                147061.16
TotalPayBenefits        147061.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2453, dtype: object)
(2454, Id                                  2455
EmployeeName           DARRIN MARTINDALE
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121087.39
OvertimePay                     10731.47
OtherPay                        15241.24
Benefits                             NaN
TotalPay                        147060.1
TotalPayBenefits                147060.1
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2454, dtype: object)
(2455, Id                                                2456
EmployeeName                             NICOLE GREELY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                      137045.23
OvertimePay                                    6409.78
OtherPay                                       3596.59
Benefits                                           NaN
TotalPay                                      147051.6
TotalPayBenefits                              147051.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2455, dtype: object)
(2456, Id                               2457
EmployeeName        MICHAEL ALEXANDER
JobTitle            POLICE OFFICER II
BasePay                     114711.37
OvertimePay                  14404.61
OtherPay                     17930.54
Benefits                          NaN
TotalPay                    147046.52
TotalPayBenefits            147046.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2456, dtype: object)
(2457, Id                                 2458
EmployeeName             JUSTIN QUINTAL
JobTitle            CLINICAL PHARMACIST
BasePay                        126623.2
OvertimePay                     7504.05
OtherPay                       12918.93
Benefits                            NaN
TotalPay                      147046.18
TotalPayBenefits              147046.18
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2457, dtype: object)
(2458, Id                               2459
EmployeeName             CHARLES WONG
JobTitle            POLICE OFFICER II
BasePay                     110309.04
OvertimePay                  15228.38
OtherPay                     21508.52
Benefits                          NaN
TotalPay                    147045.94
TotalPayBenefits            147045.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2458, dtype: object)
(2459, Id                                     2460
EmployeeName                        TOM HUI
JobTitle            BUILDING PLANS ENGINEER
BasePay                           133332.01
OvertimePay                             0.0
OtherPay                            13693.5
Benefits                                NaN
TotalPay                          147025.51
TotalPayBenefits                  147025.51
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2459, dtype: object)
(2460, Id                                 2461
EmployeeName              SHIAW-HUEI LO
JobTitle            CLINICAL PHARMACIST
BasePay                       146199.44
OvertimePay                         0.0
OtherPay                         820.27
Benefits                            NaN
TotalPay                      147019.71
TotalPayBenefits              147019.71
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2460, dtype: object)
(2461, Id                                       2462
EmployeeName                  PHOENIX STREETS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             147006.22
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            147006.22
TotalPayBenefits                    147006.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2461, dtype: object)
(2462, Id                                2463
EmployeeName           THOMAS COSTELLO
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                   11153.61
OtherPay                       23409.4
Benefits                           NaN
TotalPay                     147004.81
TotalPayBenefits             147004.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2462, dtype: object)
(2463, Id                                              2464
EmployeeName                            LYN O'CONNOR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  5242.82
OtherPay                                    11280.01
Benefits                                         NaN
TotalPay                                   147004.38
TotalPayBenefits                           147004.38
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2463, dtype: object)
(2464, Id                             2465
EmployeeName            MARK DORIAN
JobTitle            SENIOR ENGINEER
BasePay                   146035.04
OvertimePay                     0.0
OtherPay                      966.0
Benefits                        NaN
TotalPay                  147001.04
TotalPayBenefits          147001.04
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2464, dtype: object)
(2465, Id                                2466
EmployeeName        SURENDRAKUMA MEHTA
JobTitle               SENIOR ENGINEER
BasePay                      145767.03
OvertimePay                        0.0
OtherPay                        1234.0
Benefits                           NaN
TotalPay                     147001.03
TotalPayBenefits             147001.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2465, dtype: object)
(2466, Id                           2467
EmployeeName         DAWN ROSALES
JobTitle              FIREFIGHTER
BasePay                 100865.61
OvertimePay              36053.19
OtherPay                 10082.05
Benefits                      NaN
TotalPay                147000.85
TotalPayBenefits        147000.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2466, dtype: object)
(2467, Id                             2468
EmployeeName         CAROL FINUCANE
JobTitle            SENIOR ENGINEER
BasePay                   145765.17
OvertimePay                     0.0
OtherPay                    1233.91
Benefits                        NaN
TotalPay                  146999.08
TotalPayBenefits          146999.08
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2467, dtype: object)
(2468, Id                              2469
EmployeeName          THERESA OKORIE
JobTitle            REGISTERED NURSE
BasePay                    112369.95
OvertimePay                  7880.48
OtherPay                    26738.83
Benefits                         NaN
TotalPay                   146989.26
TotalPayBenefits           146989.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2468, dtype: object)
(2469, Id                                              2470
EmployeeName                              OMAR BUENO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  8807.78
OtherPay                                     7668.21
Benefits                                         NaN
TotalPay                                   146957.54
TotalPayBenefits                           146957.54
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2469, dtype: object)
(2470, Id                            2471
EmployeeName        ANTHONY BRYANT
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               47461.53
OtherPay                  12642.32
Benefits                       NaN
TotalPay                 146943.86
TotalPayBenefits         146943.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2470, dtype: object)
(2471, Id                                2472
EmployeeName        EDWARD GHILARDI JR
JobTitle                   FIREFIGHTER
BasePay                      115295.02
OvertimePay                   14851.64
OtherPay                      16794.75
Benefits                           NaN
TotalPay                     146941.41
TotalPayBenefits             146941.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2471, dtype: object)
(2472, Id                                  2473
EmployeeName        CHARLES CLONIGER III
JobTitle              NURSE PRACTITIONER
BasePay                        144512.87
OvertimePay                          0.0
OtherPay                         2424.09
Benefits                             NaN
TotalPay                       146936.96
TotalPayBenefits               146936.96
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2472, dtype: object)
(2473, Id                                              2474
EmployeeName                                  CARL T
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.76
OvertimePay                                  6105.55
OtherPay                                    10370.52
Benefits                                         NaN
TotalPay                                   146933.83
TotalPayBenefits                           146933.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2473, dtype: object)
(2474, Id                                2475
EmployeeName           MELVIN THORNTON
JobTitle            POLICE OFFICER III
BasePay                      111657.13
OvertimePay                    8340.14
OtherPay                      26935.38
Benefits                           NaN
TotalPay                     146932.65
TotalPayBenefits             146932.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2474, dtype: object)
(2475, Id                                 2476
EmployeeName             MELISSA NGUYEN
JobTitle            CLINICAL PHARMACIST
BasePay                       134789.52
OvertimePay                     5520.24
OtherPay                        6619.96
Benefits                            NaN
TotalPay                      146929.72
TotalPayBenefits              146929.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2475, dtype: object)
(2476, Id                                       2477
EmployeeName                    DEBORAH HONIG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             113737.93
OvertimePay                               0.0
OtherPay                              33190.0
Benefits                                  NaN
TotalPay                            146927.93
TotalPayBenefits                    146927.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2476, dtype: object)
(2477, Id                                 2478
EmployeeName        FRANCIS VALLESTEROS
JobTitle                  SPECIAL NURSE
BasePay                       127253.61
OvertimePay                     1194.94
OtherPay                       18474.97
Benefits                            NaN
TotalPay                      146923.52
TotalPayBenefits              146923.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2477, dtype: object)
(2478, Id                                              2479
EmployeeName                          DAVID DORANTES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                  6875.12
OtherPay                                     9548.71
Benefits                                         NaN
TotalPay                                   146905.39
TotalPayBenefits                           146905.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2478, dtype: object)
(2479, Id                                              2480
EmployeeName                             JOHN CONWAY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                  4763.33
OtherPay                                    11642.03
Benefits                                         NaN
TotalPay                                    146886.9
TotalPayBenefits                            146886.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2479, dtype: object)
(2480, Id                           2481
EmployeeName          LEAH CUSTIS
JobTitle            SPECIAL NURSE
BasePay                 116119.99
OvertimePay              12667.58
OtherPay                 18095.61
Benefits                      NaN
TotalPay                146883.18
TotalPayBenefits        146883.18
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2480, dtype: object)
(2481, Id                                              2482
EmployeeName                       CHRISTOPHER CREED
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.12
OvertimePay                                   8181.7
OtherPay                                     8170.08
Benefits                                         NaN
TotalPay                                    146856.9
TotalPayBenefits                            146856.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2481, dtype: object)
(2482, Id                                              2483
EmployeeName                             RAYMOND COX
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  4274.47
OtherPay                                    12094.89
Benefits                                         NaN
TotalPay                                   146850.91
TotalPayBenefits                           146850.91
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2482, dtype: object)
(2483, Id                                              2484
EmployeeName                          MARK HUTCHINGS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.52
OvertimePay                                  7639.22
OtherPay                                     8710.83
Benefits                                         NaN
TotalPay                                   146831.57
TotalPayBenefits                           146831.57
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2483, dtype: object)
(2484, Id                                         2485
EmployeeName                   ROBERT TURNQUIST
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             8359.19
OtherPay                               15365.22
Benefits                                    NaN
TotalPay                              146829.41
TotalPayBenefits                      146829.41
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2484, dtype: object)
(2485, Id                           2486
EmployeeName        DARRELL STONE
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay              23669.83
OtherPay                 17212.07
Benefits                      NaN
TotalPay                146816.61
TotalPayBenefits        146816.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2485, dtype: object)
(2486, Id                                 2487
EmployeeName        BARTHOLOMEW JOHNSON
JobTitle             POLICE OFFICER III
BasePay                       117262.92
OvertimePay                    15648.44
OtherPay                       13890.91
Benefits                            NaN
TotalPay                      146802.27
TotalPayBenefits              146802.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2486, dtype: object)
(2487, Id                                       2488
EmployeeName                   ROBERTO FORTES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             145900.03
OvertimePay                               0.0
OtherPay                               884.76
Benefits                                  NaN
TotalPay                            146784.79
TotalPayBenefits                    146784.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2487, dtype: object)
(2488, Id                                    2489
EmployeeName               MICHAEL CREEDON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            62633.5
OvertimePay                         6711.0
OtherPay                          77439.07
Benefits                               NaN
TotalPay                         146783.57
TotalPayBenefits                 146783.57
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2488, dtype: object)
(2489, Id                                2490
EmployeeName              JOHN TORRISE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   12708.44
OtherPay                      21649.96
Benefits                           NaN
TotalPay                     146779.84
TotalPayBenefits             146779.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2489, dtype: object)
(2490, Id                                2491
EmployeeName            EUGENE KALININ
JobTitle            POLICE OFFICER III
BasePay                       117262.8
OvertimePay                   12999.95
OtherPay                      16487.59
Benefits                           NaN
TotalPay                     146750.34
TotalPayBenefits             146750.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2490, dtype: object)
(2491, Id                                2492
EmployeeName               MICHAEL LEE
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   18517.31
OtherPay                      15828.05
Benefits                           NaN
TotalPay                     146746.43
TotalPayBenefits             146746.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2491, dtype: object)
(2492, Id                                  2493
EmployeeName        MARIONETTE HUQUERIZA
JobTitle                REGISTERED NURSE
BasePay                         126984.0
OvertimePay                      6446.88
OtherPay                        13314.62
Benefits                             NaN
TotalPay                        146745.5
TotalPayBenefits                146745.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2492, dtype: object)
(2493, Id                                       2494
EmployeeName                     MANOHAR RAJU
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             146726.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            146726.01
TotalPayBenefits                    146726.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2493, dtype: object)
(2494, Id                                 2495
EmployeeName              ELAINE FORBES
JobTitle            DEPUTY DIRECTOR III
BasePay                       146718.76
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      146718.76
TotalPayBenefits              146718.76
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2494, dtype: object)
(2495, Id                             2496
EmployeeName        DOMINIC SHANLEY
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                28248.71
OtherPay                   12531.96
Benefits                        NaN
TotalPay                  146715.31
TotalPayBenefits          146715.31
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2495, dtype: object)
(2496, Id                              2497
EmployeeName           LOUIS GALARCE
JobTitle            TRANSIT OPERATOR
BasePay                     72074.84
OvertimePay                 70666.18
OtherPay                     3939.37
Benefits                         NaN
TotalPay                   146680.39
TotalPayBenefits           146680.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2496, dtype: object)
(2497, Id                                         2498
EmployeeName                       SEAN MULLANE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                             6929.64
OtherPay                               16596.13
Benefits                                    NaN
TotalPay                              146630.79
TotalPayBenefits                      146630.79
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2497, dtype: object)
(2498, Id                             2499
EmployeeName        DANIEL DOUGLASS
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                30541.48
OtherPay                   10131.63
Benefits                        NaN
TotalPay                   146607.8
TotalPayBenefits           146607.8
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2498, dtype: object)
(2499, Id                                              2500
EmployeeName                           TIMOTHY PAINE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.88
OvertimePay                                  8163.57
OtherPay                                     7946.89
Benefits                                         NaN
TotalPay                                   146568.34
TotalPayBenefits                           146568.34
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2499, dtype: object)
(2500, Id                                                2501
EmployeeName                                 EDWARD YU
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.86
OvertimePay                                   10028.94
OtherPay                                       6070.63
Benefits                                           NaN
TotalPay                                     146557.43
TotalPayBenefits                             146557.43
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2500, dtype: object)
(2501, Id                              2502
EmployeeName               BENG TENG
JobTitle            REGISTERED NURSE
BasePay                    123900.97
OvertimePay                  3846.15
OtherPay                    18809.05
Benefits                         NaN
TotalPay                   146556.17
TotalPayBenefits           146556.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2501, dtype: object)
(2502, Id                                              2503
EmployeeName                           ELISHA TURNER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.98
OvertimePay                                  3152.26
OtherPay                                    12927.03
Benefits                                         NaN
TotalPay                                   146537.27
TotalPayBenefits                           146537.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2502, dtype: object)
(2503, Id                                                               2504
EmployeeName                                           WILLIAM TEAHAN
JobTitle            WATER CONSTRUCTION AND MAINTENANCE SUPERINTENDENT
BasePay                                                     116370.41
OvertimePay                                                   4079.13
OtherPay                                                     26083.71
Benefits                                                          NaN
TotalPay                                                    146533.25
TotalPayBenefits                                            146533.25
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2503, dtype: object)
(2504, Id                                              2505
EmployeeName                           RANDY CATURAY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.59
OvertimePay                                   998.89
OtherPay                                    15039.05
Benefits                                         NaN
TotalPay                                   146519.53
TotalPayBenefits                           146519.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2504, dtype: object)
(2505, Id                                              2506
EmployeeName                             LUCIO PEREZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  4648.96
OtherPay                                    11374.65
Benefits                                         NaN
TotalPay                                   146505.14
TotalPayBenefits                           146505.14
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2505, dtype: object)
(2506, Id                                         2507
EmployeeName                         WAYNE WONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                            12219.03
OtherPay                               11176.34
Benefits                                    NaN
TotalPay                               146500.4
TotalPayBenefits                       146500.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2506, dtype: object)
(2507, Id                                    2508
EmployeeName                DONALD BARRICK
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122001.8
OvertimePay                         8983.0
OtherPay                          15501.12
Benefits                               NaN
TotalPay                         146485.92
TotalPayBenefits                 146485.92
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2507, dtype: object)
(2508, Id                                               2509
EmployeeName                            JIMMY MIRANDA
JobTitle            INSPECTOR II, (POLICE DEPARTMENT)
BasePay                                     128147.12
OvertimePay                                   7628.14
OtherPay                                     10694.26
Benefits                                          NaN
TotalPay                                    146469.52
TotalPayBenefits                            146469.52
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2508, dtype: object)
(2509, Id                                2510
EmployeeName            ROBERT KELLOGG
JobTitle            POLICE OFFICER III
BasePay                       112113.8
OvertimePay                   10282.54
OtherPay                      24049.42
Benefits                           NaN
TotalPay                     146445.76
TotalPayBenefits             146445.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2509, dtype: object)
(2510, Id                                         2511
EmployeeName                   MICHAEL FUCCIOLO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               121495.39
OvertimePay                             14937.8
OtherPay                               10008.16
Benefits                                    NaN
TotalPay                              146441.35
TotalPayBenefits                      146441.35
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2510, dtype: object)
(2511, Id                            2512
EmployeeName        MAUREEN GANNON
JobTitle                MANAGER IV
BasePay                  137885.36
OvertimePay                    0.0
OtherPay                   8537.18
Benefits                       NaN
TotalPay                 146422.54
TotalPayBenefits         146422.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2511, dtype: object)
(2512, Id                                2513
EmployeeName            RAYMOND FISHER
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   54839.23
OtherPay                       3518.26
Benefits                           NaN
TotalPay                     146419.49
TotalPayBenefits             146419.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2512, dtype: object)
(2513, Id                                              2514
EmployeeName                            TAMMY HALLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                  6754.37
OtherPay                                     9177.46
Benefits                                         NaN
TotalPay                                    146413.4
TotalPayBenefits                            146413.4
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2513, dtype: object)
(2514, Id                                    2515
EmployeeName                 RICHARD FAUST
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       12750.27
OtherPay                          11245.95
Benefits                               NaN
TotalPay                         146401.22
TotalPayBenefits                 146401.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2514, dtype: object)
(2515, Id                             2516
EmployeeName        ALLEN BOGDANOFF
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                22696.13
OtherPay                   17754.83
Benefits                        NaN
TotalPay                  146385.63
TotalPayBenefits          146385.63
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2515, dtype: object)
(2516, Id                                   2517
EmployeeName               VALERIE CARSON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96253.06
OvertimePay                      40803.87
OtherPay                          9319.94
Benefits                              NaN
TotalPay                        146376.87
TotalPayBenefits                146376.87
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2516, dtype: object)
(2517, Id                             2518
EmployeeName         KEVIN COSTELLO
JobTitle            SENIOR ENGINEER
BasePay                   142281.94
OvertimePay                     0.0
OtherPay                    4069.25
Benefits                        NaN
TotalPay                  146351.19
TotalPayBenefits          146351.19
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2517, dtype: object)
(2518, Id                              2519
EmployeeName        CHRISTOPHER YOCK
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 28818.32
OtherPay                    11589.38
Benefits                         NaN
TotalPay                   146342.35
TotalPayBenefits           146342.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2518, dtype: object)
(2519, Id                                 2520
EmployeeName                ANGELA WINN
JobTitle            PHYSICIAN ASSISTANT
BasePay                        146325.9
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       146325.9
TotalPayBenefits               146325.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2519, dtype: object)
(2520, Id                                2521
EmployeeName                 ERIC NEFF
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                   11309.76
OtherPay                       17702.2
Benefits                           NaN
TotalPay                     146315.65
TotalPayBenefits             146315.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2520, dtype: object)
(2521, Id                                  2522
EmployeeName             KEVIN MCCONNELL
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121265.36
OvertimePay                     13421.11
OtherPay                        11624.14
Benefits                             NaN
TotalPay                       146310.61
TotalPayBenefits               146310.61
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2521, dtype: object)
(2522, Id                              2523
EmployeeName        ROSEMARY REDMOND
JobTitle                  PHARMACIST
BasePay                     133399.0
OvertimePay                    26.84
OtherPay                    12883.75
Benefits                         NaN
TotalPay                   146309.59
TotalPayBenefits           146309.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2522, dtype: object)
(2523, Id                            2524
EmployeeName        RAFAEL CABRERA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.04
OvertimePay               45249.22
OtherPay                  14219.26
Benefits                       NaN
TotalPay                 146308.52
TotalPayBenefits         146308.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2523, dtype: object)
(2524, Id                                2525
EmployeeName           ANTHONY GARRETT
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    8398.71
OtherPay                      25476.29
Benefits                           NaN
TotalPay                     146296.43
TotalPayBenefits             146296.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2524, dtype: object)
(2525, Id                                    2526
EmployeeName                   ALVIN SELVA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          120659.23
OvertimePay                       12402.95
OtherPay                          13229.53
Benefits                               NaN
TotalPay                         146291.71
TotalPayBenefits                 146291.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2525, dtype: object)
(2526, Id                                                2527
EmployeeName                              JOHN CARROLL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.15
OvertimePay                                    3763.68
OtherPay                                      12017.57
Benefits                                           NaN
TotalPay                                      146286.4
TotalPayBenefits                              146286.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2526, dtype: object)
(2527, Id                                         2528
EmployeeName                       KATHY AUSTIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             4838.56
OtherPay                               18339.04
Benefits                                    NaN
TotalPay                              146282.61
TotalPayBenefits                      146282.61
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2527, dtype: object)
(2528, Id                                2529
EmployeeName               NAOMI ZUBIN
JobTitle            NURSE PRACTITIONER
BasePay                      144797.91
OvertimePay                        0.0
OtherPay                        1425.0
Benefits                           NaN
TotalPay                     146222.91
TotalPayBenefits             146222.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2528, dtype: object)
(2529, Id                                2530
EmployeeName           CHARLES SIMPSON
JobTitle            POLICE OFFICER III
BasePay                      117283.27
OvertimePay                   14269.98
OtherPay                      14657.49
Benefits                           NaN
TotalPay                     146210.74
TotalPayBenefits             146210.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2529, dtype: object)
(2530, Id                                   2531
EmployeeName                  ALBERT JANG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                      41281.85
OtherPay                          8676.06
Benefits                              NaN
TotalPay                        146209.93
TotalPayBenefits                146209.93
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2530, dtype: object)
(2531, Id                                              2532
EmployeeName                        ANTHONY MANFREDA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  3196.17
OtherPay                                    12555.51
Benefits                                         NaN
TotalPay                                   146209.59
TotalPayBenefits                           146209.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2531, dtype: object)
(2532, Id                                2533
EmployeeName            LARRY BERTRAND
JobTitle            POLICE OFFICER III
BasePay                      110911.08
OvertimePay                    6099.22
OtherPay                      29190.57
Benefits                           NaN
TotalPay                     146200.87
TotalPayBenefits             146200.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2532, dtype: object)
(2533, Id                                       2534
EmployeeName                   DEMARRIS EVANS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             146199.24
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            146199.24
TotalPayBenefits                    146199.24
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2533, dtype: object)
(2534, Id                                         2535
EmployeeName                        BROCK WELLS
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.04
OvertimePay                              491.05
OtherPay                               22592.98
Benefits                                    NaN
TotalPay                              146189.07
TotalPayBenefits                      146189.07
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2534, dtype: object)
(2535, Id                              2536
EmployeeName           BELEN FERRARO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  5714.28
OtherPay                    13468.16
Benefits                         NaN
TotalPay                   146166.44
TotalPayBenefits           146166.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2535, dtype: object)
(2536, Id                            2537
EmployeeName        ADAM BUSTILLOS
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               22804.88
OtherPay                  17424.89
Benefits                       NaN
TotalPay                 146164.43
TotalPayBenefits         146164.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2536, dtype: object)
(2537, Id                                         2538
EmployeeName                   KIMBERLY MC KEON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                            14018.13
OtherPay                                9030.74
Benefits                                    NaN
TotalPay                              146153.89
TotalPayBenefits                      146153.89
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2537, dtype: object)
(2538, Id                                2539
EmployeeName          MARK TRIERWEILER
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   26433.73
OtherPay                       7280.32
Benefits                           NaN
TotalPay                     146115.13
TotalPayBenefits             146115.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2538, dtype: object)
(2539, Id                                2540
EmployeeName               STEVEN MOSS
JobTitle            POLICE OFFICER III
BasePay                      103593.45
OvertimePay                    4313.78
OtherPay                      38203.68
Benefits                           NaN
TotalPay                     146110.91
TotalPayBenefits             146110.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2539, dtype: object)
(2540, Id                            2541
EmployeeName          KHAE SAEPHAN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               47715.08
OtherPay                  11519.37
Benefits                       NaN
TotalPay                 146074.45
TotalPayBenefits         146074.45
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2540, dtype: object)
(2541, Id                                    2542
EmployeeName                NICHOLAS PAYNE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                        8348.16
OtherPay                          15277.82
Benefits                               NaN
TotalPay                         146030.98
TotalPayBenefits                 146030.98
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2541, dtype: object)
(2542, Id                                                2543
EmployeeName                              YVONNE ALLEN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.55
OvertimePay                                    7045.37
OtherPay                                       8499.85
Benefits                                           NaN
TotalPay                                     146026.77
TotalPayBenefits                             146026.77
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2542, dtype: object)
(2543, Id                              2544
EmployeeName             OSCAR BUENO
JobTitle            REGISTERED NURSE
BasePay                    117459.01
OvertimePay                  7412.98
OtherPay                    21141.87
Benefits                         NaN
TotalPay                   146013.86
TotalPayBenefits           146013.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2543, dtype: object)
(2544, Id                               2545
EmployeeName          MICHAEL SHAVERS
JobTitle            POLICE OFFICER II
BasePay                     105933.51
OvertimePay                  22620.64
OtherPay                     17456.72
Benefits                          NaN
TotalPay                    146010.87
TotalPayBenefits            146010.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2544, dtype: object)
(2545, Id                                2546
EmployeeName              LYNN POMATTO
JobTitle            POLICE OFFICER III
BasePay                      112175.45
OvertimePay                    2414.18
OtherPay                      31415.83
Benefits                           NaN
TotalPay                     146005.46
TotalPayBenefits             146005.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2545, dtype: object)
(2546, Id                                2547
EmployeeName            STEPHANIE TSAO
JobTitle            NURSE PRACTITIONER
BasePay                       144500.4
OvertimePay                        0.0
OtherPay                        1500.0
Benefits                           NaN
TotalPay                      146000.4
TotalPayBenefits              146000.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2546, dtype: object)
(2547, Id                                              2548
EmployeeName                          RAMON TERRAZAS
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                    145950.99
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   145950.99
TotalPayBenefits                           145950.99
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2547, dtype: object)
(2548, Id                                 2549
EmployeeName                DANIEL DECK
JobTitle            CLINICAL PHARMACIST
BasePay                       145949.01
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      145949.01
TotalPayBenefits              145949.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2548, dtype: object)
(2549, Id                                              2550
EmployeeName                            BOBBY CHEUNG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.81
OvertimePay                                  4939.56
OtherPay                                    10511.98
Benefits                                         NaN
TotalPay                                   145909.35
TotalPayBenefits                           145909.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2549, dtype: object)
(2550, Id                                              2551
EmployeeName                        LESLIE FORRESTAL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                  9154.41
OtherPay                                     6266.58
Benefits                                         NaN
TotalPay                                   145902.56
TotalPayBenefits                           145902.56
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2550, dtype: object)
(2551, Id                                  2552
EmployeeName        JEAN TAYLOR-WOODBURY
JobTitle              NURSE PRACTITIONER
BasePay                        145199.04
OvertimePay                       444.66
OtherPay                           250.0
Benefits                             NaN
TotalPay                        145893.7
TotalPayBenefits                145893.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2551, dtype: object)
(2552, Id                               2553
EmployeeName          DONALD ANDERSON
JobTitle            POLICE OFFICER II
BasePay                     110328.94
OvertimePay                   15764.0
OtherPay                      19797.7
Benefits                          NaN
TotalPay                    145890.64
TotalPayBenefits            145890.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2552, dtype: object)
(2553, Id                           2554
EmployeeName        JANET CLAYTON
JobTitle            SPECIAL NURSE
BasePay                 118335.74
OvertimePay               8538.24
OtherPay                 19008.58
Benefits                      NaN
TotalPay                145882.56
TotalPayBenefits        145882.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2553, dtype: object)
(2554, Id                                                         2555
EmployeeName                                    ALICIA CASTILLO
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130457.92
OvertimePay                                            10890.37
OtherPay                                                4470.75
Benefits                                                    NaN
TotalPay                                              145819.04
TotalPayBenefits                                      145819.04
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 2554, dtype: object)
(2555, Id                                          2556
EmployeeName                      JAMES COSTELLO
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 102050.0
OvertimePay                             26801.47
OtherPay                                16966.44
Benefits                                     NaN
TotalPay                               145817.91
TotalPayBenefits                       145817.91
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2555, dtype: object)
(2556, Id                                              2557
EmployeeName                              CURTIS LIU
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                   3073.0
OtherPay                                     12277.3
Benefits                                         NaN
TotalPay                                   145808.21
TotalPayBenefits                           145808.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2556, dtype: object)
(2557, Id                           2558
EmployeeName        PATRICK BRYAN
JobTitle              FIREFIGHTER
BasePay                 105423.63
OvertimePay              26732.13
OtherPay                 13642.75
Benefits                      NaN
TotalPay                145798.51
TotalPayBenefits        145798.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2557, dtype: object)
(2558, Id                                 2559
EmployeeName              JENNIFER CHON
JobTitle            CLINICAL PHARMACIST
BasePay                       140078.01
OvertimePay                     5613.17
OtherPay                          106.6
Benefits                            NaN
TotalPay                      145797.78
TotalPayBenefits              145797.78
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2558, dtype: object)
(2559, Id                                                2560
EmployeeName                               JOHN NEWMAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    4565.06
OtherPay                                      10762.14
Benefits                                           NaN
TotalPay                                     145785.14
TotalPayBenefits                             145785.14
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2559, dtype: object)
(2560, Id                           2561
EmployeeName          EIGIL QWIST
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              32954.47
OtherPay                  6892.45
Benefits                      NaN
TotalPay                145781.58
TotalPayBenefits        145781.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2560, dtype: object)
(2561, Id                              2562
EmployeeName             KEVIN LYONS
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 10731.29
OtherPay                    28954.58
Benefits                         NaN
TotalPay                   145751.07
TotalPayBenefits           145751.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2561, dtype: object)
(2562, Id                                              2563
EmployeeName                         PAUL WEGGENMANN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.28
OvertimePay                                   6604.0
OtherPay                                     8709.99
Benefits                                         NaN
TotalPay                                   145748.27
TotalPayBenefits                           145748.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2562, dtype: object)
(2563, Id                                2564
EmployeeName              ALVARO SCHOR
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    15250.4
OtherPay                      18073.13
Benefits                           NaN
TotalPay                     145744.97
TotalPayBenefits             145744.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2563, dtype: object)
(2564, Id                                2565
EmployeeName          ARDENE BALLONADO
JobTitle            NURSE PRACTITIONER
BasePay                      141607.01
OvertimePay                        0.0
OtherPay                        4124.0
Benefits                           NaN
TotalPay                     145731.01
TotalPayBenefits             145731.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2564, dtype: object)
(2565, Id                              2566
EmployeeName            DEBBIE SISON
JobTitle            REGISTERED NURSE
BasePay                    113406.48
OvertimePay                  10256.4
OtherPay                    22062.97
Benefits                         NaN
TotalPay                   145725.85
TotalPayBenefits           145725.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2565, dtype: object)
(2566, Id                                              2567
EmployeeName                               ALAN LEVY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.86
OvertimePay                                  2553.69
OtherPay                                    12709.25
Benefits                                         NaN
TotalPay                                    145720.8
TotalPayBenefits                            145720.8
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2566, dtype: object)
(2567, Id                              2568
EmployeeName                BEN CHAN
JobTitle            TRAIN CONTROLLER
BasePay                     102338.1
OvertimePay                 28481.01
OtherPay                    14897.71
Benefits                         NaN
TotalPay                   145716.82
TotalPayBenefits           145716.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2567, dtype: object)
(2568, Id                               2569
EmployeeName        MOHAMMED KOHGADAI
JobTitle              SENIOR ENGINEER
BasePay                     140003.02
OvertimePay                       0.0
OtherPay                      5683.85
Benefits                          NaN
TotalPay                    145686.87
TotalPayBenefits            145686.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2568, dtype: object)
(2569, Id                               2570
EmployeeName             RICHARD HUNT
JobTitle            POLICE OFFICER II
BasePay                     109157.15
OvertimePay                  19399.57
OtherPay                     17113.56
Benefits                          NaN
TotalPay                    145670.28
TotalPayBenefits            145670.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2569, dtype: object)
(2570, Id                            2571
EmployeeName        LEWIS HARRISON
JobTitle                MANAGER VI
BasePay                  145666.97
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 145666.97
TotalPayBenefits         145666.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2570, dtype: object)
(2571, Id                                              2572
EmployeeName                              DARYL FONG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.41
OvertimePay                                  3288.86
OtherPay                                     11883.1
Benefits                                         NaN
TotalPay                                   145653.37
TotalPayBenefits                           145653.37
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2571, dtype: object)
(2572, Id                             2573
EmployeeName             ALBERT ENG
JobTitle            SENIOR ENGINEER
BasePay                   143824.24
OvertimePay                     0.0
OtherPay                     1804.0
Benefits                        NaN
TotalPay                  145628.24
TotalPayBenefits          145628.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2572, dtype: object)
(2573, Id                               2574
EmployeeName           BRENT BRADFORD
JobTitle            POLICE OFFICER II
BasePay                     110262.75
OvertimePay                  12762.91
OtherPay                     22601.92
Benefits                          NaN
TotalPay                    145627.58
TotalPayBenefits            145627.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2573, dtype: object)
(2574, Id                                              2575
EmployeeName                          DAVID O'CONNOR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    131098.24
OvertimePay                                  3819.28
OtherPay                                    10691.35
Benefits                                         NaN
TotalPay                                   145608.87
TotalPayBenefits                           145608.87
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2574, dtype: object)
(2575, Id                           2576
EmployeeName         JOHN SHANLEY
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              23628.48
OtherPay                 16042.59
Benefits                      NaN
TotalPay                145605.75
TotalPayBenefits        145605.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2575, dtype: object)
(2576, Id                                                2577
EmployeeName                               JAMES KELLY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                    4545.56
OtherPay                                      10555.77
Benefits                                           NaN
TotalPay                                     145582.89
TotalPayBenefits                             145582.89
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2576, dtype: object)
(2577, Id                               2578
EmployeeName        KIMBERLY CLAYBORN
JobTitle               DEPUTY SHERIFF
BasePay                      86166.99
OvertimePay                  47168.95
OtherPay                     12227.23
Benefits                          NaN
TotalPay                    145563.17
TotalPayBenefits            145563.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2577, dtype: object)
(2578, Id                                              2579
EmployeeName                            THOMAS WALSH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                   7132.5
OtherPay                                     7949.89
Benefits                                         NaN
TotalPay                                    145540.3
TotalPayBenefits                            145540.3
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2578, dtype: object)
(2579, Id                           2580
EmployeeName        KENNETH DEVER
JobTitle              FIREFIGHTER
BasePay                 102423.47
OvertimePay              32520.97
OtherPay                 10581.05
Benefits                      NaN
TotalPay                145525.49
TotalPayBenefits        145525.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2579, dtype: object)
(2580, Id                                                      2581
EmployeeName                                KENNETH BUHAGIAR
JobTitle            TELECOMMUNICATIONS TECHNICIAN SUPERVISOR
BasePay                                            103467.62
OvertimePay                                         12696.77
OtherPay                                            29354.88
Benefits                                                 NaN
TotalPay                                           145519.27
TotalPayBenefits                                   145519.27
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 2580, dtype: object)
(2581, Id                                      2582
EmployeeName                    DAVID PLANKA
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.17
OvertimePay                              0.0
OtherPay                            18545.32
Benefits                                 NaN
TotalPay                           145513.49
TotalPayBenefits                   145513.49
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2581, dtype: object)
(2582, Id                           2583
EmployeeName          SHIRLEY LEE
JobTitle               PHARMACIST
BasePay                 133449.79
OvertimePay                 26.76
OtherPay                 12016.29
Benefits                      NaN
TotalPay                145492.84
TotalPayBenefits        145492.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2582, dtype: object)
(2583, Id                              2584
EmployeeName            LEE DAHLBERG
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                 10662.24
OtherPay                    28766.44
Benefits                         NaN
TotalPay                   145474.75
TotalPayBenefits           145474.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2583, dtype: object)
(2584, Id                           2585
EmployeeName         NATHAN SZUTU
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               27493.7
OtherPay                 12045.94
Benefits                      NaN
TotalPay                145474.33
TotalPayBenefits        145474.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2584, dtype: object)
(2585, Id                                                2586
EmployeeName                           CONRAD CANTRELL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   57268.58
OtherPay                                      10624.52
Benefits                                           NaN
TotalPay                                      145473.5
TotalPayBenefits                              145473.5
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2585, dtype: object)
(2586, Id                           2587
EmployeeName        DAVID SWEENEY
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              22997.15
OtherPay                 16541.26
Benefits                      NaN
TotalPay                145473.06
TotalPayBenefits        145473.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2586, dtype: object)
(2587, Id                                          2588
EmployeeName                     DENNIS MCCARTHY
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101029.55
OvertimePay                             37711.08
OtherPay                                 6729.26
Benefits                                     NaN
TotalPay                               145469.89
TotalPayBenefits                       145469.89
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2587, dtype: object)
(2588, Id                                2589
EmployeeName        ANTHONY BRANCHCOMB
JobTitle                   FIREFIGHTER
BasePay                      105934.66
OvertimePay                   22883.19
OtherPay                      16627.01
Benefits                           NaN
TotalPay                     145444.86
TotalPayBenefits             145444.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2588, dtype: object)
(2589, Id                                                2590
EmployeeName                           RONAN SHOULDICE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.21
OvertimePay                                    3716.08
OtherPay                                      11222.15
Benefits                                           NaN
TotalPay                                     145443.44
TotalPayBenefits                             145443.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2589, dtype: object)
(2590, Id                           2591
EmployeeName          JOHN K CHOY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               18253.9
OtherPay                 21186.26
Benefits                      NaN
TotalPay                145374.82
TotalPayBenefits        145374.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2590, dtype: object)
(2591, Id                           2592
EmployeeName         SALLY SAXTON
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              27568.96
OtherPay                 11841.67
Benefits                      NaN
TotalPay                145345.32
TotalPayBenefits        145345.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2591, dtype: object)
(2592, Id                                 2593
EmployeeName                CHUWEI CHEN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        74244.22
OvertimePay                    48804.14
OtherPay                       22296.66
Benefits                            NaN
TotalPay                      145345.02
TotalPayBenefits              145345.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2592, dtype: object)
(2593, Id                               2594
EmployeeName                UWEM OBOT
JobTitle            POLICE OFFICER II
BasePay                     103335.19
OvertimePay                  35584.44
OtherPay                      6424.06
Benefits                          NaN
TotalPay                    145343.69
TotalPayBenefits            145343.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2593, dtype: object)
(2594, Id                                              2595
EmployeeName                         FITZGERALD WONG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.26
OvertimePay                                  3765.24
OtherPay                                    11091.03
Benefits                                         NaN
TotalPay                                   145337.53
TotalPayBenefits                           145337.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2594, dtype: object)
(2595, Id                                2596
EmployeeName          PETER BUSALACCHI
JobTitle            POLICE OFFICER III
BasePay                      117303.67
OvertimePay                    4937.03
OtherPay                      23092.69
Benefits                           NaN
TotalPay                     145333.39
TotalPayBenefits             145333.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2595, dtype: object)
(2596, Id                                                2597
EmployeeName                              JAMES CUSTER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.48
OvertimePay                                    7068.69
OtherPay                                       7765.74
Benefits                                           NaN
TotalPay                                     145315.91
TotalPayBenefits                             145315.91
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2596, dtype: object)
(2597, Id                              2598
EmployeeName           JUSTINA DIZON
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                 10398.36
OtherPay                    11675.18
Benefits                         NaN
TotalPay                   145313.54
TotalPayBenefits           145313.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2597, dtype: object)
(2598, Id                                2599
EmployeeName        JOYCELYN DE CASTRO
JobTitle                 NURSE MANAGER
BasePay                       135785.0
OvertimePay                        0.0
OtherPay                       9504.95
Benefits                           NaN
TotalPay                     145289.95
TotalPayBenefits             145289.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2598, dtype: object)
(2599, Id                             2600
EmployeeName        CHARLES SCHULER
JobTitle                 MANAGER VI
BasePay                   145282.08
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  145282.08
TotalPayBenefits          145282.08
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2599, dtype: object)
(2600, Id                           2601
EmployeeName            EMMON LEW
JobTitle              FIREFIGHTER
BasePay                 105813.29
OvertimePay              24717.33
OtherPay                 14733.64
Benefits                      NaN
TotalPay                145264.26
TotalPayBenefits        145264.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2600, dtype: object)
(2601, Id                                              2602
EmployeeName                               HENRY WOO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129841.14
OvertimePay                                  9806.93
OtherPay                                     5613.54
Benefits                                         NaN
TotalPay                                   145261.61
TotalPayBenefits                           145261.61
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2601, dtype: object)
(2602, Id                                                2603
EmployeeName                            JULIUS NAVARRO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   46932.42
OtherPay                                      20744.35
Benefits                                           NaN
TotalPay                                     145257.17
TotalPayBenefits                             145257.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2602, dtype: object)
(2603, Id                             2604
EmployeeName              LISA CHOW
JobTitle            SENIOR ENGINEER
BasePay                   137293.08
OvertimePay                     0.0
OtherPay                    7916.94
Benefits                        NaN
TotalPay                  145210.02
TotalPayBenefits          145210.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2603, dtype: object)
(2604, Id                                                2605
EmployeeName                                JOHN NEVIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        69076.0
OvertimePay                                    35935.2
OtherPay                                      40178.88
Benefits                                           NaN
TotalPay                                     145190.08
TotalPayBenefits                             145190.08
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2604, dtype: object)
(2605, Id                                2606
EmployeeName                   KOK SIM
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   52848.17
OtherPay                       2230.53
Benefits                           NaN
TotalPay                      145172.9
TotalPayBenefits              145172.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2605, dtype: object)
(2606, Id                                                2607
EmployeeName                              NELLY GORDON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                   11766.67
OtherPay                                        2912.1
Benefits                                           NaN
TotalPay                                     145160.33
TotalPayBenefits                             145160.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2606, dtype: object)
(2607, Id                                2608
EmployeeName             KATHLEEN RYAN
JobTitle            NURSE PRACTITIONER
BasePay                      142745.56
OvertimePay                    2146.55
OtherPay                         250.0
Benefits                           NaN
TotalPay                     145142.11
TotalPayBenefits             145142.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2607, dtype: object)
(2608, Id                                                           2609
EmployeeName                                           ALBERT HOM
JobTitle            SUPERVISING ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                 112725.02
OvertimePay                                              23575.87
OtherPay                                                   8820.0
Benefits                                                      NaN
TotalPay                                                145120.89
TotalPayBenefits                                        145120.89
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 2608, dtype: object)
(2609, Id                           2610
EmployeeName              AMY ENG
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               23524.3
OtherPay                 15659.36
Benefits                      NaN
TotalPay                145118.32
TotalPayBenefits        145118.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2609, dtype: object)
(2610, Id                                            2611
EmployeeName                           WALTER WARE
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  109406.02
OvertimePay                               34002.69
OtherPay                                   1687.31
Benefits                                       NaN
TotalPay                                 145096.02
TotalPayBenefits                         145096.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 2610, dtype: object)
(2611, Id                                             2612
EmployeeName                             SCOTT RYAN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128147.16
OvertimePay                                 8924.47
OtherPay                                    8016.82
Benefits                                        NaN
TotalPay                                  145088.45
TotalPayBenefits                          145088.45
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2611, dtype: object)
(2612, Id                               2613
EmployeeName        ALBERT JOHNSON JR
JobTitle             POLICE OFFICER I
BasePay                      105995.9
OvertimePay                  33877.63
OtherPay                      5199.42
Benefits                          NaN
TotalPay                    145072.95
TotalPayBenefits            145072.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2612, dtype: object)
(2613, Id                                 2614
EmployeeName              CARLIE MAGILL
JobTitle            PROJECT MANAGER III
BasePay                        145071.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       145071.8
TotalPayBenefits               145071.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2613, dtype: object)
(2614, Id                                              2615
EmployeeName                      NICHOLAS RAINSFORD
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.56
OvertimePay                                  5279.57
OtherPay                                     9307.62
Benefits                                         NaN
TotalPay                                   145068.75
TotalPayBenefits                           145068.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2614, dtype: object)
(2615, Id                             2616
EmployeeName        WILFREDO VARONA
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                25719.37
OtherPay                   13405.35
Benefits                        NaN
TotalPay                   145059.4
TotalPayBenefits           145059.4
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2615, dtype: object)
(2616, Id                                              2617
EmployeeName                            SUSAN NANGLE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.44
OvertimePay                                 10528.19
OtherPay                                     4042.51
Benefits                                         NaN
TotalPay                                   145052.14
TotalPayBenefits                           145052.14
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2616, dtype: object)
(2617, Id                                  2618
EmployeeName            LINETTE MARTINEZ
JobTitle            PHYSICIAN SPECIALIST
BasePay                        141601.62
OvertimePay                          0.0
OtherPay                         3438.88
Benefits                             NaN
TotalPay                        145040.5
TotalPayBenefits                145040.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2617, dtype: object)
(2618, Id                              2619
EmployeeName           NANCY PADILLA
JobTitle            TRANSIT OPERATOR
BasePay                     69219.38
OvertimePay                 73087.41
OtherPay                     2718.15
Benefits                         NaN
TotalPay                   145024.94
TotalPayBenefits           145024.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2618, dtype: object)
(2619, Id                            2620
EmployeeName        JAMES MELLBERG
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               18741.21
OtherPay                  20348.62
Benefits                       NaN
TotalPay                 145024.51
TotalPayBenefits         145024.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2619, dtype: object)
(2620, Id                           2621
EmployeeName          PAUL MCHUGH
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              17006.75
OtherPay                 22060.19
Benefits                      NaN
TotalPay                145001.61
TotalPayBenefits        145001.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2620, dtype: object)
(2621, Id                                              2622
EmployeeName                           REESE BURROWS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.58
OvertimePay                                   4427.4
OtherPay                                    10072.12
Benefits                                         NaN
TotalPay                                    144981.1
TotalPayBenefits                            144981.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2621, dtype: object)
(2622, Id                                2623
EmployeeName             STEVEN GARCIA
JobTitle            TRANSIT SUPERVISOR
BasePay                        80026.0
OvertimePay                   55495.54
OtherPay                        9449.1
Benefits                           NaN
TotalPay                     144970.64
TotalPayBenefits             144970.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2622, dtype: object)
(2623, Id                                       2624
EmployeeName                AZITA GHAFOURPOUR
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             144970.34
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            144970.34
TotalPayBenefits                    144970.34
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2623, dtype: object)
(2624, Id                                2625
EmployeeName              BRIAN BARRON
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    8932.61
OtherPay                      23608.76
Benefits                           NaN
TotalPay                     144942.43
TotalPayBenefits             144942.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2624, dtype: object)
(2625, Id                                       2626
EmployeeName                  ARMANDO MIRANDA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             144942.14
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            144942.14
TotalPayBenefits                    144942.14
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2625, dtype: object)
(2626, Id                           2627
EmployeeName         BRIAN BANNON
JobTitle               MANAGER IV
BasePay                 139267.01
OvertimePay                   0.0
OtherPay                   5655.6
Benefits                      NaN
TotalPay                144922.61
TotalPayBenefits        144922.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2626, dtype: object)
(2627, Id                                         2628
EmployeeName                      RAMON SERRANO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             6452.06
OtherPay                               15365.23
Benefits                                    NaN
TotalPay                               144922.3
TotalPayBenefits                       144922.3
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2627, dtype: object)
(2628, Id                              2629
EmployeeName             JIHYEON RIM
JobTitle            REGISTERED NURSE
BasePay                     117427.8
OvertimePay                  4618.98
OtherPay                    22873.81
Benefits                         NaN
TotalPay                   144920.59
TotalPayBenefits           144920.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2628, dtype: object)
(2629, Id                                              2630
EmployeeName                           CHRIS WILHELM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  3074.87
OtherPay                                    11386.36
Benefits                                         NaN
TotalPay                                   144919.18
TotalPayBenefits                           144919.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2629, dtype: object)
(2630, Id                             2631
EmployeeName         SHAILEN TALATI
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                    4904.55
Benefits                        NaN
TotalPay                  144907.57
TotalPayBenefits          144907.57
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2630, dtype: object)
(2631, Id                                2632
EmployeeName            MELANIE NUTTER
JobTitle            DEPARTMENT HEAD II
BasePay                      144906.98
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     144906.98
TotalPayBenefits             144906.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2631, dtype: object)
(2632, Id                              2633
EmployeeName              DAISY CRUZ
JobTitle            REGISTERED NURSE
BasePay                    124877.79
OvertimePay                  9560.45
OtherPay                     10456.7
Benefits                         NaN
TotalPay                   144894.94
TotalPayBenefits           144894.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2632, dtype: object)
(2633, Id                                              2634
EmployeeName                           PATRICK TOBIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.18
OvertimePay                                  4884.36
OtherPay                                     9502.93
Benefits                                         NaN
TotalPay                                   144892.47
TotalPayBenefits                           144892.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2633, dtype: object)
(2634, Id                              2635
EmployeeName           CELSA ALVAREZ
JobTitle            REGISTERED NURSE
BasePay                     125030.4
OvertimePay                 10220.99
OtherPay                     9616.25
Benefits                         NaN
TotalPay                   144867.64
TotalPayBenefits           144867.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2634, dtype: object)
(2635, Id                                       2636
EmployeeName                   THOMAS KIERNAN
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.03
OvertimePay                               0.0
OtherPay                             17662.09
Benefits                                  NaN
TotalPay                            144865.12
TotalPayBenefits                    144865.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2635, dtype: object)
(2636, Id                                    2637
EmployeeName             TERRY FITZSIMMONS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                       14951.44
OtherPay                           7497.84
Benefits                               NaN
TotalPay                         144854.28
TotalPayBenefits                 144854.28
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2636, dtype: object)
(2637, Id                                              2638
EmployeeName                          JOHN JAIMERENA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.12
OvertimePay                                  4328.14
OtherPay                                    10000.71
Benefits                                         NaN
TotalPay                                   144833.97
TotalPayBenefits                           144833.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2637, dtype: object)
(2638, Id                                    2639
EmployeeName                 MARTIN SPALKA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                       14918.95
OtherPay                           7497.83
Benefits                               NaN
TotalPay                         144821.79
TotalPayBenefits                 144821.79
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2638, dtype: object)
(2639, Id                                              2640
EmployeeName                         WILLIAM CLINTON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130504.98
OvertimePay                                  5101.64
OtherPay                                      9193.4
Benefits                                         NaN
TotalPay                                   144800.02
TotalPayBenefits                           144800.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2639, dtype: object)
(2640, Id                                         2641
EmployeeName                    GREGORY BLATMAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                             7876.43
OtherPay                               13798.71
Benefits                                    NaN
TotalPay                              144780.17
TotalPayBenefits                      144780.17
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2640, dtype: object)
(2641, Id                                         2642
EmployeeName                 CHRISTOPHER HOBART
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               137880.68
OvertimePay                                 0.0
OtherPay                                6894.06
Benefits                                    NaN
TotalPay                              144774.74
TotalPayBenefits                      144774.74
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2641, dtype: object)
(2642, Id                              2643
EmployeeName        IAN DERAMMELAERE
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 20304.14
OtherPay                    18534.52
Benefits                         NaN
TotalPay                   144773.33
TotalPayBenefits           144773.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2642, dtype: object)
(2643, Id                                2644
EmployeeName               LARRY VALES
JobTitle            POLICE OFFICER III
BasePay                       115423.7
OvertimePay                   13240.38
OtherPay                      16102.55
Benefits                           NaN
TotalPay                     144766.63
TotalPayBenefits             144766.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2643, dtype: object)
(2644, Id                                                2645
EmployeeName                            SHANON CORNEJO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   59749.51
OtherPay                                        7425.1
Benefits                                           NaN
TotalPay                                     144743.61
TotalPayBenefits                             144743.61
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2644, dtype: object)
(2645, Id                           2646
EmployeeName        TRACY BARRAZA
JobTitle            SPECIAL NURSE
BasePay                 102033.62
OvertimePay              26720.33
OtherPay                 15975.54
Benefits                      NaN
TotalPay                144729.49
TotalPayBenefits        144729.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2645, dtype: object)
(2646, Id                                       2647
EmployeeName            MICHELE DAWSON-TALLEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             144718.91
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            144718.91
TotalPayBenefits                    144718.91
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2646, dtype: object)
(2647, Id                              2648
EmployeeName          ANGEL CARVAJAL
JobTitle            TRANSIT OPERATOR
BasePay                     66826.78
OvertimePay                 74204.21
OtherPay                      3673.3
Benefits                         NaN
TotalPay                   144704.29
TotalPayBenefits           144704.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2647, dtype: object)
(2648, Id                                 2649
EmployeeName        EVANGELINE ANACLETO
JobTitle               REGISTERED NURSE
BasePay                       117198.01
OvertimePay                    10858.05
OtherPay                       16619.32
Benefits                            NaN
TotalPay                      144675.38
TotalPayBenefits              144675.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2648, dtype: object)
(2649, Id                                 2650
EmployeeName            JEANETTE CAVANO
JobTitle            CLINICAL PHARMACIST
BasePay                       144674.91
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      144674.91
TotalPayBenefits              144674.91
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2649, dtype: object)
(2650, Id                              2651
EmployeeName            ANADELIA KIM
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  5714.28
OtherPay                    11969.07
Benefits                         NaN
TotalPay                   144667.35
TotalPayBenefits           144667.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2650, dtype: object)
(2651, Id                           2652
EmployeeName         LYLE WOODSON
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              17500.08
OtherPay                 21208.87
Benefits                      NaN
TotalPay                144643.64
TotalPayBenefits        144643.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2651, dtype: object)
(2652, Id                                       2653
EmployeeName                   THOMAS OCONNOR
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              127203.0
OvertimePay                             99.31
OtherPay                             17340.08
Benefits                                  NaN
TotalPay                            144642.39
TotalPayBenefits                    144642.39
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2652, dtype: object)
(2653, Id                                           2654
EmployeeName                      RAFAEL RESTAURO
JobTitle            INSTITUTIONAL POLICE SERGEANT
BasePay                                 105289.85
OvertimePay                              37564.88
OtherPay                                  1780.24
Benefits                                      NaN
TotalPay                                144634.97
TotalPayBenefits                        144634.97
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2653, dtype: object)
(2654, Id                           2655
EmployeeName          STEVEN METZ
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              20898.13
OtherPay                 17797.28
Benefits                      NaN
TotalPay                144630.08
TotalPayBenefits        144630.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2654, dtype: object)
(2655, Id                                    2656
EmployeeName                 JASON SIMMONS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        6259.44
OtherPay                          15962.75
Benefits                               NaN
TotalPay                         144627.18
TotalPayBenefits                 144627.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2655, dtype: object)
(2656, Id                                2657
EmployeeName             JESSE HEREDIA
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                     4367.3
OtherPay                      27809.69
Benefits                           NaN
TotalPay                     144598.43
TotalPayBenefits             144598.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2656, dtype: object)
(2657, Id                                       2658
EmployeeName                 HEATHER TREVISAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             144584.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            144584.52
TotalPayBenefits                    144584.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2657, dtype: object)
(2658, Id                                              2659
EmployeeName                       STEPHEN BENZINGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    131313.91
OvertimePay                                  5442.48
OtherPay                                     7825.73
Benefits                                         NaN
TotalPay                                   144582.12
TotalPayBenefits                           144582.12
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2658, dtype: object)
(2659, Id                                2660
EmployeeName             GARY MORIYAMA
JobTitle            POLICE OFFICER III
BasePay                      111317.94
OvertimePay                    12252.3
OtherPay                       21006.4
Benefits                           NaN
TotalPay                     144576.64
TotalPayBenefits             144576.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2659, dtype: object)
(2660, Id                              2661
EmployeeName         VICENTA MARGATE
JobTitle            REGISTERED NURSE
BasePay                    118888.16
OvertimePay                   7814.4
OtherPay                    17868.84
Benefits                         NaN
TotalPay                    144571.4
TotalPayBenefits            144571.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2660, dtype: object)
(2661, Id                              2662
EmployeeName             DUANE ALLEN
JobTitle            TRANSIT OPERATOR
BasePay                      67544.7
OvertimePay                 73359.89
OtherPay                     3653.19
Benefits                         NaN
TotalPay                   144557.78
TotalPayBenefits           144557.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2661, dtype: object)
(2662, Id                                              2663
EmployeeName                             MICHAEL LAU
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                  5645.63
OtherPay                                     8424.15
Benefits                                         NaN
TotalPay                                   144551.29
TotalPayBenefits                           144551.29
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2662, dtype: object)
(2663, Id                                              2664
EmployeeName                          MICHAEL NELSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.89
OvertimePay                                   5055.0
OtherPay                                     9035.23
Benefits                                         NaN
TotalPay                                   144548.12
TotalPayBenefits                           144548.12
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2663, dtype: object)
(2664, Id                                              2665
EmployeeName                         ANN MARIE BOWER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.59
OvertimePay                                  5814.61
OtherPay                                     8251.17
Benefits                                         NaN
TotalPay                                   144547.37
TotalPayBenefits                           144547.37
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2664, dtype: object)
(2665, Id                              2666
EmployeeName               DAVID YEE
JobTitle            TRAIN CONTROLLER
BasePay                    100635.47
OvertimePay                  34110.5
OtherPay                     9755.96
Benefits                         NaN
TotalPay                   144501.93
TotalPayBenefits           144501.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2665, dtype: object)
(2666, Id                                              2667
EmployeeName                              GLENN MORI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  1924.26
OtherPay                                    12107.94
Benefits                                         NaN
TotalPay                                   144490.16
TotalPayBenefits                           144490.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2666, dtype: object)
(2667, Id                               2668
EmployeeName        ERLINDA DE GUZMAN
JobTitle             REGISTERED NURSE
BasePay                     124752.34
OvertimePay                   4005.54
OtherPay                     15703.75
Benefits                          NaN
TotalPay                    144461.63
TotalPayBenefits            144461.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2667, dtype: object)
(2668, Id                                               2669
EmployeeName                          PATRICK CADIGAN
JobTitle            INSPECTOR II, (POLICE DEPARTMENT)
BasePay                                     128142.09
OvertimePay                                   6997.07
OtherPay                                      9320.52
Benefits                                          NaN
TotalPay                                    144459.68
TotalPayBenefits                            144459.68
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2668, dtype: object)
(2669, Id                                 2670
EmployeeName              ALLISON MAGEE
JobTitle            DEPUTY DIRECTOR III
BasePay                       138563.65
OvertimePay                         0.0
OtherPay                         5891.4
Benefits                            NaN
TotalPay                      144455.05
TotalPayBenefits              144455.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2669, dtype: object)
(2670, Id                              2671
EmployeeName          ROSARIO FLORES
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  6178.26
OtherPay                    11292.64
Benefits                         NaN
TotalPay                    144454.9
TotalPayBenefits            144454.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2670, dtype: object)
(2671, Id                                2672
EmployeeName            NOELLE SIMMONS
JobTitle            DEPUTY DIRECTOR II
BasePay                      141161.24
OvertimePay                        0.0
OtherPay                        3290.3
Benefits                           NaN
TotalPay                     144451.54
TotalPayBenefits             144451.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2671, dtype: object)
(2672, Id                             2673
EmployeeName        RALPH BLANCHARD
JobTitle                FIREFIGHTER
BasePay                     56220.0
OvertimePay                 1711.69
OtherPay                   86510.74
Benefits                        NaN
TotalPay                  144442.43
TotalPayBenefits          144442.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2672, dtype: object)
(2673, Id                                 2674
EmployeeName                DAVID SMITH
JobTitle            CLINICAL PHARMACIST
BasePay                        135427.0
OvertimePay                     3947.26
OtherPay                        5063.45
Benefits                            NaN
TotalPay                      144437.71
TotalPayBenefits              144437.71
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2673, dtype: object)
(2674, Id                           2675
EmployeeName         MARC DEVILLE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              20996.14
OtherPay                 17499.12
Benefits                      NaN
TotalPay                144429.91
TotalPayBenefits        144429.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2674, dtype: object)
(2675, Id                           2676
EmployeeName            JULIE MAU
JobTitle              FIREFIGHTER
BasePay                 109966.66
OvertimePay              16173.16
OtherPay                  18261.3
Benefits                      NaN
TotalPay                144401.12
TotalPayBenefits        144401.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2675, dtype: object)
(2676, Id                                              2677
EmployeeName                      LAWRENCE KEMPINSKI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130528.82
OvertimePay                                  8515.43
OtherPay                                     5353.93
Benefits                                         NaN
TotalPay                                   144398.18
TotalPayBenefits                           144398.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2676, dtype: object)
(2677, Id                                2678
EmployeeName             JESSE HOUSLEY
JobTitle            TRANSIT SUPERVISOR
BasePay                       82306.22
OvertimePay                   54360.73
OtherPay                       7728.53
Benefits                           NaN
TotalPay                     144395.48
TotalPayBenefits             144395.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2677, dtype: object)
(2678, Id                              2679
EmployeeName         FELICIDAD DILAG
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   3910.5
OtherPay                    17243.49
Benefits                         NaN
TotalPay                   144393.99
TotalPayBenefits           144393.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2678, dtype: object)
(2679, Id                                               2680
EmployeeName                               HENRY VONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  40303.44
OtherPay                                      5066.73
Benefits                                          NaN
TotalPay                                    144384.57
TotalPayBenefits                            144384.57
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2679, dtype: object)
(2680, Id                                         2681
EmployeeName                         JUDY LOUIE
JobTitle            SENIOR COURT STAFF ATTORNEY
BasePay                               142544.81
OvertimePay                                 0.0
OtherPay                                 1825.0
Benefits                                    NaN
TotalPay                              144369.81
TotalPayBenefits                      144369.81
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2680, dtype: object)
(2681, Id                                              2682
EmployeeName                              KELLY DUNN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129067.07
OvertimePay                                 13553.05
OtherPay                                     1736.99
Benefits                                         NaN
TotalPay                                   144357.11
TotalPayBenefits                           144357.11
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2681, dtype: object)
(2682, Id                                2683
EmployeeName             DAVID JOHNSON
JobTitle            POLICE OFFICER III
BasePay                       106838.0
OvertimePay                   18396.64
OtherPay                      19116.24
Benefits                           NaN
TotalPay                     144350.88
TotalPayBenefits             144350.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2682, dtype: object)
(2683, Id                                2684
EmployeeName             JOSEPH JUAREZ
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    15403.7
OtherPay                      16538.32
Benefits                           NaN
TotalPay                      144343.1
TotalPayBenefits              144343.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2683, dtype: object)
(2684, Id                                         2685
EmployeeName                   PATRICK SULLIVAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               127886.03
OvertimePay                                 0.0
OtherPay                               16440.84
Benefits                                    NaN
TotalPay                              144326.87
TotalPayBenefits                      144326.87
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2684, dtype: object)
(2685, Id                                    2686
EmployeeName               TIMOTHY TIERNAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                        6913.42
OtherPay                          15004.13
Benefits                               NaN
TotalPay                         144322.55
TotalPayBenefits                 144322.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2685, dtype: object)
(2686, Id                                     2687
EmployeeName                     PASCAL SZU
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                            111910.2
OvertimePay                        18615.59
OtherPay                           13792.67
Benefits                                NaN
TotalPay                          144318.46
TotalPayBenefits                  144318.46
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2686, dtype: object)
(2687, Id                                               2688
EmployeeName                              BENJAMIN MA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      96336.03
OvertimePay                                  45768.49
OtherPay                                      2200.89
Benefits                                          NaN
TotalPay                                    144305.41
TotalPayBenefits                            144305.41
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2687, dtype: object)
(2688, Id                                2689
EmployeeName               THOMAS TANG
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   18612.73
OtherPay                      13266.74
Benefits                           NaN
TotalPay                     144300.93
TotalPayBenefits             144300.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2688, dtype: object)
(2689, Id                                  2690
EmployeeName        HEIDI BOHLER BARNETT
JobTitle                     FIREFIGHTER
BasePay                        105934.71
OvertimePay                     19154.75
OtherPay                         19092.4
Benefits                             NaN
TotalPay                       144181.86
TotalPayBenefits               144181.86
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2689, dtype: object)
(2690, Id                              2691
EmployeeName          SOCRATES SISON
JobTitle            REGISTERED NURSE
BasePay                    111648.24
OvertimePay                 11538.45
OtherPay                    20994.55
Benefits                         NaN
TotalPay                   144181.24
TotalPayBenefits           144181.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2690, dtype: object)
(2691, Id                                 2692
EmployeeName             KRISTIN LUNGHI
JobTitle            CLINICAL PHARMACIST
BasePay                        140078.0
OvertimePay                     3989.18
OtherPay                          106.6
Benefits                            NaN
TotalPay                      144173.78
TotalPayBenefits              144173.78
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2691, dtype: object)
(2692, Id                                         2693
EmployeeName                    KRISTEN HOADLEY
JobTitle            SENIOR COURT STAFF ATTORNEY
BasePay                               142544.81
OvertimePay                                 0.0
OtherPay                                 1618.1
Benefits                                    NaN
TotalPay                              144162.91
TotalPayBenefits                      144162.91
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2692, dtype: object)
(2693, Id                                2694
EmployeeName               NOEL DELEON
JobTitle            POLICE OFFICER III
BasePay                      117450.79
OvertimePay                    14370.8
OtherPay                      12341.14
Benefits                           NaN
TotalPay                     144162.73
TotalPayBenefits             144162.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2693, dtype: object)
(2694, Id                               2695
EmployeeName             MICHAEL WOLF
JobTitle            POLICE OFFICER II
BasePay                      110203.2
OvertimePay                  13827.85
OtherPay                     20118.42
Benefits                          NaN
TotalPay                    144149.47
TotalPayBenefits            144149.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2694, dtype: object)
(2695, Id                                2696
EmployeeName                VICTOR HUI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   17153.96
OtherPay                      14563.29
Benefits                           NaN
TotalPay                      144138.7
TotalPayBenefits              144138.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2695, dtype: object)
(2696, Id                              2697
EmployeeName          MERCEDES DIMAS
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                  6834.26
OtherPay                     17798.3
Benefits                         NaN
TotalPay                   144128.56
TotalPayBenefits           144128.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2696, dtype: object)
(2697, Id                                  2698
EmployeeName           FRANKLIN WINCH JR
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121629.47
OvertimePay                     13006.16
OtherPay                         9482.57
Benefits                             NaN
TotalPay                        144118.2
TotalPayBenefits                144118.2
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2697, dtype: object)
(2698, Id                             2699
EmployeeName              SAM YOUNG
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                    4101.82
Benefits                        NaN
TotalPay                  144104.83
TotalPayBenefits          144104.83
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2698, dtype: object)
(2699, Id                                2700
EmployeeName                  BETTY NG
JobTitle            NURSE PRACTITIONER
BasePay                      142623.97
OvertimePay                        0.0
OtherPay                        1475.0
Benefits                           NaN
TotalPay                     144098.97
TotalPayBenefits             144098.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2699, dtype: object)
(2700, Id                           2701
EmployeeName           MARC TROTZ
JobTitle               MANAGER IV
BasePay                 143133.64
OvertimePay                   0.0
OtherPay                   956.55
Benefits                      NaN
TotalPay                144090.19
TotalPayBenefits        144090.19
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2700, dtype: object)
(2701, Id                                              2702
EmployeeName                           ROWENA WILSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.92
OvertimePay                                  6084.33
OtherPay                                     7521.28
Benefits                                         NaN
TotalPay                                   144063.53
TotalPayBenefits                           144063.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2701, dtype: object)
(2702, Id                                                2703
EmployeeName                             GERALD HANSEN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   57785.76
OtherPay                                       8695.81
Benefits                                           NaN
TotalPay                                     144061.96
TotalPayBenefits                             144061.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2702, dtype: object)
(2703, Id                                                2704
EmployeeName                             JOHN PETERSON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130455.59
OvertimePay                                    8553.15
OtherPay                                       5032.15
Benefits                                           NaN
TotalPay                                     144040.89
TotalPayBenefits                             144040.89
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2703, dtype: object)
(2704, Id                                2705
EmployeeName           DEBORAH JACKSON
JobTitle            TRANSIT SUPERVISOR
BasePay                       88049.31
OvertimePay                   47413.36
OtherPay                       8568.31
Benefits                           NaN
TotalPay                     144030.98
TotalPayBenefits             144030.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2704, dtype: object)
(2705, Id                                         2706
EmployeeName                           LISA HOO
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               144009.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              144009.53
TotalPayBenefits                      144009.53
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2705, dtype: object)
(2706, Id                                         2707
EmployeeName                    SANDRA SCHWARCZ
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               144008.98
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              144008.98
TotalPayBenefits                      144008.98
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2706, dtype: object)
(2707, Id                                              2708
EmployeeName                        ROSHAWN MCKEEVER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                  9083.11
OtherPay                                     4435.87
Benefits                                         NaN
TotalPay                                   144000.49
TotalPayBenefits                           144000.49
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2707, dtype: object)
(2708, Id                                    2709
EmployeeName                 DAMON O'BRIEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        6308.92
OtherPay                          15277.86
Benefits                               NaN
TotalPay                         143991.77
TotalPayBenefits                 143991.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2708, dtype: object)
(2709, Id                                2710
EmployeeName        FRANCIS VILLANUEVA
JobTitle              REGISTERED NURSE
BasePay                      118525.68
OvertimePay                   12409.16
OtherPay                      13035.65
Benefits                           NaN
TotalPay                     143970.49
TotalPayBenefits             143970.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2709, dtype: object)
(2710, Id                                         2711
EmployeeName                      SEAN JOHNSTON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                             5402.95
OtherPay                               15441.11
Benefits                                    NaN
TotalPay                              143949.08
TotalPayBenefits                      143949.08
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2710, dtype: object)
(2711, Id                                               2712
EmployeeName                              GODFREY LEW
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   38553.3
OtherPay                                      6374.37
Benefits                                          NaN
TotalPay                                    143942.07
TotalPayBenefits                            143942.07
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2711, dtype: object)
(2712, Id                                       2713
EmployeeName                    SEAN SULLIVAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             143920.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            143920.92
TotalPayBenefits                    143920.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2712, dtype: object)
(2713, Id                                2714
EmployeeName              DAMIEN FAHEY
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    8387.12
OtherPay                      23121.06
Benefits                           NaN
TotalPay                     143909.27
TotalPayBenefits             143909.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2713, dtype: object)
(2714, Id                                         2715
EmployeeName                      KEVIN MC KEON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             1833.56
OtherPay                                18968.7
Benefits                                    NaN
TotalPay                              143907.26
TotalPayBenefits                      143907.26
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2714, dtype: object)
(2715, Id                           2716
EmployeeName          DAVID DUPRE
JobTitle               PHARMACIST
BasePay                  133399.0
OvertimePay              10250.74
OtherPay                   229.46
Benefits                      NaN
TotalPay                 143879.2
TotalPayBenefits         143879.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2715, dtype: object)
(2716, Id                           2717
EmployeeName          DONNY BENDO
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              29032.44
OtherPay                   8908.0
Benefits                      NaN
TotalPay                143875.13
TotalPayBenefits        143875.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2716, dtype: object)
(2717, Id                           2718
EmployeeName          SUSAN ROSEN
JobTitle               PHARMACIST
BasePay                 133399.12
OvertimePay                4554.9
OtherPay                  5916.87
Benefits                      NaN
TotalPay                143870.89
TotalPayBenefits        143870.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2717, dtype: object)
(2718, Id                                       2719
EmployeeName                MATTHEW SOTOROSEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             143867.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            143867.02
TotalPayBenefits                    143867.02
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2718, dtype: object)
(2719, Id                                               2720
EmployeeName                              JEAN ROLAND
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                     143859.26
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    143859.26
TotalPayBenefits                            143859.26
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2719, dtype: object)
(2720, Id                               2721
EmployeeName           CAROL MARGETTS
JobTitle            POLICE OFFICER II
BasePay                     110223.04
OvertimePay                  19379.02
OtherPay                     14257.04
Benefits                          NaN
TotalPay                     143859.1
TotalPayBenefits             143859.1
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2720, dtype: object)
(2721, Id                                         2722
EmployeeName                      THOMAS OERTLI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.02
OvertimePay                             5402.95
OtherPay                               15350.81
Benefits                                    NaN
TotalPay                              143858.78
TotalPayBenefits                      143858.78
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2721, dtype: object)
(2722, Id                                         2723
EmployeeName                   CHRISTOPHER BENZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                                 0.0
OtherPay                               20750.62
Benefits                                    NaN
TotalPay                              143855.63
TotalPayBenefits                      143855.63
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2722, dtype: object)
(2723, Id                                                        2724
EmployeeName                                  MONICA MACDONALD
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128123.96
OvertimePay                                            5604.27
OtherPay                                              10116.22
Benefits                                                   NaN
TotalPay                                             143844.45
TotalPayBenefits                                     143844.45
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 2723, dtype: object)
(2724, Id                           2725
EmployeeName           PERRY CHOY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              20469.27
OtherPay                 17437.81
Benefits                      NaN
TotalPay                143841.74
TotalPayBenefits        143841.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2724, dtype: object)
(2725, Id                           2726
EmployeeName         JOHN DILUZIO
JobTitle              FIREFIGHTER
BasePay                 123815.12
OvertimePay                   0.0
OtherPay                 20009.35
Benefits                      NaN
TotalPay                143824.47
TotalPayBenefits        143824.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2725, dtype: object)
(2726, Id                              2727
EmployeeName              MYUNG HONG
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                   7583.4
OtherPay                    16740.54
Benefits                         NaN
TotalPay                   143819.94
TotalPayBenefits           143819.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2726, dtype: object)
(2727, Id                                                2728
EmployeeName                             WAI KONG CHAN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   57751.85
OtherPay                                       8494.85
Benefits                                           NaN
TotalPay                                      143815.7
TotalPayBenefits                              143815.7
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2727, dtype: object)
(2728, Id                                    2729
EmployeeName                 KEVIN NIELSEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        13468.7
OtherPay                           7933.49
Benefits                               NaN
TotalPay                         143807.18
TotalPayBenefits                 143807.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2728, dtype: object)
(2729, Id                            2730
EmployeeName           SARAH JAMES
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               50925.41
OtherPay                    6032.1
Benefits                       NaN
TotalPay                 143797.52
TotalPayBenefits         143797.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2729, dtype: object)
(2730, Id                           2731
EmployeeName        MARIA ANTONIO
JobTitle            SPECIAL NURSE
BasePay                 121878.36
OvertimePay                   0.0
OtherPay                 21897.99
Benefits                      NaN
TotalPay                143776.35
TotalPayBenefits        143776.35
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2730, dtype: object)
(2731, Id                                         2732
EmployeeName                       JUSTIN BROWN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             5930.34
OtherPay                               14738.61
Benefits                                    NaN
TotalPay                              143773.94
TotalPayBenefits                      143773.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2731, dtype: object)
(2732, Id                               2733
EmployeeName            FRANK PEREIRA
JobTitle            POLICE OFFICER II
BasePay                     110242.92
OvertimePay                  15338.93
OtherPay                     18190.75
Benefits                          NaN
TotalPay                     143772.6
TotalPayBenefits             143772.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2732, dtype: object)
(2733, Id                                         2734
EmployeeName                    JOHN MORANVILLE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               111880.17
OvertimePay                                 0.0
OtherPay                                31880.3
Benefits                                    NaN
TotalPay                              143760.47
TotalPayBenefits                      143760.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2733, dtype: object)
(2734, Id                              2735
EmployeeName            EDITA LAGANG
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  3223.44
OtherPay                    13552.72
Benefits                         NaN
TotalPay                   143760.16
TotalPayBenefits           143760.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2734, dtype: object)
(2735, Id                                    2736
EmployeeName                     REY BUZON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105465.02
OvertimePay                       26815.37
OtherPay                          11457.07
Benefits                               NaN
TotalPay                         143737.46
TotalPayBenefits                 143737.46
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2735, dtype: object)
(2736, Id                              2737
EmployeeName          MARILYN DOBBAS
JobTitle            REGISTERED NURSE
BasePay                    116458.98
OvertimePay                  5061.03
OtherPay                    22216.28
Benefits                         NaN
TotalPay                   143736.29
TotalPayBenefits           143736.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2736, dtype: object)
(2737, Id                           2738
EmployeeName         WILLIAM CHIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              21658.79
OtherPay                 16117.83
Benefits                      NaN
TotalPay                143711.28
TotalPayBenefits        143711.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2737, dtype: object)
(2738, Id                                              2739
EmployeeName                         WILLIAM ESCOBAR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                  5849.66
OtherPay                                      7383.7
Benefits                                         NaN
TotalPay                                   143691.31
TotalPayBenefits                           143691.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2738, dtype: object)
(2739, Id                                2740
EmployeeName             LINDA CREEGAN
JobTitle            NURSE PRACTITIONER
BasePay                      143435.52
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     143685.52
TotalPayBenefits             143685.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2739, dtype: object)
(2740, Id                                2741
EmployeeName          ROBERT WALKER-JR
JobTitle            POLICE OFFICER III
BasePay                      112421.35
OvertimePay                     6511.1
OtherPay                      24745.61
Benefits                           NaN
TotalPay                     143678.06
TotalPayBenefits             143678.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2740, dtype: object)
(2741, Id                                2742
EmployeeName               LARRY DAVIS
JobTitle            TRANSIT SUPERVISOR
BasePay                       88062.02
OvertimePay                   54179.33
OtherPay                       1430.76
Benefits                           NaN
TotalPay                     143672.11
TotalPayBenefits             143672.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2741, dtype: object)
(2742, Id                              2743
EmployeeName        CHUNG-SHING TANG
JobTitle             SENIOR ENGINEER
BasePay                    140003.04
OvertimePay                      0.0
OtherPay                     3668.08
Benefits                         NaN
TotalPay                   143671.12
TotalPayBenefits           143671.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2742, dtype: object)
(2743, Id                                2744
EmployeeName            JOHN MAMBRETTI
JobTitle            POLICE OFFICER III
BasePay                      117283.12
OvertimePay                     9024.3
OtherPay                      17353.35
Benefits                           NaN
TotalPay                     143660.77
TotalPayBenefits             143660.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2743, dtype: object)
(2744, Id                               2745
EmployeeName        PUREZA PANLASIGUI
JobTitle             REGISTERED NURSE
BasePay                     126953.48
OvertimePay                   4835.16
OtherPay                     11869.28
Benefits                          NaN
TotalPay                    143657.92
TotalPayBenefits            143657.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2744, dtype: object)
(2745, Id                                                2746
EmployeeName                            MARTA MCDOWELL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       83046.19
OvertimePay                                   31559.23
OtherPay                                      29046.13
Benefits                                           NaN
TotalPay                                     143651.55
TotalPayBenefits                             143651.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2745, dtype: object)
(2746, Id                            2747
EmployeeName        PETER GABANCHO
JobTitle                  ENGINEER
BasePay                  138655.76
OvertimePay                    0.0
OtherPay                   4994.32
Benefits                       NaN
TotalPay                 143650.08
TotalPayBenefits         143650.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2746, dtype: object)
(2747, Id                              2748
EmployeeName            EDEN BARREDO
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   4692.6
OtherPay                     15702.4
Benefits                         NaN
TotalPay                    143635.0
TotalPayBenefits            143635.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2747, dtype: object)
(2748, Id                                              2749
EmployeeName                          RUSSELL GORDON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.16
OvertimePay                                  7043.65
OtherPay                                     6080.21
Benefits                                         NaN
TotalPay                                   143629.02
TotalPayBenefits                           143629.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2748, dtype: object)
(2749, Id                             2750
EmployeeName        PETER ARNAUTOFF
JobTitle                FIREFIGHTER
BasePay                   124587.04
OvertimePay                     0.0
OtherPay                   19005.02
Benefits                        NaN
TotalPay                  143592.06
TotalPayBenefits          143592.06
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2749, dtype: object)
(2750, Id                                              2751
EmployeeName                         CHARLES COLLINS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                  3486.59
OtherPay                                     9633.42
Benefits                                         NaN
TotalPay                                   143577.95
TotalPayBenefits                           143577.95
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2750, dtype: object)
(2751, Id                            2752
EmployeeName        RICHARD COTTON
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               17888.22
OtherPay                  19754.28
Benefits                       NaN
TotalPay                 143577.17
TotalPayBenefits         143577.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2751, dtype: object)
(2752, Id                                              2753
EmployeeName                           JAMES OMALLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  5482.08
OtherPay                                     7631.32
Benefits                                         NaN
TotalPay                                   143571.31
TotalPayBenefits                           143571.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2752, dtype: object)
(2753, Id                                         2754
EmployeeName                    CYNTHIA RICKERT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                            10612.83
OtherPay                                 9847.2
Benefits                                    NaN
TotalPay                              143565.04
TotalPayBenefits                      143565.04
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2753, dtype: object)
(2754, Id                                             2755
EmployeeName                           EDDY PINALES
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                    97668.76
OvertimePay                                37508.54
OtherPay                                    8382.87
Benefits                                        NaN
TotalPay                                  143560.17
TotalPayBenefits                          143560.17
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2754, dtype: object)
(2755, Id                              2756
EmployeeName           LENIN PABIONA
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                  1757.98
OtherPay                    22285.74
Benefits                         NaN
TotalPay                   143539.72
TotalPayBenefits           143539.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2755, dtype: object)
(2756, Id                                         2757
EmployeeName                    CHADWICK ERTOLA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             8757.73
OtherPay                               11676.01
Benefits                                    NaN
TotalPay                              143538.73
TotalPayBenefits                      143538.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2756, dtype: object)
(2757, Id                                2758
EmployeeName             JOHN FERRANDO
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                   20941.53
OtherPay                      10179.81
Benefits                           NaN
TotalPay                     143538.14
TotalPayBenefits             143538.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2757, dtype: object)
(2758, Id                                       2759
EmployeeName                     ROSA SANCHEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             143526.11
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            143526.11
TotalPayBenefits                    143526.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2758, dtype: object)
(2759, Id                                                 2760
EmployeeName                           MATTHEW GONZALEZ
JobTitle            CHIEF ATTORNEY I (CIVIL & CRIMINAL)
BasePay                                       143516.15
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      143516.15
TotalPayBenefits                              143516.15
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 2759, dtype: object)
(2760, Id                                2761
EmployeeName            WILLIAM ELIEFF
JobTitle            POLICE OFFICER III
BasePay                      110930.84
OvertimePay                   17083.41
OtherPay                       15478.4
Benefits                           NaN
TotalPay                     143492.65
TotalPayBenefits             143492.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2760, dtype: object)
(2761, Id                                2762
EmployeeName        JANE NEWHARD-PARKS
JobTitle            NURSE PRACTITIONER
BasePay                      143220.59
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     143470.59
TotalPayBenefits             143470.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2761, dtype: object)
(2762, Id                                         2763
EmployeeName                      CECILIA JIANG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             4991.64
OtherPay                               15365.21
Benefits                                    NaN
TotalPay                              143461.84
TotalPayBenefits                      143461.84
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2762, dtype: object)
(2763, Id                                 2764
EmployeeName             CHRISTINA WANG
JobTitle            CLINICAL PHARMACIST
BasePay                        140078.0
OvertimePay                     3382.88
OtherPay                            0.0
Benefits                            NaN
TotalPay                      143460.88
TotalPayBenefits              143460.88
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2763, dtype: object)
(2764, Id                               2765
EmployeeName            STEVEN MOONEY
JobTitle            POLICE OFFICER II
BasePay                     115125.14
OvertimePay                   12271.1
OtherPay                     16048.39
Benefits                          NaN
TotalPay                    143444.63
TotalPayBenefits            143444.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2764, dtype: object)
(2765, Id                                      2766
EmployeeName                       KAAN CHIN
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.13
OvertimePay                              0.0
OtherPay                            16469.72
Benefits                                 NaN
TotalPay                           143437.85
TotalPayBenefits                   143437.85
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2765, dtype: object)
(2766, Id                               2767
EmployeeName              AARON FOLTZ
JobTitle            POLICE OFFICER II
BasePay                     102538.23
OvertimePay                  14828.88
OtherPay                     26055.61
Benefits                          NaN
TotalPay                    143422.72
TotalPayBenefits            143422.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2766, dtype: object)
(2767, Id                              2768
EmployeeName         ANGELINA PAGUIO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  5641.02
OtherPay                     10789.6
Benefits                         NaN
TotalPay                   143414.62
TotalPayBenefits           143414.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2767, dtype: object)
(2768, Id                            2769
EmployeeName        NANCY BARSOTTI
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               20862.74
OtherPay                  16584.79
Benefits                       NaN
TotalPay                 143382.17
TotalPayBenefits         143382.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2768, dtype: object)
(2769, Id                           2770
EmployeeName         MARY MINOGUE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              22645.17
OtherPay                  14796.8
Benefits                      NaN
TotalPay                143376.64
TotalPayBenefits        143376.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2769, dtype: object)
(2770, Id                              2771
EmployeeName            MARIA CASTRO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                  4835.16
OtherPay                    11539.28
Benefits                         NaN
TotalPay                   143358.44
TotalPayBenefits           143358.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2770, dtype: object)
(2771, Id                              2772
EmployeeName           TERESITA PIRA
JobTitle            REGISTERED NURSE
BasePay                    124984.61
OvertimePay                  6520.14
OtherPay                    11829.89
Benefits                         NaN
TotalPay                   143334.64
TotalPayBenefits           143334.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2771, dtype: object)
(2772, Id                           2773
EmployeeName        TIFFANY BOHEE
JobTitle                MANAGER V
BasePay                 120886.04
OvertimePay                   0.0
OtherPay                  22448.0
Benefits                      NaN
TotalPay                143334.04
TotalPayBenefits        143334.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2772, dtype: object)
(2773, Id                               2774
EmployeeName         KRYSTLE CASTILLO
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                  10986.01
OtherPay                     22096.12
Benefits                          NaN
TotalPay                    143325.07
TotalPayBenefits            143325.07
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2773, dtype: object)
(2774, Id                           2775
EmployeeName            JOE NALDO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              20129.71
OtherPay                 17254.81
Benefits                      NaN
TotalPay                143319.16
TotalPayBenefits        143319.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2774, dtype: object)
(2775, Id                               2776
EmployeeName                NELSON YU
JobTitle            POLICE OFFICER II
BasePay                     105118.95
OvertimePay                  11583.17
OtherPay                     26608.95
Benefits                          NaN
TotalPay                    143311.07
TotalPayBenefits            143311.07
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2775, dtype: object)
(2776, Id                                2777
EmployeeName            NORMAN RICE JR
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    10528.3
OtherPay                      20330.05
Benefits                           NaN
TotalPay                     143279.81
TotalPayBenefits             143279.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2776, dtype: object)
(2777, Id                                       2778
EmployeeName                       EVAN GROSS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             143278.49
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            143278.49
TotalPayBenefits                    143278.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2777, dtype: object)
(2778, Id                                2779
EmployeeName            ROBERT RICHINS
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    8824.66
OtherPay                      22045.56
Benefits                           NaN
TotalPay                     143271.27
TotalPayBenefits             143271.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2778, dtype: object)
(2779, Id                              2780
EmployeeName             EILEEN CHOY
JobTitle            REGISTERED NURSE
BasePay                     117605.6
OvertimePay                  9682.91
OtherPay                    15980.68
Benefits                         NaN
TotalPay                   143269.19
TotalPayBenefits           143269.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2779, dtype: object)
(2780, Id                                                         2781
EmployeeName                                     JULIUS DEMPSKY
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130457.96
OvertimePay                                             9606.37
OtherPay                                                3203.41
Benefits                                                    NaN
TotalPay                                              143267.74
TotalPayBenefits                                      143267.74
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 2780, dtype: object)
(2781, Id                                              2782
EmployeeName                         MICHAEL BURKLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  4530.45
OtherPay                                     8276.43
Benefits                                         NaN
TotalPay                                   143264.79
TotalPayBenefits                           143264.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2781, dtype: object)
(2782, Id                                                2783
EmployeeName                            MICHAEL CURRAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    1904.87
OtherPay                                      10870.15
Benefits                                           NaN
TotalPay                                     143232.96
TotalPayBenefits                             143232.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2782, dtype: object)
(2783, Id                                2784
EmployeeName              KEVIN EDISON
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   11683.74
OtherPay                      19125.06
Benefits                           NaN
TotalPay                     143209.87
TotalPayBenefits             143209.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2783, dtype: object)
(2784, Id                                    2785
EmployeeName                    LARRY PARA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.63
OvertimePay                        22963.9
OtherPay                          13790.02
Benefits                               NaN
TotalPay                         143195.55
TotalPayBenefits                 143195.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2784, dtype: object)
(2785, Id                           2786
EmployeeName        JOHN BERGENER
JobTitle                MANAGER V
BasePay                 143191.28
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                143191.28
TotalPayBenefits        143191.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2785, dtype: object)
(2786, Id                                2787
EmployeeName        ANGELO ANGELOPULOS
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    7859.07
OtherPay                      22921.31
Benefits                           NaN
TotalPay                     143181.45
TotalPayBenefits             143181.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2786, dtype: object)
(2787, Id                                         2788
EmployeeName                    STELLA PANTAZIS
JobTitle            SENIOR COURT STAFF ATTORNEY
BasePay                                142544.8
OvertimePay                                 0.0
OtherPay                                  624.0
Benefits                                    NaN
TotalPay                               143168.8
TotalPayBenefits                       143168.8
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2787, dtype: object)
(2788, Id                                         2789
EmployeeName                     JULIE NICHOLLS
JobTitle            SENIOR COURT STAFF ATTORNEY
BasePay                                142544.8
OvertimePay                                 0.0
OtherPay                                  600.0
Benefits                                    NaN
TotalPay                               143144.8
TotalPayBenefits                       143144.8
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2788, dtype: object)
(2789, Id                              2790
EmployeeName        MAURICE WILLIAMS
JobTitle                   MANAGER V
BasePay                    143138.38
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   143138.38
TotalPayBenefits           143138.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2789, dtype: object)
(2790, Id                                              2791
EmployeeName                       VICTORIA SULLIVAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.54
OvertimePay                                   300.19
OtherPay                                    12342.51
Benefits                                         NaN
TotalPay                                   143124.24
TotalPayBenefits                           143124.24
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2790, dtype: object)
(2791, Id                                              2792
EmployeeName                       JENNIFER STREEGAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.82
OvertimePay                                  7404.78
OtherPay                                     5250.09
Benefits                                         NaN
TotalPay                                   143112.69
TotalPayBenefits                           143112.69
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2791, dtype: object)
(2792, Id                                  2793
EmployeeName               DEBORAH BROWN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        139017.57
OvertimePay                          0.0
OtherPay                         4079.03
Benefits                             NaN
TotalPay                        143096.6
TotalPayBenefits                143096.6
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2792, dtype: object)
(2793, Id                                             2794
EmployeeName                        DANIELLE NEWMAN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128123.98
OvertimePay                                 3831.23
OtherPay                                   11138.22
Benefits                                        NaN
TotalPay                                  143093.43
TotalPayBenefits                          143093.43
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2793, dtype: object)
(2794, Id                                2795
EmployeeName             ROSELO PASCUA
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   19398.77
OtherPay                      11285.74
Benefits                           NaN
TotalPay                     143085.58
TotalPayBenefits             143085.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2794, dtype: object)
(2795, Id                           2796
EmployeeName        PETER WALFORD
JobTitle               PHARMACIST
BasePay                 127222.76
OvertimePay               4987.88
OtherPay                 10866.95
Benefits                      NaN
TotalPay                143077.59
TotalPayBenefits        143077.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2795, dtype: object)
(2796, Id                                              2797
EmployeeName                          DOMINIC PANINA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  3882.93
OtherPay                                     8712.27
Benefits                                         NaN
TotalPay                                   143053.16
TotalPayBenefits                           143053.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2796, dtype: object)
(2797, Id                                              2798
EmployeeName                          STEVEN STOCKER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.11
OvertimePay                                  2933.38
OtherPay                                     9613.85
Benefits                                         NaN
TotalPay                                   143052.34
TotalPayBenefits                           143052.34
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2797, dtype: object)
(2798, Id                            2799
EmployeeName        GORDON BRUSSOW
JobTitle                 MANAGER V
BasePay                  142647.17
OvertimePay                    0.0
OtherPay                    405.02
Benefits                       NaN
TotalPay                 143052.19
TotalPayBenefits         143052.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2798, dtype: object)
(2799, Id                           2800
EmployeeName         GARRETT DOWD
JobTitle                MANAGER V
BasePay                 142965.76
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142965.76
TotalPayBenefits        142965.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2799, dtype: object)
(2800, Id                                             2801
EmployeeName                           TRACY HAYNES
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    73534.02
OvertimePay                                67659.84
OtherPay                                    1770.97
Benefits                                        NaN
TotalPay                                  142964.83
TotalPayBenefits                          142964.83
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2800, dtype: object)
(2801, Id                             2802
EmployeeName        THEODORE CARTER
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                18109.76
OtherPay                   18918.14
Benefits                        NaN
TotalPay                  142962.56
TotalPayBenefits          142962.56
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2801, dtype: object)
(2802, Id                                                2803
EmployeeName                            JOSEPH CARROLL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.81
OvertimePay                                    3624.63
OtherPay                                       8864.23
Benefits                                           NaN
TotalPay                                     142946.67
TotalPayBenefits                             142946.67
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2802, dtype: object)
(2803, Id                            2804
EmployeeName        MARCIEL RIVERA
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                18678.3
OtherPay                  18329.82
Benefits                       NaN
TotalPay                 142942.79
TotalPayBenefits         142942.79
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2803, dtype: object)
(2804, Id                           2805
EmployeeName             ALLEN WU
JobTitle              FIREFIGHTER
BasePay                  123013.0
OvertimePay               1918.18
OtherPay                 17998.04
Benefits                      NaN
TotalPay                142929.22
TotalPayBenefits        142929.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2804, dtype: object)
(2805, Id                           2806
EmployeeName         SHANE MURPHY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              20213.77
OtherPay                 16771.49
Benefits                      NaN
TotalPay                142919.93
TotalPayBenefits        142919.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2805, dtype: object)
(2806, Id                                         2807
EmployeeName                         JOHN CHUNG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123818.91
OvertimePay                             3962.27
OtherPay                               15136.96
Benefits                                    NaN
TotalPay                              142918.14
TotalPayBenefits                      142918.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2806, dtype: object)
(2807, Id                                2808
EmployeeName                KEVIN CHIN
JobTitle            POLICE OFFICER III
BasePay                      112417.35
OvertimePay                   11411.47
OtherPay                      19069.98
Benefits                           NaN
TotalPay                      142898.8
TotalPayBenefits              142898.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2807, dtype: object)
(2808, Id                                2809
EmployeeName              MICHAEL WONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   42714.75
OtherPay                      12111.24
Benefits                           NaN
TotalPay                     142887.99
TotalPayBenefits             142887.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2808, dtype: object)
(2809, Id                           2810
EmployeeName        MARILA AQUINO
JobTitle            SPECIAL NURSE
BasePay                 123926.37
OvertimePay               1446.39
OtherPay                 17512.83
Benefits                      NaN
TotalPay                142885.59
TotalPayBenefits        142885.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2809, dtype: object)
(2810, Id                                          2811
EmployeeName                    STEVEN INFERRERA
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 100009.0
OvertimePay                             25810.32
OtherPay                                17055.23
Benefits                                     NaN
TotalPay                               142874.55
TotalPayBenefits                       142874.55
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2810, dtype: object)
(2811, Id                           2812
EmployeeName           PHILIP LEE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              19930.71
OtherPay                 16996.22
Benefits                      NaN
TotalPay                142861.61
TotalPayBenefits        142861.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2811, dtype: object)
(2812, Id                                       2813
EmployeeName                     TARA STEELEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              142850.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             142850.5
TotalPayBenefits                     142850.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2812, dtype: object)
(2813, Id                                                          2814
EmployeeName                                           RUMI UENO
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142843.02
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               142843.02
TotalPayBenefits                                       142843.02
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2813, dtype: object)
(2814, Id                                                          2815
EmployeeName                                     MELVYN HENRY JR
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 142843.0
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                142843.0
TotalPayBenefits                                        142843.0
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2814, dtype: object)
(2815, Id                                                          2816
EmployeeName                                          STEVEN LEE
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 142843.0
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                142843.0
TotalPayBenefits                                        142843.0
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2815, dtype: object)
(2816, Id                                                          2817
EmployeeName                                      GERALD ROBBINS
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142720.24
OvertimePay                                                  0.0
OtherPay                                                   120.0
Benefits                                                     NaN
TotalPay                                               142840.24
TotalPayBenefits                                       142840.24
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2816, dtype: object)
(2817, Id                                                          2818
EmployeeName                                        PETER ALBERT
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142720.24
OvertimePay                                                  0.0
OtherPay                                                   120.0
Benefits                                                     NaN
TotalPay                                               142840.24
TotalPayBenefits                                       142840.24
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2817, dtype: object)
(2818, Id                              2819
EmployeeName            JOHN HALLISY
JobTitle            POLICE OFFICER I
BasePay                    105001.26
OvertimePay                  4865.97
OtherPay                    32960.19
Benefits                         NaN
TotalPay                   142827.42
TotalPayBenefits           142827.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2818, dtype: object)
(2819, Id                               2820
EmployeeName             JOHN BARCOJO
JobTitle            POLICE OFFICER II
BasePay                      110262.8
OvertimePay                  12583.26
OtherPay                     19965.03
Benefits                          NaN
TotalPay                    142811.09
TotalPayBenefits            142811.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2819, dtype: object)
(2820, Id                              2821
EmployeeName           MARILA AQUINO
JobTitle            REGISTERED NURSE
BasePay                    118691.81
OvertimePay                 17139.81
OtherPay                      6979.3
Benefits                         NaN
TotalPay                   142810.92
TotalPayBenefits           142810.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2820, dtype: object)
(2821, Id                                       2822
EmployeeName                       GRACE PARK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             141874.71
OvertimePay                               0.0
OtherPay                               885.99
Benefits                                  NaN
TotalPay                             142760.7
TotalPayBenefits                     142760.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2821, dtype: object)
(2822, Id                                              2823
EmployeeName                           MARK GALLEGOS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  2443.19
OtherPay                                     9857.38
Benefits                                         NaN
TotalPay                                   142758.48
TotalPayBenefits                           142758.48
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2822, dtype: object)
(2823, Id                                              2824
EmployeeName                               DEAN RIES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.44
OvertimePay                                  6110.17
OtherPay                                     6159.79
Benefits                                         NaN
TotalPay                                    142751.4
TotalPayBenefits                            142751.4
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2823, dtype: object)
(2824, Id                           2825
EmployeeName          KEVIN LYONS
JobTitle                MANAGER V
BasePay                 142720.44
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.44
TotalPayBenefits        142720.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2824, dtype: object)
(2825, Id                           2826
EmployeeName         WILFREDO LIM
JobTitle              MANAGER III
BasePay                 142720.36
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.36
TotalPayBenefits        142720.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2825, dtype: object)
(2826, Id                           2827
EmployeeName        GLEN SCHWARTZ
JobTitle                MANAGER V
BasePay                 142720.29
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.29
TotalPayBenefits        142720.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2826, dtype: object)
(2827, Id                             2828
EmployeeName        CARMEN LE FRANC
JobTitle                  MANAGER V
BasePay                   142720.28
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  142720.28
TotalPayBenefits          142720.28
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2827, dtype: object)
(2828, Id                                                          2829
EmployeeName                                    THEODORE UNAEGBU
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142720.25
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               142720.25
TotalPayBenefits                                       142720.25
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2828, dtype: object)
(2829, Id                           2830
EmployeeName           JESUS MORA
JobTitle                MANAGER V
BasePay                 142720.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.25
TotalPayBenefits        142720.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2829, dtype: object)
(2830, Id                           2831
EmployeeName            DON LAMPE
JobTitle                MANAGER V
BasePay                 142720.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.25
TotalPayBenefits        142720.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2830, dtype: object)
(2831, Id                           2832
EmployeeName          VERONICA NG
JobTitle                MANAGER V
BasePay                 142720.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.25
TotalPayBenefits        142720.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2831, dtype: object)
(2832, Id                                                          2833
EmployeeName                                     MONIQUE WEBSTER
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142720.24
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               142720.24
TotalPayBenefits                                       142720.24
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2832, dtype: object)
(2833, Id                             2834
EmployeeName        SHELBY CAMPBELL
JobTitle                  MANAGER V
BasePay                   142720.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  142720.24
TotalPayBenefits          142720.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2833, dtype: object)
(2834, Id                                                          2835
EmployeeName                                       ANDRE BOURSSE
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                142720.24
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               142720.24
TotalPayBenefits                                       142720.24
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2834, dtype: object)
(2835, Id                           2836
EmployeeName        RODNEY MILLER
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2835, dtype: object)
(2836, Id                           2837
EmployeeName        SUSAN KEARNEY
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2836, dtype: object)
(2837, Id                           2838
EmployeeName        RICHARD PIKET
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2837, dtype: object)
(2838, Id                             2839
EmployeeName        MARGARET SANSOM
JobTitle                  MANAGER V
BasePay                   142720.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  142720.24
TotalPayBenefits          142720.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2838, dtype: object)
(2839, Id                           2840
EmployeeName          PAUL GAMBON
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2839, dtype: object)
(2840, Id                           2841
EmployeeName         TONIA LEDIJU
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2840, dtype: object)
(2841, Id                              2842
EmployeeName        MASOOD ORDIKHANI
JobTitle                  MANAGER IV
BasePay                    142720.24
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   142720.24
TotalPayBenefits           142720.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2841, dtype: object)
(2842, Id                           2843
EmployeeName           KIM DICKIE
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2842, dtype: object)
(2843, Id                           2844
EmployeeName         FLORENCE MAR
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2843, dtype: object)
(2844, Id                            2845
EmployeeName        HARRY MITCHELL
JobTitle                 MANAGER V
BasePay                  142720.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 142720.24
TotalPayBenefits         142720.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2844, dtype: object)
(2845, Id                           2846
EmployeeName        PAMELA HUSING
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2845, dtype: object)
(2846, Id                              2847
EmployeeName        MARTHA WHETSTONE
JobTitle                   MANAGER V
BasePay                    142720.24
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   142720.24
TotalPayBenefits           142720.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2846, dtype: object)
(2847, Id                           2848
EmployeeName             PAUL ITO
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2847, dtype: object)
(2848, Id                           2849
EmployeeName           KEVIN DYER
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2848, dtype: object)
(2849, Id                           2850
EmployeeName        JAMES SALERNO
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2849, dtype: object)
(2850, Id                            2851
EmployeeName        MATTHEW HANSEN
JobTitle                 MANAGER V
BasePay                  142720.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 142720.24
TotalPayBenefits         142720.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2850, dtype: object)
(2851, Id                           2852
EmployeeName          SANJAI NATH
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2851, dtype: object)
(2852, Id                           2853
EmployeeName        MARLA JUROSEK
JobTitle                MANAGER V
BasePay                 142720.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142720.24
TotalPayBenefits        142720.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2852, dtype: object)
(2853, Id                                       2854
EmployeeName                    GREGORY CHASE
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                               91858.0
OvertimePay                          21329.93
OtherPay                             29530.17
Benefits                                  NaN
TotalPay                             142718.1
TotalPayBenefits                     142718.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2853, dtype: object)
(2854, Id                                                          2855
EmployeeName                              WILLIAM HOBLITZELLE-IV
JobTitle            MECHANICAL SHOP AND EQUIPMENT SUPERINTENDENT
BasePay                                                  94478.4
OvertimePay                                              44930.7
OtherPay                                                  3304.0
Benefits                                                     NaN
TotalPay                                                142713.1
TotalPayBenefits                                        142713.1
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 2854, dtype: object)
(2855, Id                           2856
EmployeeName         MANUEL LOPES
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              19347.91
OtherPay                 17340.81
Benefits                      NaN
TotalPay                142623.39
TotalPayBenefits        142623.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2855, dtype: object)
(2856, Id                                2857
EmployeeName               BOB MASSOLA
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   21731.59
OtherPay                       8482.69
Benefits                           NaN
TotalPay                     142615.34
TotalPayBenefits             142615.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2856, dtype: object)
(2857, Id                           2858
EmployeeName           IVAN GOMEZ
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              25351.42
OtherPay                 11315.28
Benefits                      NaN
TotalPay                142601.33
TotalPayBenefits        142601.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2857, dtype: object)
(2858, Id                           2859
EmployeeName         DOUGLAS LEGG
JobTitle                MANAGER V
BasePay                 142597.49
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142597.49
TotalPayBenefits        142597.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2858, dtype: object)
(2859, Id                           2860
EmployeeName             TOM FUNG
JobTitle                MANAGER V
BasePay                 142594.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142594.04
TotalPayBenefits        142594.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2859, dtype: object)
(2860, Id                                      2861
EmployeeName                    RAMON GARCIA
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                            142267.04
OvertimePay                              0.0
OtherPay                              320.47
Benefits                                 NaN
TotalPay                           142587.51
TotalPayBenefits                   142587.51
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2860, dtype: object)
(2861, Id                           2862
EmployeeName           TOMIE KATO
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              16571.62
OtherPay                 20065.76
Benefits                      NaN
TotalPay                142572.05
TotalPayBenefits        142572.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2861, dtype: object)
(2862, Id                           2863
EmployeeName        GERARDO FRIES
JobTitle               MANAGER IV
BasePay                 142564.83
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142564.83
TotalPayBenefits        142564.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2862, dtype: object)
(2863, Id                                              2864
EmployeeName                            ERIC MAHONEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.89
OvertimePay                                  7647.38
OtherPay                                     4433.49
Benefits                                         NaN
TotalPay                                   142538.76
TotalPayBenefits                           142538.76
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2863, dtype: object)
(2864, Id                            2865
EmployeeName        DARREN BORTMAS
JobTitle               FIREFIGHTER
BasePay                  105934.63
OvertimePay               21470.57
OtherPay                  15126.84
Benefits                       NaN
TotalPay                 142532.04
TotalPayBenefits         142532.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2864, dtype: object)
(2865, Id                           2866
EmployeeName         KAREN WATSON
JobTitle               MANAGER IV
BasePay                 142493.91
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                142493.91
TotalPayBenefits        142493.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2865, dtype: object)
(2866, Id                                              2867
EmployeeName                            WALTER CUDDY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.94
OvertimePay                                    24.01
OtherPay                                    12008.86
Benefits                                         NaN
TotalPay                                   142490.81
TotalPayBenefits                           142490.81
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2866, dtype: object)
(2867, Id                             2868
EmployeeName        CHESTER SPIRLIN
JobTitle                FIREFIGHTER
BasePay                   103427.89
OvertimePay                27382.38
OtherPay                   11679.47
Benefits                        NaN
TotalPay                  142489.74
TotalPayBenefits          142489.74
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2867, dtype: object)
(2868, Id                                       2869
EmployeeName                        KERBY LAU
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127203.01
OvertimePay                           5815.68
OtherPay                              9469.53
Benefits                                  NaN
TotalPay                            142488.22
TotalPayBenefits                    142488.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2868, dtype: object)
(2869, Id                                                        2870
EmployeeName                                  STEVEN SPAGNUOLO
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128147.12
OvertimePay                                             8799.9
OtherPay                                                5537.4
Benefits                                                   NaN
TotalPay                                             142484.42
TotalPayBenefits                                     142484.42
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 2869, dtype: object)
(2870, Id                           2871
EmployeeName         GLORIA LOUIE
JobTitle               MANAGER IV
BasePay                  142478.4
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 142478.4
TotalPayBenefits         142478.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2870, dtype: object)
(2871, Id                                 2872
EmployeeName            CLAIRE WILLIAMS
JobTitle            COURT ADMINISTRATOR
BasePay                        142477.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       142477.0
TotalPayBenefits               142477.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2871, dtype: object)
(2872, Id                             2873
EmployeeName           ROGER NGUYEN
JobTitle            SENIOR ENGINEER
BasePay                   140003.42
OvertimePay                     0.0
OtherPay                    2426.86
Benefits                        NaN
TotalPay                  142430.28
TotalPayBenefits          142430.28
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2872, dtype: object)
(2873, Id                             2874
EmployeeName                FOO ENG
JobTitle            SENIOR ENGINEER
BasePay                   140003.23
OvertimePay                     0.0
OtherPay                    2426.86
Benefits                        NaN
TotalPay                  142430.09
TotalPayBenefits          142430.09
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2873, dtype: object)
(2874, Id                             2875
EmployeeName              JANE WANG
JobTitle            SENIOR ENGINEER
BasePay                   140003.07
OvertimePay                     0.0
OtherPay                    2426.86
Benefits                        NaN
TotalPay                  142429.93
TotalPayBenefits          142429.93
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2874, dtype: object)
(2875, Id                             2876
EmployeeName            ARTHUR WONG
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                    2426.86
Benefits                        NaN
TotalPay                  142429.87
TotalPayBenefits          142429.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2875, dtype: object)
(2876, Id                             2877
EmployeeName              JOHN FONG
JobTitle            SENIOR ENGINEER
BasePay                   140002.74
OvertimePay                     0.0
OtherPay                    2426.86
Benefits                        NaN
TotalPay                   142429.6
TotalPayBenefits           142429.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2876, dtype: object)
(2877, Id                                2878
EmployeeName            BENITO MANNING
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    8957.13
OtherPay                      21090.26
Benefits                           NaN
TotalPay                      142428.1
TotalPayBenefits              142428.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2877, dtype: object)
(2878, Id                               2879
EmployeeName          BRENDAN OCONNOR
JobTitle            POLICE OFFICER II
BasePay                     110203.18
OvertimePay                  14635.35
OtherPay                     17587.82
Benefits                          NaN
TotalPay                    142426.35
TotalPayBenefits            142426.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2878, dtype: object)
(2879, Id                              2880
EmployeeName           RENATO GURION
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   4029.3
OtherPay                     11412.3
Benefits                         NaN
TotalPay                    142425.6
TotalPayBenefits            142425.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2879, dtype: object)
(2880, Id                                         2881
EmployeeName                         JOHN LOPES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             3467.31
OtherPay                                15852.6
Benefits                                    NaN
TotalPay                              142424.92
TotalPayBenefits                      142424.92
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2880, dtype: object)
(2881, Id                           2882
EmployeeName              KIN GEE
JobTitle               MANAGER IV
BasePay                 138854.69
OvertimePay                   0.0
OtherPay                   3549.0
Benefits                      NaN
TotalPay                142403.69
TotalPayBenefits        142403.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2881, dtype: object)
(2882, Id                                              2883
EmployeeName                          BENJAMIN SMITH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115946.23
OvertimePay                                  8717.29
OtherPay                                     17726.6
Benefits                                         NaN
TotalPay                                   142390.12
TotalPayBenefits                           142390.12
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2882, dtype: object)
(2883, Id                                         2884
EmployeeName                      GENE NAKAJIMA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               135602.65
OvertimePay                                 0.0
OtherPay                                6780.16
Benefits                                    NaN
TotalPay                              142382.81
TotalPayBenefits                      142382.81
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2883, dtype: object)
(2884, Id                                                2885
EmployeeName                               MARY PETRIE
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       33822.02
OvertimePay                                   27527.85
OtherPay                                      81032.11
Benefits                                           NaN
TotalPay                                     142381.98
TotalPayBenefits                             142381.98
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2884, dtype: object)
(2885, Id                                                               2886
EmployeeName                                          WILLIAM JACKSON
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.06
OvertimePay                                                       0.0
OtherPay                                                     15400.75
Benefits                                                          NaN
TotalPay                                                    142368.81
TotalPayBenefits                                            142368.81
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2885, dtype: object)
(2886, Id                                          2887
EmployeeName                       DANIEL COTTER
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 101233.6
OvertimePay                              24310.2
OtherPay                                16817.97
Benefits                                     NaN
TotalPay                               142361.77
TotalPayBenefits                       142361.77
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 2886, dtype: object)
(2887, Id                            2888
EmployeeName        MICHAEL PARKER
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay               18683.89
OtherPay                  17712.69
Benefits                       NaN
TotalPay                 142331.23
TotalPayBenefits         142331.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2887, dtype: object)
(2888, Id                                              2889
EmployeeName                           DANIEL MILLER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  3028.03
OtherPay                                     8844.49
Benefits                                         NaN
TotalPay                                   142330.48
TotalPayBenefits                           142330.48
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2888, dtype: object)
(2889, Id                                  2890
EmployeeName              JEFFREY FIGONE
JobTitle            PLUMBER SUPERVISOR I
BasePay                         101641.8
OvertimePay                     20721.32
OtherPay                        19950.82
Benefits                             NaN
TotalPay                       142313.94
TotalPayBenefits               142313.94
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2889, dtype: object)
(2890, Id                               2891
EmployeeName            KEVIN COLEMAN
JobTitle            POLICE OFFICER II
BasePay                     108582.58
OvertimePay                  14691.32
OtherPay                     19038.75
Benefits                          NaN
TotalPay                    142312.65
TotalPayBenefits            142312.65
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2890, dtype: object)
(2891, Id                                              2892
EmployeeName                           IAN FURMINGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     129200.5
OvertimePay                                  6634.08
OtherPay                                     6466.95
Benefits                                         NaN
TotalPay                                   142301.53
TotalPayBenefits                           142301.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2891, dtype: object)
(2892, Id                                       2893
EmployeeName                     HAZEL BRANDT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             139497.64
OvertimePay                               0.0
OtherPay                              2790.54
Benefits                                  NaN
TotalPay                            142288.18
TotalPayBenefits                    142288.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2892, dtype: object)
(2893, Id                                 2894
EmployeeName        CECILIO EVANGELISTA
JobTitle               REGISTERED NURSE
BasePay                        122804.7
OvertimePay                     9874.62
OtherPay                        9605.24
Benefits                            NaN
TotalPay                      142284.56
TotalPayBenefits              142284.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2893, dtype: object)
(2894, Id                                                2895
EmployeeName                                 JULIE YEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    2097.23
OtherPay                                       9694.58
Benefits                                           NaN
TotalPay                                     142249.75
TotalPayBenefits                             142249.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2894, dtype: object)
(2895, Id                                              2896
EmployeeName                         ROBERT SPRINGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130368.22
OvertimePay                                  2939.31
OtherPay                                     8940.91
Benefits                                         NaN
TotalPay                                   142248.44
TotalPayBenefits                           142248.44
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2895, dtype: object)
(2896, Id                           2897
EmployeeName           JOHN PAYNE
JobTitle              MANAGER VII
BasePay                       0.0
OvertimePay                   0.0
OtherPay                142245.22
Benefits                      NaN
TotalPay                142245.22
TotalPayBenefits        142245.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2896, dtype: object)
(2897, Id                           2898
EmployeeName          JILL MANTON
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                  10000.0
Benefits                      NaN
TotalPay                 142242.5
TotalPayBenefits         142242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2897, dtype: object)
(2898, Id                                    2899
EmployeeName                    JOHN DRAKE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          120305.71
OvertimePay                       10194.49
OtherPay                          11724.89
Benefits                               NaN
TotalPay                         142225.09
TotalPayBenefits                 142225.09
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2898, dtype: object)
(2899, Id                                                         2900
EmployeeName                                        BASSEY OBOT
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                                130457.9
OvertimePay                                              3579.4
OtherPay                                                8183.11
Benefits                                                    NaN
TotalPay                                              142220.41
TotalPayBenefits                                      142220.41
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 2899, dtype: object)
(2900, Id                              2901
EmployeeName           MILEN BANEGAS
JobTitle            POLICE OFFICER I
BasePay                    101977.37
OvertimePay                 17165.09
OtherPay                    23076.28
Benefits                         NaN
TotalPay                   142218.74
TotalPayBenefits           142218.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2900, dtype: object)
(2901, Id                                              2902
EmployeeName                            JAMES NGUYEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.51
OvertimePay                                  4246.52
OtherPay                                      7487.0
Benefits                                         NaN
TotalPay                                   142215.03
TotalPayBenefits                           142215.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2901, dtype: object)
(2902, Id                                    2903
EmployeeName              STEPHEN MARCOTTE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        3146.27
OtherPay                          16653.76
Benefits                               NaN
TotalPay                         142205.02
TotalPayBenefits                 142205.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2902, dtype: object)
(2903, Id                                                2904
EmployeeName                            STEVEN RAVELLA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130505.15
OvertimePay                                    3970.48
OtherPay                                       7727.25
Benefits                                           NaN
TotalPay                                     142202.88
TotalPayBenefits                             142202.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2903, dtype: object)
(2904, Id                               2905
EmployeeName                RYAN HART
JobTitle            POLICE OFFICER II
BasePay                     101568.32
OvertimePay                  34443.62
OtherPay                      6178.38
Benefits                          NaN
TotalPay                    142190.32
TotalPayBenefits            142190.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2904, dtype: object)
(2905, Id                                    2906
EmployeeName            EUGENIO OCAMPO III
JobTitle            SUPERVISING PHARMACIST
BasePay                           137759.0
OvertimePay                            0.0
OtherPay                           4335.03
Benefits                               NaN
TotalPay                         142094.03
TotalPayBenefits                 142094.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2905, dtype: object)
(2906, Id                                            2907
EmployeeName                          JOHN HAGGETT
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123170.05
OvertimePay                               12082.35
OtherPay                                   6824.85
Benefits                                       NaN
TotalPay                                 142077.25
TotalPayBenefits                         142077.25
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 2906, dtype: object)
(2907, Id                                              2908
EmployeeName                           JUDITH RIGGLE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.21
OvertimePay                                  4188.72
OtherPay                                     7372.34
Benefits                                         NaN
TotalPay                                   142066.27
TotalPayBenefits                           142066.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2907, dtype: object)
(2908, Id                                              2909
EmployeeName                       MICHAEL HUTCHINGS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  3293.36
OtherPay                                     8309.32
Benefits                                         NaN
TotalPay                                   142060.59
TotalPayBenefits                           142060.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2908, dtype: object)
(2909, Id                            2910
EmployeeName        STEVEN RUSSELL
JobTitle               ELECTRICIAN
BasePay                    95442.0
OvertimePay               43498.37
OtherPay                    3118.5
Benefits                       NaN
TotalPay                 142058.87
TotalPayBenefits         142058.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2909, dtype: object)
(2910, Id                            2911
EmployeeName        EUGENE EDEN-JR
JobTitle               FIREFIGHTER
BasePay                  125386.06
OvertimePay                    0.0
OtherPay                  16638.69
Benefits                       NaN
TotalPay                 142024.75
TotalPayBenefits         142024.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2910, dtype: object)
(2911, Id                                  2912
EmployeeName        RAQUEL ALFONZO-YUMUL
JobTitle                REGISTERED NURSE
BasePay                        126007.19
OvertimePay                      5769.19
OtherPay                        10244.22
Benefits                             NaN
TotalPay                        142020.6
TotalPayBenefits                142020.6
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2911, dtype: object)
(2912, Id                                2913
EmployeeName              SERGIO LOPEZ
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   20977.22
OtherPay                       8611.05
Benefits                           NaN
TotalPay                      142009.7
TotalPayBenefits              142009.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2912, dtype: object)
(2913, Id                                 2914
EmployeeName             KATHERINE PANG
JobTitle            CLINICAL PHARMACIST
BasePay                       141579.52
OvertimePay                      149.91
OtherPay                         233.63
Benefits                            NaN
TotalPay                      141963.06
TotalPayBenefits              141963.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 2913, dtype: object)
(2914, Id                                         2915
EmployeeName                    ROBERT NEUNEKER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                             11441.4
OtherPay                                7387.21
Benefits                                    NaN
TotalPay                              141948.61
TotalPayBenefits                      141948.61
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2914, dtype: object)
(2915, Id                           2916
EmployeeName          CRAIG LOUIE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              19051.84
OtherPay                 16940.85
Benefits                      NaN
TotalPay                141927.34
TotalPayBenefits        141927.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2915, dtype: object)
(2916, Id                                            2917
EmployeeName                         ROGER RITLAND
JobTitle            COURT COMPUTER SYSTEMS MANAGER
BasePay                                   141649.2
OvertimePay                                    0.0
OtherPay                                     277.2
Benefits                                       NaN
TotalPay                                  141926.4
TotalPayBenefits                          141926.4
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 2916, dtype: object)
(2917, Id                                               2918
EmployeeName                              JULIE LAZAR
JobTitle            INSPECTOR II, (POLICE DEPARTMENT)
BasePay                                      128147.1
OvertimePay                                  13016.16
OtherPay                                       755.75
Benefits                                          NaN
TotalPay                                    141919.01
TotalPayBenefits                            141919.01
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 2917, dtype: object)
(2918, Id                              2919
EmployeeName        KIMBERLY HATCHER
JobTitle                 FIREFIGHTER
BasePay                    103081.05
OvertimePay                 29175.91
OtherPay                     9655.52
Benefits                         NaN
TotalPay                   141912.48
TotalPayBenefits           141912.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2918, dtype: object)
(2919, Id                                              2920
EmployeeName                        JENNIFER JACKSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130476.4
OvertimePay                                  3609.95
OtherPay                                     7821.19
Benefits                                         NaN
TotalPay                                   141907.54
TotalPayBenefits                           141907.54
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2919, dtype: object)
(2920, Id                           2921
EmployeeName            JASON WOO
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay              18175.87
OtherPay                 17784.87
Benefits                      NaN
TotalPay                141895.37
TotalPayBenefits        141895.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2920, dtype: object)
(2921, Id                                2922
EmployeeName                 JASON HUI
JobTitle            POLICE OFFICER III
BasePay                      112401.02
OvertimePay                    5389.18
OtherPay                      24075.75
Benefits                           NaN
TotalPay                     141865.95
TotalPayBenefits             141865.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2921, dtype: object)
(2922, Id                                         2923
EmployeeName                     DANIEL GRIFFIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                             3376.42
OtherPay                               15365.21
Benefits                                    NaN
TotalPay                              141846.66
TotalPayBenefits                      141846.66
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2922, dtype: object)
(2923, Id                                              2924
EmployeeName                       PATRICK MCCORMICK
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129208.95
OvertimePay                                   2569.5
OtherPay                                     10027.5
Benefits                                         NaN
TotalPay                                   141805.95
TotalPayBenefits                           141805.95
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2923, dtype: object)
(2924, Id                                             2925
EmployeeName                        BRIAN RODRIGUEZ
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   125880.38
OvertimePay                                11433.21
OtherPay                                    4480.87
Benefits                                        NaN
TotalPay                                  141794.46
TotalPayBenefits                          141794.46
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2924, dtype: object)
(2925, Id                                             2926
EmployeeName                         TIMOTHY FOWLIE
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128123.96
OvertimePay                                 6229.24
OtherPay                                    7422.93
Benefits                                        NaN
TotalPay                                  141776.13
TotalPayBenefits                          141776.13
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2925, dtype: object)
(2926, Id                                2927
EmployeeName               ERICA ESHOO
JobTitle            NURSE PRACTITIONER
BasePay                       141525.6
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      141775.6
TotalPayBenefits              141775.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2926, dtype: object)
(2927, Id                               2928
EmployeeName                SCOTT HOM
JobTitle            POLICE OFFICER II
BasePay                     106322.52
OvertimePay                   8639.47
OtherPay                     26812.03
Benefits                          NaN
TotalPay                    141774.02
TotalPayBenefits            141774.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2927, dtype: object)
(2928, Id                             2929
EmployeeName        GREGORY SIMPSON
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                18546.22
OtherPay                   17272.99
Benefits                        NaN
TotalPay                  141753.87
TotalPayBenefits          141753.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2928, dtype: object)
(2929, Id                                              2930
EmployeeName                          THOMAS JOHNSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                   3951.9
OtherPay                                     7307.55
Benefits                                         NaN
TotalPay                                   141741.02
TotalPayBenefits                           141741.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2929, dtype: object)
(2930, Id                                       2931
EmployeeName                  DANIELLE HARRIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             141728.96
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            141728.96
TotalPayBenefits                    141728.96
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2930, dtype: object)
(2931, Id                            2932
EmployeeName        CRAIG DZIEDZIC
JobTitle              MANAGER VIII
BasePay                  141725.89
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 141725.89
TotalPayBenefits         141725.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2931, dtype: object)
(2932, Id                                     2933
EmployeeName                   CLINT TURNER
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                           111674.67
OvertimePay                        18521.81
OtherPay                           11506.65
Benefits                                NaN
TotalPay                          141703.13
TotalPayBenefits                  141703.13
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 2932, dtype: object)
(2933, Id                                           2934
EmployeeName                             CARL LEE
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                   99961.0
OvertimePay                               41737.9
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 141698.9
TotalPayBenefits                         141698.9
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2933, dtype: object)
(2934, Id                            2935
EmployeeName        TRACY O'KEEFFE
JobTitle               FIREFIGHTER
BasePay                  105407.45
OvertimePay               19116.47
OtherPay                  17160.58
Benefits                       NaN
TotalPay                  141684.5
TotalPayBenefits          141684.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 2934, dtype: object)
(2935, Id                           2936
EmployeeName          MARY CARDER
JobTitle              FIREFIGHTER
BasePay                 105871.74
OvertimePay              16626.29
OtherPay                 19142.61
Benefits                      NaN
TotalPay                141640.64
TotalPayBenefits        141640.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2935, dtype: object)
(2936, Id                             2937
EmployeeName        ANDREW BIRKHOFF
JobTitle                FIREFIGHTER
BasePay                   105934.63
OvertimePay                18138.56
OtherPay                   17555.99
Benefits                        NaN
TotalPay                  141629.18
TotalPayBenefits          141629.18
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2936, dtype: object)
(2937, Id                                                2938
EmployeeName                             ROLAND TOLOSA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                     7067.8
OtherPay                                       4090.02
Benefits                                           NaN
TotalPay                                     141615.78
TotalPayBenefits                             141615.78
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2937, dtype: object)
(2938, Id                                    2939
EmployeeName                 PHILIP BENSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122312.25
OvertimePay                        3755.66
OtherPay                          15540.44
Benefits                               NaN
TotalPay                         141608.35
TotalPayBenefits                 141608.35
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2938, dtype: object)
(2939, Id                               2940
EmployeeName              PAUL RUETTI
JobTitle            POLICE OFFICER II
BasePay                     105021.59
OvertimePay                  10602.38
OtherPay                     25981.97
Benefits                          NaN
TotalPay                    141605.94
TotalPayBenefits            141605.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2939, dtype: object)
(2940, Id                                                2941
EmployeeName                                JULIA FORD
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.08
OvertimePay                                     3486.1
OtherPay                                       7635.92
Benefits                                           NaN
TotalPay                                      141603.1
TotalPayBenefits                              141603.1
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2940, dtype: object)
(2941, Id                                              2942
EmployeeName                         ERIC WASHINGTON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                   7786.4
OtherPay                                     3304.03
Benefits                                         NaN
TotalPay                                   141571.96
TotalPayBenefits                           141571.96
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2941, dtype: object)
(2942, Id                             2943
EmployeeName        SHERMAN TILLMAN
JobTitle                FIREFIGHTER
BasePay                    105466.2
OvertimePay                 17117.8
OtherPay                   18951.87
Benefits                        NaN
TotalPay                  141535.87
TotalPayBenefits          141535.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2942, dtype: object)
(2943, Id                                         2944
EmployeeName                      SHIRLEY SZELA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               108945.95
OvertimePay                            14086.18
OtherPay                               18503.07
Benefits                                    NaN
TotalPay                               141535.2
TotalPayBenefits                       141535.2
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2943, dtype: object)
(2944, Id                             2945
EmployeeName        DAVID LOUSTALOT
JobTitle                  MANAGER V
BasePay                   141511.27
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  141511.27
TotalPayBenefits          141511.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2944, dtype: object)
(2945, Id                                              2946
EmployeeName                          SALVADOR PEREZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.84
OvertimePay                                  6561.91
OtherPay                                     4489.24
Benefits                                         NaN
TotalPay                                   141508.99
TotalPayBenefits                           141508.99
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2945, dtype: object)
(2946, Id                                   2947
EmployeeName        MARIA CORAZO MUNSAYAC
JobTitle                 REGISTERED NURSE
BasePay                          122766.0
OvertimePay                        7038.9
OtherPay                          11697.1
Benefits                              NaN
TotalPay                         141502.0
TotalPayBenefits                 141502.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 2946, dtype: object)
(2947, Id                                2948
EmployeeName            HEATHER ZAHIRI
JobTitle            NURSE PRACTITIONER
BasePay                      140624.06
OvertimePay                        0.0
OtherPay                         875.0
Benefits                           NaN
TotalPay                     141499.06
TotalPayBenefits             141499.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2947, dtype: object)
(2948, Id                           2949
EmployeeName          VIVIAN CHAN
JobTitle               PHARMACIST
BasePay                 133430.77
OvertimePay                 48.66
OtherPay                  8017.01
Benefits                      NaN
TotalPay                141496.44
TotalPayBenefits        141496.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2948, dtype: object)
(2949, Id                               2950
EmployeeName            ERICK SOLARES
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                  17863.73
OtherPay                      13380.2
Benefits                          NaN
TotalPay                     141467.0
TotalPayBenefits             141467.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2949, dtype: object)
(2950, Id                                  2951
EmployeeName                LARRY DORSEY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.02
OvertimePay                     11155.24
OtherPay                         8679.41
Benefits                             NaN
TotalPay                       141462.67
TotalPayBenefits               141462.67
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2950, dtype: object)
(2951, Id                                      2952
EmployeeName        GRANVILLE MCCOLLOUGH III
JobTitle                  SHERIFF'S SERGEANT
BasePay                             106106.0
OvertimePay                         17592.17
OtherPay                            17758.46
Benefits                                 NaN
TotalPay                           141456.63
TotalPayBenefits                   141456.63
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2951, dtype: object)
(2952, Id                             2953
EmployeeName        CHERISSE BOLAND
JobTitle            CRIMINALIST III
BasePay                   129405.28
OvertimePay                11992.54
OtherPay                      52.09
Benefits                        NaN
TotalPay                  141449.91
TotalPayBenefits          141449.91
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2952, dtype: object)
(2953, Id                                              2954
EmployeeName                           NELSON ARTIGA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.82
OvertimePay                                  4946.56
OtherPay                                     6044.46
Benefits                                         NaN
TotalPay                                   141448.84
TotalPayBenefits                           141448.84
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2953, dtype: object)
(2954, Id                              2955
EmployeeName           ALBERN CIUDAD
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 12993.08
OtherPay                    22366.43
Benefits                         NaN
TotalPay                   141424.71
TotalPayBenefits           141424.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2954, dtype: object)
(2955, Id                                              2956
EmployeeName                          JOSEPH FINIGAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  7262.01
OtherPay                                     3698.36
Benefits                                         NaN
TotalPay                                   141418.28
TotalPayBenefits                           141418.28
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2955, dtype: object)
(2956, Id                                         2957
EmployeeName                         KAREN KERR
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122285.62
OvertimePay                            11632.04
OtherPay                                7491.55
Benefits                                    NaN
TotalPay                              141409.21
TotalPayBenefits                      141409.21
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2956, dtype: object)
(2957, Id                                2958
EmployeeName                BENNY FONG
JobTitle            POLICE OFFICER III
BasePay                      117324.03
OvertimePay                    8021.76
OtherPay                       16059.0
Benefits                           NaN
TotalPay                     141404.79
TotalPayBenefits             141404.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2957, dtype: object)
(2958, Id                           2959
EmployeeName            JOHN DUNN
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              15541.64
OtherPay                 19925.09
Benefits                      NaN
TotalPay                 141401.4
TotalPayBenefits         141401.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2958, dtype: object)
(2959, Id                                              2960
EmployeeName                             KIM D' ARCY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.28
OvertimePay                                      0.0
OtherPay                                    10912.83
Benefits                                         NaN
TotalPay                                   141394.11
TotalPayBenefits                           141394.11
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2959, dtype: object)
(2960, Id                                2961
EmployeeName              RICHARD TONG
JobTitle            POLICE OFFICER III
BasePay                      107281.86
OvertimePay                     7200.9
OtherPay                      26889.13
Benefits                           NaN
TotalPay                     141371.89
TotalPayBenefits             141371.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2960, dtype: object)
(2961, Id                                2962
EmployeeName                TROY PEELE
JobTitle            POLICE OFFICER III
BasePay                      112417.28
OvertimePay                   26299.69
OtherPay                        2643.7
Benefits                           NaN
TotalPay                     141360.67
TotalPayBenefits             141360.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2961, dtype: object)
(2962, Id                              2963
EmployeeName          SONIA CURAMENG
JobTitle            REGISTERED NURSE
BasePay                     114163.5
OvertimePay                  6520.13
OtherPay                     20652.2
Benefits                         NaN
TotalPay                   141335.83
TotalPayBenefits           141335.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2962, dtype: object)
(2963, Id                           2964
EmployeeName        MARTHA JENSEN
JobTitle               MANAGER IV
BasePay                 141323.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                141323.52
TotalPayBenefits        141323.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2963, dtype: object)
(2964, Id                           2965
EmployeeName         ROBERT MELLO
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              17700.92
OtherPay                 17672.08
Benefits                      NaN
TotalPay                141307.67
TotalPayBenefits        141307.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2964, dtype: object)
(2965, Id                                2966
EmployeeName            NANETTE MADDEN
JobTitle            NURSE PRACTITIONER
BasePay                       140017.0
OvertimePay                        0.0
OtherPay                        1250.0
Benefits                           NaN
TotalPay                      141267.0
TotalPayBenefits              141267.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2965, dtype: object)
(2966, Id                                  2967
EmployeeName             ROBERT DEBIASIO
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121629.93
OvertimePay                      4241.34
OtherPay                        15359.62
Benefits                             NaN
TotalPay                       141230.89
TotalPayBenefits               141230.89
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 2966, dtype: object)
(2967, Id                                                2968
EmployeeName                               RICK BAILON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.88
OvertimePay                                    8628.39
OtherPay                                        2114.7
Benefits                                           NaN
TotalPay                                     141200.97
TotalPayBenefits                             141200.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2967, dtype: object)
(2968, Id                                         2969
EmployeeName                      CHRISTINA LEE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               141192.58
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              141192.58
TotalPayBenefits                      141192.58
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2968, dtype: object)
(2969, Id                                              2970
EmployeeName                           DAVID POLLITT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.95
OvertimePay                                   958.05
OtherPay                                     9754.97
Benefits                                         NaN
TotalPay                                   141170.97
TotalPayBenefits                           141170.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2969, dtype: object)
(2970, Id                              2971
EmployeeName           RUSSEL ROLDAN
JobTitle            REGISTERED NURSE
BasePay                    123000.49
OvertimePay                  3956.04
OtherPay                    14198.62
Benefits                         NaN
TotalPay                   141155.15
TotalPayBenefits           141155.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2970, dtype: object)
(2971, Id                                2972
EmployeeName             CHARLIE LYONS
JobTitle            POLICE OFFICER III
BasePay                      117303.59
OvertimePay                    7085.57
OtherPay                      16762.04
Benefits                           NaN
TotalPay                      141151.2
TotalPayBenefits              141151.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2971, dtype: object)
(2972, Id                                                2973
EmployeeName                             MATTHEW PEREZ
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.34
OvertimePay                                     848.52
OtherPay                                       9806.18
Benefits                                           NaN
TotalPay                                     141131.04
TotalPayBenefits                             141131.04
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2972, dtype: object)
(2973, Id                           2974
EmployeeName         PATRICIA LEE
JobTitle              FIREFIGHTER
BasePay                 110638.67
OvertimePay              16862.49
OtherPay                 13617.45
Benefits                      NaN
TotalPay                141118.61
TotalPayBenefits        141118.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2973, dtype: object)
(2974, Id                                                               2975
EmployeeName                                              MICHIE WONG
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     130948.98
OvertimePay                                                    2302.0
OtherPay                                                      7856.96
Benefits                                                          NaN
TotalPay                                                    141107.94
TotalPayBenefits                                            141107.94
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 2974, dtype: object)
(2975, Id                           2976
EmployeeName          REXIE MEGIA
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              22623.15
OtherPay                 12532.44
Benefits                      NaN
TotalPay                141090.24
TotalPayBenefits        141090.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2975, dtype: object)
(2976, Id                                                              2977
EmployeeName                                          DONALD ELLISON
JobTitle            DEPUTY DIRECTOR I - MUNICIPAL TRANSPORTATION AGE
BasePay                                                    140038.63
OvertimePay                                                      0.0
OtherPay                                                     1039.43
Benefits                                                         NaN
TotalPay                                                   141078.06
TotalPayBenefits                                           141078.06
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 2976, dtype: object)
(2977, Id                                              2978
EmployeeName                        NATHANIEL STEGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130457.8
OvertimePay                                  1354.79
OtherPay                                     9264.59
Benefits                                         NaN
TotalPay                                   141077.18
TotalPayBenefits                           141077.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2977, dtype: object)
(2978, Id                                              2979
EmployeeName                              UNA BAILEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129601.59
OvertimePay                                  4625.18
OtherPay                                      6832.2
Benefits                                         NaN
TotalPay                                   141058.97
TotalPayBenefits                           141058.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2978, dtype: object)
(2979, Id                               2980
EmployeeName          KATHRINE HOLDER
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                  12363.53
OtherPay                     18471.84
Benefits                          NaN
TotalPay                    141058.39
TotalPayBenefits            141058.39
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2979, dtype: object)
(2980, Id                              2981
EmployeeName           EUGENIO OBINA
JobTitle            REGISTERED NURSE
BasePay                    112100.01
OvertimePay                 11538.45
OtherPay                    17417.21
Benefits                         NaN
TotalPay                   141055.67
TotalPayBenefits           141055.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2980, dtype: object)
(2981, Id                               2982
EmployeeName               KATHY WONG
JobTitle            POLICE OFFICER II
BasePay                     105883.32
OvertimePay                    5991.3
OtherPay                     29175.34
Benefits                          NaN
TotalPay                    141049.96
TotalPayBenefits            141049.96
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2981, dtype: object)
(2982, Id                           2983
EmployeeName        PATRICK MORAN
JobTitle              FIREFIGHTER
BasePay                 105103.63
OvertimePay              22262.69
OtherPay                  13675.7
Benefits                      NaN
TotalPay                141042.02
TotalPayBenefits        141042.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2982, dtype: object)
(2983, Id                                             2984
EmployeeName                             TIM MCNEIL
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                     99500.0
OvertimePay                                31403.42
OtherPay                                    10130.0
Benefits                                        NaN
TotalPay                                  141033.42
TotalPayBenefits                          141033.42
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 2983, dtype: object)
(2984, Id                                                2985
EmployeeName                               SERGIO CHIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.91
OvertimePay                                    4800.31
OtherPay                                       5766.01
Benefits                                           NaN
TotalPay                                     141024.23
TotalPayBenefits                             141024.23
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2984, dtype: object)
(2985, Id                                                2986
EmployeeName                             WENDY GERRISH
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                        84817.6
OvertimePay                                   50358.77
OtherPay                                       5817.07
Benefits                                           NaN
TotalPay                                     140993.44
TotalPayBenefits                             140993.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 2985, dtype: object)
(2986, Id                                           2987
EmployeeName                     RICHARD GONZALES
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                 110475.03
OvertimePay                                6954.7
OtherPay                                 23559.22
Benefits                                      NaN
TotalPay                                140988.95
TotalPayBenefits                        140988.95
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2986, dtype: object)
(2987, Id                               2988
EmployeeName            DANIEL ROSAIA
JobTitle            POLICE OFFICER II
BasePay                       98151.5
OvertimePay                    8191.9
OtherPay                     34626.51
Benefits                          NaN
TotalPay                    140969.91
TotalPayBenefits            140969.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 2987, dtype: object)
(2988, Id                                2989
EmployeeName         CHARLES ARMSTRONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   44216.28
OtherPay                        8683.6
Benefits                           NaN
TotalPay                     140961.88
TotalPayBenefits             140961.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 2988, dtype: object)
(2989, Id                             2990
EmployeeName        RIZAL VILLAREAL
JobTitle            SENIOR ENGINEER
BasePay                    136300.0
OvertimePay                     0.0
OtherPay                    4661.01
Benefits                        NaN
TotalPay                  140961.01
TotalPayBenefits          140961.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2989, dtype: object)
(2990, Id                             2991
EmployeeName        REBECCA ATWATER
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                17518.08
OtherPay                   17503.15
Benefits                        NaN
TotalPay                  140955.92
TotalPayBenefits          140955.92
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2990, dtype: object)
(2991, Id                                    2992
EmployeeName              JEREMIAH RIBEIRO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102847.92
OvertimePay                       26323.78
OtherPay                          11782.17
Benefits                               NaN
TotalPay                         140953.87
TotalPayBenefits                 140953.87
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 2991, dtype: object)
(2992, Id                             2993
EmployeeName         JACQUELYNE CHO
JobTitle            SENIOR ENGINEER
BasePay                   130815.06
OvertimePay                     0.0
OtherPay                   10133.25
Benefits                        NaN
TotalPay                  140948.31
TotalPayBenefits          140948.31
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 2992, dtype: object)
(2993, Id                           2994
EmployeeName         THOMAS HANEY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               17403.8
OtherPay                 17604.08
Benefits                      NaN
TotalPay                140942.55
TotalPayBenefits        140942.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 2993, dtype: object)
(2994, Id                                       2995
EmployeeName                  THORIN SHATTUCK
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127202.98
OvertimePay                           3459.69
OtherPay                             10259.55
Benefits                                  NaN
TotalPay                            140922.22
TotalPayBenefits                    140922.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 2994, dtype: object)
(2995, Id                              2996
EmployeeName            JEAN ANCHETA
JobTitle            REGISTERED NURSE
BasePay                     109616.0
OvertimePay                  6132.96
OtherPay                    25168.62
Benefits                         NaN
TotalPay                   140917.58
TotalPayBenefits           140917.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 2995, dtype: object)
(2996, Id                                           2997
EmployeeName                       THOMAS WORTMAN
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                  112050.0
OvertimePay                              18028.83
OtherPay                                 10828.22
Benefits                                      NaN
TotalPay                                140907.05
TotalPayBenefits                        140907.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 2996, dtype: object)
(2997, Id                                         2998
EmployeeName                 STEPHEN MC PARTLAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             1747.59
OtherPay                               16054.22
Benefits                                    NaN
TotalPay                              140906.82
TotalPayBenefits                      140906.82
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 2997, dtype: object)
(2998, Id                                      2999
EmployeeName                       JOHN CURD
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            125748.25
OvertimePay                              0.0
OtherPay                            15147.55
Benefits                                 NaN
TotalPay                            140895.8
TotalPayBenefits                    140895.8
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 2998, dtype: object)
(2999, Id                                              3000
EmployeeName                         ROSEMARIE SMITH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129625.23
OvertimePay                                  1210.24
OtherPay                                    10044.34
Benefits                                         NaN
TotalPay                                   140879.81
TotalPayBenefits                           140879.81
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 2999, dtype: object)
(3000, Id                           3001
EmployeeName        WILLIAM BOYLE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              18530.98
OtherPay                  16389.6
Benefits                      NaN
TotalPay                140855.23
TotalPayBenefits        140855.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3000, dtype: object)
(3001, Id                                               3002
EmployeeName                                 ALAN LIN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       98965.8
OvertimePay                                   41504.4
OtherPay                                        380.0
Benefits                                          NaN
TotalPay                                     140850.2
TotalPayBenefits                             140850.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3001, dtype: object)
(3002, Id                                              3003
EmployeeName                          WILLIAM CONLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.78
OvertimePay                                  3131.42
OtherPay                                     7256.39
Benefits                                         NaN
TotalPay                                   140845.59
TotalPayBenefits                           140845.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3002, dtype: object)
(3003, Id                                         3004
EmployeeName                    ROBERT MCDONALD
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             1833.56
OtherPay                               15897.68
Benefits                                    NaN
TotalPay                              140836.23
TotalPayBenefits                      140836.23
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3003, dtype: object)
(3004, Id                                3005
EmployeeName          MICHAEL COSTELLO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    7957.74
OtherPay                      20466.93
Benefits                           NaN
TotalPay                     140825.75
TotalPayBenefits             140825.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3004, dtype: object)
(3005, Id                           3006
EmployeeName              EDNA HO
JobTitle                MANAGER V
BasePay                 140821.37
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                140821.37
TotalPayBenefits        140821.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3005, dtype: object)
(3006, Id                              3007
EmployeeName           RODRIGO CONEL
JobTitle            REGISTERED NURSE
BasePay                     126120.0
OvertimePay                  3981.78
OtherPay                    10714.21
Benefits                         NaN
TotalPay                   140815.99
TotalPayBenefits           140815.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3006, dtype: object)
(3007, Id                            3008
EmployeeName        VICTOR HURTADO
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               13112.76
OtherPay                   21763.5
Benefits                       NaN
TotalPay                 140810.93
TotalPayBenefits         140810.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3007, dtype: object)
(3008, Id                                       3009
EmployeeName                    DONALD LANDRY
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92861.5
OvertimePay                          39789.32
OtherPay                              8135.86
Benefits                                  NaN
TotalPay                            140786.68
TotalPayBenefits                    140786.68
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3008, dtype: object)
(3009, Id                                                3010
EmployeeName                                 FRANK LEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                      725.4
OtherPay                                       9579.58
Benefits                                           NaN
TotalPay                                     140786.54
TotalPayBenefits                             140786.54
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3009, dtype: object)
(3010, Id                                3011
EmployeeName               GARY CASTEL
JobTitle            POLICE OFFICER III
BasePay                      117303.67
OvertimePay                    11019.7
OtherPay                      12457.26
Benefits                           NaN
TotalPay                     140780.63
TotalPayBenefits             140780.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3010, dtype: object)
(3011, Id                                            3012
EmployeeName                           JAKE PETERS
JobTitle            TRANSMISSION LINE SUPERVISOR I
BasePay                                   97198.24
OvertimePay                               42162.36
OtherPay                                   1406.88
Benefits                                       NaN
TotalPay                                 140767.48
TotalPayBenefits                         140767.48
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3011, dtype: object)
(3012, Id                                    3013
EmployeeName             NATALIE LEVCHENKO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121431.62
OvertimePay                        7821.61
OtherPay                          11508.63
Benefits                               NaN
TotalPay                         140761.86
TotalPayBenefits                 140761.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3012, dtype: object)
(3013, Id                            3014
EmployeeName        WILLIAM LINNEY
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               12365.94
OtherPay                  22460.59
Benefits                       NaN
TotalPay                  140761.2
TotalPayBenefits          140761.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3013, dtype: object)
(3014, Id                                  3015
EmployeeName        JANETTE NEVES RIVERA
JobTitle                     FIREFIGHTER
BasePay                         100280.7
OvertimePay                     30670.65
OtherPay                         9777.87
Benefits                             NaN
TotalPay                       140729.22
TotalPayBenefits               140729.22
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3014, dtype: object)
(3015, Id                                3016
EmployeeName               SOPHAL CHEA
JobTitle            POLICE OFFICER III
BasePay                      111038.42
OvertimePay                   10436.21
OtherPay                      19223.74
Benefits                           NaN
TotalPay                     140698.37
TotalPayBenefits             140698.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3015, dtype: object)
(3016, Id                                                3017
EmployeeName                              HERMAN JONES
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.92
OvertimePay                                    6185.03
OtherPay                                       4054.37
Benefits                                           NaN
TotalPay                                     140697.32
TotalPayBenefits                             140697.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3016, dtype: object)
(3017, Id                                     3018
EmployeeName                RAYMOND MATTIAS
JobTitle            SEWER REPAIR SUPERVISOR
BasePay                             93563.6
OvertimePay                        28298.93
OtherPay                           18830.13
Benefits                                NaN
TotalPay                          140692.66
TotalPayBenefits                  140692.66
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3017, dtype: object)
(3018, Id                               3019
EmployeeName          JOSEPH KAVANAGH
JobTitle            POLICE OFFICER II
BasePay                     109112.08
OvertimePay                  19102.62
OtherPay                     12477.29
Benefits                          NaN
TotalPay                    140691.99
TotalPayBenefits            140691.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3018, dtype: object)
(3019, Id                                       3020
EmployeeName                   SANGEETA SINHA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             140691.97
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            140691.97
TotalPayBenefits                    140691.97
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3019, dtype: object)
(3020, Id                                       3021
EmployeeName              ROBERTO EVANGELISTA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             140691.95
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            140691.95
TotalPayBenefits                    140691.95
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3020, dtype: object)
(3021, Id                                3022
EmployeeName               RICHARD KIM
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   18160.54
OtherPay                      10105.94
Benefits                           NaN
TotalPay                     140687.92
TotalPayBenefits             140687.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3021, dtype: object)
(3022, Id                                          3023
EmployeeName                     ROBERT COSTELLO
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102050.03
OvertimePay                             32089.98
OtherPay                                 6544.93
Benefits                                     NaN
TotalPay                               140684.94
TotalPayBenefits                       140684.94
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3022, dtype: object)
(3023, Id                                3024
EmployeeName               STANLEY LEE
JobTitle            POLICE OFFICER III
BasePay                      112134.66
OvertimePay                    3373.46
OtherPay                      25169.78
Benefits                           NaN
TotalPay                      140677.9
TotalPayBenefits              140677.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3023, dtype: object)
(3024, Id                           3025
EmployeeName          STANLEY LEE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              14158.45
OtherPay                 20577.18
Benefits                      NaN
TotalPay                 140670.3
TotalPayBenefits         140670.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3024, dtype: object)
(3025, Id                           3026
EmployeeName            RYAN TOBY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              17849.22
OtherPay                 16835.16
Benefits                      NaN
TotalPay                140619.05
TotalPayBenefits        140619.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3025, dtype: object)
(3026, Id                                3027
EmployeeName               RAYMOND LEE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   15728.47
OtherPay                      12461.46
Benefits                           NaN
TotalPay                     140611.37
TotalPayBenefits             140611.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3026, dtype: object)
(3027, Id                                              3028
EmployeeName                                 TONY NG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  6204.89
OtherPay                                     3947.28
Benefits                                         NaN
TotalPay                                   140610.08
TotalPayBenefits                           140610.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3027, dtype: object)
(3028, Id                              3029
EmployeeName            FREEMAN CHEE
JobTitle            TRANSIT OPERATOR
BasePay                     69489.48
OvertimePay                 67266.58
OtherPay                     3849.63
Benefits                         NaN
TotalPay                   140605.69
TotalPayBenefits           140605.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3028, dtype: object)
(3029, Id                                            3030
EmployeeName                        THOMAS HAYMOND
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123192.17
OvertimePay                                8858.71
OtherPay                                   8554.38
Benefits                                       NaN
TotalPay                                 140605.26
TotalPayBenefits                         140605.26
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3029, dtype: object)
(3030, Id                                3031
EmployeeName         BERNARD HENDERSON
JobTitle            TRANSIT SUPERVISOR
BasePay                        89416.8
OvertimePay                   47714.52
OtherPay                       3472.75
Benefits                           NaN
TotalPay                     140604.07
TotalPayBenefits             140604.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3030, dtype: object)
(3031, Id                                3032
EmployeeName        ERMELINA FERNANDEZ
JobTitle              REGISTERED NURSE
BasePay                      123229.93
OvertimePay                   11291.63
OtherPay                       6081.48
Benefits                           NaN
TotalPay                     140603.04
TotalPayBenefits             140603.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3031, dtype: object)
(3032, Id                                              3033
EmployeeName                               SIMON KIM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130481.5
OvertimePay                                  1068.64
OtherPay                                     9017.34
Benefits                                         NaN
TotalPay                                   140567.48
TotalPayBenefits                           140567.48
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3032, dtype: object)
(3033, Id                                3034
EmployeeName        SCOTT HOEY-CUSTOCK
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                    3384.41
OtherPay                      24765.58
Benefits                           NaN
TotalPay                     140551.02
TotalPayBenefits             140551.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3033, dtype: object)
(3034, Id                                       3035
EmployeeName                     DIANA STRAIT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             140538.03
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            140538.03
TotalPayBenefits                    140538.03
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3034, dtype: object)
(3035, Id                                                3036
EmployeeName                             ROD NAKANISHI
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                     663.02
OtherPay                                       9386.39
Benefits                                           NaN
TotalPay                                     140530.97
TotalPayBenefits                             140530.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3035, dtype: object)
(3036, Id                                                          3037
EmployeeName                                        LOUIS MAFFEI
JobTitle            SENIOR LIGHT RAIL VEHICLE EQUIPMENT ENGINEER
BasePay                                                 133818.4
OvertimePay                                                  0.0
OtherPay                                                 6712.06
Benefits                                                     NaN
TotalPay                                               140530.46
TotalPayBenefits                                       140530.46
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 3036, dtype: object)
(3037, Id                            3038
EmployeeName        KATHRYN LAWHUN
JobTitle                MANAGER IV
BasePay                  140528.28
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 140528.28
TotalPayBenefits         140528.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3037, dtype: object)
(3038, Id                               3039
EmployeeName             JOHN NORMENT
JobTitle            POLICE OFFICER II
BasePay                     102864.42
OvertimePay                  17306.81
OtherPay                     20353.38
Benefits                          NaN
TotalPay                    140524.61
TotalPayBenefits            140524.61
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3038, dtype: object)
(3039, Id                                3040
EmployeeName               KEVIN ABBEY
JobTitle            POLICE OFFICER III
BasePay                      117324.02
OvertimePay                   11760.89
OtherPay                      11424.03
Benefits                           NaN
TotalPay                     140508.94
TotalPayBenefits             140508.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3039, dtype: object)
(3040, Id                                3041
EmployeeName                  EDDIE WU
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    6850.12
OtherPay                      21256.74
Benefits                           NaN
TotalPay                     140507.94
TotalPayBenefits             140507.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3040, dtype: object)
(3041, Id                                          3042
EmployeeName                       JAMES HEPPERT
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101845.91
OvertimePay                             23900.69
OtherPay                                14749.55
Benefits                                     NaN
TotalPay                               140496.15
TotalPayBenefits                       140496.15
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3041, dtype: object)
(3042, Id                                                3043
EmployeeName                              R MCNAUGHTON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                    2547.45
OtherPay                                       7460.08
Benefits                                           NaN
TotalPay                                     140489.12
TotalPayBenefits                             140489.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3042, dtype: object)
(3043, Id                                               3044
EmployeeName                               ALBERT TOM
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                  35236.87
OtherPay                                      6235.25
Benefits                                          NaN
TotalPay                                    140472.12
TotalPayBenefits                            140472.12
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3043, dtype: object)
(3044, Id                                                       3045
EmployeeName                                       JESSE BLAS
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                              95663.11
OvertimePay                                           4030.25
OtherPay                                             40762.36
Benefits                                                  NaN
TotalPay                                            140455.72
TotalPayBenefits                                    140455.72
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 3044, dtype: object)
(3045, Id                                    3046
EmployeeName                  BRYAN HENDON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.96
OvertimePay                        3393.04
OtherPay                          14654.71
Benefits                               NaN
TotalPay                         140452.71
TotalPayBenefits                 140452.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3045, dtype: object)
(3046, Id                             3047
EmployeeName           THOMAS FOLKS
JobTitle            SENIOR ENGINEER
BasePay                   140003.18
OvertimePay                     0.0
OtherPay                      440.8
Benefits                        NaN
TotalPay                  140443.98
TotalPayBenefits          140443.98
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3046, dtype: object)
(3047, Id                                              3048
EmployeeName                         PATRICK ZAPPONI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.19
OvertimePay                                  5401.75
OtherPay                                     4518.84
Benefits                                         NaN
TotalPay                                   140425.78
TotalPayBenefits                           140425.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3047, dtype: object)
(3048, Id                                 3049
EmployeeName        CHRISTINE MAGAYANES
JobTitle             POLICE OFFICER III
BasePay                       112401.02
OvertimePay                     7209.05
OtherPay                       20813.92
Benefits                            NaN
TotalPay                      140423.99
TotalPayBenefits              140423.99
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3048, dtype: object)
(3049, Id                                               3050
EmployeeName                                 MARK LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  30675.54
OtherPay                                     10684.89
Benefits                                          NaN
TotalPay                                    140374.83
TotalPayBenefits                            140374.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3049, dtype: object)
(3050, Id                             3051
EmployeeName        MICHAEL ORLANDO
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                 16024.8
OtherPay                   18409.82
Benefits                        NaN
TotalPay                   140369.3
TotalPayBenefits           140369.3
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3050, dtype: object)
(3051, Id                                 3052
EmployeeName               FRANK COATES
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72344.2
OvertimePay                    41503.54
OtherPay                       26518.17
Benefits                            NaN
TotalPay                      140365.91
TotalPayBenefits              140365.91
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3051, dtype: object)
(3052, Id                                       3053
EmployeeName        BEVERLY UPCHURCH-ROBINSON
JobTitle                   TRANSIT SUPERVISOR
BasePay                              88898.18
OvertimePay                          51098.13
OtherPay                               357.76
Benefits                                  NaN
TotalPay                            140354.07
TotalPayBenefits                    140354.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3052, dtype: object)
(3053, Id                                            3054
EmployeeName                         PARIS DESHONG
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123192.12
OvertimePay                                7813.73
OtherPay                                   9344.93
Benefits                                       NaN
TotalPay                                 140350.78
TotalPayBenefits                         140350.78
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3053, dtype: object)
(3054, Id                            3055
EmployeeName        DAVID THOMPSON
JobTitle            DEPUTY SHERIFF
BasePay                   82082.67
OvertimePay               52450.56
OtherPay                   5802.09
Benefits                       NaN
TotalPay                 140335.32
TotalPayBenefits         140335.32
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3054, dtype: object)
(3055, Id                                              3056
EmployeeName                             SHERMAN LEE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    125557.47
OvertimePay                                  3337.38
OtherPay                                    11428.07
Benefits                                         NaN
TotalPay                                   140322.92
TotalPayBenefits                           140322.92
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3055, dtype: object)
(3056, Id                            3057
EmployeeName        WILLIAM POWELL
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               16518.45
OtherPay                  17859.73
Benefits                       NaN
TotalPay                 140312.85
TotalPayBenefits         140312.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3056, dtype: object)
(3057, Id                                         3058
EmployeeName                          JAMES APP
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             1888.41
OtherPay                               15291.32
Benefits                                    NaN
TotalPay                              140284.72
TotalPayBenefits                      140284.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3057, dtype: object)
(3058, Id                           3059
EmployeeName            SCOTT HUA
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              19156.59
OtherPay                 15189.68
Benefits                      NaN
TotalPay                140280.94
TotalPayBenefits        140280.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3058, dtype: object)
(3059, Id                                         3060
EmployeeName                   ROBERT ZLATUNICH
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                             1797.52
OtherPay                               15365.21
Benefits                                    NaN
TotalPay                              140267.73
TotalPayBenefits                      140267.73
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3059, dtype: object)
(3060, Id                               3061
EmployeeName           ANGUS CHAMBERS
JobTitle            POLICE OFFICER II
BasePay                     106040.32
OvertimePay                  10591.46
OtherPay                     23622.79
Benefits                          NaN
TotalPay                    140254.57
TotalPayBenefits            140254.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3060, dtype: object)
(3061, Id                           3062
EmployeeName           ELAINE LEE
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                   8000.0
Benefits                      NaN
TotalPay                 140242.5
TotalPayBenefits         140242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3061, dtype: object)
(3062, Id                              3063
EmployeeName         RUFINA HIPOLITO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   6593.4
OtherPay                      6651.1
Benefits                         NaN
TotalPay                    140228.5
TotalPayBenefits            140228.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3062, dtype: object)
(3063, Id                             3064
EmployeeName         RUDIZON ALEGRE
JobTitle            SENIOR ENGINEER
BasePay                   140184.51
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140184.51
TotalPayBenefits          140184.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3063, dtype: object)
(3064, Id                                                3065
EmployeeName                                  ZHEN KHO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   53021.78
OtherPay                                       9580.41
Benefits                                           NaN
TotalPay                                     140182.59
TotalPayBenefits                             140182.59
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3064, dtype: object)
(3065, Id                                3066
EmployeeName                  ALAN HOM
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    3754.78
OtherPay                      24016.16
Benefits                           NaN
TotalPay                     140172.02
TotalPayBenefits             140172.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3065, dtype: object)
(3066, Id                             3067
EmployeeName             HECTOR MAU
JobTitle            SENIOR ENGINEER
BasePay                    140003.0
OvertimePay                     0.0
OtherPay                     166.96
Benefits                        NaN
TotalPay                  140169.96
TotalPayBenefits          140169.96
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3066, dtype: object)
(3067, Id                           3068
EmployeeName            DIANE LIM
JobTitle              MANAGER III
BasePay                 133351.11
OvertimePay                   0.0
OtherPay                   6817.0
Benefits                      NaN
TotalPay                140168.11
TotalPayBenefits        140168.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3067, dtype: object)
(3068, Id                               3069
EmployeeName           GIUSEPPE FESTA
JobTitle            POLICE OFFICER II
BasePay                     110262.82
OvertimePay                  16776.22
OtherPay                      13127.2
Benefits                          NaN
TotalPay                    140166.24
TotalPayBenefits            140166.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3068, dtype: object)
(3069, Id                                3070
EmployeeName                   PING LO
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    49887.2
OtherPay                       2216.86
Benefits                           NaN
TotalPay                     140166.06
TotalPayBenefits             140166.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3069, dtype: object)
(3070, Id                                              3071
EmployeeName                       MATTHEW INOCENCIO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  2957.78
OtherPay                                     6731.08
Benefits                                         NaN
TotalPay                                   140146.77
TotalPayBenefits                           140146.77
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3070, dtype: object)
(3071, Id                                3072
EmployeeName         JAMES FRANICEVICH
JobTitle            NURSE PRACTITIONER
BasePay                       137246.0
OvertimePay                        0.0
OtherPay                       2872.63
Benefits                           NaN
TotalPay                     140118.63
TotalPayBenefits             140118.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3071, dtype: object)
(3072, Id                                 3073
EmployeeName        DAVID COLCLOUGH III
JobTitle              POLICE OFFICER II
BasePay                       103358.02
OvertimePay                    29850.53
OtherPay                        6893.36
Benefits                            NaN
TotalPay                      140101.91
TotalPayBenefits              140101.91
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3072, dtype: object)
(3073, Id                               3074
EmployeeName             SCOTT HURLEY
JobTitle            POLICE OFFICER II
BasePay                     110262.78
OvertimePay                   9965.29
OtherPay                     19867.22
Benefits                          NaN
TotalPay                    140095.29
TotalPayBenefits            140095.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3073, dtype: object)
(3074, Id                             3075
EmployeeName            HARVEY QUAN
JobTitle            SENIOR ENGINEER
BasePay                   140003.04
OvertimePay                     0.0
OtherPay                       90.0
Benefits                        NaN
TotalPay                  140093.04
TotalPayBenefits          140093.04
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3074, dtype: object)
(3075, Id                             3076
EmployeeName             QINHUA LIU
JobTitle            SENIOR ENGINEER
BasePay                    140003.0
OvertimePay                     0.0
OtherPay                       90.0
Benefits                        NaN
TotalPay                   140093.0
TotalPayBenefits           140093.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3075, dtype: object)
(3076, Id                                 3077
EmployeeName             HEATHER HOUSKA
JobTitle            CLINICAL PHARMACIST
BasePay                       140078.03
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      140078.03
TotalPayBenefits              140078.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3076, dtype: object)
(3077, Id                              3078
EmployeeName          LIZA FERNANDEZ
JobTitle            REGISTERED NURSE
BasePay                     125885.1
OvertimePay                  4604.39
OtherPay                     9586.85
Benefits                         NaN
TotalPay                   140076.34
TotalPayBenefits           140076.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3077, dtype: object)
(3078, Id                              3079
EmployeeName        THOMAS BOLLINGER
JobTitle                 FIREFIGHTER
BasePay                    105934.65
OvertimePay                 22403.12
OtherPay                    11737.74
Benefits                         NaN
TotalPay                   140075.51
TotalPayBenefits           140075.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3078, dtype: object)
(3079, Id                             3080
EmployeeName           GARY FLEMING
JobTitle            SENIOR ENGINEER
BasePay                   140003.04
OvertimePay                     0.0
OtherPay                      67.46
Benefits                        NaN
TotalPay                   140070.5
TotalPayBenefits           140070.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3079, dtype: object)
(3080, Id                                                3081
EmployeeName                             JOHN CONEFREY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.59
OvertimePay                                    4022.51
OtherPay                                       5547.54
Benefits                                           NaN
TotalPay                                     140051.64
TotalPayBenefits                             140051.64
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3080, dtype: object)
(3081, Id                                         3082
EmployeeName                     FREDERICK PUTT
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               109966.64
OvertimePay                             3327.66
OtherPay                               26747.19
Benefits                                    NaN
TotalPay                              140041.49
TotalPayBenefits                      140041.49
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3081, dtype: object)
(3082, Id                                  3083
EmployeeName              STEPHEN TILTON
JobTitle            SHERIFF'S LIEUTENANT
BasePay                         121181.6
OvertimePay                      9781.14
OtherPay                         9071.26
Benefits                             NaN
TotalPay                        140034.0
TotalPayBenefits                140034.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3082, dtype: object)
(3083, Id                              3084
EmployeeName               GEORGE SO
JobTitle            REGISTERED NURSE
BasePay                     125518.8
OvertimePay                  7949.93
OtherPay                     6564.98
Benefits                         NaN
TotalPay                   140033.71
TotalPayBenefits           140033.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3083, dtype: object)
(3084, Id                                3085
EmployeeName              TIM ANDERSON
JobTitle            POLICE OFFICER III
BasePay                      112441.79
OvertimePay                   16274.72
OtherPay                       11316.3
Benefits                           NaN
TotalPay                     140032.81
TotalPayBenefits             140032.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3084, dtype: object)
(3085, Id                           3086
EmployeeName          WENDY IWATA
JobTitle              MANAGER III
BasePay                 140031.64
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                140031.64
TotalPayBenefits        140031.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3085, dtype: object)
(3086, Id                                          3087
EmployeeName                     ANTHONY MAZZOLA
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 101233.6
OvertimePay                             10608.07
OtherPay                                28182.46
Benefits                                     NaN
TotalPay                               140024.13
TotalPayBenefits                       140024.13
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3086, dtype: object)
(3087, Id                              3088
EmployeeName        KAREN BACZKOWSKI
JobTitle               NURSE MANAGER
BasePay                    131598.17
OvertimePay                      0.0
OtherPay                      8416.8
Benefits                         NaN
TotalPay                   140014.97
TotalPayBenefits           140014.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3087, dtype: object)
(3088, Id                             3089
EmployeeName            ROBERT NIST
JobTitle            SENIOR ENGINEER
BasePay                   140003.07
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.07
TotalPayBenefits          140003.07
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3088, dtype: object)
(3089, Id                             3090
EmployeeName          DOMINGO JOLIS
JobTitle            SENIOR ENGINEER
BasePay                   140003.06
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.06
TotalPayBenefits          140003.06
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3089, dtype: object)
(3090, Id                             3091
EmployeeName            JAMES BUKER
JobTitle            SENIOR ENGINEER
BasePay                   140003.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.05
TotalPayBenefits          140003.05
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3090, dtype: object)
(3091, Id                             3092
EmployeeName         MEEI-LIH AHMAD
JobTitle            SENIOR ENGINEER
BasePay                   140003.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.05
TotalPayBenefits          140003.05
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3091, dtype: object)
(3092, Id                              3093
EmployeeName        HOUSHANG ESMAILI
JobTitle             SENIOR ENGINEER
BasePay                    140003.03
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   140003.03
TotalPayBenefits           140003.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3092, dtype: object)
(3093, Id                             3094
EmployeeName           BONNIE JONES
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.03
TotalPayBenefits          140003.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3093, dtype: object)
(3094, Id                              3095
EmployeeName        MARILYN THOMPSON
JobTitle             SENIOR ENGINEER
BasePay                    140003.03
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   140003.03
TotalPayBenefits           140003.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3094, dtype: object)
(3095, Id                             3096
EmployeeName               BOON LIM
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.03
TotalPayBenefits          140003.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3095, dtype: object)
(3096, Id                             3097
EmployeeName              WILL KWAN
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.03
TotalPayBenefits          140003.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3096, dtype: object)
(3097, Id                             3098
EmployeeName            ARTHUR BREE
JobTitle            SENIOR ENGINEER
BasePay                   140003.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.03
TotalPayBenefits          140003.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3097, dtype: object)
(3098, Id                             3099
EmployeeName           MAURICE CHEE
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3098, dtype: object)
(3099, Id                             3100
EmployeeName              ALAN WONG
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3099, dtype: object)
(3100, Id                             3101
EmployeeName            SHERMAN HOM
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3100, dtype: object)
(3101, Id                             3102
EmployeeName           GEORGE POUST
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3101, dtype: object)
(3102, Id                             3103
EmployeeName             MABAL BHAT
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3102, dtype: object)
(3103, Id                             3104
EmployeeName            EDWIN LEUNG
JobTitle            SENIOR ENGINEER
BasePay                   140003.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.02
TotalPayBenefits          140003.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3103, dtype: object)
(3104, Id                             3105
EmployeeName           TEMING HSUEH
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.01
TotalPayBenefits          140003.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3104, dtype: object)
(3105, Id                             3106
EmployeeName          MARK COSTANZO
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.01
TotalPayBenefits          140003.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3105, dtype: object)
(3106, Id                             3107
EmployeeName            PAUL TRAVIS
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.01
TotalPayBenefits          140003.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3106, dtype: object)
(3107, Id                             3108
EmployeeName        ANDRZEJ WILCZAK
JobTitle            SENIOR ENGINEER
BasePay                   140003.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140003.01
TotalPayBenefits          140003.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3107, dtype: object)
(3108, Id                             3109
EmployeeName         JASWANT BHATTI
JobTitle            SENIOR ENGINEER
BasePay                    140003.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   140003.0
TotalPayBenefits           140003.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3108, dtype: object)
(3109, Id                             3110
EmployeeName                EDDY SO
JobTitle            SENIOR ENGINEER
BasePay                    140003.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   140003.0
TotalPayBenefits           140003.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3109, dtype: object)
(3110, Id                             3111
EmployeeName             PETER WONG
JobTitle            SENIOR ENGINEER
BasePay                    140003.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   140003.0
TotalPayBenefits           140003.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3110, dtype: object)
(3111, Id                             3112
EmployeeName           TRINH NGUYEN
JobTitle            SENIOR ENGINEER
BasePay                   140002.72
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  140002.72
TotalPayBenefits          140002.72
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3111, dtype: object)
(3112, Id                                                3113
EmployeeName                              EMMANUEL UKU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   60288.07
OtherPay                                        2131.5
Benefits                                           NaN
TotalPay                                     139988.57
TotalPayBenefits                             139988.57
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3112, dtype: object)
(3113, Id                           3114
EmployeeName        MICHAEL MARKS
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              17381.34
OtherPay                 16639.23
Benefits                      NaN
TotalPay                139955.22
TotalPayBenefits        139955.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3113, dtype: object)
(3114, Id                                3115
EmployeeName              BARRY MLAKER
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                     7453.4
OtherPay                      20094.24
Benefits                           NaN
TotalPay                     139948.72
TotalPayBenefits             139948.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3114, dtype: object)
(3115, Id                              3116
EmployeeName        BELENA CABUNTALA
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   5474.7
OtherPay                    11227.84
Benefits                         NaN
TotalPay                   139942.54
TotalPayBenefits           139942.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3115, dtype: object)
(3116, Id                           3117
EmployeeName           HOLLY COST
JobTitle            NURSE MIDWIFE
BasePay                  135233.7
OvertimePay                1956.6
OtherPay                   2751.0
Benefits                      NaN
TotalPay                 139941.3
TotalPayBenefits         139941.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3116, dtype: object)
(3117, Id                                    3118
EmployeeName                  JEFF RUSTEEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            64960.0
OvertimePay                       33064.75
OtherPay                          41904.25
Benefits                               NaN
TotalPay                          139929.0
TotalPayBenefits                  139929.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3117, dtype: object)
(3118, Id                                              3119
EmployeeName                        CHRISTOPHER WOON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.97
OvertimePay                                   2116.5
OtherPay                                     7350.28
Benefits                                         NaN
TotalPay                                   139924.75
TotalPayBenefits                           139924.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3118, dtype: object)
(3119, Id                                    3120
EmployeeName                 CHARLES DALEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                        1877.83
OtherPay                           15627.7
Benefits                               NaN
TotalPay                          139910.5
TotalPayBenefits                  139910.5
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3119, dtype: object)
(3120, Id                                         3121
EmployeeName                    SHANE FRANCISCO
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                             8688.91
OtherPay                                8076.28
Benefits                                    NaN
TotalPay                              139885.19
TotalPayBenefits                      139885.19
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3120, dtype: object)
(3121, Id                                3122
EmployeeName             H SHISHMANIAN
JobTitle            POLICE OFFICER III
BasePay                       36112.29
OvertimePay                   26606.26
OtherPay                      77152.57
Benefits                           NaN
TotalPay                     139871.12
TotalPayBenefits             139871.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3121, dtype: object)
(3122, Id                                3123
EmployeeName            GERARD ARQUERO
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   11394.35
OtherPay                      16091.02
Benefits                           NaN
TotalPay                     139866.08
TotalPayBenefits             139866.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3122, dtype: object)
(3123, Id                           3124
EmployeeName             ROGER NG
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              16251.22
OtherPay                 17680.15
Benefits                      NaN
TotalPay                139866.01
TotalPayBenefits        139866.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3123, dtype: object)
(3124, Id                                3125
EmployeeName            MARIBEL TEJADA
JobTitle            TRANSIT SUPERVISOR
BasePay                        89416.8
OvertimePay                   44631.78
OtherPay                        5795.4
Benefits                           NaN
TotalPay                     139843.98
TotalPayBenefits             139843.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3124, dtype: object)
(3125, Id                              3126
EmployeeName        MARILYNN MENDOZA
JobTitle            REGISTERED NURSE
BasePay                    118806.72
OvertimePay                      0.0
OtherPay                    21016.96
Benefits                         NaN
TotalPay                   139823.68
TotalPayBenefits           139823.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3125, dtype: object)
(3126, Id                                              3127
EmployeeName                        WILFRED WILLIAMS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.31
OvertimePay                                  3933.78
OtherPay                                     5438.79
Benefits                                         NaN
TotalPay                                   139806.88
TotalPayBenefits                           139806.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3126, dtype: object)
(3127, Id                                                3128
EmployeeName                           PATRICK MULLINS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.95
OvertimePay                                    2010.51
OtherPay                                        7299.1
Benefits                                           NaN
TotalPay                                     139767.56
TotalPayBenefits                             139767.56
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3127, dtype: object)
(3128, Id                              3129
EmployeeName           IHEOMA ANORUO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   5860.8
OtherPay                     6916.66
Benefits                         NaN
TotalPay                   139761.46
TotalPayBenefits           139761.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3128, dtype: object)
(3129, Id                                3130
EmployeeName                ROBERT TOY
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   13319.97
OtherPay                      14040.44
Benefits                           NaN
TotalPay                     139741.12
TotalPayBenefits             139741.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3129, dtype: object)
(3130, Id                             3131
EmployeeName         ROCCO PALLANTE
JobTitle            SENIOR ENGINEER
BasePay                   139733.15
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  139733.15
TotalPayBenefits          139733.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3130, dtype: object)
(3131, Id                                3132
EmployeeName            ADRIANO CASTRO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   19568.13
OtherPay                       7754.51
Benefits                           NaN
TotalPay                     139723.72
TotalPayBenefits             139723.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3131, dtype: object)
(3132, Id                                3133
EmployeeName               EDBERT DARE
JobTitle            POLICE OFFICER III
BasePay                       117283.3
OvertimePay                    7791.96
OtherPay                      14647.06
Benefits                           NaN
TotalPay                     139722.32
TotalPayBenefits             139722.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3132, dtype: object)
(3133, Id                                              3134
EmployeeName                        JANET LACAMPAGNE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.36
OvertimePay                                      0.0
OtherPay                                     9243.42
Benefits                                         NaN
TotalPay                                   139719.78
TotalPayBenefits                           139719.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3133, dtype: object)
(3134, Id                           3135
EmployeeName            SAMUEL HO
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              16679.33
OtherPay                 17088.68
Benefits                      NaN
TotalPay                139702.67
TotalPayBenefits        139702.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3134, dtype: object)
(3135, Id                                         3136
EmployeeName                          ALAN WONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122488.41
OvertimePay                              3001.3
OtherPay                               14206.93
Benefits                                    NaN
TotalPay                              139696.64
TotalPayBenefits                      139696.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3135, dtype: object)
(3136, Id                                  3137
EmployeeName               JAMES SHANNON
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        100557.47
OvertimePay                     23926.63
OtherPay                        15199.13
Benefits                             NaN
TotalPay                       139683.23
TotalPayBenefits               139683.23
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3136, dtype: object)
(3137, Id                              3138
EmployeeName            MARIFE WELSH
JobTitle            REGISTERED NURSE
BasePay                    123215.11
OvertimePay                  8816.44
OtherPay                     7634.27
Benefits                         NaN
TotalPay                   139665.82
TotalPayBenefits           139665.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3137, dtype: object)
(3138, Id                                  3139
EmployeeName        PURIFICACION DAYACAP
JobTitle                REGISTERED NURSE
BasePay                         126984.0
OvertimePay                       805.86
OtherPay                        11859.18
Benefits                             NaN
TotalPay                       139649.04
TotalPayBenefits               139649.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3138, dtype: object)
(3139, Id                           3140
EmployeeName          CECILE SOTO
JobTitle               MANAGER II
BasePay                 124723.15
OvertimePay                   0.0
OtherPay                 14924.56
Benefits                      NaN
TotalPay                139647.71
TotalPayBenefits        139647.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3139, dtype: object)
(3140, Id                                              3141
EmployeeName                         JASON JEFFERSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  3982.66
OtherPay                                     5183.45
Benefits                                         NaN
TotalPay                                   139647.66
TotalPayBenefits                           139647.66
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3140, dtype: object)
(3141, Id                                    3142
EmployeeName                   BRETT LYNCH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106135.14
OvertimePay                       20886.89
OtherPay                          12558.66
Benefits                               NaN
TotalPay                         139580.69
TotalPayBenefits                 139580.69
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3141, dtype: object)
(3142, Id                              3143
EmployeeName        NICHOLAS BUCKLEY
JobTitle            POLICE OFFICER I
BasePay                    104962.35
OvertimePay                 13233.08
OtherPay                    21376.84
Benefits                         NaN
TotalPay                   139572.27
TotalPayBenefits           139572.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3142, dtype: object)
(3143, Id                                              3144
EmployeeName                           EVAN REMEDIOS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.62
OvertimePay                                   277.54
OtherPay                                     8818.24
Benefits                                         NaN
TotalPay                                    139553.4
TotalPayBenefits                            139553.4
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3143, dtype: object)
(3144, Id                              3145
EmployeeName              LINDA KOPP
JobTitle            REGISTERED NURSE
BasePay                    118247.74
OvertimePay                  8626.37
OtherPay                    12649.55
Benefits                         NaN
TotalPay                   139523.66
TotalPayBenefits           139523.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3144, dtype: object)
(3145, Id                           3146
EmployeeName            HA NGUYEN
JobTitle                 ENGINEER
BasePay                 135523.58
OvertimePay                   0.0
OtherPay                  3993.97
Benefits                      NaN
TotalPay                139517.55
TotalPayBenefits        139517.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3145, dtype: object)
(3146, Id                                3147
EmployeeName            ROBERT GREINER
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   16961.76
OtherPay                      10128.26
Benefits                           NaN
TotalPay                     139511.48
TotalPayBenefits             139511.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3146, dtype: object)
(3147, Id                                3148
EmployeeName               NEIL FANENE
JobTitle            POLICE OFFICER III
BasePay                      112417.24
OvertimePay                    5671.87
OtherPay                      21416.46
Benefits                           NaN
TotalPay                     139505.57
TotalPayBenefits             139505.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3147, dtype: object)
(3148, Id                                3149
EmployeeName          JEFFREY FERREIRA
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                   19917.05
OtherPay                       7163.68
Benefits                           NaN
TotalPay                     139502.14
TotalPayBenefits             139502.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3148, dtype: object)
(3149, Id                             3150
EmployeeName          TAMERAT AWETU
JobTitle            SENIOR ENGINEER
BasePay                   139463.36
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  139463.36
TotalPayBenefits          139463.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3149, dtype: object)
(3150, Id                                               3151
EmployeeName                                GIL ASIDO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   37132.5
OtherPay                                      3327.48
Benefits                                          NaN
TotalPay                                    139459.98
TotalPayBenefits                            139459.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3150, dtype: object)
(3151, Id                                   3152
EmployeeName        OCTAVIO-JAME LEONARDO
JobTitle                      FIREFIGHTER
BasePay                         105934.67
OvertimePay                      19442.38
OtherPay                         14078.57
Benefits                              NaN
TotalPay                        139455.62
TotalPayBenefits                139455.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3151, dtype: object)
(3152, Id                                     3153
EmployeeName              GEORGE POWERS  JR
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                           11765.15
Benefits                                NaN
TotalPay                          139442.75
TotalPayBenefits                  139442.75
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3152, dtype: object)
(3153, Id                           3154
EmployeeName        GABRIEL WYATT
JobTitle            SPECIAL NURSE
BasePay                 113099.63
OvertimePay              22822.86
OtherPay                   3512.6
Benefits                      NaN
TotalPay                139435.09
TotalPayBenefits        139435.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3153, dtype: object)
(3154, Id                              3155
EmployeeName                SHUI YAN
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                  3209.04
OtherPay                    20333.27
Benefits                         NaN
TotalPay                   139424.31
TotalPayBenefits           139424.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3154, dtype: object)
(3155, Id                                        3156
EmployeeName                       MARY HOBSON
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               139422.3
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              139422.3
TotalPayBenefits                      139422.3
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 3155, dtype: object)
(3156, Id                              3157
EmployeeName            CONNIE FIAME
JobTitle            REGISTERED NURSE
BasePay                    122624.43
OvertimePay                  8406.58
OtherPay                     8390.36
Benefits                         NaN
TotalPay                   139421.37
TotalPayBenefits           139421.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3156, dtype: object)
(3157, Id                                    3158
EmployeeName                 TIMOTHY KELLY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.65
OvertimePay                       25943.67
OtherPay                           7032.56
Benefits                               NaN
TotalPay                         139417.88
TotalPayBenefits                 139417.88
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3157, dtype: object)
(3158, Id                                3159
EmployeeName              JOHN SHEEHAN
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    4332.42
OtherPay                      22656.21
Benefits                           NaN
TotalPay                     139389.69
TotalPayBenefits             139389.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3158, dtype: object)
(3159, Id                                3160
EmployeeName             MICHAEL LYNCH
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   22728.38
OtherPay                       4233.97
Benefits                           NaN
TotalPay                     139383.78
TotalPayBenefits             139383.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3159, dtype: object)
(3160, Id                                3161
EmployeeName               DAVID MARON
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   12136.57
OtherPay                      14857.75
Benefits                           NaN
TotalPay                     139375.03
TotalPayBenefits             139375.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3160, dtype: object)
(3161, Id                             3162
EmployeeName        PATRICK HIGGINS
JobTitle                FIREFIGHTER
BasePay                   124603.01
OvertimePay                 3364.56
OtherPay                   11385.77
Benefits                        NaN
TotalPay                  139353.34
TotalPayBenefits          139353.34
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3161, dtype: object)
(3162, Id                                                3163
EmployeeName                          ANDI TANUWIDJAJA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       75820.75
OvertimePay                                   54198.67
OtherPay                                       9331.66
Benefits                                           NaN
TotalPay                                     139351.08
TotalPayBenefits                             139351.08
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3162, dtype: object)
(3163, Id                           3164
EmployeeName          SEAN VISSER
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              16382.15
OtherPay                 17033.61
Benefits                      NaN
TotalPay                139350.44
TotalPayBenefits        139350.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3163, dtype: object)
(3164, Id                                3165
EmployeeName              GIAN TOZZINI
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    8115.25
OtherPay                      18805.74
Benefits                           NaN
TotalPay                     139322.07
TotalPayBenefits             139322.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3164, dtype: object)
(3165, Id                                              3166
EmployeeName                             MARK MORENO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.53
OvertimePay                                  5114.12
OtherPay                                     3712.57
Benefits                                         NaN
TotalPay                                   139308.22
TotalPayBenefits                           139308.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3165, dtype: object)
(3166, Id                                    3167
EmployeeName                NATHAN SHAPIRO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        1617.02
OtherPay                          15277.83
Benefits                               NaN
TotalPay                         139299.84
TotalPayBenefits                 139299.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3166, dtype: object)
(3167, Id                                3168
EmployeeName               ALBERT LIEU
JobTitle            POLICE OFFICER III
BasePay                      112175.39
OvertimePay                   16733.39
OtherPay                      10389.61
Benefits                           NaN
TotalPay                     139298.39
TotalPayBenefits             139298.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3167, dtype: object)
(3168, Id                                3169
EmployeeName             BRIAN MICHAUD
JobTitle            POLICE OFFICER III
BasePay                      112380.72
OvertimePay                     4517.1
OtherPay                      22392.36
Benefits                           NaN
TotalPay                     139290.18
TotalPayBenefits             139290.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3168, dtype: object)
(3169, Id                              3170
EmployeeName         YONG CHAO ZHANG
JobTitle            REGISTERED NURSE
BasePay                    119237.48
OvertimePay                   7583.4
OtherPay                    12454.07
Benefits                         NaN
TotalPay                   139274.95
TotalPayBenefits           139274.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3169, dtype: object)
(3170, Id                           3171
EmployeeName            MARK KANE
JobTitle              FIREFIGHTER
BasePay                  58262.44
OvertimePay              38830.98
OtherPay                 42180.98
Benefits                      NaN
TotalPay                 139274.4
TotalPayBenefits         139274.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3170, dtype: object)
(3171, Id                                                  3172
EmployeeName                                  ROBERT LIM
JobTitle            AUTOMOTIVE TRANSIT SHOP SUPERVISOR I
BasePay                                         107528.4
OvertimePay                                     30959.16
OtherPay                                           780.0
Benefits                                             NaN
TotalPay                                       139267.56
TotalPayBenefits                               139267.56
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 3171, dtype: object)
(3172, Id                                       3173
EmployeeName                   HILARY WINSLOW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             139232.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            139232.92
TotalPayBenefits                    139232.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3172, dtype: object)
(3173, Id                             3174
EmployeeName        AUDREY LAWRENCE
JobTitle                 MANAGER IV
BasePay                    132470.0
OvertimePay                     0.0
OtherPay                     6760.0
Benefits                        NaN
TotalPay                   139230.0
TotalPayBenefits           139230.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3173, dtype: object)
(3174, Id                                       3175
EmployeeName              MARGARITA GUTIERREZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             136452.33
OvertimePay                               0.0
OtherPay                              2729.79
Benefits                                  NaN
TotalPay                            139182.12
TotalPayBenefits                    139182.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3174, dtype: object)
(3175, Id                              3176
EmployeeName              FELISA KHO
JobTitle            REGISTERED NURSE
BasePay                    126251.41
OvertimePay                  5659.32
OtherPay                     7262.97
Benefits                         NaN
TotalPay                    139173.7
TotalPayBenefits            139173.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3175, dtype: object)
(3176, Id                              3177
EmployeeName        RICHARD SLATTERY
JobTitle                 FIREFIGHTER
BasePay                    118158.82
OvertimePay                  4182.66
OtherPay                    16829.68
Benefits                         NaN
TotalPay                   139171.16
TotalPayBenefits           139171.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3176, dtype: object)
(3177, Id                                              3178
EmployeeName                          WILLIAM COGGAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.57
OvertimePay                                      0.0
OtherPay                                     8687.46
Benefits                                         NaN
TotalPay                                   139169.03
TotalPayBenefits                           139169.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3177, dtype: object)
(3178, Id                                3179
EmployeeName            MATTHEW O'SHEA
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.93
OvertimePay                   16630.25
OtherPay                      16840.51
Benefits                           NaN
TotalPay                     139168.69
TotalPayBenefits             139168.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3178, dtype: object)
(3179, Id                                                3180
EmployeeName                            RICHARD DALTON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                    2714.44
OtherPay                                       5954.39
Benefits                                           NaN
TotalPay                                     139145.23
TotalPayBenefits                             139145.23
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3179, dtype: object)
(3180, Id                              3181
EmployeeName           OSCAR SANCHEZ
JobTitle            TRANSIT OPERATOR
BasePay                     67913.13
OvertimePay                  68183.5
OtherPay                     3044.95
Benefits                         NaN
TotalPay                   139141.58
TotalPayBenefits           139141.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3180, dtype: object)
(3181, Id                                              3182
EmployeeName                            BRIAN CANEDO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130476.4
OvertimePay                                      0.0
OtherPay                                     8647.54
Benefits                                         NaN
TotalPay                                   139123.94
TotalPayBenefits                           139123.94
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3181, dtype: object)
(3182, Id                                                3183
EmployeeName                             GARY DELAGNES
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                        0.0
OtherPay                                       8647.24
Benefits                                           NaN
TotalPay                                     139123.64
TotalPayBenefits                             139123.64
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3182, dtype: object)
(3183, Id                                  3184
EmployeeName        MONTGOMERY SINGLETON
JobTitle                POLICE OFFICER I
BasePay                        106046.05
OvertimePay                     25358.23
OtherPay                         7718.27
Benefits                             NaN
TotalPay                       139122.55
TotalPayBenefits               139122.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3183, dtype: object)
(3184, Id                                             3185
EmployeeName                        KATHRYN WAALAND
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   127376.04
OvertimePay                                   17.69
OtherPay                                   11706.89
Benefits                                        NaN
TotalPay                                  139100.62
TotalPayBenefits                          139100.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3184, dtype: object)
(3185, Id                              3186
EmployeeName           SOLITA EJANDA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   5860.8
OtherPay                     6253.04
Benefits                         NaN
TotalPay                   139097.84
TotalPayBenefits           139097.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3185, dtype: object)
(3186, Id                              3187
EmployeeName           RICHARD SWART
JobTitle            REGISTERED NURSE
BasePay                    115115.88
OvertimePay                  7948.71
OtherPay                    16009.45
Benefits                         NaN
TotalPay                   139074.04
TotalPayBenefits           139074.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3186, dtype: object)
(3187, Id                               3188
EmployeeName        VIRGINIA FERNANDO
JobTitle             REGISTERED NURSE
BasePay                     114444.33
OvertimePay                   3956.03
OtherPay                     20661.87
Benefits                          NaN
TotalPay                    139062.23
TotalPayBenefits            139062.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3187, dtype: object)
(3188, Id                            3189
EmployeeName        ROBYN GRALICER
JobTitle               FIREFIGHTER
BasePay                  102661.22
OvertimePay                27087.1
OtherPay                   9307.11
Benefits                       NaN
TotalPay                 139055.43
TotalPayBenefits         139055.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3188, dtype: object)
(3189, Id                                              3190
EmployeeName                           RANDALL YOUNG
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130434.29
OvertimePay                                  2903.16
OtherPay                                     5714.62
Benefits                                         NaN
TotalPay                                   139052.07
TotalPayBenefits                           139052.07
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3189, dtype: object)
(3190, Id                                                         3191
EmployeeName                                    KATHERINE BREEN
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                               139040.22
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                              139040.22
TotalPayBenefits                                      139040.22
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3190, dtype: object)
(3191, Id                           3192
EmployeeName         DONNA LEVITT
JobTitle                MANAGER V
BasePay                 139040.21
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                139040.21
TotalPayBenefits        139040.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3191, dtype: object)
(3192, Id                                        3193
EmployeeName                       QIAOLAN LUO
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103963.52
OvertimePay                           31966.73
OtherPay                               3098.53
Benefits                                   NaN
TotalPay                             139028.78
TotalPayBenefits                     139028.78
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 3192, dtype: object)
(3193, Id                              3194
EmployeeName           PILAR BALDOZA
JobTitle            REGISTERED NURSE
BasePay                     99703.81
OvertimePay                  3516.48
OtherPay                    35796.45
Benefits                         NaN
TotalPay                   139016.74
TotalPayBenefits           139016.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3193, dtype: object)
(3194, Id                                3195
EmployeeName                LUIS OLIVA
JobTitle            POLICE OFFICER III
BasePay                      112175.46
OvertimePay                    17287.6
OtherPay                        9537.7
Benefits                           NaN
TotalPay                     139000.76
TotalPayBenefits             139000.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3194, dtype: object)
(3195, Id                                3196
EmployeeName        HUCKLEBERRY RAMSAY
JobTitle                   FIREFIGHTER
BasePay                      105934.67
OvertimePay                   16843.72
OtherPay                      16212.32
Benefits                           NaN
TotalPay                     138990.71
TotalPayBenefits             138990.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3195, dtype: object)
(3196, Id                                       3197
EmployeeName                   JOSEPH CLEMENT
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              138507.0
OvertimePay                               0.0
OtherPay                                479.5
Benefits                                  NaN
TotalPay                             138986.5
TotalPayBenefits                     138986.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3196, dtype: object)
(3197, Id                                3198
EmployeeName             AMY WINKELMAN
JobTitle            NURSE PRACTITIONER
BasePay                      134053.71
OvertimePay                     329.98
OtherPay                       4601.35
Benefits                           NaN
TotalPay                     138985.04
TotalPayBenefits             138985.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3197, dtype: object)
(3198, Id                                3199
EmployeeName              RALPH KUGLER
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   11176.54
OtherPay                      15385.61
Benefits                           NaN
TotalPay                      138983.6
TotalPayBenefits              138983.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3198, dtype: object)
(3199, Id                           3200
EmployeeName        MICHAEL YARNE
JobTitle                MANAGER V
BasePay                 138966.33
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                138966.33
TotalPayBenefits        138966.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3199, dtype: object)
(3200, Id                           3201
EmployeeName         TIMOTHY WONG
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay              16138.51
OtherPay                  16854.3
Benefits                      NaN
TotalPay                138927.52
TotalPayBenefits        138927.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3200, dtype: object)
(3201, Id                                       3202
EmployeeName                    GREGORY JONES
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             125820.24
OvertimePay                               0.0
OtherPay                             13095.67
Benefits                                  NaN
TotalPay                            138915.91
TotalPayBenefits                    138915.91
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3201, dtype: object)
(3202, Id                                3203
EmployeeName              KWAI MOON LI
JobTitle            NURSE PRACTITIONER
BasePay                       131475.8
OvertimePay                    1486.02
OtherPay                       5945.55
Benefits                           NaN
TotalPay                     138907.37
TotalPayBenefits             138907.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3202, dtype: object)
(3203, Id                           3204
EmployeeName           RAMON CHEA
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              15251.92
OtherPay                 17718.62
Benefits                      NaN
TotalPay                138905.19
TotalPayBenefits        138905.19
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3203, dtype: object)
(3204, Id                             3205
EmployeeName           JOHN SANCHEZ
JobTitle            CRIMINALIST III
BasePay                    129436.1
OvertimePay                 9444.88
OtherPay                        0.0
Benefits                        NaN
TotalPay                  138880.98
TotalPayBenefits          138880.98
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3204, dtype: object)
(3205, Id                           3206
EmployeeName         KRISTA SMITH
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              15502.09
OtherPay                 17425.51
Benefits                      NaN
TotalPay                138862.27
TotalPayBenefits        138862.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3205, dtype: object)
(3206, Id                                   3207
EmployeeName                 JEFFREY DONG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.94
OvertimePay                      34312.02
OtherPay                          8662.75
Benefits                              NaN
TotalPay                        138856.71
TotalPayBenefits                138856.71
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3206, dtype: object)
(3207, Id                              3208
EmployeeName            SUSAN MEZGER
JobTitle            REGISTERED NURSE
BasePay                    124999.87
OvertimePay                   6512.2
OtherPay                     7328.71
Benefits                         NaN
TotalPay                   138840.78
TotalPayBenefits           138840.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3207, dtype: object)
(3208, Id                           3209
EmployeeName           JASON CHAN
JobTitle              FIREFIGHTER
BasePay                 105934.62
OvertimePay              15627.86
OtherPay                  17255.4
Benefits                      NaN
TotalPay                138817.88
TotalPayBenefits        138817.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3208, dtype: object)
(3209, Id                                    3210
EmployeeName                 ANDREW THOMAS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122405.01
OvertimePay                        3132.37
OtherPay                          13274.26
Benefits                               NaN
TotalPay                         138811.64
TotalPayBenefits                 138811.64
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3209, dtype: object)
(3210, Id                                       3211
EmployeeName              NICHOLAS GREGORATOS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             138808.31
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            138808.31
TotalPayBenefits                    138808.31
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3210, dtype: object)
(3211, Id                                    3212
EmployeeName                  JOHN LEMBERG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                        1877.83
OtherPay                          14519.47
Benefits                               NaN
TotalPay                          138802.3
TotalPayBenefits                  138802.3
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3211, dtype: object)
(3212, Id                                  3213
EmployeeName             SUSHMA MAGNUSON
JobTitle            PHYSICIAN SPECIALIST
BasePay                        136614.87
OvertimePay                          0.0
OtherPay                          2187.0
Benefits                             NaN
TotalPay                       138801.87
TotalPayBenefits               138801.87
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3212, dtype: object)
(3213, Id                                                3214
EmployeeName                                GARY FREED
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   57293.49
OtherPay                                       3916.95
Benefits                                           NaN
TotalPay                                     138790.84
TotalPayBenefits                             138790.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3213, dtype: object)
(3214, Id                                3215
EmployeeName        LEONARDO CAVESTANY
JobTitle                   FIREFIGHTER
BasePay                      105923.91
OvertimePay                   15534.46
OtherPay                      17326.95
Benefits                           NaN
TotalPay                     138785.32
TotalPayBenefits             138785.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3214, dtype: object)
(3215, Id                                  3216
EmployeeName                  ALLAN WONG
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        123795.02
OvertimePay                      4220.71
OtherPay                        10768.91
Benefits                             NaN
TotalPay                       138784.64
TotalPayBenefits               138784.64
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3215, dtype: object)
(3216, Id                                3217
EmployeeName           ROBERT DUFFIELD
JobTitle            POLICE OFFICER III
BasePay                      112952.79
OvertimePay                   12815.51
OtherPay                      12991.82
Benefits                           NaN
TotalPay                     138760.12
TotalPayBenefits             138760.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3216, dtype: object)
(3217, Id                                              3218
EmployeeName                        MICHAEL KONIARIS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.48
OvertimePay                                   5294.6
OtherPay                                      2958.2
Benefits                                         NaN
TotalPay                                   138734.28
TotalPayBenefits                           138734.28
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3217, dtype: object)
(3218, Id                           3219
EmployeeName         LAWRENCE YUP
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              15155.26
OtherPay                 17637.35
Benefits                      NaN
TotalPay                138727.28
TotalPayBenefits        138727.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3218, dtype: object)
(3219, Id                                  3220
EmployeeName                 BABE FRANEY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121161.23
OvertimePay                      3198.88
OtherPay                        14307.72
Benefits                             NaN
TotalPay                       138667.83
TotalPayBenefits               138667.83
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3219, dtype: object)
(3220, Id                                              3221
EmployeeName                             DERRICK LEW
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    114218.11
OvertimePay                                 18099.58
OtherPay                                      6349.7
Benefits                                         NaN
TotalPay                                   138667.39
TotalPayBenefits                           138667.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3220, dtype: object)
(3221, Id                                              3222
EmployeeName                           SCOTT EDWARDS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    131074.67
OvertimePay                                  3800.66
OtherPay                                     3788.76
Benefits                                         NaN
TotalPay                                   138664.09
TotalPayBenefits                           138664.09
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3221, dtype: object)
(3222, Id                                         3223
EmployeeName                    CLIFTON MERRILL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                 65336.0
OvertimePay                            25751.52
OtherPay                               47566.47
Benefits                                    NaN
TotalPay                              138653.99
TotalPayBenefits                      138653.99
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3222, dtype: object)
(3223, Id                                         3224
EmployeeName                     KENNETH LINNEY
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                                 0.0
OtherPay                               15548.86
Benefits                                    NaN
TotalPay                              138653.87
TotalPayBenefits                      138653.87
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3223, dtype: object)
(3224, Id                             3225
EmployeeName        SANDRA CRUMPLER
JobTitle                  MANAGER V
BasePay                   137890.15
OvertimePay                     0.0
OtherPay                     738.59
Benefits                        NaN
TotalPay                  138628.74
TotalPayBenefits          138628.74
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3224, dtype: object)
(3225, Id                                                3226
EmployeeName                            ROBIN MATTHEWS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       108708.6
OvertimePay                                   19121.78
OtherPay                                      10793.65
Benefits                                           NaN
TotalPay                                     138624.03
TotalPayBenefits                             138624.03
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3225, dtype: object)
(3226, Id                               3227
EmployeeName           ANTHONY HOLDER
JobTitle            POLICE OFFICER II
BasePay                      104793.2
OvertimePay                  13038.39
OtherPay                     20788.06
Benefits                          NaN
TotalPay                    138619.65
TotalPayBenefits            138619.65
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3226, dtype: object)
(3227, Id                                3228
EmployeeName               ALFRED WONG
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   10219.73
OtherPay                      15968.31
Benefits                           NaN
TotalPay                     138609.49
TotalPayBenefits             138609.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3227, dtype: object)
(3228, Id                              3229
EmployeeName        BESILDA MANDAPAT
JobTitle            REGISTERED NURSE
BasePay                     125763.0
OvertimePay                  2412.99
OtherPay                    10409.92
Benefits                         NaN
TotalPay                   138585.91
TotalPayBenefits           138585.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3228, dtype: object)
(3229, Id                              3230
EmployeeName          SOPHIA BILLOTE
JobTitle            REGISTERED NURSE
BasePay                    124943.02
OvertimePay                  4688.64
OtherPay                     8953.64
Benefits                         NaN
TotalPay                    138585.3
TotalPayBenefits            138585.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3229, dtype: object)
(3230, Id                                3231
EmployeeName        EVERETT HEWLETT JR
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                      16303.39
Benefits                           NaN
TotalPay                     138577.99
TotalPayBenefits             138577.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3230, dtype: object)
(3231, Id                                 3232
EmployeeName               MARTIN TARAS
JobTitle            IS PROJECT DIRECTOR
BasePay                       137483.61
OvertimePay                         0.0
OtherPay                         1090.0
Benefits                            NaN
TotalPay                      138573.61
TotalPayBenefits              138573.61
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3231, dtype: object)
(3232, Id                                                3233
EmployeeName                               RAYMOND LUK
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.93
OvertimePay                                    3812.19
OtherPay                                       4299.26
Benefits                                           NaN
TotalPay                                     138569.38
TotalPayBenefits                             138569.38
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3232, dtype: object)
(3233, Id                             3234
EmployeeName             TONY LEUNG
JobTitle            SENIOR ENGINEER
BasePay                   138563.81
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  138563.81
TotalPayBenefits          138563.81
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3233, dtype: object)
(3234, Id                           3235
EmployeeName          JACK TAYLOR
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              21920.46
OtherPay                 10680.76
Benefits                      NaN
TotalPay                138535.87
TotalPayBenefits        138535.87
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3234, dtype: object)
(3235, Id                                3236
EmployeeName        CHRISTOPHER CANDIA
JobTitle                   FIREFIGHTER
BasePay                      103867.74
OvertimePay                   25362.05
OtherPay                        9261.9
Benefits                           NaN
TotalPay                     138491.69
TotalPayBenefits             138491.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3235, dtype: object)
(3236, Id                                                3237
EmployeeName                            ANNE MACKENZIE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130481.4
OvertimePay                                        0.0
OtherPay                                       7978.54
Benefits                                           NaN
TotalPay                                     138459.94
TotalPayBenefits                             138459.94
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3236, dtype: object)
(3237, Id                              3238
EmployeeName             GLEN WILSON
JobTitle            POLICE OFFICER I
BasePay                     100883.2
OvertimePay                  7535.12
OtherPay                    30035.59
Benefits                         NaN
TotalPay                   138453.91
TotalPayBenefits           138453.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3237, dtype: object)
(3238, Id                                3239
EmployeeName              STEPHEN RYAN
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   17535.87
OtherPay                        8499.0
Benefits                           NaN
TotalPay                     138435.93
TotalPayBenefits             138435.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3238, dtype: object)
(3239, Id                              3240
EmployeeName             JOSELITO SY
JobTitle            POLICE OFFICER I
BasePay                    104434.12
OvertimePay                  6500.41
OtherPay                    27493.31
Benefits                         NaN
TotalPay                   138427.84
TotalPayBenefits           138427.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3239, dtype: object)
(3240, Id                               3241
EmployeeName              ALI MISAGHI
JobTitle            POLICE OFFICER II
BasePay                      96998.06
OvertimePay                  18101.19
OtherPay                      23320.1
Benefits                          NaN
TotalPay                    138419.35
TotalPayBenefits            138419.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3240, dtype: object)
(3241, Id                                  3242
EmployeeName                DOUGLAS CHIN
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.22
OvertimePay                      6780.25
OtherPay                        10474.49
Benefits                             NaN
TotalPay                       138414.96
TotalPayBenefits               138414.96
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3241, dtype: object)
(3242, Id                               3243
EmployeeName        DANIELLE SORRENTI
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  25572.55
OtherPay                      6901.74
Benefits                          NaN
TotalPay                    138408.93
TotalPayBenefits            138408.93
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3242, dtype: object)
(3243, Id                                              3244
EmployeeName                         NEIL CUNNINGHAM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129864.76
OvertimePay                                  5249.13
OtherPay                                     3286.29
Benefits                                         NaN
TotalPay                                   138400.18
TotalPayBenefits                           138400.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3243, dtype: object)
(3244, Id                                              3245
EmployeeName                             BRETT THORP
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.82
OvertimePay                                  1631.06
OtherPay                                     6236.48
Benefits                                         NaN
TotalPay                                   138325.36
TotalPayBenefits                           138325.36
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3244, dtype: object)
(3245, Id                           3246
EmployeeName            AUDREY YI
JobTitle               PHARMACIST
BasePay                 130816.63
OvertimePay                 761.4
OtherPay                  6737.01
Benefits                      NaN
TotalPay                138315.04
TotalPayBenefits        138315.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3245, dtype: object)
(3246, Id                               3247
EmployeeName        CECILIA CRISOLOGO
JobTitle             REGISTERED NURSE
BasePay                      123240.0
OvertimePay                   3372.81
OtherPay                     11687.62
Benefits                          NaN
TotalPay                    138300.43
TotalPayBenefits            138300.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3246, dtype: object)
(3247, Id                               3248
EmployeeName        MOSTAFA DASTGHEIB
JobTitle                     ENGINEER
BasePay                     120937.01
OvertimePay                       0.0
OtherPay                     17352.75
Benefits                          NaN
TotalPay                    138289.76
TotalPayBenefits            138289.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3247, dtype: object)
(3248, Id                                              3249
EmployeeName                         KEVIN MCPHERSON
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130481.5
OvertimePay                                  1036.91
OtherPay                                      6770.2
Benefits                                         NaN
TotalPay                                   138288.61
TotalPayBenefits                           138288.61
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3248, dtype: object)
(3249, Id                                                   3250
EmployeeName                                   JAMES SHIH
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          75340.19
OvertimePay                                      58283.57
OtherPay                                          4664.13
Benefits                                              NaN
TotalPay                                        138287.89
TotalPayBenefits                                138287.89
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 3249, dtype: object)
(3250, Id                           3251
EmployeeName         JEFFREY BABB
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              17310.64
OtherPay                 15032.38
Benefits                      NaN
TotalPay                138277.68
TotalPayBenefits        138277.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3250, dtype: object)
(3251, Id                                    3252
EmployeeName            KIMBERLY HIROSHIMA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121022.85
OvertimePay                        2138.64
OtherPay                          15105.06
Benefits                               NaN
TotalPay                         138266.55
TotalPayBenefits                 138266.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3251, dtype: object)
(3252, Id                                 3253
EmployeeName             VIRGINIA JONES
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    73528.24
OtherPay                        8847.22
Benefits                            NaN
TotalPay                      138255.46
TotalPayBenefits              138255.46
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3252, dtype: object)
(3253, Id                              3254
EmployeeName          LISA MCCAFFREY
JobTitle            REGISTERED NURSE
BasePay                    112527.35
OvertimePay                  5430.38
OtherPay                    20281.99
Benefits                         NaN
TotalPay                   138239.72
TotalPayBenefits           138239.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3253, dtype: object)
(3254, Id                                    3255
EmployeeName                 SCOTT KINKADE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                        4903.72
OtherPay                          10924.79
Benefits                               NaN
TotalPay                         138233.48
TotalPayBenefits                 138233.48
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3254, dtype: object)
(3255, Id                                       3256
EmployeeName                        LISA CLAY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             135518.93
OvertimePay                               0.0
OtherPay                              2711.14
Benefits                                  NaN
TotalPay                            138230.07
TotalPayBenefits                    138230.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3255, dtype: object)
(3256, Id                                                3257
EmployeeName                                HENRY SETO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.53
OvertimePay                                    1267.18
OtherPay                                       6479.51
Benefits                                           NaN
TotalPay                                     138228.22
TotalPayBenefits                             138228.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3256, dtype: object)
(3257, Id                           3258
EmployeeName           FRANK PATT
JobTitle              MANAGER III
BasePay                 133633.49
OvertimePay                   0.0
OtherPay                   4586.0
Benefits                      NaN
TotalPay                138219.49
TotalPayBenefits        138219.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3257, dtype: object)
(3258, Id                                    3259
EmployeeName                  JASON CORTEZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           94444.17
OvertimePay                       33079.93
OtherPay                          10688.26
Benefits                               NaN
TotalPay                         138212.36
TotalPayBenefits                 138212.36
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3258, dtype: object)
(3259, Id                                  3260
EmployeeName                JOHN RAMIREZ
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.73
OvertimePay                       5019.8
OtherPay                        12024.64
Benefits                             NaN
TotalPay                       138205.17
TotalPayBenefits               138205.17
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3259, dtype: object)
(3260, Id                                            3261
EmployeeName                         ALAN CALLAWAY
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123214.26
OvertimePay                                8505.65
OtherPay                                   6485.07
Benefits                                       NaN
TotalPay                                 138204.98
TotalPayBenefits                         138204.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3260, dtype: object)
(3261, Id                                                              3262
EmployeeName                                              WAYNE CHAN
JobTitle            CHIEF STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                    104483.99
OvertimePay                                                  9767.58
OtherPay                                                    23946.57
Benefits                                                         NaN
TotalPay                                                   138198.14
TotalPayBenefits                                           138198.14
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 3261, dtype: object)
(3262, Id                                         3263
EmployeeName                  ANTHONY GARIBALDI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                                 0.0
OtherPay                               15089.93
Benefits                                    NaN
TotalPay                              138194.94
TotalPayBenefits                      138194.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3262, dtype: object)
(3263, Id                              3264
EmployeeName        LAWRENCE BADINER
JobTitle                  MANAGER VI
BasePay                          0.0
OvertimePay                      0.0
OtherPay                   138191.99
Benefits                         NaN
TotalPay                   138191.99
TotalPayBenefits           138191.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3263, dtype: object)
(3264, Id                              3265
EmployeeName                  LIN LI
JobTitle            REGISTERED NURSE
BasePay                     112073.0
OvertimePay                  3187.16
OtherPay                    22909.91
Benefits                         NaN
TotalPay                   138170.07
TotalPayBenefits           138170.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3264, dtype: object)
(3265, Id                                       3266
EmployeeName                   GREGORY FLORES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             138169.08
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            138169.08
TotalPayBenefits                    138169.08
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3265, dtype: object)
(3266, Id                                                3267
EmployeeName                                SAL SYQUIA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77367.86
OvertimePay                                   59404.63
OtherPay                                        1393.0
Benefits                                           NaN
TotalPay                                     138165.49
TotalPayBenefits                             138165.49
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3266, dtype: object)
(3267, Id                                     3268
EmployeeName                   MICHAEL CHAN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.59
OvertimePay                             0.0
OtherPay                           10475.58
Benefits                                NaN
TotalPay                          138153.17
TotalPayBenefits                  138153.17
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3267, dtype: object)
(3268, Id                              3269
EmployeeName        CRISPIN HOLLINGS
JobTitle                  MANAGER IV
BasePay                    131450.94
OvertimePay                      0.0
OtherPay                      6700.0
Benefits                         NaN
TotalPay                   138150.94
TotalPayBenefits           138150.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3268, dtype: object)
(3269, Id                                    3270
EmployeeName                  MICHAEL SONG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          114535.64
OvertimePay                       16582.15
OtherPay                           7025.68
Benefits                               NaN
TotalPay                         138143.47
TotalPayBenefits                 138143.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3269, dtype: object)
(3270, Id                                 3271
EmployeeName               MICHAEL CHIN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72782.7
OvertimePay                    54006.51
OtherPay                       11351.97
Benefits                            NaN
TotalPay                      138141.18
TotalPayBenefits              138141.18
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3270, dtype: object)
(3271, Id                                3272
EmployeeName              KELLEY AMDUR
JobTitle            DEPUTY DIRECTOR II
BasePay                       129196.0
OvertimePay                        0.0
OtherPay                       8933.44
Benefits                           NaN
TotalPay                     138129.44
TotalPayBenefits             138129.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3271, dtype: object)
(3272, Id                                              3273
EmployeeName                           LAWRENCE CHAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                  3250.79
OtherPay                                     4397.96
Benefits                                         NaN
TotalPay                                   138106.66
TotalPayBenefits                           138106.66
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3272, dtype: object)
(3273, Id                                    3274
EmployeeName                 KENG YAN CHAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122418.3
OvertimePay                          98.86
OtherPay                          15585.33
Benefits                               NaN
TotalPay                         138102.49
TotalPayBenefits                 138102.49
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3273, dtype: object)
(3274, Id                                3275
EmployeeName          VINCENT ETCHEBER
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                    12800.7
OtherPay                       7990.31
Benefits                           NaN
TotalPay                      138094.7
TotalPayBenefits              138094.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3274, dtype: object)
(3275, Id                                                3276
EmployeeName                               PETER WALSH
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.69
OvertimePay                                    4012.62
OtherPay                                        3601.8
Benefits                                           NaN
TotalPay                                     138091.11
TotalPayBenefits                             138091.11
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3275, dtype: object)
(3276, Id                                              3277
EmployeeName                           ALEXA O'BRIEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130528.84
OvertimePay                                  5998.72
OtherPay                                     1562.17
Benefits                                         NaN
TotalPay                                   138089.73
TotalPayBenefits                           138089.73
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3276, dtype: object)
(3277, Id                           3278
EmployeeName         MARIO ROMERO
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              12930.02
OtherPay                 19219.44
Benefits                      NaN
TotalPay                138084.13
TotalPayBenefits        138084.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3277, dtype: object)
(3278, Id                              3279
EmployeeName           LINDA MUNGUIA
JobTitle            REGISTERED NURSE
BasePay                     126251.4
OvertimePay                   6593.4
OtherPay                     5235.68
Benefits                         NaN
TotalPay                   138080.48
TotalPayBenefits           138080.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3278, dtype: object)
(3279, Id                                                3280
EmployeeName                              DAVID KAMITA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130457.8
OvertimePay                                    2498.28
OtherPay                                        5107.8
Benefits                                           NaN
TotalPay                                     138063.88
TotalPayBenefits                             138063.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3279, dtype: object)
(3280, Id                                                3281
EmployeeName                               DAVID ADAME
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    50820.0
OtherPay                                       9659.55
Benefits                                           NaN
TotalPay                                     138059.95
TotalPayBenefits                             138059.95
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3280, dtype: object)
(3281, Id                                    3282
EmployeeName                 HEATHER BUREN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                        4379.05
OtherPay                          11250.07
Benefits                               NaN
TotalPay                         138034.12
TotalPayBenefits                 138034.12
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3281, dtype: object)
(3282, Id                             3283
EmployeeName            BERNARD TSE
JobTitle            SENIOR ENGINEER
BasePay                   138029.06
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  138029.06
TotalPayBenefits          138029.06
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3282, dtype: object)
(3283, Id                                       3284
EmployeeName                    BRITTON SMITH
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                             127886.02
OvertimePay                               0.0
OtherPay                             10137.82
Benefits                                  NaN
TotalPay                            138023.84
TotalPayBenefits                    138023.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3283, dtype: object)
(3284, Id                               3285
EmployeeName        KELVIN SANDERS JR
JobTitle             POLICE OFFICER I
BasePay                     106065.17
OvertimePay                  17892.31
OtherPay                     14061.92
Benefits                          NaN
TotalPay                     138019.4
TotalPayBenefits             138019.4
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3284, dtype: object)
(3285, Id                                 3286
EmployeeName                LISA GHOTBI
JobTitle            DEPUTY DIRECTOR III
BasePay                        138008.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       138008.2
TotalPayBenefits               138008.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3285, dtype: object)
(3286, Id                           3287
EmployeeName          FRANCES YAM
JobTitle               PHARMACIST
BasePay                  133400.0
OvertimePay               2809.54
OtherPay                  1785.59
Benefits                      NaN
TotalPay                137995.13
TotalPayBenefits        137995.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3286, dtype: object)
(3287, Id                                                               3288
EmployeeName                                            RICHARD BROWN
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     120542.46
OvertimePay                                                   5321.08
OtherPay                                                     12128.11
Benefits                                                          NaN
TotalPay                                                    137991.65
TotalPayBenefits                                            137991.65
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3287, dtype: object)
(3288, Id                                     3289
EmployeeName                      BRIAN GOE
JobTitle            SEWER REPAIR SUPERVISOR
BasePay                            93942.42
OvertimePay                         20871.8
OtherPay                            23174.9
Benefits                                NaN
TotalPay                          137989.12
TotalPayBenefits                  137989.12
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3288, dtype: object)
(3289, Id                           3290
EmployeeName           PAUL ROGER
JobTitle                  PLUMBER
BasePay                   91188.3
OvertimePay              45707.93
OtherPay                   1076.0
Benefits                      NaN
TotalPay                137972.23
TotalPayBenefits        137972.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3289, dtype: object)
(3290, Id                                                3291
EmployeeName                              MARTI ROMERO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       79353.98
OvertimePay                                   50611.73
OtherPay                                       7992.54
Benefits                                           NaN
TotalPay                                     137958.25
TotalPayBenefits                             137958.25
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3290, dtype: object)
(3291, Id                                    3292
EmployeeName                 ROBERT MILLER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                            0.0
OtherPay                          15551.58
Benefits                               NaN
TotalPay                         137956.58
TotalPayBenefits                 137956.58
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3291, dtype: object)
(3292, Id                                         3293
EmployeeName                     PATRICIA JONES
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               130144.97
OvertimePay                                 0.0
OtherPay                                7807.34
Benefits                                    NaN
TotalPay                              137952.31
TotalPayBenefits                      137952.31
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3292, dtype: object)
(3293, Id                                           3294
EmployeeName                         KEVIN JENSEN
JobTitle            DISABILITY ACCESS COORDINATOR
BasePay                                 137926.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                137926.07
TotalPayBenefits                        137926.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 3293, dtype: object)
(3294, Id                                    3295
EmployeeName                   BRENT MARKS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          120991.82
OvertimePay                        9504.31
OtherPay                           7413.04
Benefits                               NaN
TotalPay                         137909.17
TotalPayBenefits                 137909.17
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3294, dtype: object)
(3295, Id                                    3296
EmployeeName              MICHAEL HOELSKEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          120027.59
OvertimePay                         2868.9
OtherPay                          14984.98
Benefits                               NaN
TotalPay                         137881.47
TotalPayBenefits                 137881.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3295, dtype: object)
(3296, Id                                                      3297
EmployeeName                                GUILLERMO ZUNIGA
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                              88050.0
OvertimePay                                         35402.58
OtherPay                                            14421.01
Benefits                                                 NaN
TotalPay                                           137873.59
TotalPayBenefits                                   137873.59
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 3296, dtype: object)
(3297, Id                                3298
EmployeeName          LAVANTE MITCHELL
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    5884.13
OtherPay                      19570.34
Benefits                           NaN
TotalPay                     137855.56
TotalPayBenefits             137855.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3297, dtype: object)
(3298, Id                           3299
EmployeeName        DANIEL GRACIA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              12497.16
OtherPay                 19421.22
Benefits                      NaN
TotalPay                137853.04
TotalPayBenefits        137853.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3298, dtype: object)
(3299, Id                                    3300
EmployeeName                  JOHN WILKOSZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                            0.0
OtherPay                          15447.87
Benefits                               NaN
TotalPay                         137852.87
TotalPayBenefits                 137852.87
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3299, dtype: object)
(3300, Id                              3301
EmployeeName            JOSEPH MARTE
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                 19175.47
OtherPay                    12612.24
Benefits                         NaN
TotalPay                   137833.78
TotalPayBenefits           137833.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3300, dtype: object)
(3301, Id                              3302
EmployeeName             LEE WOLFLEY
JobTitle            REGISTERED NURSE
BasePay                    119009.51
OvertimePay                  6781.43
OtherPay                     12030.8
Benefits                         NaN
TotalPay                   137821.74
TotalPayBenefits           137821.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3301, dtype: object)
(3302, Id                           3303
EmployeeName            HAEJU KIM
JobTitle               PHARMACIST
BasePay                 133399.01
OvertimePay               2754.42
OtherPay                  1666.11
Benefits                      NaN
TotalPay                137819.54
TotalPayBenefits        137819.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3302, dtype: object)
(3303, Id                                       3304
EmployeeName              ANDREA RUIZ-ESQUIDE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             136927.23
OvertimePay                               0.0
OtherPay                               887.24
Benefits                                  NaN
TotalPay                            137814.47
TotalPayBenefits                    137814.47
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3303, dtype: object)
(3304, Id                               3305
EmployeeName            JOHN ST CROIX
JobTitle            DEPARTMENT HEAD I
BasePay                      137812.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     137812.8
TotalPayBenefits             137812.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3304, dtype: object)
(3305, Id                                            3306
EmployeeName                       RICARDO GALANDE
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123170.08
OvertimePay                                1434.67
OtherPay                                  13201.47
Benefits                                       NaN
TotalPay                                 137806.22
TotalPayBenefits                         137806.22
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3305, dtype: object)
(3306, Id                              3307
EmployeeName         PATRICK GRIFFIN
JobTitle            POLICE OFFICER I
BasePay                    106026.95
OvertimePay                 17650.34
OtherPay                    14090.56
Benefits                         NaN
TotalPay                   137767.85
TotalPayBenefits           137767.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3306, dtype: object)
(3307, Id                                              3308
EmployeeName                         MELONEE ALVAREZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.82
OvertimePay                                  4807.23
OtherPay                                     2491.74
Benefits                                         NaN
TotalPay                                   137756.79
TotalPayBenefits                           137756.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3307, dtype: object)
(3308, Id                                 3309
EmployeeName        ELIZABETH VALDELLON
JobTitle             TRANSIT SUPERVISOR
BasePay                         91583.8
OvertimePay                    39650.42
OtherPay                         6512.2
Benefits                            NaN
TotalPay                      137746.42
TotalPayBenefits              137746.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3308, dtype: object)
(3309, Id                           3310
EmployeeName             ELMEN WU
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              14531.64
OtherPay                 17272.99
Benefits                      NaN
TotalPay                137739.32
TotalPayBenefits        137739.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3309, dtype: object)
(3310, Id                                             3311
EmployeeName                 KATHERINE SCHWARZ-CHOY
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128147.09
OvertimePay                                 6003.25
OtherPay                                    3585.69
Benefits                                        NaN
TotalPay                                  137736.03
TotalPayBenefits                          137736.03
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3310, dtype: object)
(3311, Id                                                  3312
EmployeeName                                PETER CONIDI
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                          74932.0
OvertimePay                                     50641.24
OtherPay                                        12162.41
Benefits                                             NaN
TotalPay                                       137735.65
TotalPayBenefits                               137735.65
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 3311, dtype: object)
(3312, Id                                             3313
EmployeeName                           AILEEN BRADY
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128146.81
OvertimePay                                 6122.33
OtherPay                                    3453.01
Benefits                                        NaN
TotalPay                                  137722.15
TotalPayBenefits                          137722.15
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3312, dtype: object)
(3313, Id                                3314
EmployeeName                 MARC CHAN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   18748.74
OtherPay                       6531.92
Benefits                           NaN
TotalPay                     137702.11
TotalPayBenefits             137702.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3313, dtype: object)
(3314, Id                           3315
EmployeeName         WILLA ORTEGA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              14363.97
OtherPay                 17396.38
Benefits                      NaN
TotalPay                137695.01
TotalPayBenefits        137695.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3314, dtype: object)
(3315, Id                                              3316
EmployeeName                            GREGORY DARE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.96
OvertimePay                                  1850.24
OtherPay                                      5377.7
Benefits                                         NaN
TotalPay                                    137685.9
TotalPayBenefits                            137685.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3315, dtype: object)
(3316, Id                                    3317
EmployeeName               ROBERT JONES II
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                            0.0
OtherPay                          15277.84
Benefits                               NaN
TotalPay                         137682.83
TotalPayBenefits                 137682.83
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3316, dtype: object)
(3317, Id                                    3318
EmployeeName                   JOEL NEWTON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.97
OvertimePay                            0.0
OtherPay                          15277.85
Benefits                               NaN
TotalPay                         137682.82
TotalPayBenefits                 137682.82
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3317, dtype: object)
(3318, Id                                                3319
EmployeeName                             ROBERT SUDANO
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       42256.61
OvertimePay                                   24634.22
OtherPay                                      70791.84
Benefits                                           NaN
TotalPay                                     137682.67
TotalPayBenefits                             137682.67
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3318, dtype: object)
(3319, Id                                       3320
EmployeeName                     LEO MARTINEZ
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              104049.4
OvertimePay                          21727.38
OtherPay                             11888.58
Benefits                                  NaN
TotalPay                            137665.36
TotalPayBenefits                    137665.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3319, dtype: object)
(3320, Id                                              3321
EmployeeName                            DANIEL LAVAL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115986.98
OvertimePay                                  8910.49
OtherPay                                    12741.71
Benefits                                         NaN
TotalPay                                   137639.18
TotalPayBenefits                           137639.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3320, dtype: object)
(3321, Id                                3322
EmployeeName            MAUREEN BARRON
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    5789.79
OtherPay                      19422.73
Benefits                           NaN
TotalPay                     137633.96
TotalPayBenefits             137633.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3321, dtype: object)
(3322, Id                                3323
EmployeeName               JACOB FEGAN
JobTitle            POLICE OFFICER III
BasePay                      112380.76
OvertimePay                    7221.12
OtherPay                      18030.74
Benefits                           NaN
TotalPay                     137632.62
TotalPayBenefits             137632.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3322, dtype: object)
(3323, Id                                3324
EmployeeName               JOHN KEESOR
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   14918.49
OtherPay                      10308.74
Benefits                           NaN
TotalPay                     137628.31
TotalPayBenefits             137628.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3323, dtype: object)
(3324, Id                                         3325
EmployeeName                      MARK HARDEMAN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               122907.53
OvertimePay                              102.81
OtherPay                               14588.99
Benefits                                    NaN
TotalPay                              137599.33
TotalPayBenefits                      137599.33
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3324, dtype: object)
(3325, Id                              3326
EmployeeName            JAIME OLIVAR
JobTitle            TRANSIT OPERATOR
BasePay                     68834.99
OvertimePay                 62014.57
OtherPay                     6744.78
Benefits                         NaN
TotalPay                   137594.34
TotalPayBenefits           137594.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3325, dtype: object)
(3326, Id                              3327
EmployeeName          CARLOS CORDOVA
JobTitle            POLICE OFFICER I
BasePay                    106064.67
OvertimePay                 23578.89
OtherPay                     7944.44
Benefits                         NaN
TotalPay                    137588.0
TotalPayBenefits            137588.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3326, dtype: object)
(3327, Id                                  3328
EmployeeName               HUBERT HUNTER
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121630.01
OvertimePay                      1535.84
OtherPay                        14408.17
Benefits                             NaN
TotalPay                       137574.02
TotalPayBenefits               137574.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3327, dtype: object)
(3328, Id                           3329
EmployeeName           BARRY WONG
JobTitle              FIREFIGHTER
BasePay                 110468.86
OvertimePay              11500.65
OtherPay                 15586.28
Benefits                      NaN
TotalPay                137555.79
TotalPayBenefits        137555.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3328, dtype: object)
(3329, Id                           3330
EmployeeName            EMIL CUAN
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              15298.86
OtherPay                 16313.33
Benefits                      NaN
TotalPay                137546.84
TotalPayBenefits        137546.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3329, dtype: object)
(3330, Id                                                         3331
EmployeeName                                         JOHN CRUDO
JobTitle            ASSISTANT INSPECTOR III (POLICE DEPARTMENT)
BasePay                                               130476.29
OvertimePay                                             4067.19
OtherPay                                                2959.41
Benefits                                                    NaN
TotalPay                                              137502.89
TotalPayBenefits                                      137502.89
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3330, dtype: object)
(3331, Id                                       3332
EmployeeName                 STEPHANIE STUART
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             137500.16
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            137500.16
TotalPayBenefits                    137500.16
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3331, dtype: object)
(3332, Id                                   3333
EmployeeName        HECTOR GARCIA-MORALES
JobTitle                 POLICE OFFICER I
BasePay                         106065.18
OvertimePay                      17941.89
OtherPay                         13491.49
Benefits                              NaN
TotalPay                        137498.56
TotalPayBenefits                137498.56
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3332, dtype: object)
(3333, Id                           3334
EmployeeName            JACK CHIN
JobTitle                MANAGER V
BasePay                 137484.97
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                137484.97
TotalPayBenefits        137484.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3333, dtype: object)
(3334, Id                                3335
EmployeeName              GLENN SHERRY
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    5104.59
OtherPay                      19972.03
Benefits                           NaN
TotalPay                     137477.71
TotalPayBenefits             137477.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3334, dtype: object)
(3335, Id                                                3336
EmployeeName                       JOHN EDWARD HERBERT
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77970.83
OvertimePay                                   51262.84
OtherPay                                       8235.74
Benefits                                           NaN
TotalPay                                     137469.41
TotalPayBenefits                             137469.41
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3335, dtype: object)
(3336, Id                                    3337
EmployeeName              JAMES KUCHARSZKY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          119704.73
OvertimePay                        9052.11
OtherPay                           8706.83
Benefits                               NaN
TotalPay                         137463.67
TotalPayBenefits                 137463.67
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3336, dtype: object)
(3337, Id                                       3338
EmployeeName                      EVYN SHOMER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             137462.82
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            137462.82
TotalPayBenefits                    137462.82
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3337, dtype: object)
(3338, Id                              3339
EmployeeName         OSMUNDO HURTADO
JobTitle            REGISTERED NURSE
BasePay                    124852.76
OvertimePay                  7774.61
OtherPay                     4826.59
Benefits                         NaN
TotalPay                   137453.96
TotalPayBenefits           137453.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3338, dtype: object)
(3339, Id                                         3340
EmployeeName                       SHANE MCCALL
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               137445.26
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              137445.26
TotalPayBenefits                      137445.26
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3339, dtype: object)
(3340, Id                                                         3341
EmployeeName                                        VICTOR SIAO
JobTitle            ASSISTANT ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                 92552.8
OvertimePay                                            39400.34
OtherPay                                                5483.42
Benefits                                                    NaN
TotalPay                                              137436.56
TotalPayBenefits                                      137436.56
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3340, dtype: object)
(3341, Id                                3342
EmployeeName                KELVIN TSO
JobTitle            POLICE OFFICER III
BasePay                      117324.05
OvertimePay                   11701.06
OtherPay                       8408.89
Benefits                           NaN
TotalPay                      137434.0
TotalPayBenefits              137434.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3341, dtype: object)
(3342, Id                           3343
EmployeeName         HARALD MATEJ
JobTitle                MANAGER V
BasePay                 131086.28
OvertimePay                   0.0
OtherPay                  6321.05
Benefits                      NaN
TotalPay                137407.33
TotalPayBenefits        137407.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3342, dtype: object)
(3343, Id                                3344
EmployeeName        HERMAN LUEDTKE III
JobTitle             POLICE OFFICER II
BasePay                      108138.55
OvertimePay                   25643.13
OtherPay                       3618.54
Benefits                           NaN
TotalPay                     137400.22
TotalPayBenefits             137400.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3343, dtype: object)
(3344, Id                              3345
EmployeeName            MARINO MONES
JobTitle            REGISTERED NURSE
BasePay                    112722.72
OvertimePay                   7692.3
OtherPay                     16977.5
Benefits                         NaN
TotalPay                   137392.52
TotalPayBenefits           137392.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3344, dtype: object)
(3345, Id                                              3346
EmployeeName                         ROBERT PADRONES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.93
OvertimePay                                   2871.3
OtherPay                                     4036.85
Benefits                                         NaN
TotalPay                                   137366.08
TotalPayBenefits                           137366.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3345, dtype: object)
(3346, Id                                                               3347
EmployeeName                                             SAMSON ASRAT
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89815.59
OvertimePay                                                  46346.01
OtherPay                                                      1196.72
Benefits                                                          NaN
TotalPay                                                    137358.32
TotalPayBenefits                                            137358.32
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3346, dtype: object)
(3347, Id                                          3348
EmployeeName                       COLM CONEFREY
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101641.81
OvertimePay                             29063.88
OtherPay                                 6647.66
Benefits                                     NaN
TotalPay                               137353.35
TotalPayBenefits                       137353.35
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3347, dtype: object)
(3348, Id                           3349
EmployeeName         JACALYN FONG
JobTitle               MANAGER IV
BasePay                  135124.4
OvertimePay                   0.0
OtherPay                  2228.69
Benefits                      NaN
TotalPay                137353.09
TotalPayBenefits        137353.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3348, dtype: object)
(3349, Id                                  3350
EmployeeName              IMELDA JOHNSON
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.02
OvertimePay                      6240.27
OtherPay                         9480.22
Benefits                             NaN
TotalPay                       137348.51
TotalPayBenefits               137348.51
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3349, dtype: object)
(3350, Id                                                3351
EmployeeName                        MARTIN BASTIANI JR
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                        0.0
OtherPay                                       6871.56
Benefits                                           NaN
TotalPay                                     137347.96
TotalPayBenefits                             137347.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3350, dtype: object)
(3351, Id                                                               3352
EmployeeName                                            BRIAN BALLARD
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126968.11
OvertimePay                                                       0.0
OtherPay                                                     10373.02
Benefits                                                          NaN
TotalPay                                                    137341.13
TotalPayBenefits                                            137341.13
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3351, dtype: object)
(3352, Id                                3353
EmployeeName                MIKE BOLTE
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   14946.56
OtherPay                       9969.76
Benefits                           NaN
TotalPay                     137337.78
TotalPayBenefits             137337.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3352, dtype: object)
(3353, Id                                3354
EmployeeName        CYNTHIA GAABUCAYAN
JobTitle              REGISTERED NURSE
BasePay                       125518.8
OvertimePay                    6288.15
OtherPay                       5514.95
Benefits                           NaN
TotalPay                      137321.9
TotalPayBenefits              137321.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3353, dtype: object)
(3354, Id                               3355
EmployeeName              THOMAS FONG
JobTitle            POLICE OFFICER II
BasePay                     110203.19
OvertimePay                   7492.93
OtherPay                     19623.46
Benefits                          NaN
TotalPay                    137319.58
TotalPayBenefits            137319.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3354, dtype: object)
(3355, Id                                               3356
EmployeeName                                LONG DIEP
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   35618.4
OtherPay                                       2682.0
Benefits                                          NaN
TotalPay                                     137314.8
TotalPayBenefits                             137314.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3355, dtype: object)
(3356, Id                                3357
EmployeeName            TIMOTHY DALTON
JobTitle            POLICE OFFICER III
BasePay                      112411.23
OvertimePay                    3078.76
OtherPay                      21820.19
Benefits                           NaN
TotalPay                     137310.18
TotalPayBenefits             137310.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3356, dtype: object)
(3357, Id                                 3358
EmployeeName               PEDRO SAPIDA
JobTitle            IS PROJECT DIRECTOR
BasePay                       129441.59
OvertimePay                         0.0
OtherPay                        7866.31
Benefits                            NaN
TotalPay                       137307.9
TotalPayBenefits               137307.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3357, dtype: object)
(3358, Id                               3359
EmployeeName             DANIEL REYES
JobTitle            POLICE OFFICER II
BasePay                     104910.01
OvertimePay                    4890.3
OtherPay                     27457.92
Benefits                          NaN
TotalPay                    137258.23
TotalPayBenefits            137258.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3358, dtype: object)
(3359, Id                             3360
EmployeeName        ANNIE HODDINOTT
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                 7260.11
OtherPay                   24058.41
Benefits                        NaN
TotalPay                  137253.21
TotalPayBenefits          137253.21
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3359, dtype: object)
(3360, Id                               3361
EmployeeName        ROBERT HARRIS III
JobTitle               DEPUTY SHERIFF
BasePay                      86798.25
OvertimePay                   37622.5
OtherPay                      12831.7
Benefits                          NaN
TotalPay                    137252.45
TotalPayBenefits            137252.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3360, dtype: object)
(3361, Id                                3362
EmployeeName         DONALD JACKSON II
JobTitle            POLICE OFFICER III
BasePay                      111083.08
OvertimePay                    6706.11
OtherPay                      19457.37
Benefits                           NaN
TotalPay                     137246.56
TotalPayBenefits             137246.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3361, dtype: object)
(3362, Id                           3363
EmployeeName        MARIA NEWPORT
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                 137242.5
TotalPayBenefits         137242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3362, dtype: object)
(3363, Id                           3364
EmployeeName        KELLEY CAPONE
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                 137242.5
TotalPayBenefits         137242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3363, dtype: object)
(3364, Id                                3365
EmployeeName               LINDA SIMON
JobTitle            DEPUTY DIRECTOR II
BasePay                       132242.5
OvertimePay                        0.0
OtherPay                        5000.0
Benefits                           NaN
TotalPay                      137242.5
TotalPayBenefits              137242.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3364, dtype: object)
(3365, Id                                3366
EmployeeName              TONY ROCKETT
JobTitle            POLICE OFFICER III
BasePay                      112062.23
OvertimePay                    7513.84
OtherPay                      17661.45
Benefits                           NaN
TotalPay                     137237.52
TotalPayBenefits             137237.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3365, dtype: object)
(3366, Id                              3367
EmployeeName        TERESITA BALUYUT
JobTitle               NURSE MANAGER
BasePay                      86716.0
OvertimePay                      0.0
OtherPay                    50501.57
Benefits                         NaN
TotalPay                   137217.57
TotalPayBenefits           137217.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3366, dtype: object)
(3367, Id                              3368
EmployeeName            BRIAN GUINEY
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                 17067.58
OtherPay                    14100.36
Benefits                         NaN
TotalPay                    137194.9
TotalPayBenefits            137194.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3367, dtype: object)
(3368, Id                           3369
EmployeeName         STEVE MULLER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              13989.13
OtherPay                 17263.66
Benefits                      NaN
TotalPay                137187.45
TotalPayBenefits        137187.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3368, dtype: object)
(3369, Id                                                3370
EmployeeName                                JOHN KEANE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                    4391.64
OtherPay                                       2311.46
Benefits                                           NaN
TotalPay                                     137184.66
TotalPayBenefits                             137184.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3369, dtype: object)
(3370, Id                                    3371
EmployeeName                  TIMOTHY HOWE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                          98.74
OtherPay                           14672.9
Benefits                               NaN
TotalPay                         137176.64
TotalPayBenefits                 137176.64
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3370, dtype: object)
(3371, Id                               3372
EmployeeName        CHRISTOPHER SPEAR
JobTitle                  FIREFIGHTER
BasePay                     105934.64
OvertimePay                  16176.38
OtherPay                     15053.58
Benefits                          NaN
TotalPay                     137164.6
TotalPayBenefits             137164.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3371, dtype: object)
(3372, Id                           3373
EmployeeName         JOHN FOGARTY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              17366.95
OtherPay                 13859.12
Benefits                      NaN
TotalPay                137160.74
TotalPayBenefits        137160.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3372, dtype: object)
(3373, Id                               3374
EmployeeName         PATRICK ROBINSON
JobTitle            POLICE OFFICER II
BasePay                     110242.95
OvertimePay                  12926.88
OtherPay                     13990.83
Benefits                          NaN
TotalPay                    137160.66
TotalPayBenefits            137160.66
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3373, dtype: object)
(3374, Id                              3375
EmployeeName           MICHAEL ROXAS
JobTitle            REGISTERED NURSE
BasePay                    111458.94
OvertimePay                  6298.38
OtherPay                    19402.73
Benefits                         NaN
TotalPay                   137160.05
TotalPayBenefits           137160.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3374, dtype: object)
(3375, Id                                                               3376
EmployeeName                                             BARRY GEHRET
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89815.61
OvertimePay                                                  36600.65
OtherPay                                                     10739.56
Benefits                                                          NaN
TotalPay                                                    137155.82
TotalPayBenefits                                            137155.82
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3375, dtype: object)
(3376, Id                                 3377
EmployeeName              WAYNE PARINAS
JobTitle            COURT ADMINISTRATOR
BasePay                        134527.6
OvertimePay                         0.0
OtherPay                         2627.5
Benefits                            NaN
TotalPay                       137155.1
TotalPayBenefits               137155.1
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3376, dtype: object)
(3377, Id                                                               3378
EmployeeName                                         MARCIA DEERFIELD
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89844.41
OvertimePay                                                  39656.27
OtherPay                                                      7636.11
Benefits                                                          NaN
TotalPay                                                    137136.79
TotalPayBenefits                                            137136.79
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3377, dtype: object)
(3378, Id                               3379
EmployeeName        MARILYN MAGLASANG
JobTitle             REGISTERED NURSE
BasePay                      119496.0
OvertimePay                   6066.72
OtherPay                     11559.71
Benefits                          NaN
TotalPay                    137122.43
TotalPayBenefits            137122.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3378, dtype: object)
(3379, Id                                                3380
EmployeeName                           PATRICIA CORREA
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                       33822.24
OvertimePay                                   14555.83
OtherPay                                      88737.78
Benefits                                           NaN
TotalPay                                     137115.85
TotalPayBenefits                             137115.85
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3379, dtype: object)
(3380, Id                                              3381
EmployeeName                              ARRAN PERA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.58
OvertimePay                                  4873.38
OtherPay                                     1745.78
Benefits                                         NaN
TotalPay                                   137100.74
TotalPayBenefits                           137100.74
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3380, dtype: object)
(3381, Id                                  3382
EmployeeName           CHARLES FLEWELLEN
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.22
OvertimePay                      6266.12
OtherPay                         9638.97
Benefits                             NaN
TotalPay                       137065.31
TotalPayBenefits               137065.31
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3381, dtype: object)
(3382, Id                              3383
EmployeeName         ROBERT DUFRESNE
JobTitle            TRANSIT OPERATOR
BasePay                     67077.12
OvertimePay                  63390.8
OtherPay                     6585.84
Benefits                         NaN
TotalPay                   137053.76
TotalPayBenefits           137053.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3382, dtype: object)
(3383, Id                                3384
EmployeeName             GARY FAGUNDES
JobTitle            POLICE OFFICER III
BasePay                       96945.01
OvertimePay                    5763.58
OtherPay                      34343.96
Benefits                           NaN
TotalPay                     137052.55
TotalPayBenefits             137052.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3383, dtype: object)
(3384, Id                           3385
EmployeeName        WILLIAM YEUNG
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               13509.8
OtherPay                 17605.35
Benefits                      NaN
TotalPay                 137049.8
TotalPayBenefits         137049.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3384, dtype: object)
(3385, Id                                              3386
EmployeeName                             JULIE LYNCH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.27
OvertimePay                                  1922.38
OtherPay                                      4581.7
Benefits                                         NaN
TotalPay                                   136985.35
TotalPayBenefits                           136985.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3385, dtype: object)
(3386, Id                                       3387
EmployeeName                       JILL DAYAL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             136970.91
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            136970.91
TotalPayBenefits                    136970.91
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3386, dtype: object)
(3387, Id                           3388
EmployeeName           TYRONE JUE
JobTitle               MANAGER VI
BasePay                 136952.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                136952.03
TotalPayBenefits        136952.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3387, dtype: object)
(3388, Id                                3389
EmployeeName              JORGE CHAVEZ
JobTitle            TRANSIT SUPERVISOR
BasePay                       88062.01
OvertimePay                   46674.73
OtherPay                        2206.8
Benefits                           NaN
TotalPay                     136943.54
TotalPayBenefits             136943.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3388, dtype: object)
(3389, Id                              3390
EmployeeName         NOREEN DUNLEAVY
JobTitle            REGISTERED NURSE
BasePay                     126129.3
OvertimePay                  2408.41
OtherPay                     8405.63
Benefits                         NaN
TotalPay                   136943.34
TotalPayBenefits           136943.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3389, dtype: object)
(3390, Id                                 3391
EmployeeName             EPHREM NAIZGHI
JobTitle            IS PROJECT DIRECTOR
BasePay                       130618.27
OvertimePay                         0.0
OtherPay                        6320.83
Benefits                            NaN
TotalPay                       136939.1
TotalPayBenefits               136939.1
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3390, dtype: object)
(3391, Id                               3392
EmployeeName            TROY CARRASCO
JobTitle            POLICE OFFICER II
BasePay                     110242.81
OvertimePay                   7242.87
OtherPay                     19447.85
Benefits                          NaN
TotalPay                    136933.53
TotalPayBenefits            136933.53
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3391, dtype: object)
(3392, Id                              3393
EmployeeName         MYRNA MANGACCAT
JobTitle            REGISTERED NURSE
BasePay                     124053.6
OvertimePay                  7949.93
OtherPay                     4925.18
Benefits                         NaN
TotalPay                   136928.71
TotalPayBenefits           136928.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3392, dtype: object)
(3393, Id                              3394
EmployeeName              SEAN FROST
JobTitle            POLICE OFFICER I
BasePay                    106046.03
OvertimePay                 10725.93
OtherPay                    20141.71
Benefits                         NaN
TotalPay                   136913.67
TotalPayBenefits           136913.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3393, dtype: object)
(3394, Id                                     3395
EmployeeName                    JEFF STEVEN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.59
OvertimePay                             0.0
OtherPay                            9228.22
Benefits                                NaN
TotalPay                          136905.81
TotalPayBenefits                  136905.81
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3394, dtype: object)
(3395, Id                           3396
EmployeeName        JAMES UNTALAN
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              16020.66
OtherPay                 14931.03
Benefits                      NaN
TotalPay                136886.36
TotalPayBenefits        136886.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3395, dtype: object)
(3396, Id                                3397
EmployeeName            KATHLEEN LEYVA
JobTitle            NURSE PRACTITIONER
BasePay                      135404.99
OvertimePay                        0.0
OtherPay                        1475.0
Benefits                           NaN
TotalPay                     136879.99
TotalPayBenefits             136879.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3396, dtype: object)
(3397, Id                                3398
EmployeeName           JOHN CENTURIONI
JobTitle            POLICE OFFICER III
BasePay                      112401.04
OvertimePay                    7491.82
OtherPay                      16980.49
Benefits                           NaN
TotalPay                     136873.35
TotalPayBenefits             136873.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3397, dtype: object)
(3398, Id                           3399
EmployeeName              KAM YAN
JobTitle               PHARMACIST
BasePay                 133387.52
OvertimePay               1820.58
OtherPay                   1664.0
Benefits                      NaN
TotalPay                 136872.1
TotalPayBenefits         136872.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3398, dtype: object)
(3399, Id                                3400
EmployeeName             BRIAN NANNERY
JobTitle            POLICE OFFICER III
BasePay                       117262.9
OvertimePay                   11799.43
OtherPay                       7794.59
Benefits                           NaN
TotalPay                     136856.92
TotalPayBenefits             136856.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3399, dtype: object)
(3400, Id                               3401
EmployeeName           PHILLIP GORDON
JobTitle            POLICE OFFICER II
BasePay                     106040.29
OvertimePay                   6945.06
OtherPay                     23845.48
Benefits                          NaN
TotalPay                    136830.83
TotalPayBenefits            136830.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3400, dtype: object)
(3401, Id                                         3402
EmployeeName                         DAT TRUONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                             3724.36
OtherPay                                 9974.3
Benefits                                    NaN
TotalPay                              136803.69
TotalPayBenefits                      136803.69
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3401, dtype: object)
(3402, Id                                       3403
EmployeeName                     NORA BRENNAN
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             136049.11
OvertimePay                            500.34
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            136799.45
TotalPayBenefits                    136799.45
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3402, dtype: object)
(3403, Id                                                3404
EmployeeName                             SUSAN BACHMAN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.54
OvertimePay                                    2641.85
OtherPay                                       3671.19
Benefits                                           NaN
TotalPay                                     136794.58
TotalPayBenefits                             136794.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3403, dtype: object)
(3404, Id                                                3405
EmployeeName                           MATTHEW KRIMSKY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.94
OvertimePay                                    2903.16
OtherPay                                       3429.34
Benefits                                           NaN
TotalPay                                     136790.44
TotalPayBenefits                             136790.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3404, dtype: object)
(3405, Id                              3406
EmployeeName            HUONG NGUYEN
JobTitle            REGISTERED NURSE
BasePay                    124816.73
OvertimePay                  6815.62
OtherPay                     5100.41
Benefits                         NaN
TotalPay                   136732.76
TotalPayBenefits           136732.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3405, dtype: object)
(3406, Id                              3407
EmployeeName           MYRNA BENNETT
JobTitle            REGISTERED NURSE
BasePay                    112856.22
OvertimePay                   5052.6
OtherPay                    18813.03
Benefits                         NaN
TotalPay                   136721.85
TotalPayBenefits           136721.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3406, dtype: object)
(3407, Id                           3408
EmployeeName        MATTHEW SCOLA
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              12909.16
OtherPay                 17868.04
Benefits                      NaN
TotalPay                136711.88
TotalPayBenefits        136711.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3407, dtype: object)
(3408, Id                           3409
EmployeeName        FLYNN BRADLEY
JobTitle              MANAGER III
BasePay                 128625.52
OvertimePay                   0.0
OtherPay                  8079.09
Benefits                      NaN
TotalPay                136704.61
TotalPayBenefits        136704.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3408, dtype: object)
(3409, Id                                3410
EmployeeName             FRANCIS HAGAN
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   15025.16
OtherPay                       9250.04
Benefits                           NaN
TotalPay                     136696.62
TotalPayBenefits             136696.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3409, dtype: object)
(3410, Id                                                3411
EmployeeName                          MICHAEL HAMILTON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.71
OvertimePay                                    2730.75
OtherPay                                       3487.12
Benefits                                           NaN
TotalPay                                     136694.58
TotalPayBenefits                             136694.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3410, dtype: object)
(3411, Id                              3412
EmployeeName               VICKI LEE
JobTitle            REGISTERED NURSE
BasePay                    114090.24
OvertimePay                  5238.08
OtherPay                    17357.86
Benefits                         NaN
TotalPay                   136686.18
TotalPayBenefits           136686.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3411, dtype: object)
(3412, Id                              3413
EmployeeName           ARCELI PASALO
JobTitle            REGISTERED NURSE
BasePay                    123240.01
OvertimePay                   7110.0
OtherPay                     6334.98
Benefits                         NaN
TotalPay                   136684.99
TotalPayBenefits           136684.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3412, dtype: object)
(3413, Id                               3414
EmployeeName            THOMAS MINKEL
JobTitle            POLICE OFFICER II
BasePay                     107579.23
OvertimePay                  14547.71
OtherPay                      14554.5
Benefits                          NaN
TotalPay                    136681.44
TotalPayBenefits            136681.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3413, dtype: object)
(3414, Id                                     3415
EmployeeName            SEVERINO CARANTO-JR
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           136679.61
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          136679.61
TotalPayBenefits                  136679.61
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3414, dtype: object)
(3415, Id                           3416
EmployeeName        MATTHEW ADAMS
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              16350.48
OtherPay                  14393.4
Benefits                      NaN
TotalPay                136678.54
TotalPayBenefits        136678.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3415, dtype: object)
(3416, Id                                    3417
EmployeeName              JAMES MULHOLLAND
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          108382.74
OvertimePay                       16335.58
OtherPay                          11941.48
Benefits                               NaN
TotalPay                          136659.8
TotalPayBenefits                  136659.8
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3416, dtype: object)
(3417, Id                                3418
EmployeeName               BRIAN PERRY
JobTitle            POLICE OFFICER III
BasePay                      112417.07
OvertimePay                   14142.18
OtherPay                      10099.64
Benefits                           NaN
TotalPay                     136658.89
TotalPayBenefits             136658.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3417, dtype: object)
(3418, Id                               3419
EmployeeName             JOSEPH PORTA
JobTitle            POLICE OFFICER II
BasePay                     110242.89
OvertimePay                  11782.17
OtherPay                     14610.72
Benefits                          NaN
TotalPay                    136635.78
TotalPayBenefits            136635.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3418, dtype: object)
(3419, Id                                    3420
EmployeeName                MARIFI ESTEVES
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          110866.13
OvertimePay                       11893.22
OtherPay                          13845.42
Benefits                               NaN
TotalPay                         136604.77
TotalPayBenefits                 136604.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3419, dtype: object)
(3420, Id                                3421
EmployeeName               DAVID PARRY
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    5967.58
OtherPay                      18207.48
Benefits                           NaN
TotalPay                     136576.13
TotalPayBenefits             136576.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3420, dtype: object)
(3421, Id                                3422
EmployeeName              ROBERT LEUNG
JobTitle            POLICE OFFICER III
BasePay                       87241.27
OvertimePay                   23702.96
OtherPay                      25623.18
Benefits                           NaN
TotalPay                     136567.41
TotalPayBenefits             136567.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3421, dtype: object)
(3422, Id                                                3423
EmployeeName                            JOSEPH CLEMONS
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.83
OvertimePay                                      581.6
OtherPay                                       5526.25
Benefits                                           NaN
TotalPay                                     136565.68
TotalPayBenefits                             136565.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3422, dtype: object)
(3423, Id                              3424
EmployeeName            ROEL LAPITAN
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                  8158.63
OtherPay                    19358.11
Benefits                         NaN
TotalPay                   136560.74
TotalPayBenefits           136560.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3423, dtype: object)
(3424, Id                             3425
EmployeeName        BRENDAN CORMACK
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                11440.62
OtherPay                   19166.62
Benefits                        NaN
TotalPay                  136541.89
TotalPayBenefits          136541.89
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3424, dtype: object)
(3425, Id                              3426
EmployeeName         MIGUEL GONZALEZ
JobTitle            POLICE OFFICER I
BasePay                    106065.16
OvertimePay                 14794.02
OtherPay                    15662.75
Benefits                         NaN
TotalPay                   136521.93
TotalPayBenefits           136521.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3425, dtype: object)
(3426, Id                                      3427
EmployeeName                    MARY BOUCHER
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            126968.09
OvertimePay                          1911.48
OtherPay                              7640.5
Benefits                                 NaN
TotalPay                           136520.07
TotalPayBenefits                   136520.07
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 3426, dtype: object)
(3427, Id                             3428
EmployeeName        HENRY SCOBLE JR
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 8133.28
OtherPay                   22424.56
Benefits                        NaN
TotalPay                  136492.51
TotalPayBenefits          136492.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3427, dtype: object)
(3428, Id                                    3429
EmployeeName        THERESA CUEVAS-BARREDO
JobTitle                  REGISTERED NURSE
BasePay                          110372.13
OvertimePay                        8634.15
OtherPay                          17481.05
Benefits                               NaN
TotalPay                         136487.33
TotalPayBenefits                 136487.33
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3428, dtype: object)
(3429, Id                                         3430
EmployeeName                      DWAYNE NEWTON
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.03
OvertimePay                             1833.56
OtherPay                                11542.3
Benefits                                    NaN
TotalPay                              136480.89
TotalPayBenefits                      136480.89
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3429, dtype: object)
(3430, Id                           3431
EmployeeName        YVETTE ORTEGA
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              16501.32
OtherPay                  14038.7
Benefits                      NaN
TotalPay                 136474.7
TotalPayBenefits         136474.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3430, dtype: object)
(3431, Id                           3432
EmployeeName           SARAH YANG
JobTitle               PHARMACIST
BasePay                 133399.08
OvertimePay               2100.28
OtherPay                    960.0
Benefits                      NaN
TotalPay                136459.36
TotalPayBenefits        136459.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3431, dtype: object)
(3432, Id                              3433
EmployeeName            ROMULO ADIAO
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                  9143.31
OtherPay                     7772.06
Benefits                         NaN
TotalPay                   136411.37
TotalPayBenefits           136411.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3432, dtype: object)
(3433, Id                                 3434
EmployeeName        KAREN TRIANDAFYLLIS
JobTitle             NURSE PRACTITIONER
BasePay                       136159.01
OvertimePay                         0.0
OtherPay                          250.0
Benefits                            NaN
TotalPay                      136409.01
TotalPayBenefits              136409.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3433, dtype: object)
(3434, Id                              3435
EmployeeName             RONIE TATAD
JobTitle            REGISTERED NURSE
BasePay                    108045.95
OvertimePay                  4669.92
OtherPay                     23682.3
Benefits                         NaN
TotalPay                   136398.17
TotalPayBenefits           136398.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3434, dtype: object)
(3435, Id                                                       3436
EmployeeName                                     DONALD JONES
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                               88001.4
OvertimePay                                          44971.51
OtherPay                                              3420.86
Benefits                                                  NaN
TotalPay                                            136393.77
TotalPayBenefits                                    136393.77
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 3435, dtype: object)
(3436, Id                           3437
EmployeeName          CAROL WYLEY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              16529.85
OtherPay                 13884.55
Benefits                      NaN
TotalPay                136349.06
TotalPayBenefits        136349.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3436, dtype: object)
(3437, Id                              3438
EmployeeName         CONSUELO MESINA
JobTitle            REGISTERED NURSE
BasePay                    125335.65
OvertimePay                  2609.88
OtherPay                     8386.84
Benefits                         NaN
TotalPay                   136332.37
TotalPayBenefits           136332.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3437, dtype: object)
(3438, Id                                3439
EmployeeName        MELISSA STEPHENSON
JobTitle               SENIOR ENGINEER
BasePay                       136331.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      136331.0
TotalPayBenefits              136331.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3438, dtype: object)
(3439, Id                              3440
EmployeeName          CHRISTINA CHAN
JobTitle            REGISTERED NURSE
BasePay                     100678.2
OvertimePay                 17073.49
OtherPay                    18572.48
Benefits                         NaN
TotalPay                   136324.17
TotalPayBenefits           136324.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3439, dtype: object)
(3440, Id                                                3441
EmployeeName                               JAMES SERNA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.93
OvertimePay                                    3612.18
OtherPay                                       2243.64
Benefits                                           NaN
TotalPay                                     136313.75
TotalPayBenefits                             136313.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3440, dtype: object)
(3441, Id                                  3442
EmployeeName        GEORGE KOUREMETIS JR
JobTitle                     FIREFIGHTER
BasePay                        105934.65
OvertimePay                     13339.83
OtherPay                        17037.21
Benefits                             NaN
TotalPay                       136311.69
TotalPayBenefits               136311.69
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3441, dtype: object)
(3442, Id                            3443
EmployeeName        MARTHA KNUTZEN
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                    4065.0
Benefits                       NaN
TotalPay                  136307.5
TotalPayBenefits          136307.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3442, dtype: object)
(3443, Id                             3444
EmployeeName             EDWARD YEE
JobTitle            SENIOR ENGINEER
BasePay                   133703.91
OvertimePay                     0.0
OtherPay                    2603.58
Benefits                        NaN
TotalPay                  136307.49
TotalPayBenefits          136307.49
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3443, dtype: object)
(3444, Id                           3445
EmployeeName          MARCIA BELL
JobTitle            LAW LIBRARIAN
BasePay                  136292.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 136292.0
TotalPayBenefits         136292.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3444, dtype: object)
(3445, Id                                     3446
EmployeeName                ENRICO BAUTISTA
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.58
OvertimePay                             0.0
OtherPay                            8596.57
Benefits                                NaN
TotalPay                          136274.15
TotalPayBenefits                  136274.15
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3445, dtype: object)
(3446, Id                                3447
EmployeeName                 JACK WOOD
JobTitle            PROJECT MANAGER II
BasePay                      136273.62
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     136273.62
TotalPayBenefits             136273.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3446, dtype: object)
(3447, Id                                              3448
EmployeeName                          JAYME CAMPBELL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115946.24
OvertimePay                                  7955.78
OtherPay                                    12370.68
Benefits                                         NaN
TotalPay                                    136272.7
TotalPayBenefits                            136272.7
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3447, dtype: object)
(3448, Id                                3449
EmployeeName               BOB PALACIO
JobTitle            DEPUTY DIRECTOR II
BasePay                       128455.2
OvertimePay                        0.0
OtherPay                       7804.42
Benefits                           NaN
TotalPay                     136259.62
TotalPayBenefits             136259.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3448, dtype: object)
(3449, Id                           3450
EmployeeName        ROBERT DENNIS
JobTitle               MANAGER II
BasePay                  128464.9
OvertimePay                   0.0
OtherPay                  7793.24
Benefits                      NaN
TotalPay                136258.14
TotalPayBenefits        136258.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3449, dtype: object)
(3450, Id                           3451
EmployeeName          ANTHONY YEE
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              12466.77
OtherPay                 17802.21
Benefits                      NaN
TotalPay                136203.63
TotalPayBenefits        136203.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3450, dtype: object)
(3451, Id                                  3452
EmployeeName            RICHARD RIDGEWAY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.55
OvertimePay                      5323.25
OtherPay                         9718.97
Benefits                             NaN
TotalPay                       136202.77
TotalPayBenefits               136202.77
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3451, dtype: object)
(3452, Id                              3453
EmployeeName           PHILIP PAPALE
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  8429.33
OtherPay                    21699.09
Benefits                         NaN
TotalPay                    136193.6
TotalPayBenefits            136193.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3452, dtype: object)
(3453, Id                                    3454
EmployeeName                 RICHARD MCCOO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           97456.71
OvertimePay                       22432.03
OtherPay                          16290.76
Benefits                               NaN
TotalPay                          136179.5
TotalPayBenefits                  136179.5
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3453, dtype: object)
(3454, Id                                              3455
EmployeeName                           DANIEL SIMONE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115925.86
OvertimePay                                  9138.35
OtherPay                                    11114.15
Benefits                                         NaN
TotalPay                                   136178.36
TotalPayBenefits                           136178.36
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3454, dtype: object)
(3455, Id                           3456
EmployeeName        MICHAEL QUINN
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              18502.76
OtherPay                 11738.96
Benefits                      NaN
TotalPay                136176.41
TotalPayBenefits        136176.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3455, dtype: object)
(3456, Id                              3457
EmployeeName            ESTELA BURNS
JobTitle            REGISTERED NURSE
BasePay                    113076.81
OvertimePay                  6410.25
OtherPay                    16675.89
Benefits                         NaN
TotalPay                   136162.95
TotalPayBenefits           136162.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3456, dtype: object)
(3457, Id                           3458
EmployeeName          EDMUND EGAN
JobTitle              MANAGER III
BasePay                 136158.89
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                136158.89
TotalPayBenefits        136158.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3457, dtype: object)
(3458, Id                                    3459
EmployeeName                     COREY YEH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        3245.29
OtherPay                          10501.61
Benefits                               NaN
TotalPay                         136151.89
TotalPayBenefits                 136151.89
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3458, dtype: object)
(3459, Id                               3460
EmployeeName        LINDA LEE-ROBBINS
JobTitle                   MANAGER IV
BasePay                     134406.99
OvertimePay                       0.0
OtherPay                      1723.83
Benefits                          NaN
TotalPay                    136130.82
TotalPayBenefits            136130.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3459, dtype: object)
(3460, Id                              3461
EmployeeName          MILAGROS SUNGA
JobTitle            REGISTERED NURSE
BasePay                    109674.13
OvertimePay                   5119.2
OtherPay                    21329.38
Benefits                         NaN
TotalPay                   136122.71
TotalPayBenefits           136122.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3460, dtype: object)
(3461, Id                                3462
EmployeeName              BARRY PARKER
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                   16497.25
OtherPay                       7219.14
Benefits                           NaN
TotalPay                     136117.45
TotalPayBenefits             136117.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3461, dtype: object)
(3462, Id                               3463
EmployeeName            JAMES RIORDAN
JobTitle            POLICE OFFICER II
BasePay                     115145.07
OvertimePay                  10481.23
OtherPay                     10489.26
Benefits                          NaN
TotalPay                    136115.56
TotalPayBenefits            136115.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3462, dtype: object)
(3463, Id                              3464
EmployeeName          LIZELLE CUENCO
JobTitle            REGISTERED NURSE
BasePay                    115144.17
OvertimePay                  5308.38
OtherPay                    15653.58
Benefits                         NaN
TotalPay                   136106.13
TotalPayBenefits           136106.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3463, dtype: object)
(3464, Id                                3465
EmployeeName               DERRICK LEE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    5396.67
OtherPay                      18287.04
Benefits                           NaN
TotalPay                     136105.15
TotalPayBenefits             136105.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3464, dtype: object)
(3465, Id                                3466
EmployeeName          FRANCES WILLIAMS
JobTitle            POLICE OFFICER III
BasePay                      112421.39
OvertimePay                    3152.37
OtherPay                      20526.95
Benefits                           NaN
TotalPay                     136100.71
TotalPayBenefits             136100.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3465, dtype: object)
(3466, Id                                3467
EmployeeName             TERENCE CAREY
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   10193.98
OtherPay                      13461.84
Benefits                           NaN
TotalPay                     136077.27
TotalPayBenefits             136077.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3466, dtype: object)
(3467, Id                                3468
EmployeeName               DONALD WEST
JobTitle            POLICE OFFICER III
BasePay                      112411.22
OvertimePay                      973.1
OtherPay                      22687.19
Benefits                           NaN
TotalPay                     136071.51
TotalPayBenefits             136071.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3467, dtype: object)
(3468, Id                           3469
EmployeeName          NORMAN WONG
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               9678.85
OtherPay                 20453.83
Benefits                      NaN
TotalPay                136067.33
TotalPayBenefits        136067.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3468, dtype: object)
(3469, Id                              3470
EmployeeName          JOSEPH SHELLEY
JobTitle            POLICE OFFICER I
BasePay                    106065.07
OvertimePay                  6054.38
OtherPay                     23940.0
Benefits                         NaN
TotalPay                   136059.45
TotalPayBenefits           136059.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3469, dtype: object)
(3470, Id                               3471
EmployeeName        CYNTHIA GOLDSTEIN
JobTitle            DEPARTMENT HEAD I
BasePay                     136058.99
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    136058.99
TotalPayBenefits            136058.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3470, dtype: object)
(3471, Id                              3472
EmployeeName        MARIANO ELIAS JR
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 15089.21
OtherPay                    15030.47
Benefits                         NaN
TotalPay                   136054.35
TotalPayBenefits           136054.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3471, dtype: object)
(3472, Id                                3473
EmployeeName              DENISHA DIAL
JobTitle            TRANSIT SUPERVISOR
BasePay                       83938.82
OvertimePay                   51783.73
OtherPay                        330.67
Benefits                           NaN
TotalPay                     136053.22
TotalPayBenefits             136053.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3472, dtype: object)
(3473, Id                                3474
EmployeeName           GERALDINE RAYCA
JobTitle            PROJECT MANAGER II
BasePay                      136027.59
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     136027.59
TotalPayBenefits             136027.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3473, dtype: object)
(3474, Id                                3475
EmployeeName                LEWIS FONG
JobTitle            POLICE OFFICER III
BasePay                      117324.05
OvertimePay                    8682.16
OtherPay                      10010.02
Benefits                           NaN
TotalPay                     136016.23
TotalPayBenefits             136016.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3474, dtype: object)
(3475, Id                                         3476
EmployeeName                         ALISON YEE
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                             5508.39
OtherPay                                7387.24
Benefits                                    NaN
TotalPay                              136015.63
TotalPayBenefits                      136015.63
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3475, dtype: object)
(3476, Id                               3477
EmployeeName             MURRAY DAGGS
JobTitle            POLICE OFFICER II
BasePay                     108991.04
OvertimePay                  11247.26
OtherPay                     15764.84
Benefits                          NaN
TotalPay                    136003.14
TotalPayBenefits            136003.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3476, dtype: object)
(3477, Id                           3478
EmployeeName        RONALD POSTON
JobTitle              MANAGER III
BasePay                 123396.75
OvertimePay                   0.0
OtherPay                  12605.0
Benefits                      NaN
TotalPay                136001.75
TotalPayBenefits        136001.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3477, dtype: object)
(3478, Id                                3479
EmployeeName        MICHELLE LIDDICOET
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    4474.29
OtherPay                      19080.33
Benefits                           NaN
TotalPay                     135996.42
TotalPayBenefits             135996.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3478, dtype: object)
(3479, Id                                  3480
EmployeeName               ELSA TSUTAOKA
JobTitle            PHYSICIAN SPECIALIST
BasePay                        134397.27
OvertimePay                          0.0
OtherPay                          1593.0
Benefits                             NaN
TotalPay                       135990.27
TotalPayBenefits               135990.27
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3479, dtype: object)
(3480, Id                              3481
EmployeeName           SOCORRO SISON
JobTitle            REGISTERED NURSE
BasePay                    118931.51
OvertimePay                   9226.2
OtherPay                     7828.52
Benefits                         NaN
TotalPay                   135986.23
TotalPayBenefits           135986.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3480, dtype: object)
(3481, Id                                3482
EmployeeName             OSCAR BARCENA
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   12331.32
OtherPay                      11245.08
Benefits                           NaN
TotalPay                     135977.48
TotalPayBenefits             135977.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3481, dtype: object)
(3482, Id                              3483
EmployeeName          HECTOR RODARTE
JobTitle            POLICE OFFICER I
BasePay                     97998.98
OvertimePay                  5917.07
OtherPay                    32033.81
Benefits                         NaN
TotalPay                   135949.86
TotalPayBenefits           135949.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3482, dtype: object)
(3483, Id                              3484
EmployeeName           MARK WILLIAMS
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                 11263.41
OtherPay                    18654.09
Benefits                         NaN
TotalPay                   135944.46
TotalPayBenefits           135944.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3483, dtype: object)
(3484, Id                                3485
EmployeeName            TIMOTHY YEE JR
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   11029.74
OtherPay                      12523.05
Benefits                           NaN
TotalPay                      135933.5
TotalPayBenefits              135933.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3484, dtype: object)
(3485, Id                                                              3486
EmployeeName                                              JOE GUERRA
JobTitle            CHIEF STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                    102959.73
OvertimePay                                                 15818.79
OtherPay                                                    17139.62
Benefits                                                         NaN
TotalPay                                                   135918.14
TotalPayBenefits                                           135918.14
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 3485, dtype: object)
(3486, Id                           3487
EmployeeName         LANCE MARTIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               12579.0
OtherPay                  17388.5
Benefits                      NaN
TotalPay                135902.16
TotalPayBenefits        135902.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3486, dtype: object)
(3487, Id                                3488
EmployeeName                KIM SCHOEN
JobTitle            NURSE PRACTITIONER
BasePay                      135646.51
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     135896.51
TotalPayBenefits             135896.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3487, dtype: object)
(3488, Id                                                3489
EmployeeName                             TIMOTHY FOLEY
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                        5637.04
OvertimePay                                   76614.78
OtherPay                                      53615.33
Benefits                                           NaN
TotalPay                                     135867.15
TotalPayBenefits                             135867.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3488, dtype: object)
(3489, Id                                3490
EmployeeName         GERALDINE PEOPLES
JobTitle            NURSE PRACTITIONER
BasePay                       135616.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      135866.0
TotalPayBenefits              135866.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3489, dtype: object)
(3490, Id                                        3491
EmployeeName                         HUAN CHEN
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                           47470.21
OtherPay                               6334.22
Benefits                                   NaN
TotalPay                             135860.43
TotalPayBenefits                     135860.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 3490, dtype: object)
(3491, Id                              3492
EmployeeName             TERESITA CO
JobTitle            REGISTERED NURSE
BasePay                    113015.76
OvertimePay                  6410.25
OtherPay                    16415.82
Benefits                         NaN
TotalPay                   135841.83
TotalPayBenefits           135841.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3491, dtype: object)
(3492, Id                                3493
EmployeeName              CRAIG CANTON
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   22613.73
OtherPay                        822.97
Benefits                           NaN
TotalPay                     135837.78
TotalPayBenefits             135837.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3492, dtype: object)
(3493, Id                                         3494
EmployeeName                      LEONEL TINGIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             5185.13
OtherPay                                 7540.7
Benefits                                    NaN
TotalPay                              135830.84
TotalPayBenefits                      135830.84
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3493, dtype: object)
(3494, Id                                              3495
EmployeeName                         STEPHEN SMALLEY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.93
OvertimePay                                   981.76
OtherPay                                      4368.6
Benefits                                         NaN
TotalPay                                   135808.29
TotalPayBenefits                           135808.29
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3494, dtype: object)
(3495, Id                                                     3496
EmployeeName                                  TIMOTHY LIPPS
JobTitle            TRANSIT POWER LINE WORKER SUPERVISOR II
BasePay                                            107916.0
OvertimePay                                        25657.52
OtherPay                                             2233.0
Benefits                                                NaN
TotalPay                                          135806.52
TotalPayBenefits                                  135806.52
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 3495, dtype: object)
(3496, Id                            3497
EmployeeName        GARY ALTENBERG
JobTitle               FIREFIGHTER
BasePay                   123028.0
OvertimePay                5065.76
OtherPay                    7691.2
Benefits                       NaN
TotalPay                 135784.96
TotalPayBenefits         135784.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3496, dtype: object)
(3497, Id                                                3498
EmployeeName                            DANIEL EVERSON
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.58
OvertimePay                                     489.89
OtherPay                                       4812.88
Benefits                                           NaN
TotalPay                                     135784.35
TotalPayBenefits                             135784.35
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3497, dtype: object)
(3498, Id                                   3499
EmployeeName                 LAWRENCE LAU
JobTitle            MAINTENANCE MACHINIST
BasePay                           74651.5
OvertimePay                      56722.22
OtherPay                           4390.0
Benefits                              NaN
TotalPay                        135763.72
TotalPayBenefits                135763.72
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3498, dtype: object)
(3499, Id                                              3500
EmployeeName                             DANNY LOPEZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.64
OvertimePay                                   943.62
OtherPay                                     4340.11
Benefits                                         NaN
TotalPay                                   135741.37
TotalPayBenefits                           135741.37
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3499, dtype: object)
(3500, Id                                              3501
EmployeeName                                PAUL YEP
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.87
OvertimePay                                  1199.96
OtherPay                                     4077.07
Benefits                                         NaN
TotalPay                                    135734.9
TotalPayBenefits                            135734.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3500, dtype: object)
(3501, Id                                3502
EmployeeName         DAMON WILLIAMS JR
JobTitle            POLICE OFFICER III
BasePay                       112208.9
OvertimePay                    7860.61
OtherPay                      15657.26
Benefits                           NaN
TotalPay                     135726.77
TotalPayBenefits             135726.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3501, dtype: object)
(3502, Id                                3503
EmployeeName               MICHAEL KIM
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.93
OvertimePay                   21652.84
OtherPay                       8346.12
Benefits                           NaN
TotalPay                     135696.89
TotalPayBenefits             135696.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3502, dtype: object)
(3503, Id                                            3504
EmployeeName                         TIMOTHY SLACK
JobTitle            COURT COMPUTER SYSTEMS MANAGER
BasePay                                   135432.0
OvertimePay                                    0.0
OtherPay                                     264.0
Benefits                                       NaN
TotalPay                                  135696.0
TotalPayBenefits                          135696.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3503, dtype: object)
(3504, Id                                            3505
EmployeeName                      JEFFREY ISHIKAWA
JobTitle            COURT COMPUTER SYSTEMS MANAGER
BasePay                                   135432.0
OvertimePay                                    0.0
OtherPay                                     264.0
Benefits                                       NaN
TotalPay                                  135696.0
TotalPayBenefits                          135696.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3504, dtype: object)
(3505, Id                                3506
EmployeeName           NANCIE GUILLORY
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    19535.9
OtherPay                       3753.65
Benefits                           NaN
TotalPay                     135690.62
TotalPayBenefits             135690.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3505, dtype: object)
(3506, Id                                              3507
EmployeeName                          STEVEN MULKEEN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130505.17
OvertimePay                                   794.07
OtherPay                                     4389.33
Benefits                                         NaN
TotalPay                                   135688.57
TotalPayBenefits                           135688.57
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3506, dtype: object)
(3507, Id                                                         3508
EmployeeName                            NANCY KIRSHNER-RODRIGUE
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                               135686.99
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                              135686.99
TotalPayBenefits                                      135686.99
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3507, dtype: object)
(3508, Id                              3509
EmployeeName        MICHAEL MARTINEZ
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                 19666.27
OtherPay                    10085.39
Benefits                         NaN
TotalPay                   135686.33
TotalPayBenefits           135686.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3508, dtype: object)
(3509, Id                               3510
EmployeeName             SALLY FOSTER
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                  22096.19
OtherPay                      3354.93
Benefits                          NaN
TotalPay                    135674.19
TotalPayBenefits            135674.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3509, dtype: object)
(3510, Id                                       3511
EmployeeName                   SHILU RAMCHAND
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             135421.51
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            135671.51
TotalPayBenefits                    135671.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3510, dtype: object)
(3511, Id                               3512
EmployeeName        RAYMOND POYDESSUS
JobTitle                  FIREFIGHTER
BasePay                     125386.11
OvertimePay                       0.0
OtherPay                      10283.4
Benefits                          NaN
TotalPay                    135669.51
TotalPayBenefits            135669.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3511, dtype: object)
(3512, Id                              3513
EmployeeName            GRACE BONDOC
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                  7821.07
OtherPay                     4592.04
Benefits                         NaN
TotalPay                   135653.11
TotalPayBenefits           135653.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3512, dtype: object)
(3513, Id                                              3514
EmployeeName                             RENE PAGANO
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129601.55
OvertimePay                                  1442.27
OtherPay                                     4607.34
Benefits                                         NaN
TotalPay                                   135651.16
TotalPayBenefits                           135651.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3513, dtype: object)
(3514, Id                                3515
EmployeeName         PAMELA CUNNINGHAM
JobTitle            POLICE OFFICER III
BasePay                      112380.65
OvertimePay                    8028.77
OtherPay                       15236.9
Benefits                           NaN
TotalPay                     135646.32
TotalPayBenefits             135646.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3514, dtype: object)
(3515, Id                           3516
EmployeeName         PAUL ORLANDO
JobTitle              FIREFIGHTER
BasePay                 126873.18
OvertimePay                   0.0
OtherPay                  8768.22
Benefits                      NaN
TotalPay                 135641.4
TotalPayBenefits         135641.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3515, dtype: object)
(3516, Id                               3517
EmployeeName             JASON ACOSTA
JobTitle            POLICE OFFICER II
BasePay                     110377.87
OvertimePay                   8476.47
OtherPay                     16763.99
Benefits                          NaN
TotalPay                    135618.33
TotalPayBenefits            135618.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3516, dtype: object)
(3517, Id                            3518
EmployeeName        EILEEN NEEDHAM
JobTitle               FIREFIGHTER
BasePay                  105934.71
OvertimePay                21642.8
OtherPay                   8036.34
Benefits                       NaN
TotalPay                 135613.85
TotalPayBenefits         135613.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3517, dtype: object)
(3518, Id                                       3519
EmployeeName                    MARC GUILLORY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             135611.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            135611.52
TotalPayBenefits                    135611.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3518, dtype: object)
(3519, Id                                                3520
EmployeeName                          FRANCISCO CUBIAS
JobTitle            RADIOLOGIC TECHNOLOGIST SUPERVISOR
BasePay                                      122740.95
OvertimePay                                    4466.12
OtherPay                                       8396.22
Benefits                                           NaN
TotalPay                                     135603.29
TotalPayBenefits                             135603.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3519, dtype: object)
(3520, Id                               3521
EmployeeName        DAISY EVANGELISTA
JobTitle             REGISTERED NURSE
BasePay                     115844.91
OvertimePay                   9085.77
OtherPay                      10655.8
Benefits                          NaN
TotalPay                    135586.48
TotalPayBenefits            135586.48
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3520, dtype: object)
(3521, Id                                                3522
EmployeeName                              WILLIAM WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.68
OvertimePay                                   53766.21
OtherPay                                       4222.64
Benefits                                           NaN
TotalPay                                     135569.53
TotalPayBenefits                             135569.53
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3521, dtype: object)
(3522, Id                            3523
EmployeeName         ARIEH KENDALL
JobTitle            DEPUTY SHERIFF
BasePay                   86481.37
OvertimePay               38725.19
OtherPay                  10359.87
Benefits                       NaN
TotalPay                 135566.43
TotalPayBenefits         135566.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3522, dtype: object)
(3523, Id                                3524
EmployeeName          CARLOS MUSTAFICH
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   14835.22
OtherPay                       8320.56
Benefits                           NaN
TotalPay                     135556.86
TotalPayBenefits             135556.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3523, dtype: object)
(3524, Id                                              3525
EmployeeName                      MICHAEL RADANOVICH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130504.93
OvertimePay                                   977.83
OtherPay                                     4069.89
Benefits                                         NaN
TotalPay                                   135552.65
TotalPayBenefits                           135552.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3524, dtype: object)
(3525, Id                            3526
EmployeeName        THOMAS MANNION
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                9032.94
OtherPay                  20550.29
Benefits                       NaN
TotalPay                 135517.89
TotalPayBenefits         135517.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3525, dtype: object)
(3526, Id                                          3527
EmployeeName                       BERNARD DUFFY
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 101845.9
OvertimePay                             27050.96
OtherPay                                 6616.43
Benefits                                     NaN
TotalPay                               135513.29
TotalPayBenefits                       135513.29
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3526, dtype: object)
(3527, Id                                                3528
EmployeeName                           ARTURO GUITARTE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.69
OvertimePay                                    49877.6
OtherPay                                       8052.21
Benefits                                           NaN
TotalPay                                      135510.5
TotalPayBenefits                              135510.5
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3527, dtype: object)
(3528, Id                                       3529
EmployeeName                   AUDREY PEARSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             135489.93
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            135489.93
TotalPayBenefits                    135489.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3528, dtype: object)
(3529, Id                                            3530
EmployeeName                        DENNIS OMAHONY
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123170.05
OvertimePay                                 6521.0
OtherPay                                   5797.93
Benefits                                       NaN
TotalPay                                 135488.98
TotalPayBenefits                         135488.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3529, dtype: object)
(3530, Id                              3531
EmployeeName           LUIS DE JESUS
JobTitle            POLICE OFFICER I
BasePay                    106046.06
OvertimePay                 17393.45
OtherPay                    12047.77
Benefits                         NaN
TotalPay                   135487.28
TotalPayBenefits           135487.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3530, dtype: object)
(3531, Id                                3532
EmployeeName                 JUDY GAER
JobTitle            NURSE PRACTITIONER
BasePay                      134543.46
OvertimePay                        0.0
OtherPay                        942.75
Benefits                           NaN
TotalPay                     135486.21
TotalPayBenefits             135486.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3531, dtype: object)
(3532, Id                                3533
EmployeeName              GARY PEACHEY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   17455.97
OtherPay                       5624.76
Benefits                           NaN
TotalPay                     135481.81
TotalPayBenefits             135481.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3532, dtype: object)
(3533, Id                                       3534
EmployeeName                  SUSAN CLEVELAND
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             135481.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            135481.62
TotalPayBenefits                    135481.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3533, dtype: object)
(3534, Id                              3535
EmployeeName        EVANGELINE REYES
JobTitle            REGISTERED NURSE
BasePay                     124007.2
OvertimePay                    122.1
OtherPay                    11346.42
Benefits                         NaN
TotalPay                   135475.72
TotalPayBenefits           135475.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3534, dtype: object)
(3535, Id                                    3536
EmployeeName                 SABINE BALDEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          120837.78
OvertimePay                         962.13
OtherPay                           13638.5
Benefits                               NaN
TotalPay                         135438.41
TotalPayBenefits                 135438.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3535, dtype: object)
(3536, Id                                         3537
EmployeeName                     RONALD VANPOOL
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                                 0.0
OtherPay                               12312.01
Benefits                                    NaN
TotalPay                              135432.01
TotalPayBenefits                      135432.01
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3536, dtype: object)
(3537, Id                                  3538
EmployeeName               JASON JACKSON
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.63
OvertimePay                      2933.54
OtherPay                        10854.42
Benefits                             NaN
TotalPay                       135416.59
TotalPayBenefits               135416.59
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3537, dtype: object)
(3538, Id                               3539
EmployeeName             THOMAS MORAN
JobTitle            POLICE OFFICER II
BasePay                       99166.0
OvertimePay                  14856.57
OtherPay                     21372.13
Benefits                          NaN
TotalPay                     135394.7
TotalPayBenefits             135394.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3538, dtype: object)
(3539, Id                              3540
EmployeeName              MAEVE REID
JobTitle            REGISTERED NURSE
BasePay                    109367.57
OvertimePay                      0.0
OtherPay                    26016.43
Benefits                         NaN
TotalPay                    135384.0
TotalPayBenefits            135384.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3539, dtype: object)
(3540, Id                                3541
EmployeeName                DELOS PUTZ
JobTitle            POLICE OFFICER III
BasePay                      115423.68
OvertimePay                   13678.56
OtherPay                       6271.68
Benefits                           NaN
TotalPay                     135373.92
TotalPayBenefits             135373.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3540, dtype: object)
(3541, Id                                                               3542
EmployeeName                                              MICKI JONES
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     126873.09
OvertimePay                                                       0.0
OtherPay                                                      8495.89
Benefits                                                          NaN
TotalPay                                                    135368.98
TotalPayBenefits                                            135368.98
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3541, dtype: object)
(3542, Id                              3543
EmployeeName          JOSEPH SHARLOW
JobTitle            POLICE OFFICER I
BasePay                    100877.04
OvertimePay                  14193.8
OtherPay                    20266.79
Benefits                         NaN
TotalPay                   135337.63
TotalPayBenefits           135337.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3542, dtype: object)
(3543, Id                              3544
EmployeeName             JOHN FERGUS
JobTitle            POLICE OFFICER I
BasePay                    106248.32
OvertimePay                 13563.63
OtherPay                    15516.92
Benefits                         NaN
TotalPay                   135328.87
TotalPayBenefits           135328.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3543, dtype: object)
(3544, Id                                 3545
EmployeeName        JEFFERY LITTLEFIELD
JobTitle              DEPUTY DIRECTOR V
BasePay                       132209.54
OvertimePay                         0.0
OtherPay                        3110.05
Benefits                            NaN
TotalPay                      135319.59
TotalPayBenefits              135319.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3544, dtype: object)
(3545, Id                                3546
EmployeeName              LEROY THOMAS
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   15572.87
OtherPay                       7323.73
Benefits                           NaN
TotalPay                     135318.04
TotalPayBenefits             135318.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3545, dtype: object)
(3546, Id                               3547
EmployeeName        CAROLINO MUNSAYAC
JobTitle             REGISTERED NURSE
BasePay                      109044.0
OvertimePay                   5040.67
OtherPay                     21229.91
Benefits                          NaN
TotalPay                    135314.58
TotalPayBenefits            135314.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3546, dtype: object)
(3547, Id                           3548
EmployeeName        CHARLES LEUNG
JobTitle               PHARMACIST
BasePay                 133399.03
OvertimePay                370.65
OtherPay                   1544.0
Benefits                      NaN
TotalPay                135313.68
TotalPayBenefits        135313.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3547, dtype: object)
(3548, Id                                              3549
EmployeeName                              DARBY REID
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.13
OvertimePay                                      0.0
OtherPay                                     4828.32
Benefits                                         NaN
TotalPay                                   135309.45
TotalPayBenefits                           135309.45
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3548, dtype: object)
(3549, Id                                3550
EmployeeName              GEORGE LEONG
JobTitle            POLICE OFFICER III
BasePay                      117303.63
OvertimePay                    5852.03
OtherPay                      12139.99
Benefits                           NaN
TotalPay                     135295.65
TotalPayBenefits             135295.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3549, dtype: object)
(3550, Id                              3551
EmployeeName           TIMOTHY NEVES
JobTitle            POLICE OFFICER I
BasePay                    103897.77
OvertimePay                 11922.75
OtherPay                    19466.35
Benefits                         NaN
TotalPay                   135286.87
TotalPayBenefits           135286.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3550, dtype: object)
(3551, Id                                              3552
EmployeeName                           MARY DUNNIGAN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130476.4
OvertimePay                                   710.83
OtherPay                                     4093.67
Benefits                                         NaN
TotalPay                                    135280.9
TotalPayBenefits                            135280.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3551, dtype: object)
(3552, Id                                3553
EmployeeName             DARLA MCBRIDE
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    6036.56
OtherPay                      16774.86
Benefits                           NaN
TotalPay                     135253.24
TotalPayBenefits             135253.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3552, dtype: object)
(3553, Id                                 3554
EmployeeName              KATHLEEN MARK
JobTitle            IS PROJECT DIRECTOR
BasePay                        134140.6
OvertimePay                         0.0
OtherPay                         1095.0
Benefits                            NaN
TotalPay                       135235.6
TotalPayBenefits               135235.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3553, dtype: object)
(3554, Id                           3555
EmployeeName          RICHARD TAM
JobTitle                 ENGINEER
BasePay                 118717.02
OvertimePay                   0.0
OtherPay                  16500.5
Benefits                      NaN
TotalPay                135217.52
TotalPayBenefits        135217.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3554, dtype: object)
(3555, Id                                       3556
EmployeeName                       MARC LEWIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             135211.75
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            135211.75
TotalPayBenefits                    135211.75
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3555, dtype: object)
(3556, Id                                3557
EmployeeName            IGNATIUS CHINN
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   14456.67
OtherPay                       8346.62
Benefits                           NaN
TotalPay                     135204.37
TotalPayBenefits             135204.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3556, dtype: object)
(3557, Id                                                         3558
EmployeeName                                       MIKE KEOHANE
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                135200.0
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               135200.0
TotalPayBenefits                                       135200.0
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3557, dtype: object)
(3558, Id                           3559
EmployeeName         KENNETH RICH
JobTitle                MANAGER V
BasePay                  135200.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 135200.0
TotalPayBenefits         135200.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3558, dtype: object)
(3559, Id                                3560
EmployeeName            JASON KIRCHNER
JobTitle            POLICE OFFICER III
BasePay                      110295.93
OvertimePay                    12035.9
OtherPay                      12866.32
Benefits                           NaN
TotalPay                     135198.15
TotalPayBenefits             135198.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3559, dtype: object)
(3560, Id                                                3561
EmployeeName                            ALAN HONNIBALL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.93
OvertimePay                                     293.93
OtherPay                                       4429.77
Benefits                                           NaN
TotalPay                                     135181.63
TotalPayBenefits                             135181.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3560, dtype: object)
(3561, Id                                            3562
EmployeeName                   THERESA SAN GIACOMO
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123191.91
OvertimePay                                6945.86
OtherPay                                   5034.21
Benefits                                       NaN
TotalPay                                 135171.98
TotalPayBenefits                         135171.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3561, dtype: object)
(3562, Id                                                           3563
EmployeeName                                        MICHAEL HAASE
JobTitle            ASST. CHIEF, BUREAU OF CLAIMS INVEST. & ADMIN
BasePay                                                 135166.98
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                135166.98
TotalPayBenefits                                        135166.98
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 3562, dtype: object)
(3563, Id                                  3564
EmployeeName            ALEJANDRO CABEBE
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.02
OvertimePay                       9367.7
OtherPay                         4169.28
Benefits                             NaN
TotalPay                        135165.0
TotalPayBenefits                135165.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3563, dtype: object)
(3564, Id                                3565
EmployeeName              KAY WILLIAMS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   42875.33
OtherPay                       4225.57
Benefits                           NaN
TotalPay                      135162.9
TotalPayBenefits              135162.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3564, dtype: object)
(3565, Id                                             3566
EmployeeName                        SHAYNE JOHNSTON
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                   19330.61
Benefits                                        NaN
TotalPay                                  135147.61
TotalPayBenefits                          135147.61
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3565, dtype: object)
(3566, Id                                3567
EmployeeName               ANA MORALES
JobTitle            POLICE OFFICER III
BasePay                      115073.89
OvertimePay                    8075.45
OtherPay                      11997.45
Benefits                           NaN
TotalPay                     135146.79
TotalPayBenefits             135146.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3566, dtype: object)
(3567, Id                                3568
EmployeeName        CAROL CONLEY-BODIN
JobTitle                   FIREFIGHTER
BasePay                      105934.66
OvertimePay                   11239.48
OtherPay                      17960.22
Benefits                           NaN
TotalPay                     135134.36
TotalPayBenefits             135134.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3567, dtype: object)
(3568, Id                                               3569
EmployeeName                                 HONG LUU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  23464.28
OtherPay                                      12648.7
Benefits                                          NaN
TotalPay                                    135127.38
TotalPayBenefits                            135127.38
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3568, dtype: object)
(3569, Id                                  3570
EmployeeName              JOHN GARCIA JR
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.21
OvertimePay                      4394.46
OtherPay                         9567.97
Benefits                             NaN
TotalPay                       135122.64
TotalPayBenefits               135122.64
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3569, dtype: object)
(3570, Id                                                3571
EmployeeName                            LIANE CORRALES
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.48
OvertimePay                                     388.78
OtherPay                                       4246.71
Benefits                                           NaN
TotalPay                                     135116.97
TotalPayBenefits                             135116.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3570, dtype: object)
(3571, Id                               3572
EmployeeName        TAIRA DE BERNARDI
JobTitle            POLICE OFFICER II
BasePay                     109610.94
OvertimePay                   7004.49
OtherPay                     18497.49
Benefits                          NaN
TotalPay                    135112.92
TotalPayBenefits            135112.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3571, dtype: object)
(3572, Id                                          3573
EmployeeName                      KEVIN O'CONNOR
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102254.12
OvertimePay                             26643.39
OtherPay                                 6199.07
Benefits                                     NaN
TotalPay                               135096.58
TotalPayBenefits                       135096.58
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3572, dtype: object)
(3573, Id                            3574
EmployeeName        PEDRO MARTINEZ
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               19611.36
OtherPay                   9550.38
Benefits                       NaN
TotalPay                 135096.41
TotalPayBenefits         135096.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3573, dtype: object)
(3574, Id                           3575
EmployeeName           DANIEL LUI
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              10541.61
OtherPay                 18606.74
Benefits                      NaN
TotalPay                135083.01
TotalPayBenefits        135083.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3574, dtype: object)
(3575, Id                            3576
EmployeeName        LAIN SALSTRAND
JobTitle               FIREFIGHTER
BasePay                   92193.35
OvertimePay               30917.13
OtherPay                  11966.09
Benefits                       NaN
TotalPay                 135076.57
TotalPayBenefits         135076.57
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3575, dtype: object)
(3576, Id                                3577
EmployeeName           KUNTHEA JOHNSON
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   12848.78
OtherPay                       9792.33
Benefits                           NaN
TotalPay                     135062.54
TotalPayBenefits             135062.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3576, dtype: object)
(3577, Id                           3578
EmployeeName         GERALD ALLEY
JobTitle                MANAGER V
BasePay                 135062.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                135062.02
TotalPayBenefits        135062.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3577, dtype: object)
(3578, Id                             3579
EmployeeName        PRIVADO GUMABAY
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 11502.2
OtherPay                   17621.28
Benefits                        NaN
TotalPay                  135058.15
TotalPayBenefits          135058.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3578, dtype: object)
(3579, Id                           3580
EmployeeName            WEI YI MO
JobTitle               PHARMACIST
BasePay                 133387.51
OvertimePay                   0.0
OtherPay                   1664.0
Benefits                      NaN
TotalPay                135051.51
TotalPayBenefits        135051.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3579, dtype: object)
(3580, Id                                3581
EmployeeName            GEORGE FOGARTY
JobTitle            POLICE OFFICER III
BasePay                      117303.67
OvertimePay                    7258.32
OtherPay                      10481.59
Benefits                           NaN
TotalPay                     135043.58
TotalPayBenefits             135043.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3580, dtype: object)
(3581, Id                                                3582
EmployeeName                        PETER WEN DO KUANG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   50705.17
OtherPay                                       6752.71
Benefits                                           NaN
TotalPay                                     135038.28
TotalPayBenefits                             135038.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3581, dtype: object)
(3582, Id                               3583
EmployeeName            CULLEN CAHILL
JobTitle            POLICE OFFICER II
BasePay                     110783.89
OvertimePay                  20275.47
OtherPay                      3959.85
Benefits                          NaN
TotalPay                    135019.21
TotalPayBenefits            135019.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3582, dtype: object)
(3583, Id                               3584
EmployeeName                RON MEYER
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                  16603.13
OtherPay                      8191.47
Benefits                          NaN
TotalPay                    135017.62
TotalPayBenefits            135017.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3583, dtype: object)
(3584, Id                                3585
EmployeeName        MATILDE SAQUILAYAN
JobTitle              REGISTERED NURSE
BasePay                       123240.0
OvertimePay                     5688.0
OtherPay                        6080.2
Benefits                           NaN
TotalPay                      135008.2
TotalPayBenefits              135008.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3584, dtype: object)
(3585, Id                                3586
EmployeeName        JENNIFER HENNESSEY
JobTitle             POLICE OFFICER II
BasePay                      103331.29
OvertimePay                   17415.81
OtherPay                      14251.88
Benefits                           NaN
TotalPay                     134998.98
TotalPayBenefits             134998.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3585, dtype: object)
(3586, Id                           3587
EmployeeName        JOSEPH HORTON
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay              16901.72
OtherPay                 12157.63
Benefits                      NaN
TotalPay                134994.04
TotalPayBenefits        134994.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3586, dtype: object)
(3587, Id                                3588
EmployeeName          JEREMIAH BUCKLEY
JobTitle            POLICE OFFICER III
BasePay                      117283.33
OvertimePay                     8306.1
OtherPay                       9402.31
Benefits                           NaN
TotalPay                     134991.74
TotalPayBenefits             134991.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3587, dtype: object)
(3588, Id                                     3589
EmployeeName                  TIMOTHY LEUNG
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                            130171.0
OvertimePay                             0.0
OtherPay                            4805.96
Benefits                                NaN
TotalPay                          134976.96
TotalPayBenefits                  134976.96
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3588, dtype: object)
(3589, Id                           3590
EmployeeName        KETTY FEDIGAN
JobTitle              FIREFIGHTER
BasePay                 126873.07
OvertimePay                   0.0
OtherPay                  8096.81
Benefits                      NaN
TotalPay                134969.88
TotalPayBenefits        134969.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3589, dtype: object)
(3590, Id                           3591
EmployeeName          ERIN MURPHY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              11004.71
OtherPay                 18018.89
Benefits                      NaN
TotalPay                134958.27
TotalPayBenefits        134958.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3590, dtype: object)
(3591, Id                                           3592
EmployeeName                         CLARENCE LEE
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                 102035.74
OvertimePay                              27415.07
OtherPay                                  5500.94
Benefits                                      NaN
TotalPay                                134951.75
TotalPayBenefits                        134951.75
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 3591, dtype: object)
(3592, Id                                   3593
EmployeeName               JONATHAN KUHNS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.25
OvertimePay                       22679.2
OtherPay                         16006.06
Benefits                              NaN
TotalPay                        134939.51
TotalPayBenefits                134939.51
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3592, dtype: object)
(3593, Id                             3594
EmployeeName        ARAM MARAVILLAS
JobTitle                FIREFIGHTER
BasePay                   105859.72
OvertimePay                11653.33
OtherPay                   17416.81
Benefits                        NaN
TotalPay                  134929.86
TotalPayBenefits          134929.86
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3593, dtype: object)
(3594, Id                                3595
EmployeeName           MICHAEL CHANTAL
JobTitle            POLICE OFFICER III
BasePay                      112401.04
OvertimePay                   18834.12
OtherPay                       3676.38
Benefits                           NaN
TotalPay                     134911.54
TotalPayBenefits             134911.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3594, dtype: object)
(3595, Id                                    3596
EmployeeName             RUSSELL ZIMMERMAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122707.43
OvertimePay                            0.0
OtherPay                           12194.3
Benefits                               NaN
TotalPay                         134901.73
TotalPayBenefits                 134901.73
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3595, dtype: object)
(3596, Id                           3597
EmployeeName        JERRY TIDWELL
JobTitle              MANAGER VII
BasePay                  74971.38
OvertimePay                   0.0
OtherPay                 59869.93
Benefits                      NaN
TotalPay                134841.31
TotalPayBenefits        134841.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3596, dtype: object)
(3597, Id                           3598
EmployeeName         JOHN MANNING
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              12954.97
OtherPay                 15943.25
Benefits                      NaN
TotalPay                134832.89
TotalPayBenefits        134832.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3597, dtype: object)
(3598, Id                                3599
EmployeeName             MICHAEL WHITE
JobTitle            POLICE OFFICER III
BasePay                      115235.57
OvertimePay                   13609.79
OtherPay                       5980.12
Benefits                           NaN
TotalPay                     134825.48
TotalPayBenefits             134825.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3598, dtype: object)
(3599, Id                               3600
EmployeeName             RENE NIELSEN
JobTitle            POLICE OFFICER II
BasePay                     107772.13
OvertimePay                   4604.32
OtherPay                      22440.6
Benefits                          NaN
TotalPay                    134817.05
TotalPayBenefits            134817.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3599, dtype: object)
(3600, Id                                              3601
EmployeeName                          PAGET MITCHELL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.44
OvertimePay                                  1941.85
OtherPay                                     2374.35
Benefits                                         NaN
TotalPay                                   134797.64
TotalPayBenefits                           134797.64
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3600, dtype: object)
(3601, Id                              3602
EmployeeName             NADINE QUAN
JobTitle            REGISTERED NURSE
BasePay                    127201.92
OvertimePay                      0.0
OtherPay                     7571.67
Benefits                         NaN
TotalPay                   134773.59
TotalPayBenefits           134773.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3601, dtype: object)
(3602, Id                              3603
EmployeeName           LIZA DIGDIGAN
JobTitle            REGISTERED NURSE
BasePay                    108410.99
OvertimePay                  8824.91
OtherPay                    17516.88
Benefits                         NaN
TotalPay                   134752.78
TotalPayBenefits           134752.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3602, dtype: object)
(3603, Id                               3604
EmployeeName               DENNIS LAI
JobTitle            POLICE OFFICER II
BasePay                     107384.31
OvertimePay                   7611.02
OtherPay                     19736.88
Benefits                          NaN
TotalPay                    134732.21
TotalPayBenefits            134732.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3603, dtype: object)
(3604, Id                                              3605
EmployeeName                             DAMON KEEVE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115925.81
OvertimePay                                   7430.8
OtherPay                                    11360.98
Benefits                                         NaN
TotalPay                                   134717.59
TotalPayBenefits                           134717.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3604, dtype: object)
(3605, Id                                            3606
EmployeeName                       ANTHONY JONCICH
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   81968.15
OvertimePay                               39235.48
OtherPay                                   13508.4
Benefits                                       NaN
TotalPay                                 134712.03
TotalPayBenefits                         134712.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3605, dtype: object)
(3606, Id                                     3607
EmployeeName        CHARLES MCGOWAN-FACIANI
JobTitle             FIRE FIGHTER PARAMEDIC
BasePay                            121551.3
OvertimePay                         1617.02
OtherPay                           11543.65
Benefits                                NaN
TotalPay                          134711.97
TotalPayBenefits                  134711.97
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3606, dtype: object)
(3607, Id                           3608
EmployeeName         PHILIP GALLI
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                  2460.25
Benefits                      NaN
TotalPay                134702.75
TotalPayBenefits        134702.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3607, dtype: object)
(3608, Id                              3609
EmployeeName             ELSIE ZARZA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   5860.8
OtherPay                      1837.3
Benefits                         NaN
TotalPay                    134682.1
TotalPayBenefits            134682.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3608, dtype: object)
(3609, Id                                              3610
EmployeeName                            RICHARD GOSS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    129913.79
OvertimePay                                   809.17
OtherPay                                     3952.17
Benefits                                         NaN
TotalPay                                   134675.13
TotalPayBenefits                           134675.13
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3609, dtype: object)
(3610, Id                              3611
EmployeeName        KENNETH DONNELLY
JobTitle               CABLE SPLICER
BasePay                     93858.45
OvertimePay                 31101.21
OtherPay                     9714.03
Benefits                         NaN
TotalPay                   134673.69
TotalPayBenefits           134673.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3610, dtype: object)
(3611, Id                           3612
EmployeeName        NICHOLAS YUEN
JobTitle              FIREFIGHTER
BasePay                 105932.12
OvertimePay              11532.34
OtherPay                  17205.9
Benefits                      NaN
TotalPay                134670.36
TotalPayBenefits        134670.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3611, dtype: object)
(3612, Id                              3613
EmployeeName           PHYLLIS LEACH
JobTitle            REGISTERED NURSE
BasePay                    109783.26
OvertimePay                   6796.8
OtherPay                    18089.94
Benefits                         NaN
TotalPay                    134670.0
TotalPayBenefits            134670.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3612, dtype: object)
(3613, Id                                              3614
EmployeeName                            NEAL GRIFFIN
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130466.47
OvertimePay                                   392.15
OtherPay                                     3809.84
Benefits                                         NaN
TotalPay                                   134668.46
TotalPayBenefits                           134668.46
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3613, dtype: object)
(3614, Id                                    3615
EmployeeName                  JERRY MALONE
JobTitle            CONSTRUCTION INSPECTOR
BasePay                          104039.26
OvertimePay                       21570.39
OtherPay                           9044.19
Benefits                               NaN
TotalPay                         134653.84
TotalPayBenefits                 134653.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3614, dtype: object)
(3615, Id                           3616
EmployeeName           TONY CHUNG
JobTitle               PHARMACIST
BasePay                  112058.1
OvertimePay               7389.06
OtherPay                 15198.51
Benefits                      NaN
TotalPay                134645.67
TotalPayBenefits        134645.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3615, dtype: object)
(3616, Id                                                3617
EmployeeName                             DON CIARDELLA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.33
OvertimePay                                        0.0
OtherPay                                       4135.18
Benefits                                           NaN
TotalPay                                     134611.51
TotalPayBenefits                             134611.51
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3616, dtype: object)
(3617, Id                                             3618
EmployeeName                        ERIC BATCHELDER
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   113738.24
OvertimePay                                17907.37
OtherPay                                    2921.34
Benefits                                        NaN
TotalPay                                  134566.95
TotalPayBenefits                          134566.95
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3617, dtype: object)
(3618, Id                               3619
EmployeeName                MARK ROAN
JobTitle            POLICE OFFICER II
BasePay                     101634.06
OvertimePay                  12435.41
OtherPay                     20475.52
Benefits                          NaN
TotalPay                    134544.99
TotalPayBenefits            134544.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3618, dtype: object)
(3619, Id                              3620
EmployeeName             MEE-LOI YIM
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   7110.0
OtherPay                     4194.94
Benefits                         NaN
TotalPay                   134544.94
TotalPayBenefits           134544.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3619, dtype: object)
(3620, Id                              3621
EmployeeName        ANTHONY SAN JOSE
JobTitle                 ELECTRICIAN
BasePay                     85098.06
OvertimePay                 47375.55
OtherPay                      2060.0
Benefits                         NaN
TotalPay                   134533.61
TotalPayBenefits           134533.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3620, dtype: object)
(3621, Id                           3622
EmployeeName        JOHN SILVA JR
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              11248.51
OtherPay                 17327.72
Benefits                      NaN
TotalPay                134510.88
TotalPayBenefits        134510.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3621, dtype: object)
(3622, Id                                               3623
EmployeeName                                 CAN MACH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  25408.35
OtherPay                                     10081.44
Benefits                                          NaN
TotalPay                                    134504.19
TotalPayBenefits                            134504.19
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3622, dtype: object)
(3623, Id                                 3624
EmployeeName         HEMALATHA NEKKANTI
JobTitle            IS PROJECT DIRECTOR
BasePay                       134502.84
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      134502.84
TotalPayBenefits              134502.84
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3623, dtype: object)
(3624, Id                            3625
EmployeeName        CRISTINA KOSTA
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               11720.16
OtherPay                  16845.75
Benefits                       NaN
TotalPay                 134500.57
TotalPayBenefits         134500.57
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3624, dtype: object)
(3625, Id                            3626
EmployeeName        AMADOR HERRERA
JobTitle               FIREFIGHTER
BasePay                  105934.63
OvertimePay               20252.54
OtherPay                   8300.01
Benefits                       NaN
TotalPay                 134487.18
TotalPayBenefits         134487.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3625, dtype: object)
(3626, Id                            3627
EmployeeName        JANICE HOAGLIN
JobTitle               FIREFIGHTER
BasePay                  105934.63
OvertimePay               11968.19
OtherPay                  16573.54
Benefits                       NaN
TotalPay                 134476.36
TotalPayBenefits         134476.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3626, dtype: object)
(3627, Id                              3628
EmployeeName          SEERANEE PEREZ
JobTitle            REGISTERED NURSE
BasePay                     126495.6
OvertimePay                  1623.93
OtherPay                      6355.0
Benefits                         NaN
TotalPay                   134474.53
TotalPayBenefits           134474.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3627, dtype: object)
(3628, Id                                3629
EmployeeName            ARLISA COLLINS
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.06
OvertimePay                    19185.2
OtherPay                        9177.1
Benefits                           NaN
TotalPay                     134468.36
TotalPayBenefits             134468.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3628, dtype: object)
(3629, Id                               3630
EmployeeName               ERIK LEUNG
JobTitle            POLICE OFFICER II
BasePay                     110262.72
OvertimePay                   6616.16
OtherPay                     17586.38
Benefits                          NaN
TotalPay                    134465.26
TotalPayBenefits            134465.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3629, dtype: object)
(3630, Id                               3631
EmployeeName           ERICK ANDERSON
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                    7317.3
OtherPay                     16924.62
Benefits                          NaN
TotalPay                    134464.99
TotalPayBenefits            134464.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3630, dtype: object)
(3631, Id                                   3632
EmployeeName                   ROBERT FRY
JobTitle            MAINTENANCE MACHINIST
BasePay                          74831.27
OvertimePay                       44632.7
OtherPay                         14984.78
Benefits                              NaN
TotalPay                        134448.75
TotalPayBenefits                134448.75
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3631, dtype: object)
(3632, Id                                3633
EmployeeName               BARBARA MAK
JobTitle            NURSE PRACTITIONER
BasePay                      132960.13
OvertimePay                        0.0
OtherPay                        1475.0
Benefits                           NaN
TotalPay                     134435.13
TotalPayBenefits             134435.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3632, dtype: object)
(3633, Id                                              3634
EmployeeName                          STEVEN HASKELL
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130476.4
OvertimePay                                   944.41
OtherPay                                     3011.32
Benefits                                         NaN
TotalPay                                   134432.13
TotalPayBenefits                           134432.13
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3633, dtype: object)
(3634, Id                                  3635
EmployeeName        CHRISTOPHER ANDERSON
JobTitle              POLICE OFFICER III
BasePay                        112421.43
OvertimePay                      13853.2
OtherPay                         8154.89
Benefits                             NaN
TotalPay                       134429.52
TotalPayBenefits               134429.52
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3634, dtype: object)
(3635, Id                            3636
EmployeeName        LAUREN CORTESE
JobTitle             SPECIAL NURSE
BasePay                  115314.43
OvertimePay               13668.48
OtherPay                   5440.01
Benefits                       NaN
TotalPay                 134422.92
TotalPayBenefits         134422.92
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3635, dtype: object)
(3636, Id                                     3637
EmployeeName                       ALAN TSE
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.59
OvertimePay                             0.0
OtherPay                             6744.3
Benefits                                NaN
TotalPay                          134421.89
TotalPayBenefits                  134421.89
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3636, dtype: object)
(3637, Id                              3638
EmployeeName           BIRHANU DESTA
JobTitle            REGISTERED NURSE
BasePay                    102965.86
OvertimePay                  9320.36
OtherPay                    22131.28
Benefits                         NaN
TotalPay                    134417.5
TotalPayBenefits            134417.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3637, dtype: object)
(3638, Id                                          3639
EmployeeName                             KAN YIP
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101030.02
OvertimePay                             25961.77
OtherPay                                 7425.35
Benefits                                     NaN
TotalPay                               134417.14
TotalPayBenefits                       134417.14
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3638, dtype: object)
(3639, Id                             3640
EmployeeName          KRISTIN ALLEN
JobTitle            SENIOR ENGINEER
BasePay                   131607.79
OvertimePay                     0.0
OtherPay                    2786.69
Benefits                        NaN
TotalPay                  134394.48
TotalPayBenefits          134394.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3639, dtype: object)
(3640, Id                                         3641
EmployeeName                     MARK BERNSTEIN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               127768.61
OvertimePay                                 0.0
OtherPay                                6625.47
Benefits                                    NaN
TotalPay                              134394.08
TotalPayBenefits                      134394.08
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3640, dtype: object)
(3641, Id                                3642
EmployeeName              ANGEL LOZANO
JobTitle            POLICE OFFICER III
BasePay                      117303.26
OvertimePay                   11748.68
OtherPay                       5329.43
Benefits                           NaN
TotalPay                     134381.37
TotalPayBenefits             134381.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3641, dtype: object)
(3642, Id                                       3643
EmployeeName                    EMILY GOLDMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             134379.38
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            134379.38
TotalPayBenefits                    134379.38
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3642, dtype: object)
(3643, Id                               3644
EmployeeName        MARY GRACE SAVORY
JobTitle             REGISTERED NURSE
BasePay                     113734.83
OvertimePay                   3292.62
OtherPay                     17335.18
Benefits                          NaN
TotalPay                    134362.63
TotalPayBenefits            134362.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3643, dtype: object)
(3644, Id                                                3645
EmployeeName                             MANNY PASTRAN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        76056.9
OvertimePay                                   50291.68
OtherPay                                       8010.69
Benefits                                           NaN
TotalPay                                     134359.27
TotalPayBenefits                             134359.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3644, dtype: object)
(3645, Id                                              3646
EmployeeName                          MICHAEL CESARI
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.91
OvertimePay                                      0.0
OtherPay                                     3877.68
Benefits                                         NaN
TotalPay                                   134335.59
TotalPayBenefits                           134335.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3645, dtype: object)
(3646, Id                                  3647
EmployeeName              MARCO MAGALLON
JobTitle            IS ENGINEER - SENIOR
BasePay                         118234.7
OvertimePay                          0.0
OtherPay                        16097.85
Benefits                             NaN
TotalPay                       134332.55
TotalPayBenefits               134332.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3646, dtype: object)
(3647, Id                                3648
EmployeeName             BRIAN PEAGLER
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   16604.78
OtherPay                       5325.45
Benefits                           NaN
TotalPay                     134331.31
TotalPayBenefits             134331.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3647, dtype: object)
(3648, Id                              3649
EmployeeName        JULIE KIRSCHBAUM
JobTitle                   PLANNER V
BasePay                    134260.02
OvertimePay                      0.0
OtherPay                        60.0
Benefits                         NaN
TotalPay                   134320.02
TotalPayBenefits           134320.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3648, dtype: object)
(3649, Id                              3650
EmployeeName        DONALD MCCARRELL
JobTitle            REGISTERED NURSE
BasePay                    107928.07
OvertimePay                 10113.97
OtherPay                    16265.94
Benefits                         NaN
TotalPay                   134307.98
TotalPayBenefits           134307.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3649, dtype: object)
(3650, Id                              3651
EmployeeName             AMY HURWITZ
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 12344.34
OtherPay                    15896.55
Benefits                         NaN
TotalPay                   134306.09
TotalPayBenefits           134306.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3650, dtype: object)
(3651, Id                                3652
EmployeeName              JEFFREY ROTH
JobTitle            POLICE OFFICER III
BasePay                      112421.37
OvertimePay                    5046.28
OtherPay                      16829.57
Benefits                           NaN
TotalPay                     134297.22
TotalPayBenefits             134297.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3651, dtype: object)
(3652, Id                              3653
EmployeeName            RICA PARAISO
JobTitle            REGISTERED NURSE
BasePay                    112528.85
OvertimePay                  5707.68
OtherPay                     16059.8
Benefits                         NaN
TotalPay                   134296.33
TotalPayBenefits           134296.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3652, dtype: object)
(3653, Id                                 3654
EmployeeName         BERNARDITA ARRIETA
JobTitle            IS PROJECT DIRECTOR
BasePay                       133135.35
OvertimePay                         0.0
OtherPay                         1143.6
Benefits                            NaN
TotalPay                      134278.95
TotalPayBenefits              134278.95
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3653, dtype: object)
(3654, Id                                 3655
EmployeeName             MARIA BARTEAUX
JobTitle            IS PROJECT DIRECTOR
BasePay                       134269.77
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      134269.77
TotalPayBenefits              134269.77
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3654, dtype: object)
(3655, Id                              3656
EmployeeName        EMELITA HATHAWAY
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   3663.0
OtherPay                     3613.86
Benefits                         NaN
TotalPay                   134260.86
TotalPayBenefits           134260.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3655, dtype: object)
(3656, Id                                                3657
EmployeeName                              KEVIN CLEARY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.56
OvertimePay                                     2771.5
OtherPay                                       1001.52
Benefits                                           NaN
TotalPay                                     134254.58
TotalPayBenefits                             134254.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3656, dtype: object)
(3657, Id                           3658
EmployeeName           KEVIN SHEA
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              10286.73
OtherPay                 18020.31
Benefits                      NaN
TotalPay                134241.71
TotalPayBenefits        134241.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3657, dtype: object)
(3658, Id                            3659
EmployeeName        ROBERT RAMIREZ
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                9200.14
OtherPay                  19090.63
Benefits                       NaN
TotalPay                 134225.43
TotalPayBenefits         134225.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3658, dtype: object)
(3659, Id                              3660
EmployeeName        CLEOTILDE PONGOL
JobTitle            REGISTERED NURSE
BasePay                     125396.7
OvertimePay                  3186.81
OtherPay                     5626.68
Benefits                         NaN
TotalPay                   134210.19
TotalPayBenefits           134210.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3659, dtype: object)
(3660, Id                                                3661
EmployeeName                            LANCE BOSSHARD
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.96
OvertimePay                                    1921.12
OtherPay                                       1827.72
Benefits                                           NaN
TotalPay                                      134206.8
TotalPayBenefits                              134206.8
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3660, dtype: object)
(3661, Id                              3662
EmployeeName             ERIC REBOLI
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  11882.4
OtherPay                    16255.69
Benefits                         NaN
TotalPay                   134203.27
TotalPayBenefits           134203.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3661, dtype: object)
(3662, Id                              3663
EmployeeName          JOSELITO BORJA
JobTitle            REGISTERED NURSE
BasePay                    115714.86
OvertimePay                  4734.18
OtherPay                    13745.18
Benefits                         NaN
TotalPay                   134194.22
TotalPayBenefits           134194.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3662, dtype: object)
(3663, Id                                                3664
EmployeeName                            RAYMOND RAGONA
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130457.6
OvertimePay                                     293.93
OtherPay                                       3437.19
Benefits                                           NaN
TotalPay                                     134188.72
TotalPayBenefits                             134188.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3663, dtype: object)
(3664, Id                                3665
EmployeeName          PATRICK BUTHERUS
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   11801.84
OtherPay                       9964.23
Benefits                           NaN
TotalPay                     134187.51
TotalPayBenefits             134187.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3664, dtype: object)
(3665, Id                                      3666
EmployeeName                    MARTHA BLAKE
JobTitle            CRIME LABORATORY MANAGER
BasePay                             134178.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            134178.0
TotalPayBenefits                    134178.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 3665, dtype: object)
(3666, Id                           3667
EmployeeName          WILEY CHING
JobTitle               PHARMACIST
BasePay                 133399.01
OvertimePay                 761.4
OtherPay                      0.0
Benefits                      NaN
TotalPay                134160.41
TotalPayBenefits        134160.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3666, dtype: object)
(3667, Id                                         3668
EmployeeName                        LESLIE WONG
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123104.99
OvertimePay                             3514.54
OtherPay                                7540.71
Benefits                                    NaN
TotalPay                              134160.24
TotalPayBenefits                      134160.24
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3667, dtype: object)
(3668, Id                                              3669
EmployeeName                        WILLIAM LOEFFLER
JobTitle            SHEET METAL WORKER SUPERVISOR II
BasePay                                     111888.0
OvertimePay                                    333.0
OtherPay                                    21936.38
Benefits                                         NaN
TotalPay                                   134157.38
TotalPayBenefits                           134157.38
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3668, dtype: object)
(3669, Id                                     3670
EmployeeName                   KIM THOMPSON
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           134140.63
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          134140.63
TotalPayBenefits                  134140.63
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3669, dtype: object)
(3670, Id                                           3671
EmployeeName                        MICHAEL REIDY
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                  112050.0
OvertimePay                                797.34
OtherPay                                 21290.73
Benefits                                      NaN
TotalPay                                134138.07
TotalPayBenefits                        134138.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 3670, dtype: object)
(3671, Id                            3672
EmployeeName        ANDREW GLEASON
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay               21537.62
OtherPay                   6664.25
Benefits                       NaN
TotalPay                 134136.54
TotalPayBenefits         134136.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3671, dtype: object)
(3672, Id                              3673
EmployeeName         MA GRACIA LOPEZ
JobTitle            REGISTERED NURSE
BasePay                    123214.76
OvertimePay                  5192.25
OtherPay                     5728.55
Benefits                         NaN
TotalPay                   134135.56
TotalPayBenefits           134135.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3672, dtype: object)
(3673, Id                                3674
EmployeeName             JOSEPH COGGAN
JobTitle            POLICE OFFICER III
BasePay                      117303.66
OvertimePay                    5968.75
OtherPay                      10855.73
Benefits                           NaN
TotalPay                     134128.14
TotalPayBenefits             134128.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3673, dtype: object)
(3674, Id                           3675
EmployeeName          JOHN POWELL
JobTitle               MANAGER VI
BasePay                 127303.43
OvertimePay                   0.0
OtherPay                  6817.19
Benefits                      NaN
TotalPay                134120.62
TotalPayBenefits        134120.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3674, dtype: object)
(3675, Id                                3676
EmployeeName               DANIEL GRAY
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   11300.19
OtherPay                      10392.42
Benefits                           NaN
TotalPay                     134114.06
TotalPayBenefits             134114.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3675, dtype: object)
(3676, Id                                                3677
EmployeeName                            PAULINE HNATOW
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       130476.4
OvertimePay                                        0.0
OtherPay                                       3625.21
Benefits                                           NaN
TotalPay                                     134101.61
TotalPayBenefits                             134101.61
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3676, dtype: object)
(3677, Id                           3678
EmployeeName        WILLIAM WYCKO
JobTitle               MANAGER IV
BasePay                 132982.98
OvertimePay                   0.0
OtherPay                  1116.36
Benefits                      NaN
TotalPay                134099.34
TotalPayBenefits        134099.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3677, dtype: object)
(3678, Id                                              3679
EmployeeName                          DOUGLAS ARNOLD
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130481.55
OvertimePay                                  1110.14
OtherPay                                     2502.48
Benefits                                         NaN
TotalPay                                   134094.17
TotalPayBenefits                           134094.17
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3678, dtype: object)
(3679, Id                           3680
EmployeeName            HENRY TAM
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               7385.89
OtherPay                 20740.92
Benefits                      NaN
TotalPay                134061.47
TotalPayBenefits        134061.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3679, dtype: object)
(3680, Id                                3681
EmployeeName             PAUL GUINASSO
JobTitle            POLICE OFFICER III
BasePay                      112401.04
OvertimePay                    6275.39
OtherPay                      15381.08
Benefits                           NaN
TotalPay                     134057.51
TotalPayBenefits             134057.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3680, dtype: object)
(3681, Id                           3682
EmployeeName        MICHAEL BROWN
JobTitle              MANAGER III
BasePay                  129455.3
OvertimePay                   0.0
OtherPay                   4600.0
Benefits                      NaN
TotalPay                 134055.3
TotalPayBenefits         134055.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3681, dtype: object)
(3682, Id                               3683
EmployeeName        THOMAS HARVEY III
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                  16068.71
OtherPay                      7761.35
Benefits                          NaN
TotalPay                    134053.13
TotalPayBenefits            134053.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3682, dtype: object)
(3683, Id                                                3684
EmployeeName                                JOHN BOSCO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   51593.05
OtherPay                                        4868.0
Benefits                                           NaN
TotalPay                                     134041.45
TotalPayBenefits                             134041.45
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3683, dtype: object)
(3684, Id                                   3685
EmployeeName        MARIA TERESA BAUTISTA
JobTitle                 REGISTERED NURSE
BasePay                         107684.28
OvertimePay                        7238.7
OtherPay                         19108.67
Benefits                              NaN
TotalPay                        134031.65
TotalPayBenefits                134031.65
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3684, dtype: object)
(3685, Id                             3686
EmployeeName        ZACHARY TIBBITS
JobTitle                FIREFIGHTER
BasePay                   106270.61
OvertimePay                17207.28
OtherPay                    10548.3
Benefits                        NaN
TotalPay                  134026.19
TotalPayBenefits          134026.19
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3685, dtype: object)
(3686, Id                              3687
EmployeeName        NICHOLAS TERRITO
JobTitle            POLICE OFFICER I
BasePay                    103922.39
OvertimePay                  5616.51
OtherPay                    24486.29
Benefits                         NaN
TotalPay                   134025.19
TotalPayBenefits           134025.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3686, dtype: object)
(3687, Id                           3688
EmployeeName          ELAINA CHIN
JobTitle               PHARMACIST
BasePay                 133399.03
OvertimePay                   0.0
OtherPay                   623.99
Benefits                      NaN
TotalPay                134023.02
TotalPayBenefits        134023.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3687, dtype: object)
(3688, Id                              3689
EmployeeName         SERAFIN ESTRADA
JobTitle            REGISTERED NURSE
BasePay                    119652.51
OvertimePay                  8511.91
OtherPay                     5841.41
Benefits                         NaN
TotalPay                   134005.83
TotalPayBenefits           134005.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3688, dtype: object)
(3689, Id                                3690
EmployeeName               STANLEY LEE
JobTitle            POLICE OFFICER III
BasePay                      112405.47
OvertimePay                    7589.08
OtherPay                      14006.52
Benefits                           NaN
TotalPay                     134001.07
TotalPayBenefits             134001.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3689, dtype: object)
(3690, Id                                               3691
EmployeeName                                THIP SIAO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  34526.25
OtherPay                                        460.0
Benefits                                          NaN
TotalPay                                    134000.65
TotalPayBenefits                            134000.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3690, dtype: object)
(3691, Id                                   3692
EmployeeName             LUIS CASTELLANOS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95882.18
OvertimePay                      30644.22
OtherPay                          7473.72
Benefits                              NaN
TotalPay                        134000.12
TotalPayBenefits                134000.12
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3691, dtype: object)
(3692, Id                                                3693
EmployeeName                            ROBERT ZIEGLER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.51
OvertimePay                                    2130.71
OtherPay                                       1382.12
Benefits                                           NaN
TotalPay                                     133994.34
TotalPayBenefits                             133994.34
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3692, dtype: object)
(3693, Id                                3694
EmployeeName                 ADAM CHOY
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   11106.91
OtherPay                      10503.29
Benefits                           NaN
TotalPay                     133990.91
TotalPayBenefits             133990.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3693, dtype: object)
(3694, Id                           3695
EmployeeName         DIANE OSHIMA
JobTitle               MANAGER IV
BasePay                 133989.36
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                133989.36
TotalPayBenefits        133989.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3694, dtype: object)
(3695, Id                                3696
EmployeeName          DAVID BATCHELDER
JobTitle            POLICE OFFICER III
BasePay                      108084.27
OvertimePay                   15011.08
OtherPay                      10883.84
Benefits                           NaN
TotalPay                     133979.19
TotalPayBenefits             133979.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3695, dtype: object)
(3696, Id                                        3697
EmployeeName                   FREDERICK TIZON
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               96520.59
OvertimePay                            7272.33
OtherPay                              30174.79
Benefits                                   NaN
TotalPay                             133967.71
TotalPayBenefits                     133967.71
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 3696, dtype: object)
(3697, Id                               3698
EmployeeName        ANTONIETA GAVIOLA
JobTitle             REGISTERED NURSE
BasePay                     126901.11
OvertimePay                    4395.6
OtherPay                      2667.58
Benefits                          NaN
TotalPay                    133964.29
TotalPayBenefits            133964.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3697, dtype: object)
(3698, Id                            3699
EmployeeName        MICHAEL RUSTIA
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                6279.49
OtherPay                   21736.3
Benefits                       NaN
TotalPay                 133950.45
TotalPayBenefits         133950.45
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3698, dtype: object)
(3699, Id                                3700
EmployeeName            DAVID WAKAYAMA
JobTitle            POLICE OFFICER III
BasePay                      112175.45
OvertimePay                   11733.83
OtherPay                      10040.08
Benefits                           NaN
TotalPay                     133949.36
TotalPayBenefits             133949.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3699, dtype: object)
(3700, Id                                3701
EmployeeName              RAY SALVADOR
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   11068.35
OtherPay                      10474.09
Benefits                           NaN
TotalPay                     133943.51
TotalPayBenefits             133943.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3700, dtype: object)
(3701, Id                                              3702
EmployeeName                           DAVID COLLINS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.39
OvertimePay                                      0.0
OtherPay                                     3429.29
Benefits                                         NaN
TotalPay                                   133905.68
TotalPayBenefits                           133905.68
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3701, dtype: object)
(3702, Id                           3703
EmployeeName        TIMOTHY HINES
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                   1662.7
Benefits                      NaN
TotalPay                 133905.2
TotalPayBenefits         133905.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3702, dtype: object)
(3703, Id                                               3704
EmployeeName                       MICHAEL DE LORENZO
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96685.05
OvertimePay                                  18010.61
OtherPay                                      19193.7
Benefits                                          NaN
TotalPay                                    133889.36
TotalPayBenefits                            133889.36
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3703, dtype: object)
(3704, Id                             3705
EmployeeName            ANDREW SHUM
JobTitle            SENIOR ENGINEER
BasePay                    128791.0
OvertimePay                     0.0
OtherPay                    5098.02
Benefits                        NaN
TotalPay                  133889.02
TotalPayBenefits          133889.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3704, dtype: object)
(3705, Id                                                3706
EmployeeName                           MICHAEL ZURCHER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.65
OvertimePay                                        0.0
OtherPay                                       3429.46
Benefits                                           NaN
TotalPay                                     133887.11
TotalPayBenefits                             133887.11
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3705, dtype: object)
(3706, Id                                3707
EmployeeName             DAVID ASSMANN
JobTitle            DEPUTY DIRECTOR II
BasePay                      133886.58
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     133886.58
TotalPayBenefits             133886.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3706, dtype: object)
(3707, Id                              3708
EmployeeName           JASSEN DONGON
JobTitle            POLICE OFFICER I
BasePay                     96566.34
OvertimePay                  8157.78
OtherPay                    29161.23
Benefits                         NaN
TotalPay                   133885.35
TotalPayBenefits           133885.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3707, dtype: object)
(3708, Id                           3709
EmployeeName        FRANCES FOCHA
JobTitle              FIREFIGHTER
BasePay                 105650.62
OvertimePay               8857.71
OtherPay                 19376.27
Benefits                      NaN
TotalPay                 133884.6
TotalPayBenefits         133884.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3708, dtype: object)
(3709, Id                              3710
EmployeeName           ERNA FACULTAD
JobTitle            REGISTERED NURSE
BasePay                     124536.0
OvertimePay                  4184.78
OtherPay                     5151.67
Benefits                         NaN
TotalPay                   133872.45
TotalPayBenefits           133872.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3709, dtype: object)
(3710, Id                               3711
EmployeeName          MAUREEN LEONARD
JobTitle            POLICE OFFICER II
BasePay                     108643.05
OvertimePay                    2585.5
OtherPay                     22636.99
Benefits                          NaN
TotalPay                    133865.54
TotalPayBenefits            133865.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3710, dtype: object)
(3711, Id                                  3712
EmployeeName              JAMALA SANFORD
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121628.54
OvertimePay                       4453.6
OtherPay                         7776.09
Benefits                             NaN
TotalPay                       133858.23
TotalPayBenefits               133858.23
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3711, dtype: object)
(3712, Id                                   3713
EmployeeName                 ROMAN SHUBOV
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                         26735.32
Benefits                              NaN
TotalPay                        133852.73
TotalPayBenefits                133852.73
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3712, dtype: object)
(3713, Id                                3714
EmployeeName                 LEO KIANG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    3038.53
OtherPay                      18407.53
Benefits                           NaN
TotalPay                     133847.13
TotalPayBenefits             133847.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3713, dtype: object)
(3714, Id                               3715
EmployeeName        LORRAINE THIEBAUD
JobTitle             REGISTERED NURSE
BasePay                     112612.81
OvertimePay                   7774.72
OtherPay                     13459.37
Benefits                          NaN
TotalPay                     133846.9
TotalPayBenefits             133846.9
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3714, dtype: object)
(3715, Id                                3716
EmployeeName            TIMOTHY GIBSON
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8625.57
OtherPay                      12770.73
Benefits                           NaN
TotalPay                     133817.75
TotalPayBenefits             133817.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3715, dtype: object)
(3716, Id                                3717
EmployeeName            MICHAEL PETUYA
JobTitle            POLICE OFFICER III
BasePay                       112421.2
OvertimePay                    6255.17
OtherPay                      15124.23
Benefits                           NaN
TotalPay                      133800.6
TotalPayBenefits              133800.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3716, dtype: object)
(3717, Id                               3718
EmployeeName             MATHEW NEVES
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                  10518.38
OtherPay                     13038.23
Benefits                          NaN
TotalPay                    133799.54
TotalPayBenefits            133799.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3717, dtype: object)
(3718, Id                                    3719
EmployeeName                    EDWIN DIAZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.63
OvertimePay                       14675.06
OtherPay                          12680.93
Benefits                               NaN
TotalPay                         133797.62
TotalPayBenefits                 133797.62
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3718, dtype: object)
(3719, Id                                3720
EmployeeName              MARIA DONATI
JobTitle            POLICE OFFICER III
BasePay                      112441.83
OvertimePay                   10593.01
OtherPay                      10757.52
Benefits                           NaN
TotalPay                     133792.36
TotalPayBenefits             133792.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3719, dtype: object)
(3720, Id                              3721
EmployeeName            MARIA FERIDO
JobTitle            REGISTERED NURSE
BasePay                     126739.8
OvertimePay                   5128.2
OtherPay                     1907.51
Benefits                         NaN
TotalPay                   133775.51
TotalPayBenefits           133775.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3720, dtype: object)
(3721, Id                               3722
EmployeeName          ROBERT VERNENGO
JobTitle            POLICE OFFICER II
BasePay                     110223.01
OvertimePay                    3450.7
OtherPay                     20100.64
Benefits                          NaN
TotalPay                    133774.35
TotalPayBenefits            133774.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3721, dtype: object)
(3722, Id                           3723
EmployeeName           PAUL DAIJO
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay              17021.43
OtherPay                 10801.73
Benefits                      NaN
TotalPay                 133757.8
TotalPayBenefits         133757.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3722, dtype: object)
(3723, Id                                                3724
EmployeeName                           THEODORE MULLIN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.88
OvertimePay                                    1921.12
OtherPay                                       1378.65
Benefits                                           NaN
TotalPay                                     133757.65
TotalPayBenefits                             133757.65
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3723, dtype: object)
(3724, Id                              3725
EmployeeName            SISINIA GONG
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   5128.2
OtherPay                     1641.94
Benefits                         NaN
TotalPay                   133754.14
TotalPayBenefits           133754.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3724, dtype: object)
(3725, Id                                3726
EmployeeName               NOEL SCHWAB
JobTitle            POLICE OFFICER III
BasePay                      112401.01
OvertimePay                   10381.64
OtherPay                      10961.05
Benefits                           NaN
TotalPay                      133743.7
TotalPayBenefits              133743.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3725, dtype: object)
(3726, Id                                3727
EmployeeName            JAMES PANDOLFI
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    6856.07
OtherPay                      14458.92
Benefits                           NaN
TotalPay                     133736.45
TotalPayBenefits             133736.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3726, dtype: object)
(3727, Id                                3728
EmployeeName             MICHAEL YOUNG
JobTitle            POLICE OFFICER III
BasePay                      112417.24
OvertimePay                    4341.88
OtherPay                      16945.86
Benefits                           NaN
TotalPay                     133704.98
TotalPayBenefits             133704.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3727, dtype: object)
(3728, Id                                       3729
EmployeeName                         KIN TONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             133696.88
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            133696.88
TotalPayBenefits                    133696.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3728, dtype: object)
(3729, Id                                3730
EmployeeName             STEVEN MURPHY
JobTitle            POLICE OFFICER III
BasePay                      117262.91
OvertimePay                    7131.99
OtherPay                       9299.71
Benefits                           NaN
TotalPay                     133694.61
TotalPayBenefits             133694.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3729, dtype: object)
(3730, Id                           3731
EmployeeName          WAYLEN WANG
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              17123.87
OtherPay                 10631.22
Benefits                      NaN
TotalPay                133689.75
TotalPayBenefits        133689.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3730, dtype: object)
(3731, Id                                                3732
EmployeeName                             KITT CRENSHAW
JobTitle            COMMANDER III, (POLICE DEPARTMENT)
BasePay                                        18736.8
OvertimePay                                     7992.0
OtherPay                                     106926.93
Benefits                                           NaN
TotalPay                                     133655.73
TotalPayBenefits                             133655.73
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3731, dtype: object)
(3732, Id                              3733
EmployeeName             ERLINDA TAN
JobTitle            REGISTERED NURSE
BasePay                     118640.9
OvertimePay                   4029.3
OtherPay                     10982.5
Benefits                         NaN
TotalPay                    133652.7
TotalPayBenefits            133652.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3732, dtype: object)
(3733, Id                              3734
EmployeeName           SCOTT MCBRIDE
JobTitle            POLICE OFFICER I
BasePay                     99075.45
OvertimePay                 32492.81
OtherPay                     2070.63
Benefits                         NaN
TotalPay                   133638.89
TotalPayBenefits           133638.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3733, dtype: object)
(3734, Id                               3735
EmployeeName        LORRAINE KILLPACK
JobTitle                  MANAGER III
BasePay                     133633.49
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    133633.49
TotalPayBenefits            133633.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3734, dtype: object)
(3735, Id                           3736
EmployeeName         SHARON KWONG
JobTitle              MANAGER III
BasePay                 133633.48
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                133633.48
TotalPayBenefits        133633.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3735, dtype: object)
(3736, Id                                 3737
EmployeeName        VIOLETA EVANGELISTA
JobTitle                  SPECIAL NURSE
BasePay                       116561.32
OvertimePay                         0.0
OtherPay                        17063.4
Benefits                            NaN
TotalPay                      133624.72
TotalPayBenefits              133624.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3736, dtype: object)
(3737, Id                                          3738
EmployeeName                       MICHAEL KENNY
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 101845.9
OvertimePay                             13950.79
OtherPay                                17823.17
Benefits                                     NaN
TotalPay                               133619.86
TotalPayBenefits                       133619.86
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3737, dtype: object)
(3738, Id                              3739
EmployeeName         FIDELITA BUSTOS
JobTitle            REGISTERED NURSE
BasePay                    122548.11
OvertimePay                  7308.44
OtherPay                     3748.17
Benefits                         NaN
TotalPay                   133604.72
TotalPayBenefits           133604.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3738, dtype: object)
(3739, Id                                                              3740
EmployeeName                                           PARVEEN JOSHI
JobTitle            CHIEF STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                    101244.04
OvertimePay                                                 15069.69
OtherPay                                                    17279.29
Benefits                                                         NaN
TotalPay                                                   133593.02
TotalPayBenefits                                           133593.02
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 3739, dtype: object)
(3740, Id                                3741
EmployeeName                  TOMMY AU
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   42873.02
OtherPay                        2653.0
Benefits                           NaN
TotalPay                     133588.02
TotalPayBenefits             133588.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3740, dtype: object)
(3741, Id                               3742
EmployeeName        ELIZABETH HEWLETT
JobTitle             REGISTERED NURSE
BasePay                     118968.14
OvertimePay                   5678.87
OtherPay                      8933.71
Benefits                          NaN
TotalPay                    133580.72
TotalPayBenefits            133580.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3741, dtype: object)
(3742, Id                                         3743
EmployeeName                         SUMAN GONA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               128082.22
OvertimePay                                 0.0
OtherPay                                5491.73
Benefits                                    NaN
TotalPay                              133573.95
TotalPayBenefits                      133573.95
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3742, dtype: object)
(3743, Id                                                         3744
EmployeeName                                    ELOIDA LEONARDO
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                               133559.22
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                              133559.22
TotalPayBenefits                                      133559.22
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3743, dtype: object)
(3744, Id                              3745
EmployeeName            NELLIE SARTE
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                  6618.69
OtherPay                    11056.11
Benefits                         NaN
TotalPay                    133556.8
TotalPayBenefits            133556.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3744, dtype: object)
(3745, Id                             3746
EmployeeName        NICHOLAS HELMER
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                 17869.5
OtherPay                    9752.35
Benefits                        NaN
TotalPay                  133556.53
TotalPayBenefits          133556.53
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3745, dtype: object)
(3746, Id                                3747
EmployeeName              TREVOR KELLY
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                     2550.6
OtherPay                      18578.23
Benefits                           NaN
TotalPay                     133550.27
TotalPayBenefits             133550.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3746, dtype: object)
(3747, Id                                   3748
EmployeeName        SIRINIRUNDOR SIRIPORN
JobTitle                 REGISTERED NURSE
BasePay                         110105.94
OvertimePay                       8641.17
OtherPay                         14778.66
Benefits                              NaN
TotalPay                        133525.77
TotalPayBenefits                133525.77
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3747, dtype: object)
(3748, Id                                                          3749
EmployeeName                                       GARY WILLIAMS
JobTitle            SUPERINTENDENT OF WATER TREATMENT FACILITIES
BasePay                                                 120763.3
OvertimePay                                                  0.0
OtherPay                                                12759.43
Benefits                                                     NaN
TotalPay                                               133522.73
TotalPayBenefits                                       133522.73
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 3748, dtype: object)
(3749, Id                                3750
EmployeeName               JOSE MACIAS
JobTitle            POLICE OFFICER III
BasePay                      112380.64
OvertimePay                    4480.77
OtherPay                      16660.91
Benefits                           NaN
TotalPay                     133522.32
TotalPayBenefits             133522.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3749, dtype: object)
(3750, Id                            3751
EmployeeName             VICTOR LE
JobTitle            DEPUTY SHERIFF
BasePay                   85475.19
OvertimePay               37865.02
OtherPay                  10172.47
Benefits                       NaN
TotalPay                 133512.68
TotalPayBenefits         133512.68
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3750, dtype: object)
(3751, Id                              3752
EmployeeName            BELLA DIONES
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   5128.2
OtherPay                     1382.48
Benefits                         NaN
TotalPay                   133494.68
TotalPayBenefits           133494.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3751, dtype: object)
(3752, Id                                              3753
EmployeeName                      VIRGINIA FONTANESI
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                      73458.0
OvertimePay                                 50989.01
OtherPay                                     9034.75
Benefits                                         NaN
TotalPay                                   133481.76
TotalPayBenefits                           133481.76
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3752, dtype: object)
(3753, Id                                       3754
EmployeeName               CLIFFORD SMETHURST
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92875.2
OvertimePay                          30941.34
OtherPay                               9639.6
Benefits                                  NaN
TotalPay                            133456.14
TotalPayBenefits                    133456.14
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3753, dtype: object)
(3754, Id                                3755
EmployeeName              MARK LANTRIP
JobTitle            POLICE OFFICER III
BasePay                      117283.31
OvertimePay                   11749.12
OtherPay                       4411.23
Benefits                           NaN
TotalPay                     133443.66
TotalPayBenefits             133443.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3754, dtype: object)
(3755, Id                              3756
EmployeeName        CECILIA BAUTISTA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   2930.4
OtherPay                     3522.28
Benefits                         NaN
TotalPay                   133436.68
TotalPayBenefits           133436.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3755, dtype: object)
(3756, Id                              3757
EmployeeName          JAMES TACCHINI
JobTitle            POLICE OFFICER I
BasePay                      97992.3
OvertimePay                 19483.96
OtherPay                    15957.27
Benefits                         NaN
TotalPay                   133433.53
TotalPayBenefits           133433.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3756, dtype: object)
(3757, Id                               3758
EmployeeName        FERNANDO CISNEROS
JobTitle              SENIOR ENGINEER
BasePay                     133422.12
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    133422.12
TotalPayBenefits            133422.12
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3757, dtype: object)
(3758, Id                                3759
EmployeeName             JEFFREY BROWN
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    13023.5
OtherPay                       7985.09
Benefits                           NaN
TotalPay                     133409.64
TotalPayBenefits             133409.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3758, dtype: object)
(3759, Id                           3760
EmployeeName           BRUCE WONG
JobTitle               PHARMACIST
BasePay                 133399.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                133399.01
TotalPayBenefits        133399.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3759, dtype: object)
(3760, Id                             3761
EmployeeName        ELIZABETH LEAHY
JobTitle                FIREFIGHTER
BasePay                   101869.36
OvertimePay                14695.45
OtherPay                   16824.71
Benefits                        NaN
TotalPay                  133389.52
TotalPayBenefits          133389.52
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3760, dtype: object)
(3761, Id                               3762
EmployeeName            KENNETH BATES
JobTitle            POLICE OFFICER II
BasePay                     109788.75
OvertimePay                   8322.25
OtherPay                     15254.59
Benefits                          NaN
TotalPay                    133365.59
TotalPayBenefits            133365.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3761, dtype: object)
(3762, Id                              3763
EmployeeName        NOIME VENTENILLA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   3663.0
OtherPay                     2716.42
Benefits                         NaN
TotalPay                   133363.42
TotalPayBenefits           133363.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3762, dtype: object)
(3763, Id                               3764
EmployeeName         MATTHEW SULLIVAN
JobTitle            POLICE OFFICER II
BasePay                      95636.67
OvertimePay                   8882.45
OtherPay                     28831.58
Benefits                          NaN
TotalPay                     133350.7
TotalPayBenefits             133350.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3763, dtype: object)
(3764, Id                           3765
EmployeeName          THOMAS HULL
JobTitle                 ENGINEER
BasePay                 120937.07
OvertimePay                   0.0
OtherPay                 12405.27
Benefits                      NaN
TotalPay                133342.34
TotalPayBenefits        133342.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3764, dtype: object)
(3765, Id                                 3766
EmployeeName                 KENT LEUNG
JobTitle            STRUCTURAL ENGINEER
BasePay                       133332.06
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      133332.06
TotalPayBenefits              133332.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3765, dtype: object)
(3766, Id                                 3767
EmployeeName                 HOWARD ZEE
JobTitle            STRUCTURAL ENGINEER
BasePay                       133332.02
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      133332.02
TotalPayBenefits              133332.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3766, dtype: object)
(3767, Id                                 3768
EmployeeName                SHUANG CHEN
JobTitle            STRUCTURAL ENGINEER
BasePay                       133332.02
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      133332.02
TotalPayBenefits              133332.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3767, dtype: object)
(3768, Id                                 3769
EmployeeName                    GARY HO
JobTitle            STRUCTURAL ENGINEER
BasePay                        133332.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       133332.0
TotalPayBenefits               133332.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3768, dtype: object)
(3769, Id                           3770
EmployeeName        DAVID BEAUPRE
JobTitle                PLANNER V
BasePay                  133332.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 133332.0
TotalPayBenefits         133332.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3769, dtype: object)
(3770, Id                                     3771
EmployeeName                     JEFFREY MA
JobTitle            BUILDING PLANS ENGINEER
BasePay                            133332.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           133332.0
TotalPayBenefits                   133332.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3770, dtype: object)
(3771, Id                                3772
EmployeeName             KENNETH JOMOC
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   37973.13
OtherPay                       5263.81
Benefits                           NaN
TotalPay                     133331.14
TotalPayBenefits             133331.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3771, dtype: object)
(3772, Id                           3773
EmployeeName         YU-LANG CHEN
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                 12388.85
Benefits                      NaN
TotalPay                133325.95
TotalPayBenefits        133325.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3772, dtype: object)
(3773, Id                            3774
EmployeeName        PATRICK HANNAN
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               15580.44
OtherPay                  11800.02
Benefits                       NaN
TotalPay                  133315.1
TotalPayBenefits          133315.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3773, dtype: object)
(3774, Id                                    3775
EmployeeName                JAMES FERRANTE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          119163.52
OvertimePay                       10780.93
OtherPay                           3369.84
Benefits                               NaN
TotalPay                         133314.29
TotalPayBenefits                 133314.29
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3774, dtype: object)
(3775, Id                               3776
EmployeeName            ANITA SANCHEZ
JobTitle            DEPARTMENT HEAD I
BasePay                     133313.87
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    133313.87
TotalPayBenefits            133313.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3775, dtype: object)
(3776, Id                            3777
EmployeeName        JOCELYN WEILER
JobTitle             SPECIAL NURSE
BasePay                  111327.19
OvertimePay               14288.83
OtherPay                   7689.01
Benefits                       NaN
TotalPay                 133305.03
TotalPayBenefits         133305.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3776, dtype: object)
(3777, Id                            3778
EmployeeName          JULIO MOLINA
JobTitle            DEPUTY SHERIFF
BasePay                   77579.89
OvertimePay               44665.35
OtherPay                   11046.0
Benefits                       NaN
TotalPay                 133291.24
TotalPayBenefits         133291.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3777, dtype: object)
(3778, Id                                3779
EmployeeName               RODNEY CHAN
JobTitle            POLICE OFFICER III
BasePay                      112093.45
OvertimePay                    6140.34
OtherPay                      15027.65
Benefits                           NaN
TotalPay                     133261.44
TotalPayBenefits             133261.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3778, dtype: object)
(3779, Id                              3780
EmployeeName             JOHN MURPHY
JobTitle            POLICE OFFICER I
BasePay                     99960.07
OvertimePay                 11319.91
OtherPay                    21963.27
Benefits                         NaN
TotalPay                   133243.25
TotalPayBenefits           133243.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3779, dtype: object)
(3780, Id                               3781
EmployeeName              MARK FRAIZE
JobTitle            POLICE OFFICER II
BasePay                     106510.39
OvertimePay                   9518.53
OtherPay                     17205.16
Benefits                          NaN
TotalPay                    133234.08
TotalPayBenefits            133234.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3780, dtype: object)
(3781, Id                                3782
EmployeeName            REGINALD SCOTT
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    7365.65
OtherPay                      13432.87
Benefits                           NaN
TotalPay                     133219.94
TotalPayBenefits             133219.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3781, dtype: object)
(3782, Id                                3783
EmployeeName           MATTHEW HASKELL
JobTitle            SHERIFF'S SERGEANT
BasePay                       106106.1
OvertimePay                   16309.17
OtherPay                      10790.49
Benefits                           NaN
TotalPay                     133205.76
TotalPayBenefits             133205.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3782, dtype: object)
(3783, Id                                3784
EmployeeName         JENNIFER KANENAGA
JobTitle            NURSE PRACTITIONER
BasePay                      132953.74
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     133203.74
TotalPayBenefits             133203.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3783, dtype: object)
(3784, Id                                3785
EmployeeName            VAL ALTAMIRANO
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                   11310.67
OtherPay                       9470.73
Benefits                           NaN
TotalPay                     133202.86
TotalPayBenefits             133202.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3784, dtype: object)
(3785, Id                              3786
EmployeeName           EDRIC TALUSAN
JobTitle            POLICE OFFICER I
BasePay                     103602.2
OvertimePay                  8197.66
OtherPay                    21402.87
Benefits                         NaN
TotalPay                   133202.73
TotalPayBenefits           133202.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3785, dtype: object)
(3786, Id                                3787
EmployeeName          MARTIN KILGARIFF
JobTitle            POLICE OFFICER III
BasePay                       117283.3
OvertimePay                    6108.77
OtherPay                       9808.76
Benefits                           NaN
TotalPay                     133200.83
TotalPayBenefits             133200.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3786, dtype: object)
(3787, Id                                             3788
EmployeeName                       RAYMOND DRISCOLL
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.05
OvertimePay                                     0.0
OtherPay                                   17368.02
Benefits                                        NaN
TotalPay                                  133185.07
TotalPayBenefits                          133185.07
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3787, dtype: object)
(3788, Id                                   3789
EmployeeName                 JAMES ARAGON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96252.0
OvertimePay                      30296.59
OtherPay                           6633.0
Benefits                              NaN
TotalPay                        133181.59
TotalPayBenefits                133181.59
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3788, dtype: object)
(3789, Id                                 3790
EmployeeName               JOSEPH ROGER
JobTitle            STRUCTURAL ENGINEER
BasePay                        133172.3
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       133172.3
TotalPayBenefits               133172.3
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3789, dtype: object)
(3790, Id                                     3791
EmployeeName                   GEORGE DUGAN
JobTitle            SEWER REPAIR SUPERVISOR
BasePay                            95268.82
OvertimePay                        22766.85
OtherPay                           15128.27
Benefits                                NaN
TotalPay                          133163.94
TotalPayBenefits                  133163.94
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3790, dtype: object)
(3791, Id                              3792
EmployeeName        JOSEPHINE POFSKY
JobTitle                  MANAGER IV
BasePay                     133152.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    133152.5
TotalPayBenefits            133152.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3791, dtype: object)
(3792, Id                                3793
EmployeeName        JACQUELINE GILBERT
JobTitle            NURSE PRACTITIONER
BasePay                      132898.85
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     133148.85
TotalPayBenefits             133148.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3792, dtype: object)
(3793, Id                                 3794
EmployeeName             ELLEN SAKOLOFF
JobTitle            PUBLIC HEALTH NURSE
BasePay                       126984.04
OvertimePay                         0.0
OtherPay                        6153.16
Benefits                            NaN
TotalPay                       133137.2
TotalPayBenefits               133137.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3793, dtype: object)
(3794, Id                                3795
EmployeeName        MARTIN COVARRUBIAS
JobTitle             POLICE OFFICER II
BasePay                      109768.91
OvertimePay                   11019.09
OtherPay                      12322.77
Benefits                           NaN
TotalPay                     133110.77
TotalPayBenefits             133110.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3794, dtype: object)
(3795, Id                                3796
EmployeeName        IMELDA DEL ROSARIO
JobTitle              REGISTERED NURSE
BasePay                      125503.54
OvertimePay                     5860.8
OtherPay                       1739.62
Benefits                           NaN
TotalPay                     133103.96
TotalPayBenefits             133103.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3795, dtype: object)
(3796, Id                                3797
EmployeeName           ROLANDO CANALES
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    7587.06
OtherPay                      13128.27
Benefits                           NaN
TotalPay                     133096.04
TotalPayBenefits             133096.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3796, dtype: object)
(3797, Id                                                  3798
EmployeeName                                   DAVID LEE
JobTitle            AUTOMOTIVE TRANSIT SHOP SUPERVISOR I
BasePay                                        108519.07
OvertimePay                                     16733.35
OtherPay                                         7838.09
Benefits                                             NaN
TotalPay                                       133090.51
TotalPayBenefits                               133090.51
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 3797, dtype: object)
(3798, Id                               3799
EmployeeName        GILBERT JACOBS JR
JobTitle                  FIREFIGHTER
BasePay                       96403.2
OvertimePay                  22003.67
OtherPay                     14672.04
Benefits                          NaN
TotalPay                    133078.91
TotalPayBenefits            133078.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3798, dtype: object)
(3799, Id                              3800
EmployeeName           DUNCAN DUFFIN
JobTitle            POLICE OFFICER I
BasePay                      99252.2
OvertimePay                 30525.26
OtherPay                     3300.07
Benefits                         NaN
TotalPay                   133077.53
TotalPayBenefits           133077.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3799, dtype: object)
(3800, Id                            3801
EmployeeName        RICHARD HILLIS
JobTitle                MANAGER VI
BasePay                  105971.93
OvertimePay                    0.0
OtherPay                   27085.5
Benefits                       NaN
TotalPay                 133057.43
TotalPayBenefits         133057.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3800, dtype: object)
(3801, Id                                             3802
EmployeeName                        WILLIAM O'BRIEN
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   113667.91
OvertimePay                                 9419.96
OtherPay                                    9962.56
Benefits                                        NaN
TotalPay                                  133050.43
TotalPayBenefits                          133050.43
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3801, dtype: object)
(3802, Id                             3803
EmployeeName        PATRICK DOHERTY
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                 9836.93
OtherPay                   17272.36
Benefits                        NaN
TotalPay                  133043.95
TotalPayBenefits          133043.95
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3802, dtype: object)
(3803, Id                           3804
EmployeeName           TRACY KWOK
JobTitle              MANAGER III
BasePay                 132046.73
OvertimePay                   0.0
OtherPay                   993.94
Benefits                      NaN
TotalPay                133040.67
TotalPayBenefits        133040.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3803, dtype: object)
(3804, Id                                 3805
EmployeeName                  ALICE YUE
JobTitle            PUBLIC HEALTH NURSE
BasePay                        126984.0
OvertimePay                         0.0
OtherPay                        6053.05
Benefits                            NaN
TotalPay                      133037.05
TotalPayBenefits              133037.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3804, dtype: object)
(3805, Id                              3806
EmployeeName             JOHN CATHEY
JobTitle            POLICE OFFICER I
BasePay                    103459.96
OvertimePay                 13713.18
OtherPay                    15848.91
Benefits                         NaN
TotalPay                   133022.05
TotalPayBenefits           133022.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3805, dtype: object)
(3806, Id                             3807
EmployeeName        IQBALBHAI DHAPA
JobTitle            SENIOR ENGINEER
BasePay                   133015.34
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  133015.34
TotalPayBenefits          133015.34
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3806, dtype: object)
(3807, Id                                       3808
EmployeeName                       OCEAN BERG
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             132663.37
OvertimePay                               0.0
OtherPay                                334.3
Benefits                                  NaN
TotalPay                            132997.67
TotalPayBenefits                    132997.67
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3807, dtype: object)
(3808, Id                               3809
EmployeeName            JOSEPH ROBLES
JobTitle            POLICE OFFICER II
BasePay                     115125.19
OvertimePay                   5252.42
OtherPay                      12618.7
Benefits                          NaN
TotalPay                    132996.31
TotalPayBenefits            132996.31
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3808, dtype: object)
(3809, Id                                  3810
EmployeeName                  JOHN MINOR
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121337.97
OvertimePay                      2147.19
OtherPay                         9498.75
Benefits                             NaN
TotalPay                       132983.91
TotalPayBenefits               132983.91
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3809, dtype: object)
(3810, Id                              3811
EmployeeName        HUMBERTO PILARTE
JobTitle                 FIREFIGHTER
BasePay                    104149.43
OvertimePay                 12114.85
OtherPay                    16706.73
Benefits                         NaN
TotalPay                   132971.01
TotalPayBenefits           132971.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3810, dtype: object)
(3811, Id                                3812
EmployeeName            DOUGLAS FARMER
JobTitle            POLICE OFFICER III
BasePay                      110950.82
OvertimePay                   11297.99
OtherPay                      10720.32
Benefits                           NaN
TotalPay                     132969.13
TotalPayBenefits             132969.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3811, dtype: object)
(3812, Id                                               3813
EmployeeName                                 RYAN MAK
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  25542.79
OtherPay                                      8401.32
Benefits                                          NaN
TotalPay                                    132958.51
TotalPayBenefits                            132958.51
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3812, dtype: object)
(3813, Id                              3814
EmployeeName         JOCELYN MADAMBA
JobTitle            REGISTERED NURSE
BasePay                    110799.64
OvertimePay                  3846.15
OtherPay                    18295.02
Benefits                         NaN
TotalPay                   132940.81
TotalPayBenefits           132940.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3813, dtype: object)
(3814, Id                                3815
EmployeeName               CRAIG LEUNG
JobTitle            POLICE OFFICER III
BasePay                      112441.81
OvertimePay                   11118.66
OtherPay                       9375.52
Benefits                           NaN
TotalPay                     132935.99
TotalPayBenefits             132935.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3814, dtype: object)
(3815, Id                                3816
EmployeeName             RAUL MENDIETA
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                   13683.73
OtherPay                        6838.0
Benefits                           NaN
TotalPay                     132922.82
TotalPayBenefits             132922.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3815, dtype: object)
(3816, Id                            3817
EmployeeName        THOMAS O'BRIEN
JobTitle               FIREFIGHTER
BasePay                   104092.8
OvertimePay               20044.34
OtherPay                   8780.79
Benefits                       NaN
TotalPay                 132917.93
TotalPayBenefits         132917.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3816, dtype: object)
(3817, Id                              3818
EmployeeName             YU-RUO WANG
JobTitle            REGISTERED NURSE
BasePay                    123240.12
OvertimePay                   2221.9
OtherPay                      7447.5
Benefits                         NaN
TotalPay                   132909.52
TotalPayBenefits           132909.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3817, dtype: object)
(3818, Id                              3819
EmployeeName          FIDEL GONZALEZ
JobTitle            POLICE OFFICER I
BasePay                     99181.26
OvertimePay                 10078.63
OtherPay                    23646.45
Benefits                         NaN
TotalPay                   132906.34
TotalPayBenefits           132906.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3818, dtype: object)
(3819, Id                                3820
EmployeeName              JOSE JIMENEZ
JobTitle            POLICE OFFICER III
BasePay                      112380.64
OvertimePay                    5954.06
OtherPay                      14558.73
Benefits                           NaN
TotalPay                     132893.43
TotalPayBenefits             132893.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3819, dtype: object)
(3820, Id                                                               3821
EmployeeName                                               ALBERT HOM
JobTitle            INSPECTOR, BUREAU OF FIRE PREVENTION AND PUBLI...
BasePay                                                     117412.05
OvertimePay                                                   3074.83
OtherPay                                                     12397.24
Benefits                                                          NaN
TotalPay                                                    132884.12
TotalPayBenefits                                            132884.12
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3820, dtype: object)
(3821, Id                                3822
EmployeeName               NELSON WONG
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                   10976.86
OtherPay                       9523.42
Benefits                           NaN
TotalPay                     132880.99
TotalPayBenefits             132880.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3821, dtype: object)
(3822, Id                                3823
EmployeeName           SHANTE WILLIAMS
JobTitle            POLICE OFFICER III
BasePay                      110693.33
OvertimePay                    7193.35
OtherPay                      14991.81
Benefits                           NaN
TotalPay                     132878.49
TotalPayBenefits             132878.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3822, dtype: object)
(3823, Id                                     3824
EmployeeName                ADRIANE MAJLESI
JobTitle            COURT STAFF ATTORNEY II
BasePay                           132871.15
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          132871.15
TotalPayBenefits                  132871.15
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3823, dtype: object)
(3824, Id                                3825
EmployeeName                 KEVIN LEE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   19374.72
OtherPay                        1062.1
Benefits                           NaN
TotalPay                      132837.9
TotalPayBenefits              132837.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3824, dtype: object)
(3825, Id                              3826
EmployeeName           HONESTO CACHO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   4395.6
OtherPay                     1422.16
Benefits                         NaN
TotalPay                   132801.76
TotalPayBenefits           132801.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3825, dtype: object)
(3826, Id                                3827
EmployeeName            STEVE GLICKMAN
JobTitle            POLICE OFFICER III
BasePay                      117303.68
OvertimePay                     3302.6
OtherPay                      12195.37
Benefits                           NaN
TotalPay                     132801.65
TotalPayBenefits             132801.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3826, dtype: object)
(3827, Id                                3828
EmployeeName            RONALD LIBERTA
JobTitle            POLICE OFFICER III
BasePay                      112421.26
OvertimePay                   11627.97
OtherPay                        8751.0
Benefits                           NaN
TotalPay                     132800.23
TotalPayBenefits             132800.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3827, dtype: object)
(3828, Id                                          3829
EmployeeName                    MARK CHRISTENSEN
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102866.41
OvertimePay                             10608.08
OtherPay                                 19323.2
Benefits                                     NaN
TotalPay                               132797.69
TotalPayBenefits                       132797.69
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 3828, dtype: object)
(3829, Id                                3830
EmployeeName             SEAN MCNAMARA
JobTitle            POLICE OFFICER III
BasePay                      103522.42
OvertimePay                     3298.6
OtherPay                      25970.03
Benefits                           NaN
TotalPay                     132791.05
TotalPayBenefits             132791.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3829, dtype: object)
(3830, Id                                3831
EmployeeName               CEZAR PEREZ
JobTitle            POLICE OFFICER III
BasePay                      107160.05
OvertimePay                    5528.54
OtherPay                      20100.93
Benefits                           NaN
TotalPay                     132789.52
TotalPayBenefits             132789.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3830, dtype: object)
(3831, Id                                 3832
EmployeeName        TILAFAIGA TA'APE JR
JobTitle                    FIREFIGHTER
BasePay                       105934.66
OvertimePay                      9166.5
OtherPay                       17687.18
Benefits                            NaN
TotalPay                      132788.34
TotalPayBenefits              132788.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3831, dtype: object)
(3832, Id                              3833
EmployeeName           JAMES GILLIAM
JobTitle            REGISTERED NURSE
BasePay                    112853.39
OvertimePay                  9382.53
OtherPay                    10527.81
Benefits                         NaN
TotalPay                   132763.73
TotalPayBenefits           132763.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3832, dtype: object)
(3833, Id                              3834
EmployeeName           ASTERIA PEREZ
JobTitle            REGISTERED NURSE
BasePay                    126880.24
OvertimePay                      0.0
OtherPay                     5877.87
Benefits                         NaN
TotalPay                   132758.11
TotalPayBenefits           132758.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3833, dtype: object)
(3834, Id                           3835
EmployeeName         WALLACE TANG
JobTitle                MANAGER V
BasePay                 132751.13
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                132751.13
TotalPayBenefits        132751.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3834, dtype: object)
(3835, Id                                              3836
EmployeeName                        SHAWNE CHRISTIAN
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73431.55
OvertimePay                                 55129.17
OtherPay                                     4148.44
Benefits                                         NaN
TotalPay                                   132709.16
TotalPayBenefits                           132709.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3835, dtype: object)
(3836, Id                           3837
EmployeeName        RICHARD MILES
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              16605.21
OtherPay                 10160.18
Benefits                      NaN
TotalPay                132700.05
TotalPayBenefits        132700.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3836, dtype: object)
(3837, Id                           3838
EmployeeName         SANDY CUADRA
JobTitle               MANAGER IV
BasePay                  132697.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132697.5
TotalPayBenefits         132697.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3837, dtype: object)
(3838, Id                               3839
EmployeeName            JAMES MCMAHAN
JobTitle            POLICE OFFICER II
BasePay                     110242.87
OvertimePay                    123.42
OtherPay                     22316.42
Benefits                          NaN
TotalPay                    132682.71
TotalPayBenefits            132682.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3838, dtype: object)
(3839, Id                                3840
EmployeeName        RICARDO DEL BARRIO
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                   40417.25
OtherPay                        3178.5
Benefits                           NaN
TotalPay                     132673.85
TotalPayBenefits             132673.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3839, dtype: object)
(3840, Id                                    3841
EmployeeName             OSBALDO GUTIERREZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102324.33
OvertimePay                       19503.57
OtherPay                          10826.56
Benefits                               NaN
TotalPay                         132654.46
TotalPayBenefits                 132654.46
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3840, dtype: object)
(3841, Id                                3842
EmployeeName            HECTOR BASURTO
JobTitle            POLICE OFFICER III
BasePay                       98721.48
OvertimePay                   15146.25
OtherPay                      18768.44
Benefits                           NaN
TotalPay                     132636.17
TotalPayBenefits             132636.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3841, dtype: object)
(3842, Id                                3843
EmployeeName              PAUL STEFANI
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    12664.9
OtherPay                       7568.34
Benefits                           NaN
TotalPay                     132634.31
TotalPayBenefits             132634.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3842, dtype: object)
(3843, Id                              3844
EmployeeName           JEANNE D'ARCY
JobTitle            REGISTERED NURSE
BasePay                     123211.2
OvertimePay                   7821.0
OtherPay                     1600.18
Benefits                         NaN
TotalPay                   132632.38
TotalPayBenefits           132632.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3843, dtype: object)
(3844, Id                              3845
EmployeeName          CHIU CHEN CHEN
JobTitle            REGISTERED NURSE
BasePay                    109255.84
OvertimePay                  5578.98
OtherPay                     17757.4
Benefits                         NaN
TotalPay                   132592.22
TotalPayBenefits           132592.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3844, dtype: object)
(3845, Id                                      3846
EmployeeName                   WILLIAM LEHEW
JobTitle            HEAD AIRPORT ELECTRICIAN
BasePay                             120960.1
OvertimePay                          2532.33
OtherPay                              9090.0
Benefits                                 NaN
TotalPay                           132582.43
TotalPayBenefits                   132582.43
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 3845, dtype: object)
(3846, Id                               3847
EmployeeName        JEFFREY ROSENBERG
JobTitle            POLICE OFFICER II
BasePay                      103122.1
OvertimePay                  11682.91
OtherPay                     17775.29
Benefits                          NaN
TotalPay                     132580.3
TotalPayBenefits             132580.3
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3846, dtype: object)
(3847, Id                                3848
EmployeeName                 KEITH LAI
JobTitle            POLICE OFFICER III
BasePay                      117303.65
OvertimePay                    5389.53
OtherPay                       9886.56
Benefits                           NaN
TotalPay                     132579.74
TotalPayBenefits             132579.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3847, dtype: object)
(3848, Id                                3849
EmployeeName            BRENDA RODGERS
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    6861.26
OtherPay                      13270.63
Benefits                           NaN
TotalPay                     132553.34
TotalPayBenefits             132553.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3848, dtype: object)
(3849, Id                                    3850
EmployeeName               TRACY CAVARETTA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.98
OvertimePay                            0.0
OtherPay                          10148.16
Benefits                               NaN
TotalPay                         132553.14
TotalPayBenefits                 132553.14
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3849, dtype: object)
(3850, Id                                     3851
EmployeeName        ALICE GLEGHORN-ROTHLIND
JobTitle                         MANAGER IV
BasePay                           132547.75
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          132547.75
TotalPayBenefits                  132547.75
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 3850, dtype: object)
(3851, Id                                         3852
EmployeeName                      HELEN KIEFFER
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               123105.01
OvertimePay                             1901.81
OtherPay                                 7540.7
Benefits                                    NaN
TotalPay                              132547.52
TotalPayBenefits                      132547.52
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3851, dtype: object)
(3852, Id                                                         3853
EmployeeName                                     ANTOINETTE COE
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                  288.0
Benefits                                                    NaN
TotalPay                                               132530.5
TotalPayBenefits                                       132530.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3852, dtype: object)
(3853, Id                              3854
EmployeeName             RUBY ARAGON
JobTitle            REGISTERED NURSE
BasePay                    107491.34
OvertimePay                   5128.2
OtherPay                    19895.71
Benefits                         NaN
TotalPay                   132515.25
TotalPayBenefits           132515.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3853, dtype: object)
(3854, Id                              3855
EmployeeName            FERN EBELING
JobTitle            REGISTERED NURSE
BasePay                     126861.9
OvertimePay                      0.0
OtherPay                      5650.0
Benefits                         NaN
TotalPay                    132511.9
TotalPayBenefits            132511.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3854, dtype: object)
(3855, Id                           3856
EmployeeName          JANE MCCOIN
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                  9220.79
Benefits                      NaN
TotalPay                132511.49
TotalPayBenefits        132511.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3855, dtype: object)
(3856, Id                                3857
EmployeeName              JOSHUA HINDS
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8327.12
OtherPay                      11762.42
Benefits                           NaN
TotalPay                     132510.99
TotalPayBenefits             132510.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3856, dtype: object)
(3857, Id                              3858
EmployeeName           DAVID FLEMING
JobTitle            REGISTERED NURSE
BasePay                     125826.6
OvertimePay                  3373.11
OtherPay                     3293.17
Benefits                         NaN
TotalPay                   132492.88
TotalPayBenefits           132492.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3857, dtype: object)
(3858, Id                              3859
EmployeeName           JANET KOSEWIC
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                      5500.3
Benefits                         NaN
TotalPay                    132484.3
TotalPayBenefits            132484.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3858, dtype: object)
(3859, Id                           3860
EmployeeName        DONNA SPIRLIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              14820.87
OtherPay                 11724.33
Benefits                      NaN
TotalPay                132479.86
TotalPayBenefits        132479.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3859, dtype: object)
(3860, Id                                3861
EmployeeName            PHILIP LASATER
JobTitle            SHERIFF'S SERGEANT
BasePay                      105493.87
OvertimePay                    9335.42
OtherPay                      17644.52
Benefits                           NaN
TotalPay                     132473.81
TotalPayBenefits             132473.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3860, dtype: object)
(3861, Id                                                        3862
EmployeeName                                     MICHELLE LONG
JobTitle            ASSISTANT DIRECTOR OF CLINICAL SERVICES II
BasePay                                              132471.24
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                             132471.24
TotalPayBenefits                                     132471.24
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 3861, dtype: object)
(3862, Id                              3863
EmployeeName         MICHAEL JAMISON
JobTitle            POLICE OFFICER I
BasePay                    106065.21
OvertimePay                  8687.92
OtherPay                    17717.95
Benefits                         NaN
TotalPay                   132471.08
TotalPayBenefits           132471.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3862, dtype: object)
(3863, Id                                3864
EmployeeName           GERALDINE ROSEN
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                      10189.62
Benefits                           NaN
TotalPay                     132464.22
TotalPayBenefits             132464.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3863, dtype: object)
(3864, Id                                      3865
EmployeeName               SAGIV WEISS-ISHAI
JobTitle            FIRE PROTECTION ENGINEER
BasePay                             122722.0
OvertimePay                           1371.0
OtherPay                             8362.01
Benefits                                 NaN
TotalPay                           132455.01
TotalPayBenefits                   132455.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 3864, dtype: object)
(3865, Id                              3866
EmployeeName               HONG YUAN
JobTitle            REGISTERED NURSE
BasePay                    105065.12
OvertimePay                   4144.0
OtherPay                    23241.78
Benefits                         NaN
TotalPay                    132450.9
TotalPayBenefits            132450.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3865, dtype: object)
(3866, Id                            3867
EmployeeName        GREGORY BROWNE
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                8706.03
OtherPay                  17789.79
Benefits                       NaN
TotalPay                 132430.49
TotalPayBenefits         132430.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3866, dtype: object)
(3867, Id                           3868
EmployeeName         JAMES PARISH
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               9394.11
OtherPay                 17100.72
Benefits                      NaN
TotalPay                132429.49
TotalPayBenefits        132429.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3867, dtype: object)
(3868, Id                             3869
EmployeeName        JOHN TUIASOSOPO
JobTitle                FIREFIGHTER
BasePay                    121423.8
OvertimePay                 1655.61
OtherPay                     9345.1
Benefits                        NaN
TotalPay                  132424.51
TotalPayBenefits          132424.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3868, dtype: object)
(3869, Id                                3870
EmployeeName           KEVIN RIGHTMIRE
JobTitle            POLICE OFFICER III
BasePay                      112155.07
OvertimePay                   11216.92
OtherPay                       9029.15
Benefits                           NaN
TotalPay                     132401.14
TotalPayBenefits             132401.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3869, dtype: object)
(3870, Id                           3871
EmployeeName         MATTHEW FONG
JobTitle                 ENGINEER
BasePay                 118051.73
OvertimePay                   0.0
OtherPay                 14344.28
Benefits                      NaN
TotalPay                132396.01
TotalPayBenefits        132396.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3870, dtype: object)
(3871, Id                                3872
EmployeeName               SHAWN HOOKS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   39606.26
OtherPay                       4721.89
Benefits                           NaN
TotalPay                     132390.15
TotalPayBenefits             132390.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3871, dtype: object)
(3872, Id                                    3873
EmployeeName                 KEN AINSWORTH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.68
OvertimePay                        23602.5
OtherPay                           2343.57
Benefits                               NaN
TotalPay                         132387.75
TotalPayBenefits                 132387.75
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3872, dtype: object)
(3873, Id                                3874
EmployeeName          LOUIS STAFFARONI
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6661.56
OtherPay                      13299.34
Benefits                           NaN
TotalPay                     132382.34
TotalPayBenefits             132382.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3873, dtype: object)
(3874, Id                                                         3875
EmployeeName                                         DARTON ITO
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                  120.0
Benefits                                                    NaN
TotalPay                                               132362.5
TotalPayBenefits                                       132362.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3874, dtype: object)
(3875, Id                                3876
EmployeeName           REYNALDO VARGAS
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                   10284.81
OtherPay                       9631.29
Benefits                           NaN
TotalPay                     132357.92
TotalPayBenefits             132357.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3875, dtype: object)
(3876, Id                           3877
EmployeeName        CAROLYN JONES
JobTitle               MANAGER IV
BasePay                 132356.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                132356.25
TotalPayBenefits        132356.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3876, dtype: object)
(3877, Id                                         3878
EmployeeName                    ANNABELLE CHERN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               124907.49
OvertimePay                                 0.0
OtherPay                                7445.64
Benefits                                    NaN
TotalPay                              132353.13
TotalPayBenefits                      132353.13
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 3877, dtype: object)
(3878, Id                                3879
EmployeeName        CHRISTOPHER RITTER
JobTitle              POLICE OFFICER I
BasePay                       96767.68
OvertimePay                    6466.15
OtherPay                       29115.7
Benefits                           NaN
TotalPay                     132349.53
TotalPayBenefits             132349.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3878, dtype: object)
(3879, Id                              3880
EmployeeName         WINILYN HIDALGO
JobTitle            REGISTERED NURSE
BasePay                     106742.1
OvertimePay                  6032.25
OtherPay                    19559.57
Benefits                         NaN
TotalPay                   132333.92
TotalPayBenefits           132333.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3879, dtype: object)
(3880, Id                                                3881
EmployeeName                             LIE MING CHEN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   51879.08
OtherPay                                       2853.45
Benefits                                           NaN
TotalPay                                     132312.93
TotalPayBenefits                             132312.93
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3880, dtype: object)
(3881, Id                              3882
EmployeeName              WILMA CRUZ
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   6399.0
OtherPay                      2667.4
Benefits                         NaN
TotalPay                    132306.4
TotalPayBenefits            132306.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3881, dtype: object)
(3882, Id                               3883
EmployeeName        KIMBERLY LA SALLE
JobTitle            POLICE OFFICER II
BasePay                     110262.76
OvertimePay                   9554.96
OtherPay                     12483.49
Benefits                          NaN
TotalPay                    132301.21
TotalPayBenefits            132301.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3882, dtype: object)
(3883, Id                                                              3884
EmployeeName                                          MICHAEL BADGER
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                 18065.59
OtherPay                                                     8826.94
Benefits                                                         NaN
TotalPay                                                   132296.53
TotalPayBenefits                                           132296.53
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 3883, dtype: object)
(3884, Id                                3885
EmployeeName          MARIO BUSALACCHI
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    7953.97
OtherPay                      11891.14
Benefits                           NaN
TotalPay                     132286.93
TotalPayBenefits             132286.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3884, dtype: object)
(3885, Id                               3886
EmployeeName           GABRIEL RIVERA
JobTitle            POLICE OFFICER II
BasePay                     101586.31
OvertimePay                   14717.5
OtherPay                     15976.25
Benefits                          NaN
TotalPay                    132280.06
TotalPayBenefits            132280.06
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3885, dtype: object)
(3886, Id                                3887
EmployeeName        JOHNATHAN ASHBROOK
JobTitle                   FIREFIGHTER
BasePay                      110638.64
OvertimePay                    7424.33
OtherPay                      14206.81
Benefits                           NaN
TotalPay                     132269.78
TotalPayBenefits             132269.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3886, dtype: object)
(3887, Id                                                         3888
EmployeeName                                   KENNETH ANDERSON
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                   26.0
Benefits                                                    NaN
TotalPay                                               132268.5
TotalPayBenefits                                       132268.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3887, dtype: object)
(3888, Id                              3889
EmployeeName         CARMELITA LASAT
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                   2197.8
OtherPay                     3063.18
Benefits                         NaN
TotalPay                   132244.98
TotalPayBenefits           132244.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3888, dtype: object)
(3889, Id                                                         3890
EmployeeName                                     DEANNA DESEDAS
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               132242.5
TotalPayBenefits                                       132242.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3889, dtype: object)
(3890, Id                                   3891
EmployeeName                  MARC SLAVIN
JobTitle            SPECIAL ASSISTANT XVI
BasePay                          132242.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         132242.5
TotalPayBenefits                 132242.5
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3890, dtype: object)
(3891, Id                                                         3892
EmployeeName                                     PAULA FLORENCE
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               132242.5
TotalPayBenefits                                       132242.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3891, dtype: object)
(3892, Id                           3893
EmployeeName           MARY LERMA
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3892, dtype: object)
(3893, Id                                                         3894
EmployeeName                                   SHALONDA BALDWIN
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               132242.5
TotalPayBenefits                                       132242.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3893, dtype: object)
(3894, Id                               3895
EmployeeName        LOURDES NICOMEDES
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3894, dtype: object)
(3895, Id                                                         3896
EmployeeName                                   CRISTOBAL IBORRA
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                132242.5
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               132242.5
TotalPayBenefits                                       132242.5
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3895, dtype: object)
(3896, Id                           3897
EmployeeName        CYNTHIA CHONO
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3896, dtype: object)
(3897, Id                           3898
EmployeeName             KERRY KO
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3897, dtype: object)
(3898, Id                               3899
EmployeeName             EMILY MURASE
JobTitle            DEPARTMENT HEAD I
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3898, dtype: object)
(3899, Id                           3900
EmployeeName        ROBERT THOMAS
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3899, dtype: object)
(3900, Id                           3901
EmployeeName         VICKIE WELLS
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3900, dtype: object)
(3901, Id                           3902
EmployeeName         ANTONIO LUGO
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3901, dtype: object)
(3902, Id                            3903
EmployeeName        EILEEN SHIELDS
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  132242.5
TotalPayBenefits          132242.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3902, dtype: object)
(3903, Id                           3904
EmployeeName          SHARON BELL
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3903, dtype: object)
(3904, Id                           3905
EmployeeName         CLIFTON WONG
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3904, dtype: object)
(3905, Id                           3906
EmployeeName        LEO O'FARRELL
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3905, dtype: object)
(3906, Id                               3907
EmployeeName        RICHARD BRIDYGHAM
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3906, dtype: object)
(3907, Id                               3908
EmployeeName        SHIREEN MCSPADDEN
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3907, dtype: object)
(3908, Id                           3909
EmployeeName        ALAN PAVKOVIC
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3908, dtype: object)
(3909, Id                             3910
EmployeeName        DOROTHY ENISMAN
JobTitle                 MANAGER IV
BasePay                    132242.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   132242.5
TotalPayBenefits           132242.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3909, dtype: object)
(3910, Id                               3911
EmployeeName        JAMES SMOTHERS JR
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3910, dtype: object)
(3911, Id                           3912
EmployeeName          SOPHIA ISOM
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3911, dtype: object)
(3912, Id                           3913
EmployeeName          RICHARD LEE
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3912, dtype: object)
(3913, Id                                3914
EmployeeName        MICHELE RUTHERFORD
JobTitle                    MANAGER IV
BasePay                       132242.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      132242.5
TotalPayBenefits              132242.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3913, dtype: object)
(3914, Id                           3915
EmployeeName        SEVERIN RIZZO
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3914, dtype: object)
(3915, Id                           3916
EmployeeName           JOYCE CRUM
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3915, dtype: object)
(3916, Id                           3917
EmployeeName        KEVIN VAN HOY
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3916, dtype: object)
(3917, Id                            3918
EmployeeName        JOHN TSUTAKAWA
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  132242.5
TotalPayBenefits          132242.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3917, dtype: object)
(3918, Id                            3919
EmployeeName        MICHAEL WARREN
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  132242.5
TotalPayBenefits          132242.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3918, dtype: object)
(3919, Id                               3920
EmployeeName        DIANA CHRISTENSEN
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3919, dtype: object)
(3920, Id                             3921
EmployeeName        DUNG HOA NGUYEN
JobTitle                 MANAGER IV
BasePay                    132242.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   132242.5
TotalPayBenefits           132242.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 3920, dtype: object)
(3921, Id                               3922
EmployeeName        CLIFFORD BRAMLETT
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3921, dtype: object)
(3922, Id                           3923
EmployeeName            KAREN YEE
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3922, dtype: object)
(3923, Id                           3924
EmployeeName         KENDALL GARY
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3923, dtype: object)
(3924, Id                                 3925
EmployeeName        GUILLERMO RODRIGUEZ
JobTitle                     MANAGER IV
BasePay                        132242.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       132242.5
TotalPayBenefits               132242.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3924, dtype: object)
(3925, Id                           3926
EmployeeName         DAVID GERMAN
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3925, dtype: object)
(3926, Id                           3927
EmployeeName          TAMARA WONG
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3926, dtype: object)
(3927, Id                            3928
EmployeeName        SUNNY SCHWARTZ
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  132242.5
TotalPayBenefits          132242.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3927, dtype: object)
(3928, Id                               3929
EmployeeName        MARIANNE SCHULMAN
JobTitle                   MANAGER IV
BasePay                      132242.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     132242.5
TotalPayBenefits             132242.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3928, dtype: object)
(3929, Id                           3930
EmployeeName        LAVENA HOLMES
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3929, dtype: object)
(3930, Id                           3931
EmployeeName          LINDA AVERY
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3930, dtype: object)
(3931, Id                                             3932
EmployeeName                           MARK LOZOVOY
JobTitle            ASSISTANT DEPUTY DIRECTOR, PORT
BasePay                                    132242.5
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   132242.5
TotalPayBenefits                           132242.5
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3931, dtype: object)
(3932, Id                                             3933
EmployeeName                             JOHN DAVEY
JobTitle            ASSISTANT DEPUTY DIRECTOR, PORT
BasePay                                    132242.5
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   132242.5
TotalPayBenefits                           132242.5
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3932, dtype: object)
(3933, Id                           3934
EmployeeName        TONI BERNARDI
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3933, dtype: object)
(3934, Id                              3935
EmployeeName        ROBERTO LOMBARDI
JobTitle                  MANAGER IV
BasePay                     132242.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    132242.5
TotalPayBenefits            132242.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3934, dtype: object)
(3935, Id                           3936
EmployeeName        BRIAN MORELLI
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3935, dtype: object)
(3936, Id                           3937
EmployeeName         KERRY O'NEIL
JobTitle               MANAGER IV
BasePay                  132242.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132242.5
TotalPayBenefits         132242.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3936, dtype: object)
(3937, Id                            3938
EmployeeName        JONATHAN STERN
JobTitle                MANAGER IV
BasePay                   132242.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  132242.5
TotalPayBenefits          132242.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3937, dtype: object)
(3938, Id                               3939
EmployeeName           LAUREL KLOOMOK
JobTitle            DEPARTMENT HEAD I
BasePay                     132241.78
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    132241.78
TotalPayBenefits            132241.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3938, dtype: object)
(3939, Id                              3940
EmployeeName          MICHAEL ARRAJJ
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     5209.99
Benefits                         NaN
TotalPay                   132193.99
TotalPayBenefits           132193.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3939, dtype: object)
(3940, Id                                  3941
EmployeeName                DAVID PAKTER
JobTitle            PHYSICIAN SPECIALIST
BasePay                        128139.01
OvertimePay                          0.0
OtherPay                          4054.0
Benefits                             NaN
TotalPay                       132193.01
TotalPayBenefits               132193.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3940, dtype: object)
(3941, Id                                3942
EmployeeName                BUD MASSEY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    17369.5
OtherPay                       2412.02
Benefits                           NaN
TotalPay                      132182.6
TotalPayBenefits              132182.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3941, dtype: object)
(3942, Id                           3943
EmployeeName          YINGMING GU
JobTitle                 ENGINEER
BasePay                 129112.76
OvertimePay                   0.0
OtherPay                  3068.23
Benefits                      NaN
TotalPay                132180.99
TotalPayBenefits        132180.99
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3942, dtype: object)
(3943, Id                                3944
EmployeeName               STACY HAYES
JobTitle            POLICE OFFICER III
BasePay                      117299.43
OvertimePay                    8729.75
OtherPay                       6146.21
Benefits                           NaN
TotalPay                     132175.39
TotalPayBenefits             132175.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3943, dtype: object)
(3944, Id                                       3945
EmployeeName                    DOUGLAS WELCH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             132161.28
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            132161.28
TotalPayBenefits                    132161.28
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3944, dtype: object)
(3945, Id                                                3946
EmployeeName                                 LLOYD LEW
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.88
OvertimePay                                        0.0
OtherPay                                       1695.47
Benefits                                           NaN
TotalPay                                     132153.35
TotalPayBenefits                             132153.35
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 3945, dtype: object)
(3946, Id                            3947
EmployeeName        LEONOR SALDANA
JobTitle               FIREFIGHTER
BasePay                   98217.81
OvertimePay               21385.38
OtherPay                  12547.96
Benefits                       NaN
TotalPay                 132151.15
TotalPayBenefits         132151.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3946, dtype: object)
(3947, Id                                3948
EmployeeName         MICHAEL BAGLIN JR
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   17730.23
OtherPay                       2019.38
Benefits                           NaN
TotalPay                     132150.68
TotalPayBenefits             132150.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3947, dtype: object)
(3948, Id                                  3949
EmployeeName        SUZANA RANISAVLJEVIC
JobTitle                   SPECIAL NURSE
BasePay                        106443.74
OvertimePay                      8059.51
OtherPay                        17640.67
Benefits                             NaN
TotalPay                       132143.92
TotalPayBenefits               132143.92
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3948, dtype: object)
(3949, Id                                3950
EmployeeName            THOMAS DISANTO
JobTitle            DEPUTY DIRECTOR II
BasePay                      130030.51
OvertimePay                        0.0
OtherPay                       2112.25
Benefits                           NaN
TotalPay                     132142.76
TotalPayBenefits             132142.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3949, dtype: object)
(3950, Id                           3951
EmployeeName           JOHN KRAUS
JobTitle               MANAGER IV
BasePay                 132128.75
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                132128.75
TotalPayBenefits        132128.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3950, dtype: object)
(3951, Id                              3952
EmployeeName           MILDRED EDGAR
JobTitle            REGISTERED NURSE
BasePay                    122724.56
OvertimePay                      0.0
OtherPay                     9403.45
Benefits                         NaN
TotalPay                   132128.01
TotalPayBenefits           132128.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3951, dtype: object)
(3952, Id                              3953
EmployeeName            HOWARD BROWN
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  7975.39
OtherPay                    18083.65
Benefits                         NaN
TotalPay                   132124.24
TotalPayBenefits           132124.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3952, dtype: object)
(3953, Id                           3954
EmployeeName         JOSEPH HUANG
JobTitle               MANAGER IV
BasePay                  132112.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 132112.5
TotalPayBenefits         132112.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3953, dtype: object)
(3954, Id                               3955
EmployeeName           CHAIGNE STOKES
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                   4889.76
OtherPay                     16999.71
Benefits                          NaN
TotalPay                    132112.49
TotalPayBenefits            132112.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3954, dtype: object)
(3955, Id                                3956
EmployeeName               RUBEN REYES
JobTitle            POLICE OFFICER III
BasePay                      112175.43
OvertimePay                   10867.62
OtherPay                       9061.65
Benefits                           NaN
TotalPay                      132104.7
TotalPayBenefits              132104.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3955, dtype: object)
(3956, Id                              3957
EmployeeName            YUKIO OSHITA
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 16888.41
OtherPay                     9146.86
Benefits                         NaN
TotalPay                   132100.47
TotalPayBenefits           132100.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3956, dtype: object)
(3957, Id                              3958
EmployeeName             LEA ANGELES
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     5116.45
Benefits                         NaN
TotalPay                   132100.45
TotalPayBenefits           132100.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3957, dtype: object)
(3958, Id                                3959
EmployeeName         R MARTIN FERREIRA
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   13400.78
OtherPay                       6268.36
Benefits                           NaN
TotalPay                     132090.57
TotalPayBenefits             132090.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3958, dtype: object)
(3959, Id                                 3960
EmployeeName                FRAN CARTER
JobTitle            PUBLIC HEALTH NURSE
BasePay                       126984.04
OvertimePay                         0.0
OtherPay                        5097.82
Benefits                            NaN
TotalPay                      132081.86
TotalPayBenefits              132081.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3959, dtype: object)
(3960, Id                                        3961
EmployeeName                 MOHAMMAD KHATTANA
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               85928.63
OvertimePay                           14379.49
OtherPay                              31735.57
Benefits                                   NaN
TotalPay                             132043.69
TotalPayBenefits                     132043.69
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 3960, dtype: object)
(3961, Id                              3962
EmployeeName           KEVIN WORRELL
JobTitle            POLICE OFFICER I
BasePay                     105558.2
OvertimePay                  7974.48
OtherPay                    18499.98
Benefits                         NaN
TotalPay                   132032.66
TotalPayBenefits           132032.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3961, dtype: object)
(3962, Id                                   3963
EmployeeName                 IRENE YBARRA
JobTitle            FIRE RESCUE PARAMEDIC
BasePay                         114554.51
OvertimePay                        9416.5
OtherPay                          8059.94
Benefits                              NaN
TotalPay                        132030.95
TotalPayBenefits                132030.95
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 3962, dtype: object)
(3963, Id                                3964
EmployeeName             GARY DIQUISTO
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    9133.65
OtherPay                      10475.24
Benefits                           NaN
TotalPay                     132030.33
TotalPayBenefits             132030.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3963, dtype: object)
(3964, Id                                  3965
EmployeeName            FERNANDO VELASCO
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        120692.43
OvertimePay                      3963.41
OtherPay                         7368.05
Benefits                             NaN
TotalPay                       132023.89
TotalPayBenefits               132023.89
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3964, dtype: object)
(3965, Id                                3966
EmployeeName              RAYMOND KANE
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    3427.18
OtherPay                       16191.3
Benefits                           NaN
TotalPay                     132019.55
TotalPayBenefits             132019.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3965, dtype: object)
(3966, Id                           3967
EmployeeName           NORMAN YUP
JobTitle              FIREFIGHTER
BasePay                 105934.72
OvertimePay               9807.48
OtherPay                 16256.53
Benefits                      NaN
TotalPay                131998.73
TotalPayBenefits        131998.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3966, dtype: object)
(3967, Id                                3968
EmployeeName               LIZA LOZANO
JobTitle            POLICE OFFICER III
BasePay                      111024.05
OvertimePay                    6944.04
OtherPay                      14021.39
Benefits                           NaN
TotalPay                     131989.48
TotalPayBenefits             131989.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3967, dtype: object)
(3968, Id                                               3969
EmployeeName                              JOHNSON LAU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   32886.0
OtherPay                                         60.0
Benefits                                          NaN
TotalPay                                     131960.4
TotalPayBenefits                             131960.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3968, dtype: object)
(3969, Id                                               3970
EmployeeName                             HENRY SCHOLZ
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   28657.8
OtherPay                                       4272.0
Benefits                                          NaN
TotalPay                                     131929.8
TotalPayBenefits                             131929.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 3969, dtype: object)
(3970, Id                               3971
EmployeeName               RAUL ELIAS
JobTitle            POLICE OFFICER II
BasePay                     110262.72
OvertimePay                   4261.43
OtherPay                     17389.23
Benefits                          NaN
TotalPay                    131913.38
TotalPayBenefits            131913.38
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3970, dtype: object)
(3971, Id                              3972
EmployeeName                JENNY XU
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                   4825.8
OtherPay                     7583.64
Benefits                         NaN
TotalPay                   131905.44
TotalPayBenefits           131905.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3971, dtype: object)
(3972, Id                               3973
EmployeeName        SEAN MATSUBAYASHI
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                    8555.5
OtherPay                     17411.87
Benefits                          NaN
TotalPay                    131902.02
TotalPayBenefits            131902.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3972, dtype: object)
(3973, Id                                              3974
EmployeeName                            STEVEN THOMA
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     129964.5
OvertimePay                                      0.0
OtherPay                                     1931.43
Benefits                                         NaN
TotalPay                                   131895.93
TotalPayBenefits                           131895.93
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3973, dtype: object)
(3974, Id                                       3975
EmployeeName                    JACQUE WILSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             131892.37
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            131892.37
TotalPayBenefits                    131892.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3974, dtype: object)
(3975, Id                           3976
EmployeeName          GREG BARTOW
JobTitle               MANAGER IV
BasePay                  131885.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 131885.0
TotalPayBenefits         131885.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3975, dtype: object)
(3976, Id                                                               3977
EmployeeName                                          THOMAS SHERIDAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107023.25
OvertimePay                                                   24680.4
OtherPay                                                        180.0
Benefits                                                          NaN
TotalPay                                                    131883.65
TotalPayBenefits                                            131883.65
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 3976, dtype: object)
(3977, Id                                       3978
EmployeeName                      SCOTY CLARK
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             125618.85
OvertimePay                               0.0
OtherPay                              6263.92
Benefits                                  NaN
TotalPay                            131882.77
TotalPayBenefits                    131882.77
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3977, dtype: object)
(3978, Id                                  3979
EmployeeName           AARON DEL TREDICI
JobTitle            PHYSICIAN SPECIALIST
BasePay                         129531.6
OvertimePay                          0.0
OtherPay                          2349.0
Benefits                             NaN
TotalPay                        131880.6
TotalPayBenefits                131880.6
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 3978, dtype: object)
(3979, Id                                             3980
EmployeeName                       DAVID SUMMERHILL
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                     99485.0
OvertimePay                                23740.92
OtherPay                                    8636.79
Benefits                                        NaN
TotalPay                                  131862.71
TotalPayBenefits                          131862.71
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 3979, dtype: object)
(3980, Id                                 3981
EmployeeName                   KAM CHAN
JobTitle            PUBLIC HEALTH NURSE
BasePay                       126983.99
OvertimePay                         0.0
OtherPay                        4878.05
Benefits                            NaN
TotalPay                      131862.04
TotalPayBenefits              131862.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 3980, dtype: object)
(3981, Id                                    3982
EmployeeName                   NEIL HOPPER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          114852.77
OvertimePay                         3195.7
OtherPay                          13810.19
Benefits                               NaN
TotalPay                         131858.66
TotalPayBenefits                 131858.66
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3981, dtype: object)
(3982, Id                              3983
EmployeeName        ROBIN VANDERBERG
JobTitle            REGISTERED NURSE
BasePay                    104955.41
OvertimePay                  7143.91
OtherPay                    19749.87
Benefits                         NaN
TotalPay                   131849.19
TotalPayBenefits           131849.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3982, dtype: object)
(3983, Id                           3984
EmployeeName         RUSSELL ROBY
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               8386.03
OtherPay                 17526.67
Benefits                      NaN
TotalPay                131847.37
TotalPayBenefits        131847.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3983, dtype: object)
(3984, Id                               3985
EmployeeName           MICHAEL GRANDE
JobTitle            POLICE OFFICER II
BasePay                      107705.2
OvertimePay                   9226.93
OtherPay                     14888.86
Benefits                          NaN
TotalPay                    131820.99
TotalPayBenefits            131820.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 3984, dtype: object)
(3985, Id                           3986
EmployeeName           WARREN DER
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               8715.98
OtherPay                 17166.25
Benefits                      NaN
TotalPay                131816.89
TotalPayBenefits        131816.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3985, dtype: object)
(3986, Id                                3987
EmployeeName              JOSHUA OLSON
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     6953.1
OtherPay                      12440.14
Benefits                           NaN
TotalPay                     131814.69
TotalPayBenefits             131814.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3986, dtype: object)
(3987, Id                            3988
EmployeeName        ANTONIO VERNON
JobTitle               FIREFIGHTER
BasePay                  105934.64
OvertimePay               10426.86
OtherPay                  15429.49
Benefits                       NaN
TotalPay                 131790.99
TotalPayBenefits         131790.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 3987, dtype: object)
(3988, Id                                       3989
EmployeeName                         SUE WONG
JobTitle            DIRECTOR, FISCAL SERVICES
BasePay                             131788.26
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            131788.26
TotalPayBenefits                    131788.26
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 3988, dtype: object)
(3989, Id                                                         3990
EmployeeName                                       IVAN FERRARA
JobTitle            ASSISTANT ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                 89042.8
OvertimePay                                             32762.9
OtherPay                                                9975.75
Benefits                                                    NaN
TotalPay                                              131781.45
TotalPayBenefits                                      131781.45
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 3989, dtype: object)
(3990, Id                                            3991
EmployeeName                          IRENE CRISTI
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  123169.97
OvertimePay                                2784.92
OtherPay                                    5825.7
Benefits                                       NaN
TotalPay                                 131780.59
TotalPayBenefits                         131780.59
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 3990, dtype: object)
(3991, Id                                3992
EmployeeName        VICKY URBANO-JAIME
JobTitle              REGISTERED NURSE
BasePay                      126549.97
OvertimePay                        0.0
OtherPay                        5225.3
Benefits                           NaN
TotalPay                     131775.27
TotalPayBenefits             131775.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3991, dtype: object)
(3992, Id                                              3993
EmployeeName                            LAURA KNIGHT
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130476.75
OvertimePay                                   352.71
OtherPay                                       942.8
Benefits                                         NaN
TotalPay                                   131772.26
TotalPayBenefits                           131772.26
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 3992, dtype: object)
(3993, Id                           3994
EmployeeName            NELLY LEE
JobTitle              MANAGER III
BasePay                 131764.63
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                131764.63
TotalPayBenefits        131764.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3993, dtype: object)
(3994, Id                              3995
EmployeeName            BENJAMIN TAI
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                  4657.05
OtherPay                      3848.9
Benefits                         NaN
TotalPay                   131745.95
TotalPayBenefits           131745.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3994, dtype: object)
(3995, Id                              3996
EmployeeName        KRISTIANE MOHLER
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                   6204.6
OtherPay                     6043.26
Benefits                         NaN
TotalPay                   131743.86
TotalPayBenefits           131743.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 3995, dtype: object)
(3996, Id                                3997
EmployeeName                 HENRY KIM
JobTitle            ASSOCIATE ENGINEER
BasePay                      129496.69
OvertimePay                        0.0
OtherPay                       2242.53
Benefits                           NaN
TotalPay                     131739.22
TotalPayBenefits             131739.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3996, dtype: object)
(3997, Id                                    3998
EmployeeName                PATRICIA FLOOD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        1822.99
OtherPay                           7497.84
Benefits                               NaN
TotalPay                         131725.82
TotalPayBenefits                 131725.82
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 3997, dtype: object)
(3998, Id                                3999
EmployeeName            MATTHEW KENNEY
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                   10224.09
OtherPay                       9078.83
Benefits                           NaN
TotalPay                     131724.33
TotalPayBenefits             131724.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 3998, dtype: object)
(3999, Id                           4000
EmployeeName            ALAN WONG
JobTitle                 ENGINEER
BasePay                 120937.06
OvertimePay                   0.0
OtherPay                 10782.58
Benefits                      NaN
TotalPay                131719.64
TotalPayBenefits        131719.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 3999, dtype: object)
(4000, Id                                4001
EmployeeName             ELMER NAJARRO
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                    6336.46
OtherPay                      12953.73
Benefits                           NaN
TotalPay                     131711.59
TotalPayBenefits             131711.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4000, dtype: object)
(4001, Id                                              4002
EmployeeName                           ROBERT GUZMAN
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                      88671.0
OvertimePay                                 37707.26
OtherPay                                      5320.2
Benefits                                         NaN
TotalPay                                   131698.46
TotalPayBenefits                           131698.46
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4001, dtype: object)
(4002, Id                                         4003
EmployeeName                       ROBERT CAPPA
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123105.0
OvertimePay                                 0.0
OtherPay                                8590.17
Benefits                                    NaN
TotalPay                              131695.17
TotalPayBenefits                      131695.17
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4002, dtype: object)
(4003, Id                              4004
EmployeeName               YOUNG TOM
JobTitle            REGISTERED NURSE
BasePay                    119257.61
OvertimePay                  3938.22
OtherPay                     8486.07
Benefits                         NaN
TotalPay                    131681.9
TotalPayBenefits            131681.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4003, dtype: object)
(4004, Id                             4005
EmployeeName        JOHN DANNER III
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 8761.41
OtherPay                   16977.57
Benefits                        NaN
TotalPay                  131673.65
TotalPayBenefits          131673.65
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4004, dtype: object)
(4005, Id                               4006
EmployeeName        CLIFFORD BURKHART
JobTitle            POLICE OFFICER II
BasePay                     108561.94
OvertimePay                    7280.4
OtherPay                     15830.87
Benefits                          NaN
TotalPay                    131673.21
TotalPayBenefits            131673.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4005, dtype: object)
(4006, Id                                4007
EmployeeName               THOMAS WONG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   10161.39
OtherPay                       9107.48
Benefits                           NaN
TotalPay                     131669.94
TotalPayBenefits             131669.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4006, dtype: object)
(4007, Id                                4008
EmployeeName               ERIC CHIANG
JobTitle            POLICE OFFICER III
BasePay                      112400.79
OvertimePay                   10311.65
OtherPay                       8954.54
Benefits                           NaN
TotalPay                     131666.98
TotalPayBenefits             131666.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4007, dtype: object)
(4008, Id                                              4009
EmployeeName                           RACHEL EZIRIM
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    130457.87
OvertimePay                                      0.0
OtherPay                                      1208.4
Benefits                                         NaN
TotalPay                                   131666.27
TotalPayBenefits                           131666.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4008, dtype: object)
(4009, Id                                       4010
EmployeeName                 ALEXANDER LILIEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             131644.53
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            131644.53
TotalPayBenefits                    131644.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4009, dtype: object)
(4010, Id                                             4011
EmployeeName                      MITCHELL CAMPBELL
JobTitle            SERGEANT II (POLICE DEPARTMENT)
BasePay                                   128146.91
OvertimePay                                 1995.29
OtherPay                                    1498.56
Benefits                                        NaN
TotalPay                                  131640.76
TotalPayBenefits                          131640.76
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4010, dtype: object)
(4011, Id                           4012
EmployeeName        DAMIAN GARCIA
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay              19041.82
OtherPay                  6664.15
Benefits                      NaN
TotalPay                131640.65
TotalPayBenefits        131640.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4011, dtype: object)
(4012, Id                                4013
EmployeeName                 JANE WONG
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                    3373.71
OtherPay                       15858.3
Benefits                           NaN
TotalPay                     131633.04
TotalPayBenefits             131633.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4012, dtype: object)
(4013, Id                                                  4014
EmployeeName                            HARRY JENSEN-III
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                        111298.01
OvertimePay                                     17337.02
OtherPay                                         2985.38
Benefits                                             NaN
TotalPay                                       131620.41
TotalPayBenefits                               131620.41
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 4013, dtype: object)
(4014, Id                               4015
EmployeeName        MARIABENE SALARDA
JobTitle             REGISTERED NURSE
BasePay                      123714.0
OvertimePay                    4266.0
OtherPay                      3636.14
Benefits                          NaN
TotalPay                    131616.14
TotalPayBenefits            131616.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4014, dtype: object)
(4015, Id                              4016
EmployeeName         ROSALYN STOVALL
JobTitle            REGISTERED NURSE
BasePay                    123240.04
OvertimePay                   4532.7
OtherPay                     3843.04
Benefits                         NaN
TotalPay                   131615.78
TotalPayBenefits           131615.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4015, dtype: object)
(4016, Id                                4017
EmployeeName                 GARY NODA
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.96
OvertimePay                   18013.55
OtherPay                        7901.6
Benefits                           NaN
TotalPay                     131613.11
TotalPayBenefits             131613.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4016, dtype: object)
(4017, Id                              4018
EmployeeName        KEVIN BRUGALETTA
JobTitle            POLICE OFFICER I
BasePay                    101977.36
OvertimePay                 14366.67
OtherPay                    15268.74
Benefits                         NaN
TotalPay                   131612.77
TotalPayBenefits           131612.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4017, dtype: object)
(4018, Id                             4019
EmployeeName        STEPHEN KLOSTER
JobTitle                FIREFIGHTER
BasePay                   101527.06
OvertimePay                15848.99
OtherPay                   14235.84
Benefits                        NaN
TotalPay                  131611.89
TotalPayBenefits          131611.89
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4018, dtype: object)
(4019, Id                           4020
EmployeeName            KEVIN TOM
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               4396.27
OtherPay                 21268.17
Benefits                      NaN
TotalPay                 131599.1
TotalPayBenefits         131599.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4019, dtype: object)
(4020, Id                                4021
EmployeeName               PAUL SLAVIT
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                       9316.22
Benefits                           NaN
TotalPay                     131590.82
TotalPayBenefits             131590.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4020, dtype: object)
(4021, Id                           4022
EmployeeName           TAJEL SHAH
JobTitle                MANAGER V
BasePay                 131586.83
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                131586.83
TotalPayBenefits        131586.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4021, dtype: object)
(4022, Id                               4023
EmployeeName        MARIE JOY CLAUDEL
JobTitle             REGISTERED NURSE
BasePay                     103412.01
OvertimePay                  10529.73
OtherPay                     17616.41
Benefits                          NaN
TotalPay                    131558.15
TotalPayBenefits            131558.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4022, dtype: object)
(4023, Id                                4024
EmployeeName           CARLOS GONZALEZ
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                   40148.82
OtherPay                       3007.84
Benefits                           NaN
TotalPay                     131557.36
TotalPayBenefits             131557.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4023, dtype: object)
(4024, Id                                   4025
EmployeeName                KIRT THOMASON
JobTitle            FIRE RESCUE PARAMEDIC
BasePay                         116600.83
OvertimePay                        178.47
OtherPay                         14776.32
Benefits                              NaN
TotalPay                        131555.62
TotalPayBenefits                131555.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4024, dtype: object)
(4025, Id                              4026
EmployeeName             MARIA LUCAS
JobTitle            REGISTERED NURSE
BasePay                     121818.0
OvertimePay                   6470.1
OtherPay                      3259.9
Benefits                         NaN
TotalPay                    131548.0
TotalPayBenefits            131548.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4025, dtype: object)
(4026, Id                                     4027
EmployeeName                  ALAN MARSHALL
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.35
OvertimePay                             0.0
OtherPay                            3868.08
Benefits                                NaN
TotalPay                          131545.43
TotalPayBenefits                  131545.43
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4026, dtype: object)
(4027, Id                                4028
EmployeeName               VINCENT GIN
JobTitle            TRANSIT SUPERVISOR
BasePay                       85510.32
OvertimePay                   40154.72
OtherPay                       5874.85
Benefits                           NaN
TotalPay                     131539.89
TotalPayBenefits             131539.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4027, dtype: object)
(4028, Id                              4029
EmployeeName            PATRICK DUDY
JobTitle            POLICE OFFICER I
BasePay                     98620.97
OvertimePay                  7145.71
OtherPay                    25771.17
Benefits                         NaN
TotalPay                   131537.85
TotalPayBenefits           131537.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4028, dtype: object)
(4029, Id                                   4030
EmployeeName                  CARLA CLARK
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96252.0
OvertimePay                      27844.88
OtherPay                          7433.29
Benefits                              NaN
TotalPay                        131530.17
TotalPayBenefits                131530.17
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4029, dtype: object)
(4030, Id                             4031
EmployeeName        TRACE MCCULLOCH
JobTitle                FIREFIGHTER
BasePay                    99166.64
OvertimePay                14806.43
OtherPay                    17542.8
Benefits                        NaN
TotalPay                  131515.87
TotalPayBenefits          131515.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4030, dtype: object)
(4031, Id                                       4032
EmployeeName                      ERIC QUANDT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             131514.53
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            131514.53
TotalPayBenefits                    131514.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4031, dtype: object)
(4032, Id                              4033
EmployeeName           THEODORE BUSH
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                    732.6
OtherPay                     3797.01
Benefits                         NaN
TotalPay                   131513.61
TotalPayBenefits           131513.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4032, dtype: object)
(4033, Id                              4034
EmployeeName          MANUEL BELTRAN
JobTitle            REGISTERED NURSE
BasePay                    103554.09
OvertimePay                  9460.04
OtherPay                    18499.05
Benefits                         NaN
TotalPay                   131513.18
TotalPayBenefits           131513.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4033, dtype: object)
(4034, Id                                                4035
EmployeeName                             EILEEN MURPHY
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130476.61
OvertimePay                                     188.88
OtherPay                                        842.78
Benefits                                           NaN
TotalPay                                     131508.27
TotalPayBenefits                             131508.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4034, dtype: object)
(4035, Id                               4036
EmployeeName            JONATHAN OZOL
JobTitle            POLICE OFFICER II
BasePay                       99245.0
OvertimePay                   8981.88
OtherPay                     23280.33
Benefits                          NaN
TotalPay                    131507.21
TotalPayBenefits            131507.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4035, dtype: object)
(4036, Id                               4037
EmployeeName                KEVIN LEE
JobTitle            POLICE OFFICER II
BasePay                     108000.94
OvertimePay                   17468.4
OtherPay                      6025.54
Benefits                          NaN
TotalPay                    131494.88
TotalPayBenefits            131494.88
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4036, dtype: object)
(4037, Id                                              4038
EmployeeName                           LISA SPRINGER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     130481.3
OvertimePay                                      0.0
OtherPay                                     1011.61
Benefits                                         NaN
TotalPay                                   131492.91
TotalPayBenefits                           131492.91
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4037, dtype: object)
(4038, Id                                                   4039
EmployeeName                                 BRETT POWELL
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                          107546.0
OvertimePay                                         286.2
OtherPay                                         23644.41
Benefits                                              NaN
TotalPay                                        131476.61
TotalPayBenefits                                131476.61
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 4038, dtype: object)
(4039, Id                           4040
EmployeeName         DAVID DAWLEY
JobTitle              FIREFIGHTER
BasePay                  57859.33
OvertimePay              21724.13
OtherPay                 51881.94
Benefits                      NaN
TotalPay                 131465.4
TotalPayBenefits         131465.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4039, dtype: object)
(4040, Id                             4041
EmployeeName        GENEVIEVE HAMER
JobTitle              SPECIAL NURSE
BasePay                   111540.28
OvertimePay                 1418.82
OtherPay                   18504.16
Benefits                        NaN
TotalPay                  131463.26
TotalPayBenefits          131463.26
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4040, dtype: object)
(4041, Id                                4042
EmployeeName        PRISCILLA RECIDORO
JobTitle              REGISTERED NURSE
BasePay                      124689.75
OvertimePay                     5128.2
OtherPay                       1641.94
Benefits                           NaN
TotalPay                     131459.89
TotalPayBenefits             131459.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4041, dtype: object)
(4042, Id                                             4043
EmployeeName                         CAROLE GILBERT
JobTitle            TRANSIT PAINT SHOP SUPERVISOR I
BasePay                                    97463.33
OvertimePay                                18713.04
OtherPay                                   15280.68
Benefits                                        NaN
TotalPay                                  131457.05
TotalPayBenefits                          131457.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4042, dtype: object)
(4043, Id                                 4044
EmployeeName                 DAVID MURK
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        68986.82
OvertimePay                    45800.16
OtherPay                       16661.14
Benefits                            NaN
TotalPay                      131448.12
TotalPayBenefits              131448.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4043, dtype: object)
(4044, Id                               4045
EmployeeName        WILLIAM MC CARTHY
JobTitle            POLICE OFFICER II
BasePay                     107686.04
OvertimePay                   6326.94
OtherPay                     17429.43
Benefits                          NaN
TotalPay                    131442.41
TotalPayBenefits            131442.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4044, dtype: object)
(4045, Id                                4046
EmployeeName         ANDREW MAC ILRATH
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   10424.72
OtherPay                        8595.2
Benefits                           NaN
TotalPay                     131441.35
TotalPayBenefits             131441.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4045, dtype: object)
(4046, Id                              4047
EmployeeName           SHANNON SMITH
JobTitle            REGISTERED NURSE
BasePay                     112424.0
OvertimePay                  17220.3
OtherPay                     1791.81
Benefits                         NaN
TotalPay                   131436.11
TotalPayBenefits           131436.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4046, dtype: object)
(4047, Id                                4048
EmployeeName             ROBERT VALDEZ
JobTitle            POLICE OFFICER III
BasePay                      117303.69
OvertimePay                    6844.55
OtherPay                       7276.65
Benefits                           NaN
TotalPay                     131424.89
TotalPayBenefits             131424.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4047, dtype: object)
(4048, Id                              4049
EmployeeName        GEORGE KARAWANNY
JobTitle                 FIREFIGHTER
BasePay                     113945.0
OvertimePay                  1684.68
OtherPay                    15784.03
Benefits                         NaN
TotalPay                   131413.71
TotalPayBenefits           131413.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4048, dtype: object)
(4049, Id                                4050
EmployeeName           KENNETH MARUCCO
JobTitle            POLICE OFFICER III
BasePay                       111869.7
OvertimePay                   12472.12
OtherPay                       7040.42
Benefits                           NaN
TotalPay                     131382.24
TotalPayBenefits             131382.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4049, dtype: object)
(4050, Id                                4051
EmployeeName          GREGORY BUHAGIAR
JobTitle            POLICE OFFICER III
BasePay                      111601.39
OvertimePay                    4215.22
OtherPay                      15561.97
Benefits                           NaN
TotalPay                     131378.58
TotalPayBenefits             131378.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4050, dtype: object)
(4051, Id                           4052
EmployeeName          STEVEN WONG
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               7612.24
OtherPay                 17817.35
Benefits                      NaN
TotalPay                131364.23
TotalPayBenefits        131364.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4051, dtype: object)
(4052, Id                           4053
EmployeeName        JOHN KOSITZIN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               7546.96
OtherPay                 17875.82
Benefits                      NaN
TotalPay                131357.44
TotalPayBenefits        131357.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4052, dtype: object)
(4053, Id                                4054
EmployeeName            SANJAY SHASTRI
JobTitle            POLICE OFFICER III
BasePay                      112441.79
OvertimePay                    8981.61
OtherPay                       9927.56
Benefits                           NaN
TotalPay                     131350.96
TotalPayBenefits             131350.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4053, dtype: object)
(4054, Id                                    4055
EmployeeName               SHANNON STABILE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          107879.63
OvertimePay                       14345.94
OtherPay                           9125.27
Benefits                               NaN
TotalPay                         131350.84
TotalPayBenefits                 131350.84
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4054, dtype: object)
(4055, Id                              4056
EmployeeName             RAQUEL CRUZ
JobTitle            REGISTERED NURSE
BasePay                     124824.0
OvertimePay                   5063.4
OtherPay                     1422.01
Benefits                         NaN
TotalPay                   131309.41
TotalPayBenefits           131309.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4055, dtype: object)
(4056, Id                                                4057
EmployeeName                                 ANDY TING
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130481.31
OvertimePay                                        0.0
OtherPay                                        819.44
Benefits                                           NaN
TotalPay                                     131300.75
TotalPayBenefits                             131300.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4056, dtype: object)
(4057, Id                                4058
EmployeeName            RODERICK YOUNG
JobTitle            POLICE OFFICER III
BasePay                      117283.26
OvertimePay                    5725.09
OtherPay                       8272.64
Benefits                           NaN
TotalPay                     131280.99
TotalPayBenefits             131280.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4057, dtype: object)
(4058, Id                                                4059
EmployeeName                         SHELLEY ROSS-BELL
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.68
OvertimePay                                        0.0
OtherPay                                        819.38
Benefits                                           NaN
TotalPay                                     131277.06
TotalPayBenefits                             131277.06
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4058, dtype: object)
(4059, Id                                                4060
EmployeeName                           RACHAEL KILSHAW
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      130457.54
OvertimePay                                        0.0
OtherPay                                        819.44
Benefits                                           NaN
TotalPay                                     131276.98
TotalPayBenefits                             131276.98
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4059, dtype: object)
(4060, Id                                    4061
EmployeeName        GRACE CAPISTRANO-GIRON
JobTitle                  REGISTERED NURSE
BasePay                          123714.01
OvertimePay                         5688.0
OtherPay                           1857.16
Benefits                               NaN
TotalPay                         131259.17
TotalPayBenefits                 131259.17
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4060, dtype: object)
(4061, Id                                                              4062
EmployeeName                                             RENATO BURA
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                 17936.25
OtherPay                                                     7906.54
Benefits                                                         NaN
TotalPay                                                   131246.79
TotalPayBenefits                                           131246.79
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 4061, dtype: object)
(4062, Id                              4063
EmployeeName              FU-KI KWOK
JobTitle            REGISTERED NURSE
BasePay                    105012.18
OvertimePay                  9572.62
OtherPay                     16654.1
Benefits                         NaN
TotalPay                    131238.9
TotalPayBenefits            131238.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4062, dtype: object)
(4063, Id                              4064
EmployeeName          RONDAA JACKSON
JobTitle            TRANSIT OPERATOR
BasePay                     67609.36
OvertimePay                 59068.49
OtherPay                     4528.18
Benefits                         NaN
TotalPay                   131206.03
TotalPayBenefits           131206.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4063, dtype: object)
(4064, Id                                      4065
EmployeeName        MARIA DOLORE GARGARITANO
JobTitle                    REGISTERED NURSE
BasePay                             119266.2
OvertimePay                          4644.85
OtherPay                              7279.8
Benefits                                 NaN
TotalPay                           131190.85
TotalPayBenefits                   131190.85
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4064, dtype: object)
(4065, Id                               4066
EmployeeName           DAVID ALMAGUER
JobTitle            POLICE OFFICER II
BasePay                       96904.5
OvertimePay                   9532.53
OtherPay                     24751.88
Benefits                          NaN
TotalPay                    131188.91
TotalPayBenefits            131188.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4065, dtype: object)
(4066, Id                                       4067
EmployeeName                      THOMAS HOLM
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92861.5
OvertimePay                          29880.99
OtherPay                              8432.95
Benefits                                  NaN
TotalPay                            131175.44
TotalPayBenefits                    131175.44
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4066, dtype: object)
(4067, Id                              4068
EmployeeName              CARL PAYNE
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  8068.39
OtherPay                    17038.19
Benefits                         NaN
TotalPay                   131171.76
TotalPayBenefits           131171.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4067, dtype: object)
(4068, Id                                4069
EmployeeName            ERIC VALENTINI
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                   10061.66
OtherPay                       8667.75
Benefits                           NaN
TotalPay                     131171.23
TotalPayBenefits             131171.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4068, dtype: object)
(4069, Id                                4070
EmployeeName              JACK WRONSKI
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                   12301.24
OtherPay                        6445.5
Benefits                           NaN
TotalPay                     131168.14
TotalPayBenefits             131168.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4069, dtype: object)
(4070, Id                                  4071
EmployeeName                 PATRICK HSU
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                        12463.63
Benefits                             NaN
TotalPay                       131155.66
TotalPayBenefits               131155.66
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4070, dtype: object)
(4071, Id                               4072
EmployeeName           THERESA CONWAY
JobTitle            POLICE OFFICER II
BasePay                     109591.07
OvertimePay                  11703.99
OtherPay                       9845.2
Benefits                          NaN
TotalPay                    131140.26
TotalPayBenefits            131140.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4071, dtype: object)
(4072, Id                                    4073
EmployeeName        KATHERINE ALBA-SWANSON
JobTitle                       FIREFIGHTER
BasePay                          104251.91
OvertimePay                       10237.24
OtherPay                           16646.4
Benefits                               NaN
TotalPay                         131135.55
TotalPayBenefits                 131135.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4072, dtype: object)
(4073, Id                               4074
EmployeeName              SEAN CRONIN
JobTitle            POLICE OFFICER II
BasePay                     107358.08
OvertimePay                   3172.59
OtherPay                     20604.31
Benefits                          NaN
TotalPay                    131134.98
TotalPayBenefits            131134.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4073, dtype: object)
(4074, Id                                4075
EmployeeName           JOSEPH MENDIOLA
JobTitle            POLICE OFFICER III
BasePay                      112421.47
OvertimePay                    8903.91
OtherPay                       9806.83
Benefits                           NaN
TotalPay                     131132.21
TotalPayBenefits             131132.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4074, dtype: object)
(4075, Id                               4076
EmployeeName         ROBERT MALLIARAS
JobTitle            POLICE OFFICER II
BasePay                      115145.0
OvertimePay                   7094.17
OtherPay                      8892.06
Benefits                          NaN
TotalPay                    131131.23
TotalPayBenefits            131131.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4075, dtype: object)
(4076, Id                            4077
EmployeeName        ANDREW MAIMONI
JobTitle                 MANAGER V
BasePay                  131095.81
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 131095.81
TotalPayBenefits         131095.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4076, dtype: object)
(4077, Id                                    4078
EmployeeName               BENJAMIN FRANKS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122404.99
OvertimePay                        1191.56
OtherPay                           7497.81
Benefits                               NaN
TotalPay                         131094.36
TotalPayBenefits                 131094.36
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4077, dtype: object)
(4078, Id                                    4079
EmployeeName        CRISTINA SANTO DOMINGO
JobTitle                  REGISTERED NURSE
BasePay                          111338.67
OvertimePay                        3419.46
OtherPay                          16326.83
Benefits                               NaN
TotalPay                         131084.96
TotalPayBenefits                 131084.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4078, dtype: object)
(4079, Id                              4080
EmployeeName              JIMMY CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     66266.79
OvertimePay                  60711.7
OtherPay                     4103.72
Benefits                         NaN
TotalPay                   131082.21
TotalPayBenefits           131082.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4079, dtype: object)
(4080, Id                           4081
EmployeeName           MARK OHARA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               7615.26
OtherPay                  17528.1
Benefits                      NaN
TotalPay                131078.02
TotalPayBenefits        131078.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4080, dtype: object)
(4081, Id                                4082
EmployeeName        CRISELDA RODRIGUEZ
JobTitle              REGISTERED NURSE
BasePay                       119496.0
OvertimePay                     4825.8
OtherPay                       6753.34
Benefits                           NaN
TotalPay                     131075.14
TotalPayBenefits             131075.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4081, dtype: object)
(4082, Id                                       4083
EmployeeName                   DAVID SPINETTA
JobTitle            ELECTRICIAN SUPERVISOR II
BasePay                              110620.8
OvertimePay                            1117.8
OtherPay                              19320.0
Benefits                                  NaN
TotalPay                             131058.6
TotalPayBenefits                     131058.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4082, dtype: object)
(4083, Id                              4084
EmployeeName        PURITA DE UNGRIA
JobTitle            REGISTERED NURSE
BasePay                    104636.49
OvertimePay                   9609.1
OtherPay                    16792.22
Benefits                         NaN
TotalPay                   131037.81
TotalPayBenefits           131037.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4083, dtype: object)
(4084, Id                              4085
EmployeeName              PAUL ARAYA
JobTitle            TRANSIT OPERATOR
BasePay                     69155.32
OvertimePay                 56337.46
OtherPay                     5530.09
Benefits                         NaN
TotalPay                   131022.87
TotalPayBenefits           131022.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4084, dtype: object)
(4085, Id                                4086
EmployeeName             ABBY ABINANTI
JobTitle            COURT COMMISSIONER
BasePay                      109464.88
OvertimePay                        0.0
OtherPay                      21543.77
Benefits                           NaN
TotalPay                     131008.65
TotalPayBenefits             131008.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4085, dtype: object)
(4086, Id                           4087
EmployeeName         JOHN MCNULTY
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               7639.03
OtherPay                 17433.52
Benefits                      NaN
TotalPay                131007.23
TotalPayBenefits        131007.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4086, dtype: object)
(4087, Id                                                4088
EmployeeName                                 SAMSON NG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   43001.72
OtherPay                                      10413.74
Benefits                                           NaN
TotalPay                                     130995.85
TotalPayBenefits                             130995.85
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4087, dtype: object)
(4088, Id                              4089
EmployeeName        ALBERTO OLIVEROS
JobTitle            REGISTERED NURSE
BasePay                     112424.0
OvertimePay                  4280.76
OtherPay                    14287.78
Benefits                         NaN
TotalPay                   130992.54
TotalPayBenefits           130992.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4088, dtype: object)
(4089, Id                             4090
EmployeeName        GAYLORD GABRIEL
JobTitle                FIREFIGHTER
BasePay                    96124.24
OvertimePay                24961.18
OtherPay                    9900.73
Benefits                        NaN
TotalPay                  130986.15
TotalPayBenefits          130986.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4089, dtype: object)
(4090, Id                           4091
EmployeeName        MICHAEL PLANK
JobTitle            SPECIAL NURSE
BasePay                 110794.12
OvertimePay               1986.35
OtherPay                 18182.59
Benefits                      NaN
TotalPay                130963.06
TotalPayBenefits        130963.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4090, dtype: object)
(4091, Id                                       4092
EmployeeName                  KATHLEEN POLICY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             130957.35
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            130957.35
TotalPayBenefits                    130957.35
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4091, dtype: object)
(4092, Id                                                  4093
EmployeeName                             PAUL WILLIAMSON
JobTitle            AUTOMOTIVE TRANSIT SHOP SUPERVISOR I
BasePay                                         105600.6
OvertimePay                                     23748.51
OtherPay                                         1606.86
Benefits                                             NaN
TotalPay                                       130955.97
TotalPayBenefits                               130955.97
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 4092, dtype: object)
(4093, Id                           4094
EmployeeName          BRIAN KYONO
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               6676.14
OtherPay                  18342.0
Benefits                      NaN
TotalPay                 130952.8
TotalPayBenefits         130952.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4093, dtype: object)
(4094, Id                              4095
EmployeeName          MACARIA CORREA
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   4977.0
OtherPay                      2714.8
Benefits                         NaN
TotalPay                    130931.8
TotalPayBenefits            130931.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4094, dtype: object)
(4095, Id                           4096
EmployeeName         CARY BUTCHER
JobTitle              FIREFIGHTER
BasePay                 104911.47
OvertimePay              10353.64
OtherPay                 15644.01
Benefits                      NaN
TotalPay                130909.12
TotalPayBenefits        130909.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4095, dtype: object)
(4096, Id                           4097
EmployeeName           JOSE MEJIA
JobTitle               MANAGER IV
BasePay                 130904.62
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                130904.62
TotalPayBenefits        130904.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4096, dtype: object)
(4097, Id                                4098
EmployeeName             DAVID DOCKERY
JobTitle            POLICE OFFICER III
BasePay                      117262.94
OvertimePay                    9969.02
OtherPay                        3646.8
Benefits                           NaN
TotalPay                     130878.76
TotalPayBenefits             130878.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4097, dtype: object)
(4098, Id                               4099
EmployeeName                ALARIC WU
JobTitle            POLICE OFFICER II
BasePay                      106557.2
OvertimePay                   7993.33
OtherPay                     16325.85
Benefits                          NaN
TotalPay                    130876.38
TotalPayBenefits            130876.38
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4098, dtype: object)
(4099, Id                                 4100
EmployeeName              CRYSTAL CHANG
JobTitle            IS PROJECT DIRECTOR
BasePay                       130875.92
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      130875.92
TotalPayBenefits              130875.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4099, dtype: object)
(4100, Id                                     4101
EmployeeName                ROBERT EICKWORT
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           130875.64
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          130875.64
TotalPayBenefits                  130875.64
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4100, dtype: object)
(4101, Id                                                4102
EmployeeName                              ROBERT MERCK
JobTitle            RADIOLOGIC TECHNOLOGIST SUPERVISOR
BasePay                                      122711.39
OvertimePay                                    4705.22
OtherPay                                       3449.48
Benefits                                           NaN
TotalPay                                     130866.09
TotalPayBenefits                             130866.09
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4101, dtype: object)
(4102, Id                             4103
EmployeeName        CHRIS RAY-ROHAN
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                 7677.23
OtherPay                   17246.96
Benefits                        NaN
TotalPay                  130858.85
TotalPayBenefits          130858.85
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4102, dtype: object)
(4103, Id                                4104
EmployeeName           CARLOS MANFREDI
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                    6499.72
OtherPay                      11935.86
Benefits                           NaN
TotalPay                     130856.98
TotalPayBenefits             130856.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4103, dtype: object)
(4104, Id                                 4105
EmployeeName                 JULIE SHIH
JobTitle            CLINICAL PHARMACIST
BasePay                       128747.53
OvertimePay                     1885.64
OtherPay                         205.49
Benefits                            NaN
TotalPay                      130838.66
TotalPayBenefits              130838.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4104, dtype: object)
(4105, Id                               4106
EmployeeName                  KARL MA
JobTitle            POLICE OFFICER II
BasePay                     110242.85
OvertimePay                   9012.08
OtherPay                      11583.7
Benefits                          NaN
TotalPay                    130838.63
TotalPayBenefits            130838.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4105, dtype: object)
(4106, Id                           4107
EmployeeName           WAYNE CHEW
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay              11378.58
OtherPay                 13499.84
Benefits                      NaN
TotalPay                130813.08
TotalPayBenefits        130813.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4106, dtype: object)
(4107, Id                              4108
EmployeeName             JESSICA LEE
JobTitle            REGISTERED NURSE
BasePay                    119438.57
OvertimePay                      0.0
OtherPay                     11369.9
Benefits                         NaN
TotalPay                   130808.47
TotalPayBenefits           130808.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4107, dtype: object)
(4108, Id                              4109
EmployeeName              MARIA LUNA
JobTitle            REGISTERED NURSE
BasePay                     103919.1
OvertimePay                 14213.25
OtherPay                    12649.33
Benefits                         NaN
TotalPay                   130781.68
TotalPayBenefits           130781.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4108, dtype: object)
(4109, Id                                    4110
EmployeeName                   JON SARGENT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                            0.0
OtherPay                           8370.55
Benefits                               NaN
TotalPay                         130775.55
TotalPayBenefits                 130775.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4109, dtype: object)
(4110, Id                                4111
EmployeeName           PATRICK KENNEDY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   12402.27
OtherPay                       5970.74
Benefits                           NaN
TotalPay                     130774.09
TotalPayBenefits             130774.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4110, dtype: object)
(4111, Id                                4112
EmployeeName               JAMES REYES
JobTitle            POLICE OFFICER III
BasePay                      109980.71
OvertimePay                    6772.62
OtherPay                      14016.71
Benefits                           NaN
TotalPay                     130770.04
TotalPayBenefits             130770.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4111, dtype: object)
(4112, Id                                    4113
EmployeeName                 TIMOTHY FINCH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105134.33
OvertimePay                       19325.31
OtherPay                           6290.21
Benefits                               NaN
TotalPay                         130749.85
TotalPayBenefits                 130749.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4112, dtype: object)
(4113, Id                                    4114
EmployeeName              RACHAEL ATCHISON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          121107.89
OvertimePay                        1617.02
OtherPay                           8024.89
Benefits                               NaN
TotalPay                          130749.8
TotalPayBenefits                  130749.8
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4113, dtype: object)
(4114, Id                                   4115
EmployeeName                  KENNY LEWIS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.01
OvertimePay                      26650.68
OtherPay                          7820.96
Benefits                              NaN
TotalPay                        130723.65
TotalPayBenefits                130723.65
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4114, dtype: object)
(4115, Id                                              4116
EmployeeName                            WILFRED FONG
JobTitle            AUTOMOTIVE MECHANIC SUPERVISOR I
BasePay                                     97075.02
OvertimePay                                 13697.35
OtherPay                                    19917.32
Benefits                                         NaN
TotalPay                                   130689.69
TotalPayBenefits                           130689.69
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4115, dtype: object)
(4116, Id                                                        4117
EmployeeName                                      RICHARD HONG
JobTitle            PRINCIPAL DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                               123290.7
OvertimePay                                                0.0
OtherPay                                               7398.01
Benefits                                                   NaN
TotalPay                                             130688.71
TotalPayBenefits                                     130688.71
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 4116, dtype: object)
(4117, Id                                4118
EmployeeName           DARRELL AUYOUNG
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                     7023.9
OtherPay                      11271.57
Benefits                           NaN
TotalPay                     130676.17
TotalPayBenefits             130676.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4117, dtype: object)
(4118, Id                                      4119
EmployeeName                   ALAN DE BELLA
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            120336.58
OvertimePay                              0.0
OtherPay                            10324.15
Benefits                                 NaN
TotalPay                           130660.73
TotalPayBenefits                   130660.73
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4118, dtype: object)
(4119, Id                            4120
EmployeeName         STELLA TORREY
JobTitle            DEPUTY SHERIFF
BasePay                    84499.1
OvertimePay                41995.1
OtherPay                    4166.5
Benefits                       NaN
TotalPay                  130660.7
TotalPayBenefits          130660.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4119, dtype: object)
(4120, Id                            4121
EmployeeName             SCOTT NEU
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               37245.84
OtherPay                   6565.53
Benefits                       NaN
TotalPay                 130651.37
TotalPayBenefits         130651.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4120, dtype: object)
(4121, Id                                4122
EmployeeName         RICHARD ALVI YICK
JobTitle            POLICE OFFICER III
BasePay                      112417.28
OvertimePay                    2288.27
OtherPay                      15932.76
Benefits                           NaN
TotalPay                     130638.31
TotalPayBenefits             130638.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4121, dtype: object)
(4122, Id                                    4123
EmployeeName                  LORI CLETHEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          116521.23
OvertimePay                        1063.42
OtherPay                          13051.37
Benefits                               NaN
TotalPay                         130636.02
TotalPayBenefits                 130636.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4122, dtype: object)
(4123, Id                              4124
EmployeeName           SANTIAGO HAYO
JobTitle            REGISTERED NURSE
BasePay                    119418.07
OvertimePay                   622.71
OtherPay                     10589.4
Benefits                         NaN
TotalPay                   130630.18
TotalPayBenefits           130630.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4123, dtype: object)
(4124, Id                           4125
EmployeeName          FRANK BONAL
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               7822.83
OtherPay                  16863.3
Benefits                      NaN
TotalPay                130620.81
TotalPayBenefits        130620.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4124, dtype: object)
(4125, Id                               4126
EmployeeName                BENNY LEW
JobTitle            POLICE OFFICER II
BasePay                     110242.95
OvertimePay                   8328.29
OtherPay                     12044.18
Benefits                          NaN
TotalPay                    130615.42
TotalPayBenefits            130615.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4125, dtype: object)
(4126, Id                                  4127
EmployeeName                    GRACE KO
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.05
OvertimePay                          0.0
OtherPay                         11919.1
Benefits                             NaN
TotalPay                       130611.15
TotalPayBenefits               130611.15
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4126, dtype: object)
(4127, Id                                    4128
EmployeeName               KRISTINA NELSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           121943.4
OvertimePay                            0.0
OtherPay                           8654.39
Benefits                               NaN
TotalPay                         130597.79
TotalPayBenefits                 130597.79
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4127, dtype: object)
(4128, Id                                                4129
EmployeeName                                DERICK HUI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   45520.25
OtherPay                                       7502.87
Benefits                                           NaN
TotalPay                                     130592.12
TotalPayBenefits                             130592.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4128, dtype: object)
(4129, Id                                  4130
EmployeeName        DIANE VAN DER HEIDEN
JobTitle                     FIREFIGHTER
BasePay                        104575.27
OvertimePay                      9337.66
OtherPay                        16677.84
Benefits                             NaN
TotalPay                       130590.77
TotalPayBenefits               130590.77
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4129, dtype: object)
(4130, Id                                4131
EmployeeName              M CASTAGNOLA
JobTitle            POLICE OFFICER III
BasePay                      112380.73
OvertimePay                    8320.71
OtherPay                       9885.23
Benefits                           NaN
TotalPay                     130586.67
TotalPayBenefits             130586.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4130, dtype: object)
(4131, Id                                                          4132
EmployeeName                                        KEVIN TEAHAN
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                 90092.31
OvertimePay                                             38498.56
OtherPay                                                  1991.8
Benefits                                                     NaN
TotalPay                                               130582.67
TotalPayBenefits                                       130582.67
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4131, dtype: object)
(4132, Id                           4133
EmployeeName         BRIAN BARDEN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               6579.84
OtherPay                 18063.44
Benefits                      NaN
TotalPay                130577.92
TotalPayBenefits        130577.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4132, dtype: object)
(4133, Id                               4134
EmployeeName        GREGORY MC CARTHY
JobTitle                     ENGINEER
BasePay                     128973.55
OvertimePay                       0.0
OtherPay                      1588.89
Benefits                          NaN
TotalPay                    130562.44
TotalPayBenefits            130562.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4133, dtype: object)
(4134, Id                                     4135
EmployeeName                  RENE LEEDEMAN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            128669.6
OvertimePay                             0.0
OtherPay                            1885.41
Benefits                                NaN
TotalPay                          130555.01
TotalPayBenefits                  130555.01
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4134, dtype: object)
(4135, Id                                         4136
EmployeeName                         ALFRED JOE
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                               115381.02
OvertimePay                                 0.0
OtherPay                               15169.39
Benefits                                    NaN
TotalPay                              130550.41
TotalPayBenefits                      130550.41
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4135, dtype: object)
(4136, Id                                                4137
EmployeeName                             GEORGE BERNAL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        78429.4
OvertimePay                                    50466.5
OtherPay                                       1612.03
Benefits                                           NaN
TotalPay                                     130507.93
TotalPayBenefits                             130507.93
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4136, dtype: object)
(4137, Id                                         4138
EmployeeName                    SETH RUBENSTEIN
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                123120.0
OvertimePay                                 0.0
OtherPay                                 7387.2
Benefits                                    NaN
TotalPay                               130507.2
TotalPayBenefits                       130507.2
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4137, dtype: object)
(4138, Id                                4139
EmployeeName             MICHAEL WELLS
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                   10197.73
OtherPay                        7887.2
Benefits                           NaN
TotalPay                     130506.38
TotalPayBenefits             130506.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4138, dtype: object)
(4139, Id                                4140
EmployeeName               JAMES KREPS
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5573.62
OtherPay                      12511.22
Benefits                           NaN
TotalPay                     130485.92
TotalPayBenefits             130485.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4139, dtype: object)
(4140, Id                              4141
EmployeeName             SARA DEVLIN
JobTitle            REGISTERED NURSE
BasePay                    114450.42
OvertimePay                  5643.46
OtherPay                    10390.93
Benefits                         NaN
TotalPay                   130484.81
TotalPayBenefits           130484.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4140, dtype: object)
(4141, Id                              4142
EmployeeName        MELINDA TALMADGE
JobTitle                 FIREFIGHTER
BasePay                    123001.99
OvertimePay                      0.0
OtherPay                     7477.56
Benefits                         NaN
TotalPay                   130479.55
TotalPayBenefits           130479.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4141, dtype: object)
(4142, Id                                               4143
EmployeeName                           HING PONG CHAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   31178.7
OtherPay                                        300.0
Benefits                                          NaN
TotalPay                                     130478.7
TotalPayBenefits                             130478.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4142, dtype: object)
(4143, Id                                             4144
EmployeeName                        ANTHONY FOTINOS
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                     42738.0
OvertimePay                                 47827.7
OtherPay                                   39904.72
Benefits                                        NaN
TotalPay                                  130470.42
TotalPayBenefits                          130470.42
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4143, dtype: object)
(4144, Id                                4145
EmployeeName            MIKE MURPHY JR
JobTitle            POLICE OFFICER III
BasePay                      112421.37
OvertimePay                    7291.53
OtherPay                      10756.16
Benefits                           NaN
TotalPay                     130469.06
TotalPayBenefits             130469.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4144, dtype: object)
(4145, Id                              4146
EmployeeName            JEFF GAUGHAN
JobTitle            REGISTERED NURSE
BasePay                    118960.56
OvertimePay                      0.0
OtherPay                    11503.59
Benefits                         NaN
TotalPay                   130464.15
TotalPayBenefits           130464.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4145, dtype: object)
(4146, Id                                       4147
EmployeeName                 CHRISTIANE HIPPS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             107847.95
OvertimePay                               0.0
OtherPay                             22602.08
Benefits                                  NaN
TotalPay                            130450.03
TotalPayBenefits                    130450.03
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4146, dtype: object)
(4147, Id                               4148
EmployeeName        CHRISTOPHER DUNNE
JobTitle            POLICE OFFICER II
BasePay                     105003.27
OvertimePay                  10949.27
OtherPay                     14486.95
Benefits                          NaN
TotalPay                    130439.49
TotalPayBenefits            130439.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4147, dtype: object)
(4148, Id                                          4149
EmployeeName                         BLAIR ADAMS
JobTitle            INFORMATION SERVICES MANAGER
BasePay                                130436.77
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               130436.77
TotalPayBenefits                       130436.77
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4148, dtype: object)
(4149, Id                              4150
EmployeeName        MARIALUZ BANARES
JobTitle            REGISTERED NURSE
BasePay                    118318.98
OvertimePay                  7547.11
OtherPay                     4562.81
Benefits                         NaN
TotalPay                    130428.9
TotalPayBenefits            130428.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4149, dtype: object)
(4150, Id                                         4151
EmployeeName                   DONALD DURKEE JR
JobTitle            INCIDENT SUPPORT SPECIALIST
BasePay                               115380.99
OvertimePay                              847.03
OtherPay                               14182.15
Benefits                                    NaN
TotalPay                              130410.17
TotalPayBenefits                      130410.17
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4150, dtype: object)
(4151, Id                                  4152
EmployeeName                JOHN LERTORA
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                        11700.97
Benefits                             NaN
TotalPay                       130392.98
TotalPayBenefits               130392.98
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4151, dtype: object)
(4152, Id                                4153
EmployeeName              RAMON MOLINA
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   33188.19
OtherPay                        9139.1
Benefits                           NaN
TotalPay                     130389.29
TotalPayBenefits             130389.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4152, dtype: object)
(4153, Id                              4154
EmployeeName        BEGONIA KNOBLOCH
JobTitle            REGISTERED NURSE
BasePay                     108849.7
OvertimePay                   5128.2
OtherPay                    16403.64
Benefits                         NaN
TotalPay                   130381.54
TotalPayBenefits           130381.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4153, dtype: object)
(4154, Id                                      4155
EmployeeName            FRANCIS SPERISEN III
JobTitle            FIRE SAFETY INSPECTOR II
BasePay                            122991.25
OvertimePay                              0.0
OtherPay                             7379.56
Benefits                                 NaN
TotalPay                           130370.81
TotalPayBenefits                   130370.81
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4154, dtype: object)
(4155, Id                                4156
EmployeeName              MARK YESITIS
JobTitle            POLICE OFFICER III
BasePay                      112384.22
OvertimePay                   11248.24
OtherPay                       6723.31
Benefits                           NaN
TotalPay                     130355.77
TotalPayBenefits             130355.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4155, dtype: object)
(4156, Id                                        4157
EmployeeName                   MARIE OUANO-KIM
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103967.44
OvertimePay                           20579.83
OtherPay                               5805.66
Benefits                                   NaN
TotalPay                             130352.93
TotalPayBenefits                     130352.93
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 4156, dtype: object)
(4157, Id                                            4158
EmployeeName                            JAMES BLUE
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  105300.87
OvertimePay                                6139.53
OtherPay                                  18904.98
Benefits                                       NaN
TotalPay                                 130345.38
TotalPayBenefits                         130345.38
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 4157, dtype: object)
(4158, Id                              4159
EmployeeName             ROMULO ALOG
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   5688.0
OtherPay                      1411.3
Benefits                         NaN
TotalPay                    130339.3
TotalPayBenefits            130339.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4158, dtype: object)
(4159, Id                                       4160
EmployeeName                 KATHERINE MILLER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             130336.61
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            130336.61
TotalPayBenefits                    130336.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4159, dtype: object)
(4160, Id                              4161
EmployeeName           ARNOLD BORGEN
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  9035.31
OtherPay                    15249.36
Benefits                         NaN
TotalPay                   130330.75
TotalPayBenefits           130330.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4160, dtype: object)
(4161, Id                                4162
EmployeeName             DENNIS TOOMER
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                   12853.75
OtherPay                       5069.82
Benefits                           NaN
TotalPay                     130324.64
TotalPayBenefits             130324.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4161, dtype: object)
(4162, Id                                      4163
EmployeeName                     KENNETH JEW
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                             97496.17
OvertimePay                              0.0
OtherPay                            32823.19
Benefits                                 NaN
TotalPay                           130319.36
TotalPayBenefits                   130319.36
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4162, dtype: object)
(4163, Id                              4164
EmployeeName            JOHN ESPANOL
JobTitle            REGISTERED NURSE
BasePay                    122165.34
OvertimePay                  7294.38
OtherPay                       854.4
Benefits                         NaN
TotalPay                   130314.12
TotalPayBenefits           130314.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4163, dtype: object)
(4164, Id                                4165
EmployeeName        KATHLEEN MCELHENEY
JobTitle                   FIREFIGHTER
BasePay                       105934.7
OvertimePay                    6615.82
OtherPay                      17761.23
Benefits                           NaN
TotalPay                     130311.75
TotalPayBenefits             130311.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4164, dtype: object)
(4165, Id                                4166
EmployeeName               NATHAN CHAN
JobTitle            POLICE OFFICER III
BasePay                      112380.57
OvertimePay                    7811.22
OtherPay                      10114.01
Benefits                           NaN
TotalPay                      130305.8
TotalPayBenefits              130305.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4165, dtype: object)
(4166, Id                                4167
EmployeeName                LOUIS WONG
JobTitle            POLICE OFFICER III
BasePay                      112380.67
OvertimePay                    5280.57
OtherPay                      12617.15
Benefits                           NaN
TotalPay                     130278.39
TotalPayBenefits             130278.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4166, dtype: object)
(4167, Id                               4168
EmployeeName               MOLI FINAU
JobTitle            POLICE OFFICER II
BasePay                     109701.94
OvertimePay                   8202.67
OtherPay                     12347.89
Benefits                          NaN
TotalPay                     130252.5
TotalPayBenefits             130252.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4167, dtype: object)
(4168, Id                            4169
EmployeeName        WINNETTE ALLEN
JobTitle             SPECIAL NURSE
BasePay                  125106.95
OvertimePay                3560.72
OtherPay                   1562.48
Benefits                       NaN
TotalPay                 130230.15
TotalPayBenefits         130230.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4168, dtype: object)
(4169, Id                               4170
EmployeeName        CHRISTINA JOHNSON
JobTitle             POLICE OFFICER I
BasePay                     100952.53
OvertimePay                  12613.98
OtherPay                     16647.06
Benefits                          NaN
TotalPay                    130213.57
TotalPayBenefits            130213.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4169, dtype: object)
(4170, Id                                  4171
EmployeeName               BRIGHAM YOUNG
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                        11515.43
Benefits                             NaN
TotalPay                       130207.45
TotalPayBenefits               130207.45
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4170, dtype: object)
(4171, Id                                    4172
EmployeeName                    DAVID DUNG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122405.0
OvertimePay                            0.0
OtherPay                           7800.27
Benefits                               NaN
TotalPay                         130205.27
TotalPayBenefits                 130205.27
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4171, dtype: object)
(4172, Id                               4173
EmployeeName         SUSANNAH ROBBINS
JobTitle            DEPARTMENT HEAD I
BasePay                     130197.86
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    130197.86
TotalPayBenefits            130197.86
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4172, dtype: object)
(4173, Id                                4174
EmployeeName              JASON GARDEN
JobTitle            POLICE OFFICER III
BasePay                      111560.69
OvertimePay                   11358.74
OtherPay                       7267.39
Benefits                           NaN
TotalPay                     130186.82
TotalPayBenefits             130186.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4173, dtype: object)
(4174, Id                                4175
EmployeeName          TERRENCE LAUBACH
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                     8383.4
OtherPay                       9378.62
Benefits                           NaN
TotalPay                     130183.48
TotalPayBenefits             130183.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4174, dtype: object)
(4175, Id                           4176
EmployeeName         MATTHEW EGAN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               6661.67
OtherPay                  17584.9
Benefits                      NaN
TotalPay                130181.23
TotalPayBenefits        130181.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4175, dtype: object)
(4176, Id                                              4177
EmployeeName                          WILLIAM MURRAY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    128446.62
OvertimePay                                      0.0
OtherPay                                     1729.16
Benefits                                         NaN
TotalPay                                   130175.78
TotalPayBenefits                           130175.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4176, dtype: object)
(4177, Id                                     4178
EmployeeName                   AMY BROWNELL
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           130171.24
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          130171.24
TotalPayBenefits                  130171.24
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4177, dtype: object)
(4178, Id                                     4179
EmployeeName                    SUSAN LEONG
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           130171.08
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          130171.08
TotalPayBenefits                  130171.08
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4178, dtype: object)
(4179, Id                                     4180
EmployeeName                     CHARLES YU
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           130171.05
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          130171.05
TotalPayBenefits                  130171.05
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4179, dtype: object)
(4180, Id                                     4181
EmployeeName                   RAUL MOSUELA
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           130171.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          130171.02
TotalPayBenefits                  130171.02
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4180, dtype: object)
(4181, Id                                       4182
EmployeeName                      ANDREW SHEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             130167.42
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            130167.42
TotalPayBenefits                    130167.42
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4181, dtype: object)
(4182, Id                                            4183
EmployeeName                      GREGORY KAZARIAN
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  105300.94
OvertimePay                                8642.16
OtherPay                                  16215.63
Benefits                                       NaN
TotalPay                                 130158.73
TotalPayBenefits                         130158.73
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 4182, dtype: object)
(4183, Id                                               4184
EmployeeName                         ERNESTO LANDRITO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  22107.78
OtherPay                                      9016.87
Benefits                                          NaN
TotalPay                                    130139.05
TotalPayBenefits                            130139.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4183, dtype: object)
(4184, Id                                4185
EmployeeName        GUILLERMO CASILLAS
JobTitle                   FIREFIGHTER
BasePay                       105911.1
OvertimePay                    7425.51
OtherPay                      16800.96
Benefits                           NaN
TotalPay                     130137.57
TotalPayBenefits             130137.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4184, dtype: object)
(4185, Id                           4186
EmployeeName           SUEON WONG
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay                   0.0
OtherPay                 24199.99
Benefits                      NaN
TotalPay                130134.67
TotalPayBenefits        130134.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4185, dtype: object)
(4186, Id                                               4187
EmployeeName                             HAN WIN CHOU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   29181.6
OtherPay                                       1932.0
Benefits                                          NaN
TotalPay                                     130128.0
TotalPayBenefits                             130128.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4186, dtype: object)
(4187, Id                                 4188
EmployeeName         SUZANNAH PATTERSON
JobTitle            CLINICAL PHARMACIST
BasePay                       125123.45
OvertimePay                         0.0
OtherPay                         5000.0
Benefits                            NaN
TotalPay                      130123.45
TotalPayBenefits              130123.45
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4187, dtype: object)
(4188, Id                               4189
EmployeeName           JOSEPH EVERSON
JobTitle            POLICE OFFICER II
BasePay                     102530.48
OvertimePay                  14624.03
OtherPay                     12967.16
Benefits                          NaN
TotalPay                    130121.67
TotalPayBenefits            130121.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4188, dtype: object)
(4189, Id                                 4190
EmployeeName        FERDINAND MA MABAET
JobTitle                  SPECIAL NURSE
BasePay                       109336.57
OvertimePay                     2881.47
OtherPay                       17886.25
Benefits                            NaN
TotalPay                      130104.29
TotalPayBenefits              130104.29
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4189, dtype: object)
(4190, Id                                          4191
EmployeeName                     NANCY LILLEGARD
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.23
OvertimePay                                  0.0
OtherPay                                30065.02
Benefits                                     NaN
TotalPay                               130104.25
TotalPayBenefits                       130104.25
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4190, dtype: object)
(4191, Id                                  4192
EmployeeName                  GARY LYNCH
JobTitle            PLUMBER SUPERVISOR I
BasePay                        101641.82
OvertimePay                     18297.39
OtherPay                        10164.18
Benefits                             NaN
TotalPay                       130103.39
TotalPayBenefits               130103.39
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4191, dtype: object)
(4192, Id                                         4193
EmployeeName                        VICKY YOUNG
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               130101.06
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              130101.06
TotalPayBenefits                      130101.06
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4192, dtype: object)
(4193, Id                              4194
EmployeeName          NIMFA PUNZALAN
JobTitle            REGISTERED NURSE
BasePay                    112031.33
OvertimePay                   109.88
OtherPay                    17947.28
Benefits                         NaN
TotalPay                   130088.49
TotalPayBenefits           130088.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4193, dtype: object)
(4194, Id                                       4195
EmployeeName                        MARC KATZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             126391.49
OvertimePay                               0.0
OtherPay                               3688.0
Benefits                                  NaN
TotalPay                            130079.49
TotalPayBenefits                    130079.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4194, dtype: object)
(4195, Id                           4196
EmployeeName        STEVEN STRONG
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              10956.72
OtherPay                 13181.41
Benefits                      NaN
TotalPay                130072.78
TotalPayBenefits        130072.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4195, dtype: object)
(4196, Id                           4197
EmployeeName             PAUL LEE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              10282.84
OtherPay                 13849.95
Benefits                      NaN
TotalPay                130067.46
TotalPayBenefits        130067.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4196, dtype: object)
(4197, Id                           4198
EmployeeName          MYRON SCOTT
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               6098.06
OtherPay                 18014.64
Benefits                      NaN
TotalPay                130047.37
TotalPayBenefits        130047.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4197, dtype: object)
(4198, Id                                4199
EmployeeName              GREGORY DITO
JobTitle            POLICE OFFICER III
BasePay                       112401.1
OvertimePay                    13365.3
OtherPay                       4273.88
Benefits                           NaN
TotalPay                     130040.28
TotalPayBenefits             130040.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4198, dtype: object)
(4199, Id                                 4200
EmployeeName                ARTHUR WONG
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.52
OvertimePay                         0.0
OtherPay                        2355.04
Benefits                            NaN
TotalPay                      130032.56
TotalPayBenefits              130032.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4199, dtype: object)
(4200, Id                             4201
EmployeeName           CAROLYN FOON
JobTitle            SENIOR ENGINEER
BasePay                   130031.67
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  130031.67
TotalPayBenefits          130031.67
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4200, dtype: object)
(4201, Id                                  4202
EmployeeName        J.CARLITO PANGANIBAN
JobTitle              ASSOCIATE ENGINEER
BasePay                        111438.07
OvertimePay                          0.0
OtherPay                        18592.06
Benefits                             NaN
TotalPay                       130030.13
TotalPayBenefits               130030.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4201, dtype: object)
(4202, Id                               4203
EmployeeName        BENJAMIN PAGTANAC
JobTitle             POLICE OFFICER I
BasePay                     106046.07
OvertimePay                  13077.73
OtherPay                      10904.2
Benefits                          NaN
TotalPay                     130028.0
TotalPayBenefits             130028.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4202, dtype: object)
(4203, Id                                       4204
EmployeeName                       JOHN ORKES
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               98818.8
OvertimePay                          28541.36
OtherPay                              2665.19
Benefits                                  NaN
TotalPay                            130025.35
TotalPayBenefits                    130025.35
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4203, dtype: object)
(4204, Id                                   4205
EmployeeName               ROBERT TREVIZO
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.23
OvertimePay                      23677.79
OtherPay                         10078.42
Benefits                              NaN
TotalPay                        130010.44
TotalPayBenefits                130010.44
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4204, dtype: object)
(4205, Id                                                      4206
EmployeeName                                     WAYLAND LEE
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                              87345.6
OvertimePay                                         40230.14
OtherPay                                              2421.0
Benefits                                                 NaN
TotalPay                                           129996.74
TotalPayBenefits                                   129996.74
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 4205, dtype: object)
(4206, Id                                4207
EmployeeName        MICHAEL SALLABERRY
JobTitle               SENIOR ENGINEER
BasePay                      129903.44
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                     129993.44
TotalPayBenefits             129993.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4206, dtype: object)
(4207, Id                                                4208
EmployeeName                           FERDINAND ROTAP
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   43790.13
OtherPay                                       8613.04
Benefits                                           NaN
TotalPay                                     129983.57
TotalPayBenefits                             129983.57
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4207, dtype: object)
(4208, Id                                4209
EmployeeName            PETER SCHLEGLE
JobTitle            POLICE OFFICER III
BasePay                      112417.34
OvertimePay                    7267.02
OtherPay                      10297.66
Benefits                           NaN
TotalPay                     129982.02
TotalPayBenefits             129982.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4208, dtype: object)
(4209, Id                                4210
EmployeeName             MARILYN MATLI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    11892.9
OtherPay                       5654.94
Benefits                           NaN
TotalPay                     129969.29
TotalPayBenefits             129969.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4209, dtype: object)
(4210, Id                            4211
EmployeeName        AMANDA WALLACE
JobTitle               MANAGER III
BasePay                  129963.86
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 129963.86
TotalPayBenefits         129963.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4210, dtype: object)
(4211, Id                                 4212
EmployeeName                   LUCY LUU
JobTitle            CLINICAL PHARMACIST
BasePay                       129760.06
OvertimePay                         0.0
OtherPay                          200.0
Benefits                            NaN
TotalPay                      129960.06
TotalPayBenefits              129960.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4211, dtype: object)
(4212, Id                               4213
EmployeeName               CONROY TAM
JobTitle            POLICE OFFICER II
BasePay                      99079.46
OvertimePay                  11187.43
OtherPay                     19686.92
Benefits                          NaN
TotalPay                    129953.81
TotalPayBenefits            129953.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4212, dtype: object)
(4213, Id                                4214
EmployeeName                ALLAN WONG
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                   12430.38
OtherPay                       5111.68
Benefits                           NaN
TotalPay                     129943.14
TotalPayBenefits             129943.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4213, dtype: object)
(4214, Id                              4215
EmployeeName               MYRA BASA
JobTitle            REGISTERED NURSE
BasePay                    105675.47
OvertimePay                  4679.88
OtherPay                    19584.51
Benefits                         NaN
TotalPay                   129939.86
TotalPayBenefits           129939.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4214, dtype: object)
(4215, Id                                  4216
EmployeeName                  HENRY CHIN
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                         11240.1
Benefits                             NaN
TotalPay                       129932.11
TotalPayBenefits               129932.11
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4215, dtype: object)
(4216, Id                                                4217
EmployeeName                              JEROME SMITH
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   45870.21
OtherPay                                       6474.79
Benefits                                           NaN
TotalPay                                      129925.4
TotalPayBenefits                              129925.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4216, dtype: object)
(4217, Id                                4218
EmployeeName              OCEAN EMBODY
JobTitle            POLICE OFFICER III
BasePay                      112195.82
OvertimePay                    3857.61
OtherPay                      13861.44
Benefits                           NaN
TotalPay                     129914.87
TotalPayBenefits             129914.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4217, dtype: object)
(4218, Id                                    4219
EmployeeName                     TOMMY YUP
JobTitle            MAINTENANCE CONTROLLER
BasePay                           90022.35
OvertimePay                       28412.53
OtherPay                          11479.29
Benefits                               NaN
TotalPay                         129914.17
TotalPayBenefits                 129914.17
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4218, dtype: object)
(4219, Id                                                        4220
EmployeeName                                      ANDREA CREED
JobTitle            ASSISTANT INSPECTOR II (POLICE DEPARTMENT)
BasePay                                              128147.11
OvertimePay                                             947.24
OtherPay                                                819.52
Benefits                                                   NaN
TotalPay                                             129913.87
TotalPayBenefits                                     129913.87
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 4219, dtype: object)
(4220, Id                                       4221
EmployeeName                     JOSHUA WHITE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              129907.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             129907.4
TotalPayBenefits                     129907.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4220, dtype: object)
(4221, Id                                4222
EmployeeName             SONIA MARIONA
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    5529.34
OtherPay                      11996.01
Benefits                           NaN
TotalPay                     129906.06
TotalPayBenefits             129906.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4221, dtype: object)
(4222, Id                                         4223
EmployeeName                         LISA INMAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               107918.89
OvertimePay                               352.1
OtherPay                                21634.3
Benefits                                    NaN
TotalPay                              129905.29
TotalPayBenefits                      129905.29
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4222, dtype: object)
(4223, Id                            4224
EmployeeName        JOSEPH CERTAIN
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                6225.67
OtherPay                  17743.49
Benefits                       NaN
TotalPay                 129903.83
TotalPayBenefits         129903.83
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4223, dtype: object)
(4224, Id                              4225
EmployeeName           LIANA KASTINA
JobTitle            TRAIN CONTROLLER
BasePay                    101927.46
OvertimePay                 17274.69
OtherPay                    10699.55
Benefits                         NaN
TotalPay                    129901.7
TotalPayBenefits            129901.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4224, dtype: object)
(4225, Id                                       4226
EmployeeName                   BRENDON ONEILL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             129897.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            129897.62
TotalPayBenefits                    129897.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4225, dtype: object)
(4226, Id                                   4227
EmployeeName                    CHINLI MA
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95511.61
OvertimePay                      26947.34
OtherPay                          7436.68
Benefits                              NaN
TotalPay                        129895.63
TotalPayBenefits                129895.63
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4226, dtype: object)
(4227, Id                              4228
EmployeeName            MAHMOOD AZAM
JobTitle            TRANSIT OPERATOR
BasePay                     67148.24
OvertimePay                 55991.09
OtherPay                     6746.83
Benefits                         NaN
TotalPay                   129886.16
TotalPayBenefits           129886.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4227, dtype: object)
(4228, Id                           4229
EmployeeName        MICHAEL CLARK
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay               7426.43
OtherPay                 16486.42
Benefits                      NaN
TotalPay                129847.48
TotalPayBenefits        129847.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4228, dtype: object)
(4229, Id                            4230
EmployeeName        EUGENE CERBONE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               31895.68
OtherPay                  11110.47
Benefits                       NaN
TotalPay                 129846.17
TotalPayBenefits         129846.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4229, dtype: object)
(4230, Id                                      4231
EmployeeName                    WILLIAM GUNN
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                             97563.65
OvertimePay                          31938.8
OtherPay                               334.9
Benefits                                 NaN
TotalPay                           129837.35
TotalPayBenefits                   129837.35
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4230, dtype: object)
(4231, Id                                        4232
EmployeeName                  EDER DELOS REYES
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103974.01
OvertimePay                            16405.4
OtherPay                               9456.25
Benefits                                   NaN
TotalPay                             129835.66
TotalPayBenefits                     129835.66
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 4231, dtype: object)
(4232, Id                                4233
EmployeeName            MANUEL ROBLETO
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    9691.51
OtherPay                       7721.16
Benefits                           NaN
TotalPay                     129834.13
TotalPayBenefits             129834.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4232, dtype: object)
(4233, Id                             4234
EmployeeName        MICHELLE GEDDES
JobTitle                MANAGER III
BasePay                   120941.37
OvertimePay                     0.0
OtherPay                    8887.56
Benefits                        NaN
TotalPay                  129828.93
TotalPayBenefits          129828.93
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4233, dtype: object)
(4234, Id                                4235
EmployeeName                MARY ANGEL
JobTitle            NURSE PRACTITIONER
BasePay                      129576.05
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     129826.05
TotalPayBenefits             129826.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4234, dtype: object)
(4235, Id                           4236
EmployeeName         DAVID CHAVEZ
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               4689.11
OtherPay                 19165.09
Benefits                      NaN
TotalPay                129788.87
TotalPayBenefits        129788.87
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4235, dtype: object)
(4236, Id                                       4237
EmployeeName                   ERIN BERNSTEIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             129783.73
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            129783.73
TotalPayBenefits                    129783.73
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4236, dtype: object)
(4237, Id                               4238
EmployeeName        PEDRO GONZALEZ JR
JobTitle                  FIREFIGHTER
BasePay                     105934.66
OvertimePay                   6280.53
OtherPay                     17559.21
Benefits                          NaN
TotalPay                     129774.4
TotalPayBenefits             129774.4
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4237, dtype: object)
(4238, Id                                                4239
EmployeeName                           KENNETH MCRORIE
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                        87122.4
OvertimePay                                   42649.93
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                     129772.33
TotalPayBenefits                             129772.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4238, dtype: object)
(4239, Id                                 4240
EmployeeName                 ALDO GOMEZ
JobTitle            PHYSICIAN ASSISTANT
BasePay                       120832.76
OvertimePay                     5193.48
OtherPay                        3744.31
Benefits                            NaN
TotalPay                      129770.55
TotalPayBenefits              129770.55
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4239, dtype: object)
(4240, Id                                             4241
EmployeeName                               MARY HAO
JobTitle            MANAGER, EMPLOYEE RELATIONS DIV
BasePay                                   129766.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  129766.02
TotalPayBenefits                          129766.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4240, dtype: object)
(4241, Id                                    4242
EmployeeName                 ROBERT BOUGHN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           122420.0
OvertimePay                            0.0
OtherPay                           7345.25
Benefits                               NaN
TotalPay                         129765.25
TotalPayBenefits                 129765.25
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4241, dtype: object)
(4242, Id                                    4243
EmployeeName                    JAMES BEEM
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          122420.02
OvertimePay                            0.0
OtherPay                           7345.22
Benefits                               NaN
TotalPay                         129765.24
TotalPayBenefits                 129765.24
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4242, dtype: object)
(4243, Id                                                4244
EmployeeName                         MICHAEL MILITANTE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   43951.71
OtherPay                                       8193.04
Benefits                                           NaN
TotalPay                                     129725.15
TotalPayBenefits                             129725.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4243, dtype: object)
(4244, Id                                       4245
EmployeeName                     LOUISE OGDEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             129723.83
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            129723.83
TotalPayBenefits                    129723.83
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4244, dtype: object)
(4245, Id                              4246
EmployeeName        MARVIN CABUNTALA
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 13147.27
OtherPay                     10511.2
Benefits                         NaN
TotalPay                   129723.67
TotalPayBenefits           129723.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4245, dtype: object)
(4246, Id                                4247
EmployeeName            MATTHEW MACIEL
JobTitle            POLICE OFFICER III
BasePay                      112441.78
OvertimePay                    5060.68
OtherPay                      12218.98
Benefits                           NaN
TotalPay                     129721.44
TotalPayBenefits             129721.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4246, dtype: object)
(4247, Id                                4248
EmployeeName             EDMOND ROBLES
JobTitle            POLICE OFFICER III
BasePay                      117283.19
OvertimePay                    5711.94
OtherPay                       6706.76
Benefits                           NaN
TotalPay                     129701.89
TotalPayBenefits             129701.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4247, dtype: object)
(4248, Id                                  4249
EmployeeName          BRIDGET OCALLAGHAN
JobTitle            SHERIFF'S LIEUTENANT
BasePay                         121160.3
OvertimePay                       175.43
OtherPay                         8355.82
Benefits                             NaN
TotalPay                       129691.55
TotalPayBenefits               129691.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4248, dtype: object)
(4249, Id                              4250
EmployeeName         PERCY HERNANDEZ
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  8539.54
OtherPay                    15081.94
Benefits                         NaN
TotalPay                   129686.67
TotalPayBenefits           129686.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4249, dtype: object)
(4250, Id                                4251
EmployeeName               ROBERT FORD
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    2954.94
OtherPay                      14322.87
Benefits                           NaN
TotalPay                     129678.89
TotalPayBenefits             129678.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4250, dtype: object)
(4251, Id                           4252
EmployeeName         JOEL ZERMENO
JobTitle              FIREFIGHTER
BasePay                  105649.4
OvertimePay              12067.09
OtherPay                 11962.32
Benefits                      NaN
TotalPay                129678.81
TotalPayBenefits        129678.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4251, dtype: object)
(4252, Id                                       4253
EmployeeName                      DENNIS CHOW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             129671.79
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            129671.79
TotalPayBenefits                    129671.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4252, dtype: object)
(4253, Id                              4254
EmployeeName         AVELINO ASENCIO
JobTitle            REGISTERED NURSE
BasePay                    103881.54
OvertimePay                  9460.04
OtherPay                     16329.4
Benefits                         NaN
TotalPay                   129670.98
TotalPayBenefits           129670.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4253, dtype: object)
(4254, Id                                                4255
EmployeeName                               BRIAN MOSER
JobTitle            RADIOLOGIC TECHNOLOGIST SUPERVISOR
BasePay                                      122740.01
OvertimePay                                    6745.57
OtherPay                                         175.0
Benefits                                           NaN
TotalPay                                     129660.58
TotalPayBenefits                             129660.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4254, dtype: object)
(4255, Id                                4256
EmployeeName                MOSES GALA
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                   11656.77
OtherPay                       5571.38
Benefits                           NaN
TotalPay                     129649.58
TotalPayBenefits             129649.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4255, dtype: object)
(4256, Id                              4257
EmployeeName              SUZIE CHOW
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     2634.95
Benefits                         NaN
TotalPay                   129618.95
TotalPayBenefits           129618.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4256, dtype: object)
(4257, Id                                     4258
EmployeeName                ADRIENNE MILLER
JobTitle            TRAFFIC HEARING OFFICER
BasePay                            76173.65
OvertimePay                             0.0
OtherPay                           53439.37
Benefits                                NaN
TotalPay                          129613.02
TotalPayBenefits                  129613.02
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4257, dtype: object)
(4258, Id                               4259
EmployeeName           MATTHEW ELSETH
JobTitle            POLICE OFFICER II
BasePay                       96538.5
OvertimePay                   9658.25
OtherPay                     23416.03
Benefits                          NaN
TotalPay                    129612.78
TotalPayBenefits            129612.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4258, dtype: object)
(4259, Id                                 4260
EmployeeName             MARGARET MORAN
JobTitle            PUBLIC HEALTH NURSE
BasePay                        124579.4
OvertimePay                         0.0
OtherPay                         5004.1
Benefits                            NaN
TotalPay                       129583.5
TotalPayBenefits               129583.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4259, dtype: object)
(4260, Id                              4261
EmployeeName            JUDY LIZARDO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     2576.01
Benefits                         NaN
TotalPay                   129560.01
TotalPayBenefits           129560.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4260, dtype: object)
(4261, Id                           4262
EmployeeName             ELI CHAN
JobTitle              FIREFIGHTER
BasePay                 105923.59
OvertimePay              17344.71
OtherPay                  6268.94
Benefits                      NaN
TotalPay                129537.24
TotalPayBenefits        129537.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4261, dtype: object)
(4262, Id                                      4263
EmployeeName        RENITA NILLAS LAQUINDANU
JobTitle                    REGISTERED NURSE
BasePay                            112979.13
OvertimePay                          9084.24
OtherPay                             7473.43
Benefits                                 NaN
TotalPay                            129536.8
TotalPayBenefits                    129536.8
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4262, dtype: object)
(4263, Id                              4264
EmployeeName         CHRISTINA HAYES
JobTitle            POLICE OFFICER I
BasePay                    102079.84
OvertimePay                 18999.58
OtherPay                     8456.84
Benefits                         NaN
TotalPay                   129536.26
TotalPayBenefits           129536.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4263, dtype: object)
(4264, Id                              4265
EmployeeName            FLORA HESTER
JobTitle            REGISTERED NURSE
BasePay                     123714.0
OvertimePay                   3555.0
OtherPay                      2264.5
Benefits                         NaN
TotalPay                    129533.5
TotalPayBenefits            129533.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4264, dtype: object)
(4265, Id                                  4266
EmployeeName                  MARY DEVOY
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.42
OvertimePay                          0.0
OtherPay                         8355.75
Benefits                             NaN
TotalPay                       129516.17
TotalPayBenefits               129516.17
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4265, dtype: object)
(4266, Id                                  4267
EmployeeName                   REX OLSON
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.38
OvertimePay                          0.0
OtherPay                         8355.74
Benefits                             NaN
TotalPay                       129516.12
TotalPayBenefits               129516.12
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4266, dtype: object)
(4267, Id                             4268
EmployeeName        MICHAEL AGUILAR
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                  9192.3
OtherPay                   14388.64
Benefits                        NaN
TotalPay                  129515.61
TotalPayBenefits          129515.61
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4267, dtype: object)
(4268, Id                              4269
EmployeeName        BARBARA PALACIOS
JobTitle                    ENGINEER
BasePay                    129497.67
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   129497.67
TotalPayBenefits           129497.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4268, dtype: object)
(4269, Id                                4270
EmployeeName               JOHNNY WONG
JobTitle            ASSISTANT ENGINEER
BasePay                      129497.67
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.67
TotalPayBenefits             129497.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4269, dtype: object)
(4270, Id                                4271
EmployeeName             DEIRDRE APPEL
JobTitle            ASSOCIATE ENGINEER
BasePay                      129497.66
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.66
TotalPayBenefits             129497.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4270, dtype: object)
(4271, Id                                4272
EmployeeName            BRYAN DESSAURE
JobTitle            ASSOCIATE ENGINEER
BasePay                      129497.65
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.65
TotalPayBenefits             129497.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4271, dtype: object)
(4272, Id                                                 4273
EmployeeName                            KRISTIN OPBROEK
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE I
BasePay                                       129497.64
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      129497.64
TotalPayBenefits                              129497.64
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 4272, dtype: object)
(4273, Id                                4274
EmployeeName           KENNETH TASHIAN
JobTitle            PROJECT MANAGER II
BasePay                      129497.63
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.63
TotalPayBenefits             129497.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4273, dtype: object)
(4274, Id                              4275
EmployeeName        BRIAN CARLOMAGNO
JobTitle                    ENGINEER
BasePay                    129497.61
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   129497.61
TotalPayBenefits           129497.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4274, dtype: object)
(4275, Id                           4276
EmployeeName            SUSAN HOU
JobTitle                 ENGINEER
BasePay                 129497.61
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                129497.61
TotalPayBenefits        129497.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4275, dtype: object)
(4276, Id                            4277
EmployeeName        DAVID QUINONES
JobTitle                  ENGINEER
BasePay                  129497.61
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 129497.61
TotalPayBenefits         129497.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4276, dtype: object)
(4277, Id                                4278
EmployeeName          RICHARD THALL-JR
JobTitle            PROJECT MANAGER II
BasePay                      129497.57
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.57
TotalPayBenefits             129497.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4277, dtype: object)
(4278, Id                             4279
EmployeeName        ANTHONY BRESLIN
JobTitle                   ENGINEER
BasePay                   128965.71
OvertimePay                     0.0
OtherPay                      531.8
Benefits                        NaN
TotalPay                  129497.51
TotalPayBenefits          129497.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4278, dtype: object)
(4279, Id                                4280
EmployeeName                 MICHA HOY
JobTitle            PROJECT MANAGER II
BasePay                      129497.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129497.51
TotalPayBenefits             129497.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4279, dtype: object)
(4280, Id                           4281
EmployeeName            SENG NGUY
JobTitle                 ENGINEER
BasePay                 128969.84
OvertimePay                   0.0
OtherPay                   527.64
Benefits                      NaN
TotalPay                129497.48
TotalPayBenefits        129497.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4280, dtype: object)
(4281, Id                                4282
EmployeeName          ADETOKUNBO AJIKE
JobTitle            PROJECT MANAGER II
BasePay                      129495.93
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     129495.93
TotalPayBenefits             129495.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4281, dtype: object)
(4282, Id                           4283
EmployeeName             JOE CHIN
JobTitle                 ENGINEER
BasePay                 129494.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                129494.04
TotalPayBenefits        129494.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4282, dtype: object)
(4283, Id                                      4284
EmployeeName                   NEIL FRIEDMAN
JobTitle            CHIEF BUILDING INSPECTOR
BasePay                            123327.91
OvertimePay                              0.0
OtherPay                             6165.38
Benefits                                 NaN
TotalPay                           129493.29
TotalPayBenefits                   129493.29
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4283, dtype: object)
(4284, Id                                                4285
EmployeeName                                  GARY MAR
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   50231.51
OtherPay                                       1667.95
Benefits                                           NaN
TotalPay                                     129479.86
TotalPayBenefits                             129479.86
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4284, dtype: object)
(4285, Id                            4286
EmployeeName        MEGAN OCONNELL
JobTitle               FIREFIGHTER
BasePay                  105934.67
OvertimePay                6248.94
OtherPay                  17295.87
Benefits                       NaN
TotalPay                 129479.48
TotalPayBenefits         129479.48
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4285, dtype: object)
(4286, Id                              4287
EmployeeName            CONSUELO YAN
JobTitle            REGISTERED NURSE
BasePay                     126681.6
OvertimePay                      0.0
OtherPay                     2789.86
Benefits                         NaN
TotalPay                   129471.46
TotalPayBenefits           129471.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4286, dtype: object)
(4287, Id                                                4288
EmployeeName                              LESTER LAMUG
JobTitle            MAINTENANCE MACHINIST SUPERVISOR I
BasePay                                        96686.7
OvertimePay                                   30178.43
OtherPay                                        2601.5
Benefits                                           NaN
TotalPay                                     129466.63
TotalPayBenefits                             129466.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4287, dtype: object)
(4288, Id                                4289
EmployeeName             LEON SORHONDO
JobTitle            POLICE OFFICER III
BasePay                      112351.31
OvertimePay                    5784.02
OtherPay                       11321.0
Benefits                           NaN
TotalPay                     129456.33
TotalPayBenefits             129456.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4288, dtype: object)
(4289, Id                                4290
EmployeeName              JEANNIE WONG
JobTitle            DEPUTY DIRECTOR II
BasePay                      129146.04
OvertimePay                        0.0
OtherPay                        309.38
Benefits                           NaN
TotalPay                     129455.42
TotalPayBenefits             129455.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4289, dtype: object)
(4290, Id                               4291
EmployeeName             DANIEL KROOS
JobTitle            POLICE OFFICER II
BasePay                     110242.85
OvertimePay                    8250.7
OtherPay                     10949.84
Benefits                          NaN
TotalPay                    129443.39
TotalPayBenefits            129443.39
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4290, dtype: object)
(4291, Id                              4292
EmployeeName           CARL ANDERSON
JobTitle            TRANSIT OPERATOR
BasePay                      67502.5
OvertimePay                 56263.98
OtherPay                     5650.11
Benefits                         NaN
TotalPay                   129416.59
TotalPayBenefits           129416.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4291, dtype: object)
(4292, Id                              4293
EmployeeName         JANE ELLEN GAMA
JobTitle            REGISTERED NURSE
BasePay                    115506.01
OvertimePay                  8891.44
OtherPay                     5008.55
Benefits                         NaN
TotalPay                    129406.0
TotalPayBenefits            129406.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4292, dtype: object)
(4293, Id                                4294
EmployeeName              BRIAN OLIVER
JobTitle            POLICE OFFICER III
BasePay                      111552.44
OvertimePay                   10538.29
OtherPay                       7306.46
Benefits                           NaN
TotalPay                     129397.19
TotalPayBenefits             129397.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4293, dtype: object)
(4294, Id                           4295
EmployeeName          PANHIA MOUA
JobTitle            SPECIAL NURSE
BasePay                 110187.27
OvertimePay                 972.9
OtherPay                 18233.66
Benefits                      NaN
TotalPay                129393.83
TotalPayBenefits        129393.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4294, dtype: object)
(4295, Id                              4296
EmployeeName          SHARON KENNEDY
JobTitle            REGISTERED NURSE
BasePay                    123205.98
OvertimePay                      0.0
OtherPay                     6150.25
Benefits                         NaN
TotalPay                   129356.23
TotalPayBenefits           129356.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4295, dtype: object)
(4296, Id                                                   4297
EmployeeName                                 JAMES STRAIN
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                          63905.99
OvertimePay                                      20086.84
OtherPay                                          45362.8
Benefits                                              NaN
TotalPay                                        129355.63
TotalPayBenefits                                129355.63
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 4296, dtype: object)
(4297, Id                               4298
EmployeeName         BENJAMIN SANTANA
JobTitle            POLICE OFFICER II
BasePay                     110203.11
OvertimePay                   8543.69
OtherPay                     10607.33
Benefits                          NaN
TotalPay                    129354.13
TotalPayBenefits            129354.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4297, dtype: object)
(4298, Id                                4299
EmployeeName              REX CALAUNAN
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                     8020.2
OtherPay                       8938.81
Benefits                           NaN
TotalPay                     129339.71
TotalPayBenefits             129339.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4298, dtype: object)
(4299, Id                              4300
EmployeeName               THOMAS LY
JobTitle            POLICE OFFICER I
BasePay                    100279.97
OvertimePay                 21192.27
OtherPay                     7852.35
Benefits                         NaN
TotalPay                   129324.59
TotalPayBenefits           129324.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4299, dtype: object)
(4300, Id                                4301
EmployeeName             CARMEL DEBONO
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   39873.78
OtherPay                       1386.43
Benefits                           NaN
TotalPay                     129322.21
TotalPayBenefits             129322.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4300, dtype: object)
(4301, Id                                4302
EmployeeName             WENDELL JONES
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    7649.38
OtherPay                       9223.21
Benefits                           NaN
TotalPay                     129314.41
TotalPayBenefits             129314.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4301, dtype: object)
(4302, Id                                   4303
EmployeeName            JAVIER MIRAMONTES
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.85
OvertimePay                      24742.22
OtherPay                          8678.81
Benefits                              NaN
TotalPay                        129302.88
TotalPayBenefits                129302.88
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4302, dtype: object)
(4303, Id                                                          4304
EmployeeName                                      MARGARET LYNCH
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                129297.34
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               129297.34
TotalPayBenefits                                       129297.34
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4303, dtype: object)
(4304, Id                                                          4305
EmployeeName                                   MARY TRAVIS-ALLEN
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                128426.81
OvertimePay                                                  0.0
OtherPay                                                  836.71
Benefits                                                     NaN
TotalPay                                               129263.52
TotalPayBenefits                                       129263.52
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4304, dtype: object)
(4305, Id                            4306
EmployeeName          DONALD LOUIE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               35738.75
OtherPay                   6614.58
Benefits                       NaN
TotalPay                 129193.33
TotalPayBenefits         129193.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4305, dtype: object)
(4306, Id                           4307
EmployeeName        JOSHUA DICKER
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               5421.66
OtherPay                 17823.88
Benefits                      NaN
TotalPay                129180.22
TotalPayBenefits        129180.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4306, dtype: object)
(4307, Id                             4308
EmployeeName        ANTHONY AGUERRE
JobTitle             DEPUTY SHERIFF
BasePay                    82961.07
OvertimePay                32349.98
OtherPay                   13864.89
Benefits                        NaN
TotalPay                  129175.94
TotalPayBenefits          129175.94
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4307, dtype: object)
(4308, Id                             4309
EmployeeName           JAMES SUTTER
JobTitle            UTILITY PLUMBER
BasePay                    90098.42
OvertimePay                22172.52
OtherPay                   16886.17
Benefits                        NaN
TotalPay                  129157.11
TotalPayBenefits          129157.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4308, dtype: object)
(4309, Id                              4310
EmployeeName            MEGUMI SALAN
JobTitle            REGISTERED NURSE
BasePay                    103095.99
OvertimePay                 10496.29
OtherPay                    15560.51
Benefits                         NaN
TotalPay                   129152.79
TotalPayBenefits           129152.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4309, dtype: object)
(4310, Id                              4311
EmployeeName                EVE ZEFF
JobTitle            REGISTERED NURSE
BasePay                    115705.97
OvertimePay                  7278.82
OtherPay                     6166.37
Benefits                         NaN
TotalPay                   129151.16
TotalPayBenefits           129151.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4310, dtype: object)
(4311, Id                                         4312
EmployeeName                        DAVID GREEN
JobTitle            SENIOR ELECTRICAL INSPECTOR
BasePay                                111651.6
OvertimePay                            12684.07
OtherPay                                4777.68
Benefits                                    NaN
TotalPay                              129113.35
TotalPayBenefits                      129113.35
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4311, dtype: object)
(4312, Id                              4313
EmployeeName        JOAQUIN BORROMEO
JobTitle            POLICE OFFICER I
BasePay                    100138.04
OvertimePay                 12816.31
OtherPay                    16158.03
Benefits                         NaN
TotalPay                   129112.38
TotalPayBenefits           129112.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4312, dtype: object)
(4313, Id                            4314
EmployeeName        JARED FRANKLIN
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               12756.17
OtherPay                  10419.16
Benefits                       NaN
TotalPay                 129110.01
TotalPayBenefits         129110.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4313, dtype: object)
(4314, Id                                               4315
EmployeeName                            LAWRENCE CHAU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  17083.37
OtherPay                                      12995.8
Benefits                                          NaN
TotalPay                                    129093.57
TotalPayBenefits                            129093.57
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4314, dtype: object)
(4315, Id                               4316
EmployeeName             TIMOTHY FAYE
JobTitle            POLICE OFFICER II
BasePay                     106536.58
OvertimePay                   7652.29
OtherPay                     14885.82
Benefits                          NaN
TotalPay                    129074.69
TotalPayBenefits            129074.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4315, dtype: object)
(4316, Id                                4317
EmployeeName                  DEAN LEE
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    4396.97
OtherPay                      12276.17
Benefits                           NaN
TotalPay                     129074.23
TotalPayBenefits             129074.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4316, dtype: object)
(4317, Id                               4318
EmployeeName              DAVID SANDS
JobTitle            POLICE OFFICER II
BasePay                     105346.24
OvertimePay                  11799.29
OtherPay                     11923.74
Benefits                          NaN
TotalPay                    129069.27
TotalPayBenefits            129069.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4317, dtype: object)
(4318, Id                           4319
EmployeeName        AGUSTIN LARUE
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               5782.41
OtherPay                 17348.82
Benefits                      NaN
TotalPay                129065.89
TotalPayBenefits        129065.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4318, dtype: object)
(4319, Id                           4320
EmployeeName         KEVIN KRAMER
JobTitle              FIREFIGHTER
BasePay                  99942.29
OvertimePay              12162.48
OtherPay                 16960.14
Benefits                      NaN
TotalPay                129064.91
TotalPayBenefits        129064.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4319, dtype: object)
(4320, Id                            4321
EmployeeName        SHEILA FRAZIER
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               26401.57
OtherPay                  15820.26
Benefits                       NaN
TotalPay                 129061.84
TotalPayBenefits         129061.84
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4320, dtype: object)
(4321, Id                             4322
EmployeeName        JAVIER CASTILLO
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                30517.07
OtherPay                   11702.03
Benefits                        NaN
TotalPay                   129059.1
TotalPayBenefits           129059.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4321, dtype: object)
(4322, Id                              4323
EmployeeName             TEDMAN MARK
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                 21280.79
OtherPay                     1730.54
Benefits                         NaN
TotalPay                   129057.41
TotalPayBenefits           129057.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4322, dtype: object)
(4323, Id                              4324
EmployeeName               RUTH WANG
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     2073.29
Benefits                         NaN
TotalPay                   129057.29
TotalPayBenefits           129057.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4323, dtype: object)
(4324, Id                             4325
EmployeeName           JORGE GARCIA
JobTitle            SENIOR ENGINEER
BasePay                   129030.08
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  129030.08
TotalPayBenefits          129030.08
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4324, dtype: object)
(4325, Id                                  4326
EmployeeName                  BRYAN KEIL
JobTitle            ELECTRICAL INSPECTOR
BasePay                          98014.7
OvertimePay                     29054.39
OtherPay                         1959.36
Benefits                             NaN
TotalPay                       129028.45
TotalPayBenefits               129028.45
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4325, dtype: object)
(4326, Id                                         4327
EmployeeName                       PATRICIA LUI
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                               118059.03
OvertimePay                             3201.71
OtherPay                                7753.81
Benefits                                    NaN
TotalPay                              129014.55
TotalPayBenefits                      129014.55
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4326, dtype: object)
(4327, Id                                       4328
EmployeeName                   ALICIA CABRERA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              128980.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             128980.4
TotalPayBenefits                     128980.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4327, dtype: object)
(4328, Id                                  4329
EmployeeName            JOHN O'CALLAGHAN
JobTitle            PLUMBER SUPERVISOR I
BasePay                         99746.26
OvertimePay                     11298.87
OtherPay                        17934.89
Benefits                             NaN
TotalPay                       128980.02
TotalPayBenefits               128980.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4328, dtype: object)
(4329, Id                                4330
EmployeeName           ALBERTO MIRANDA
JobTitle            POLICE OFFICER III
BasePay                      117324.04
OvertimePay                     6484.3
OtherPay                       5171.16
Benefits                           NaN
TotalPay                      128979.5
TotalPayBenefits              128979.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4329, dtype: object)
(4330, Id                                     4331
EmployeeName        MONALIZA VIDAD CASTILLO
JobTitle                   REGISTERED NURSE
BasePay                           100127.07
OvertimePay                        11799.98
OtherPay                           17025.75
Benefits                                NaN
TotalPay                           128952.8
TotalPayBenefits                   128952.8
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4330, dtype: object)
(4331, Id                                       4332
EmployeeName                FRANCESCA GESSNER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              128928.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             128928.4
TotalPayBenefits                     128928.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4331, dtype: object)
(4332, Id                                     4333
EmployeeName                    LORA BOWMAN
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                            128923.3
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           128923.3
TotalPayBenefits                   128923.3
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4332, dtype: object)
(4333, Id                           4334
EmployeeName        RYAN CAYABYAB
JobTitle                 ENGINEER
BasePay                 127208.74
OvertimePay                   0.0
OtherPay                  1698.92
Benefits                      NaN
TotalPay                128907.66
TotalPayBenefits        128907.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4333, dtype: object)
(4334, Id                              4335
EmployeeName           DANIEL GUZMAN
JobTitle            POLICE OFFICER I
BasePay                    106065.21
OvertimePay                  8097.32
OtherPay                    14741.51
Benefits                         NaN
TotalPay                   128904.04
TotalPayBenefits           128904.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4334, dtype: object)
(4335, Id                              4336
EmployeeName            DAISY CORRAL
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   4266.0
OtherPay                      1387.6
Benefits                         NaN
TotalPay                    128893.6
TotalPayBenefits            128893.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4335, dtype: object)
(4336, Id                               4337
EmployeeName             FRANCISCO HO
JobTitle            POLICE OFFICER II
BasePay                     110262.81
OvertimePay                   7115.01
OtherPay                     11512.46
Benefits                          NaN
TotalPay                    128890.28
TotalPayBenefits            128890.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4336, dtype: object)
(4337, Id                             4338
EmployeeName        RICHARD BRITTON
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                 7232.25
OtherPay                    15704.2
Benefits                        NaN
TotalPay                  128871.11
TotalPayBenefits          128871.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4337, dtype: object)
(4338, Id                            4339
EmployeeName           AJAY SAXENA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               35901.67
OtherPay                   6099.56
Benefits                       NaN
TotalPay                 128841.25
TotalPayBenefits         128841.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4338, dtype: object)
(4339, Id                           4340
EmployeeName            MANDY SEN
JobTitle               PHARMACIST
BasePay                 119165.72
OvertimePay               4593.24
OtherPay                   5075.0
Benefits                      NaN
TotalPay                128833.96
TotalPayBenefits        128833.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4339, dtype: object)
(4340, Id                               4341
EmployeeName        ROSAHLIE BORGONIA
JobTitle             REGISTERED NURSE
BasePay                     100565.43
OvertimePay                   9177.68
OtherPay                     19080.86
Benefits                          NaN
TotalPay                    128823.97
TotalPayBenefits            128823.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4340, dtype: object)
(4341, Id                              4342
EmployeeName            ANTHONY ORGE
JobTitle            POLICE OFFICER I
BasePay                    101951.75
OvertimePay                 10567.79
OtherPay                     16297.2
Benefits                         NaN
TotalPay                   128816.74
TotalPayBenefits           128816.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4341, dtype: object)
(4342, Id                                 4343
EmployeeName            JONATHAN KAPLAN
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.49
OvertimePay                         0.0
OtherPay                         1130.0
Benefits                            NaN
TotalPay                      128807.49
TotalPayBenefits              128807.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4342, dtype: object)
(4343, Id                             4344
EmployeeName        GUADALUPE MARIN
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                13713.85
OtherPay                    9153.59
Benefits                        NaN
TotalPay                  128802.11
TotalPayBenefits          128802.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4343, dtype: object)
(4344, Id                               4345
EmployeeName          ALBERTO ESPARZA
JobTitle            POLICE OFFICER II
BasePay                      106716.8
OvertimePay                    5131.1
OtherPay                     16949.93
Benefits                          NaN
TotalPay                    128797.83
TotalPayBenefits            128797.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4344, dtype: object)
(4345, Id                            4346
EmployeeName        LESTER LESAVOY
JobTitle               FIREFIGHTER
BasePay                  106987.88
OvertimePay               10139.35
OtherPay                  11662.44
Benefits                       NaN
TotalPay                 128789.67
TotalPayBenefits         128789.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4345, dtype: object)
(4346, Id                               4347
EmployeeName           JEFFREY MCHALE
JobTitle            POLICE OFFICER II
BasePay                     106499.71
OvertimePay                   4934.32
OtherPay                     17345.73
Benefits                          NaN
TotalPay                    128779.76
TotalPayBenefits            128779.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4346, dtype: object)
(4347, Id                                  4348
EmployeeName        WANDA EFFERSON-BLAKE
JobTitle                REGISTERED NURSE
BasePay                        102271.82
OvertimePay                       9251.7
OtherPay                        17253.05
Benefits                             NaN
TotalPay                       128776.57
TotalPayBenefits               128776.57
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4347, dtype: object)
(4348, Id                                 4349
EmployeeName               HUMPHREY LOE
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.49
OvertimePay                         0.0
OtherPay                         1095.0
Benefits                            NaN
TotalPay                      128772.49
TotalPayBenefits              128772.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4348, dtype: object)
(4349, Id                              4350
EmployeeName            IRENE GARCIA
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                    732.6
OtherPay                     1055.86
Benefits                         NaN
TotalPay                   128772.46
TotalPayBenefits           128772.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4349, dtype: object)
(4350, Id                              4351
EmployeeName        SUZETTE HUMPHREY
JobTitle              DEPUTY SHERIFF
BasePay                     86840.02
OvertimePay                 35937.69
OtherPay                     5985.28
Benefits                         NaN
TotalPay                   128762.99
TotalPayBenefits           128762.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4350, dtype: object)
(4351, Id                               4352
EmployeeName        THOMAS MCWILLIAMS
JobTitle             POLICE OFFICER I
BasePay                      98513.83
OvertimePay                  12322.61
OtherPay                     17916.99
Benefits                          NaN
TotalPay                    128753.43
TotalPayBenefits            128753.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4351, dtype: object)
(4352, Id                                4353
EmployeeName              MELVIN MAUNU
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    8806.23
OtherPay                        7537.7
Benefits                           NaN
TotalPay                     128745.01
TotalPayBenefits             128745.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4352, dtype: object)
(4353, Id                              4354
EmployeeName          ANNETTE JAGERS
JobTitle            REGISTERED NURSE
BasePay                     117887.4
OvertimePay                  6147.15
OtherPay                     4692.05
Benefits                         NaN
TotalPay                    128726.6
TotalPayBenefits            128726.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4353, dtype: object)
(4354, Id                                  4355
EmployeeName        ROSEMARIE VILLALOBOS
JobTitle                REGISTERED NURSE
BasePay                        109292.32
OvertimePay                      6263.73
OtherPay                        13161.97
Benefits                             NaN
TotalPay                       128718.02
TotalPayBenefits               128718.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4354, dtype: object)
(4355, Id                                4356
EmployeeName               THOMAS KING
JobTitle            POLICE OFFICER III
BasePay                       117283.3
OvertimePay                    4876.59
OtherPay                       6544.05
Benefits                           NaN
TotalPay                     128703.94
TotalPayBenefits             128703.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4355, dtype: object)
(4356, Id                             4357
EmployeeName        BRADFORD BENSON
JobTitle                 MANAGER II
BasePay                   128686.47
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  128686.47
TotalPayBenefits          128686.47
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4356, dtype: object)
(4357, Id                           4358
EmployeeName        JAMES GENEVRO
JobTitle                MANAGER V
BasePay                  128686.4
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 128686.4
TotalPayBenefits         128686.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4357, dtype: object)
(4358, Id                           4359
EmployeeName         DENNY ACOSTA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               4819.99
OtherPay                 17924.45
Benefits                      NaN
TotalPay                 128679.1
TotalPayBenefits         128679.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4358, dtype: object)
(4359, Id                                  4360
EmployeeName               OI CHING BARR
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                          9984.0
Benefits                             NaN
TotalPay                       128676.02
TotalPayBenefits               128676.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4359, dtype: object)
(4360, Id                           4361
EmployeeName         NANCY GEORGE
JobTitle               MANAGER IV
BasePay                 128657.87
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                128657.87
TotalPayBenefits        128657.87
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4360, dtype: object)
(4361, Id                                                               4362
EmployeeName                                            ANTHONY SCOTT
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      90770.53
OvertimePay                                                  22145.47
OtherPay                                                     15736.54
Benefits                                                          NaN
TotalPay                                                    128652.54
TotalPayBenefits                                            128652.54
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 4361, dtype: object)
(4362, Id                                  4363
EmployeeName              EDGAR MANALANG
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.26
OvertimePay                        307.0
OtherPay                         7178.33
Benefits                             NaN
TotalPay                       128645.59
TotalPayBenefits               128645.59
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4362, dtype: object)
(4363, Id                               4364
EmployeeName        CECILIA DELATORRE
JobTitle             REGISTERED NURSE
BasePay                     113947.25
OvertimePay                    4621.5
OtherPay                     10056.47
Benefits                          NaN
TotalPay                    128625.22
TotalPayBenefits            128625.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4363, dtype: object)
(4364, Id                                             4365
EmployeeName                        MICHAEL DENNING
JobTitle            COMMUNICATION LINE SUPERVISOR I
BasePay                                     93291.9
OvertimePay                                33426.43
OtherPay                                    1900.33
Benefits                                        NaN
TotalPay                                  128618.66
TotalPayBenefits                          128618.66
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4364, dtype: object)
(4365, Id                              4366
EmployeeName              NELLY FONG
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                     1631.41
Benefits                         NaN
TotalPay                   128615.41
TotalPayBenefits           128615.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4365, dtype: object)
(4366, Id                                    4367
EmployeeName                  CLIFF STEELE
JobTitle            ELECTRICAL LINE WORKER
BasePay                            85239.6
OvertimePay                       39527.19
OtherPay                           3840.72
Benefits                               NaN
TotalPay                         128607.51
TotalPayBenefits                 128607.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4366, dtype: object)
(4367, Id                           4368
EmployeeName        MEGAN ELLIOTT
JobTitle               MANAGER IV
BasePay                 128357.49
OvertimePay                   0.0
OtherPay                   245.98
Benefits                      NaN
TotalPay                128603.47
TotalPayBenefits        128603.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4367, dtype: object)
(4368, Id                               4369
EmployeeName               BRIAN CHEU
JobTitle            MAYORAL STAFF XVI
BasePay                      128594.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     128594.0
TotalPayBenefits             128594.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4368, dtype: object)
(4369, Id                              4370
EmployeeName           ROMANA TULIAO
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                   6685.5
OtherPay                     6019.19
Benefits                         NaN
TotalPay                   128586.69
TotalPayBenefits           128586.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4369, dtype: object)
(4370, Id                              4371
EmployeeName              FRED CRISP
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  9421.23
OtherPay                    13098.01
Benefits                         NaN
TotalPay                   128584.44
TotalPayBenefits           128584.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4370, dtype: object)
(4371, Id                                 4372
EmployeeName        CAREN AQUINO SANTOS
JobTitle               REGISTERED NURSE
BasePay                       111633.75
OvertimePay                      4462.0
OtherPay                       12464.12
Benefits                            NaN
TotalPay                      128559.87
TotalPayBenefits              128559.87
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4371, dtype: object)
(4372, Id                           4373
EmployeeName        CLYDE WATARAI
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay               8989.49
OtherPay                 13633.12
Benefits                      NaN
TotalPay                128557.24
TotalPayBenefits        128557.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4372, dtype: object)
(4373, Id                              4374
EmployeeName             SHARON HITE
JobTitle            REGISTERED NURSE
BasePay                    126768.26
OvertimePay                   199.97
OtherPay                     1586.57
Benefits                         NaN
TotalPay                    128554.8
TotalPayBenefits            128554.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4373, dtype: object)
(4374, Id                                4375
EmployeeName               J STOCKWELL
JobTitle            POLICE OFFICER III
BasePay                      112498.91
OvertimePay                    7230.72
OtherPay                       8818.96
Benefits                           NaN
TotalPay                     128548.59
TotalPayBenefits             128548.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4374, dtype: object)
(4375, Id                           4376
EmployeeName           RYAN TOBIN
JobTitle            SPECIAL NURSE
BasePay                 105081.78
OvertimePay               5932.15
OtherPay                  17533.8
Benefits                      NaN
TotalPay                128547.73
TotalPayBenefits        128547.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4375, dtype: object)
(4376, Id                                                       4377
EmployeeName                                 TIMOTHY HATFIELD
JobTitle            AIRPORT MECHANICAL MAINTENANCE SUPERVISOR
BasePay                                             118978.52
OvertimePay                                               0.0
OtherPay                                              9555.65
Benefits                                                  NaN
TotalPay                                            128534.17
TotalPayBenefits                                    128534.17
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 4376, dtype: object)
(4377, Id                               4378
EmployeeName          SCOTT LUTTICKEN
JobTitle            POLICE OFFICER II
BasePay                     102581.33
OvertimePay                   6392.94
OtherPay                     19534.73
Benefits                          NaN
TotalPay                     128509.0
TotalPayBenefits             128509.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4377, dtype: object)
(4378, Id                              4379
EmployeeName          NENITA MORALES
JobTitle            REGISTERED NURSE
BasePay                    104438.03
OvertimePay                  8299.23
OtherPay                    15771.54
Benefits                         NaN
TotalPay                    128508.8
TotalPayBenefits            128508.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4378, dtype: object)
(4379, Id                              4380
EmployeeName           NANCY LEDESMA
JobTitle            REGISTERED NURSE
BasePay                    101855.92
OvertimePay                 10712.12
OtherPay                    15927.13
Benefits                         NaN
TotalPay                   128495.17
TotalPayBenefits           128495.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4379, dtype: object)
(4380, Id                              4381
EmployeeName              JENNIE WOO
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                         NaN
TotalPay                    128484.0
TotalPayBenefits            128484.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4380, dtype: object)
(4381, Id                           4382
EmployeeName        MATTHEW WAYNE
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               6648.31
OtherPay                 15899.15
Benefits                      NaN
TotalPay                 128482.1
TotalPayBenefits         128482.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4381, dtype: object)
(4382, Id                                4383
EmployeeName             JUSTIN MADDEN
JobTitle            POLICE OFFICER III
BasePay                      112441.66
OvertimePay                    2716.72
OtherPay                      13317.18
Benefits                           NaN
TotalPay                     128475.56
TotalPayBenefits             128475.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4382, dtype: object)
(4383, Id                              4384
EmployeeName             CRAIG TIFFE
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  8389.96
OtherPay                    13999.79
Benefits                         NaN
TotalPay                   128454.94
TotalPayBenefits           128454.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4383, dtype: object)
(4384, Id                                         4385
EmployeeName                    VERNON TAKASUKA
JobTitle            SENIOR ELECTRICAL INSPECTOR
BasePay                                109337.5
OvertimePay                            16925.55
OtherPay                                2186.81
Benefits                                    NaN
TotalPay                              128449.86
TotalPayBenefits                      128449.86
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4384, dtype: object)
(4385, Id                             4386
EmployeeName        CYNTHIA AVAKIAN
JobTitle                MANAGER III
BasePay                   118446.89
OvertimePay                     0.0
OtherPay                    9992.89
Benefits                        NaN
TotalPay                  128439.78
TotalPayBenefits          128439.78
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4385, dtype: object)
(4386, Id                                4387
EmployeeName                KIRK BOZIN
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    8469.04
OtherPay                       7530.87
Benefits                           NaN
TotalPay                     128421.37
TotalPayBenefits             128421.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4386, dtype: object)
(4387, Id                              4388
EmployeeName        KRISTA ZIMMERMAN
JobTitle               SPECIAL NURSE
BasePay                     101718.9
OvertimePay                 10925.42
OtherPay                    15775.66
Benefits                         NaN
TotalPay                   128419.98
TotalPayBenefits           128419.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4387, dtype: object)
(4388, Id                                4389
EmployeeName              GORDON CLARK
JobTitle            POLICE OFFICER III
BasePay                      123504.28
OvertimePay                     307.98
OtherPay                        4603.7
Benefits                           NaN
TotalPay                     128415.96
TotalPayBenefits             128415.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4388, dtype: object)
(4389, Id                                                       4390
EmployeeName                                      DARYL CHANG
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                               86993.4
OvertimePay                                          27871.01
OtherPay                                             13549.02
Benefits                                                  NaN
TotalPay                                            128413.43
TotalPayBenefits                                    128413.43
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 4389, dtype: object)
(4390, Id                                  4391
EmployeeName          NIRATISAI KITTIKUL
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         9718.58
Benefits                             NaN
TotalPay                       128410.58
TotalPayBenefits               128410.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4390, dtype: object)
(4391, Id                                 4392
EmployeeName        ELIZABETH ROSENBERG
JobTitle               REGISTERED NURSE
BasePay                       123240.08
OvertimePay                         0.0
OtherPay                        5160.36
Benefits                            NaN
TotalPay                      128400.44
TotalPayBenefits              128400.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4391, dtype: object)
(4392, Id                                      4393
EmployeeName                   DANIEL LOWREY
JobTitle            CHIEF BUILDING INSPECTOR
BasePay                             121757.8
OvertimePay                              0.0
OtherPay                              6631.8
Benefits                                 NaN
TotalPay                            128389.6
TotalPayBenefits                    128389.6
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4392, dtype: object)
(4393, Id                                4394
EmployeeName              RICHARD RUIZ
JobTitle            POLICE OFFICER III
BasePay                       111849.3
OvertimePay                   10241.96
OtherPay                       6293.35
Benefits                           NaN
TotalPay                     128384.61
TotalPayBenefits             128384.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4393, dtype: object)
(4394, Id                                 4395
EmployeeName                  KAREN LIU
JobTitle            PUBLIC HEALTH NURSE
BasePay                       121012.35
OvertimePay                         0.0
OtherPay                         7368.2
Benefits                            NaN
TotalPay                      128380.55
TotalPayBenefits              128380.55
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4394, dtype: object)
(4395, Id                              4396
EmployeeName           EVELYN SABUGO
JobTitle            REGISTERED NURSE
BasePay                     123240.0
OvertimePay                   3555.0
OtherPay                      1577.2
Benefits                         NaN
TotalPay                    128372.2
TotalPayBenefits            128372.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4395, dtype: object)
(4396, Id                            4397
EmployeeName        GEARY HORIKIRI
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                 4717.1
OtherPay                  17716.32
Benefits                       NaN
TotalPay                 128368.08
TotalPayBenefits         128368.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4396, dtype: object)
(4397, Id                              4398
EmployeeName                JUDY LAM
JobTitle            REGISTERED NURSE
BasePay                    123240.08
OvertimePay                      0.0
OtherPay                     5123.34
Benefits                         NaN
TotalPay                   128363.42
TotalPayBenefits           128363.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4397, dtype: object)
(4398, Id                                4399
EmployeeName             ARSHAD RAZZAK
JobTitle            POLICE OFFICER III
BasePay                      112421.31
OvertimePay                    3111.91
OtherPay                      12812.56
Benefits                           NaN
TotalPay                     128345.78
TotalPayBenefits             128345.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4398, dtype: object)
(4399, Id                              4400
EmployeeName           YU-CHIN HUANG
JobTitle            REGISTERED NURSE
BasePay                    112404.03
OvertimePay                  7951.15
OtherPay                     7990.51
Benefits                         NaN
TotalPay                   128345.69
TotalPayBenefits           128345.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4399, dtype: object)
(4400, Id                                                       4401
EmployeeName                                      JOAH GORDEN
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                               93726.6
OvertimePay                                           9301.54
OtherPay                                             25314.25
Benefits                                                  NaN
TotalPay                                            128342.39
TotalPayBenefits                                    128342.39
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 4400, dtype: object)
(4401, Id                           4402
EmployeeName        DAMIAN ORDUNA
JobTitle              FIREFIGHTER
BasePay                 104793.14
OvertimePay               9372.84
OtherPay                 14175.27
Benefits                      NaN
TotalPay                128341.25
TotalPayBenefits        128341.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4401, dtype: object)
(4402, Id                               4403
EmployeeName           ARNALDO ALEMAN
JobTitle            POLICE OFFICER II
BasePay                     110203.19
OvertimePay                   6876.18
OtherPay                     11248.78
Benefits                          NaN
TotalPay                    128328.15
TotalPayBenefits            128328.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4402, dtype: object)
(4403, Id                                            4404
EmployeeName                          BRIAN DANIEL
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   77232.94
OvertimePay                               34357.45
OtherPay                                   16730.7
Benefits                                       NaN
TotalPay                                 128321.09
TotalPayBenefits                         128321.09
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 4403, dtype: object)
(4404, Id                              4405
EmployeeName              LISA SMITH
JobTitle            POLICE OFFICER I
BasePay                     94440.58
OvertimePay                  4998.21
OtherPay                    28882.04
Benefits                         NaN
TotalPay                   128320.83
TotalPayBenefits           128320.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4404, dtype: object)
(4405, Id                            4406
EmployeeName         PHILIP JUDSON
JobTitle            DEPUTY SHERIFF
BasePay                   86829.98
OvertimePay               34621.94
OtherPay                   6868.16
Benefits                       NaN
TotalPay                 128320.08
TotalPayBenefits         128320.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4405, dtype: object)
(4406, Id                           4407
EmployeeName        BENJAMIN FENG
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                 128290.7
TotalPayBenefits         128290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4406, dtype: object)
(4407, Id                                4408
EmployeeName        DIANNE OWENS-LEWIS
JobTitle                   MANAGER III
BasePay                       123290.7
OvertimePay                        0.0
OtherPay                        5000.0
Benefits                           NaN
TotalPay                      128290.7
TotalPayBenefits              128290.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4407, dtype: object)
(4408, Id                              4409
EmployeeName              JOHN SMITH
JobTitle            REGISTERED NURSE
BasePay                     120892.8
OvertimePay                  2124.24
OtherPay                     5268.99
Benefits                         NaN
TotalPay                   128286.03
TotalPayBenefits           128286.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4408, dtype: object)
(4409, Id                                4410
EmployeeName              KEITH PARKER
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    5232.72
OtherPay                      10645.73
Benefits                           NaN
TotalPay                     128279.51
TotalPayBenefits             128279.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4409, dtype: object)
(4410, Id                             4411
EmployeeName        BETTRIETTA KIME
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                11078.35
OtherPay                   11262.54
Benefits                        NaN
TotalPay                  128275.54
TotalPayBenefits          128275.54
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4410, dtype: object)
(4411, Id                                 4412
EmployeeName                 PETER CHAN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73075.0
OvertimePay                    44389.61
OtherPay                        10809.9
Benefits                            NaN
TotalPay                      128274.51
TotalPayBenefits              128274.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4411, dtype: object)
(4412, Id                                4413
EmployeeName            CHARLES TANAKA
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6355.24
OtherPay                       9494.08
Benefits                           NaN
TotalPay                     128270.76
TotalPayBenefits             128270.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4412, dtype: object)
(4413, Id                                4414
EmployeeName            DEBRA ANDERSON
JobTitle            POLICE OFFICER III
BasePay                      112400.65
OvertimePay                    4189.68
OtherPay                      11671.46
Benefits                           NaN
TotalPay                     128261.79
TotalPayBenefits             128261.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4413, dtype: object)
(4414, Id                               4415
EmployeeName        JAROME WINESBERRY
JobTitle            POLICE OFFICER II
BasePay                     110203.19
OvertimePay                   5267.95
OtherPay                     12789.43
Benefits                          NaN
TotalPay                    128260.57
TotalPayBenefits            128260.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4414, dtype: object)
(4415, Id                                4416
EmployeeName               PAUL DAVIES
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    8651.04
OtherPay                       7179.39
Benefits                           NaN
TotalPay                     128251.85
TotalPayBenefits             128251.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4415, dtype: object)
(4416, Id                               4417
EmployeeName              STEPHEN HOM
JobTitle            POLICE OFFICER II
BasePay                     103610.81
OvertimePay                  10133.27
OtherPay                     14488.86
Benefits                          NaN
TotalPay                    128232.94
TotalPayBenefits            128232.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4416, dtype: object)
(4417, Id                                       4418
EmployeeName                 ALEEM-ULLAH RAJA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             128213.69
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            128213.69
TotalPayBenefits                    128213.69
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4417, dtype: object)
(4418, Id                                4419
EmployeeName                AARON DOSS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   34990.19
OtherPay                       5141.07
Benefits                           NaN
TotalPay                     128193.26
TotalPayBenefits             128193.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4418, dtype: object)
(4419, Id                                4420
EmployeeName         JAMES O'MEARA III
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    2140.37
OtherPay                      13649.24
Benefits                           NaN
TotalPay                      128190.7
TotalPayBenefits              128190.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4419, dtype: object)
(4420, Id                           4421
EmployeeName          R SCHNELKER
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               6318.22
OtherPay                 15934.32
Benefits                      NaN
TotalPay                128187.22
TotalPayBenefits        128187.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4420, dtype: object)
(4421, Id                               4422
EmployeeName            PHILIP HELMER
JobTitle            POLICE OFFICER II
BasePay                      109764.4
OvertimePay                    7586.6
OtherPay                     10832.33
Benefits                          NaN
TotalPay                    128183.33
TotalPayBenefits            128183.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4421, dtype: object)
(4422, Id                                4423
EmployeeName             JOSEPH VALDEZ
JobTitle            POLICE OFFICER III
BasePay                      112073.03
OvertimePay                    8193.69
OtherPay                       7912.25
Benefits                           NaN
TotalPay                     128178.97
TotalPayBenefits             128178.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4422, dtype: object)
(4423, Id                             4424
EmployeeName               ANNIE LI
JobTitle            SENIOR ENGINEER
BasePay                   128174.71
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  128174.71
TotalPayBenefits          128174.71
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4423, dtype: object)
(4424, Id                                               4425
EmployeeName                              JAIME MORAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   29095.2
OtherPay                                         60.0
Benefits                                          NaN
TotalPay                                     128169.6
TotalPayBenefits                             128169.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4424, dtype: object)
(4425, Id                              4426
EmployeeName              ADAM EATIA
JobTitle            POLICE OFFICER I
BasePay                    100827.81
OvertimePay                 13086.16
OtherPay                    14253.45
Benefits                         NaN
TotalPay                   128167.42
TotalPayBenefits           128167.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4425, dtype: object)
(4426, Id                                       4427
EmployeeName                     JEANNE SOL'E
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             125648.61
OvertimePay                               0.0
OtherPay                               2513.5
Benefits                                  NaN
TotalPay                            128162.11
TotalPayBenefits                    128162.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4426, dtype: object)
(4427, Id                                      4428
EmployeeName                     JON CORBETT
JobTitle            FIRE PROTECTION ENGINEER
BasePay                            124554.02
OvertimePay                           359.92
OtherPay                              3239.3
Benefits                                 NaN
TotalPay                           128153.24
TotalPayBenefits                   128153.24
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4427, dtype: object)
(4428, Id                              4429
EmployeeName                 YING HE
JobTitle            REGISTERED NURSE
BasePay                    119477.04
OvertimePay                   6204.6
OtherPay                     2461.12
Benefits                         NaN
TotalPay                   128142.76
TotalPayBenefits           128142.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4428, dtype: object)
(4429, Id                           4430
EmployeeName        ROBERT NGATIA
JobTitle            SPECIAL NURSE
BasePay                 105279.67
OvertimePay               5422.72
OtherPay                 17440.35
Benefits                      NaN
TotalPay                128142.74
TotalPayBenefits        128142.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4429, dtype: object)
(4430, Id                                        4431
EmployeeName                      MARILYN SAGE
JobTitle            COURT REPORTER COORDINATOR
BasePay                              128128.39
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             128128.39
TotalPayBenefits                     128128.39
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 4430, dtype: object)
(4431, Id                                                         4432
EmployeeName                                       DANIEL ROACH
JobTitle            MANAGER V - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                               127906.97
OvertimePay                                                 0.0
OtherPay                                                 215.02
Benefits                                                    NaN
TotalPay                                              128121.99
TotalPayBenefits                                      128121.99
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 4431, dtype: object)
(4432, Id                                 4433
EmployeeName              DONTINA ONEAL
JobTitle            PUBLIC HEALTH NURSE
BasePay                        123240.0
OvertimePay                         0.0
OtherPay                        4878.06
Benefits                            NaN
TotalPay                      128118.06
TotalPayBenefits              128118.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4432, dtype: object)
(4433, Id                                    4434
EmployeeName              ROBERT COLLINSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.64
OvertimePay                       11806.71
OtherPay                           9865.38
Benefits                               NaN
TotalPay                         128113.73
TotalPayBenefits                 128113.73
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4433, dtype: object)
(4434, Id                                 4435
EmployeeName               GAIL HERRICK
JobTitle            PUBLIC HEALTH NURSE
BasePay                       122114.25
OvertimePay                         0.0
OtherPay                        5985.74
Benefits                            NaN
TotalPay                      128099.99
TotalPayBenefits              128099.99
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4434, dtype: object)
(4435, Id                                    4436
EmployeeName               JENNIFER WARDEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106228.09
OvertimePay                        3268.27
OtherPay                          18592.94
Benefits                               NaN
TotalPay                          128089.3
TotalPayBenefits                  128089.3
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4435, dtype: object)
(4436, Id                               4437
EmployeeName                JUNG PARK
JobTitle            POLICE OFFICER II
BasePay                     110203.18
OvertimePay                   6875.51
OtherPay                     11007.64
Benefits                          NaN
TotalPay                    128086.33
TotalPayBenefits            128086.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4436, dtype: object)
(4437, Id                             4438
EmployeeName        DANIEL MARTINEZ
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                10823.78
OtherPay                   11324.88
Benefits                        NaN
TotalPay                  128083.32
TotalPayBenefits          128083.32
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4437, dtype: object)
(4438, Id                              4439
EmployeeName            MARY BIANCHI
JobTitle            REGISTERED NURSE
BasePay                    119071.92
OvertimePay                  1135.53
OtherPay                     7856.83
Benefits                         NaN
TotalPay                   128064.28
TotalPayBenefits           128064.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4438, dtype: object)
(4439, Id                                4440
EmployeeName                KAREN KWOK
JobTitle            NURSE PRACTITIONER
BasePay                      120779.54
OvertimePay                     2817.8
OtherPay                       4462.71
Benefits                           NaN
TotalPay                     128060.05
TotalPayBenefits             128060.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4439, dtype: object)
(4440, Id                           4441
EmployeeName            ERIC KWAN
JobTitle              FIREFIGHTER
BasePay                 112654.65
OvertimePay                   0.0
OtherPay                 15396.64
Benefits                      NaN
TotalPay                128051.29
TotalPayBenefits        128051.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4440, dtype: object)
(4441, Id                              4442
EmployeeName            MARI NOGUCHI
JobTitle            POLICE OFFICER I
BasePay                     98513.82
OvertimePay                  6638.03
OtherPay                    22894.39
Benefits                         NaN
TotalPay                   128046.24
TotalPayBenefits           128046.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4441, dtype: object)
(4442, Id                                       4443
EmployeeName                  ALLISON MACBETH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             128042.72
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            128042.72
TotalPayBenefits                    128042.72
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4442, dtype: object)
(4443, Id                                4444
EmployeeName           JANIS MANDAC-DY
JobTitle            NURSE PRACTITIONER
BasePay                      126881.36
OvertimePay                        0.0
OtherPay                        1150.0
Benefits                           NaN
TotalPay                     128031.36
TotalPayBenefits             128031.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4443, dtype: object)
(4444, Id                              4445
EmployeeName              LISA NASIR
JobTitle            REGISTERED NURSE
BasePay                    103998.57
OvertimePay                  6271.88
OtherPay                    17753.17
Benefits                         NaN
TotalPay                   128023.62
TotalPayBenefits           128023.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4444, dtype: object)
(4445, Id                           4446
EmployeeName            MIKE WONG
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               3236.06
OtherPay                 18848.35
Benefits                      NaN
TotalPay                128019.05
TotalPayBenefits        128019.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4445, dtype: object)
(4446, Id                               4447
EmployeeName           ROSALYN ROUEDE
JobTitle            POLICE OFFICER II
BasePay                     110232.18
OvertimePay                   6359.82
OtherPay                     11424.49
Benefits                          NaN
TotalPay                    128016.49
TotalPayBenefits            128016.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4446, dtype: object)
(4447, Id                               4448
EmployeeName        MARIE JURIS GREEN
JobTitle             REGISTERED NURSE
BasePay                     112813.16
OvertimePay                    745.89
OtherPay                     14448.75
Benefits                          NaN
TotalPay                     128007.8
TotalPayBenefits             128007.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4447, dtype: object)
(4448, Id                                   4449
EmployeeName        CHONA PALADO-BAUTISTA
JobTitle                 REGISTERED NURSE
BasePay                         119497.59
OvertimePay                       5746.81
OtherPay                          2731.45
Benefits                              NaN
TotalPay                        127975.85
TotalPayBenefits                127975.85
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4448, dtype: object)
(4449, Id                                     4450
EmployeeName                DAVID ZIMMERMAN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.53
OvertimePay                             0.0
OtherPay                             295.24
Benefits                                NaN
TotalPay                          127972.77
TotalPayBenefits                  127972.77
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4449, dtype: object)
(4450, Id                               4451
EmployeeName                  KIN LEE
JobTitle            POLICE OFFICER II
BasePay                     103325.11
OvertimePay                   8277.37
OtherPay                     16368.54
Benefits                          NaN
TotalPay                    127971.02
TotalPayBenefits            127971.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4450, dtype: object)
(4451, Id                           4452
EmployeeName          EDWIN RAMOS
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               4800.13
OtherPay                 17232.78
Benefits                      NaN
TotalPay                127967.57
TotalPayBenefits        127967.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4451, dtype: object)
(4452, Id                              4453
EmployeeName             EDNA TUASON
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                    732.6
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127966.6
TotalPayBenefits            127966.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4452, dtype: object)
(4453, Id                                    4454
EmployeeName                 HARRISON KONG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.67
OvertimePay                        6776.98
OtherPay                          14746.46
Benefits                               NaN
TotalPay                         127965.11
TotalPayBenefits                 127965.11
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4453, dtype: object)
(4454, Id                                      4455
EmployeeName                  STEVEN PANELLI
JobTitle            CHIEF PLUMBING INSPECTOR
BasePay                            121844.96
OvertimePay                              0.0
OtherPay                             6093.48
Benefits                                 NaN
TotalPay                           127938.44
TotalPayBenefits                   127938.44
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4454, dtype: object)
(4455, Id                                4456
EmployeeName             RANDALL CHING
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2297.95
OtherPay                       13230.4
Benefits                           NaN
TotalPay                     127929.42
TotalPayBenefits             127929.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4455, dtype: object)
(4456, Id                                  4457
EmployeeName                WILLIAM CHUN
JobTitle            OPERATING ROOM NURSE
BasePay                         126984.0
OvertimePay                       689.86
OtherPay                           250.0
Benefits                             NaN
TotalPay                       127923.86
TotalPayBenefits               127923.86
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4456, dtype: object)
(4457, Id                                               4458
EmployeeName                               GEORGE LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  23343.03
OtherPay                                      5559.19
Benefits                                          NaN
TotalPay                                    127916.62
TotalPayBenefits                            127916.62
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4457, dtype: object)
(4458, Id                              4459
EmployeeName           JASON MAXWELL
JobTitle            POLICE OFFICER I
BasePay                    100908.79
OvertimePay                  5088.86
OtherPay                    21916.54
Benefits                         NaN
TotalPay                   127914.19
TotalPayBenefits           127914.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4458, dtype: object)
(4459, Id                                4460
EmployeeName            ALVIN VELACRUZ
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   31879.99
OtherPay                       7970.07
Benefits                           NaN
TotalPay                     127912.06
TotalPayBenefits             127912.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4459, dtype: object)
(4460, Id                                    4461
EmployeeName                  MARK GRADNEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          110560.32
OvertimePay                        3554.29
OtherPay                          13797.25
Benefits                               NaN
TotalPay                         127911.86
TotalPayBenefits                 127911.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4460, dtype: object)
(4461, Id                              4462
EmployeeName         GERALD THOMPSON
JobTitle            POLICE OFFICER I
BasePay                    106065.15
OvertimePay                  8862.15
OtherPay                    12976.11
Benefits                         NaN
TotalPay                   127903.41
TotalPayBenefits           127903.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4461, dtype: object)
(4462, Id                           4463
EmployeeName        SAMUEL LARANO
JobTitle              MANAGER III
BasePay                 127845.29
OvertimePay                   0.0
OtherPay                    45.92
Benefits                      NaN
TotalPay                127891.21
TotalPayBenefits        127891.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4462, dtype: object)
(4463, Id                                4464
EmployeeName                 JUAN GALA
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                     6406.6
OtherPay                       9081.35
Benefits                           NaN
TotalPay                     127889.03
TotalPayBenefits             127889.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4463, dtype: object)
(4464, Id                           4465
EmployeeName         SASHA GRANDE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               10942.0
OtherPay                 11009.89
Benefits                      NaN
TotalPay                127886.57
TotalPayBenefits        127886.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4464, dtype: object)
(4465, Id                                4466
EmployeeName               EUGENE IRBY
JobTitle            TRANSIT SUPERVISOR
BasePay                       89713.16
OvertimePay                   34779.35
OtherPay                       3378.05
Benefits                           NaN
TotalPay                     127870.56
TotalPayBenefits             127870.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4465, dtype: object)
(4466, Id                           4467
EmployeeName           RAYMOND NG
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               7383.52
OtherPay                 14538.21
Benefits                      NaN
TotalPay                 127856.4
TotalPayBenefits         127856.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4466, dtype: object)
(4467, Id                                                4468
EmployeeName                             BRYAN WEBSTER
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                       86595.61
OvertimePay                                   36603.75
OtherPay                                       4643.96
Benefits                                           NaN
TotalPay                                     127843.32
TotalPayBenefits                             127843.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4467, dtype: object)
(4468, Id                                4469
EmployeeName                SIMON CHAN
JobTitle            POLICE OFFICER III
BasePay                      111317.92
OvertimePay                    3443.92
OtherPay                      13060.02
Benefits                           NaN
TotalPay                     127821.86
TotalPayBenefits             127821.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4468, dtype: object)
(4469, Id                           4470
EmployeeName           QINGWEN XI
JobTitle                 ENGINEER
BasePay                  120937.9
OvertimePay                   0.0
OtherPay                  6871.77
Benefits                      NaN
TotalPay                127809.67
TotalPayBenefits        127809.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4469, dtype: object)
(4470, Id                                 4471
EmployeeName                   CHI WONG
JobTitle            IS PROJECT DIRECTOR
BasePay                        127800.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       127800.6
TotalPayBenefits               127800.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4470, dtype: object)
(4471, Id                            4472
EmployeeName        LINDSAY EDGETT
JobTitle               ANESTHETIST
BasePay                  122157.23
OvertimePay                 978.53
OtherPay                   4655.41
Benefits                       NaN
TotalPay                 127791.17
TotalPayBenefits         127791.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4471, dtype: object)
(4472, Id                           4473
EmployeeName         DAVID WATERS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay              11970.51
OtherPay                  9878.93
Benefits                      NaN
TotalPay                127784.11
TotalPayBenefits        127784.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4472, dtype: object)
(4473, Id                                 4474
EmployeeName                  JEFF PERA
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.49
OvertimePay                         0.0
OtherPay                           98.4
Benefits                            NaN
TotalPay                      127775.89
TotalPayBenefits              127775.89
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4473, dtype: object)
(4474, Id                                    4475
EmployeeName                   JAMES GREEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          112356.83
OvertimePay                        1822.99
OtherPay                          13591.76
Benefits                               NaN
TotalPay                         127771.58
TotalPayBenefits                 127771.58
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4474, dtype: object)
(4475, Id                                4476
EmployeeName           R KENNETH WEEMS
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                     4359.8
OtherPay                      11009.63
Benefits                           NaN
TotalPay                     127770.46
TotalPayBenefits             127770.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4475, dtype: object)
(4476, Id                                                4477
EmployeeName                           NEVILLE GITTENS
JobTitle            LIEUTENANT III (POLICE DEPARTMENT)
BasePay                                        39459.0
OvertimePay                                    6563.38
OtherPay                                      81740.92
Benefits                                           NaN
TotalPay                                      127763.3
TotalPayBenefits                              127763.3
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4476, dtype: object)
(4477, Id                                   4478
EmployeeName              EDWARD WILLIAMS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.39
OvertimePay                      20530.49
OtherPay                         10962.46
Benefits                              NaN
TotalPay                        127747.34
TotalPayBenefits                127747.34
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4477, dtype: object)
(4478, Id                                4479
EmployeeName             RACHEL MURPHY
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    6835.34
OtherPay                       8506.61
Benefits                           NaN
TotalPay                     127743.04
TotalPayBenefits             127743.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4478, dtype: object)
(4479, Id                               4480
EmployeeName          GARY BUCKNER JR
JobTitle            POLICE OFFICER II
BasePay                     107799.07
OvertimePay                   6638.82
OtherPay                     13302.11
Benefits                          NaN
TotalPay                     127740.0
TotalPayBenefits             127740.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4479, dtype: object)
(4480, Id                                    4481
EmployeeName                 ROBBIN HEWITT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.68
OvertimePay                         9381.7
OtherPay                          11914.66
Benefits                               NaN
TotalPay                         127738.04
TotalPayBenefits                 127738.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4480, dtype: object)
(4481, Id                                4482
EmployeeName            LINDSEY SUSLOW
JobTitle            POLICE OFFICER III
BasePay                      112392.44
OvertimePay                    6428.21
OtherPay                       8904.77
Benefits                           NaN
TotalPay                     127725.42
TotalPayBenefits             127725.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4481, dtype: object)
(4482, Id                               4483
EmployeeName            TODD BROTHERS
JobTitle            POLICE OFFICER II
BasePay                     110242.92
OvertimePay                  11814.11
OtherPay                      5667.99
Benefits                          NaN
TotalPay                    127725.02
TotalPayBenefits            127725.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4482, dtype: object)
(4483, Id                            4484
EmployeeName           JONATHAN LI
JobTitle            DEPUTY SHERIFF
BasePay                   74100.42
OvertimePay               45255.26
OtherPay                   8359.25
Benefits                       NaN
TotalPay                 127714.93
TotalPayBenefits         127714.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4483, dtype: object)
(4484, Id                                         4485
EmployeeName                         PAUL ORTIZ
JobTitle            SENIOR ELECTRICAL INSPECTOR
BasePay                                111427.4
OvertimePay                             14057.3
OtherPay                                2229.02
Benefits                                    NaN
TotalPay                              127713.72
TotalPayBenefits                      127713.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4484, dtype: object)
(4485, Id                                4486
EmployeeName          GABRIELA FISCHER
JobTitle            POLICE OFFICER III
BasePay                      112441.79
OvertimePay                     6207.6
OtherPay                       9056.59
Benefits                           NaN
TotalPay                     127705.98
TotalPayBenefits             127705.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4485, dtype: object)
(4486, Id                            4487
EmployeeName        WILLIAM MADSEN
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay               11861.69
OtherPay                   9908.09
Benefits                       NaN
TotalPay                 127704.44
TotalPayBenefits         127704.44
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4486, dtype: object)
(4487, Id                              4488
EmployeeName            MARK OKUPNIK
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                   6204.6
OtherPay                     2001.02
Benefits                         NaN
TotalPay                   127701.62
TotalPayBenefits           127701.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4487, dtype: object)
(4488, Id                           4489
EmployeeName           SUSAN WADE
JobTitle              MANAGER III
BasePay                 127613.98
OvertimePay                   0.0
OtherPay                     77.7
Benefits                      NaN
TotalPay                127691.68
TotalPayBenefits        127691.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4488, dtype: object)
(4489, Id                                4490
EmployeeName              DAVID KRANCI
JobTitle            POLICE OFFICER III
BasePay                       65516.46
OvertimePay                   15544.35
OtherPay                      46620.89
Benefits                           NaN
TotalPay                      127681.7
TotalPayBenefits              127681.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4489, dtype: object)
(4490, Id                                     4491
EmployeeName               STEPHEN SENATORI
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.76
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.76
TotalPayBenefits                  127677.76
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4490, dtype: object)
(4491, Id                                     4492
EmployeeName                    RONALD KANE
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.67
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.67
TotalPayBenefits                  127677.67
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4491, dtype: object)
(4492, Id                                     4493
EmployeeName                     CONNIE MAR
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.67
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.67
TotalPayBenefits                  127677.67
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4492, dtype: object)
(4493, Id                                     4494
EmployeeName               MICHAEL ROBINSON
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.64
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.64
TotalPayBenefits                  127677.64
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4493, dtype: object)
(4494, Id                                     4495
EmployeeName                     JEROME HOU
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.61
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.61
TotalPayBenefits                  127677.61
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4494, dtype: object)
(4495, Id                                     4496
EmployeeName                      WILSON LO
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.61
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.61
TotalPayBenefits                  127677.61
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4495, dtype: object)
(4496, Id                                     4497
EmployeeName                 RONALD ALVAREZ
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           127677.6
TotalPayBenefits                   127677.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4496, dtype: object)
(4497, Id                                     4498
EmployeeName                       JACK LUM
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           127677.6
TotalPayBenefits                   127677.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4497, dtype: object)
(4498, Id                                     4499
EmployeeName              IRINA TOMASHEVSKY
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            127677.6
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           127677.6
TotalPayBenefits                   127677.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4498, dtype: object)
(4499, Id                                 4500
EmployeeName                UMESH GUPTA
JobTitle            IS PROJECT DIRECTOR
BasePay                        127677.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       127677.6
TotalPayBenefits               127677.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4499, dtype: object)
(4500, Id                                 4501
EmployeeName         ROBIN CASTIGLIA JR
JobTitle            IS PROJECT DIRECTOR
BasePay                        127677.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       127677.6
TotalPayBenefits               127677.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4500, dtype: object)
(4501, Id                                 4502
EmployeeName                 JOSE PERLA
JobTitle            IS PROJECT DIRECTOR
BasePay                        127677.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       127677.6
TotalPayBenefits               127677.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4501, dtype: object)
(4502, Id                                 4503
EmployeeName               ISABEL VULIS
JobTitle            IS PROJECT DIRECTOR
BasePay                        127677.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       127677.6
TotalPayBenefits               127677.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4502, dtype: object)
(4503, Id                                 4504
EmployeeName           FREDY DORSAINVIL
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.59
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.59
TotalPayBenefits              127677.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4503, dtype: object)
(4504, Id                                     4505
EmployeeName                 DONALD CRAVENS
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.59
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.59
TotalPayBenefits                  127677.59
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4504, dtype: object)
(4505, Id                                 4506
EmployeeName                 JOHN MCGEE
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.59
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.59
TotalPayBenefits              127677.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4505, dtype: object)
(4506, Id                                 4507
EmployeeName            MICHAEL HOFFMAN
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.59
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.59
TotalPayBenefits              127677.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4506, dtype: object)
(4507, Id                                 4508
EmployeeName                JOE ARMENTA
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.59
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.59
TotalPayBenefits              127677.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4507, dtype: object)
(4508, Id                                     4509
EmployeeName                JEFFERY JOHNSON
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.59
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.59
TotalPayBenefits                  127677.59
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4508, dtype: object)
(4509, Id                                 4510
EmployeeName               JEFFREY BLAU
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.58
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.58
TotalPayBenefits              127677.58
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4509, dtype: object)
(4510, Id                                 4511
EmployeeName                 DARRYL YEE
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.57
TotalPayBenefits              127677.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4510, dtype: object)
(4511, Id                                 4512
EmployeeName          ARIEL DEL ROSARIO
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.57
TotalPayBenefits              127677.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4511, dtype: object)
(4512, Id                                 4513
EmployeeName           RODRIGO CASTILLO
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.57
TotalPayBenefits              127677.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4512, dtype: object)
(4513, Id                                     4514
EmployeeName                JANELLE KESSLER
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.56
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.56
TotalPayBenefits                  127677.56
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4513, dtype: object)
(4514, Id                                     4515
EmployeeName                   RICHARD ISEN
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.56
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.56
TotalPayBenefits                  127677.56
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4514, dtype: object)
(4515, Id                                     4516
EmployeeName                    FRANK GINES
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.55
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.55
TotalPayBenefits                  127677.55
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4515, dtype: object)
(4516, Id                                     4517
EmployeeName                  HAROLD STEGER
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.53
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.53
TotalPayBenefits                  127677.53
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4516, dtype: object)
(4517, Id                                     4518
EmployeeName                DONOVAN CORLISS
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.52
TotalPayBenefits                  127677.52
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4517, dtype: object)
(4518, Id                                     4519
EmployeeName                   RICHARD LOOK
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           127677.51
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          127677.51
TotalPayBenefits                  127677.51
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4518, dtype: object)
(4519, Id                                 4520
EmployeeName           GREGORY WOELFFER
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.51
TotalPayBenefits              127677.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4519, dtype: object)
(4520, Id                                 4521
EmployeeName              BRIAN ROBERTS
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.47
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.47
TotalPayBenefits              127677.47
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4520, dtype: object)
(4521, Id                                 4522
EmployeeName           GREGORY BRASWELL
JobTitle            IS PROJECT DIRECTOR
BasePay                       127677.43
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127677.43
TotalPayBenefits              127677.43
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4521, dtype: object)
(4522, Id                              4523
EmployeeName             RAYMOND LAU
JobTitle            TRANSIT OPERATOR
BasePay                     66248.78
OvertimePay                 59448.47
OtherPay                     1974.06
Benefits                         NaN
TotalPay                   127671.31
TotalPayBenefits           127671.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4522, dtype: object)
(4523, Id                                4524
EmployeeName             JAMES MCGRATH
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                     7646.2
OtherPay                       7594.72
Benefits                           NaN
TotalPay                     127662.35
TotalPayBenefits             127662.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4523, dtype: object)
(4524, Id                            4525
EmployeeName        BRADLEY WILSON
JobTitle                  ENGINEER
BasePay                  127654.73
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 127654.73
TotalPayBenefits         127654.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4524, dtype: object)
(4525, Id                                4526
EmployeeName          CLAYTON HARMSTON
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                     4810.7
OtherPay                      10437.81
Benefits                           NaN
TotalPay                     127649.58
TotalPayBenefits             127649.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4525, dtype: object)
(4526, Id                           4527
EmployeeName        JASON MISHLER
JobTitle              FIREFIGHTER
BasePay                 113105.16
OvertimePay                   0.0
OtherPay                 14537.03
Benefits                      NaN
TotalPay                127642.19
TotalPayBenefits        127642.19
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4526, dtype: object)
(4527, Id                                                       4528
EmployeeName                                     SCOTT PEPITO
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                              94307.55
OvertimePay                                           32528.0
OtherPay                                               794.25
Benefits                                                  NaN
TotalPay                                             127629.8
TotalPayBenefits                                     127629.8
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 4527, dtype: object)
(4528, Id                                       4529
EmployeeName                       SHU-MEI WU
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             121528.68
OvertimePay                           3242.48
OtherPay                              2848.83
Benefits                                  NaN
TotalPay                            127619.99
TotalPayBenefits                    127619.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4528, dtype: object)
(4529, Id                              4530
EmployeeName        MIENRADO HIDALGO
JobTitle            REGISTERED NURSE
BasePay                    103862.57
OvertimePay                   7056.3
OtherPay                     16699.1
Benefits                         NaN
TotalPay                   127617.97
TotalPayBenefits           127617.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4529, dtype: object)
(4530, Id                           4531
EmployeeName           KERRY MANN
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay              10270.53
OtherPay                 11403.78
Benefits                      NaN
TotalPay                127608.96
TotalPayBenefits        127608.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4530, dtype: object)
(4531, Id                               4532
EmployeeName            ERIC SANTIAGO
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                   7567.06
OtherPay                      9798.42
Benefits                          NaN
TotalPay                    127608.41
TotalPayBenefits            127608.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4531, dtype: object)
(4532, Id                              4533
EmployeeName              JAMES FUNK
JobTitle            POLICE OFFICER I
BasePay                    100926.93
OvertimePay                  9361.51
OtherPay                    17319.57
Benefits                         NaN
TotalPay                   127608.01
TotalPayBenefits           127608.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4532, dtype: object)
(4533, Id                                4534
EmployeeName             ANDREW KOFMAN
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    4931.03
OtherPay                      10230.82
Benefits                           NaN
TotalPay                     127603.67
TotalPayBenefits             127603.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4533, dtype: object)
(4534, Id                                4535
EmployeeName          RICHARD MORGANTE
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    9660.14
OtherPay                       5513.96
Benefits                           NaN
TotalPay                     127595.55
TotalPayBenefits             127595.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4534, dtype: object)
(4535, Id                           4536
EmployeeName         KEITH BARAKA
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               8045.33
OtherPay                 13602.43
Benefits                      NaN
TotalPay                127582.44
TotalPayBenefits        127582.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4535, dtype: object)
(4536, Id                                  4537
EmployeeName                   HELEN LIU
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.05
OvertimePay                          0.0
OtherPay                         8884.78
Benefits                             NaN
TotalPay                       127576.83
TotalPayBenefits               127576.83
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4536, dtype: object)
(4537, Id                                4538
EmployeeName                  JANET NG
JobTitle            ASSOCIATE ENGINEER
BasePay                       127575.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      127575.6
TotalPayBenefits              127575.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4537, dtype: object)
(4538, Id                                              4539
EmployeeName                              WENDY BEAR
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     115966.5
OvertimePay                                  7977.66
OtherPay                                     3628.89
Benefits                                         NaN
TotalPay                                   127573.05
TotalPayBenefits                           127573.05
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4538, dtype: object)
(4539, Id                              4540
EmployeeName            MARISA RAMOS
JobTitle            REGISTERED NURSE
BasePay                    116812.82
OvertimePay                      0.0
OtherPay                    10750.03
Benefits                         NaN
TotalPay                   127562.85
TotalPayBenefits           127562.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4539, dtype: object)
(4540, Id                           4541
EmployeeName          KEVIN SALAS
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               5443.93
OtherPay                 16183.33
Benefits                      NaN
TotalPay                127561.96
TotalPayBenefits        127561.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4540, dtype: object)
(4541, Id                           4542
EmployeeName          JAMES JONES
JobTitle                   WELDER
BasePay                  77670.21
OvertimePay              41939.58
OtherPay                  7947.02
Benefits                      NaN
TotalPay                127556.81
TotalPayBenefits        127556.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4541, dtype: object)
(4542, Id                                  4543
EmployeeName                    MARCO KU
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         8857.33
Benefits                             NaN
TotalPay                       127549.33
TotalPayBenefits               127549.33
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4542, dtype: object)
(4543, Id                              4544
EmployeeName            ADRIAN PAYNE
JobTitle            POLICE OFFICER I
BasePay                     95765.33
OvertimePay                 12814.44
OtherPay                    18969.38
Benefits                         NaN
TotalPay                   127549.15
TotalPayBenefits           127549.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4543, dtype: object)
(4544, Id                                       4545
EmployeeName                  CECILIA MANGOBA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              127549.1
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             127549.1
TotalPayBenefits                     127549.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4544, dtype: object)
(4545, Id                               4546
EmployeeName        JEROME MANALASTAS
JobTitle             REGISTERED NURSE
BasePay                      99866.01
OvertimePay                   9075.29
OtherPay                     18602.62
Benefits                          NaN
TotalPay                    127543.92
TotalPayBenefits            127543.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4545, dtype: object)
(4546, Id                                  4547
EmployeeName               STERLING CHAN
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                         8850.17
Benefits                             NaN
TotalPay                       127542.19
TotalPayBenefits               127542.19
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4546, dtype: object)
(4547, Id                           4548
EmployeeName         CAMRON SAMII
JobTitle              MANAGER III
BasePay                 127539.62
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                127539.62
TotalPayBenefits        127539.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4547, dtype: object)
(4548, Id                            4549
EmployeeName            JOHN CHIEN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               33792.95
OtherPay                   6895.29
Benefits                       NaN
TotalPay                 127528.25
TotalPayBenefits         127528.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4548, dtype: object)
(4549, Id                                                4550
EmployeeName                               JAMES TERRY
JobTitle            MENTAL HEALTH TREATMENT SPECIALIST
BasePay                                       21378.49
OvertimePay                                    1480.05
OtherPay                                      104669.3
Benefits                                           NaN
TotalPay                                     127527.84
TotalPayBenefits                             127527.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4549, dtype: object)
(4550, Id                                                  4551
EmployeeName                                  GRACE KWAK
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                        127510.02
OvertimePay                                          0.0
OtherPay                                             0.0
Benefits                                             NaN
TotalPay                                       127510.02
TotalPayBenefits                               127510.02
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 4550, dtype: object)
(4551, Id                           4552
EmployeeName        MARK RUDNICKI
JobTitle                 ENGINEER
BasePay                 120938.13
OvertimePay                   0.0
OtherPay                  6569.26
Benefits                      NaN
TotalPay                127507.39
TotalPayBenefits        127507.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4551, dtype: object)
(4552, Id                           4553
EmployeeName          FRANK LEUNG
JobTitle                 ENGINEER
BasePay                 120937.11
OvertimePay                   0.0
OtherPay                  6510.93
Benefits                      NaN
TotalPay                127448.04
TotalPayBenefits        127448.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4552, dtype: object)
(4553, Id                              4554
EmployeeName         MARTY ECHIVARRE
JobTitle            TRAIN CONTROLLER
BasePay                    101056.49
OvertimePay                 21040.22
OtherPay                     5349.76
Benefits                         NaN
TotalPay                   127446.47
TotalPayBenefits           127446.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4553, dtype: object)
(4554, Id                              4555
EmployeeName          ALEJANDRA USON
JobTitle            REGISTERED NURSE
BasePay                    112625.04
OvertimePay                 10220.99
OtherPay                     4597.94
Benefits                         NaN
TotalPay                   127443.97
TotalPayBenefits           127443.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4554, dtype: object)
(4555, Id                           4556
EmployeeName           SIG WALLEN
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               6860.86
OtherPay                 14641.31
Benefits                      NaN
TotalPay                127436.85
TotalPayBenefits        127436.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4555, dtype: object)
(4556, Id                                  4557
EmployeeName        ROBERT WASHINGTON-JR
JobTitle             AUTOMOTIVE MECHANIC
BasePay                          72490.4
OvertimePay                     33037.48
OtherPay                        21905.86
Benefits                             NaN
TotalPay                       127433.74
TotalPayBenefits               127433.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4556, dtype: object)
(4557, Id                              4558
EmployeeName             VIVIAN CURD
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                      439.25
Benefits                         NaN
TotalPay                   127423.25
TotalPayBenefits           127423.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4557, dtype: object)
(4558, Id                                 4559
EmployeeName                  KIM TALLY
JobTitle            IS PROJECT DIRECTOR
BasePay                       127416.26
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127416.26
TotalPayBenefits              127416.26
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4558, dtype: object)
(4559, Id                                4560
EmployeeName                 RICK HIGA
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    9954.86
OtherPay                        5034.4
Benefits                           NaN
TotalPay                     127410.71
TotalPayBenefits             127410.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4559, dtype: object)
(4560, Id                               4561
EmployeeName           ROBERT SANCHEZ
JobTitle            POLICE OFFICER II
BasePay                     110223.06
OvertimePay                   6320.75
OtherPay                     10865.61
Benefits                          NaN
TotalPay                    127409.42
TotalPayBenefits            127409.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4560, dtype: object)
(4561, Id                              4562
EmployeeName            CRAIG WILSON
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                 10116.86
OtherPay                    11224.78
Benefits                         NaN
TotalPay                   127406.83
TotalPayBenefits           127406.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4561, dtype: object)
(4562, Id                               4563
EmployeeName          ROLANDO ESCOBAR
JobTitle            POLICE OFFICER II
BasePay                     109768.93
OvertimePay                   6513.19
OtherPay                     11117.68
Benefits                          NaN
TotalPay                     127399.8
TotalPayBenefits             127399.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4562, dtype: object)
(4563, Id                              4564
EmployeeName          ANDREA KOZIMOR
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                      414.79
Benefits                         NaN
TotalPay                   127398.79
TotalPayBenefits           127398.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4563, dtype: object)
(4564, Id                                               4565
EmployeeName                                 JOE TONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                  17883.22
OtherPay                                     10514.38
Benefits                                          NaN
TotalPay                                     127397.6
TotalPayBenefits                             127397.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4564, dtype: object)
(4565, Id                                  4566
EmployeeName                CAROLINE LEE
JobTitle            PHYSICIAN SPECIALIST
BasePay                        127395.75
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       127395.75
TotalPayBenefits               127395.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4565, dtype: object)
(4566, Id                              4567
EmployeeName           REGILAND PENA
JobTitle            POLICE OFFICER I
BasePay                     90812.23
OvertimePay                  7775.33
OtherPay                    28803.18
Benefits                         NaN
TotalPay                   127390.74
TotalPayBenefits           127390.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4566, dtype: object)
(4567, Id                              4568
EmployeeName            MARLIN GOMEZ
JobTitle            REGISTERED NURSE
BasePay                     111126.8
OvertimePay                  1426.92
OtherPay                    14815.32
Benefits                         NaN
TotalPay                   127369.04
TotalPayBenefits           127369.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4567, dtype: object)
(4568, Id                                               4569
EmployeeName                            RICARDO MILES
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  25913.25
OtherPay                                       2440.0
Benefits                                          NaN
TotalPay                                    127367.65
TotalPayBenefits                            127367.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4568, dtype: object)
(4569, Id                                  4570
EmployeeName               VICTOR ROSERO
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         8674.33
Benefits                             NaN
TotalPay                       127366.33
TotalPayBenefits               127366.33
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4569, dtype: object)
(4570, Id                                4571
EmployeeName        CHRISTOPHER KNIGHT
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    6264.61
OtherPay                       8676.49
Benefits                           NaN
TotalPay                     127362.55
TotalPayBenefits             127362.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4570, dtype: object)
(4571, Id                              4572
EmployeeName            RANDI BURKET
JobTitle            REGISTERED NURSE
BasePay                    103179.55
OvertimePay                  6434.83
OtherPay                    17747.24
Benefits                         NaN
TotalPay                   127361.62
TotalPayBenefits           127361.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4571, dtype: object)
(4572, Id                            4573
EmployeeName        GLACIER YBANEZ
JobTitle                MANAGER IV
BasePay                  125199.48
OvertimePay                    0.0
OtherPay                   2149.24
Benefits                       NaN
TotalPay                 127348.72
TotalPayBenefits         127348.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4572, dtype: object)
(4573, Id                                4574
EmployeeName         STEPHANIE JOHNSON
JobTitle            TRANSIT SUPERVISOR
BasePay                       88062.02
OvertimePay                   37224.55
OtherPay                       2025.08
Benefits                           NaN
TotalPay                     127311.65
TotalPayBenefits             127311.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4573, dtype: object)
(4574, Id                           4575
EmployeeName        ABUBAKER AZAM
JobTitle                MANAGER V
BasePay                 127305.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                127305.51
TotalPayBenefits        127305.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4574, dtype: object)
(4575, Id                               4576
EmployeeName          AARON BALLONADO
JobTitle            POLICE OFFICER II
BasePay                     107162.62
OvertimePay                   8267.17
OtherPay                     11852.18
Benefits                          NaN
TotalPay                    127281.97
TotalPayBenefits            127281.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4575, dtype: object)
(4576, Id                                      4577
EmployeeName        ISABELLE ALLOUKO FIANKAN
JobTitle                    REGISTERED NURSE
BasePay                            100562.18
OvertimePay                           9242.8
OtherPay                            17471.85
Benefits                                 NaN
TotalPay                           127276.83
TotalPayBenefits                   127276.83
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4576, dtype: object)
(4577, Id                                             4578
EmployeeName                          STEVEN PONDER
JobTitle            MANAGER, EMPLOYEE RELATIONS DIV
BasePay                                   127270.57
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  127270.57
TotalPayBenefits                          127270.57
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4577, dtype: object)
(4578, Id                             4579
EmployeeName        MERRICK PASCUAL
JobTitle                  MANAGER V
BasePay                    127269.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   127269.0
TotalPayBenefits           127269.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4578, dtype: object)
(4579, Id                              4580
EmployeeName          JENNIFER CHING
JobTitle            REGISTERED NURSE
BasePay                    123240.06
OvertimePay                   296.25
OtherPay                     3707.62
Benefits                         NaN
TotalPay                   127243.93
TotalPayBenefits           127243.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4579, dtype: object)
(4580, Id                                              4581
EmployeeName                             KARTIK SHAH
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    109356.28
OvertimePay                                  8301.91
OtherPay                                      9585.2
Benefits                                         NaN
TotalPay                                   127243.39
TotalPayBenefits                           127243.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4580, dtype: object)
(4581, Id                              4582
EmployeeName           CHRISTINE MAY
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127234.0
TotalPayBenefits            127234.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4581, dtype: object)
(4582, Id                              4583
EmployeeName           CLAIRE WHALEY
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127234.0
TotalPayBenefits            127234.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4582, dtype: object)
(4583, Id                              4584
EmployeeName         DOLORES LADORES
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127234.0
TotalPayBenefits            127234.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4583, dtype: object)
(4584, Id                              4585
EmployeeName            BETH BRUMELL
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127234.0
TotalPayBenefits            127234.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4584, dtype: object)
(4585, Id                              4586
EmployeeName          JOSEPH STEWARD
JobTitle            REGISTERED NURSE
BasePay                     126984.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    127234.0
TotalPayBenefits            127234.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4585, dtype: object)
(4586, Id                              4587
EmployeeName            RILEY SURBER
JobTitle            REGISTERED NURSE
BasePay                    126983.98
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   127233.98
TotalPayBenefits           127233.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4586, dtype: object)
(4587, Id                              4588
EmployeeName           MICHAEL OAMIL
JobTitle            REGISTERED NURSE
BasePay                    100524.61
OvertimePay                 10320.21
OtherPay                    16377.06
Benefits                         NaN
TotalPay                   127221.88
TotalPayBenefits           127221.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4587, dtype: object)
(4588, Id                                                4589
EmployeeName                          HERMINIO CRESINO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   40786.56
OtherPay                                       8853.04
Benefits                                           NaN
TotalPay                                      127220.0
TotalPayBenefits                              127220.0
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4588, dtype: object)
(4589, Id                                  4590
EmployeeName        MARGARITA POLISHCHUK
JobTitle                REGISTERED NURSE
BasePay                        123714.01
OvertimePay                       2844.0
OtherPay                           652.9
Benefits                             NaN
TotalPay                       127210.91
TotalPayBenefits               127210.91
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4589, dtype: object)
(4590, Id                                4591
EmployeeName             IRENE MICHAUD
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    4876.78
OtherPay                       9933.01
Benefits                           NaN
TotalPay                      127190.5
TotalPayBenefits              127190.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4590, dtype: object)
(4591, Id                                4592
EmployeeName             ROBERT DELEON
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   11097.42
OtherPay                       3671.02
Benefits                           NaN
TotalPay                     127189.88
TotalPayBenefits             127189.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4591, dtype: object)
(4592, Id                                 4593
EmployeeName              ROSA ESQUIVEL
JobTitle            IS PROJECT DIRECTOR
BasePay                       127185.68
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127185.68
TotalPayBenefits              127185.68
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4592, dtype: object)
(4593, Id                                 4594
EmployeeName                 FRANK LARA
JobTitle            IS PROJECT DIRECTOR
BasePay                       127185.09
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      127185.09
TotalPayBenefits              127185.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4593, dtype: object)
(4594, Id                                4595
EmployeeName           ADRIENNE GEETER
JobTitle            TRANSIT SUPERVISOR
BasePay                       89755.51
OvertimePay                    30276.7
OtherPay                       7137.38
Benefits                           NaN
TotalPay                     127169.59
TotalPayBenefits             127169.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4594, dtype: object)
(4595, Id                               4596
EmployeeName            KEVIN O'LEARY
JobTitle            POLICE OFFICER II
BasePay                     106073.89
OvertimePay                   9587.57
OtherPay                     11503.59
Benefits                          NaN
TotalPay                    127165.05
TotalPayBenefits            127165.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4595, dtype: object)
(4596, Id                              4597
EmployeeName          SHEILA TUMOLVA
JobTitle            REGISTERED NURSE
BasePay                    100137.77
OvertimePay                  7717.19
OtherPay                    19305.18
Benefits                         NaN
TotalPay                   127160.14
TotalPayBenefits           127160.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4596, dtype: object)
(4597, Id                                4598
EmployeeName              SHAWN MENDEZ
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    7362.46
OtherPay                       7381.08
Benefits                           NaN
TotalPay                     127144.62
TotalPayBenefits             127144.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4597, dtype: object)
(4598, Id                                    4599
EmployeeName                 JENNIFER STOW
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.66
OvertimePay                        9440.19
OtherPay                          11251.15
Benefits                               NaN
TotalPay                          127133.0
TotalPayBenefits                  127133.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4598, dtype: object)
(4599, Id                                4600
EmployeeName            TIMOTHY BUELOW
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                    5778.78
OtherPay                        8945.0
Benefits                           NaN
TotalPay                     127124.81
TotalPayBenefits             127124.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4599, dtype: object)
(4600, Id                              4601
EmployeeName           YOLANDA RADOC
JobTitle            REGISTERED NURSE
BasePay                     126861.9
OvertimePay                      0.0
OtherPay                      262.21
Benefits                         NaN
TotalPay                   127124.11
TotalPayBenefits           127124.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4600, dtype: object)
(4601, Id                              4602
EmployeeName             SHINO HONDA
JobTitle            REGISTERED NURSE
BasePay                    101597.79
OvertimePay                  8549.36
OtherPay                     16976.8
Benefits                         NaN
TotalPay                   127123.95
TotalPayBenefits           127123.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4601, dtype: object)
(4602, Id                                             4603
EmployeeName                             RENE SIMON
JobTitle            COMMUNICATION LINE SUPERVISOR I
BasePay                                    92728.18
OvertimePay                                22189.77
OtherPay                                   12195.02
Benefits                                        NaN
TotalPay                                  127112.97
TotalPayBenefits                          127112.97
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4602, dtype: object)
(4603, Id                                               4604
EmployeeName                            WAI LUN LEUNG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   26157.6
OtherPay                                       1932.0
Benefits                                          NaN
TotalPay                                     127104.0
TotalPayBenefits                             127104.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4603, dtype: object)
(4604, Id                           4605
EmployeeName          ANDRE BROWN
JobTitle              FIREFIGHTER
BasePay                 105934.64
OvertimePay               6162.61
OtherPay                 14995.21
Benefits                      NaN
TotalPay                127092.46
TotalPayBenefits        127092.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4604, dtype: object)
(4605, Id                               4606
EmployeeName        MATTHEW BALZARINI
JobTitle             POLICE OFFICER I
BasePay                     106046.08
OvertimePay                   3467.42
OtherPay                     17577.25
Benefits                          NaN
TotalPay                    127090.75
TotalPayBenefits            127090.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4605, dtype: object)
(4606, Id                             4607
EmployeeName        JOHN HARRINGTON
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                 9778.66
OtherPay                   11372.62
Benefits                        NaN
TotalPay                  127085.92
TotalPayBenefits          127085.92
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4606, dtype: object)
(4607, Id                             4608
EmployeeName        DAVID AMITUANAI
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                 9452.68
OtherPay                   11698.43
Benefits                        NaN
TotalPay                  127085.76
TotalPayBenefits          127085.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4607, dtype: object)
(4608, Id                                                     4609
EmployeeName                                 HEATHER GRIVES
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87612.71
OvertimePay                                        28414.03
OtherPay                                           11049.62
Benefits                                                NaN
TotalPay                                          127076.36
TotalPayBenefits                                  127076.36
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 4608, dtype: object)
(4609, Id                                4610
EmployeeName                RODNEY LEE
JobTitle            POLICE OFFICER III
BasePay                      112421.48
OvertimePay                    9694.59
OtherPay                       4958.41
Benefits                           NaN
TotalPay                     127074.48
TotalPayBenefits             127074.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4609, dtype: object)
(4610, Id                               4611
EmployeeName             GIGI WHITLEY
JobTitle            MAYORAL STAFF XVI
BasePay                     126150.65
OvertimePay                       0.0
OtherPay                       919.52
Benefits                          NaN
TotalPay                    127070.17
TotalPayBenefits            127070.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4610, dtype: object)
(4611, Id                              4612
EmployeeName        APOLINARIA LOPEZ
JobTitle            REGISTERED NURSE
BasePay                    104886.82
OvertimePay                  5986.61
OtherPay                    16184.57
Benefits                         NaN
TotalPay                    127058.0
TotalPayBenefits            127058.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4611, dtype: object)
(4612, Id                           4613
EmployeeName          MICHAEL TIN
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               2776.27
OtherPay                 18338.93
Benefits                      NaN
TotalPay                127049.87
TotalPayBenefits        127049.87
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4612, dtype: object)
(4613, Id                              4614
EmployeeName           BRANDON SMITH
JobTitle            POLICE OFFICER I
BasePay                    101926.14
OvertimePay                 13276.96
OtherPay                    11835.78
Benefits                         NaN
TotalPay                   127038.88
TotalPayBenefits           127038.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4613, dtype: object)
(4614, Id                           4615
EmployeeName         VICTOR LUBET
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               4708.21
OtherPay                 16391.24
Benefits                      NaN
TotalPay                127034.15
TotalPayBenefits        127034.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4614, dtype: object)
(4615, Id                            4616
EmployeeName        RONALD CADITAN
JobTitle               FIREFIGHTER
BasePay                  105934.63
OvertimePay                7165.79
OtherPay                  13927.45
Benefits                       NaN
TotalPay                 127027.87
TotalPayBenefits         127027.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4615, dtype: object)
(4616, Id                              4617
EmployeeName         JEANETTE CONLEY
JobTitle            REGISTERED NURSE
BasePay                    116132.71
OvertimePay                   735.41
OtherPay                     10155.4
Benefits                         NaN
TotalPay                   127023.52
TotalPayBenefits           127023.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4616, dtype: object)
(4617, Id                              4618
EmployeeName          RAISA KIMELMAN
JobTitle            REGISTERED NURSE
BasePay                    119381.11
OvertimePay                   4825.8
OtherPay                     2802.32
Benefits                         NaN
TotalPay                   127009.23
TotalPayBenefits           127009.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4617, dtype: object)
(4618, Id                                4619
EmployeeName               MARK LUNDIN
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   10065.07
OtherPay                       4522.39
Benefits                           NaN
TotalPay                      127008.9
TotalPayBenefits              127008.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4618, dtype: object)
(4619, Id                                           4620
EmployeeName                       MIGUEL HERRERA
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                   99961.0
OvertimePay                               27042.9
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 127003.9
TotalPayBenefits                         127003.9
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 4619, dtype: object)
(4620, Id                                4621
EmployeeName               ROBERT FUNG
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    3961.83
OtherPay                      10620.09
Benefits                           NaN
TotalPay                     127003.38
TotalPayBenefits             127003.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4620, dtype: object)
(4621, Id                                4622
EmployeeName              HEATHER POHL
JobTitle            UTILITY SPECIALIST
BasePay                       127001.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      127001.6
TotalPayBenefits              127001.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4621, dtype: object)
(4622, Id                                 4623
EmployeeName        MARIA VERON MERCADO
JobTitle               REGISTERED NURSE
BasePay                        126984.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       126984.0
TotalPayBenefits               126984.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4622, dtype: object)
(4623, Id                              4624
EmployeeName                SUNG CHI
JobTitle            REGISTERED NURSE
BasePay                    102737.37
OvertimePay                   6984.9
OtherPay                    17256.47
Benefits                         NaN
TotalPay                   126978.74
TotalPayBenefits           126978.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4623, dtype: object)
(4624, Id                            4625
EmployeeName        REZA BARADARAN
JobTitle                  ENGINEER
BasePay                  120937.05
OvertimePay                1242.71
OtherPay                   4795.85
Benefits                       NaN
TotalPay                 126975.61
TotalPayBenefits         126975.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4624, dtype: object)
(4625, Id                                4626
EmployeeName               ROBERT CHEW
JobTitle            POLICE OFFICER III
BasePay                      112220.59
OvertimePay                     5414.0
OtherPay                       9329.18
Benefits                           NaN
TotalPay                     126963.77
TotalPayBenefits             126963.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4625, dtype: object)
(4626, Id                                4627
EmployeeName              DAVID CASTRO
JobTitle            TRANSIT SUPERVISOR
BasePay                       87977.32
OvertimePay                   38668.74
OtherPay                        306.85
Benefits                           NaN
TotalPay                     126952.91
TotalPayBenefits             126952.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4626, dtype: object)
(4627, Id                                4628
EmployeeName               RICHARD LEE
JobTitle            POLICE OFFICER III
BasePay                      112416.81
OvertimePay                    2546.67
OtherPay                      11982.81
Benefits                           NaN
TotalPay                     126946.29
TotalPayBenefits             126946.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4627, dtype: object)
(4628, Id                                4629
EmployeeName             BRYAN WATKINS
JobTitle            POLICE OFFICER III
BasePay                      112441.73
OvertimePay                    7542.05
OtherPay                       6956.41
Benefits                           NaN
TotalPay                     126940.19
TotalPayBenefits             126940.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4628, dtype: object)
(4629, Id                                           4630
EmployeeName                       DIJAIDA DURDEN
JobTitle            CEMENT FINISHER SUPERVISOR II
BasePay                                   93895.6
OvertimePay                              33041.35
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                126936.95
TotalPayBenefits                        126936.95
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 4629, dtype: object)
(4630, Id                                4631
EmployeeName               WADE BAILEY
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    5833.98
OtherPay                       8659.65
Benefits                           NaN
TotalPay                     126935.43
TotalPayBenefits             126935.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4630, dtype: object)
(4631, Id                              4632
EmployeeName        ERIC BETTENCOURT
JobTitle             SENIOR ENGINEER
BasePay                    122514.03
OvertimePay                      0.0
OtherPay                     4407.59
Benefits                         NaN
TotalPay                   126921.62
TotalPayBenefits           126921.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4631, dtype: object)
(4632, Id                           4633
EmployeeName        JUAN LA CHICA
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               9892.39
OtherPay                 11086.79
Benefits                      NaN
TotalPay                126913.85
TotalPayBenefits        126913.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4632, dtype: object)
(4633, Id                            4634
EmployeeName        WILLIAM REILLY
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay               10412.75
OtherPay                  10559.08
Benefits                       NaN
TotalPay                 126906.51
TotalPayBenefits         126906.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4633, dtype: object)
(4634, Id                              4635
EmployeeName                 CHIU WU
JobTitle            REGISTERED NURSE
BasePay                    105872.29
OvertimePay                  7335.76
OtherPay                    13691.13
Benefits                         NaN
TotalPay                   126899.18
TotalPayBenefits           126899.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4634, dtype: object)
(4635, Id                                         4636
EmployeeName                   PATRICK MARTINEZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                65336.01
OvertimePay                            15971.07
OtherPay                               45590.68
Benefits                                    NaN
TotalPay                              126897.76
TotalPayBenefits                      126897.76
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4635, dtype: object)
(4636, Id                           4637
EmployeeName          MARK SPOMER
JobTitle                 ENGINEER
BasePay                 120937.08
OvertimePay                   0.0
OtherPay                  5960.04
Benefits                      NaN
TotalPay                126897.12
TotalPayBenefits        126897.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4636, dtype: object)
(4637, Id                                              4638
EmployeeName                           WILLIAM LOUIE
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73387.27
OvertimePay                                 48591.13
OtherPay                                     4917.16
Benefits                                         NaN
TotalPay                                   126895.56
TotalPayBenefits                           126895.56
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4637, dtype: object)
(4638, Id                            4639
EmployeeName        MARIO FLAVIANI
JobTitle               FIREFIGHTER
BasePay                  105165.24
OvertimePay                 4702.2
OtherPay                  16993.42
Benefits                       NaN
TotalPay                 126860.86
TotalPayBenefits         126860.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4638, dtype: object)
(4639, Id                              4640
EmployeeName            GEORGE MANDE
JobTitle            REGISTERED NURSE
BasePay                     112424.0
OvertimePay                  2870.05
OtherPay                    11558.58
Benefits                         NaN
TotalPay                   126852.63
TotalPayBenefits           126852.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4639, dtype: object)
(4640, Id                                4641
EmployeeName            ANGELA WILHELM
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    1579.19
OtherPay                      12847.09
Benefits                           NaN
TotalPay                     126847.71
TotalPayBenefits             126847.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4640, dtype: object)
(4641, Id                             4642
EmployeeName        PAUL MC DERMOTT
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                 7886.19
OtherPay                   12992.01
Benefits                        NaN
TotalPay                  126812.88
TotalPayBenefits          126812.88
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4641, dtype: object)
(4642, Id                                4643
EmployeeName             CURTIS NAKANO
JobTitle            POLICE OFFICER III
BasePay                      110911.07
OvertimePay                   11475.37
OtherPay                       4423.15
Benefits                           NaN
TotalPay                     126809.59
TotalPayBenefits             126809.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4642, dtype: object)
(4643, Id                                4644
EmployeeName            GARY MENDRIBIL
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    4871.38
OtherPay                       9515.78
Benefits                           NaN
TotalPay                     126788.25
TotalPayBenefits             126788.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4643, dtype: object)
(4644, Id                           4645
EmployeeName           LARRY DEEN
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               3395.55
OtherPay                 17428.19
Benefits                      NaN
TotalPay                 126758.4
TotalPayBenefits         126758.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4644, dtype: object)
(4645, Id                           4646
EmployeeName          DUSTIN RUFF
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               6054.88
OtherPay                 14768.78
Benefits                      NaN
TotalPay                126758.32
TotalPayBenefits        126758.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4645, dtype: object)
(4646, Id                                4647
EmployeeName                DAVIN COLE
JobTitle            POLICE OFFICER III
BasePay                      111621.82
OvertimePay                    4378.91
OtherPay                      10756.51
Benefits                           NaN
TotalPay                     126757.24
TotalPayBenefits             126757.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4646, dtype: object)
(4647, Id                           4648
EmployeeName           JOHN KLEIN
JobTitle              MANAGER III
BasePay                  117670.3
OvertimePay                   0.0
OtherPay                  9085.02
Benefits                      NaN
TotalPay                126755.32
TotalPayBenefits        126755.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4647, dtype: object)
(4648, Id                              4649
EmployeeName           DAVID GLENNON
JobTitle            REGISTERED NURSE
BasePay                     126495.6
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    126745.6
TotalPayBenefits            126745.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4648, dtype: object)
(4649, Id                             4650
EmployeeName        BRIAN DUSSEAULT
JobTitle            SENIOR ENGINEER
BasePay                   126640.03
OvertimePay                     0.0
OtherPay                       90.0
Benefits                        NaN
TotalPay                  126730.03
TotalPayBenefits          126730.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4649, dtype: object)
(4650, Id                              4651
EmployeeName        EVANGELINE SILVA
JobTitle            REGISTERED NURSE
BasePay                    115854.14
OvertimePay                   735.41
OtherPay                    10133.06
Benefits                         NaN
TotalPay                   126722.61
TotalPayBenefits           126722.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4650, dtype: object)
(4651, Id                           4652
EmployeeName            DENNIS YU
JobTitle              FIREFIGHTER
BasePay                 106270.64
OvertimePay               7528.35
OtherPay                 12922.72
Benefits                      NaN
TotalPay                126721.71
TotalPayBenefits        126721.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4651, dtype: object)
(4652, Id                                4653
EmployeeName                 JOHN WEBB
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    7785.57
OtherPay                       6539.16
Benefits                           NaN
TotalPay                     126705.43
TotalPayBenefits             126705.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4652, dtype: object)
(4653, Id                              4654
EmployeeName               JASON LAO
JobTitle            TRANSIT OPERATOR
BasePay                     67309.44
OvertimePay                 54843.97
OtherPay                     4536.94
Benefits                         NaN
TotalPay                   126690.35
TotalPayBenefits           126690.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4653, dtype: object)
(4654, Id                               4655
EmployeeName        FRANCIS FELICIANO
JobTitle             POLICE OFFICER I
BasePay                      99567.69
OvertimePay                  14406.86
OtherPay                     12712.38
Benefits                          NaN
TotalPay                    126686.93
TotalPayBenefits            126686.93
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4654, dtype: object)
(4655, Id                                4656
EmployeeName             RAYMOND CALLO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    8922.64
OtherPay                       5357.89
Benefits                           NaN
TotalPay                     126681.61
TotalPayBenefits             126681.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4655, dtype: object)
(4656, Id                              4657
EmployeeName          CHONA PARANGAN
JobTitle            REGISTERED NURSE
BasePay                    102095.98
OvertimePay                  9359.76
OtherPay                    15217.27
Benefits                         NaN
TotalPay                   126673.01
TotalPayBenefits           126673.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4656, dtype: object)
(4657, Id                                 4658
EmployeeName        ENRIQUE ALEJANDRINO
JobTitle              POLICE OFFICER II
BasePay                       105040.62
OvertimePay                     10261.2
OtherPay                       11365.86
Benefits                            NaN
TotalPay                      126667.68
TotalPayBenefits              126667.68
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4657, dtype: object)
(4658, Id                           4659
EmployeeName        ROBERT MATEIK
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               5438.36
OtherPay                 15275.79
Benefits                      NaN
TotalPay                126648.84
TotalPayBenefits        126648.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4658, dtype: object)
(4659, Id                              4660
EmployeeName             MENGKRY TEA
JobTitle            REGISTERED NURSE
BasePay                    123225.21
OvertimePay                      0.0
OtherPay                     3421.36
Benefits                         NaN
TotalPay                   126646.57
TotalPayBenefits           126646.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4659, dtype: object)
(4660, Id                                  4661
EmployeeName              SHIU LOG LIANG
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         7949.83
Benefits                             NaN
TotalPay                       126641.83
TotalPayBenefits               126641.83
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4660, dtype: object)
(4661, Id                               4662
EmployeeName             PAUL OSPITAL
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                   9303.95
OtherPay                      7087.03
Benefits                          NaN
TotalPay                    126633.92
TotalPayBenefits            126633.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4661, dtype: object)
(4662, Id                           4663
EmployeeName            NANCY HOM
JobTitle               MANAGER IV
BasePay                 121626.05
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                126626.05
TotalPayBenefits        126626.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4662, dtype: object)
(4663, Id                               4664
EmployeeName         MICHAEL GLICKMAN
JobTitle            POLICE OFFICER II
BasePay                     113144.48
OvertimePay                   6435.75
OtherPay                      7040.39
Benefits                          NaN
TotalPay                    126620.62
TotalPayBenefits            126620.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4663, dtype: object)
(4664, Id                                4665
EmployeeName            KENNETH KOENIG
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    5445.78
OtherPay                       8747.18
Benefits                           NaN
TotalPay                     126614.41
TotalPayBenefits             126614.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4664, dtype: object)
(4665, Id                              4666
EmployeeName           MATTHEW OLSEN
JobTitle            REGISTERED NURSE
BasePay                    103084.83
OvertimePay                   7354.1
OtherPay                    16170.34
Benefits                         NaN
TotalPay                   126609.27
TotalPayBenefits           126609.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4665, dtype: object)
(4666, Id                           4667
EmployeeName         ELSA SANCHEZ
JobTitle            SPECIAL NURSE
BasePay                 118893.65
OvertimePay               3067.32
OtherPay                  4625.29
Benefits                      NaN
TotalPay                126586.26
TotalPayBenefits        126586.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4666, dtype: object)
(4667, Id                              4668
EmployeeName           TREMAYNE KING
JobTitle            REGISTERED NURSE
BasePay                    103140.59
OvertimePay                  9058.96
OtherPay                    14380.56
Benefits                         NaN
TotalPay                   126580.11
TotalPayBenefits           126580.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4667, dtype: object)
(4668, Id                                                  4669
EmployeeName                                LINDA HARRIS
JobTitle            ASSISTANT COURT REPORTER COORDINATOR
BasePay                                         91068.16
OvertimePay                                          0.0
OtherPay                                        35503.55
Benefits                                             NaN
TotalPay                                       126571.71
TotalPayBenefits                               126571.71
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 4668, dtype: object)
(4669, Id                              4670
EmployeeName          ORLIE GONZALES
JobTitle            REGISTERED NURSE
BasePay                     102065.3
OvertimePay                  9359.76
OtherPay                    15125.94
Benefits                         NaN
TotalPay                    126551.0
TotalPayBenefits            126551.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4669, dtype: object)
(4670, Id                              4671
EmployeeName         NELLY MACAHILAS
JobTitle            REGISTERED NURSE
BasePay                    104823.09
OvertimePay                  5950.13
OtherPay                    15772.18
Benefits                         NaN
TotalPay                    126545.4
TotalPayBenefits            126545.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4670, dtype: object)
(4671, Id                                4672
EmployeeName        MICHAEL ETCHEVERRY
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   10470.18
OtherPay                       3653.12
Benefits                           NaN
TotalPay                     126544.72
TotalPayBenefits             126544.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4671, dtype: object)
(4672, Id                               4673
EmployeeName                TRI HOANG
JobTitle            POLICE OFFICER II
BasePay                      99952.96
OvertimePay                   6192.59
OtherPay                     20398.23
Benefits                          NaN
TotalPay                    126543.78
TotalPayBenefits            126543.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4672, dtype: object)
(4673, Id                              4674
EmployeeName            SUSAN THOMAS
JobTitle            REGISTERED NURSE
BasePay                    123240.03
OvertimePay                      0.0
OtherPay                     3298.41
Benefits                         NaN
TotalPay                   126538.44
TotalPayBenefits           126538.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4673, dtype: object)
(4674, Id                                4675
EmployeeName        MICHAEL HUDDLESTON
JobTitle            POLICE OFFICER III
BasePay                      117262.69
OvertimePay                    5401.88
OtherPay                        3845.2
Benefits                           NaN
TotalPay                     126509.77
TotalPayBenefits             126509.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4674, dtype: object)
(4675, Id                                4676
EmployeeName           HAROLD VANCE JR
JobTitle            POLICE OFFICER III
BasePay                      117283.32
OvertimePay                    1437.82
OtherPay                       7786.58
Benefits                           NaN
TotalPay                     126507.72
TotalPayBenefits             126507.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4675, dtype: object)
(4676, Id                             4677
EmployeeName        KAILIN WATERMAN
JobTitle                FIREFIGHTER
BasePay                   105934.66
OvertimePay                 8699.64
OtherPay                   11873.06
Benefits                        NaN
TotalPay                  126507.36
TotalPayBenefits          126507.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4676, dtype: object)
(4677, Id                                4678
EmployeeName            ROBERT MAMMONE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                     8469.9
OtherPay                       5612.59
Benefits                           NaN
TotalPay                     126503.93
TotalPayBenefits             126503.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4677, dtype: object)
(4678, Id                              4679
EmployeeName              MARY MAGEE
JobTitle            REGISTERED NURSE
BasePay                     126251.4
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    126501.4
TotalPayBenefits            126501.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4678, dtype: object)
(4679, Id                           4680
EmployeeName        JAMES LEONARD
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               2054.88
OtherPay                 18510.05
Benefits                      NaN
TotalPay                126499.59
TotalPayBenefits        126499.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4679, dtype: object)
(4680, Id                                4681
EmployeeName           GRETCHEN PARKER
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4983.87
OtherPay                       9102.54
Benefits                           NaN
TotalPay                     126487.48
TotalPayBenefits             126487.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4680, dtype: object)
(4681, Id                              4682
EmployeeName             BRYAN LUJAN
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                 14429.18
OtherPay                     5997.17
Benefits                         NaN
TotalPay                   126472.42
TotalPayBenefits           126472.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4681, dtype: object)
(4682, Id                                 4683
EmployeeName                   CHESI HO
JobTitle            CLINICAL PHARMACIST
BasePay                       126453.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      126453.04
TotalPayBenefits              126453.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4682, dtype: object)
(4683, Id                              4684
EmployeeName        ROMEO DE LA ROCA
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                     6954.69
Benefits                         NaN
TotalPay                   126450.69
TotalPayBenefits           126450.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4683, dtype: object)
(4684, Id                                4685
EmployeeName                BRIAN BOYD
JobTitle            POLICE OFFICER III
BasePay                      117303.49
OvertimePay                    2824.63
OtherPay                        6316.6
Benefits                           NaN
TotalPay                     126444.72
TotalPayBenefits             126444.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4684, dtype: object)
(4685, Id                              4686
EmployeeName          MARILYN VALIUS
JobTitle            REGISTERED NURSE
BasePay                     111802.7
OvertimePay                  7133.59
OtherPay                     7497.77
Benefits                         NaN
TotalPay                   126434.06
TotalPayBenefits           126434.06
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4685, dtype: object)
(4686, Id                               4687
EmployeeName             DARIUS JONES
JobTitle            POLICE OFFICER II
BasePay                     101359.26
OvertimePay                   9055.25
OtherPay                      16015.1
Benefits                          NaN
TotalPay                    126429.61
TotalPayBenefits            126429.61
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4686, dtype: object)
(4687, Id                               4688
EmployeeName           ARIANA DAGGETT
JobTitle            POLICE OFFICER II
BasePay                     103573.26
OvertimePay                  10541.39
OtherPay                     12299.13
Benefits                          NaN
TotalPay                    126413.78
TotalPayBenefits            126413.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4687, dtype: object)
(4688, Id                               4689
EmployeeName         TIMOTHY O'CONNOR
JobTitle            POLICE OFFICER II
BasePay                     110238.84
OvertimePay                   2187.12
OtherPay                     13977.56
Benefits                          NaN
TotalPay                    126403.52
TotalPayBenefits            126403.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4688, dtype: object)
(4689, Id                                                          4690
EmployeeName                                DAVID FRANCI HOPKINS
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                126403.44
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               126403.44
TotalPayBenefits                                       126403.44
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4689, dtype: object)
(4690, Id                           4691
EmployeeName             MIMI WOO
JobTitle              FIREFIGHTER
BasePay                 105934.77
OvertimePay               5796.13
OtherPay                 14669.69
Benefits                      NaN
TotalPay                126400.59
TotalPayBenefits        126400.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4690, dtype: object)
(4691, Id                                       4692
EmployeeName                      THOMAS LONG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              114401.7
OvertimePay                               0.0
OtherPay                             11976.82
Benefits                                  NaN
TotalPay                            126378.52
TotalPayBenefits                    126378.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4691, dtype: object)
(4692, Id                                    4693
EmployeeName                 APRIL BASSETT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106803.43
OvertimePay                        2410.36
OtherPay                           17164.3
Benefits                               NaN
TotalPay                         126378.09
TotalPayBenefits                 126378.09
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4692, dtype: object)
(4693, Id                              4694
EmployeeName          MARIO ENRIQUEZ
JobTitle            TRANSIT OPERATOR
BasePay                      68510.3
OvertimePay                 54673.77
OtherPay                      3171.0
Benefits                         NaN
TotalPay                   126355.07
TotalPayBenefits           126355.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4693, dtype: object)
(4694, Id                               4695
EmployeeName             TOBIUS MOORE
JobTitle            POLICE OFFICER II
BasePay                      103354.2
OvertimePay                   4442.27
OtherPay                     18555.95
Benefits                          NaN
TotalPay                    126352.42
TotalPayBenefits            126352.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4694, dtype: object)
(4695, Id                             4696
EmployeeName        FRANCISCO OCHOA
JobTitle                FIREFIGHTER
BasePay                   105934.63
OvertimePay                10212.69
OtherPay                   10196.97
Benefits                        NaN
TotalPay                  126344.29
TotalPayBenefits          126344.29
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4695, dtype: object)
(4696, Id                              4697
EmployeeName           MELISSA PITTS
JobTitle            REGISTERED NURSE
BasePay                    104059.84
OvertimePay                  6865.22
OtherPay                    15397.26
Benefits                         NaN
TotalPay                   126322.32
TotalPayBenefits           126322.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4696, dtype: object)
(4697, Id                           4698
EmployeeName           LAURA HUGE
JobTitle              MANAGER III
BasePay                 121316.35
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                      NaN
TotalPay                126316.35
TotalPayBenefits        126316.35
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4697, dtype: object)
(4698, Id                                         4699
EmployeeName                       JAYUM STARKS
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                126315.9
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               126315.9
TotalPayBenefits                       126315.9
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4698, dtype: object)
(4699, Id                              4700
EmployeeName             LESLIE JOSE
JobTitle            REGISTERED NURSE
BasePay                    119496.01
OvertimePay                  5256.68
OtherPay                     1559.86
Benefits                         NaN
TotalPay                   126312.55
TotalPayBenefits           126312.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4699, dtype: object)
(4700, Id                              4701
EmployeeName         JHOYET BAUTISTA
JobTitle            REGISTERED NURSE
BasePay                     99263.58
OvertimePay                 11360.46
OtherPay                    15674.03
Benefits                         NaN
TotalPay                   126298.07
TotalPayBenefits           126298.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4700, dtype: object)
(4701, Id                           4702
EmployeeName           ROGER FONG
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               4518.65
OtherPay                 15828.44
Benefits                      NaN
TotalPay                126281.78
TotalPayBenefits        126281.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4701, dtype: object)
(4702, Id                                4703
EmployeeName        STEPHANIE MCKNIGHT
JobTitle                   FIREFIGHTER
BasePay                      105934.65
OvertimePay                    5849.79
OtherPay                      14492.45
Benefits                           NaN
TotalPay                     126276.89
TotalPayBenefits             126276.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4702, dtype: object)
(4703, Id                                4704
EmployeeName         THOMAS ABRAHAMSEN
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    7555.93
OtherPay                        6335.9
Benefits                           NaN
TotalPay                     126272.53
TotalPayBenefits             126272.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4703, dtype: object)
(4704, Id                              4705
EmployeeName            LUZ MACASPAC
JobTitle            REGISTERED NURSE
BasePay                     107086.8
OvertimePay                  6135.67
OtherPay                    13040.69
Benefits                         NaN
TotalPay                   126263.16
TotalPayBenefits           126263.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4704, dtype: object)
(4705, Id                             4706
EmployeeName        WALTER MELVILLE
JobTitle                   ENGINEER
BasePay                   120937.07
OvertimePay                     0.0
OtherPay                     5321.3
Benefits                        NaN
TotalPay                  126258.37
TotalPayBenefits          126258.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4705, dtype: object)
(4706, Id                                    4707
EmployeeName                  PEDRO VIEIRA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.66
OvertimePay                       13766.42
OtherPay                            6031.0
Benefits                               NaN
TotalPay                         126239.08
TotalPayBenefits                 126239.08
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4706, dtype: object)
(4707, Id                              4708
EmployeeName         ESTHER GONZALEZ
JobTitle            POLICE OFFICER I
BasePay                     99982.33
OvertimePay                 18866.63
OtherPay                     7378.23
Benefits                         NaN
TotalPay                   126227.19
TotalPayBenefits           126227.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4707, dtype: object)
(4708, Id                              4709
EmployeeName            DAMIEN REYES
JobTitle            POLICE OFFICER I
BasePay                     96617.15
OvertimePay                  6068.71
OtherPay                    23540.88
Benefits                         NaN
TotalPay                   126226.74
TotalPayBenefits           126226.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4708, dtype: object)
(4709, Id                           4710
EmployeeName        GREGORY LOUIE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               2524.13
OtherPay                 17758.65
Benefits                      NaN
TotalPay                126217.45
TotalPayBenefits        126217.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4709, dtype: object)
(4710, Id                                4711
EmployeeName           FELIKS GASANYAN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    9842.24
OtherPay                       3945.78
Benefits                           NaN
TotalPay                     126209.47
TotalPayBenefits             126209.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4710, dtype: object)
(4711, Id                                  4712
EmployeeName        GREGORY STECHSCHULTE
JobTitle               POLICE OFFICER II
BasePay                          96651.5
OvertimePay                     16336.54
OtherPay                        13218.44
Benefits                             NaN
TotalPay                       126206.48
TotalPayBenefits               126206.48
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4711, dtype: object)
(4712, Id                               4713
EmployeeName        JENNIFER MARTINEZ
JobTitle                  FIREFIGHTER
BasePay                     105934.66
OvertimePay                   3000.41
OtherPay                     17270.63
Benefits                          NaN
TotalPay                     126205.7
TotalPayBenefits             126205.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4712, dtype: object)
(4713, Id                                4714
EmployeeName        ANGELITA FERNANDEZ
JobTitle              REGISTERED NURSE
BasePay                       114163.5
OvertimePay                    5678.87
OtherPay                       6345.21
Benefits                           NaN
TotalPay                     126187.58
TotalPayBenefits             126187.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4713, dtype: object)
(4714, Id                              4715
EmployeeName          ANTHONY RAVANO
JobTitle            POLICE OFFICER I
BasePay                    104956.85
OvertimePay                  8364.79
OtherPay                    12861.61
Benefits                         NaN
TotalPay                   126183.25
TotalPayBenefits           126183.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4714, dtype: object)
(4715, Id                                4716
EmployeeName                DEBRA KING
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    3988.35
OtherPay                       9781.06
Benefits                           NaN
TotalPay                     126170.47
TotalPayBenefits             126170.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4715, dtype: object)
(4716, Id                              4717
EmployeeName           SASHA CUTTLER
JobTitle            REGISTERED NURSE
BasePay                    125728.55
OvertimePay                      0.0
OtherPay                      436.65
Benefits                         NaN
TotalPay                    126165.2
TotalPayBenefits            126165.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4716, dtype: object)
(4717, Id                                    4718
EmployeeName                  JOSHUA SMITH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.65
OvertimePay                        1100.12
OtherPay                          18615.41
Benefits                               NaN
TotalPay                         126157.18
TotalPayBenefits                 126157.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4717, dtype: object)
(4718, Id                                4719
EmployeeName               JON ROCHLIN
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                   12167.76
OtherPay                       1555.22
Benefits                           NaN
TotalPay                     126144.42
TotalPayBenefits             126144.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4718, dtype: object)
(4719, Id                                   4720
EmployeeName                KENNETH YEUNG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.47
OvertimePay                      14755.73
OtherPay                         15125.42
Benefits                              NaN
TotalPay                        126135.62
TotalPayBenefits                126135.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4719, dtype: object)
(4720, Id                                           4721
EmployeeName                 MICHAEL WEISENBERGER
JobTitle            CHIEF WATER SERVICE INSPECTOR
BasePay                                 116790.96
OvertimePay                                 93.92
OtherPay                                  9245.09
Benefits                                      NaN
TotalPay                                126129.97
TotalPayBenefits                        126129.97
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 4720, dtype: object)
(4721, Id                                4722
EmployeeName                ROEL DILAG
JobTitle            POLICE OFFICER III
BasePay                      112421.48
OvertimePay                     4848.9
OtherPay                       8857.35
Benefits                           NaN
TotalPay                     126127.73
TotalPayBenefits             126127.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4721, dtype: object)
(4722, Id                                4723
EmployeeName             STEVEN FERRAZ
JobTitle            POLICE OFFICER III
BasePay                       112401.1
OvertimePay                    6493.23
OtherPay                       7229.24
Benefits                           NaN
TotalPay                     126123.57
TotalPayBenefits             126123.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4722, dtype: object)
(4723, Id                              4724
EmployeeName          JINKY DIOQUINO
JobTitle            REGISTERED NURSE
BasePay                     116785.5
OvertimePay                  6058.65
OtherPay                     3270.51
Benefits                         NaN
TotalPay                   126114.66
TotalPayBenefits           126114.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4723, dtype: object)
(4724, Id                           4725
EmployeeName               CHI YU
JobTitle                 ENGINEER
BasePay                 123126.27
OvertimePay                   0.0
OtherPay                  2983.24
Benefits                      NaN
TotalPay                126109.51
TotalPayBenefits        126109.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4724, dtype: object)
(4725, Id                               4726
EmployeeName                WILSON NG
JobTitle            POLICE OFFICER II
BasePay                      106385.7
OvertimePay                    7503.7
OtherPay                     12220.08
Benefits                          NaN
TotalPay                    126109.48
TotalPayBenefits            126109.48
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4725, dtype: object)
(4726, Id                                4727
EmployeeName          JOSEPH GONSALVES
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                    7785.86
OtherPay                       5892.46
Benefits                           NaN
TotalPay                     126099.72
TotalPayBenefits             126099.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4726, dtype: object)
(4727, Id                                              4728
EmployeeName                       FREDERICK ORANTES
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    104100.29
OvertimePay                                 14757.69
OtherPay                                     7231.22
Benefits                                         NaN
TotalPay                                    126089.2
TotalPayBenefits                            126089.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4727, dtype: object)
(4728, Id                               4729
EmployeeName        TONI CHARLESWORTH
JobTitle             REGISTERED NURSE
BasePay                      110750.1
OvertimePay                   1510.87
OtherPay                     13827.76
Benefits                          NaN
TotalPay                    126088.73
TotalPayBenefits            126088.73
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4728, dtype: object)
(4729, Id                                4730
EmployeeName              WILLION WONG
JobTitle            POLICE OFFICER III
BasePay                      112155.03
OvertimePay                    2975.63
OtherPay                      10942.93
Benefits                           NaN
TotalPay                     126073.59
TotalPayBenefits             126073.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4729, dtype: object)
(4730, Id                                             4731
EmployeeName                        RICHARD ROVETTI
JobTitle            PRINCIPAL REAL PROPERTY OFFICER
BasePay                                   126069.98
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  126069.98
TotalPayBenefits                          126069.98
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4730, dtype: object)
(4731, Id                           4732
EmployeeName        LORI MITCHELL
JobTitle              MANAGER III
BasePay                  116488.0
OvertimePay                   0.0
OtherPay                  9574.67
Benefits                      NaN
TotalPay                126062.67
TotalPayBenefits        126062.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4731, dtype: object)
(4732, Id                                    4733
EmployeeName               JAMES DE METRIS
JobTitle            MAINTENANCE CONTROLLER
BasePay                           87697.84
OvertimePay                       24351.31
OtherPay                          14001.86
Benefits                               NaN
TotalPay                         126051.01
TotalPayBenefits                 126051.01
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4732, dtype: object)
(4733, Id                           4734
EmployeeName         DANIEL KELLY
JobTitle              MANAGER III
BasePay                  126048.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 126048.0
TotalPayBenefits         126048.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4733, dtype: object)
(4734, Id                                4735
EmployeeName        MADELEINE LICAVOLI
JobTitle            DEPUTY DIRECTOR II
BasePay                       126048.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      126048.0
TotalPayBenefits              126048.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4734, dtype: object)
(4735, Id                              4736
EmployeeName        VITUS C.W. LEUNG
JobTitle                  MANAGER IV
BasePay                     124667.9
OvertimePay                      0.0
OtherPay                      1377.2
Benefits                         NaN
TotalPay                    126045.1
TotalPayBenefits            126045.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4735, dtype: object)
(4736, Id                                4737
EmployeeName             WILLIAM DERRO
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                     7203.3
OtherPay                       6388.86
Benefits                           NaN
TotalPay                     126033.98
TotalPayBenefits             126033.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4736, dtype: object)
(4737, Id                                             4738
EmployeeName                     JEFFREY HILDEBRANT
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    119127.2
OvertimePay                                  6307.2
OtherPay                                      592.8
Benefits                                        NaN
TotalPay                                   126027.2
TotalPayBenefits                           126027.2
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4737, dtype: object)
(4738, Id                              4739
EmployeeName          AURENE JOHNSON
JobTitle            REGISTERED NURSE
BasePay                     124910.4
OvertimePay                      0.0
OtherPay                      1101.1
Benefits                         NaN
TotalPay                    126011.5
TotalPayBenefits            126011.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4738, dtype: object)
(4739, Id                                 4740
EmployeeName               IVANIA QUANT
JobTitle            PUBLIC HEALTH NURSE
BasePay                       119827.28
OvertimePay                         0.0
OtherPay                        6178.06
Benefits                            NaN
TotalPay                      126005.34
TotalPayBenefits              126005.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4739, dtype: object)
(4740, Id                                4741
EmployeeName                 KAAN CHIN
JobTitle            POLICE OFFICER III
BasePay                      112360.34
OvertimePay                    4874.04
OtherPay                       8764.75
Benefits                           NaN
TotalPay                     125999.13
TotalPayBenefits             125999.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4740, dtype: object)
(4741, Id                                4742
EmployeeName             AARON FISCHER
JobTitle            POLICE OFFICER III
BasePay                       111601.4
OvertimePay                    8496.85
OtherPay                       5899.46
Benefits                           NaN
TotalPay                     125997.71
TotalPayBenefits             125997.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4741, dtype: object)
(4742, Id                               4743
EmployeeName        MILDRED BARQUILLA
JobTitle             REGISTERED NURSE
BasePay                     115882.01
OvertimePay                   2130.99
OtherPay                      7978.63
Benefits                          NaN
TotalPay                    125991.63
TotalPayBenefits            125991.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4742, dtype: object)
(4743, Id                               4744
EmployeeName            LEONARD CUEBA
JobTitle            POLICE OFFICER II
BasePay                     110138.59
OvertimePay                   4404.13
OtherPay                     11448.87
Benefits                          NaN
TotalPay                    125991.59
TotalPayBenefits            125991.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4743, dtype: object)
(4744, Id                               4745
EmployeeName        CHRISTOPHER OLSON
JobTitle             POLICE OFFICER I
BasePay                      101388.1
OvertimePay                  12276.15
OtherPay                      12319.3
Benefits                          NaN
TotalPay                    125983.55
TotalPayBenefits            125983.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4744, dtype: object)
(4745, Id                                   4746
EmployeeName                     JIN CHOI
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.92
OvertimePay                      23968.46
OtherPay                           6131.8
Benefits                              NaN
TotalPay                        125982.18
TotalPayBenefits                125982.18
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4745, dtype: object)
(4746, Id                           4747
EmployeeName          KEVIN KELLY
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               1121.28
OtherPay                 18911.35
Benefits                      NaN
TotalPay                125967.33
TotalPayBenefits        125967.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4746, dtype: object)
(4747, Id                              4748
EmployeeName              RUDY URIBE
JobTitle            TRANSIT OPERATOR
BasePay                      68533.3
OvertimePay                 50923.34
OtherPay                      6491.8
Benefits                         NaN
TotalPay                   125948.44
TotalPayBenefits           125948.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4747, dtype: object)
(4748, Id                                  4749
EmployeeName                  ALITA CUSI
JobTitle            IS ENGINEER - SENIOR
BasePay                        118369.05
OvertimePay                          0.0
OtherPay                          7578.7
Benefits                             NaN
TotalPay                       125947.75
TotalPayBenefits               125947.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4748, dtype: object)
(4749, Id                           4750
EmployeeName        THOMAS CONROW
JobTitle               MANAGER IV
BasePay                 125935.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                125935.65
TotalPayBenefits        125935.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4749, dtype: object)
(4750, Id                                                               4751
EmployeeName                                             DAVID HARBIN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107057.61
OvertimePay                                                  10096.79
OtherPay                                                      8778.69
Benefits                                                          NaN
TotalPay                                                    125933.09
TotalPayBenefits                                            125933.09
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 4750, dtype: object)
(4751, Id                              4752
EmployeeName          MICHAEL NGUYEN
JobTitle            POLICE OFFICER I
BasePay                    100908.81
OvertimePay                   5947.2
OtherPay                    19067.77
Benefits                         NaN
TotalPay                   125923.78
TotalPayBenefits           125923.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4751, dtype: object)
(4752, Id                              4753
EmployeeName             DUKE HORTON
JobTitle            TRANSIT OPERATOR
BasePay                     68366.84
OvertimePay                 54275.08
OtherPay                     3280.28
Benefits                         NaN
TotalPay                    125922.2
TotalPayBenefits            125922.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4752, dtype: object)
(4753, Id                              4754
EmployeeName        CYNTHIA MARSHALL
JobTitle            REGISTERED NURSE
BasePay                    119496.01
OvertimePay                      0.0
OtherPay                     6421.46
Benefits                         NaN
TotalPay                   125917.47
TotalPayBenefits           125917.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4753, dtype: object)
(4754, Id                           4755
EmployeeName             TONY LEW
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               5483.52
OtherPay                 14488.48
Benefits                      NaN
TotalPay                125906.68
TotalPayBenefits        125906.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4754, dtype: object)
(4755, Id                                          4756
EmployeeName                        GERALD LYONS
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 96594.44
OvertimePay                             23458.37
OtherPay                                 5852.71
Benefits                                     NaN
TotalPay                               125905.52
TotalPayBenefits                       125905.52
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4755, dtype: object)
(4756, Id                                    4757
EmployeeName                   JOSHUA HOYT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          103417.51
OvertimePay                        6383.11
OtherPay                           16096.1
Benefits                               NaN
TotalPay                         125896.72
TotalPayBenefits                 125896.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4756, dtype: object)
(4757, Id                                4758
EmployeeName                  YIN CHAN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                    34601.2
OtherPay                       2894.51
Benefits                           NaN
TotalPay                     125896.41
TotalPayBenefits             125896.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4757, dtype: object)
(4758, Id                                4759
EmployeeName        PETERKENT DE JESUS
JobTitle              POLICE OFFICER I
BasePay                       106065.2
OvertimePay                   11500.67
OtherPay                       8321.62
Benefits                           NaN
TotalPay                     125887.49
TotalPayBenefits             125887.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4758, dtype: object)
(4759, Id                           4760
EmployeeName          GORDON KING
JobTitle                 ENGINEER
BasePay                 120937.04
OvertimePay                   0.0
OtherPay                  4947.39
Benefits                      NaN
TotalPay                125884.43
TotalPayBenefits        125884.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4759, dtype: object)
(4760, Id                            4761
EmployeeName         KURT SANDBERG
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               28857.16
OtherPay                  10516.48
Benefits                       NaN
TotalPay                 125879.65
TotalPayBenefits         125879.65
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4760, dtype: object)
(4761, Id                                                4762
EmployeeName                            SANDRA GANSTER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                      118687.32
OvertimePay                                      19.86
OtherPay                                        7171.7
Benefits                                           NaN
TotalPay                                     125878.88
TotalPayBenefits                             125878.88
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4761, dtype: object)
(4762, Id                                4763
EmployeeName          MATTHEW FAMBRINI
JobTitle            POLICE OFFICER III
BasePay                      114080.83
OvertimePay                    9897.54
OtherPay                       1900.31
Benefits                           NaN
TotalPay                     125878.68
TotalPayBenefits             125878.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4762, dtype: object)
(4763, Id                               4764
EmployeeName        REBECCA AGUINALDO
JobTitle             REGISTERED NURSE
BasePay                     104266.01
OvertimePay                   6032.25
OtherPay                     15576.96
Benefits                          NaN
TotalPay                    125875.22
TotalPayBenefits            125875.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4763, dtype: object)
(4764, Id                           4765
EmployeeName             BILL LAU
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                  4935.47
Benefits                      NaN
TotalPay                125872.52
TotalPayBenefits        125872.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4764, dtype: object)
(4765, Id                                                4766
EmployeeName                                  AUNG WIN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   41026.77
OtherPay                                       7224.01
Benefits                                           NaN
TotalPay                                     125831.18
TotalPayBenefits                             125831.18
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4765, dtype: object)
(4766, Id                                4767
EmployeeName             ZOILA MAGUINA
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                    8477.06
OtherPay                       4930.37
Benefits                           NaN
TotalPay                     125828.84
TotalPayBenefits             125828.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4766, dtype: object)
(4767, Id                                4768
EmployeeName            MARTIN SCANLAN
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    7424.42
OtherPay                       5981.85
Benefits                           NaN
TotalPay                      125827.7
TotalPayBenefits              125827.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4767, dtype: object)
(4768, Id                                4769
EmployeeName        ANTONIO LUIS ROCHA
JobTitle                   FIREFIGHTER
BasePay                      105934.69
OvertimePay                    1701.79
OtherPay                      18178.74
Benefits                           NaN
TotalPay                     125815.22
TotalPayBenefits             125815.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4768, dtype: object)
(4769, Id                                    4770
EmployeeName             RICHARD ARCHIBALD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.63
OvertimePay                        7554.17
OtherPay                           11801.3
Benefits                               NaN
TotalPay                          125797.1
TotalPayBenefits                  125797.1
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4769, dtype: object)
(4770, Id                              4771
EmployeeName        CHARLES CASTILLO
JobTitle                 MANAGER III
BasePay                     123290.7
OvertimePay                      0.0
OtherPay                      2500.0
Benefits                         NaN
TotalPay                    125790.7
TotalPayBenefits            125790.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4770, dtype: object)
(4771, Id                           4772
EmployeeName        GREGORY SAVIN
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               2754.62
OtherPay                 17077.82
Benefits                      NaN
TotalPay                125767.13
TotalPayBenefits        125767.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4771, dtype: object)
(4772, Id                              4773
EmployeeName             LINDA HOFER
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                   4825.8
OtherPay                     1444.96
Benefits                         NaN
TotalPay                   125766.76
TotalPayBenefits           125766.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4772, dtype: object)
(4773, Id                           4774
EmployeeName           TEDMAN LEE
JobTitle                 ENGINEER
BasePay                  120937.0
OvertimePay                   0.0
OtherPay                  4816.81
Benefits                      NaN
TotalPay                125753.81
TotalPayBenefits        125753.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4773, dtype: object)
(4774, Id                                4775
EmployeeName           MARC RICHARDSON
JobTitle            POLICE OFFICER III
BasePay                       111063.2
OvertimePay                    5877.85
OtherPay                       8795.14
Benefits                           NaN
TotalPay                     125736.19
TotalPayBenefits             125736.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4774, dtype: object)
(4775, Id                                4776
EmployeeName           RICHARD SEIDELL
JobTitle            POLICE OFFICER III
BasePay                      115423.68
OvertimePay                    6243.25
OtherPay                       4053.45
Benefits                           NaN
TotalPay                     125720.38
TotalPayBenefits             125720.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4775, dtype: object)
(4776, Id                              4777
EmployeeName             IGOR BERMAN
JobTitle            REGISTERED NURSE
BasePay                    119496.07
OvertimePay                      0.0
OtherPay                     6205.45
Benefits                         NaN
TotalPay                   125701.52
TotalPayBenefits           125701.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4776, dtype: object)
(4777, Id                           4778
EmployeeName           PAUL BARRY
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               4169.97
OtherPay                  15596.5
Benefits                      NaN
TotalPay                125701.15
TotalPayBenefits        125701.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4777, dtype: object)
(4778, Id                             4779
EmployeeName        LAWRENCE RUSTIA
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 1652.15
OtherPay                   18110.08
Benefits                        NaN
TotalPay                   125696.9
TotalPayBenefits           125696.9
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4778, dtype: object)
(4779, Id                               4780
EmployeeName         ROMMEL BALDOVINO
JobTitle            POLICE OFFICER II
BasePay                     110242.89
OvertimePay                   7796.77
OtherPay                       7647.1
Benefits                          NaN
TotalPay                    125686.76
TotalPayBenefits            125686.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4779, dtype: object)
(4780, Id                           4781
EmployeeName             ERIC GEE
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                  4737.79
Benefits                      NaN
TotalPay                125674.81
TotalPayBenefits        125674.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4780, dtype: object)
(4781, Id                           4782
EmployeeName          KENNETH CHU
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                  4729.02
Benefits                      NaN
TotalPay                125666.04
TotalPayBenefits        125666.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4781, dtype: object)
(4782, Id                            4783
EmployeeName        WILLIE RAMIREZ
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                   2374.57
Benefits                       NaN
TotalPay                 125665.27
TotalPayBenefits         125665.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4782, dtype: object)
(4783, Id                                4784
EmployeeName         MAURICIO MONTALVO
JobTitle            UTILITY SPECIALIST
BasePay                      113213.66
OvertimePay                        0.0
OtherPay                       12447.2
Benefits                           NaN
TotalPay                     125660.86
TotalPayBenefits             125660.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4783, dtype: object)
(4784, Id                                  4785
EmployeeName                 SUMMCO CHOI
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                         6966.85
Benefits                             NaN
TotalPay                       125658.88
TotalPayBenefits               125658.88
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4784, dtype: object)
(4785, Id                              4786
EmployeeName        GUSTAVO GONZALEZ
JobTitle              DEPUTY SHERIFF
BasePay                      81528.3
OvertimePay                 42759.72
OtherPay                     1369.74
Benefits                         NaN
TotalPay                   125657.76
TotalPayBenefits           125657.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4785, dtype: object)
(4786, Id                             4787
EmployeeName        THEODORA REILLY
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                 2557.21
OtherPay                   17154.91
Benefits                        NaN
TotalPay                   125646.8
TotalPayBenefits           125646.8
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4786, dtype: object)
(4787, Id                                4788
EmployeeName             WILLIAM LEWIS
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    8908.63
OtherPay                       4323.92
Benefits                           NaN
TotalPay                     125633.63
TotalPayBenefits             125633.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4787, dtype: object)
(4788, Id                                               4789
EmployeeName                         DANILO SEBASTIAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  16319.41
OtherPay                                     10291.44
Benefits                                          NaN
TotalPay                                    125625.25
TotalPayBenefits                            125625.25
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4788, dtype: object)
(4789, Id                               4790
EmployeeName          PHILLIP FRENKEL
JobTitle            POLICE OFFICER II
BasePay                      110242.9
OvertimePay                   7576.46
OtherPay                      7805.88
Benefits                          NaN
TotalPay                    125625.24
TotalPayBenefits            125625.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4789, dtype: object)
(4790, Id                                       4791
EmployeeName                   KIMBERLY BLISS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             125611.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            125611.65
TotalPayBenefits                    125611.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4790, dtype: object)
(4791, Id                                       4792
EmployeeName                   CARMEN AGUIRRE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             125605.83
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            125605.83
TotalPayBenefits                    125605.83
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4791, dtype: object)
(4792, Id                           4793
EmployeeName        MASOUD VAFAEI
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                  4660.56
Benefits                      NaN
TotalPay                125597.61
TotalPayBenefits        125597.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4792, dtype: object)
(4793, Id                                4794
EmployeeName               BRIAN BARBA
JobTitle            POLICE OFFICER III
BasePay                      117283.29
OvertimePay                    5447.56
OtherPay                       2866.74
Benefits                           NaN
TotalPay                     125597.59
TotalPayBenefits             125597.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4793, dtype: object)
(4794, Id                             4795
EmployeeName        COLIN MACKENZIE
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                 2548.85
OtherPay                   17110.97
Benefits                        NaN
TotalPay                   125594.5
TotalPayBenefits           125594.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4794, dtype: object)
(4795, Id                           4796
EmployeeName         DENNIS KELLY
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               5984.07
OtherPay                 13662.84
Benefits                      NaN
TotalPay                125581.59
TotalPayBenefits        125581.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4795, dtype: object)
(4796, Id                              4797
EmployeeName         VINCENT PEDRINI
JobTitle            POLICE OFFICER I
BasePay                    106015.31
OvertimePay                 10184.51
OtherPay                     9373.66
Benefits                         NaN
TotalPay                   125573.48
TotalPayBenefits           125573.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4796, dtype: object)
(4797, Id                              4798
EmployeeName          JOSEPH EMANUEL
JobTitle            POLICE OFFICER I
BasePay                     103799.2
OvertimePay                 15929.46
OtherPay                     5839.78
Benefits                         NaN
TotalPay                   125568.44
TotalPayBenefits           125568.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4797, dtype: object)
(4798, Id                                                4799
EmployeeName                           DANILO GERONIMO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   47416.24
OtherPay                                         565.0
Benefits                                           NaN
TotalPay                                     125561.64
TotalPayBenefits                             125561.64
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4798, dtype: object)
(4799, Id                           4800
EmployeeName           EUGENE SHU
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                  4571.12
Benefits                      NaN
TotalPay                125508.14
TotalPayBenefits        125508.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4799, dtype: object)
(4800, Id                              4801
EmployeeName           IRINA GRUZMAN
JobTitle            REGISTERED NURSE
BasePay                    119477.07
OvertimePay                   3447.0
OtherPay                     2567.89
Benefits                         NaN
TotalPay                   125491.96
TotalPayBenefits           125491.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4800, dtype: object)
(4801, Id                                    4802
EmployeeName               ROBERT RECENDEZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105623.47
OvertimePay                       14726.56
OtherPay                           5139.88
Benefits                               NaN
TotalPay                         125489.91
TotalPayBenefits                 125489.91
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4801, dtype: object)
(4802, Id                             4803
EmployeeName            ROSANNA TSE
JobTitle            SENIOR ENGINEER
BasePay                   120792.22
OvertimePay                     0.0
OtherPay                    4687.97
Benefits                        NaN
TotalPay                  125480.19
TotalPayBenefits          125480.19
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4802, dtype: object)
(4803, Id                                4804
EmployeeName            RICHARD ACERET
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1679.18
OtherPay                      11395.99
Benefits                           NaN
TotalPay                     125476.25
TotalPayBenefits             125476.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4803, dtype: object)
(4804, Id                              4805
EmployeeName           SHANE HERBERT
JobTitle            POLICE OFFICER I
BasePay                     98580.58
OvertimePay                 12933.58
OtherPay                    13956.99
Benefits                         NaN
TotalPay                   125471.15
TotalPayBenefits           125471.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4804, dtype: object)
(4805, Id                                               4806
EmployeeName                              MILTON KHUU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   25612.2
OtherPay                                        840.0
Benefits                                          NaN
TotalPay                                     125466.6
TotalPayBenefits                             125466.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4805, dtype: object)
(4806, Id                                  4807
EmployeeName                   YIHUI XIE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.07
OvertimePay                          0.0
OtherPay                         6765.55
Benefits                             NaN
TotalPay                       125457.62
TotalPayBenefits               125457.62
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4806, dtype: object)
(4807, Id                               4808
EmployeeName        MAUREEN SINGLETON
JobTitle                  MANAGER III
BasePay                     125449.61
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    125449.61
TotalPayBenefits            125449.61
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4807, dtype: object)
(4808, Id                                                          4809
EmployeeName                                       SCOTT DELAPPE
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                  90090.0
OvertimePay                                              4450.41
OtherPay                                                30905.42
Benefits                                                     NaN
TotalPay                                               125445.83
TotalPayBenefits                                       125445.83
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4808, dtype: object)
(4809, Id                                   4810
EmployeeName                PATRICK LAVAL
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.82
OvertimePay                      21576.49
OtherPay                          7983.21
Benefits                              NaN
TotalPay                        125441.52
TotalPayBenefits                125441.52
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4809, dtype: object)
(4810, Id                                                          4811
EmployeeName                                         EDMUND WONG
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                124352.71
OvertimePay                                                  0.0
OtherPay                                                  1085.4
Benefits                                                     NaN
TotalPay                                               125438.11
TotalPayBenefits                                       125438.11
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4810, dtype: object)
(4811, Id                                 4812
EmployeeName                  ALEX WONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73075.0
OvertimePay                    29307.75
OtherPay                       23037.43
Benefits                            NaN
TotalPay                      125420.18
TotalPayBenefits              125420.18
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4811, dtype: object)
(4812, Id                                4813
EmployeeName          PATRICIA PURCELL
JobTitle            NURSE PRACTITIONER
BasePay                      125158.41
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     125408.41
TotalPayBenefits             125408.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4812, dtype: object)
(4813, Id                                       4814
EmployeeName                   STEVEN O'BOYLE
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92875.2
OvertimePay                          25769.44
OtherPay                              6758.72
Benefits                                  NaN
TotalPay                            125403.36
TotalPayBenefits                    125403.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4813, dtype: object)
(4814, Id                                4815
EmployeeName            MARTHA FABIANI
JobTitle            POLICE OFFICER III
BasePay                      112564.81
OvertimePay                    7610.03
OtherPay                       5225.71
Benefits                           NaN
TotalPay                     125400.55
TotalPayBenefits             125400.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4814, dtype: object)
(4815, Id                               4816
EmployeeName                YOUNG CHI
JobTitle            POLICE OFFICER II
BasePay                     110262.78
OvertimePay                   7222.29
OtherPay                      7911.03
Benefits                          NaN
TotalPay                     125396.1
TotalPayBenefits             125396.1
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4815, dtype: object)
(4816, Id                           4817
EmployeeName          JOHN CHEUNG
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               1652.15
OtherPay                 17795.24
Benefits                      NaN
TotalPay                125382.08
TotalPayBenefits        125382.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4816, dtype: object)
(4817, Id                           4818
EmployeeName          DEAN LUNDIE
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay               3303.48
OtherPay                 16143.26
Benefits                      NaN
TotalPay                125381.37
TotalPayBenefits        125381.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4817, dtype: object)
(4818, Id                                4819
EmployeeName           OMOZELE BIGGINS
JobTitle            TRANSIT SUPERVISOR
BasePay                       88114.79
OvertimePay                   31754.24
OtherPay                       5512.07
Benefits                           NaN
TotalPay                      125381.1
TotalPayBenefits              125381.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4818, dtype: object)
(4819, Id                           4820
EmployeeName        GREGORY LYMAN
JobTitle                 ENGINEER
BasePay                 120937.06
OvertimePay                   0.0
OtherPay                  4436.64
Benefits                      NaN
TotalPay                 125373.7
TotalPayBenefits         125373.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4819, dtype: object)
(4820, Id                                4821
EmployeeName                STEVEN LEE
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    6371.41
OtherPay                       6597.73
Benefits                           NaN
TotalPay                     125370.19
TotalPayBenefits             125370.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4820, dtype: object)
(4821, Id                                  4822
EmployeeName        CHRISTOPHER ANDERSON
JobTitle              POLICE OFFICER III
BasePay                        112441.78
OvertimePay                      7224.09
OtherPay                         5703.71
Benefits                             NaN
TotalPay                       125369.58
TotalPayBenefits               125369.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4821, dtype: object)
(4822, Id                           4823
EmployeeName           KAISER LAM
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay               1741.66
OtherPay                 17682.24
Benefits                      NaN
TotalPay                125358.55
TotalPayBenefits        125358.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4822, dtype: object)
(4823, Id                                    4824
EmployeeName              LAWANDA ANDERSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105548.25
OvertimePay                        8268.33
OtherPay                          11538.82
Benefits                               NaN
TotalPay                          125355.4
TotalPayBenefits                  125355.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4823, dtype: object)
(4824, Id                            4825
EmployeeName        PATRICK MURPHY
JobTitle               FIREFIGHTER
BasePay                  105934.69
OvertimePay                    0.0
OtherPay                  19414.99
Benefits                       NaN
TotalPay                 125349.68
TotalPayBenefits         125349.68
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4824, dtype: object)
(4825, Id                            4826
EmployeeName        LEROY GULLETTE
JobTitle                  ENGINEER
BasePay                  120937.16
OvertimePay                    0.0
OtherPay                   4393.22
Benefits                       NaN
TotalPay                 125330.38
TotalPayBenefits         125330.38
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4825, dtype: object)
(4826, Id                           4827
EmployeeName              DEE LAU
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               1701.79
OtherPay                 17683.04
Benefits                      NaN
TotalPay                 125319.5
TotalPayBenefits         125319.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4826, dtype: object)
(4827, Id                                  4828
EmployeeName                   ALMEN HON
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         6618.74
Benefits                             NaN
TotalPay                       125310.74
TotalPayBenefits               125310.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4827, dtype: object)
(4828, Id                           4829
EmployeeName             DAVID YI
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               1701.79
OtherPay                 17671.98
Benefits                      NaN
TotalPay                125308.44
TotalPayBenefits        125308.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4828, dtype: object)
(4829, Id                                4830
EmployeeName               DUANE ELZEY
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4560.96
OtherPay                       8342.58
Benefits                           NaN
TotalPay                     125304.61
TotalPayBenefits             125304.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4829, dtype: object)
(4830, Id                               4831
EmployeeName        MICHAEL MIKOLASEK
JobTitle             REGISTERED NURSE
BasePay                     119496.12
OvertimePay                       0.0
OtherPay                       5796.8
Benefits                          NaN
TotalPay                    125292.92
TotalPayBenefits            125292.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4830, dtype: object)
(4831, Id                                4832
EmployeeName           KEVIN STANCOMBE
JobTitle            POLICE OFFICER III
BasePay                      117283.28
OvertimePay                    5716.54
OtherPay                       2291.89
Benefits                           NaN
TotalPay                     125291.71
TotalPayBenefits             125291.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4831, dtype: object)
(4832, Id                                                               4833
EmployeeName                                          CURTIS CALDWELL
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107023.21
OvertimePay                                                   6912.43
OtherPay                                                     11351.93
Benefits                                                          NaN
TotalPay                                                    125287.57
TotalPayBenefits                                            125287.57
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 4832, dtype: object)
(4833, Id                                 4834
EmployeeName                TARA LAMONT
JobTitle            PROJECT MANAGER III
BasePay                       124364.05
OvertimePay                         0.0
OtherPay                          914.2
Benefits                            NaN
TotalPay                      125278.25
TotalPayBenefits              125278.25
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4833, dtype: object)
(4834, Id                              4835
EmployeeName        CAROLINE MATTHEW
JobTitle            REGISTERED NURSE
BasePay                    123240.01
OvertimePay                   1777.5
OtherPay                       250.0
Benefits                         NaN
TotalPay                   125267.51
TotalPayBenefits           125267.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4834, dtype: object)
(4835, Id                              4836
EmployeeName         ARMANDO SUANGCO
JobTitle            REGISTERED NURSE
BasePay                     100058.7
OvertimePay                  6223.03
OtherPay                    18983.88
Benefits                         NaN
TotalPay                   125265.61
TotalPayBenefits           125265.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4835, dtype: object)
(4836, Id                                  4837
EmployeeName                KYLE DEWOLFE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                         6572.83
Benefits                             NaN
TotalPay                       125264.85
TotalPayBenefits               125264.85
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4836, dtype: object)
(4837, Id                                       4838
EmployeeName                      TAL KLEMENT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             125263.11
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            125263.11
TotalPayBenefits                    125263.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4837, dtype: object)
(4838, Id                              4839
EmployeeName             ELVINA KUNG
JobTitle            REGISTERED NURSE
BasePay                     96703.15
OvertimePay                 12188.76
OtherPay                    16348.32
Benefits                         NaN
TotalPay                   125240.23
TotalPayBenefits           125240.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4838, dtype: object)
(4839, Id                           4840
EmployeeName         PETER WALKER
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               1732.45
OtherPay                 17556.04
Benefits                      NaN
TotalPay                125223.17
TotalPayBenefits        125223.17
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4839, dtype: object)
(4840, Id                                  4841
EmployeeName                   CARL SIAN
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                         6527.83
Benefits                             NaN
TotalPay                       125219.83
TotalPayBenefits               125219.83
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4840, dtype: object)
(4841, Id                                4842
EmployeeName                BRIAN KROL
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.91
OvertimePay                    2806.69
OtherPay                      16715.18
Benefits                           NaN
TotalPay                     125219.78
TotalPayBenefits             125219.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4841, dtype: object)
(4842, Id                               4843
EmployeeName            MARILU REBOLI
JobTitle            POLICE OFFICER II
BasePay                     110223.08
OvertimePay                   7313.91
OtherPay                       7670.8
Benefits                          NaN
TotalPay                    125207.79
TotalPayBenefits            125207.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4842, dtype: object)
(4843, Id                              4844
EmployeeName            CYNTHIA MOTT
JobTitle            REGISTERED NURSE
BasePay                    102379.57
OvertimePay                  6933.26
OtherPay                    15893.22
Benefits                         NaN
TotalPay                   125206.05
TotalPayBenefits           125206.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4843, dtype: object)
(4844, Id                               4845
EmployeeName         MICHAEL MITCHELL
JobTitle            POLICE OFFICER II
BasePay                     109610.92
OvertimePay                  11174.58
OtherPay                      4419.47
Benefits                          NaN
TotalPay                    125204.97
TotalPayBenefits            125204.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4844, dtype: object)
(4845, Id                           4846
EmployeeName           MORGAN LEE
JobTitle              FIREFIGHTER
BasePay                 105705.59
OvertimePay               1625.13
OtherPay                 17871.36
Benefits                      NaN
TotalPay                125202.08
TotalPayBenefits        125202.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4845, dtype: object)
(4846, Id                             4847
EmployeeName        DEWAYNE ECKERDT
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 8694.91
OtherPay                   10552.69
Benefits                        NaN
TotalPay                  125182.27
TotalPayBenefits          125182.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4846, dtype: object)
(4847, Id                               4848
EmployeeName         WESLEY VILLARUEL
JobTitle            POLICE OFFICER II
BasePay                      115105.3
OvertimePay                   7049.94
OtherPay                      3021.79
Benefits                          NaN
TotalPay                    125177.03
TotalPayBenefits            125177.03
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4847, dtype: object)
(4848, Id                                4849
EmployeeName              NELSON REYES
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    3416.48
OtherPay                       9354.91
Benefits                           NaN
TotalPay                     125172.47
TotalPayBenefits             125172.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4848, dtype: object)
(4849, Id                           4850
EmployeeName          PETER CHENG
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                  4227.36
Benefits                      NaN
TotalPay                125164.46
TotalPayBenefits        125164.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4849, dtype: object)
(4850, Id                              4851
EmployeeName            DAVID HERSEY
JobTitle            REGISTERED NURSE
BasePay                    105096.07
OvertimePay                  2339.94
OtherPay                     17723.6
Benefits                         NaN
TotalPay                   125159.61
TotalPayBenefits           125159.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4850, dtype: object)
(4851, Id                           4852
EmployeeName          NORMAN KWAN
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               1625.13
OtherPay                 17591.65
Benefits                      NaN
TotalPay                125151.45
TotalPayBenefits        125151.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4851, dtype: object)
(4852, Id                              4853
EmployeeName              NORMAN LEE
JobTitle            POLICE OFFICER I
BasePay                    106084.32
OvertimePay                  7595.17
OtherPay                    11468.87
Benefits                         NaN
TotalPay                   125148.36
TotalPayBenefits           125148.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4852, dtype: object)
(4853, Id                                   4854
EmployeeName             DEBORAH SHERWOOD
JobTitle            RESEARCH PSYCHOLOGIST
BasePay                         125138.98
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        125138.98
TotalPayBenefits                125138.98
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4853, dtype: object)
(4854, Id                               4855
EmployeeName             EDWIN GAFFUD
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                   5539.19
OtherPay                      9365.39
Benefits                          NaN
TotalPay                     125127.6
TotalPayBenefits             125127.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4854, dtype: object)
(4855, Id                               4856
EmployeeName        IRENE EYDELSHTEYN
JobTitle             REGISTERED NURSE
BasePay                      122448.0
OvertimePay                       0.0
OtherPay                       2654.8
Benefits                          NaN
TotalPay                     125102.8
TotalPayBenefits             125102.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4855, dtype: object)
(4856, Id                              4857
EmployeeName        FRANCINE BRISTOW
JobTitle                 FIREFIGHTER
BasePay                     105934.7
OvertimePay                  7062.82
OtherPay                    12100.63
Benefits                         NaN
TotalPay                   125098.15
TotalPayBenefits           125098.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4856, dtype: object)
(4857, Id                            4858
EmployeeName        MARIO GONZALES
JobTitle            DEPUTY SHERIFF
BasePay                   79409.97
OvertimePay               38256.18
OtherPay                    7404.9
Benefits                       NaN
TotalPay                 125071.05
TotalPayBenefits         125071.05
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4857, dtype: object)
(4858, Id                                               4859
EmployeeName                              VICTOR CHAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   25495.2
OtherPay                                        550.0
Benefits                                          NaN
TotalPay                                     125059.6
TotalPayBenefits                             125059.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4858, dtype: object)
(4859, Id                               4860
EmployeeName        GWENDOLYN PROCTOR
JobTitle                    ARCHITECT
BasePay                     120937.07
OvertimePay                       0.0
OtherPay                      4116.23
Benefits                          NaN
TotalPay                     125053.3
TotalPayBenefits             125053.3
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4859, dtype: object)
(4860, Id                               4861
EmployeeName          ROBERT TRUJILLO
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                   7953.39
OtherPay                      6852.31
Benefits                          NaN
TotalPay                    125048.63
TotalPayBenefits            125048.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4860, dtype: object)
(4861, Id                               4862
EmployeeName          TIGRAN ANTONIAN
JobTitle            POLICE OFFICER II
BasePay                     101592.19
OvertimePay                   8776.47
OtherPay                      14671.9
Benefits                          NaN
TotalPay                    125040.56
TotalPayBenefits            125040.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4861, dtype: object)
(4862, Id                                4863
EmployeeName              JAMES DRILON
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8114.39
OtherPay                       4502.12
Benefits                           NaN
TotalPay                     125037.96
TotalPayBenefits             125037.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4862, dtype: object)
(4863, Id                           4864
EmployeeName            ADAM WOOD
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               1638.92
OtherPay                 17452.18
Benefits                      NaN
TotalPay                125025.76
TotalPayBenefits        125025.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4863, dtype: object)
(4864, Id                              4865
EmployeeName             STANLEY PON
JobTitle            REGISTERED NURSE
BasePay                     96021.63
OvertimePay                 11512.48
OtherPay                    17487.22
Benefits                         NaN
TotalPay                   125021.33
TotalPayBenefits           125021.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4864, dtype: object)
(4865, Id                            4866
EmployeeName        MARISSA ORBINO
JobTitle             SPECIAL NURSE
BasePay                   107160.3
OvertimePay                    0.0
OtherPay                  17860.05
Benefits                       NaN
TotalPay                 125020.35
TotalPayBenefits         125020.35
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4865, dtype: object)
(4866, Id                                 4867
EmployeeName                 SIMON CHEN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73367.32
OvertimePay                    40874.73
OtherPay                       10773.33
Benefits                            NaN
TotalPay                      125015.38
TotalPayBenefits              125015.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4866, dtype: object)
(4867, Id                            4868
EmployeeName        KEVIN BARTEAUX
JobTitle                  ENGINEER
BasePay                  120937.01
OvertimePay                    0.0
OtherPay                   4073.81
Benefits                       NaN
TotalPay                 125010.82
TotalPayBenefits         125010.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4867, dtype: object)
(4868, Id                                4869
EmployeeName           STEPHEN COLLINS
JobTitle            POLICE OFFICER III
BasePay                      112380.66
OvertimePay                    3427.59
OtherPay                       9199.72
Benefits                           NaN
TotalPay                     125007.97
TotalPayBenefits             125007.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4868, dtype: object)
(4869, Id                            4870
EmployeeName        WILLIAM VAUGHN
JobTitle                MANAGER II
BasePay                   97925.56
OvertimePay                    0.0
OtherPay                  27079.46
Benefits                       NaN
TotalPay                 125005.02
TotalPayBenefits         125005.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4869, dtype: object)
(4870, Id                                    4871
EmployeeName              ARMANDO QUINTANA
JobTitle            LOCKSMITH SUPERVISOR I
BasePay                           95504.84
OvertimePay                       29387.77
OtherPay                            111.75
Benefits                               NaN
TotalPay                         125004.36
TotalPayBenefits                 125004.36
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4870, dtype: object)
(4871, Id                                4872
EmployeeName         PHILIP BUSALACCHI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    7525.87
OtherPay                       5045.53
Benefits                           NaN
TotalPay                     124992.85
TotalPayBenefits             124992.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4871, dtype: object)
(4872, Id                              4873
EmployeeName           MARIZZA CATLE
JobTitle            REGISTERED NURSE
BasePay                    100338.42
OvertimePay                  7945.35
OtherPay                    16686.52
Benefits                         NaN
TotalPay                   124970.29
TotalPayBenefits           124970.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4872, dtype: object)
(4873, Id                              4874
EmployeeName            RORY PRESTON
JobTitle            POLICE OFFICER I
BasePay                    106065.16
OvertimePay                 11592.03
OtherPay                     7312.58
Benefits                         NaN
TotalPay                   124969.77
TotalPayBenefits           124969.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4873, dtype: object)
(4874, Id                                   4875
EmployeeName              LEONARD MALONEY
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                      22462.71
OtherPay                          6610.79
Benefits                              NaN
TotalPay                         124955.3
TotalPayBenefits                 124955.3
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4874, dtype: object)
(4875, Id                            4876
EmployeeName        MARILYN CHAVEZ
JobTitle               FIREFIGHTER
BasePay                  105934.68
OvertimePay                5181.51
OtherPay                  13837.83
Benefits                       NaN
TotalPay                 124954.02
TotalPayBenefits         124954.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4875, dtype: object)
(4876, Id                              4877
EmployeeName         RICHARD CIBOTTI
JobTitle            POLICE OFFICER I
BasePay                     94535.73
OvertimePay                  7067.74
OtherPay                    23347.89
Benefits                         NaN
TotalPay                   124951.36
TotalPayBenefits           124951.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4876, dtype: object)
(4877, Id                                4878
EmployeeName         MICHAEL FERNANDEZ
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    5718.92
OtherPay                       6802.76
Benefits                           NaN
TotalPay                     124943.13
TotalPayBenefits             124943.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4877, dtype: object)
(4878, Id                              4879
EmployeeName             CYNTHIA LEE
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                     5443.48
Benefits                         NaN
TotalPay                   124939.48
TotalPayBenefits           124939.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4878, dtype: object)
(4879, Id                                 4880
EmployeeName            GYANANDRA KUMAR
JobTitle            SUPERVISING CHEMIST
BasePay                       106492.05
OvertimePay                         0.0
OtherPay                       18441.17
Benefits                            NaN
TotalPay                      124933.22
TotalPayBenefits              124933.22
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4879, dtype: object)
(4880, Id                           4881
EmployeeName         STEVEN SELCK
JobTitle              FIREFIGHTER
BasePay                 110638.65
OvertimePay                 99.54
OtherPay                 14189.94
Benefits                      NaN
TotalPay                124928.13
TotalPayBenefits        124928.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4880, dtype: object)
(4881, Id                                                              4882
EmployeeName                                           BRAHMAN CONCI
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                    105404.04
OvertimePay                                                   817.11
OtherPay                                                    18703.62
Benefits                                                         NaN
TotalPay                                                   124924.77
TotalPayBenefits                                           124924.77
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 4881, dtype: object)
(4882, Id                                        4883
EmployeeName                       JAMES GUMBA
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               79799.88
OvertimePay                           38958.26
OtherPay                               6164.99
Benefits                                   NaN
TotalPay                             124923.13
TotalPayBenefits                     124923.13
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 4882, dtype: object)
(4883, Id                               4884
EmployeeName        MICHELLE ALLERSMA
JobTitle                  MANAGER III
BasePay                     124921.04
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    124921.04
TotalPayBenefits            124921.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4883, dtype: object)
(4884, Id                            4885
EmployeeName          IVAN CORDOBA
JobTitle            DEPUTY SHERIFF
BasePay                   86065.55
OvertimePay               26810.03
OtherPay                  12043.42
Benefits                       NaN
TotalPay                  124919.0
TotalPayBenefits          124919.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4884, dtype: object)
(4885, Id                                4886
EmployeeName          CANDICE WILLIAMS
JobTitle            POLICE OFFICER III
BasePay                      112084.38
OvertimePay                    7081.81
OtherPay                       5751.87
Benefits                           NaN
TotalPay                     124918.06
TotalPayBenefits             124918.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4885, dtype: object)
(4886, Id                                      4887
EmployeeName                FREDERICK STUMPP
JobTitle            FIRE PROTECTION ENGINEER
BasePay                            124554.02
OvertimePay                              0.0
OtherPay                              359.92
Benefits                                 NaN
TotalPay                           124913.94
TotalPayBenefits                   124913.94
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 4886, dtype: object)
(4887, Id                                4888
EmployeeName             JEFFREY CHANG
JobTitle            POLICE OFFICER III
BasePay                      112380.69
OvertimePay                    6280.81
OtherPay                        6249.1
Benefits                           NaN
TotalPay                      124910.6
TotalPayBenefits              124910.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4887, dtype: object)
(4888, Id                           4889
EmployeeName         ALICE SCHWAB
JobTitle            SPECIAL NURSE
BasePay                 116783.33
OvertimePay               2564.15
OtherPay                  5552.07
Benefits                      NaN
TotalPay                124899.55
TotalPayBenefits        124899.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4888, dtype: object)
(4889, Id                                4890
EmployeeName              LESLIE SMITH
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                   10626.88
OtherPay                       1848.13
Benefits                           NaN
TotalPay                     124896.43
TotalPayBenefits             124896.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4889, dtype: object)
(4890, Id                              4891
EmployeeName           ELENITA CUYNO
JobTitle            REGISTERED NURSE
BasePay                     99808.73
OvertimePay                  8820.96
OtherPay                    16254.06
Benefits                         NaN
TotalPay                   124883.75
TotalPayBenefits           124883.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4890, dtype: object)
(4891, Id                              4892
EmployeeName        IMELDA DE CASTRO
JobTitle            REGISTERED NURSE
BasePay                    105860.35
OvertimePay                  3619.35
OtherPay                    15397.37
Benefits                         NaN
TotalPay                   124877.07
TotalPayBenefits           124877.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4891, dtype: object)
(4892, Id                                4893
EmployeeName            CAROLYN GASSEN
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    2959.76
OtherPay                       9490.18
Benefits                           NaN
TotalPay                     124871.37
TotalPayBenefits             124871.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4892, dtype: object)
(4893, Id                           4894
EmployeeName          JOHN ROGERS
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               1576.27
OtherPay                 17359.76
Benefits                      NaN
TotalPay                124870.71
TotalPayBenefits        124870.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4893, dtype: object)
(4894, Id                              4895
EmployeeName         ESTER FRANCISCO
JobTitle            REGISTERED NURSE
BasePay                    123240.05
OvertimePay                      0.0
OtherPay                     1614.24
Benefits                         NaN
TotalPay                   124854.29
TotalPayBenefits           124854.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4894, dtype: object)
(4895, Id                                4896
EmployeeName              LLOYD MARTIN
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    7076.14
OtherPay                        5332.9
Benefits                           NaN
TotalPay                     124850.84
TotalPayBenefits             124850.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4895, dtype: object)
(4896, Id                                                          4897
EmployeeName                                     JULIE ROSENBERG
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                124849.25
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               124849.25
TotalPayBenefits                                       124849.25
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 4896, dtype: object)
(4897, Id                           4898
EmployeeName           MARK ZHANG
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               2629.55
OtherPay                  16283.8
Benefits                      NaN
TotalPay                124848.03
TotalPayBenefits        124848.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4897, dtype: object)
(4898, Id                                4899
EmployeeName                ROY HEAVEY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5060.98
OtherPay                       7384.66
Benefits                           NaN
TotalPay                     124846.72
TotalPayBenefits             124846.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4898, dtype: object)
(4899, Id                             4900
EmployeeName              ALBERT KO
JobTitle            SENIOR ENGINEER
BasePay                   124842.94
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  124842.94
TotalPayBenefits          124842.94
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4899, dtype: object)
(4900, Id                           4901
EmployeeName             PETER LI
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               1652.15
OtherPay                 17254.11
Benefits                      NaN
TotalPay                124840.95
TotalPayBenefits        124840.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4900, dtype: object)
(4901, Id                                       4902
EmployeeName                   LAURIE AGRILLO
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             124431.85
OvertimePay                               0.0
OtherPay                               408.71
Benefits                                  NaN
TotalPay                            124840.56
TotalPayBenefits                    124840.56
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4901, dtype: object)
(4902, Id                           4903
EmployeeName          GARRETT LOW
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                  3901.16
Benefits                      NaN
TotalPay                124838.25
TotalPayBenefits        124838.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4902, dtype: object)
(4903, Id                              4904
EmployeeName             EVA AVELINO
JobTitle            REGISTERED NURSE
BasePay                    100774.01
OvertimePay                  7399.25
OtherPay                    16658.89
Benefits                         NaN
TotalPay                   124832.15
TotalPayBenefits           124832.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4903, dtype: object)
(4904, Id                               4905
EmployeeName        RICA MARGARI TANO
JobTitle             REGISTERED NURSE
BasePay                      101863.1
OvertimePay                   4679.88
OtherPay                     18284.82
Benefits                          NaN
TotalPay                     124827.8
TotalPayBenefits             124827.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4904, dtype: object)
(4905, Id                                    4906
EmployeeName                   ERIC STOREY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          109482.92
OvertimePay                        5962.06
OtherPay                           9355.19
Benefits                               NaN
TotalPay                         124800.17
TotalPayBenefits                 124800.17
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4905, dtype: object)
(4906, Id                                   4907
EmployeeName            FREDERICO TUMULAK
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                         17673.06
Benefits                              NaN
TotalPay                        124790.47
TotalPayBenefits                124790.47
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 4906, dtype: object)
(4907, Id                             4908
EmployeeName        DONALD PRICE JR
JobTitle                FIREFIGHTER
BasePay                   105773.86
OvertimePay                  2166.8
OtherPay                   16842.76
Benefits                        NaN
TotalPay                  124783.42
TotalPayBenefits          124783.42
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4907, dtype: object)
(4908, Id                                                               4909
EmployeeName                                         WILLIAM BIGARANI
JobTitle            LIEUTENANT, BUREAU OF FIRE PREVENTION AND PUBL...
BasePay                                                      77999.58
OvertimePay                                                   1137.34
OtherPay                                                     45635.88
Benefits                                                          NaN
TotalPay                                                     124772.8
TotalPayBenefits                                             124772.8
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 4908, dtype: object)
(4909, Id                                4910
EmployeeName          PETER MCLAUGHLIN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8614.15
OtherPay                       3729.02
Benefits                           NaN
TotalPay                     124764.62
TotalPayBenefits             124764.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4909, dtype: object)
(4910, Id                             4911
EmployeeName        BENJAMIN CANEDO
JobTitle                FIREFIGHTER
BasePay                   104340.84
OvertimePay                10383.21
OtherPay                   10040.41
Benefits                        NaN
TotalPay                  124764.46
TotalPayBenefits          124764.46
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4910, dtype: object)
(4911, Id                                4912
EmployeeName           REGINALD PRASAD
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    10543.9
OtherPay                       1794.35
Benefits                           NaN
TotalPay                     124759.69
TotalPayBenefits             124759.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4911, dtype: object)
(4912, Id                                    4913
EmployeeName                     ERIC SOTO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83664.54
OvertimePay                       31825.99
OtherPay                           9264.71
Benefits                               NaN
TotalPay                         124755.24
TotalPayBenefits                 124755.24
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4912, dtype: object)
(4913, Id                              4914
EmployeeName            MELVIN CLARK
JobTitle            TRANSIT OPERATOR
BasePay                     71125.18
OvertimePay                 49838.65
OtherPay                     3788.66
Benefits                         NaN
TotalPay                   124752.49
TotalPayBenefits           124752.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4913, dtype: object)
(4914, Id                           4915
EmployeeName         MICHAEL CHAN
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                  3813.56
Benefits                      NaN
TotalPay                124750.57
TotalPayBenefits        124750.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4914, dtype: object)
(4915, Id                           4916
EmployeeName         DUANE RIVERA
JobTitle              FIREFIGHTER
BasePay                 104218.01
OvertimePay               7339.72
OtherPay                 13178.76
Benefits                      NaN
TotalPay                124736.49
TotalPayBenefits        124736.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4915, dtype: object)
(4916, Id                            4917
EmployeeName           ROBERT DALY
JobTitle            DEPUTY SHERIFF
BasePay                    86422.5
OvertimePay               28135.96
OtherPay                  10172.26
Benefits                       NaN
TotalPay                 124730.72
TotalPayBenefits         124730.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4916, dtype: object)
(4917, Id                                       4918
EmployeeName                     RONA SANDLER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             122280.18
OvertimePay                               0.0
OtherPay                              2445.95
Benefits                                  NaN
TotalPay                            124726.13
TotalPayBenefits                    124726.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4917, dtype: object)
(4918, Id                                 4919
EmployeeName               SONNY CUBILO
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    40721.63
OtherPay                       11576.81
Benefits                            NaN
TotalPay                      124708.44
TotalPayBenefits              124708.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4918, dtype: object)
(4919, Id                             4920
EmployeeName        JOHNNY WILLIAMS
JobTitle                FIREFIGHTER
BasePay                   105934.67
OvertimePay                 1394.77
OtherPay                   17376.17
Benefits                        NaN
TotalPay                  124705.61
TotalPayBenefits          124705.61
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 4919, dtype: object)
(4920, Id                                4921
EmployeeName        CHRISTINE WILLIAMS
JobTitle                   FIREFIGHTER
BasePay                      105934.68
OvertimePay                    1602.54
OtherPay                      17167.04
Benefits                           NaN
TotalPay                     124704.26
TotalPayBenefits             124704.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4920, dtype: object)
(4921, Id                                       4922
EmployeeName                        ALEX KWAN
JobTitle            SENIOR PLUMBING INSPECTOR
BasePay                              115238.8
OvertimePay                           2780.14
OtherPay                              6681.94
Benefits                                  NaN
TotalPay                            124700.88
TotalPayBenefits                    124700.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4921, dtype: object)
(4922, Id                           4923
EmployeeName          RAYMOND WOO
JobTitle                 ENGINEER
BasePay                 120937.04
OvertimePay                   0.0
OtherPay                  3754.75
Benefits                      NaN
TotalPay                124691.79
TotalPayBenefits        124691.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4922, dtype: object)
(4923, Id                               4924
EmployeeName        CHRISTIAN JEFFREY
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                   1577.73
OtherPay                     17176.63
Benefits                          NaN
TotalPay                    124689.01
TotalPayBenefits            124689.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4923, dtype: object)
(4924, Id                               4925
EmployeeName        DOMINIC BORDACHAR
JobTitle                  FIREFIGHTER
BasePay                     105934.68
OvertimePay                   1577.73
OtherPay                     17169.74
Benefits                          NaN
TotalPay                    124682.15
TotalPayBenefits            124682.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4924, dtype: object)
(4925, Id                                4926
EmployeeName           ANTONIO CLAUDIO
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4559.05
OtherPay                       7716.86
Benefits                           NaN
TotalPay                     124676.98
TotalPayBenefits             124676.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4925, dtype: object)
(4926, Id                                          4927
EmployeeName                        FRANK JORDAN
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102050.02
OvertimePay                              9965.35
OtherPay                                 12659.4
Benefits                                     NaN
TotalPay                               124674.77
TotalPayBenefits                       124674.77
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4926, dtype: object)
(4927, Id                                 4928
EmployeeName                BRIAN SMITH
JobTitle            IS PROJECT DIRECTOR
BasePay                       124618.59
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      124618.59
TotalPayBenefits              124618.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4927, dtype: object)
(4928, Id                                           4929
EmployeeName                        ITALO NEGRINI
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  83373.51
OvertimePay                              39410.35
OtherPay                                  1834.29
Benefits                                      NaN
TotalPay                                124618.15
TotalPayBenefits                        124618.15
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 4928, dtype: object)
(4929, Id                              4930
EmployeeName          THOMAS VELLONE
JobTitle            POLICE OFFICER I
BasePay                     89173.05
OvertimePay                  2576.65
OtherPay                    32867.41
Benefits                         NaN
TotalPay                   124617.11
TotalPayBenefits           124617.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4929, dtype: object)
(4930, Id                              4931
EmployeeName           ARMANN RAMOSO
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  9511.85
OtherPay                     9056.17
Benefits                         NaN
TotalPay                    124614.1
TotalPayBenefits            124614.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4930, dtype: object)
(4931, Id                              4932
EmployeeName            RAMON DAVILA
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 11530.78
OtherPay                     7015.71
Benefits                         NaN
TotalPay                   124611.69
TotalPayBenefits           124611.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4931, dtype: object)
(4932, Id                              4933
EmployeeName              TODD BURKS
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 13347.64
OtherPay                     5194.01
Benefits                         NaN
TotalPay                   124606.85
TotalPayBenefits           124606.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4932, dtype: object)
(4933, Id                              4934
EmployeeName            SEAN PADILLA
JobTitle            POLICE OFFICER I
BasePay                    106045.74
OvertimePay                 10837.42
OtherPay                     7721.39
Benefits                         NaN
TotalPay                   124604.55
TotalPayBenefits           124604.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4933, dtype: object)
(4934, Id                              4935
EmployeeName           MARIBEL AMODO
JobTitle            REGISTERED NURSE
BasePay                    119568.15
OvertimePay                      0.0
OtherPay                     5036.06
Benefits                         NaN
TotalPay                   124604.21
TotalPayBenefits           124604.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4934, dtype: object)
(4935, Id                                         4936
EmployeeName        MARIA AURORA CHAVEZ LAGASCA
JobTitle                       REGISTERED NURSE
BasePay                               119587.78
OvertimePay                               488.4
OtherPay                                4511.29
Benefits                                    NaN
TotalPay                              124587.47
TotalPayBenefits                      124587.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4935, dtype: object)
(4936, Id                                          4937
EmployeeName                       JEFFREY SPANO
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101845.96
OvertimePay                             16169.38
OtherPay                                 6569.05
Benefits                                     NaN
TotalPay                               124584.39
TotalPayBenefits                       124584.39
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4936, dtype: object)
(4937, Id                              4938
EmployeeName              ALJUN ALBA
JobTitle            REGISTERED NURSE
BasePay                    102302.65
OvertimePay                  3437.37
OtherPay                    18841.29
Benefits                         NaN
TotalPay                   124581.31
TotalPayBenefits           124581.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4937, dtype: object)
(4938, Id                           4939
EmployeeName           ELI THOMAS
JobTitle              FIREFIGHTER
BasePay                  78306.38
OvertimePay              39499.33
OtherPay                  6769.96
Benefits                      NaN
TotalPay                124575.67
TotalPayBenefits        124575.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4938, dtype: object)
(4939, Id                               4940
EmployeeName               THOMAS CHU
JobTitle            POLICE OFFICER II
BasePay                      110203.2
OvertimePay                   4543.59
OtherPay                      9822.21
Benefits                          NaN
TotalPay                     124569.0
TotalPayBenefits             124569.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4939, dtype: object)
(4940, Id                                4941
EmployeeName              SYLVIA LANGE
JobTitle            POLICE OFFICER III
BasePay                      112417.23
OvertimePay                    1848.35
OtherPay                      10301.06
Benefits                           NaN
TotalPay                     124566.64
TotalPayBenefits             124566.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4940, dtype: object)
(4941, Id                                4942
EmployeeName                  ALPHA NG
JobTitle            POLICE OFFICER III
BasePay                       112416.1
OvertimePay                    6630.04
OtherPay                       5510.57
Benefits                           NaN
TotalPay                     124556.71
TotalPayBenefits             124556.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4941, dtype: object)
(4942, Id                                4943
EmployeeName        ERLINDA CONCEPCION
JobTitle              REGISTERED NURSE
BasePay                      119496.04
OvertimePay                        0.0
OtherPay                       5060.01
Benefits                           NaN
TotalPay                     124556.05
TotalPayBenefits             124556.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4942, dtype: object)
(4943, Id                                         4944
EmployeeName                        KENNETH LEE
JobTitle            LABORATORY SERVICES MANAGER
BasePay                               124554.09
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              124554.09
TotalPayBenefits                      124554.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 4943, dtype: object)
(4944, Id                            4945
EmployeeName           VICTOR JUNG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               31090.54
OtherPay                    6613.8
Benefits                       NaN
TotalPay                 124544.34
TotalPayBenefits         124544.34
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4944, dtype: object)
(4945, Id                               4946
EmployeeName        MICHELLE JOHNSTON
JobTitle                NURSE MIDWIFE
BasePay                     124287.88
OvertimePay                       0.0
OtherPay                        250.0
Benefits                          NaN
TotalPay                    124537.88
TotalPayBenefits            124537.88
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4945, dtype: object)
(4946, Id                            4947
EmployeeName        STEVEN CASTILE
JobTitle                 MANAGER I
BasePay                  112471.31
OvertimePay                    0.0
OtherPay                  12066.25
Benefits                       NaN
TotalPay                 124537.56
TotalPayBenefits         124537.56
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4946, dtype: object)
(4947, Id                                4948
EmployeeName              RALF BURGERT
JobTitle            NURSE PRACTITIONER
BasePay                      123367.43
OvertimePay                     725.85
OtherPay                        441.28
Benefits                           NaN
TotalPay                     124534.56
TotalPayBenefits             124534.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4947, dtype: object)
(4948, Id                                4949
EmployeeName           HASSAN NOWROOZI
JobTitle            ASSOCIATE ENGINEER
BasePay                      122990.98
OvertimePay                        0.0
OtherPay                        1543.2
Benefits                           NaN
TotalPay                     124534.18
TotalPayBenefits             124534.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4948, dtype: object)
(4949, Id                                  4950
EmployeeName                ISAAC POTTER
JobTitle            IS ENGINEER - SENIOR
BasePay                        115306.84
OvertimePay                       2443.7
OtherPay                         6782.68
Benefits                             NaN
TotalPay                       124533.22
TotalPayBenefits               124533.22
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4949, dtype: object)
(4950, Id                                              4951
EmployeeName                            DEBORAH ROSS
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72881.35
OvertimePay                                 50560.85
OtherPay                                      1091.0
Benefits                                         NaN
TotalPay                                    124533.2
TotalPayBenefits                            124533.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4950, dtype: object)
(4951, Id                                          4952
EmployeeName                       ANDREW GEDDES
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                103436.86
OvertimePay                              5840.44
OtherPay                                 15251.6
Benefits                                     NaN
TotalPay                                124528.9
TotalPayBenefits                        124528.9
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4951, dtype: object)
(4952, Id                                                4953
EmployeeName                            CLAUDIO SANTOS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77554.73
OvertimePay                                   39933.84
OtherPay                                       7040.26
Benefits                                           NaN
TotalPay                                     124528.83
TotalPayBenefits                             124528.83
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4952, dtype: object)
(4953, Id                               4954
EmployeeName            ANDREW BRYANT
JobTitle            POLICE OFFICER II
BasePay                       98578.0
OvertimePay                   6800.21
OtherPay                     19148.58
Benefits                          NaN
TotalPay                    124526.79
TotalPayBenefits            124526.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4953, dtype: object)
(4954, Id                            4955
EmployeeName        ROBERT BALLARD
JobTitle                  ENGINEER
BasePay                  120937.03
OvertimePay                    0.0
OtherPay                   3589.48
Benefits                       NaN
TotalPay                 124526.51
TotalPayBenefits         124526.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4954, dtype: object)
(4955, Id                                                4956
EmployeeName                                 AUDRY LEE
JobTitle            BATTALION CHIEF, (FIRE DEPARTMENT)
BasePay                                        21804.0
OvertimePay                                   46307.75
OtherPay                                      56392.91
Benefits                                           NaN
TotalPay                                     124504.66
TotalPayBenefits                             124504.66
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 4955, dtype: object)
(4956, Id                                4957
EmployeeName           RAYMOND WINTERS
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.02
OvertimePay                    9158.89
OtherPay                       9238.95
Benefits                           NaN
TotalPay                     124503.86
TotalPayBenefits             124503.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4956, dtype: object)
(4957, Id                              4958
EmployeeName          CARMEN VASQUEZ
JobTitle            REGISTERED NURSE
BasePay                    102026.13
OvertimePay                    40.29
OtherPay                    22426.02
Benefits                         NaN
TotalPay                   124492.44
TotalPayBenefits           124492.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4957, dtype: object)
(4958, Id                               4959
EmployeeName           ANNA PATTERSON
JobTitle            POLICE OFFICER II
BasePay                     102952.05
OvertimePay                   8437.21
OtherPay                     13095.64
Benefits                          NaN
TotalPay                     124484.9
TotalPayBenefits             124484.9
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4958, dtype: object)
(4959, Id                                    4960
EmployeeName                 ROSS O'REILLY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           96405.66
OvertimePay                       19619.18
OtherPay                           8456.98
Benefits                               NaN
TotalPay                         124481.82
TotalPayBenefits                 124481.82
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 4959, dtype: object)
(4960, Id                              4961
EmployeeName        RUPERTO GONZALES
JobTitle                    ENGINEER
BasePay                    120937.07
OvertimePay                      0.0
OtherPay                     3538.51
Benefits                         NaN
TotalPay                   124475.58
TotalPayBenefits           124475.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4960, dtype: object)
(4961, Id                                4962
EmployeeName                JOHN DENNY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    3927.25
OtherPay                       8119.74
Benefits                           NaN
TotalPay                     124448.07
TotalPayBenefits             124448.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4961, dtype: object)
(4962, Id                                4963
EmployeeName           MICHAEL REGALIA
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1965.07
OtherPay                      10081.48
Benefits                           NaN
TotalPay                     124447.63
TotalPayBenefits             124447.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4962, dtype: object)
(4963, Id                                     4964
EmployeeName        CYNTHIA HOLLIS-FRANKLIN
JobTitle                PUBLIC HEALTH NURSE
BasePay                           119196.71
OvertimePay                             0.0
OtherPay                            5248.28
Benefits                                NaN
TotalPay                          124444.99
TotalPayBenefits                  124444.99
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4963, dtype: object)
(4964, Id                           4965
EmployeeName         JOHN MAGUIRE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               2661.16
OtherPay                 15834.08
Benefits                      NaN
TotalPay                124429.91
TotalPayBenefits        124429.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4964, dtype: object)
(4965, Id                                 4966
EmployeeName              ANA CONTRERAS
JobTitle            IS PROJECT DIRECTOR
BasePay                       124034.61
OvertimePay                         0.0
OtherPay                         395.19
Benefits                            NaN
TotalPay                       124429.8
TotalPayBenefits               124429.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4965, dtype: object)
(4966, Id                              4967
EmployeeName         RAYMOND PADMORE
JobTitle            POLICE OFFICER I
BasePay                      91845.8
OvertimePay                 13464.89
OtherPay                    19110.46
Benefits                         NaN
TotalPay                   124421.15
TotalPayBenefits           124421.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4966, dtype: object)
(4967, Id                                               4968
EmployeeName                                  SAN GEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  24382.62
OtherPay                                      1022.48
Benefits                                          NaN
TotalPay                                     124419.5
TotalPayBenefits                             124419.5
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 4967, dtype: object)
(4968, Id                              4969
EmployeeName           BONNIE GARVEY
JobTitle            REGISTERED NURSE
BasePay                    121539.25
OvertimePay                    68.68
OtherPay                     2809.97
Benefits                         NaN
TotalPay                    124417.9
TotalPayBenefits            124417.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4968, dtype: object)
(4969, Id                               4970
EmployeeName            CHAHMAL KEROW
JobTitle            POLICE OFFICER II
BasePay                     102622.01
OvertimePay                  11574.65
OtherPay                     10214.86
Benefits                          NaN
TotalPay                    124411.52
TotalPayBenefits            124411.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4969, dtype: object)
(4970, Id                                     4971
EmployeeName                  MICHAEL HAUCK
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                           105042.93
OvertimePay                         7910.53
OtherPay                            11454.5
Benefits                                NaN
TotalPay                          124407.96
TotalPayBenefits                  124407.96
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 4970, dtype: object)
(4971, Id                              4972
EmployeeName                 MING HU
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                      4909.2
Benefits                         NaN
TotalPay                    124405.2
TotalPayBenefits            124405.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4971, dtype: object)
(4972, Id                               4973
EmployeeName          NICHOLAS SUSLOW
JobTitle            POLICE OFFICER II
BasePay                     104613.42
OvertimePay                  11661.21
OtherPay                      8127.76
Benefits                          NaN
TotalPay                    124402.39
TotalPayBenefits            124402.39
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4972, dtype: object)
(4973, Id                                  4974
EmployeeName        ROWENA SORIBEN-NOZIK
JobTitle                REGISTERED NURSE
BasePay                        123240.08
OvertimePay                          0.0
OtherPay                         1158.86
Benefits                             NaN
TotalPay                       124398.94
TotalPayBenefits               124398.94
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 4973, dtype: object)
(4974, Id                           4975
EmployeeName         LARRY ABELLA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               1577.73
OtherPay                 16885.76
Benefits                      NaN
TotalPay                124398.15
TotalPayBenefits        124398.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4974, dtype: object)
(4975, Id                                                    4976
EmployeeName                                    KIM HARMON
JobTitle            MANAGER, UNIFIED FAMILY COURT SERVICES
BasePay                                          122009.29
OvertimePay                                            0.0
OtherPay                                            2383.0
Benefits                                               NaN
TotalPay                                         124392.29
TotalPayBenefits                                 124392.29
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 4975, dtype: object)
(4976, Id                           4977
EmployeeName          ALBERT WONG
JobTitle                 ENGINEER
BasePay                 124293.29
OvertimePay                   0.0
OtherPay                     90.0
Benefits                      NaN
TotalPay                124383.29
TotalPayBenefits        124383.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4976, dtype: object)
(4977, Id                            4978
EmployeeName           ELISEO RUIZ
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               24939.89
OtherPay                  12935.13
Benefits                       NaN
TotalPay                 124381.03
TotalPayBenefits         124381.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 4977, dtype: object)
(4978, Id                                 4979
EmployeeName              NELDA MALILAY
JobTitle            PUBLIC HEALTH NURSE
BasePay                       119496.03
OvertimePay                         0.0
OtherPay                        4878.04
Benefits                            NaN
TotalPay                      124374.07
TotalPayBenefits              124374.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4978, dtype: object)
(4979, Id                                 4980
EmployeeName            ALINE ARMSTRONG
JobTitle            PUBLIC HEALTH NURSE
BasePay                        119496.0
OvertimePay                         0.0
OtherPay                         4878.0
Benefits                            NaN
TotalPay                       124374.0
TotalPayBenefits               124374.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 4979, dtype: object)
(4980, Id                           4981
EmployeeName         LAWRENCE JEW
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               1101.43
OtherPay                 17319.77
Benefits                      NaN
TotalPay                 124355.9
TotalPayBenefits         124355.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4980, dtype: object)
(4981, Id                                          4982
EmployeeName                    RICHARD MERCURIO
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 102662.3
OvertimePay                             15912.18
OtherPay                                 5771.09
Benefits                                     NaN
TotalPay                               124345.57
TotalPayBenefits                       124345.57
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 4981, dtype: object)
(4982, Id                                       4983
EmployeeName                  NESTOR BALINTEC
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92861.5
OvertimePay                          27034.02
OtherPay                               4448.0
Benefits                                  NaN
TotalPay                            124343.52
TotalPayBenefits                    124343.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4982, dtype: object)
(4983, Id                                       4984
EmployeeName                    CHERYL MARTIN
JobTitle            DIRECTOR, HUMAN RESOURCES
BasePay                             124332.41
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            124332.41
TotalPayBenefits                    124332.41
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4983, dtype: object)
(4984, Id                                4985
EmployeeName             CAROL SCATENA
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    2301.12
OtherPay                       9585.87
Benefits                           NaN
TotalPay                     124328.81
TotalPayBenefits             124328.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4984, dtype: object)
(4985, Id                           4986
EmployeeName        JOSSIE ALEGRE
JobTitle               MANAGER II
BasePay                 112705.49
OvertimePay                   0.0
OtherPay                 11617.81
Benefits                      NaN
TotalPay                 124323.3
TotalPayBenefits         124323.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4985, dtype: object)
(4986, Id                                4987
EmployeeName        WILLIAM BRUNICARDI
JobTitle             POLICE OFFICER II
BasePay                      110223.08
OvertimePay                    8692.06
OtherPay                       5393.55
Benefits                           NaN
TotalPay                     124308.69
TotalPayBenefits             124308.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 4986, dtype: object)
(4987, Id                           4988
EmployeeName        BONITA SEAMAN
JobTitle               MANAGER II
BasePay                 118526.38
OvertimePay                   0.0
OtherPay                   5774.3
Benefits                      NaN
TotalPay                124300.68
TotalPayBenefits        124300.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4987, dtype: object)
(4988, Id                              4989
EmployeeName        EVELYN ONDERDONK
JobTitle                    ENGINEER
BasePay                    120937.03
OvertimePay                      0.0
OtherPay                     3355.28
Benefits                         NaN
TotalPay                   124292.31
TotalPayBenefits           124292.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4988, dtype: object)
(4989, Id                                             4990
EmployeeName                      SERGIO CONCEPCION
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                     99485.0
OvertimePay                                24625.99
OtherPay                                      180.0
Benefits                                        NaN
TotalPay                                  124290.99
TotalPayBenefits                          124290.99
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 4989, dtype: object)
(4990, Id                               4991
EmployeeName        EDGAR COVARRUBIAS
JobTitle                  FIREFIGHTER
BasePay                     105243.06
OvertimePay                   1817.72
OtherPay                      17222.3
Benefits                          NaN
TotalPay                    124283.08
TotalPayBenefits            124283.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4990, dtype: object)
(4991, Id                              4992
EmployeeName             DANA NELSON
JobTitle            REGISTERED NURSE
BasePay                    119675.52
OvertimePay                      0.0
OtherPay                     4587.22
Benefits                         NaN
TotalPay                   124262.74
TotalPayBenefits           124262.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4991, dtype: object)
(4992, Id                              4993
EmployeeName           PAULA ORDONEZ
JobTitle            REGISTERED NURSE
BasePay                    104724.18
OvertimePay                  3816.53
OtherPay                    15718.19
Benefits                         NaN
TotalPay                    124258.9
TotalPayBenefits            124258.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4992, dtype: object)
(4993, Id                                              4994
EmployeeName                            JAMES BRYANT
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72907.49
OvertimePay                                 47032.17
OtherPay                                     4306.52
Benefits                                         NaN
TotalPay                                   124246.18
TotalPayBenefits                           124246.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 4993, dtype: object)
(4994, Id                               4995
EmployeeName        RONALD MCGOLDRICK
JobTitle             POLICE OFFICER I
BasePay                       94105.7
OvertimePay                   7421.72
OtherPay                     22712.64
Benefits                          NaN
TotalPay                    124240.06
TotalPayBenefits            124240.06
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 4994, dtype: object)
(4995, Id                           4996
EmployeeName        SHIRAH WEXLER
JobTitle            SPECIAL NURSE
BasePay                 114098.92
OvertimePay               4499.67
OtherPay                  5638.94
Benefits                      NaN
TotalPay                124237.53
TotalPayBenefits        124237.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4995, dtype: object)
(4996, Id                           4997
EmployeeName        MARIE DE VERA
JobTitle               MANAGER II
BasePay                 114237.22
OvertimePay                   0.0
OtherPay                  10000.0
Benefits                      NaN
TotalPay                124237.22
TotalPayBenefits        124237.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 4996, dtype: object)
(4997, Id                              4998
EmployeeName             RUANN NIEVA
JobTitle            REGISTERED NURSE
BasePay                     99603.34
OvertimePay                 10215.45
OtherPay                    14416.45
Benefits                         NaN
TotalPay                   124235.24
TotalPayBenefits           124235.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4997, dtype: object)
(4998, Id                                       4999
EmployeeName                  STEPHANIE WARGO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             124234.22
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            124234.22
TotalPayBenefits                    124234.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 4998, dtype: object)
(4999, Id                              5000
EmployeeName             REX LAVILLA
JobTitle            REGISTERED NURSE
BasePay                    102057.22
OvertimePay                  5710.17
OtherPay                    16462.26
Benefits                         NaN
TotalPay                   124229.65
TotalPayBenefits           124229.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 4999, dtype: object)
(5000, Id                                 5001
EmployeeName                MONICA BIEN
JobTitle            PHYSICIAN ASSISTANT
BasePay                       123160.41
OvertimePay                      892.35
OtherPay                          175.0
Benefits                            NaN
TotalPay                      124227.76
TotalPayBenefits              124227.76
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5000, dtype: object)
(5001, Id                                5002
EmployeeName                MARY BURNS
JobTitle            POLICE OFFICER III
BasePay                      112417.28
OvertimePay                    2060.43
OtherPay                       9746.05
Benefits                           NaN
TotalPay                     124223.76
TotalPayBenefits             124223.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5001, dtype: object)
(5002, Id                                       5003
EmployeeName                     JOSEPH DUFFY
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              110754.8
OvertimePay                           7486.66
OtherPay                              5972.86
Benefits                                  NaN
TotalPay                            124214.32
TotalPayBenefits                    124214.32
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5002, dtype: object)
(5003, Id                            5004
EmployeeName           JORGE GARZA
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                32231.0
OtherPay                   5138.72
Benefits                       NaN
TotalPay                 124209.72
TotalPayBenefits         124209.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5003, dtype: object)
(5004, Id                                5005
EmployeeName         NATALIE KOMARCHUK
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1570.63
OtherPay                      10237.37
Benefits                           NaN
TotalPay                     124209.08
TotalPayBenefits             124209.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5004, dtype: object)
(5005, Id                                5006
EmployeeName             ROBERT CANEDO
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    8401.41
OtherPay                       3397.56
Benefits                           NaN
TotalPay                     124200.02
TotalPayBenefits             124200.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5005, dtype: object)
(5006, Id                              5007
EmployeeName        JEANNE HENDERSON
JobTitle            REGISTERED NURSE
BasePay                    116498.67
OvertimePay                   549.45
OtherPay                     7146.27
Benefits                         NaN
TotalPay                   124194.39
TotalPayBenefits           124194.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5006, dtype: object)
(5007, Id                                              5008
EmployeeName                            WILLIAM BUSH
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    120160.09
OvertimePay                                      0.0
OtherPay                                     4033.32
Benefits                                         NaN
TotalPay                                   124193.41
TotalPayBenefits                           124193.41
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5007, dtype: object)
(5008, Id                           5009
EmployeeName          MARILYN LUM
JobTitle              FIREFIGHTER
BasePay                 105648.18
OvertimePay              10924.83
OtherPay                  7612.24
Benefits                      NaN
TotalPay                124185.25
TotalPayBenefits        124185.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5008, dtype: object)
(5009, Id                           5010
EmployeeName          RAYMOND MAH
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                  3243.33
Benefits                      NaN
TotalPay                124180.38
TotalPayBenefits        124180.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5009, dtype: object)
(5010, Id                                     5011
EmployeeName        ELIZABETH BOYLE-VASQUEZ
JobTitle                 POLICE OFFICER III
BasePay                           112401.07
OvertimePay                         6279.87
OtherPay                            5495.91
Benefits                                NaN
TotalPay                          124176.85
TotalPayBenefits                  124176.85
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5010, dtype: object)
(5011, Id                                 5012
EmployeeName              IVY STEVERSON
JobTitle            PUBLIC HEALTH NURSE
BasePay                       119294.93
OvertimePay                         0.0
OtherPay                        4870.23
Benefits                            NaN
TotalPay                      124165.16
TotalPayBenefits              124165.16
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5011, dtype: object)
(5012, Id                                5013
EmployeeName                BARRY WOOD
JobTitle            POLICE OFFICER III
BasePay                      112421.41
OvertimePay                    7130.98
OtherPay                        4612.3
Benefits                           NaN
TotalPay                     124164.69
TotalPayBenefits             124164.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5012, dtype: object)
(5013, Id                              5014
EmployeeName        MANUEL DACALANIO
JobTitle                 FIREFIGHTER
BasePay                     105427.4
OvertimePay                  8328.31
OtherPay                    10403.19
Benefits                         NaN
TotalPay                    124158.9
TotalPayBenefits            124158.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5013, dtype: object)
(5014, Id                                     5015
EmployeeName                     PAT MILLER
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           124153.78
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          124153.78
TotalPayBenefits                  124153.78
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5014, dtype: object)
(5015, Id                                   5016
EmployeeName                    XING WANG
JobTitle            IS ENGINEER - JOURNEY
BasePay                          107117.4
OvertimePay                           0.0
OtherPay                         17019.66
Benefits                              NaN
TotalPay                        124137.06
TotalPayBenefits                124137.06
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5015, dtype: object)
(5016, Id                                 5017
EmployeeName          KIMBERLEE PITTERS
JobTitle            PUBLIC HEALTH NURSE
BasePay                        119266.2
OvertimePay                         0.0
OtherPay                         4869.1
Benefits                            NaN
TotalPay                       124135.3
TotalPayBenefits               124135.3
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5016, dtype: object)
(5017, Id                           5018
EmployeeName        ERIC TANIMURA
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay                   0.0
OtherPay                 18184.41
Benefits                      NaN
TotalPay                124119.07
TotalPayBenefits        124119.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5017, dtype: object)
(5018, Id                                5019
EmployeeName             ARTHUR HOWARD
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                    7464.53
OtherPay                       4222.54
Benefits                           NaN
TotalPay                     124103.87
TotalPayBenefits             124103.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5018, dtype: object)
(5019, Id                               5020
EmployeeName         GREGORY BURCHARD
JobTitle            POLICE OFFICER II
BasePay                      96758.78
OvertimePay                   8952.91
OtherPay                     18382.11
Benefits                          NaN
TotalPay                     124093.8
TotalPayBenefits             124093.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5019, dtype: object)
(5020, Id                                               5021
EmployeeName                              STANLEY LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  16805.96
OtherPay                                       8271.2
Benefits                                          NaN
TotalPay                                    124091.56
TotalPayBenefits                            124091.56
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5020, dtype: object)
(5021, Id                              5022
EmployeeName           MICHAEL ZHANG
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  8302.51
OtherPay                     9723.25
Benefits                         NaN
TotalPay                   124090.95
TotalPayBenefits           124090.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5021, dtype: object)
(5022, Id                                5023
EmployeeName        RODNEY FITZPATRICK
JobTitle            POLICE OFFICER III
BasePay                      112420.96
OvertimePay                    6524.42
OtherPay                       5133.52
Benefits                           NaN
TotalPay                      124078.9
TotalPayBenefits              124078.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5022, dtype: object)
(5023, Id                                 5024
EmployeeName               YASH SHARMAN
JobTitle            IS PROJECT DIRECTOR
BasePay                       110240.12
OvertimePay                         0.0
OtherPay                        13834.3
Benefits                            NaN
TotalPay                      124074.42
TotalPayBenefits              124074.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5023, dtype: object)
(5024, Id                                    5025
EmployeeName              RENO BLANCHFIELD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          100154.04
OvertimePay                        5708.65
OtherPay                          18207.74
Benefits                               NaN
TotalPay                         124070.43
TotalPayBenefits                 124070.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5024, dtype: object)
(5025, Id                                5026
EmployeeName              DECLAN LEAVY
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    5359.02
OtherPay                       6320.42
Benefits                           NaN
TotalPay                     124060.15
TotalPayBenefits             124060.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5025, dtype: object)
(5026, Id                                5027
EmployeeName               JOSEPH NOTO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1599.14
OtherPay                      10051.53
Benefits                           NaN
TotalPay                     124051.75
TotalPayBenefits             124051.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5026, dtype: object)
(5027, Id                           5028
EmployeeName         JOSHUA PARKS
JobTitle              FIREFIGHTER
BasePay                 102819.19
OvertimePay              10939.72
OtherPay                 10288.63
Benefits                      NaN
TotalPay                124047.54
TotalPayBenefits        124047.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5027, dtype: object)
(5028, Id                                5029
EmployeeName          JULIAN HERMOSURA
JobTitle            POLICE OFFICER III
BasePay                      112380.74
OvertimePay                     3914.6
OtherPay                       7751.39
Benefits                           NaN
TotalPay                     124046.73
TotalPayBenefits             124046.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5028, dtype: object)
(5029, Id                            5030
EmployeeName        JONATHAN RIDER
JobTitle               FIREFIGHTER
BasePay                   105934.7
OvertimePay                1224.91
OtherPay                  16878.13
Benefits                       NaN
TotalPay                 124037.74
TotalPayBenefits         124037.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5029, dtype: object)
(5030, Id                                       5031
EmployeeName                    WENDI BOSELLI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             124023.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            124023.54
TotalPayBenefits                    124023.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5030, dtype: object)
(5031, Id                                    5032
EmployeeName                NICHOLAS BRADY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            96734.1
OvertimePay                       14832.25
OtherPay                          12452.55
Benefits                               NaN
TotalPay                          124018.9
TotalPayBenefits                  124018.9
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5031, dtype: object)
(5032, Id                           5033
EmployeeName        MARGARET MEAL
JobTitle              MANAGER III
BasePay                 123870.04
OvertimePay                   0.0
OtherPay                   145.68
Benefits                      NaN
TotalPay                124015.72
TotalPayBenefits        124015.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5032, dtype: object)
(5033, Id                                5034
EmployeeName                 YORK KWAN
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                       6641.36
Benefits                           NaN
TotalPay                     124005.36
TotalPayBenefits             124005.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5033, dtype: object)
(5034, Id                                   5035
EmployeeName        ANGENETTE GARGARITANO
JobTitle                 REGISTERED NURSE
BasePay                         101325.91
OvertimePay                       8015.19
OtherPay                         14663.69
Benefits                              NaN
TotalPay                        124004.79
TotalPayBenefits                124004.79
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5034, dtype: object)
(5035, Id                           5036
EmployeeName          KARL JURADO
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               1629.49
OtherPay                 16434.47
Benefits                      NaN
TotalPay                123998.62
TotalPayBenefits        123998.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5035, dtype: object)
(5036, Id                            5037
EmployeeName        DAVID AYMERICH
JobTitle               FIREFIGHTER
BasePay                  105934.65
OvertimePay                 6753.6
OtherPay                  11303.13
Benefits                       NaN
TotalPay                 123991.38
TotalPayBenefits         123991.38
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5036, dtype: object)
(5037, Id                           5038
EmployeeName            ERIC HIPP
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay               1701.79
OtherPay                 16350.61
Benefits                      NaN
TotalPay                123987.11
TotalPayBenefits        123987.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5037, dtype: object)
(5038, Id                                5039
EmployeeName             JOSE GUARDADO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5391.13
OtherPay                       6188.74
Benefits                           NaN
TotalPay                     123980.95
TotalPayBenefits             123980.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5038, dtype: object)
(5039, Id                               5040
EmployeeName           MATTHEW DUDLEY
JobTitle            POLICE OFFICER II
BasePay                     101568.31
OvertimePay                   6999.67
OtherPay                     15402.03
Benefits                          NaN
TotalPay                    123970.01
TotalPayBenefits            123970.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5039, dtype: object)
(5040, Id                                5041
EmployeeName              ROBERT TERRY
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    8971.22
OtherPay                       2557.91
Benefits                           NaN
TotalPay                     123950.55
TotalPayBenefits             123950.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5040, dtype: object)
(5041, Id                               5042
EmployeeName        MELANDRO TIONGSON
JobTitle             REGISTERED NURSE
BasePay                     101765.82
OvertimePay                   5061.56
OtherPay                     17111.95
Benefits                          NaN
TotalPay                    123939.33
TotalPayBenefits            123939.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5041, dtype: object)
(5042, Id                                         5043
EmployeeName                         TRINH TRAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               123939.23
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              123939.23
TotalPayBenefits                      123939.23
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5042, dtype: object)
(5043, Id                                5044
EmployeeName           KENNETH SANCHEZ
JobTitle            POLICE OFFICER III
BasePay                      112417.06
OvertimePay                     647.62
OtherPay                      10852.53
Benefits                           NaN
TotalPay                     123917.21
TotalPayBenefits             123917.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5043, dtype: object)
(5044, Id                              5045
EmployeeName         TAUVA'A JOHNSON
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                 13076.65
OtherPay                     4773.17
Benefits                         NaN
TotalPay                   123915.01
TotalPayBenefits           123915.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5044, dtype: object)
(5045, Id                               5046
EmployeeName        JACQUELINE SAVAGE
JobTitle             REGISTERED NURSE
BasePay                     106729.48
OvertimePay                     114.9
OtherPay                     17063.77
Benefits                          NaN
TotalPay                    123908.15
TotalPayBenefits            123908.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5045, dtype: object)
(5046, Id                            5047
EmployeeName        MICHAEL CARION
JobTitle               FIREFIGHTER
BasePay                  105934.66
OvertimePay                    0.0
OtherPay                  17959.69
Benefits                       NaN
TotalPay                 123894.35
TotalPayBenefits         123894.35
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5046, dtype: object)
(5047, Id                                       5048
EmployeeName                  LUCINDA SIMPSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             117424.25
OvertimePay                               0.0
OtherPay                              6462.36
Benefits                                  NaN
TotalPay                            123886.61
TotalPayBenefits                    123886.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5047, dtype: object)
(5048, Id                              5049
EmployeeName          RUPERT GERALDO
JobTitle            POLICE OFFICER I
BasePay                    103670.58
OvertimePay                  9538.53
OtherPay                    10676.41
Benefits                         NaN
TotalPay                   123885.52
TotalPayBenefits           123885.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5048, dtype: object)
(5049, Id                              5050
EmployeeName        MAX SETYADIPUTRA
JobTitle                  PLANNER IV
BasePay                     99498.03
OvertimePay                      0.0
OtherPay                    24385.04
Benefits                         NaN
TotalPay                   123883.07
TotalPayBenefits           123883.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5049, dtype: object)
(5050, Id                           5051
EmployeeName        REYNER MEDINA
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               8072.29
OtherPay                  9875.08
Benefits                      NaN
TotalPay                123882.07
TotalPayBenefits        123882.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5050, dtype: object)
(5051, Id                                5052
EmployeeName            DENNIS RODELAS
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    2705.16
OtherPay                       8793.54
Benefits                           NaN
TotalPay                      123879.4
TotalPayBenefits              123879.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5051, dtype: object)
(5052, Id                           5053
EmployeeName          ALBERT FANG
JobTitle                 ENGINEER
BasePay                 120937.17
OvertimePay                   0.0
OtherPay                  2938.57
Benefits                      NaN
TotalPay                123875.74
TotalPayBenefits        123875.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5052, dtype: object)
(5053, Id                                5054
EmployeeName              JOSEPH BOYLE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    2536.93
OtherPay                       8935.81
Benefits                           NaN
TotalPay                     123873.82
TotalPayBenefits             123873.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5053, dtype: object)
(5054, Id                                5055
EmployeeName          MITCHELL HOLOHAN
JobTitle            POLICE OFFICER III
BasePay                      111484.03
OvertimePay                     844.17
OtherPay                      11542.44
Benefits                           NaN
TotalPay                     123870.64
TotalPayBenefits             123870.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5054, dtype: object)
(5055, Id                                                     5056
EmployeeName                                 JOANNE DONOHUE
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            86842.27
OvertimePay                                         30732.4
OtherPay                                            6274.29
Benefits                                                NaN
TotalPay                                          123848.96
TotalPayBenefits                                  123848.96
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5055, dtype: object)
(5056, Id                                5057
EmployeeName               RAMIL RAMOS
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.06
OvertimePay                    4782.04
OtherPay                       12954.2
Benefits                           NaN
TotalPay                      123842.3
TotalPayBenefits              123842.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5056, dtype: object)
(5057, Id                                       5058
EmployeeName                  MICHAEL KRIEGER
JobTitle            TRANSIT POWER LINE WORKER
BasePay                              92471.44
OvertimePay                          30883.55
OtherPay                                470.0
Benefits                                  NaN
TotalPay                            123824.99
TotalPayBenefits                    123824.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5057, dtype: object)
(5058, Id                              5059
EmployeeName        WALTER CONTRERAS
JobTitle            POLICE OFFICER I
BasePay                    106026.97
OvertimePay                  6313.96
OtherPay                    11470.68
Benefits                         NaN
TotalPay                   123811.61
TotalPayBenefits           123811.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5058, dtype: object)
(5059, Id                              5060
EmployeeName           YONG GANG LUO
JobTitle            REGISTERED NURSE
BasePay                    106674.34
OvertimePay                  5676.84
OtherPay                     11457.2
Benefits                         NaN
TotalPay                   123808.38
TotalPayBenefits           123808.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5059, dtype: object)
(5060, Id                                5061
EmployeeName              JULIO GOCHEZ
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.02
OvertimePay                    1765.08
OtherPay                      15928.33
Benefits                           NaN
TotalPay                     123799.43
TotalPayBenefits             123799.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5060, dtype: object)
(5061, Id                              5062
EmployeeName           PETER DENNEHY
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                  4050.23
OtherPay                       250.0
Benefits                         NaN
TotalPay                   123796.23
TotalPayBenefits           123796.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5061, dtype: object)
(5062, Id                              5063
EmployeeName             JOAN TADEJA
JobTitle            REGISTERED NURSE
BasePay                     108758.6
OvertimePay                  7860.31
OtherPay                      7175.1
Benefits                         NaN
TotalPay                   123794.01
TotalPayBenefits           123794.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5062, dtype: object)
(5063, Id                            5064
EmployeeName         DAVID BRANNER
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               34831.79
OtherPay                   2114.07
Benefits                       NaN
TotalPay                 123785.86
TotalPayBenefits         123785.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5063, dtype: object)
(5064, Id                               5065
EmployeeName            BRENT DITTMER
JobTitle            POLICE OFFICER II
BasePay                     100631.12
OvertimePay                   9108.65
OtherPay                     14043.36
Benefits                          NaN
TotalPay                    123783.13
TotalPayBenefits            123783.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5064, dtype: object)
(5065, Id                              5066
EmployeeName          ROWENA MANZANO
JobTitle            REGISTERED NURSE
BasePay                     109616.0
OvertimePay                  4216.41
OtherPay                     9948.16
Benefits                         NaN
TotalPay                   123780.57
TotalPayBenefits           123780.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5065, dtype: object)
(5066, Id                              5067
EmployeeName          JUDITH WIERZBA
JobTitle            REGISTERED NURSE
BasePay                    123240.02
OvertimePay                      0.0
OtherPay                      540.33
Benefits                         NaN
TotalPay                   123780.35
TotalPayBenefits           123780.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5066, dtype: object)
(5067, Id                                     5068
EmployeeName                  LAWRENCE CHEW
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           123771.83
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          123771.83
TotalPayBenefits                  123771.83
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5067, dtype: object)
(5068, Id                              5069
EmployeeName               BUU CHUNG
JobTitle            TRANSIT OPERATOR
BasePay                     65793.28
OvertimePay                  54187.3
OtherPay                     3790.44
Benefits                         NaN
TotalPay                   123771.02
TotalPayBenefits           123771.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5068, dtype: object)
(5069, Id                               5070
EmployeeName            DERRICK LIANG
JobTitle            POLICE OFFICER II
BasePay                     103975.83
OvertimePay                   6721.89
OtherPay                     13068.31
Benefits                          NaN
TotalPay                    123766.03
TotalPayBenefits            123766.03
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5069, dtype: object)
(5070, Id                                5071
EmployeeName            JOHN CARAMUCCI
JobTitle            SHERIFF'S SERGEANT
BasePay                        96576.0
OvertimePay                   16786.06
OtherPay                      10394.81
Benefits                           NaN
TotalPay                     123756.87
TotalPayBenefits             123756.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5070, dtype: object)
(5071, Id                              5072
EmployeeName          ELIZABETH SAIZ
JobTitle            REGISTERED NURSE
BasePay                    118490.27
OvertimePay                      0.0
OtherPay                     5257.42
Benefits                         NaN
TotalPay                   123747.69
TotalPayBenefits           123747.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5071, dtype: object)
(5072, Id                                5073
EmployeeName                KIRK LEONG
JobTitle            POLICE OFFICER III
BasePay                      112380.69
OvertimePay                    6175.89
OtherPay                       5185.03
Benefits                           NaN
TotalPay                     123741.61
TotalPayBenefits             123741.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5072, dtype: object)
(5073, Id                                5074
EmployeeName               ROLAND DEAR
JobTitle            POLICE OFFICER III
BasePay                      112421.38
OvertimePay                    6778.89
OtherPay                       4541.08
Benefits                           NaN
TotalPay                     123741.35
TotalPayBenefits             123741.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5073, dtype: object)
(5074, Id                             5075
EmployeeName        MICHAEL SANDERS
JobTitle                FIREFIGHTER
BasePay                   105934.63
OvertimePay                 6917.89
OtherPay                   10878.01
Benefits                        NaN
TotalPay                  123730.53
TotalPayBenefits          123730.53
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5074, dtype: object)
(5075, Id                           5076
EmployeeName           GREGG SASS
JobTitle             MANAGER VIII
BasePay                 123291.61
OvertimePay                   0.0
OtherPay                   430.25
Benefits                      NaN
TotalPay                123721.86
TotalPayBenefits        123721.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5075, dtype: object)
(5076, Id                                              5077
EmployeeName                              MARK GHALY
JobTitle            SUPERVISING PHYSICIAN SPECIALIST
BasePay                                     103763.8
OvertimePay                                      0.0
OtherPay                                    19949.92
Benefits                                         NaN
TotalPay                                   123713.72
TotalPayBenefits                           123713.72
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5076, dtype: object)
(5077, Id                                         5078
EmployeeName                         DAVID CHOU
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               117459.97
OvertimePay                                 0.0
OtherPay                                6249.97
Benefits                                    NaN
TotalPay                              123709.94
TotalPayBenefits                      123709.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5077, dtype: object)
(5078, Id                                5079
EmployeeName            YESENIA BRANDT
JobTitle            POLICE OFFICER III
BasePay                      112364.31
OvertimePay                    1406.96
OtherPay                        9921.7
Benefits                           NaN
TotalPay                     123692.97
TotalPayBenefits             123692.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5078, dtype: object)
(5079, Id                              5080
EmployeeName         JENNIFER MILLER
JobTitle            REGISTERED NURSE
BasePay                     98995.62
OvertimePay                  8570.94
OtherPay                    16121.91
Benefits                         NaN
TotalPay                   123688.47
TotalPayBenefits           123688.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5079, dtype: object)
(5080, Id                              5081
EmployeeName        ANNABELLE FLORES
JobTitle            REGISTERED NURSE
BasePay                    117850.92
OvertimePay                  1135.53
OtherPay                     4701.75
Benefits                         NaN
TotalPay                    123688.2
TotalPayBenefits            123688.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5080, dtype: object)
(5081, Id                           5082
EmployeeName        ROBERT TORRES
JobTitle                   WELDER
BasePay                  68798.66
OvertimePay              54828.46
OtherPay                     60.0
Benefits                      NaN
TotalPay                123687.12
TotalPayBenefits        123687.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5081, dtype: object)
(5082, Id                           5083
EmployeeName          HENRY TASTO
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay                920.35
OtherPay                 16830.05
Benefits                      NaN
TotalPay                123685.05
TotalPayBenefits        123685.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5082, dtype: object)
(5083, Id                                5084
EmployeeName        MARCIAL MARCELO JR
JobTitle            POLICE OFFICER III
BasePay                      112380.68
OvertimePay                    5696.84
OtherPay                       5605.73
Benefits                           NaN
TotalPay                     123683.25
TotalPayBenefits             123683.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5083, dtype: object)
(5084, Id                                5085
EmployeeName               WENDY FRISK
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    7436.75
OtherPay                       3819.11
Benefits                           NaN
TotalPay                     123677.31
TotalPayBenefits             123677.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5084, dtype: object)
(5085, Id                            5086
EmployeeName        MICHAEL ACOSTA
JobTitle                  ENGINEER
BasePay                  118401.02
OvertimePay                    0.0
OtherPay                   5271.32
Benefits                       NaN
TotalPay                 123672.34
TotalPayBenefits         123672.34
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5085, dtype: object)
(5086, Id                                5087
EmployeeName             MANUEL SOLANO
JobTitle            POLICE OFFICER III
BasePay                      112645.78
OvertimePay                    4352.29
OtherPay                       6639.67
Benefits                           NaN
TotalPay                     123637.74
TotalPayBenefits             123637.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5086, dtype: object)
(5087, Id                               5088
EmployeeName                ALAN LAMB
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                   3571.15
OtherPay                      9830.94
Benefits                          NaN
TotalPay                    123625.16
TotalPayBenefits            123625.16
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5087, dtype: object)
(5088, Id                           5089
EmployeeName         RAMON FLORES
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay                   0.0
OtherPay                  17682.8
Benefits                      NaN
TotalPay                123617.45
TotalPayBenefits        123617.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5088, dtype: object)
(5089, Id                                                          5090
EmployeeName                                        DAVID EBARLE
JobTitle            EMERGENCY MEDICAL SERVICES AGENCY SPECIALIST
BasePay                                                 96684.84
OvertimePay                                                  0.0
OtherPay                                                26915.27
Benefits                                                     NaN
TotalPay                                               123600.11
TotalPayBenefits                                       123600.11
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5089, dtype: object)
(5090, Id                                   5091
EmployeeName        CAROLYN LATANAFRANCIA
JobTitle                 REGISTERED NURSE
BasePay                         100768.33
OvertimePay                       4679.88
OtherPay                         18145.62
Benefits                              NaN
TotalPay                        123593.83
TotalPayBenefits                123593.83
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5090, dtype: object)
(5091, Id                                5092
EmployeeName          CHAUNCEY MCLORIN
JobTitle            TRANSIT SUPERVISOR
BasePay                       84915.52
OvertimePay                   32884.32
OtherPay                       5791.67
Benefits                           NaN
TotalPay                     123591.51
TotalPayBenefits             123591.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5091, dtype: object)
(5092, Id                                 5093
EmployeeName                 WILLIS KUO
JobTitle            IS PROJECT DIRECTOR
BasePay                       123588.16
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      123588.16
TotalPayBenefits              123588.16
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5092, dtype: object)
(5093, Id                                5094
EmployeeName               DAVID FRIAS
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                     7286.5
OtherPay                       3850.52
Benefits                           NaN
TotalPay                     123558.46
TotalPayBenefits             123558.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5093, dtype: object)
(5094, Id                                5095
EmployeeName           CANDACE WILCHER
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   32485.15
OtherPay                       3010.43
Benefits                           NaN
TotalPay                     123557.58
TotalPayBenefits             123557.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5094, dtype: object)
(5095, Id                              5096
EmployeeName          MARY ALEJANDRO
JobTitle            REGISTERED NURSE
BasePay                     95938.56
OvertimePay                  8708.15
OtherPay                    18894.76
Benefits                         NaN
TotalPay                   123541.47
TotalPayBenefits           123541.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5095, dtype: object)
(5096, Id                                                          5097
EmployeeName                                        MICHAEL CURL
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                 83508.31
OvertimePay                                             24569.53
OtherPay                                                15463.51
Benefits                                                     NaN
TotalPay                                               123541.35
TotalPayBenefits                                       123541.35
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5096, dtype: object)
(5097, Id                              5098
EmployeeName            DEBRA QUINAN
JobTitle            REGISTERED NURSE
BasePay                    110406.48
OvertimePay                   4408.2
OtherPay                     8725.84
Benefits                         NaN
TotalPay                   123540.52
TotalPayBenefits           123540.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5097, dtype: object)
(5098, Id                              5099
EmployeeName             JORDAN KING
JobTitle            POLICE OFFICER I
BasePay                     97017.97
OvertimePay                 10265.42
OtherPay                    16255.27
Benefits                         NaN
TotalPay                   123538.66
TotalPayBenefits           123538.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5098, dtype: object)
(5099, Id                           5100
EmployeeName           CHIA YU MA
JobTitle               MANAGER IV
BasePay                 123535.32
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                123535.32
TotalPayBenefits        123535.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5099, dtype: object)
(5100, Id                               5101
EmployeeName        MARILYN MELGAREJO
JobTitle             REGISTERED NURSE
BasePay                      112077.3
OvertimePay                   3306.15
OtherPay                      8149.84
Benefits                          NaN
TotalPay                    123533.29
TotalPayBenefits            123533.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5100, dtype: object)
(5101, Id                                5102
EmployeeName        STEVEN KONEFFKLATT
JobTitle                   MANAGER III
BasePay                       123533.1
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      123533.1
TotalPayBenefits              123533.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5101, dtype: object)
(5102, Id                                 5103
EmployeeName                HUO BO CHEN
JobTitle            STATIONARY ENGINEER
BasePay                        72410.02
OvertimePay                     45508.9
OtherPay                        5611.36
Benefits                            NaN
TotalPay                      123530.28
TotalPayBenefits              123530.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5102, dtype: object)
(5103, Id                            5104
EmployeeName         JOSE MARTINEZ
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               26359.97
OtherPay                  10329.87
Benefits                       NaN
TotalPay                 123529.84
TotalPayBenefits         123529.84
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5103, dtype: object)
(5104, Id                           5105
EmployeeName          K P KASHIMA
JobTitle              FIREFIGHTER
BasePay                 105676.26
OvertimePay               3279.64
OtherPay                 14568.16
Benefits                      NaN
TotalPay                123524.06
TotalPayBenefits        123524.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5104, dtype: object)
(5105, Id                                                  5106
EmployeeName                               THOMAS CURRAN
JobTitle            AUTOMOTIVE TRANSIT SHOP SUPERVISOR I
BasePay                                        107282.08
OvertimePay                                     13784.46
OtherPay                                         2457.42
Benefits                                             NaN
TotalPay                                       123523.96
TotalPayBenefits                               123523.96
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 5105, dtype: object)
(5106, Id                                                     5107
EmployeeName                                    SUSAN QUOCK
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77760.94
OvertimePay                                        33900.79
OtherPay                                           11858.51
Benefits                                                NaN
TotalPay                                          123520.24
TotalPayBenefits                                  123520.24
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5106, dtype: object)
(5107, Id                           5108
EmployeeName           ERIC LOUIE
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay                   0.0
OtherPay                 17583.89
Benefits                      NaN
TotalPay                123518.57
TotalPayBenefits        123518.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5107, dtype: object)
(5108, Id                                      5109
EmployeeName               ADAM MAZURKIEWICZ
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110261.82
OvertimePay                              0.0
OtherPay                            13251.16
Benefits                                 NaN
TotalPay                           123512.98
TotalPayBenefits                   123512.98
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 5108, dtype: object)
(5109, Id                                                              5110
EmployeeName                                        EMRULKAYES AKTER
JobTitle            CHIEF STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                     98950.27
OvertimePay                                                  8834.63
OtherPay                                                     15726.1
Benefits                                                         NaN
TotalPay                                                    123511.0
TotalPayBenefits                                            123511.0
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5109, dtype: object)
(5110, Id                              5111
EmployeeName           AMSALE TEFERA
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                  6016.95
OtherPay                     1609.43
Benefits                         NaN
TotalPay                   123508.38
TotalPayBenefits           123508.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5110, dtype: object)
(5111, Id                                  5112
EmployeeName           DONNA STEPPE-KEYS
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        121160.28
OvertimePay                      1074.48
OtherPay                         1272.82
Benefits                             NaN
TotalPay                       123507.58
TotalPayBenefits               123507.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5111, dtype: object)
(5112, Id                               5113
EmployeeName              JOAN CRONIN
JobTitle            POLICE OFFICER II
BasePay                     109036.29
OvertimePay                   6369.85
OtherPay                      8080.02
Benefits                          NaN
TotalPay                    123486.16
TotalPayBenefits            123486.16
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5112, dtype: object)
(5113, Id                           5114
EmployeeName        GREGORY YOUNG
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               6275.39
OtherPay                 11274.89
Benefits                      NaN
TotalPay                123484.95
TotalPayBenefits        123484.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5113, dtype: object)
(5114, Id                                5115
EmployeeName               MARK MADSEN
JobTitle            POLICE OFFICER III
BasePay                      117299.15
OvertimePay                    2378.82
OtherPay                       3806.08
Benefits                           NaN
TotalPay                     123484.05
TotalPayBenefits             123484.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5114, dtype: object)
(5115, Id                               5116
EmployeeName        SHIRLEY O'DONNELL
JobTitle             REGISTERED NURSE
BasePay                      118921.5
OvertimePay                       0.0
OtherPay                      4551.48
Benefits                          NaN
TotalPay                    123472.98
TotalPayBenefits            123472.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5115, dtype: object)
(5116, Id                                       5117
EmployeeName                      JILL CANNON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             123466.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            123466.65
TotalPayBenefits                    123466.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5116, dtype: object)
(5117, Id                                   5118
EmployeeName                 MATTHEW WONG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          94534.28
OvertimePay                      22018.15
OtherPay                          6911.24
Benefits                              NaN
TotalPay                        123463.67
TotalPayBenefits                123463.67
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5117, dtype: object)
(5118, Id                                             5119
EmployeeName                            BHARTI MUNI
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115816.96
OvertimePay                                 7632.52
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  123449.48
TotalPayBenefits                          123449.48
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5118, dtype: object)
(5119, Id                              5120
EmployeeName                VO VOONG
JobTitle            TRANSIT OPERATOR
BasePay                     67349.29
OvertimePay                 53917.69
OtherPay                     2181.43
Benefits                         NaN
TotalPay                   123448.41
TotalPayBenefits           123448.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5119, dtype: object)
(5120, Id                                5121
EmployeeName        MARIE DEMONTEVERDE
JobTitle                 SPECIAL NURSE
BasePay                       95448.94
OvertimePay                   12718.68
OtherPay                      15280.43
Benefits                           NaN
TotalPay                     123448.05
TotalPayBenefits             123448.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5120, dtype: object)
(5121, Id                               5122
EmployeeName        CHRISTOPHER GILES
JobTitle             POLICE OFFICER I
BasePay                      96406.34
OvertimePay                   6865.89
OtherPay                      20175.6
Benefits                          NaN
TotalPay                    123447.83
TotalPayBenefits            123447.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5121, dtype: object)
(5122, Id                                    5123
EmployeeName                SCOTT HELLESTO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105920.77
OvertimePay                        7507.17
OtherPay                          10016.49
Benefits                               NaN
TotalPay                         123444.43
TotalPayBenefits                 123444.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5122, dtype: object)
(5123, Id                              5124
EmployeeName        JORDAN SR ORYALL
JobTitle            POLICE OFFICER I
BasePay                    106065.17
OvertimePay                  6940.04
OtherPay                    10429.12
Benefits                         NaN
TotalPay                   123434.33
TotalPayBenefits           123434.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5123, dtype: object)
(5124, Id                                               5125
EmployeeName                             GEOFFREY GOH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   20336.4
OtherPay                                       4082.0
Benefits                                          NaN
TotalPay                                     123432.8
TotalPayBenefits                             123432.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5124, dtype: object)
(5125, Id                                 5126
EmployeeName        MARIA LUNA TESORERO
JobTitle               REGISTERED NURSE
BasePay                        118119.9
OvertimePay                         0.0
OtherPay                        5291.66
Benefits                            NaN
TotalPay                      123411.56
TotalPayBenefits              123411.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5125, dtype: object)
(5126, Id                           5127
EmployeeName          TIECHENG HU
JobTitle                 ENGINEER
BasePay                 120937.14
OvertimePay                   0.0
OtherPay                  2468.99
Benefits                      NaN
TotalPay                123406.13
TotalPayBenefits        123406.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5126, dtype: object)
(5127, Id                              5128
EmployeeName              CHARLIE NG
JobTitle            POLICE OFFICER I
BasePay                    103275.63
OvertimePay                  7507.92
OtherPay                    12619.22
Benefits                         NaN
TotalPay                   123402.77
TotalPayBenefits           123402.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5127, dtype: object)
(5128, Id                              5129
EmployeeName           ELAINE MARTIN
JobTitle            REGISTERED NURSE
BasePay                    109776.73
OvertimePay                  6708.85
OtherPay                     6917.18
Benefits                         NaN
TotalPay                   123402.76
TotalPayBenefits           123402.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5128, dtype: object)
(5129, Id                                 5130
EmployeeName             VICTORIA YOUNG
JobTitle            PUBLIC HEALTH NURSE
BasePay                       117272.05
OvertimePay                         0.0
OtherPay                        6128.24
Benefits                            NaN
TotalPay                      123400.29
TotalPayBenefits              123400.29
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5129, dtype: object)
(5130, Id                                                          5131
EmployeeName                                          JANIS YUEN
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                123396.75
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               123396.75
TotalPayBenefits                                       123396.75
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5130, dtype: object)
(5131, Id                             5132
EmployeeName        STANLEY DESOUZA
JobTitle                MANAGER III
BasePay                   123396.75
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  123396.75
TotalPayBenefits          123396.75
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5131, dtype: object)
(5132, Id                                                          5133
EmployeeName                                        MARY DONOVAN
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                123396.75
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               123396.75
TotalPayBenefits                                       123396.75
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5132, dtype: object)
(5133, Id                           5134
EmployeeName         LENIDA REYES
JobTitle              MANAGER III
BasePay                 123396.75
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                123396.75
TotalPayBenefits        123396.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5133, dtype: object)
(5134, Id                            5135
EmployeeName        EMILY MORRISON
JobTitle               MANAGER III
BasePay                  123396.75
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 123396.75
TotalPayBenefits         123396.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5134, dtype: object)
(5135, Id                               5136
EmployeeName        THOMAS MEISENBACH
JobTitle                  MANAGER III
BasePay                     123396.75
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    123396.75
TotalPayBenefits            123396.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5135, dtype: object)
(5136, Id                               5137
EmployeeName           DARRYL RODGERS
JobTitle            POLICE OFFICER II
BasePay                     110223.03
OvertimePay                   11699.7
OtherPay                      1469.42
Benefits                          NaN
TotalPay                    123392.15
TotalPayBenefits            123392.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5136, dtype: object)
(5137, Id                                5138
EmployeeName              DAVID MURPHY
JobTitle            SHERIFF'S SERGEANT
BasePay                       106106.0
OvertimePay                    3393.97
OtherPay                      13885.18
Benefits                           NaN
TotalPay                     123385.15
TotalPayBenefits             123385.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5137, dtype: object)
(5138, Id                                5139
EmployeeName                GLENN JUCO
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4593.12
OtherPay                       6374.72
Benefits                           NaN
TotalPay                     123368.91
TotalPayBenefits             123368.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5138, dtype: object)
(5139, Id                               5140
EmployeeName         MICHELE MARTINEZ
JobTitle            POLICE OFFICER II
BasePay                     108060.61
OvertimePay                   7943.87
OtherPay                      7327.37
Benefits                          NaN
TotalPay                    123331.85
TotalPayBenefits            123331.85
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5139, dtype: object)
(5140, Id                            5141
EmployeeName        VICTOR ANCHETA
JobTitle                  ENGINEER
BasePay                  120937.41
OvertimePay                    0.0
OtherPay                   2384.62
Benefits                       NaN
TotalPay                 123322.03
TotalPayBenefits         123322.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5140, dtype: object)
(5141, Id                           5142
EmployeeName        AMBER QUELVOG
JobTitle            SPECIAL NURSE
BasePay                 114411.98
OvertimePay               5422.25
OtherPay                   3482.5
Benefits                      NaN
TotalPay                123316.73
TotalPayBenefits        123316.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5141, dtype: object)
(5142, Id                                  5143
EmployeeName                  JIAYE CHEN
JobTitle            IS ENGINEER - SENIOR
BasePay                        110823.87
OvertimePay                          0.0
OtherPay                        12487.17
Benefits                             NaN
TotalPay                       123311.04
TotalPayBenefits               123311.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5142, dtype: object)
(5143, Id                                 5144
EmployeeName        ALARIC DEGRAFINRIED
JobTitle                    MANAGER III
BasePay                        123310.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       123310.7
TotalPayBenefits               123310.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5143, dtype: object)
(5144, Id                              5145
EmployeeName               NGUYET VO
JobTitle            REGISTERED NURSE
BasePay                    110358.65
OvertimePay                  3543.34
OtherPay                     9406.58
Benefits                         NaN
TotalPay                   123308.57
TotalPayBenefits           123308.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5144, dtype: object)
(5145, Id                                5146
EmployeeName           JEREMY MITCHELL
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    4328.12
OtherPay                       6572.69
Benefits                           NaN
TotalPay                     123301.89
TotalPayBenefits             123301.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5145, dtype: object)
(5146, Id                                5147
EmployeeName                CALVIN TOM
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    8279.92
OtherPay                       2599.54
Benefits                           NaN
TotalPay                     123300.91
TotalPayBenefits             123300.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5146, dtype: object)
(5147, Id                                          5148
EmployeeName                        CHARLES WEST
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 102458.2
OvertimePay                                  0.0
OtherPay                                20839.17
Benefits                                     NaN
TotalPay                               123297.37
TotalPayBenefits                       123297.37
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 5147, dtype: object)
(5148, Id                                 5149
EmployeeName        JENNIFER NORTHRIDGE
JobTitle             POLICE OFFICER III
BasePay                       112441.81
OvertimePay                     6737.84
OtherPay                        4116.47
Benefits                            NaN
TotalPay                      123296.12
TotalPayBenefits              123296.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5148, dtype: object)
(5149, Id                           5150
EmployeeName        JAMES BURRUEL
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5149, dtype: object)
(5150, Id                                 5151
EmployeeName        ZENAIDA ALEJANDRINO
JobTitle                    MANAGER III
BasePay                        123290.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       123290.7
TotalPayBenefits               123290.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5150, dtype: object)
(5151, Id                                 5152
EmployeeName        MARGARITA RODRIGUEZ
JobTitle                    MANAGER III
BasePay                        123290.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       123290.7
TotalPayBenefits               123290.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5151, dtype: object)
(5152, Id                           5153
EmployeeName             JOHN WOO
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5152, dtype: object)
(5153, Id                            5154
EmployeeName        JANET TOLENADA
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5153, dtype: object)
(5154, Id                              5155
EmployeeName        BENJAMIN HOUSTON
JobTitle                 MANAGER III
BasePay                     123290.7
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    123290.7
TotalPayBenefits            123290.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5154, dtype: object)
(5155, Id                            5156
EmployeeName        WILLIAM GIBSON
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5155, dtype: object)
(5156, Id                              5157
EmployeeName        FRANK MCPARTLAND
JobTitle                 MANAGER III
BasePay                     123290.7
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    123290.7
TotalPayBenefits            123290.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5156, dtype: object)
(5157, Id                                5158
EmployeeName             TARAS MADISON
JobTitle            DEPUTY DIRECTOR II
BasePay                       123290.7
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      123290.7
TotalPayBenefits              123290.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5157, dtype: object)
(5158, Id                           5159
EmployeeName         JULIE ANSELL
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5158, dtype: object)
(5159, Id                           5160
EmployeeName          DAVID BEHAR
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5159, dtype: object)
(5160, Id                           5161
EmployeeName           DAN HODAPP
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5160, dtype: object)
(5161, Id                           5162
EmployeeName         DAN SCHWAGER
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5161, dtype: object)
(5162, Id                            5163
EmployeeName        JESUSA BUSHONG
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5162, dtype: object)
(5163, Id                             5164
EmployeeName        JASON HASHIMOTO
JobTitle                MANAGER III
BasePay                    123290.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   123290.7
TotalPayBenefits           123290.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5163, dtype: object)
(5164, Id                           5165
EmployeeName            DEREK CHU
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5164, dtype: object)
(5165, Id                           5166
EmployeeName           JANE MASON
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5165, dtype: object)
(5166, Id                                  5167
EmployeeName        LUCY PALILEO-CORDOBA
JobTitle                     MANAGER III
BasePay                         123290.7
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        123290.7
TotalPayBenefits                123290.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5166, dtype: object)
(5167, Id                           5168
EmployeeName           MARY IRWIN
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5167, dtype: object)
(5168, Id                           5169
EmployeeName          DAVID CURTO
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5168, dtype: object)
(5169, Id                            5170
EmployeeName        SUSAN SCHWARTZ
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5169, dtype: object)
(5170, Id                           5171
EmployeeName          NANCY BLISS
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5170, dtype: object)
(5171, Id                                  5172
EmployeeName        SREEDHARAN PISHARATH
JobTitle                     MANAGER III
BasePay                         123290.7
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        123290.7
TotalPayBenefits                123290.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5171, dtype: object)
(5172, Id                             5173
EmployeeName        MARGRET DONAHUE
JobTitle                MANAGER III
BasePay                    123290.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   123290.7
TotalPayBenefits           123290.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5172, dtype: object)
(5173, Id                           5174
EmployeeName           JAMES SOOS
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5173, dtype: object)
(5174, Id                                5175
EmployeeName               BRENT LEWIS
JobTitle            DEPUTY DIRECTOR II
BasePay                       123290.7
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      123290.7
TotalPayBenefits              123290.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5174, dtype: object)
(5175, Id                                     5176
EmployeeName        EVETTE TAYLOR-MONACHINO
JobTitle                        MANAGER III
BasePay                            123290.7
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           123290.7
TotalPayBenefits                   123290.7
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5175, dtype: object)
(5176, Id                           5177
EmployeeName           LUENNA KIM
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5176, dtype: object)
(5177, Id                           5178
EmployeeName         FRANK FILICE
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5177, dtype: object)
(5178, Id                               5179
EmployeeName        JENNIFER JOHNSTON
JobTitle                  MANAGER III
BasePay                      123290.7
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     123290.7
TotalPayBenefits             123290.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5178, dtype: object)
(5179, Id                            5180
EmployeeName        MARIA MARTINEZ
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5179, dtype: object)
(5180, Id                             5181
EmployeeName        LINDA EDELSTEIN
JobTitle                MANAGER III
BasePay                    123290.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   123290.7
TotalPayBenefits           123290.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5180, dtype: object)
(5181, Id                             5182
EmployeeName        JACQUELINE HALE
JobTitle                  MANAGER I
BasePay                    123290.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   123290.7
TotalPayBenefits           123290.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5181, dtype: object)
(5182, Id                           5183
EmployeeName         LOUIS VOCCIA
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5182, dtype: object)
(5183, Id                           5184
EmployeeName          GORDON CHOY
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5183, dtype: object)
(5184, Id                           5185
EmployeeName            JANIS ITO
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5184, dtype: object)
(5185, Id                                                          5186
EmployeeName                                       MICHAEL HELMS
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5185, dtype: object)
(5186, Id                           5187
EmployeeName             JOHN MUI
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5186, dtype: object)
(5187, Id                                                          5188
EmployeeName                                          GAIL STEIN
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5187, dtype: object)
(5188, Id                           5189
EmployeeName         DEREK PHIPPS
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5188, dtype: object)
(5189, Id                                                          5190
EmployeeName                                       JOEL GOLDBERG
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5189, dtype: object)
(5190, Id                           5191
EmployeeName           CHLOE WEIL
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5190, dtype: object)
(5191, Id                                                          5192
EmployeeName                                         WARREN COLE
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5191, dtype: object)
(5192, Id                           5193
EmployeeName         ANNE WIDENER
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5192, dtype: object)
(5193, Id                                                          5194
EmployeeName                                         CLARE LEUNG
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5193, dtype: object)
(5194, Id                                5195
EmployeeName            KATHLEEN BROWN
JobTitle            DEPUTY DIRECTOR II
BasePay                       123290.7
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      123290.7
TotalPayBenefits              123290.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5194, dtype: object)
(5195, Id                                                          5196
EmployeeName                                         WAI-KEN YEE
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 123290.7
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                123290.7
TotalPayBenefits                                        123290.7
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5195, dtype: object)
(5196, Id                                5197
EmployeeName          KIMBERLEE KIMURA
JobTitle            DEPUTY DIRECTOR II
BasePay                       123290.7
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      123290.7
TotalPayBenefits              123290.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5196, dtype: object)
(5197, Id                            5198
EmployeeName        STACEY CAMILLO
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5197, dtype: object)
(5198, Id                              5199
EmployeeName        DAVID DEL GRANDE
JobTitle                 MANAGER III
BasePay                     123290.7
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    123290.7
TotalPayBenefits            123290.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5198, dtype: object)
(5199, Id                            5200
EmployeeName        JOANNA FRAGULI
JobTitle               MANAGER III
BasePay                   123290.7
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  123290.7
TotalPayBenefits          123290.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5199, dtype: object)
(5200, Id                           5201
EmployeeName        DANIEL HOMSEY
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5200, dtype: object)
(5201, Id                           5202
EmployeeName           JOHN SCOTT
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5201, dtype: object)
(5202, Id                           5203
EmployeeName         BRIAN STRONG
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5202, dtype: object)
(5203, Id                           5204
EmployeeName              SUE YEE
JobTitle              MANAGER III
BasePay                  123290.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123290.7
TotalPayBenefits         123290.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5203, dtype: object)
(5204, Id                             5205
EmployeeName        SUSANA MARTINEZ
JobTitle                MANAGER III
BasePay                    123290.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   123290.7
TotalPayBenefits           123290.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5204, dtype: object)
(5205, Id                               5206
EmployeeName            MATTHEW LEONG
JobTitle            POLICE OFFICER II
BasePay                     102915.62
OvertimePay                   8081.42
OtherPay                     12291.17
Benefits                          NaN
TotalPay                    123288.21
TotalPayBenefits            123288.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5205, dtype: object)
(5206, Id                           5207
EmployeeName          MARTA BAYOL
JobTitle              MANAGER III
BasePay                 123286.47
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                123286.47
TotalPayBenefits        123286.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5206, dtype: object)
(5207, Id                                 5208
EmployeeName                   SUSAN YU
JobTitle            PUBLIC HEALTH NURSE
BasePay                       117077.55
OvertimePay                         0.0
OtherPay                        6178.17
Benefits                            NaN
TotalPay                      123255.72
TotalPayBenefits              123255.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5207, dtype: object)
(5208, Id                              5209
EmployeeName             TERRY SPRAY
JobTitle            REGISTERED NURSE
BasePay                    123003.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   123253.01
TotalPayBenefits           123253.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5208, dtype: object)
(5209, Id                                             5210
EmployeeName                          JAMES BREHMER
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                    7434.62
Benefits                                        NaN
TotalPay                                  123251.62
TotalPayBenefits                          123251.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5209, dtype: object)
(5210, Id                                  5211
EmployeeName                  STEVEN LEW
JobTitle            IS ENGINEER - SENIOR
BasePay                        118691.57
OvertimePay                          0.0
OtherPay                          4551.1
Benefits                             NaN
TotalPay                       123242.67
TotalPayBenefits               123242.67
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5210, dtype: object)
(5211, Id                                5212
EmployeeName           STEVEN CANIGLIA
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    3171.01
OtherPay                       7658.91
Benefits                           NaN
TotalPay                     123231.01
TotalPayBenefits             123231.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5211, dtype: object)
(5212, Id                           5213
EmployeeName         BRIAN JESSON
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay                   0.0
OtherPay                 17290.06
Benefits                      NaN
TotalPay                123224.73
TotalPayBenefits        123224.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5212, dtype: object)
(5213, Id                              5214
EmployeeName             LAURA LALOR
JobTitle            REGISTERED NURSE
BasePay                     98466.27
OvertimePay                  4375.14
OtherPay                    20379.87
Benefits                         NaN
TotalPay                   123221.28
TotalPayBenefits           123221.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5213, dtype: object)
(5214, Id                               5215
EmployeeName            JESSE FARRELL
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   7196.32
OtherPay                      5765.21
Benefits                          NaN
TotalPay                    123204.44
TotalPayBenefits            123204.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5214, dtype: object)
(5215, Id                                    5216
EmployeeName                TIMOTHY PARKAN
JobTitle            CONSTRUCTION INSPECTOR
BasePay                          105347.05
OvertimePay                        9878.54
OtherPay                           7973.23
Benefits                               NaN
TotalPay                         123198.82
TotalPayBenefits                 123198.82
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5215, dtype: object)
(5216, Id                             5217
EmployeeName        DANIEL DUNNIGAN
JobTitle                FIREFIGHTER
BasePay                    97753.72
OvertimePay                 9325.41
OtherPay                   16113.86
Benefits                        NaN
TotalPay                  123192.99
TotalPayBenefits          123192.99
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5216, dtype: object)
(5217, Id                           5218
EmployeeName            LANG HUEY
JobTitle                 ENGINEER
BasePay                 120937.41
OvertimePay                   0.0
OtherPay                   2246.2
Benefits                      NaN
TotalPay                123183.61
TotalPayBenefits        123183.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5217, dtype: object)
(5218, Id                                5219
EmployeeName        CHARLES BONNICI JR
JobTitle            POLICE OFFICER III
BasePay                      112421.48
OvertimePay                    1912.86
OtherPay                       8843.26
Benefits                           NaN
TotalPay                      123177.6
TotalPayBenefits              123177.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5218, dtype: object)
(5219, Id                           5220
EmployeeName         CARLA MURPHY
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay                596.61
OtherPay                 16630.86
Benefits                      NaN
TotalPay                123162.15
TotalPayBenefits        123162.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5219, dtype: object)
(5220, Id                                5221
EmployeeName            ERNEST WILBERG
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    2493.21
OtherPay                       8259.13
Benefits                           NaN
TotalPay                     123153.42
TotalPayBenefits             123153.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5220, dtype: object)
(5221, Id                              5222
EmployeeName            MARCO GARCIA
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  6382.88
OtherPay                    10723.08
Benefits                         NaN
TotalPay                   123152.04
TotalPayBenefits           123152.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5221, dtype: object)
(5222, Id                             5223
EmployeeName        MICHAEL SHANLEY
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                   74.42
OtherPay                    17139.3
Benefits                        NaN
TotalPay                  123148.36
TotalPayBenefits          123148.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5222, dtype: object)
(5223, Id                           5224
EmployeeName        JANE SULLIVAN
JobTitle               MANAGER II
BasePay                 123143.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                123143.16
TotalPayBenefits        123143.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5223, dtype: object)
(5224, Id                           5225
EmployeeName          JAMES SAKAI
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                  2195.36
Benefits                      NaN
TotalPay                123132.37
TotalPayBenefits        123132.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5224, dtype: object)
(5225, Id                              5226
EmployeeName        LINDSEY GRAVELLE
JobTitle            REGISTERED NURSE
BasePay                     98283.78
OvertimePay                  8689.42
OtherPay                    16154.65
Benefits                         NaN
TotalPay                   123127.85
TotalPayBenefits           123127.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5225, dtype: object)
(5226, Id                             5227
EmployeeName        ANTHONY DIRICCO
JobTitle                FIREFIGHTER
BasePay                   105934.68
OvertimePay                     0.0
OtherPay                    17186.8
Benefits                        NaN
TotalPay                  123121.48
TotalPayBenefits          123121.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5226, dtype: object)
(5227, Id                              5228
EmployeeName            MARK ALVAREZ
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  10141.4
OtherPay                     6904.18
Benefits                         NaN
TotalPay                   123110.78
TotalPayBenefits           123110.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5227, dtype: object)
(5228, Id                                5229
EmployeeName              KEVIN RECTOR
JobTitle            POLICE OFFICER III
BasePay                      112433.17
OvertimePay                    2615.17
OtherPay                        8056.2
Benefits                           NaN
TotalPay                     123104.54
TotalPayBenefits             123104.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5228, dtype: object)
(5229, Id                                 5230
EmployeeName        BERNADETTE ROBINSON
JobTitle              POLICE OFFICER II
BasePay                       110242.88
OvertimePay                     9179.32
OtherPay                        3673.73
Benefits                            NaN
TotalPay                      123095.93
TotalPayBenefits              123095.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5229, dtype: object)
(5230, Id                                    5231
EmployeeName                YEOMAN ELISAIA
JobTitle            ELECTRICAL LINE WORKER
BasePay                           81418.25
OvertimePay                       36040.08
OtherPay                           5623.45
Benefits                               NaN
TotalPay                         123081.78
TotalPayBenefits                 123081.78
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5230, dtype: object)
(5231, Id                                        5232
EmployeeName                         RON ALLEN
JobTitle            CHIEF ELECTRICAL INSPECTOR
BasePay                              123080.71
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             123080.71
TotalPayBenefits                     123080.71
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5231, dtype: object)
(5232, Id                           5233
EmployeeName          RICHARD HOM
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay                   0.0
OtherPay                 17142.24
Benefits                      NaN
TotalPay                123076.91
TotalPayBenefits        123076.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5232, dtype: object)
(5233, Id                                5234
EmployeeName        SHEDRICK MCDANIELS
JobTitle                DEPUTY SHERIFF
BasePay                       86839.18
OvertimePay                   27911.55
OtherPay                       8321.32
Benefits                           NaN
TotalPay                     123072.05
TotalPayBenefits             123072.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5233, dtype: object)
(5234, Id                                       5235
EmployeeName                     KELLY OHAIRE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              70280.18
OvertimePay                               0.0
OtherPay                             52773.76
Benefits                                  NaN
TotalPay                            123053.94
TotalPayBenefits                    123053.94
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5234, dtype: object)
(5235, Id                                        5236
EmployeeName                         WEI ZHANG
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.81
OvertimePay                           20649.96
OtherPay                               5263.92
Benefits                                   NaN
TotalPay                             123044.69
TotalPayBenefits                     123044.69
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5235, dtype: object)
(5236, Id                              5237
EmployeeName             FELY JAMILI
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                   4011.3
OtherPay                     3147.31
Benefits                         NaN
TotalPay                   123040.61
TotalPayBenefits           123040.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5236, dtype: object)
(5237, Id                                5238
EmployeeName               CRAIG LEONG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    5313.11
OtherPay                       5319.43
Benefits                           NaN
TotalPay                     123033.61
TotalPayBenefits             123033.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5237, dtype: object)
(5238, Id                           5239
EmployeeName         DERRICK CHAN
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                   2096.2
Benefits                      NaN
TotalPay                123033.29
TotalPayBenefits        123033.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5238, dtype: object)
(5239, Id                           5240
EmployeeName            JOON PARK
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                   2096.2
Benefits                      NaN
TotalPay                123033.22
TotalPayBenefits        123033.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5239, dtype: object)
(5240, Id                                    5241
EmployeeName                   DAVID PAGAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          104658.91
OvertimePay                        6100.45
OtherPay                          12265.05
Benefits                               NaN
TotalPay                         123024.41
TotalPayBenefits                 123024.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5240, dtype: object)
(5241, Id                           5242
EmployeeName         SUSAN MIZNER
JobTitle               MANAGER IV
BasePay                  123012.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 123012.5
TotalPayBenefits         123012.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5241, dtype: object)
(5242, Id                                               5243
EmployeeName                                ANDY WONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   23565.6
OtherPay                                        430.0
Benefits                                          NaN
TotalPay                                     123010.0
TotalPayBenefits                             123010.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5242, dtype: object)
(5243, Id                                        5244
EmployeeName                   DENNIS PARMELEE
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103530.42
OvertimePay                            5129.52
OtherPay                              14341.49
Benefits                                   NaN
TotalPay                             123001.43
TotalPayBenefits                     123001.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5243, dtype: object)
(5244, Id                                         5245
EmployeeName                           ROGER WU
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                106950.4
OvertimePay                                 0.0
OtherPay                               16042.55
Benefits                                    NaN
TotalPay                              122992.95
TotalPayBenefits                      122992.95
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5244, dtype: object)
(5245, Id                              5246
EmployeeName        STEPHEN FLANNERY
JobTitle                 MANAGER III
BasePay                     122987.7
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    122987.7
TotalPayBenefits            122987.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5245, dtype: object)
(5246, Id                               5247
EmployeeName        LYUDMILA KIZIRYAN
JobTitle             REGISTERED NURSE
BasePay                     100760.41
OvertimePay                   2411.54
OtherPay                     19814.25
Benefits                          NaN
TotalPay                     122986.2
TotalPayBenefits             122986.2
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5246, dtype: object)
(5247, Id                            5248
EmployeeName        JUDITH BACHMAN
JobTitle                MANAGER II
BasePay                  117993.02
OvertimePay                    0.0
OtherPay                   4980.44
Benefits                       NaN
TotalPay                 122973.46
TotalPayBenefits         122973.46
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5247, dtype: object)
(5248, Id                                  5249
EmployeeName        REGINA DICK-ENDRIZZI
JobTitle               DEPARTMENT HEAD I
BasePay                        122972.22
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       122972.22
TotalPayBenefits               122972.22
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5248, dtype: object)
(5249, Id                              5250
EmployeeName            DANIEL MERER
JobTitle            REGISTERED NURSE
BasePay                    113272.17
OvertimePay                  4411.78
OtherPay                     5286.13
Benefits                         NaN
TotalPay                   122970.08
TotalPayBenefits           122970.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5249, dtype: object)
(5250, Id                              5251
EmployeeName              RYAN JONES
JobTitle            POLICE OFFICER I
BasePay                     99964.19
OvertimePay                  8528.02
OtherPay                    14471.11
Benefits                         NaN
TotalPay                   122963.32
TotalPayBenefits           122963.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5250, dtype: object)
(5251, Id                                               5252
EmployeeName                            GERALD NORMAN
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                      84823.35
OvertimePay                                       0.0
OtherPay                                     38125.04
Benefits                                          NaN
TotalPay                                    122948.39
TotalPayBenefits                            122948.39
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5251, dtype: object)
(5252, Id                                              5253
EmployeeName                             JOHN CRETAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.03
OvertimePay                                      0.0
OtherPay                                     17454.0
Benefits                                         NaN
TotalPay                                   122943.03
TotalPayBenefits                           122943.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5252, dtype: object)
(5253, Id                                                   5254
EmployeeName                                  JAMES POSEY
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         122663.05
OvertimePay                                           0.0
OtherPay                                           265.79
Benefits                                              NaN
TotalPay                                        122928.84
TotalPayBenefits                                122928.84
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5253, dtype: object)
(5254, Id                                 5255
EmployeeName           CAROL THRAILKILL
JobTitle            PUBLIC HEALTH NURSE
BasePay                       117043.48
OvertimePay                         0.0
OtherPay                        5883.09
Benefits                            NaN
TotalPay                      122926.57
TotalPayBenefits              122926.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5254, dtype: object)
(5255, Id                              5256
EmployeeName             DAVID KUTYS
JobTitle            REGISTERED NURSE
BasePay                    122664.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   122914.01
TotalPayBenefits           122914.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5255, dtype: object)
(5256, Id                            5257
EmployeeName           RICHARD LEE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               24782.44
OtherPay                  11289.71
Benefits                       NaN
TotalPay                 122912.16
TotalPayBenefits         122912.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5256, dtype: object)
(5257, Id                                                          5258
EmployeeName                                    VICTORIA EINHAUS
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                122911.62
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               122911.62
TotalPayBenefits                                       122911.62
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5257, dtype: object)
(5258, Id                              5259
EmployeeName        VICTOR ZORZYNSKI
JobTitle                  MANAGER II
BasePay                    104281.68
OvertimePay                      0.0
OtherPay                    18629.03
Benefits                         NaN
TotalPay                   122910.71
TotalPayBenefits           122910.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5258, dtype: object)
(5259, Id                               5260
EmployeeName         CRYSTAL MCDONALD
JobTitle            POLICE OFFICER II
BasePay                      102622.0
OvertimePay                   6916.19
OtherPay                     13371.95
Benefits                          NaN
TotalPay                    122910.14
TotalPayBenefits            122910.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5259, dtype: object)
(5260, Id                               5261
EmployeeName             KEITH BARTEL
JobTitle            POLICE OFFICER II
BasePay                     108662.95
OvertimePay                   7459.54
OtherPay                      6785.18
Benefits                          NaN
TotalPay                    122907.67
TotalPayBenefits            122907.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5260, dtype: object)
(5261, Id                                          5262
EmployeeName                      ANDRE REYNOLDS
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                100417.25
OvertimePay                              6896.12
OtherPay                                15590.85
Benefits                                     NaN
TotalPay                               122904.22
TotalPayBenefits                       122904.22
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 5261, dtype: object)
(5262, Id                                5263
EmployeeName             BRIAN HICKLIN
JobTitle            POLICE OFFICER III
BasePay                       109377.3
OvertimePay                    7676.77
OtherPay                       5833.72
Benefits                           NaN
TotalPay                     122887.79
TotalPayBenefits             122887.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5262, dtype: object)
(5263, Id                            5264
EmployeeName           RONNIE HERD
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               18997.64
OtherPay                  17047.73
Benefits                       NaN
TotalPay                 122885.37
TotalPayBenefits         122885.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5263, dtype: object)
(5264, Id                                5265
EmployeeName             ANDREA JOSEPH
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    9640.67
OtherPay                        819.53
Benefits                           NaN
TotalPay                     122881.66
TotalPayBenefits             122881.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5264, dtype: object)
(5265, Id                               5266
EmployeeName              BRIAN GREER
JobTitle            POLICE OFFICER II
BasePay                     106518.96
OvertimePay                   5865.01
OtherPay                      10491.3
Benefits                          NaN
TotalPay                    122875.27
TotalPayBenefits            122875.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5265, dtype: object)
(5266, Id                             5267
EmployeeName        TRISTAN LEVARDO
JobTitle                  MANAGER V
BasePay                   122873.23
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  122873.23
TotalPayBenefits          122873.23
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5266, dtype: object)
(5267, Id                                    5268
EmployeeName                  SEAN PASTORI
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.67
OvertimePay                        5925.62
OtherPay                          10501.97
Benefits                               NaN
TotalPay                         122869.26
TotalPayBenefits                 122869.26
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5267, dtype: object)
(5268, Id                                       5269
EmployeeName                       ERIC KONDO
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              90589.22
OvertimePay                           22191.7
OtherPay                             10086.92
Benefits                                  NaN
TotalPay                            122867.84
TotalPayBenefits                    122867.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5268, dtype: object)
(5269, Id                                5270
EmployeeName            KATHARINE COOK
JobTitle            POLICE OFFICER III
BasePay                      106040.76
OvertimePay                   16038.27
OtherPay                        787.86
Benefits                           NaN
TotalPay                     122866.89
TotalPayBenefits             122866.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5269, dtype: object)
(5270, Id                               5271
EmployeeName              TERENCE SAW
JobTitle            POLICE OFFICER II
BasePay                     102877.59
OvertimePay                  12755.74
OtherPay                      7232.39
Benefits                          NaN
TotalPay                    122865.72
TotalPayBenefits            122865.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5270, dtype: object)
(5271, Id                                5272
EmployeeName          ANGELINA SANCHEZ
JobTitle            POLICE OFFICER III
BasePay                      112339.04
OvertimePay                    7621.66
OtherPay                       2895.97
Benefits                           NaN
TotalPay                     122856.67
TotalPayBenefits             122856.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5271, dtype: object)
(5272, Id                                5273
EmployeeName           JENNIFER MARINO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5814.49
OtherPay                       4637.15
Benefits                           NaN
TotalPay                     122852.72
TotalPayBenefits             122852.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5272, dtype: object)
(5273, Id                                       5274
EmployeeName                   ANTHONY GRIECO
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                             114385.41
OvertimePay                               0.0
OtherPay                              8464.69
Benefits                                  NaN
TotalPay                             122850.1
TotalPayBenefits                     122850.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5273, dtype: object)
(5274, Id                                5275
EmployeeName             MARISA DUNCAN
JobTitle            NURSE PRACTITIONER
BasePay                      121442.72
OvertimePay                        0.0
OtherPay                        1400.0
Benefits                           NaN
TotalPay                     122842.72
TotalPayBenefits             122842.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5274, dtype: object)
(5275, Id                              5276
EmployeeName             BRENDA LONG
JobTitle            REGISTERED NURSE
BasePay                    102884.84
OvertimePay                  6987.55
OtherPay                     12970.2
Benefits                         NaN
TotalPay                   122842.59
TotalPayBenefits           122842.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5275, dtype: object)
(5276, Id                                5277
EmployeeName              SEAN DOHERTY
JobTitle            POLICE OFFICER III
BasePay                      112093.45
OvertimePay                     5015.2
OtherPay                       5730.45
Benefits                           NaN
TotalPay                      122839.1
TotalPayBenefits              122839.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5276, dtype: object)
(5277, Id                                                  5278
EmployeeName                                 EDDIE SZETO
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                          74932.0
OvertimePay                                     33041.53
OtherPay                                        14859.95
Benefits                                             NaN
TotalPay                                       122833.48
TotalPayBenefits                               122833.48
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 5277, dtype: object)
(5278, Id                              5279
EmployeeName          EMILIE CLEOFAS
JobTitle            REGISTERED NURSE
BasePay                    104185.58
OvertimePay                   4825.8
OtherPay                    13820.95
Benefits                         NaN
TotalPay                   122832.33
TotalPayBenefits           122832.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5278, dtype: object)
(5279, Id                                                5280
EmployeeName                                 KEVIN LEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.68
OvertimePay                                   36378.97
OtherPay                                       8858.96
Benefits                                           NaN
TotalPay                                     122818.61
TotalPayBenefits                             122818.61
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5279, dtype: object)
(5280, Id                              5281
EmployeeName                 JOHN HO
JobTitle            TRANSIT OPERATOR
BasePay                     67859.69
OvertimePay                 50143.43
OtherPay                     4805.15
Benefits                         NaN
TotalPay                   122808.27
TotalPayBenefits           122808.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5280, dtype: object)
(5281, Id                               5282
EmployeeName               JOHN LEONG
JobTitle            POLICE OFFICER II
BasePay                     110223.06
OvertimePay                   3512.44
OtherPay                      9067.69
Benefits                          NaN
TotalPay                    122803.19
TotalPayBenefits            122803.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5281, dtype: object)
(5282, Id                                5283
EmployeeName             TIMOTHY MOORE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6630.04
OtherPay                       3745.11
Benefits                           NaN
TotalPay                     122796.59
TotalPayBenefits             122796.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5282, dtype: object)
(5283, Id                               5284
EmployeeName        CELERINA VALIENTE
JobTitle                SPECIAL NURSE
BasePay                     106485.01
OvertimePay                       0.0
OtherPay                     16302.48
Benefits                          NaN
TotalPay                    122787.49
TotalPayBenefits            122787.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5283, dtype: object)
(5284, Id                                5285
EmployeeName         KIMBERLY KOLTZOFF
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    7646.57
OtherPay                       2717.71
Benefits                           NaN
TotalPay                     122765.35
TotalPayBenefits             122765.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5284, dtype: object)
(5285, Id                                5286
EmployeeName            ANDREW FROINES
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    4466.76
OtherPay                       5853.28
Benefits                           NaN
TotalPay                     122761.84
TotalPayBenefits             122761.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5285, dtype: object)
(5286, Id                             5287
EmployeeName        GEORGE NONOMURA
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                     0.0
OtherPay                   16826.79
Benefits                        NaN
TotalPay                  122761.48
TotalPayBenefits          122761.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5286, dtype: object)
(5287, Id                                5288
EmployeeName          LANCE MONTEVERDI
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    6597.51
OtherPay                       3719.51
Benefits                           NaN
TotalPay                     122758.84
TotalPayBenefits             122758.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5287, dtype: object)
(5288, Id                                 5289
EmployeeName              ROBERT BODLAK
JobTitle            IS PROJECT DIRECTOR
BasePay                       122758.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      122758.57
TotalPayBenefits              122758.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5288, dtype: object)
(5289, Id                                   5290
EmployeeName                ANJIE VERSHER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          87954.37
OvertimePay                      26825.11
OtherPay                          7974.94
Benefits                              NaN
TotalPay                        122754.42
TotalPayBenefits                122754.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5289, dtype: object)
(5290, Id                            5291
EmployeeName        JANA WAKEFIELD
JobTitle               FIREFIGHTER
BasePay                  105507.89
OvertimePay                 2588.9
OtherPay                  14646.68
Benefits                       NaN
TotalPay                 122743.47
TotalPayBenefits         122743.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5290, dtype: object)
(5291, Id                            5292
EmployeeName              DAVID NG
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay               26825.33
OtherPay                   9408.61
Benefits                       NaN
TotalPay                 122739.94
TotalPayBenefits         122739.94
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5291, dtype: object)
(5292, Id                              5293
EmployeeName        JENNIFER DICKSON
JobTitle            POLICE OFFICER I
BasePay                    104558.93
OvertimePay                  1392.11
OtherPay                     16772.8
Benefits                         NaN
TotalPay                   122723.84
TotalPayBenefits           122723.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5292, dtype: object)
(5293, Id                               5294
EmployeeName            SHAWN FULGADO
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                    818.27
OtherPay                     11670.63
Benefits                          NaN
TotalPay                    122711.97
TotalPayBenefits            122711.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5293, dtype: object)
(5294, Id                                5295
EmployeeName           GUILLERMO AMIGO
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                     4308.9
OtherPay                       5970.93
Benefits                           NaN
TotalPay                     122701.26
TotalPayBenefits             122701.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5294, dtype: object)
(5295, Id                                 5296
EmployeeName           MANUELITO REVELO
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    59166.91
OtherPay                        7650.27
Benefits                            NaN
TotalPay                      122697.18
TotalPayBenefits              122697.18
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5295, dtype: object)
(5296, Id                                5297
EmployeeName        CHRISTOPHER DAROZA
JobTitle            POLICE OFFICER III
BasePay                      112380.67
OvertimePay                    5344.32
OtherPay                       4965.84
Benefits                           NaN
TotalPay                     122690.83
TotalPayBenefits             122690.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5296, dtype: object)
(5297, Id                           5298
EmployeeName           HENRY CHOY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay                 90.84
OtherPay                 16663.39
Benefits                      NaN
TotalPay                122688.89
TotalPayBenefits        122688.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5297, dtype: object)
(5298, Id                            5299
EmployeeName        ALPHIE KRYSTOF
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                29861.5
OtherPay                   5985.31
Benefits                       NaN
TotalPay                 122686.81
TotalPayBenefits         122686.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5298, dtype: object)
(5299, Id                           5300
EmployeeName        CESAR GUILLEN
JobTitle              FIREFIGHTER
BasePay                 104942.39
OvertimePay               2343.03
OtherPay                 15397.54
Benefits                      NaN
TotalPay                122682.96
TotalPayBenefits        122682.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5299, dtype: object)
(5300, Id                                   5301
EmployeeName           SCOTT BERGSTRESSER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          88224.56
OvertimePay                      27930.86
OtherPay                           6524.4
Benefits                              NaN
TotalPay                        122679.82
TotalPayBenefits                122679.82
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5300, dtype: object)
(5301, Id                                                5302
EmployeeName                                NELSON TSE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   40894.66
OtherPay                                       4215.15
Benefits                                           NaN
TotalPay                                     122678.81
TotalPayBenefits                             122678.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5301, dtype: object)
(5302, Id                                5303
EmployeeName        ALEXANDRIA BRUNNER
JobTitle            POLICE OFFICER III
BasePay                      112441.81
OvertimePay                    1655.24
OtherPay                       8578.83
Benefits                           NaN
TotalPay                     122675.88
TotalPayBenefits             122675.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5302, dtype: object)
(5303, Id                           5304
EmployeeName          BREN TURNER
JobTitle            SPECIAL NURSE
BasePay                 122574.16
OvertimePay                   0.0
OtherPay                     91.6
Benefits                      NaN
TotalPay                122665.76
TotalPayBenefits        122665.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5303, dtype: object)
(5304, Id                                                   5305
EmployeeName                                   JOHNSON HO
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         122663.05
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        122663.05
TotalPayBenefits                                122663.05
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5304, dtype: object)
(5305, Id                                                   5306
EmployeeName                            LAURENCE SPILLANE
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         122663.04
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        122663.04
TotalPayBenefits                                122663.04
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5305, dtype: object)
(5306, Id                                                   5307
EmployeeName                               BRIAN CIAPPARA
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         122663.02
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        122663.02
TotalPayBenefits                                122663.02
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5306, dtype: object)
(5307, Id                              5308
EmployeeName          INDIRA DE LEON
JobTitle            REGISTERED NURSE
BasePay                     99523.34
OvertimePay                  5675.25
OtherPay                    17439.94
Benefits                         NaN
TotalPay                   122638.53
TotalPayBenefits           122638.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5307, dtype: object)
(5308, Id                              5309
EmployeeName           HAROLD RAGUDO
JobTitle            REGISTERED NURSE
BasePay                    104427.52
OvertimePay                  7254.93
OtherPay                    10950.83
Benefits                         NaN
TotalPay                   122633.28
TotalPayBenefits           122633.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5308, dtype: object)
(5309, Id                             5310
EmployeeName        CHRISTINA GIBBS
JobTitle                FIREFIGHTER
BasePay                   105934.64
OvertimePay                  276.89
OtherPay                   16415.84
Benefits                        NaN
TotalPay                  122627.37
TotalPayBenefits          122627.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5309, dtype: object)
(5310, Id                              5311
EmployeeName        ANGELICA BOILARD
JobTitle            REGISTERED NURSE
BasePay                    118777.95
OvertimePay                      0.0
OtherPay                     3849.32
Benefits                         NaN
TotalPay                   122627.27
TotalPayBenefits           122627.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5310, dtype: object)
(5311, Id                              5312
EmployeeName        ROBERT IMBELLINO
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                   7041.8
OtherPay                     9555.36
Benefits                         NaN
TotalPay                   122624.12
TotalPayBenefits           122624.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5311, dtype: object)
(5312, Id                                5313
EmployeeName          ANGELO ARTIFICIO
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.95
OvertimePay                    3002.11
OtherPay                      13914.44
Benefits                           NaN
TotalPay                      122614.5
TotalPayBenefits              122614.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5312, dtype: object)
(5313, Id                               5314
EmployeeName             AARON COWHIG
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                   5321.76
OtherPay                      7048.72
Benefits                          NaN
TotalPay                    122613.42
TotalPayBenefits            122613.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5313, dtype: object)
(5314, Id                                               5315
EmployeeName                            ANDREW MONERO
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       71905.8
OvertimePay                                  39100.31
OtherPay                                     11599.98
Benefits                                          NaN
TotalPay                                    122606.09
TotalPayBenefits                            122606.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5314, dtype: object)
(5315, Id                               5316
EmployeeName           NATHANIEL YUEN
JobTitle            POLICE OFFICER II
BasePay                     103643.59
OvertimePay                  11081.07
OtherPay                       7880.9
Benefits                          NaN
TotalPay                    122605.56
TotalPayBenefits            122605.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5315, dtype: object)
(5316, Id                                5317
EmployeeName         MICHAEL MADRIERES
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6459.55
OtherPay                       3722.74
Benefits                           NaN
TotalPay                     122603.73
TotalPayBenefits             122603.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5316, dtype: object)
(5317, Id                              5318
EmployeeName            CAROL MURRAY
JobTitle            REGISTERED NURSE
BasePay                    114438.21
OvertimePay                  3508.54
OtherPay                      4653.8
Benefits                         NaN
TotalPay                   122600.55
TotalPayBenefits           122600.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5317, dtype: object)
(5318, Id                               5319
EmployeeName             HERMAN DIGGS
JobTitle            POLICE OFFICER II
BasePay                     115145.04
OvertimePay                   5123.65
OtherPay                      2324.67
Benefits                          NaN
TotalPay                    122593.36
TotalPayBenefits            122593.36
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5318, dtype: object)
(5319, Id                                5320
EmployeeName              KEITH SINGER
JobTitle            POLICE OFFICER III
BasePay                      117299.16
OvertimePay                     397.65
OtherPay                       4893.86
Benefits                           NaN
TotalPay                     122590.67
TotalPayBenefits             122590.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5319, dtype: object)
(5320, Id                                                              5321
EmployeeName                                          LOUIS VALLERGA
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                   836.13
OtherPay                                                    16344.37
Benefits                                                         NaN
TotalPay                                                    122584.5
TotalPayBenefits                                            122584.5
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5320, dtype: object)
(5321, Id                                5322
EmployeeName             RENE GUERRERO
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                     6294.8
OtherPay                       3878.15
Benefits                           NaN
TotalPay                     122573.98
TotalPayBenefits             122573.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5321, dtype: object)
(5322, Id                              5323
EmployeeName        SAILING CHAN-SEW
JobTitle                  MANAGER IV
BasePay                     88494.01
OvertimePay                      0.0
OtherPay                    34070.19
Benefits                         NaN
TotalPay                    122564.2
TotalPayBenefits            122564.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5322, dtype: object)
(5323, Id                                            5324
EmployeeName                          FRANK SHREVE
JobTitle            APPRENTICE STATIONARY ENGINEER
BasePay                                   72048.61
OvertimePay                               44160.67
OtherPay                                   6333.92
Benefits                                       NaN
TotalPay                                  122543.2
TotalPayBenefits                          122543.2
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5323, dtype: object)
(5324, Id                               5325
EmployeeName              TRACY GREEN
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   9257.25
OtherPay                      3037.43
Benefits                          NaN
TotalPay                    122537.59
TotalPayBenefits            122537.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5324, dtype: object)
(5325, Id                                5326
EmployeeName               AUDREY TANG
JobTitle            NURSE PRACTITIONER
BasePay                      122006.46
OvertimePay                        0.0
OtherPay                        528.48
Benefits                           NaN
TotalPay                     122534.94
TotalPayBenefits             122534.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5325, dtype: object)
(5326, Id                                    5327
EmployeeName        JEANETTE DE-LOS-SANTOS
JobTitle                  REGISTERED NURSE
BasePay                          100760.01
OvertimePay                         6810.3
OtherPay                          14960.06
Benefits                               NaN
TotalPay                         122530.37
TotalPayBenefits                 122530.37
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5326, dtype: object)
(5327, Id                                               5328
EmployeeName                             YONG QUAN WU
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   13312.8
OtherPay                                     10190.09
Benefits                                          NaN
TotalPay                                    122517.29
TotalPayBenefits                            122517.29
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5327, dtype: object)
(5328, Id                                                          5329
EmployeeName                                  THANET CHANCHAREON
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                122419.43
OvertimePay                                                  0.0
OtherPay                                                    90.0
Benefits                                                     NaN
TotalPay                                               122509.43
TotalPayBenefits                                       122509.43
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5328, dtype: object)
(5329, Id                               5330
EmployeeName             IAN RICHARDS
JobTitle            POLICE OFFICER II
BasePay                     101615.99
OvertimePay                   4808.54
OtherPay                      16081.0
Benefits                          NaN
TotalPay                    122505.53
TotalPayBenefits            122505.53
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5329, dtype: object)
(5330, Id                                              5331
EmployeeName                          MICHAEL HUGHES
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     74128.15
OvertimePay                                 23478.48
OtherPay                                    24895.84
Benefits                                         NaN
TotalPay                                   122502.47
TotalPayBenefits                           122502.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5330, dtype: object)
(5331, Id                              5332
EmployeeName        NEILVIN LLORANDO
JobTitle            REGISTERED NURSE
BasePay                    101987.74
OvertimePay                  4752.84
OtherPay                     15751.8
Benefits                         NaN
TotalPay                   122492.38
TotalPayBenefits           122492.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5331, dtype: object)
(5332, Id                                 5333
EmployeeName        ANDREW MARTINEZ III
JobTitle                 DEPUTY SHERIFF
BasePay                         86840.0
OvertimePay                    29107.82
OtherPay                        6540.15
Benefits                            NaN
TotalPay                      122487.97
TotalPayBenefits              122487.97
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5332, dtype: object)
(5333, Id                                                            5334
EmployeeName                                            JASON QUAN
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER SUPERVISOR I
BasePay                                                   96201.62
OvertimePay                                               22984.94
OtherPay                                                   3300.33
Benefits                                                       NaN
TotalPay                                                 122486.89
TotalPayBenefits                                         122486.89
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 5333, dtype: object)
(5334, Id                                                            5335
EmployeeName                                        TERRANCE FAHEY
JobTitle            MANAGER VIII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  119314.95
OvertimePay                                                    0.0
OtherPay                                                    3170.8
Benefits                                                       NaN
TotalPay                                                 122485.75
TotalPayBenefits                                         122485.75
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 5334, dtype: object)
(5335, Id                                5336
EmployeeName               CALVIN CHOW
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    6991.03
OtherPay                       3068.69
Benefits                           NaN
TotalPay                     122481.17
TotalPayBenefits             122481.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5335, dtype: object)
(5336, Id                              5337
EmployeeName           SARA GHIRAWOO
JobTitle            REGISTERED NURSE
BasePay                    106149.57
OvertimePay                  3509.91
OtherPay                     12819.3
Benefits                         NaN
TotalPay                   122478.78
TotalPayBenefits           122478.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5336, dtype: object)
(5337, Id                                                  5338
EmployeeName                             RICHARD FONSECA
JobTitle            AUTOMOTIVE TRANSIT SHOP SUPERVISOR I
BasePay                                         110955.6
OvertimePay                                      8594.76
OtherPay                                          2922.0
Benefits                                             NaN
TotalPay                                       122472.36
TotalPayBenefits                               122472.36
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 5337, dtype: object)
(5338, Id                                       5339
EmployeeName                    JAMES KENNEDY
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              111203.2
OvertimePay                            672.59
OtherPay                              10576.0
Benefits                                  NaN
TotalPay                            122451.79
TotalPayBenefits                    122451.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5338, dtype: object)
(5339, Id                                              5340
EmployeeName                          JEFFREY CONLEY
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    104759.72
OvertimePay                                 10470.73
OtherPay                                     7215.69
Benefits                                         NaN
TotalPay                                   122446.14
TotalPayBenefits                           122446.14
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5339, dtype: object)
(5340, Id                                5341
EmployeeName           LAXMAN DHARMANI
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    7450.04
OtherPay                        2571.4
Benefits                           NaN
TotalPay                     122442.87
TotalPayBenefits             122442.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5340, dtype: object)
(5341, Id                           5342
EmployeeName           MARC LOPEZ
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay               3167.21
OtherPay                 13335.22
Benefits                      NaN
TotalPay                122437.14
TotalPayBenefits        122437.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5341, dtype: object)
(5342, Id                              5343
EmployeeName         LESLIE MACROHON
JobTitle            REGISTERED NURSE
BasePay                    103278.74
OvertimePay                  4637.48
OtherPay                    14519.06
Benefits                         NaN
TotalPay                   122435.28
TotalPayBenefits           122435.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5342, dtype: object)
(5343, Id                            5344
EmployeeName        MICHAEL TYMOFF
JobTitle                 MANAGER V
BasePay                  121685.18
OvertimePay                    0.0
OtherPay                    745.19
Benefits                       NaN
TotalPay                 122430.37
TotalPayBenefits         122430.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5343, dtype: object)
(5344, Id                            5345
EmployeeName        KATHLEEN PRICE
JobTitle                  ENGINEER
BasePay                  120937.08
OvertimePay                    0.0
OtherPay                   1488.72
Benefits                       NaN
TotalPay                  122425.8
TotalPayBenefits          122425.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5344, dtype: object)
(5345, Id                                5346
EmployeeName           STEVEN MAIONCHI
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6040.35
OtherPay                       3963.14
Benefits                           NaN
TotalPay                     122424.93
TotalPayBenefits             122424.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5345, dtype: object)
(5346, Id                              5347
EmployeeName        GEOFFREY CLAYTON
JobTitle                 FIREFIGHTER
BasePay                    105934.68
OvertimePay                   343.73
OtherPay                    16138.22
Benefits                         NaN
TotalPay                   122416.63
TotalPayBenefits           122416.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5346, dtype: object)
(5347, Id                                  5348
EmployeeName              AUSTIN STENGER
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          74375.7
OvertimePay                     42857.01
OtherPay                          5168.5
Benefits                             NaN
TotalPay                       122401.21
TotalPayBenefits               122401.21
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5347, dtype: object)
(5348, Id                                 5349
EmployeeName                  LINDA RAY
JobTitle            PUBLIC HEALTH NURSE
BasePay                       116871.05
OvertimePay                         0.0
OtherPay                        5518.48
Benefits                            NaN
TotalPay                      122389.53
TotalPayBenefits              122389.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5348, dtype: object)
(5349, Id                                5350
EmployeeName            DANIEL FOGARTY
JobTitle            POLICE OFFICER III
BasePay                       112433.4
OvertimePay                    2565.69
OtherPay                       7385.04
Benefits                           NaN
TotalPay                     122384.13
TotalPayBenefits             122384.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5349, dtype: object)
(5350, Id                                    5351
EmployeeName        TAMARA EDELSTEIN-GOWAN
JobTitle                       MANAGER III
BasePay                          117377.13
OvertimePay                            0.0
OtherPay                            5000.0
Benefits                               NaN
TotalPay                         122377.13
TotalPayBenefits                 122377.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5350, dtype: object)
(5351, Id                                5352
EmployeeName              JESUS SIGALA
JobTitle            TRANSIT SUPERVISOR
BasePay                       90051.85
OvertimePay                   27639.98
OtherPay                       4676.75
Benefits                           NaN
TotalPay                     122368.58
TotalPayBenefits             122368.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5351, dtype: object)
(5352, Id                            5353
EmployeeName        RICHARD GRAHAM
JobTitle                  ENGINEER
BasePay                  121248.98
OvertimePay                    0.0
OtherPay                   1085.05
Benefits                       NaN
TotalPay                 122334.03
TotalPayBenefits         122334.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5352, dtype: object)
(5353, Id                                       5354
EmployeeName                   DAVID MITCHELL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             122315.51
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            122315.51
TotalPayBenefits                    122315.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5353, dtype: object)
(5354, Id                               5355
EmployeeName          CHANDRA JOHNSON
JobTitle            POLICE OFFICER II
BasePay                     102621.15
OvertimePay                   8556.12
OtherPay                     11129.05
Benefits                          NaN
TotalPay                    122306.32
TotalPayBenefits            122306.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5354, dtype: object)
(5355, Id                                5356
EmployeeName        MARIS GOLDSBOROUGH
JobTitle              POLICE OFFICER I
BasePay                      106276.96
OvertimePay                    5145.02
OtherPay                      10881.94
Benefits                           NaN
TotalPay                     122303.92
TotalPayBenefits             122303.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5355, dtype: object)
(5356, Id                                5357
EmployeeName                KELLY PAUL
JobTitle            POLICE OFFICER III
BasePay                      109090.58
OvertimePay                     964.63
OtherPay                      12245.23
Benefits                           NaN
TotalPay                     122300.44
TotalPayBenefits             122300.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5356, dtype: object)
(5357, Id                            5358
EmployeeName        ANDREW MALONEY
JobTitle                 ARCHITECT
BasePay                   120937.0
OvertimePay                    0.0
OtherPay                   1350.55
Benefits                       NaN
TotalPay                 122287.55
TotalPayBenefits         122287.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5357, dtype: object)
(5358, Id                              5359
EmployeeName           LAURIS JENSEN
JobTitle            REGISTERED NURSE
BasePay                    122018.78
OvertimePay                      0.0
OtherPay                       256.1
Benefits                         NaN
TotalPay                   122274.88
TotalPayBenefits           122274.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5358, dtype: object)
(5359, Id                                5360
EmployeeName             JONATHAN FONG
JobTitle            POLICE OFFICER III
BasePay                      112401.04
OvertimePay                    6805.43
OtherPay                       3068.24
Benefits                           NaN
TotalPay                     122274.71
TotalPayBenefits             122274.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5359, dtype: object)
(5360, Id                                5361
EmployeeName               FRANK DRAGO
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      122274.6
TotalPayBenefits              122274.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5360, dtype: object)
(5361, Id                                5362
EmployeeName           CATHERINE LYONS
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      122274.6
TotalPayBenefits              122274.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5361, dtype: object)
(5362, Id                                5363
EmployeeName                SUE KAPLAN
JobTitle            COURT COMMISSIONER
BasePay                       122274.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      122274.6
TotalPayBenefits              122274.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5362, dtype: object)
(5363, Id                                    5364
EmployeeName             KRISTOFER HETLAND
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106403.37
OvertimePay                        6786.98
OtherPay                           9077.37
Benefits                               NaN
TotalPay                         122267.72
TotalPayBenefits                 122267.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5363, dtype: object)
(5364, Id                                              5365
EmployeeName                          MOZEL KITTLING
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73457.99
OvertimePay                                 46325.84
OtherPay                                      2480.5
Benefits                                         NaN
TotalPay                                   122264.33
TotalPayBenefits                           122264.33
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5364, dtype: object)
(5365, Id                               5366
EmployeeName        KIMBERLY MCKINNEY
JobTitle             REGISTERED NURSE
BasePay                      98134.34
OvertimePay                    7238.7
OtherPay                     16887.52
Benefits                          NaN
TotalPay                    122260.56
TotalPayBenefits            122260.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5365, dtype: object)
(5366, Id                           5367
EmployeeName            DENNIS SY
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay                   0.0
OtherPay                 16320.02
Benefits                      NaN
TotalPay                122254.68
TotalPayBenefits        122254.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5366, dtype: object)
(5367, Id                              5368
EmployeeName        ROSEMARIE ALBANO
JobTitle            REGISTERED NURSE
BasePay                     112034.0
OvertimePay                   3872.1
OtherPay                     6331.24
Benefits                         NaN
TotalPay                   122237.34
TotalPayBenefits           122237.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5367, dtype: object)
(5368, Id                                                  5369
EmployeeName                                   WOON WONG
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                         111770.0
OvertimePay                                       9513.6
OtherPay                                          941.07
Benefits                                             NaN
TotalPay                                       122224.67
TotalPayBenefits                               122224.67
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 5368, dtype: object)
(5369, Id                                                          5370
EmployeeName                                          JAY PRIMUS
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 122217.4
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                122217.4
TotalPayBenefits                                        122217.4
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5369, dtype: object)
(5370, Id                                                          5371
EmployeeName                                      JOHANNA PARTIN
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                122205.68
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               122205.68
TotalPayBenefits                                       122205.68
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5370, dtype: object)
(5371, Id                                       5372
EmployeeName                   JEFFREY ECKBER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             122194.46
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            122194.46
TotalPayBenefits                    122194.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5371, dtype: object)
(5372, Id                                 5373
EmployeeName                ERIC CARTER
JobTitle            IS PROJECT DIRECTOR
BasePay                       122193.61
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      122193.61
TotalPayBenefits              122193.61
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5372, dtype: object)
(5373, Id                            5374
EmployeeName        FELIX LABUNSKY
JobTitle                MANAGER IV
BasePay                  122183.75
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 122183.75
TotalPayBenefits         122183.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5373, dtype: object)
(5374, Id                               5375
EmployeeName        MATTHEW ZLATUNICH
JobTitle                  FIREFIGHTER
BasePay                     105934.69
OvertimePay                   1625.13
OtherPay                     14622.37
Benefits                          NaN
TotalPay                    122182.19
TotalPayBenefits            122182.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5374, dtype: object)
(5375, Id                               5376
EmployeeName             SEAN MCGUIRE
JobTitle            POLICE OFFICER II
BasePay                     110203.18
OvertimePay                   5172.11
OtherPay                      6782.06
Benefits                          NaN
TotalPay                    122157.35
TotalPayBenefits            122157.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5375, dtype: object)
(5376, Id                                       5377
EmployeeName                      CARLA GOMEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             122148.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            122148.04
TotalPayBenefits                    122148.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5376, dtype: object)
(5377, Id                                5378
EmployeeName              RICHARD ROJA
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.59
OvertimePay                    7913.93
OtherPay                       8124.46
Benefits                           NaN
TotalPay                     122144.98
TotalPayBenefits             122144.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5377, dtype: object)
(5378, Id                               5379
EmployeeName           MATTHEW REITER
JobTitle            POLICE OFFICER II
BasePay                     110242.92
OvertimePay                  10910.06
OtherPay                       988.26
Benefits                          NaN
TotalPay                    122141.24
TotalPayBenefits            122141.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5378, dtype: object)
(5379, Id                              5380
EmployeeName           NIDA TORRIJOS
JobTitle            REGISTERED NURSE
BasePay                    102499.89
OvertimePay                  4679.88
OtherPay                    14959.85
Benefits                         NaN
TotalPay                   122139.62
TotalPayBenefits           122139.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5379, dtype: object)
(5380, Id                           5381
EmployeeName           JASON WONG
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay                   0.0
OtherPay                  16198.2
Benefits                      NaN
TotalPay                122132.86
TotalPayBenefits        122132.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5380, dtype: object)
(5381, Id                                5382
EmployeeName           MARCO DESANGLES
JobTitle            POLICE OFFICER III
BasePay                      112410.97
OvertimePay                    4352.28
OtherPay                       5367.05
Benefits                           NaN
TotalPay                      122130.3
TotalPayBenefits              122130.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5381, dtype: object)
(5382, Id                                   5383
EmployeeName                    JUDY WONG
JobTitle            SUPERVISING PURCHASER
BasePay                         122111.03
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        122111.03
TotalPayBenefits                122111.03
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5382, dtype: object)
(5383, Id                               5384
EmployeeName             SIU NGOR TOM
JobTitle            POLICE OFFICER II
BasePay                     110203.18
OvertimePay                   4409.53
OtherPay                      7497.92
Benefits                          NaN
TotalPay                    122110.63
TotalPayBenefits            122110.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5383, dtype: object)
(5384, Id                                   5385
EmployeeName        J FRANCISCO CERVANTES
JobTitle                  UTILITY PLUMBER
BasePay                          91188.31
OvertimePay                       14304.8
OtherPay                         16611.12
Benefits                              NaN
TotalPay                        122104.23
TotalPayBenefits                122104.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5384, dtype: object)
(5385, Id                                                        5386
EmployeeName                                    JAMES KERRIGAN
JobTitle            PRINCIPAL DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                              114874.06
OvertimePay                                                0.0
OtherPay                                                7221.8
Benefits                                                   NaN
TotalPay                                             122095.86
TotalPayBenefits                                     122095.86
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 5385, dtype: object)
(5386, Id                                5387
EmployeeName             FRANK MACHADO
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    7284.51
OtherPay                       2378.01
Benefits                           NaN
TotalPay                     122083.97
TotalPayBenefits             122083.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5386, dtype: object)
(5387, Id                              5388
EmployeeName           DAVID RADFORD
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  6580.93
OtherPay                     9452.78
Benefits                         NaN
TotalPay                   122079.78
TotalPayBenefits           122079.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5387, dtype: object)
(5388, Id                           5389
EmployeeName            NIXON LAM
JobTitle                PLANNER V
BasePay                 121006.62
OvertimePay                   0.0
OtherPay                   1070.0
Benefits                      NaN
TotalPay                122076.62
TotalPayBenefits        122076.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5388, dtype: object)
(5389, Id                                5390
EmployeeName                KEVIN WONG
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     6635.1
OtherPay                       3012.39
Benefits                           NaN
TotalPay                     122068.94
TotalPayBenefits             122068.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5389, dtype: object)
(5390, Id                               5391
EmployeeName        MARY GRACE ROBELO
JobTitle             REGISTERED NURSE
BasePay                      99333.09
OvertimePay                    7677.8
OtherPay                     15054.28
Benefits                          NaN
TotalPay                    122065.17
TotalPayBenefits            122065.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5390, dtype: object)
(5391, Id                                  5392
EmployeeName        THOMAS HAUSCARRIAGUE
JobTitle               POLICE OFFICER II
BasePay                          99144.5
OvertimePay                      8365.98
OtherPay                        14534.78
Benefits                             NaN
TotalPay                       122045.26
TotalPayBenefits               122045.26
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5391, dtype: object)
(5392, Id                              5393
EmployeeName               KATIE KIM
JobTitle            REGISTERED NURSE
BasePay                     98905.31
OvertimePay                  6752.39
OtherPay                     16387.1
Benefits                         NaN
TotalPay                    122044.8
TotalPayBenefits            122044.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5392, dtype: object)
(5393, Id                                5394
EmployeeName         LORRAINE LOMBARDO
JobTitle            POLICE OFFICER III
BasePay                       112400.9
OvertimePay                    4937.68
OtherPay                       4693.29
Benefits                           NaN
TotalPay                     122031.87
TotalPayBenefits             122031.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5393, dtype: object)
(5394, Id                                                       5395
EmployeeName                               RUDOLPH PANKRATIUS
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                              87345.66
OvertimePay                                          20919.22
OtherPay                                             13755.45
Benefits                                                  NaN
TotalPay                                            122020.33
TotalPayBenefits                                    122020.33
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 5394, dtype: object)
(5395, Id                           5396
EmployeeName            JIMMY YEE
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay                525.91
OtherPay                 15558.01
Benefits                      NaN
TotalPay                122018.58
TotalPayBenefits        122018.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5395, dtype: object)
(5396, Id                                                  5397
EmployeeName                                  DAVID CHAN
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                        109160.82
OvertimePay                                     12671.74
OtherPay                                           180.0
Benefits                                             NaN
TotalPay                                       122012.56
TotalPayBenefits                               122012.56
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 5396, dtype: object)
(5397, Id                               5398
EmployeeName        MICHAEL O'DONNELL
JobTitle             POLICE OFFICER I
BasePay                     100000.47
OvertimePay                   9368.51
OtherPay                     12641.77
Benefits                          NaN
TotalPay                    122010.75
TotalPayBenefits            122010.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5397, dtype: object)
(5398, Id                              5399
EmployeeName        JEANELLE MADISON
JobTitle            REGISTERED NURSE
BasePay                     96346.66
OvertimePay                 10002.65
OtherPay                    15659.82
Benefits                         NaN
TotalPay                   122009.13
TotalPayBenefits           122009.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5398, dtype: object)
(5399, Id                                       5400
EmployeeName                    OSIAS NAVARRO
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92861.5
OvertimePay                          27502.63
OtherPay                               1639.2
Benefits                                  NaN
TotalPay                            122003.33
TotalPayBenefits                    122003.33
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5399, dtype: object)
(5400, Id                              5401
EmployeeName           GREGORY LATUS
JobTitle            POLICE OFFICER I
BasePay                    106228.89
OvertimePay                 10008.91
OtherPay                     5759.38
Benefits                         NaN
TotalPay                   121997.18
TotalPayBenefits           121997.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5400, dtype: object)
(5401, Id                                5402
EmployeeName         CHRISTOPHER SMITH
JobTitle            POLICE OFFICER III
BasePay                      112421.18
OvertimePay                    4545.11
OtherPay                        5027.2
Benefits                           NaN
TotalPay                     121993.49
TotalPayBenefits             121993.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5401, dtype: object)
(5402, Id                              5403
EmployeeName          SALOME ESTEVES
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                  4697.69
OtherPay                     1408.72
Benefits                         NaN
TotalPay                   121988.41
TotalPayBenefits           121988.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5402, dtype: object)
(5403, Id                                  5404
EmployeeName           JOSEPH CARLEVARIS
JobTitle            PLUMBER SUPERVISOR I
BasePay                        102212.87
OvertimePay                      2636.66
OtherPay                        17123.72
Benefits                             NaN
TotalPay                       121973.25
TotalPayBenefits               121973.25
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5403, dtype: object)
(5404, Id                              5405
EmployeeName         STEPHEN HAMPTON
JobTitle            POLICE OFFICER I
BasePay                    106190.95
OvertimePay                  7604.06
OtherPay                     8174.66
Benefits                         NaN
TotalPay                   121969.67
TotalPayBenefits           121969.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5404, dtype: object)
(5405, Id                                      5406
EmployeeName                      JOHN AIRES
JobTitle            CHIEF BUILDING INSPECTOR
BasePay                            112418.25
OvertimePay                          3924.88
OtherPay                             5618.73
Benefits                                 NaN
TotalPay                           121961.86
TotalPayBenefits                   121961.86
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 5405, dtype: object)
(5406, Id                              5407
EmployeeName         KAREN HERNANDEZ
JobTitle            REGISTERED NURSE
BasePay                     97677.14
OvertimePay                      0.0
OtherPay                    24283.66
Benefits                         NaN
TotalPay                    121960.8
TotalPayBenefits            121960.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5406, dtype: object)
(5407, Id                           5408
EmployeeName           ALFRED YEM
JobTitle                 ENGINEER
BasePay                 120937.03
OvertimePay                   0.0
OtherPay                   1015.0
Benefits                      NaN
TotalPay                121952.03
TotalPayBenefits        121952.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5407, dtype: object)
(5408, Id                           5409
EmployeeName         BRUCE MCGURK
JobTitle                MANAGER V
BasePay                  99086.92
OvertimePay                   0.0
OtherPay                 22860.48
Benefits                      NaN
TotalPay                 121947.4
TotalPayBenefits         121947.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5408, dtype: object)
(5409, Id                                          5410
EmployeeName                      FRANK MAROVICH
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 94448.81
OvertimePay                             12778.07
OtherPay                                14710.38
Benefits                                     NaN
TotalPay                               121937.26
TotalPayBenefits                       121937.26
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 5409, dtype: object)
(5410, Id                                5411
EmployeeName          MATTHEW VALMONTE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    4371.11
OtherPay                       5164.41
Benefits                           NaN
TotalPay                      121936.6
TotalPayBenefits              121936.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5410, dtype: object)
(5411, Id                           5412
EmployeeName          JOSEPH HAAS
JobTitle                 ENGINEER
BasePay                 120937.08
OvertimePay                   0.0
OtherPay                   990.68
Benefits                      NaN
TotalPay                121927.76
TotalPayBenefits        121927.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5411, dtype: object)
(5412, Id                                                               5413
EmployeeName                                               HOPE QUINN
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      88320.55
OvertimePay                                                  14151.45
OtherPay                                                     19453.03
Benefits                                                          NaN
TotalPay                                                    121925.03
TotalPayBenefits                                            121925.03
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5412, dtype: object)
(5413, Id                              5414
EmployeeName            JULIO VARGAS
JobTitle            REGISTERED NURSE
BasePay                    115435.83
OvertimePay                    45.96
OtherPay                     6441.67
Benefits                         NaN
TotalPay                   121923.46
TotalPayBenefits           121923.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5413, dtype: object)
(5414, Id                              5415
EmployeeName           MATTHEW PARRA
JobTitle            POLICE OFFICER I
BasePay                     94557.22
OvertimePay                  7004.82
OtherPay                    20356.85
Benefits                         NaN
TotalPay                   121918.89
TotalPayBenefits           121918.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5414, dtype: object)
(5415, Id                                5416
EmployeeName             JULIO BANDONI
JobTitle            POLICE OFFICER III
BasePay                      112421.31
OvertimePay                    4732.02
OtherPay                       4765.03
Benefits                           NaN
TotalPay                     121918.36
TotalPayBenefits             121918.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5415, dtype: object)
(5416, Id                           5417
EmployeeName           SUSAN WORD
JobTitle            SPECIAL NURSE
BasePay                 101686.28
OvertimePay               9577.89
OtherPay                 10617.57
Benefits                      NaN
TotalPay                121881.74
TotalPayBenefits        121881.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5416, dtype: object)
(5417, Id                                   5418
EmployeeName                 AN-BINH PHAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                          99120.63
OvertimePay                           0.0
OtherPay                         22743.68
Benefits                              NaN
TotalPay                        121864.31
TotalPayBenefits                121864.31
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5417, dtype: object)
(5418, Id                                   5419
EmployeeName               KEVIN MACKSOUD
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.28
OvertimePay                      11815.83
OtherPay                         13783.87
Benefits                              NaN
TotalPay                        121853.98
TotalPayBenefits                121853.98
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5418, dtype: object)
(5419, Id                                              5420
EmployeeName                              ANNIE CHIU
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     68679.12
OvertimePay                                  50474.2
OtherPay                                     2697.03
Benefits                                         NaN
TotalPay                                   121850.35
TotalPayBenefits                           121850.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5419, dtype: object)
(5420, Id                                  5421
EmployeeName             KAUSHAL BHASKAR
JobTitle            IS ENGINEER - SENIOR
BasePay                        118765.02
OvertimePay                          0.0
OtherPay                         3082.61
Benefits                             NaN
TotalPay                       121847.63
TotalPayBenefits               121847.63
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5420, dtype: object)
(5421, Id                                   5422
EmployeeName                GEORGE CURTIS
JobTitle            IS ENGINEER - JOURNEY
BasePay                          107117.4
OvertimePay                           0.0
OtherPay                         14721.14
Benefits                              NaN
TotalPay                        121838.54
TotalPayBenefits                121838.54
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5421, dtype: object)
(5422, Id                           5423
EmployeeName              JAY ACH
JobTitle              MANAGER III
BasePay                  121836.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 121836.3
TotalPayBenefits         121836.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5422, dtype: object)
(5423, Id                              5424
EmployeeName        RAMON DELROSARIO
JobTitle              DEPUTY SHERIFF
BasePay                     86637.93
OvertimePay                 23245.49
OtherPay                    11943.27
Benefits                         NaN
TotalPay                   121826.69
TotalPayBenefits           121826.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5423, dtype: object)
(5424, Id                                5425
EmployeeName                WAYNE SATO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5286.81
OtherPay                       4133.42
Benefits                           NaN
TotalPay                     121821.31
TotalPayBenefits             121821.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5424, dtype: object)
(5425, Id                                  5426
EmployeeName        MAYNOR GONZALEZ CRUZ
JobTitle                REGISTERED NURSE
BasePay                         97859.76
OvertimePay                      7906.11
OtherPay                        16052.88
Benefits                             NaN
TotalPay                       121818.75
TotalPayBenefits               121818.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5425, dtype: object)
(5426, Id                              5427
EmployeeName           MAJELLA BURNS
JobTitle            REGISTERED NURSE
BasePay                     108806.7
OvertimePay                 10011.77
OtherPay                      2999.2
Benefits                         NaN
TotalPay                   121817.67
TotalPayBenefits           121817.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5426, dtype: object)
(5427, Id                                             5428
EmployeeName                           ANGELA SHING
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   121817.28
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  121817.28
TotalPayBenefits                          121817.28
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5427, dtype: object)
(5428, Id                                             5429
EmployeeName                            PATRICK COX
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   121817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  121817.04
TotalPayBenefits                          121817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5428, dtype: object)
(5429, Id                              5430
EmployeeName             JAMIE DWYER
JobTitle            REGISTERED NURSE
BasePay                     98454.16
OvertimePay                  5530.55
OtherPay                    17820.73
Benefits                         NaN
TotalPay                   121805.44
TotalPayBenefits           121805.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5429, dtype: object)
(5430, Id                              5431
EmployeeName            WAI-MING LAM
JobTitle            REGISTERED NURSE
BasePay                    119496.03
OvertimePay                      0.0
OtherPay                      2302.1
Benefits                         NaN
TotalPay                   121798.13
TotalPayBenefits           121798.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5430, dtype: object)
(5431, Id                                 5432
EmployeeName            VERONICA THORNE
JobTitle            PUBLIC HEALTH NURSE
BasePay                       115854.28
OvertimePay                         0.0
OtherPay                        5939.98
Benefits                            NaN
TotalPay                      121794.26
TotalPayBenefits              121794.26
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5431, dtype: object)
(5432, Id                              5433
EmployeeName           JOVY ELIZARDE
JobTitle            REGISTERED NURSE
BasePay                    106351.44
OvertimePay                  6411.42
OtherPay                     9024.95
Benefits                         NaN
TotalPay                   121787.81
TotalPayBenefits           121787.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5432, dtype: object)
(5433, Id                           5434
EmployeeName            SEAN ZAMB
JobTitle              FIREFIGHTER
BasePay                 105934.71
OvertimePay               1701.79
OtherPay                 14151.06
Benefits                      NaN
TotalPay                121787.56
TotalPayBenefits        121787.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5433, dtype: object)
(5434, Id                                  5435
EmployeeName             SHERYON WHEELER
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        120707.04
OvertimePay                          0.0
OtherPay                         1076.69
Benefits                             NaN
TotalPay                       121783.73
TotalPayBenefits               121783.73
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5434, dtype: object)
(5435, Id                                       5436
EmployeeName                  STEPHEN ZOLLMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             121783.12
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            121783.12
TotalPayBenefits                    121783.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5435, dtype: object)
(5436, Id                                                   5437
EmployeeName                                MIKE CARRASCO
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          75245.56
OvertimePay                                      46316.31
OtherPay                                           210.87
Benefits                                              NaN
TotalPay                                        121772.74
TotalPayBenefits                                121772.74
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5436, dtype: object)
(5437, Id                                5438
EmployeeName              LANCE MARTIN
JobTitle            POLICE OFFICER III
BasePay                      112325.54
OvertimePay                    4915.45
OtherPay                       4522.86
Benefits                           NaN
TotalPay                     121763.85
TotalPayBenefits             121763.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5437, dtype: object)
(5438, Id                              5439
EmployeeName          MARLON MALINIT
JobTitle            REGISTERED NURSE
BasePay                     100316.8
OvertimePay                  5675.25
OtherPay                    15770.31
Benefits                         NaN
TotalPay                   121762.36
TotalPayBenefits           121762.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5438, dtype: object)
(5439, Id                                5440
EmployeeName           REGINA BERRIGAN
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    6996.52
OtherPay                       2342.28
Benefits                           NaN
TotalPay                     121760.22
TotalPayBenefits             121760.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5439, dtype: object)
(5440, Id                                               5441
EmployeeName                                TAI VUONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      94124.54
OvertimePay                                  19475.99
OtherPay                                      8133.45
Benefits                                          NaN
TotalPay                                    121733.98
TotalPayBenefits                            121733.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5440, dtype: object)
(5441, Id                           5442
EmployeeName        DAVID JOHNSON
JobTitle              MANAGER III
BasePay                 121340.93
OvertimePay                   0.0
OtherPay                   392.82
Benefits                      NaN
TotalPay                121733.75
TotalPayBenefits        121733.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5441, dtype: object)
(5442, Id                                              5443
EmployeeName                          GEORGE FERRAEZ
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115962.14
OvertimePay                                  4124.43
OtherPay                                     1638.83
Benefits                                         NaN
TotalPay                                    121725.4
TotalPayBenefits                            121725.4
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5442, dtype: object)
(5443, Id                                5444
EmployeeName              MARK PITTMAN
JobTitle            TRANSIT SUPERVISOR
BasePay                       79994.68
OvertimePay                   29746.12
OtherPay                      11984.15
Benefits                           NaN
TotalPay                     121724.95
TotalPayBenefits             121724.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5443, dtype: object)
(5444, Id                                5445
EmployeeName        THEODORE CREIGHTON
JobTitle                   FIREFIGHTER
BasePay                      105934.68
OvertimePay                    5846.45
OtherPay                       9930.91
Benefits                           NaN
TotalPay                     121712.04
TotalPayBenefits             121712.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5444, dtype: object)
(5445, Id                                                5446
EmployeeName                           CONOR O'FARRELL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   35043.02
OtherPay                                       9097.32
Benefits                                           NaN
TotalPay                                     121709.34
TotalPayBenefits                             121709.34
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5445, dtype: object)
(5446, Id                                5447
EmployeeName          RICHARD TRUJILLO
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    3926.73
OtherPay                       5399.69
Benefits                           NaN
TotalPay                     121707.12
TotalPayBenefits             121707.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5446, dtype: object)
(5447, Id                              5448
EmployeeName          AMBROSE MERCER
JobTitle            TRANSIT OPERATOR
BasePay                      67304.7
OvertimePay                 52640.53
OtherPay                     1751.69
Benefits                         NaN
TotalPay                   121696.92
TotalPayBenefits           121696.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5447, dtype: object)
(5448, Id                            5449
EmployeeName        LORMITA NOFIES
JobTitle             SPECIAL NURSE
BasePay                  121671.58
OvertimePay                    0.0
OtherPay                     21.55
Benefits                       NaN
TotalPay                 121693.13
TotalPayBenefits         121693.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5448, dtype: object)
(5449, Id                               5450
EmployeeName        OMAR ALVARENGA JR
JobTitle             POLICE OFFICER I
BasePay                     100149.84
OvertimePay                   6607.26
OtherPay                     14934.19
Benefits                          NaN
TotalPay                    121691.29
TotalPayBenefits            121691.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5449, dtype: object)
(5450, Id                                      5451
EmployeeName                     JOSE ALBANO
JobTitle            FIRE PROTECTION ENGINEER
BasePay                            121147.63
OvertimePay                           537.64
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           121685.27
TotalPayBenefits                   121685.27
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 5450, dtype: object)
(5451, Id                                 5452
EmployeeName             DEBORAH LANDIS
JobTitle            DEPUTY DIRECTOR III
BasePay                       121671.78
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      121671.78
TotalPayBenefits              121671.78
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5451, dtype: object)
(5452, Id                            5453
EmployeeName           PATRICK SIU
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               22426.21
OtherPay                  12404.08
Benefits                       NaN
TotalPay                 121670.29
TotalPayBenefits         121670.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5452, dtype: object)
(5453, Id                                5454
EmployeeName             FABIAN FOWLER
JobTitle            POLICE OFFICER III
BasePay                      108565.18
OvertimePay                    7458.13
OtherPay                       5646.49
Benefits                           NaN
TotalPay                      121669.8
TotalPayBenefits              121669.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5453, dtype: object)
(5454, Id                                5455
EmployeeName                 MARC HIGA
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    5052.97
OtherPay                        4194.3
Benefits                           NaN
TotalPay                     121668.73
TotalPayBenefits             121668.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5454, dtype: object)
(5455, Id                                5456
EmployeeName            ALBERT ENCINAS
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    4490.43
OtherPay                       4768.38
Benefits                           NaN
TotalPay                     121659.87
TotalPayBenefits             121659.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5455, dtype: object)
(5456, Id                              5457
EmployeeName            RYAN DOHERTY
JobTitle            POLICE OFFICER I
BasePay                     99052.46
OvertimePay                 10539.64
OtherPay                    12059.52
Benefits                         NaN
TotalPay                   121651.62
TotalPayBenefits           121651.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5456, dtype: object)
(5457, Id                                 5458
EmployeeName               BERNICE HUEY
JobTitle            PUBLIC HEALTH NURSE
BasePay                       116776.29
OvertimePay                         0.0
OtherPay                        4874.95
Benefits                            NaN
TotalPay                      121651.24
TotalPayBenefits              121651.24
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5457, dtype: object)
(5458, Id                                5459
EmployeeName            MARGARET KORAN
JobTitle            TRANSIT SUPERVISOR
BasePay                       83788.67
OvertimePay                   33656.69
OtherPay                       4198.61
Benefits                           NaN
TotalPay                     121643.97
TotalPayBenefits             121643.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5458, dtype: object)
(5459, Id                              5460
EmployeeName           DONN PETERSON
JobTitle            POLICE OFFICER I
BasePay                     96704.34
OvertimePay                 12410.42
OtherPay                     12526.4
Benefits                         NaN
TotalPay                   121641.16
TotalPayBenefits           121641.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5459, dtype: object)
(5460, Id                               5461
EmployeeName        KRISTINE MIZUTANI
JobTitle             REGISTERED NURSE
BasePay                      96310.14
OvertimePay                  11347.97
OtherPay                      13981.7
Benefits                          NaN
TotalPay                    121639.81
TotalPayBenefits            121639.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5460, dtype: object)
(5461, Id                                              5462
EmployeeName                            FRANK TORRES
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                      67677.1
OvertimePay                                 50191.22
OtherPay                                     3764.07
Benefits                                         NaN
TotalPay                                   121632.39
TotalPayBenefits                           121632.39
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5461, dtype: object)
(5462, Id                               5463
EmployeeName             BRIAN COTTER
JobTitle            POLICE OFFICER II
BasePay                     110097.69
OvertimePay                   6185.66
OtherPay                      5326.61
Benefits                          NaN
TotalPay                    121609.96
TotalPayBenefits            121609.96
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5462, dtype: object)
(5463, Id                               5464
EmployeeName             MATTHEW LOYA
JobTitle            POLICE OFFICER II
BasePay                     103979.69
OvertimePay                   9349.23
OtherPay                       8279.1
Benefits                          NaN
TotalPay                    121608.02
TotalPayBenefits            121608.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5463, dtype: object)
(5464, Id                               5465
EmployeeName             TOM JANKOVIC
JobTitle            POLICE OFFICER II
BasePay                     110214.92
OvertimePay                   6352.93
OtherPay                      5035.61
Benefits                          NaN
TotalPay                    121603.46
TotalPayBenefits            121603.46
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5464, dtype: object)
(5465, Id                                5466
EmployeeName               LUIS TILLAN
JobTitle            POLICE OFFICER III
BasePay                      112401.16
OvertimePay                     6879.1
OtherPay                       2318.58
Benefits                           NaN
TotalPay                     121598.84
TotalPayBenefits             121598.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5465, dtype: object)
(5466, Id                           5467
EmployeeName        ANDREW MURRAY
JobTitle              MANAGER III
BasePay                 121596.32
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                121596.32
TotalPayBenefits        121596.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5466, dtype: object)
(5467, Id                                  5468
EmployeeName               JEFFREY RATTI
JobTitle            SHERIFF'S LIEUTENANT
BasePay                         95900.98
OvertimePay                      7854.66
OtherPay                        17823.66
Benefits                             NaN
TotalPay                        121579.3
TotalPayBenefits                121579.3
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5467, dtype: object)
(5468, Id                               5469
EmployeeName             ROBERT BYRNE
JobTitle            POLICE OFFICER II
BasePay                     110203.18
OvertimePay                   3466.15
OtherPay                      7908.92
Benefits                          NaN
TotalPay                    121578.25
TotalPayBenefits            121578.25
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5468, dtype: object)
(5469, Id                           5470
EmployeeName         JOHN FERRARI
JobTitle                  PLUMBER
BasePay                  88645.25
OvertimePay               31062.3
OtherPay                   1860.0
Benefits                      NaN
TotalPay                121567.55
TotalPayBenefits        121567.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5469, dtype: object)
(5470, Id                                    5471
EmployeeName                 ARMANDO LIMON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           98157.25
OvertimePay                       19036.64
OtherPay                           4367.02
Benefits                               NaN
TotalPay                         121560.91
TotalPayBenefits                 121560.91
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5470, dtype: object)
(5471, Id                                5472
EmployeeName             ELIZA NEWBOLD
JobTitle            NURSE PRACTITIONER
BasePay                      121386.98
OvertimePay                        0.0
OtherPay                        173.07
Benefits                           NaN
TotalPay                     121560.05
TotalPayBenefits             121560.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5471, dtype: object)
(5472, Id                                5473
EmployeeName           CARLOS CARRILLO
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                       4174.38
Benefits                           NaN
TotalPay                     121538.38
TotalPayBenefits             121538.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5472, dtype: object)
(5473, Id                                5474
EmployeeName          DANIEL GALLAGHER
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    3377.03
OtherPay                       5768.61
Benefits                           NaN
TotalPay                     121526.35
TotalPayBenefits             121526.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5473, dtype: object)
(5474, Id                                        5475
EmployeeName        ARCELITA DEL ROSARIO-CERVA
JobTitle                      REGISTERED NURSE
BasePay                               118467.4
OvertimePay                              698.6
OtherPay                               2351.38
Benefits                                   NaN
TotalPay                             121517.38
TotalPayBenefits                     121517.38
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5474, dtype: object)
(5475, Id                                5476
EmployeeName           JOHN LANFRANCHI
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    6012.66
OtherPay                       3068.61
Benefits                           NaN
TotalPay                     121502.71
TotalPayBenefits             121502.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5475, dtype: object)
(5476, Id                              5477
EmployeeName            BRANDI CLOSE
JobTitle            REGISTERED NURSE
BasePay                    100278.96
OvertimePay                   4540.2
OtherPay                    16681.13
Benefits                         NaN
TotalPay                   121500.29
TotalPayBenefits           121500.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5476, dtype: object)
(5477, Id                               5478
EmployeeName        CHAUNCEY FERGUSON
JobTitle                  FIREFIGHTER
BasePay                     105934.66
OvertimePay                    4838.2
OtherPay                     10714.43
Benefits                          NaN
TotalPay                    121487.29
TotalPayBenefits            121487.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5477, dtype: object)
(5478, Id                                       5479
EmployeeName                    OSNAT GABRIEL
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                              115148.7
OvertimePay                               0.0
OtherPay                              6336.08
Benefits                                  NaN
TotalPay                            121484.78
TotalPayBenefits                    121484.78
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5478, dtype: object)
(5479, Id                                         5480
EmployeeName                      HELENA LEINER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               121475.14
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              121475.14
TotalPayBenefits                      121475.14
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5479, dtype: object)
(5480, Id                              5481
EmployeeName         RICARDO ATENGCO
JobTitle            REGISTERED NURSE
BasePay                     98682.32
OvertimePay                  7945.35
OtherPay                    14843.33
Benefits                         NaN
TotalPay                    121471.0
TotalPayBenefits            121471.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5480, dtype: object)
(5481, Id                                  5482
EmployeeName                NAIMESH JAHA
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                         2770.54
Benefits                             NaN
TotalPay                       121462.55
TotalPayBenefits               121462.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5481, dtype: object)
(5482, Id                                       5483
EmployeeName                  LISA CULBERTSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              121444.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             121444.4
TotalPayBenefits                     121444.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5482, dtype: object)
(5483, Id                               5484
EmployeeName              STEVEN WOOD
JobTitle            POLICE OFFICER II
BasePay                     106490.55
OvertimePay                   8456.36
OtherPay                      6491.59
Benefits                          NaN
TotalPay                     121438.5
TotalPayBenefits             121438.5
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5483, dtype: object)
(5484, Id                           5485
EmployeeName            BILL WONG
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                   498.93
Benefits                      NaN
TotalPay                121436.03
TotalPayBenefits        121436.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5484, dtype: object)
(5485, Id                              5486
EmployeeName          LAURO BACA III
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  7037.48
OtherPay                     8346.86
Benefits                         NaN
TotalPay                   121430.42
TotalPayBenefits           121430.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5485, dtype: object)
(5486, Id                              5487
EmployeeName           RICHARD CHANG
JobTitle            TRANSIT OPERATOR
BasePay                     64913.58
OvertimePay                 53526.63
OtherPay                     2988.86
Benefits                         NaN
TotalPay                   121429.07
TotalPayBenefits           121429.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5486, dtype: object)
(5487, Id                                5488
EmployeeName        MARCO OLIVER LOPEZ
JobTitle                 SPECIAL NURSE
BasePay                      114045.71
OvertimePay                    4404.05
OtherPay                        2977.9
Benefits                           NaN
TotalPay                     121427.66
TotalPayBenefits             121427.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5487, dtype: object)
(5488, Id                           5489
EmployeeName        ROBERT MILICI
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay               6017.46
OtherPay                  9471.78
Benefits                      NaN
TotalPay                121423.92
TotalPayBenefits        121423.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5488, dtype: object)
(5489, Id                                5490
EmployeeName        CHRISTOPHER SERVAT
JobTitle             POLICE OFFICER II
BasePay                      102419.86
OvertimePay                    7512.43
OtherPay                      11489.14
Benefits                           NaN
TotalPay                     121421.43
TotalPayBenefits             121421.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5489, dtype: object)
(5490, Id                                5491
EmployeeName         REBECCA ROBERTSON
JobTitle            POLICE OFFICER III
BasePay                      112421.48
OvertimePay                    8178.68
OtherPay                        819.54
Benefits                           NaN
TotalPay                      121419.7
TotalPayBenefits              121419.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5490, dtype: object)
(5491, Id                              5492
EmployeeName        DOMINIK BARTOSIK
JobTitle                 ELECTRICIAN
BasePay                     88527.62
OvertimePay                 30522.56
OtherPay                      2349.9
Benefits                         NaN
TotalPay                   121400.08
TotalPayBenefits           121400.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5491, dtype: object)
(5492, Id                              5493
EmployeeName              JOSEPH FOX
JobTitle            REGISTERED NURSE
BasePay                     92497.55
OvertimePay                  13731.2
OtherPay                    15155.77
Benefits                         NaN
TotalPay                   121384.52
TotalPayBenefits           121384.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5492, dtype: object)
(5493, Id                                        5494
EmployeeName             DANIEL MORAN CARDENAS
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               99207.62
OvertimePay                            8594.88
OtherPay                               13564.3
Benefits                                   NaN
TotalPay                              121366.8
TotalPayBenefits                      121366.8
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5493, dtype: object)
(5494, Id                           5495
EmployeeName         DAVE DEJESUS
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               5406.47
OtherPay                 10023.08
Benefits                      NaN
TotalPay                121364.22
TotalPayBenefits        121364.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5494, dtype: object)
(5495, Id                               5496
EmployeeName        CHRISTINE DAVISON
JobTitle                   MANAGER II
BasePay                     114335.87
OvertimePay                       0.0
OtherPay                      7027.45
Benefits                          NaN
TotalPay                    121363.32
TotalPayBenefits            121363.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5495, dtype: object)
(5496, Id                                                       5497
EmployeeName                                      TROY HARRIS
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                              94501.21
OvertimePay                                          26029.26
OtherPay                                                826.5
Benefits                                                  NaN
TotalPay                                            121356.97
TotalPayBenefits                                    121356.97
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 5496, dtype: object)
(5497, Id                           5498
EmployeeName           NANCY CHIN
JobTitle              MANAGER III
BasePay                 121354.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                121354.02
TotalPayBenefits        121354.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5497, dtype: object)
(5498, Id                                         5499
EmployeeName                      VINCENT PEREZ
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                59663.78
OvertimePay                            13979.51
OtherPay                               47704.14
Benefits                                    NaN
TotalPay                              121347.43
TotalPayBenefits                      121347.43
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5498, dtype: object)
(5499, Id                                5500
EmployeeName          JAMES MCALLISTER
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2562.71
OtherPay                       6379.97
Benefits                           NaN
TotalPay                     121343.75
TotalPayBenefits             121343.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5499, dtype: object)
(5500, Id                              5501
EmployeeName          KAREN CASANOVA
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                     1847.56
Benefits                         NaN
TotalPay                   121343.56
TotalPayBenefits           121343.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5500, dtype: object)
(5501, Id                                 5502
EmployeeName        CORINNA NEUSTAETTER
JobTitle             NURSE PRACTITIONER
BasePay                       113629.07
OvertimePay                     2828.84
OtherPay                        4884.38
Benefits                            NaN
TotalPay                      121342.29
TotalPayBenefits              121342.29
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5501, dtype: object)
(5502, Id                                                      5503
EmployeeName                                    RICHARD POHL
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             87345.61
OvertimePay                                         18225.62
OtherPay                                            15762.84
Benefits                                                 NaN
TotalPay                                           121334.07
TotalPayBenefits                                   121334.07
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 5502, dtype: object)
(5503, Id                              5504
EmployeeName        MAXIMILIAN ROCHA
JobTitle                  MANAGER II
BasePay                    117058.64
OvertimePay                      0.0
OtherPay                     4268.39
Benefits                         NaN
TotalPay                   121327.03
TotalPayBenefits           121327.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5503, dtype: object)
(5504, Id                                5505
EmployeeName            MICHAEL RIVERA
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                      83.03
OtherPay                       8818.75
Benefits                           NaN
TotalPay                     121323.23
TotalPayBenefits             121323.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5504, dtype: object)
(5505, Id                           5506
EmployeeName         DONNA MARION
JobTitle              MANAGER III
BasePay                 121316.96
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                121316.96
TotalPayBenefits        121316.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5505, dtype: object)
(5506, Id                                5507
EmployeeName             DANIEL TOOMEY
JobTitle            POLICE OFFICER III
BasePay                      112952.83
OvertimePay                    5082.12
OtherPay                        3281.0
Benefits                           NaN
TotalPay                     121315.95
TotalPayBenefits             121315.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5506, dtype: object)
(5507, Id                                5508
EmployeeName           ROSEMARY CASTRO
JobTitle            POLICE OFFICER III
BasePay                      112421.47
OvertimePay                    5815.68
OtherPay                       3068.67
Benefits                           NaN
TotalPay                     121305.82
TotalPayBenefits             121305.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5507, dtype: object)
(5508, Id                              5509
EmployeeName          DOUGLAS MORRIN
JobTitle            REGISTERED NURSE
BasePay                    115320.98
OvertimePay                   2197.8
OtherPay                     3786.33
Benefits                         NaN
TotalPay                   121305.11
TotalPayBenefits           121305.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5508, dtype: object)
(5509, Id                                5510
EmployeeName        MARY ELLEN CARROLL
JobTitle                    MANAGER IV
BasePay                      121293.49
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     121293.49
TotalPayBenefits             121293.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5509, dtype: object)
(5510, Id                                5511
EmployeeName            KENNETH NIEMAN
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5815.68
OtherPay                       3068.28
Benefits                           NaN
TotalPay                     121285.04
TotalPayBenefits             121285.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5510, dtype: object)
(5511, Id                                       5512
EmployeeName                       MOLLIE LEE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             121281.72
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            121281.72
TotalPayBenefits                    121281.72
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5511, dtype: object)
(5512, Id                              5513
EmployeeName             LEV SHAPIRO
JobTitle            REGISTERED NURSE
BasePay                    113625.64
OvertimePay                  4267.59
OtherPay                     3376.86
Benefits                         NaN
TotalPay                   121270.09
TotalPayBenefits           121270.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5512, dtype: object)
(5513, Id                                5514
EmployeeName               KEVIN HEUER
JobTitle            SHERIFF'S SERGEANT
BasePay                      105326.54
OvertimePay                    6400.78
OtherPay                       9542.18
Benefits                           NaN
TotalPay                      121269.5
TotalPayBenefits              121269.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5513, dtype: object)
(5514, Id                                5515
EmployeeName                 RON OPHIR
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                     4085.0
OtherPay                       4794.23
Benefits                           NaN
TotalPay                     121259.94
TotalPayBenefits             121259.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5514, dtype: object)
(5515, Id                                5516
EmployeeName                 TERRY GAN
JobTitle            POLICE OFFICER III
BasePay                      112417.36
OvertimePay                     1052.8
OtherPay                       7781.78
Benefits                           NaN
TotalPay                     121251.94
TotalPayBenefits             121251.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5515, dtype: object)
(5516, Id                            5517
EmployeeName           PERCY GRANT
JobTitle            DEPUTY SHERIFF
BasePay                   86151.12
OvertimePay               24374.84
OtherPay                  10720.84
Benefits                       NaN
TotalPay                  121246.8
TotalPayBenefits          121246.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5516, dtype: object)
(5517, Id                               5518
EmployeeName           AZARIAS CASTRO
JobTitle            POLICE OFFICER II
BasePay                     103079.62
OvertimePay                    7360.9
OtherPay                     10801.19
Benefits                          NaN
TotalPay                    121241.71
TotalPayBenefits            121241.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5517, dtype: object)
(5518, Id                                   5519
EmployeeName             WILLIAM KELLEHER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96254.5
OvertimePay                      12952.32
OtherPay                         12031.75
Benefits                              NaN
TotalPay                        121238.57
TotalPayBenefits                121238.57
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5518, dtype: object)
(5519, Id                                                5520
EmployeeName                                WARREN YEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        54274.0
OvertimePay                                    14648.2
OtherPay                                      52313.64
Benefits                                           NaN
TotalPay                                     121235.84
TotalPayBenefits                             121235.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5519, dtype: object)
(5520, Id                              5521
EmployeeName         DAVID RODRIGUEZ
JobTitle            POLICE OFFICER I
BasePay                    106026.94
OvertimePay                  5432.85
OtherPay                     9765.19
Benefits                         NaN
TotalPay                   121224.98
TotalPayBenefits           121224.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5520, dtype: object)
(5521, Id                                 5522
EmployeeName               WEISHAO ZHOU
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73075.0
OvertimePay                    37619.32
OtherPay                       10528.51
Benefits                            NaN
TotalPay                      121222.83
TotalPayBenefits              121222.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5521, dtype: object)
(5522, Id                                                5523
EmployeeName                                 CHUNG MAK
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.69
OvertimePay                                   39169.43
OtherPay                                       4471.43
Benefits                                           NaN
TotalPay                                     121221.55
TotalPayBenefits                             121221.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5522, dtype: object)
(5523, Id                           5524
EmployeeName         THEODORE TOM
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay                   0.0
OtherPay                 15280.84
Benefits                      NaN
TotalPay                121215.53
TotalPayBenefits        121215.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5523, dtype: object)
(5524, Id                                                     5525
EmployeeName                                   GEORGE ENGEL
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           105443.46
OvertimePay                                         8155.04
OtherPay                                            7616.32
Benefits                                                NaN
TotalPay                                          121214.82
TotalPayBenefits                                  121214.82
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5524, dtype: object)
(5525, Id                                            5526
EmployeeName                         MARK ASHWORTH
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   83280.85
OvertimePay                               34979.07
OtherPay                                   2949.74
Benefits                                       NaN
TotalPay                                 121209.66
TotalPayBenefits                         121209.66
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5525, dtype: object)
(5526, Id                                5527
EmployeeName        LAWRENCE MCDONNELL
JobTitle                   FIREFIGHTER
BasePay                       105934.7
OvertimePay                    2144.99
OtherPay                      13121.02
Benefits                           NaN
TotalPay                     121200.71
TotalPayBenefits             121200.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5526, dtype: object)
(5527, Id                                                5528
EmployeeName                                JOHN LOUIE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   34041.82
OtherPay                                       9573.04
Benefits                                           NaN
TotalPay                                     121195.26
TotalPayBenefits                             121195.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5527, dtype: object)
(5528, Id                            5529
EmployeeName           EDWIN BALLI
JobTitle            DEPUTY SHERIFF
BasePay                   82812.81
OvertimePay               33599.34
OtherPay                   4776.11
Benefits                       NaN
TotalPay                 121188.26
TotalPayBenefits         121188.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5528, dtype: object)
(5529, Id                              5530
EmployeeName          THOMAS COFFARO
JobTitle            POLICE OFFICER I
BasePay                     96152.34
OvertimePay                   5937.3
OtherPay                     19087.2
Benefits                         NaN
TotalPay                   121176.84
TotalPayBenefits           121176.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5529, dtype: object)
(5530, Id                                    5531
EmployeeName             CHRISTOPHER BLAIR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105086.31
OvertimePay                        4280.49
OtherPay                          11808.05
Benefits                               NaN
TotalPay                         121174.85
TotalPayBenefits                 121174.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5530, dtype: object)
(5531, Id                              5532
EmployeeName            RICHARD WISE
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  6745.23
OtherPay                     8364.18
Benefits                         NaN
TotalPay                   121174.61
TotalPayBenefits           121174.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5531, dtype: object)
(5532, Id                                 5533
EmployeeName          BARBARA COCKERHAM
JobTitle            COURT ADMINISTRATOR
BasePay                       100370.11
OvertimePay                         0.0
OtherPay                       20803.23
Benefits                            NaN
TotalPay                      121173.34
TotalPayBenefits              121173.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5532, dtype: object)
(5533, Id                                5534
EmployeeName              JAMES WILSON
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    1374.27
OtherPay                       7374.95
Benefits                           NaN
TotalPay                     121170.65
TotalPayBenefits             121170.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5533, dtype: object)
(5534, Id                               5535
EmployeeName        CATALINA BUGAYONG
JobTitle             REGISTERED NURSE
BasePay                      115882.0
OvertimePay                   3342.75
OtherPay                      1943.79
Benefits                          NaN
TotalPay                    121168.54
TotalPayBenefits            121168.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5534, dtype: object)
(5535, Id                                        5536
EmployeeName                     LEONID GILLER
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               98972.06
OvertimePay                           10699.42
OtherPay                              11496.79
Benefits                                   NaN
TotalPay                             121168.27
TotalPayBenefits                     121168.27
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5535, dtype: object)
(5536, Id                               5537
EmployeeName            EILEEN CONNOR
JobTitle            POLICE OFFICER II
BasePay                     106085.43
OvertimePay                   9758.18
OtherPay                      5323.86
Benefits                          NaN
TotalPay                    121167.47
TotalPayBenefits            121167.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5536, dtype: object)
(5537, Id                                  5538
EmployeeName        ANNA KARINA PARANPAN
JobTitle                REGISTERED NURSE
BasePay                         97801.98
OvertimePay                      4301.45
OtherPay                         19054.0
Benefits                             NaN
TotalPay                       121157.43
TotalPayBenefits               121157.43
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5537, dtype: object)
(5538, Id                            5539
EmployeeName        LAMONTE FIELDS
JobTitle            DEPUTY SHERIFF
BasePay                   86506.05
OvertimePay                28164.2
OtherPay                   6478.61
Benefits                       NaN
TotalPay                 121148.86
TotalPayBenefits         121148.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5538, dtype: object)
(5539, Id                               5540
EmployeeName        GENEVIEVE VALERIO
JobTitle             REGISTERED NURSE
BasePay                     101495.09
OvertimePay                   4567.22
OtherPay                     15081.14
Benefits                          NaN
TotalPay                    121143.45
TotalPayBenefits            121143.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5539, dtype: object)
(5540, Id                            5541
EmployeeName        LOUISE HOUSTON
JobTitle               MANAGER III
BasePay                  121125.16
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 121125.16
TotalPayBenefits         121125.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5540, dtype: object)
(5541, Id                              5542
EmployeeName        LEOPOLDO SAUCEDA
JobTitle                 MANAGER III
BasePay                    121124.25
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   121124.25
TotalPayBenefits           121124.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5541, dtype: object)
(5542, Id                              5543
EmployeeName          LENNETH BALMES
JobTitle            REGISTERED NURSE
BasePay                    110690.56
OvertimePay                  4901.76
OtherPay                     5531.02
Benefits                         NaN
TotalPay                   121123.34
TotalPayBenefits           121123.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5542, dtype: object)
(5543, Id                            5544
EmployeeName           JASON MOORE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                23544.0
OtherPay                  10722.62
Benefits                       NaN
TotalPay                 121106.63
TotalPayBenefits         121106.63
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5543, dtype: object)
(5544, Id                                5545
EmployeeName              LOIS PERILLO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                     5636.6
OtherPay                       3068.27
Benefits                           NaN
TotalPay                     121105.95
TotalPayBenefits             121105.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5544, dtype: object)
(5545, Id                               5546
EmployeeName             ERIC TINDALL
JobTitle            POLICE OFFICER II
BasePay                     103399.96
OvertimePay                   7579.93
OtherPay                     10123.58
Benefits                          NaN
TotalPay                    121103.47
TotalPayBenefits            121103.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5545, dtype: object)
(5546, Id                              5547
EmployeeName                 EMMA WY
JobTitle            REGISTERED NURSE
BasePay                     99581.72
OvertimePay                   6810.3
OtherPay                    14697.42
Benefits                         NaN
TotalPay                   121089.44
TotalPayBenefits           121089.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5546, dtype: object)
(5547, Id                               5548
EmployeeName            PAUL YAMAMOTO
JobTitle            POLICE OFFICER II
BasePay                      110242.8
OvertimePay                   4283.47
OtherPay                      6558.42
Benefits                          NaN
TotalPay                    121084.69
TotalPayBenefits            121084.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5547, dtype: object)
(5548, Id                                5549
EmployeeName          MARK BRANDENBURG
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                    7575.15
OtherPay                       1058.66
Benefits                           NaN
TotalPay                     121075.63
TotalPayBenefits             121075.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5548, dtype: object)
(5549, Id                                 5550
EmployeeName        KATHRYN STEPHANIDES
JobTitle            PUBLIC HEALTH NURSE
BasePay                       115882.02
OvertimePay                         0.0
OtherPay                        5190.07
Benefits                            NaN
TotalPay                      121072.09
TotalPayBenefits              121072.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5549, dtype: object)
(5550, Id                                5551
EmployeeName           ALBERTINA PRINS
JobTitle            NURSE PRACTITIONER
BasePay                      118927.45
OvertimePay                        0.0
OtherPay                       2142.16
Benefits                           NaN
TotalPay                     121069.61
TotalPayBenefits             121069.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5550, dtype: object)
(5551, Id                           5552
EmployeeName        ALFONSO HERCE
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                    127.3
Benefits                      NaN
TotalPay                121064.32
TotalPayBenefits        121064.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5551, dtype: object)
(5552, Id                                5553
EmployeeName                EDGAR CHIN
JobTitle            POLICE OFFICER III
BasePay                      112411.16
OvertimePay                     199.27
OtherPay                       8451.03
Benefits                           NaN
TotalPay                     121061.46
TotalPayBenefits             121061.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5552, dtype: object)
(5553, Id                                5554
EmployeeName        JOSEPHINE BAUTISTA
JobTitle              REGISTERED NURSE
BasePay                       110045.0
OvertimePay                    2076.03
OtherPay                       8932.53
Benefits                           NaN
TotalPay                     121053.56
TotalPayBenefits             121053.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5553, dtype: object)
(5554, Id                                              5555
EmployeeName                            BARBARA FANG
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73986.02
OvertimePay                                 44542.81
OtherPay                                     2522.44
Benefits                                         NaN
TotalPay                                   121051.27
TotalPayBenefits                           121051.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5554, dtype: object)
(5555, Id                                                              5556
EmployeeName                                             RICHARD YEE
JobTitle            CHIEF STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                    101417.07
OvertimePay                                                      0.0
OtherPay                                                    19634.18
Benefits                                                         NaN
TotalPay                                                   121051.25
TotalPayBenefits                                           121051.25
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5555, dtype: object)
(5556, Id                              5557
EmployeeName              DEBRA COPE
JobTitle            REGISTERED NURSE
BasePay                    109958.84
OvertimePay                  3424.48
OtherPay                     7665.12
Benefits                         NaN
TotalPay                   121048.44
TotalPayBenefits           121048.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5556, dtype: object)
(5557, Id                                               5558
EmployeeName                              KENNETH LIM
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      99063.64
OvertimePay                                  12603.25
OtherPay                                      9370.31
Benefits                                          NaN
TotalPay                                     121037.2
TotalPayBenefits                             121037.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5557, dtype: object)
(5558, Id                                5559
EmployeeName             PAUL PETERSEN
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                        3672.2
Benefits                           NaN
TotalPay                      121036.2
TotalPayBenefits              121036.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5558, dtype: object)
(5559, Id                                5560
EmployeeName          MARY AYN ANTONIO
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                        3671.2
Benefits                           NaN
TotalPay                      121035.2
TotalPayBenefits              121035.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5559, dtype: object)
(5560, Id                                5561
EmployeeName             DAVID BANBURY
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                        3671.2
Benefits                           NaN
TotalPay                      121035.2
TotalPayBenefits              121035.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5560, dtype: object)
(5561, Id                           5562
EmployeeName        MOLLY PETRICK
JobTitle              MANAGER III
BasePay                  121028.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 121028.7
TotalPayBenefits         121028.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5561, dtype: object)
(5562, Id                                5563
EmployeeName             ANGELA ROUEDE
JobTitle            POLICE OFFICER III
BasePay                       109763.0
OvertimePay                    3196.63
OtherPay                       8067.75
Benefits                           NaN
TotalPay                     121027.38
TotalPayBenefits             121027.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5562, dtype: object)
(5563, Id                           5564
EmployeeName         DAMON CURTIS
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                     90.0
Benefits                      NaN
TotalPay                121027.09
TotalPayBenefits        121027.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5563, dtype: object)
(5564, Id                           5565
EmployeeName           EDDIE TSUI
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                     90.0
Benefits                      NaN
TotalPay                121027.05
TotalPayBenefits        121027.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5564, dtype: object)
(5565, Id                           5566
EmployeeName         BRITT TANNER
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                     90.0
Benefits                      NaN
TotalPay                121027.02
TotalPayBenefits        121027.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5565, dtype: object)
(5566, Id                                   5567
EmployeeName               WILLIAM COTTER
JobTitle            MAINTENANCE MACHINIST
BasePay                          75564.97
OvertimePay                      37267.07
OtherPay                           8186.1
Benefits                              NaN
TotalPay                        121018.14
TotalPayBenefits                121018.14
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5566, dtype: object)
(5567, Id                                5568
EmployeeName              EDWARD CAREW
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    5101.51
OtherPay                       3514.12
Benefits                           NaN
TotalPay                      121016.7
TotalPayBenefits              121016.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5567, dtype: object)
(5568, Id                              5569
EmployeeName           WILLIE HAYNES
JobTitle            POLICE OFFICER I
BasePay                    106046.06
OvertimePay                  4505.54
OtherPay                    10462.61
Benefits                         NaN
TotalPay                   121014.21
TotalPayBenefits           121014.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5568, dtype: object)
(5569, Id                            5570
EmployeeName         MICHAEL JONES
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               23652.47
OtherPay                  10520.84
Benefits                       NaN
TotalPay                 121013.33
TotalPayBenefits         121013.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5569, dtype: object)
(5570, Id                               5571
EmployeeName        CHRISTINA SERRANO
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                   3977.69
OtherPay                      6797.35
Benefits                          NaN
TotalPay                    120998.11
TotalPayBenefits            120998.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5570, dtype: object)
(5571, Id                                                   5572
EmployeeName                               MELODY SHERROD
JobTitle            COURT COMPUTER FACILITIES COORDINATOR
BasePay                                          120370.6
OvertimePay                                           0.0
OtherPay                                            624.0
Benefits                                              NaN
TotalPay                                         120994.6
TotalPayBenefits                                 120994.6
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 5571, dtype: object)
(5572, Id                                                     5573
EmployeeName                                   STEVEN JONES
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           100309.93
OvertimePay                                         12178.4
OtherPay                                            8505.52
Benefits                                                NaN
TotalPay                                          120993.85
TotalPayBenefits                                  120993.85
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5572, dtype: object)
(5573, Id                                         5574
EmployeeName                       ERIC JAMISON
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               120986.36
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              120986.36
TotalPayBenefits                      120986.36
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5573, dtype: object)
(5574, Id                                       5575
EmployeeName                     SETH MEISELS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             120972.77
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            120972.77
TotalPayBenefits                    120972.77
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5574, dtype: object)
(5575, Id                            5576
EmployeeName        MANITO VELASCO
JobTitle                  ENGINEER
BasePay                  120878.73
OvertimePay                    0.0
OtherPay                      90.0
Benefits                       NaN
TotalPay                 120968.73
TotalPayBenefits         120968.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5575, dtype: object)
(5576, Id                                 5577
EmployeeName                  STEVE LAI
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    57766.87
OtherPay                        7300.55
Benefits                            NaN
TotalPay                      120947.42
TotalPayBenefits              120947.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5576, dtype: object)
(5577, Id                             5578
EmployeeName        FATEEHA SHARIFF
JobTitle                 PHARMACIST
BasePay                   108376.87
OvertimePay                 4557.24
OtherPay                    8006.84
Benefits                        NaN
TotalPay                  120940.95
TotalPayBenefits          120940.95
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5577, dtype: object)
(5578, Id                                5579
EmployeeName              MARK LAHERTY
JobTitle            POLICE OFFICER III
BasePay                      112421.38
OvertimePay                     876.77
OtherPay                        7640.9
Benefits                           NaN
TotalPay                     120939.05
TotalPayBenefits             120939.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5578, dtype: object)
(5579, Id                                 5580
EmployeeName                 MARVIN YEE
JobTitle            LANDSCAPE ARCHITECT
BasePay                       120938.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      120938.57
TotalPayBenefits              120938.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5579, dtype: object)
(5580, Id                           5581
EmployeeName            SIMON TAM
JobTitle                 ENGINEER
BasePay                 120937.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.24
TotalPayBenefits        120937.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5580, dtype: object)
(5581, Id                           5582
EmployeeName          ROBERT CHUN
JobTitle                 ENGINEER
BasePay                  120937.2
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.2
TotalPayBenefits         120937.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5581, dtype: object)
(5582, Id                           5583
EmployeeName        JOSEPH FERRER
JobTitle                 ENGINEER
BasePay                 120937.19
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.19
TotalPayBenefits        120937.19
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5582, dtype: object)
(5583, Id                               5584
EmployeeName        ANGELITO CAMERINO
JobTitle                     ENGINEER
BasePay                     120937.17
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    120937.17
TotalPayBenefits            120937.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5583, dtype: object)
(5584, Id                           5585
EmployeeName          CARL FARSAI
JobTitle                 ENGINEER
BasePay                 120937.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.16
TotalPayBenefits        120937.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5584, dtype: object)
(5585, Id                           5586
EmployeeName           CHU-FEI HO
JobTitle                 ENGINEER
BasePay                 120937.15
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.15
TotalPayBenefits        120937.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5585, dtype: object)
(5586, Id                           5587
EmployeeName          EDMUND SHUM
JobTitle                ARCHITECT
BasePay                 120937.11
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.11
TotalPayBenefits        120937.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5586, dtype: object)
(5587, Id                            5588
EmployeeName        ERIC KJELSBERG
JobTitle                  ENGINEER
BasePay                  120937.11
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 120937.11
TotalPayBenefits         120937.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5587, dtype: object)
(5588, Id                           5589
EmployeeName            EDWARD HO
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.1
TotalPayBenefits         120937.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5588, dtype: object)
(5589, Id                           5590
EmployeeName        MICHAEL TSANG
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.1
TotalPayBenefits         120937.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5589, dtype: object)
(5590, Id                           5591
EmployeeName        CAROL DEGRACA
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.1
TotalPayBenefits         120937.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5590, dtype: object)
(5591, Id                           5592
EmployeeName            SAMUEL YU
JobTitle                 ENGINEER
BasePay                  120937.1
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.1
TotalPayBenefits         120937.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5591, dtype: object)
(5592, Id                           5593
EmployeeName        NARINDER SOOD
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.09
TotalPayBenefits        120937.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5592, dtype: object)
(5593, Id                           5594
EmployeeName           DANIEL KIM
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.09
TotalPayBenefits        120937.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5593, dtype: object)
(5594, Id                           5595
EmployeeName          KENNETH YEE
JobTitle                 ENGINEER
BasePay                 120937.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.09
TotalPayBenefits        120937.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5594, dtype: object)
(5595, Id                           5596
EmployeeName            KENT FORD
JobTitle                ARCHITECT
BasePay                 120937.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.08
TotalPayBenefits        120937.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5595, dtype: object)
(5596, Id                           5597
EmployeeName          LINDA LEONG
JobTitle                 ENGINEER
BasePay                 120937.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.08
TotalPayBenefits        120937.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5596, dtype: object)
(5597, Id                             5598
EmployeeName        WILLY HOI-C YAU
JobTitle                   ENGINEER
BasePay                   120937.08
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  120937.08
TotalPayBenefits          120937.08
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5597, dtype: object)
(5598, Id                           5599
EmployeeName          STACIE FENG
JobTitle                 ENGINEER
BasePay                 120937.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.08
TotalPayBenefits        120937.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5598, dtype: object)
(5599, Id                           5600
EmployeeName           ALBERT TOM
JobTitle                 ENGINEER
BasePay                 120937.07
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.07
TotalPayBenefits        120937.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5599, dtype: object)
(5600, Id                           5601
EmployeeName           STEVEN LEE
JobTitle                 ENGINEER
BasePay                 120937.07
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.07
TotalPayBenefits        120937.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5600, dtype: object)
(5601, Id                           5602
EmployeeName           JARED DUNN
JobTitle                 ENGINEER
BasePay                 120937.07
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.07
TotalPayBenefits        120937.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5601, dtype: object)
(5602, Id                             5603
EmployeeName        MICHAEL PIERRON
JobTitle                  ARCHITECT
BasePay                   120937.06
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  120937.06
TotalPayBenefits          120937.06
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5602, dtype: object)
(5603, Id                           5604
EmployeeName           STANLEY SO
JobTitle                ARCHITECT
BasePay                 120937.06
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.06
TotalPayBenefits        120937.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5603, dtype: object)
(5604, Id                           5605
EmployeeName         NELSON SZETO
JobTitle                ARCHITECT
BasePay                 120937.06
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.06
TotalPayBenefits        120937.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5604, dtype: object)
(5605, Id                           5606
EmployeeName          DENNIS DANG
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.05
TotalPayBenefits        120937.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5605, dtype: object)
(5606, Id                           5607
EmployeeName          LESLEY WONG
JobTitle                 ENGINEER
BasePay                 120937.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.05
TotalPayBenefits        120937.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5606, dtype: object)
(5607, Id                           5608
EmployeeName        AHMAD MOGHBEL
JobTitle                 ENGINEER
BasePay                 120937.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.04
TotalPayBenefits        120937.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5607, dtype: object)
(5608, Id                               5609
EmployeeName        STEPHEN OSULLIVAN
JobTitle                     ENGINEER
BasePay                     120937.04
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    120937.04
TotalPayBenefits            120937.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5608, dtype: object)
(5609, Id                           5610
EmployeeName           WALLIS LEE
JobTitle                 ENGINEER
BasePay                 120937.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.04
TotalPayBenefits        120937.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5609, dtype: object)
(5610, Id                           5611
EmployeeName            THOMAS LE
JobTitle                 ENGINEER
BasePay                 120937.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.03
TotalPayBenefits        120937.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5610, dtype: object)
(5611, Id                           5612
EmployeeName           GLENN HUNT
JobTitle                ARCHITECT
BasePay                 120937.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.03
TotalPayBenefits        120937.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5611, dtype: object)
(5612, Id                           5613
EmployeeName            ALICE YAN
JobTitle                 ENGINEER
BasePay                 120937.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.03
TotalPayBenefits        120937.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5612, dtype: object)
(5613, Id                                    5614
EmployeeName        MONGKOL MAHAVONGTRAKUL
JobTitle                          ENGINEER
BasePay                          120937.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                         120937.03
TotalPayBenefits                 120937.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5613, dtype: object)
(5614, Id                           5615
EmployeeName            TED LEUNG
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.02
TotalPayBenefits        120937.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5614, dtype: object)
(5615, Id                             5616
EmployeeName        STEVEN THOMAZIN
JobTitle                   ENGINEER
BasePay                   120937.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  120937.02
TotalPayBenefits          120937.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5615, dtype: object)
(5616, Id                           5617
EmployeeName           OLIVIA LEE
JobTitle                 ENGINEER
BasePay                 120937.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.02
TotalPayBenefits        120937.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5616, dtype: object)
(5617, Id                            5618
EmployeeName        SERGIO BARRAZA
JobTitle                  ENGINEER
BasePay                  120937.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 120937.02
TotalPayBenefits         120937.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5617, dtype: object)
(5618, Id                           5619
EmployeeName            LYNN FONG
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.01
TotalPayBenefits        120937.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5618, dtype: object)
(5619, Id                           5620
EmployeeName        DOUGLAS LIPPS
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.01
TotalPayBenefits        120937.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5619, dtype: object)
(5620, Id                           5621
EmployeeName          DAVID LEUNG
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.01
TotalPayBenefits        120937.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5620, dtype: object)
(5621, Id                           5622
EmployeeName           DAVID HUNG
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.01
TotalPayBenefits        120937.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5621, dtype: object)
(5622, Id                           5623
EmployeeName           HECTOR TAM
JobTitle                 ENGINEER
BasePay                 120937.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120937.01
TotalPayBenefits        120937.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5622, dtype: object)
(5623, Id                           5624
EmployeeName         RODOLFO PADA
JobTitle                 ENGINEER
BasePay                  120937.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.0
TotalPayBenefits         120937.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5623, dtype: object)
(5624, Id                           5625
EmployeeName           BRYANT WOO
JobTitle                 ENGINEER
BasePay                  120937.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.0
TotalPayBenefits         120937.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5624, dtype: object)
(5625, Id                           5626
EmployeeName           JOHN KWONG
JobTitle                 ENGINEER
BasePay                  120937.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120937.0
TotalPayBenefits         120937.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5625, dtype: object)
(5626, Id                             5627
EmployeeName        DAVID KRIKORIAN
JobTitle                FIREFIGHTER
BasePay                   105934.65
OvertimePay                  824.84
OtherPay                   14173.17
Benefits                        NaN
TotalPay                  120932.66
TotalPayBenefits          120932.66
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5626, dtype: object)
(5627, Id                                   5628
EmployeeName                RICHARD BURNS
JobTitle            PLUMBER SUPERVISOR II
BasePay                         111600.04
OvertimePay                       3749.09
OtherPay                           5580.1
Benefits                              NaN
TotalPay                        120929.23
TotalPayBenefits                120929.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5627, dtype: object)
(5628, Id                                 5629
EmployeeName        CATHERINE SPAULDING
JobTitle                    MANAGER III
BasePay                       120917.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      120917.36
TotalPayBenefits              120917.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5628, dtype: object)
(5629, Id                                          5630
EmployeeName                       JOHN MERCURIO
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                105100.12
OvertimePay                              4223.14
OtherPay                                11592.64
Benefits                                     NaN
TotalPay                                120915.9
TotalPayBenefits                        120915.9
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 5629, dtype: object)
(5630, Id                                5631
EmployeeName           CYNTHIA KULSTAD
JobTitle            POLICE OFFICER III
BasePay                       92554.05
OvertimePay                     497.78
OtherPay                      27858.25
Benefits                           NaN
TotalPay                     120910.08
TotalPayBenefits             120910.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5630, dtype: object)
(5631, Id                                                           5632
EmployeeName                                      GEORGE REYNOLDS
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 120668.54
OvertimePay                                                   0.0
OtherPay                                                    240.0
Benefits                                                      NaN
TotalPay                                                120908.54
TotalPayBenefits                                        120908.54
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 5631, dtype: object)
(5632, Id                               5633
EmployeeName          JEREMY CUMMINGS
JobTitle            POLICE OFFICER II
BasePay                     103426.72
OvertimePay                  10871.04
OtherPay                      6600.73
Benefits                          NaN
TotalPay                    120898.49
TotalPayBenefits            120898.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5632, dtype: object)
(5633, Id                                5634
EmployeeName           MICHAEL APODACA
JobTitle            POLICE OFFICER III
BasePay                      112420.96
OvertimePay                    5845.54
OtherPay                       2616.34
Benefits                           NaN
TotalPay                     120882.84
TotalPayBenefits             120882.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5633, dtype: object)
(5634, Id                                5635
EmployeeName               ROBERT BELT
JobTitle            POLICE OFFICER III
BasePay                      117298.98
OvertimePay                    2514.29
OtherPay                        1062.7
Benefits                           NaN
TotalPay                     120875.97
TotalPayBenefits             120875.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5634, dtype: object)
(5635, Id                           5636
EmployeeName        EDWIN GANOUNG
JobTitle              MANAGER III
BasePay                  120866.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 120866.7
TotalPayBenefits         120866.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5635, dtype: object)
(5636, Id                                        5637
EmployeeName                     DAVID CARROLL
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                           23433.58
OtherPay                              15376.28
Benefits                                   NaN
TotalPay                             120865.86
TotalPayBenefits                     120865.86
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5636, dtype: object)
(5637, Id                                5638
EmployeeName           MICHAEL FURUSHO
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                        0.0
OtherPay                       8443.03
Benefits                           NaN
TotalPay                     120864.47
TotalPayBenefits             120864.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5637, dtype: object)
(5638, Id                                 5639
EmployeeName             LAURA BERNABEI
JobTitle            CLAIMS INVESTIGATOR
BasePay                         94293.0
OvertimePay                    15166.26
OtherPay                        11394.6
Benefits                            NaN
TotalPay                      120853.86
TotalPayBenefits              120853.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5638, dtype: object)
(5639, Id                                5640
EmployeeName           REGINALD MCCRAY
JobTitle            TRANSIT SUPERVISOR
BasePay                       72091.02
OvertimePay                   45995.76
OtherPay                       2762.15
Benefits                           NaN
TotalPay                     120848.93
TotalPayBenefits             120848.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5639, dtype: object)
(5640, Id                              5641
EmployeeName           DANIEL OBRIEN
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  3396.98
OtherPay                    11403.88
Benefits                         NaN
TotalPay                   120846.94
TotalPayBenefits           120846.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5640, dtype: object)
(5641, Id                              5642
EmployeeName             CULBERT CHU
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  6750.97
OtherPay                     8029.22
Benefits                         NaN
TotalPay                   120845.39
TotalPayBenefits           120845.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5641, dtype: object)
(5642, Id                            5643
EmployeeName        ALLISON MORTON
JobTitle             SPECIAL NURSE
BasePay                  104337.02
OvertimePay                1219.84
OtherPay                   15278.5
Benefits                       NaN
TotalPay                 120835.36
TotalPayBenefits         120835.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5642, dtype: object)
(5643, Id                                5644
EmployeeName             DENNIS CESENA
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    5701.66
OtherPay                       2732.47
Benefits                           NaN
TotalPay                     120835.21
TotalPayBenefits             120835.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5643, dtype: object)
(5644, Id                              5645
EmployeeName              JOHN DIZON
JobTitle            POLICE OFFICER I
BasePay                    106585.67
OvertimePay                  7252.01
OtherPay                     6977.19
Benefits                         NaN
TotalPay                   120814.87
TotalPayBenefits           120814.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5644, dtype: object)
(5645, Id                                 5646
EmployeeName              LINO PELESASA
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    55896.78
OtherPay                        9034.94
Benefits                            NaN
TotalPay                      120811.72
TotalPayBenefits              120811.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5645, dtype: object)
(5646, Id                                 5647
EmployeeName             NYLETTE SAULOG
JobTitle            PUBLIC HEALTH NURSE
BasePay                       115882.04
OvertimePay                         0.0
OtherPay                         4922.6
Benefits                            NaN
TotalPay                      120804.64
TotalPayBenefits              120804.64
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5646, dtype: object)
(5647, Id                              5648
EmployeeName         VICTORIA DEVORE
JobTitle            REGISTERED NURSE
BasePay                    113504.16
OvertimePay                  1153.85
OtherPay                     6122.09
Benefits                         NaN
TotalPay                    120780.1
TotalPayBenefits            120780.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5647, dtype: object)
(5648, Id                              5649
EmployeeName              BYRON COBB
JobTitle            TRANSIT OPERATOR
BasePay                     69228.54
OvertimePay                  47524.9
OtherPay                     4024.21
Benefits                         NaN
TotalPay                   120777.65
TotalPayBenefits           120777.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5648, dtype: object)
(5649, Id                                   5650
EmployeeName                 SHANE ONEILL
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.79
OvertimePay                      14046.65
OtherPay                         10842.29
Benefits                              NaN
TotalPay                        120770.73
TotalPayBenefits                120770.73
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5649, dtype: object)
(5650, Id                                5651
EmployeeName              BRENT DAWSON
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    3209.93
OtherPay                       5144.56
Benefits                           NaN
TotalPay                     120755.55
TotalPayBenefits             120755.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5650, dtype: object)
(5651, Id                                       5652
EmployeeName                     JOHN DELGADO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             120740.96
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            120740.96
TotalPayBenefits                    120740.96
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5651, dtype: object)
(5652, Id                                   5653
EmployeeName                RICHIE OWYANG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96254.2
OvertimePay                       7755.85
OtherPay                         16727.11
Benefits                              NaN
TotalPay                        120737.16
TotalPayBenefits                120737.16
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5652, dtype: object)
(5653, Id                               5654
EmployeeName             BRIAN CRANNA
JobTitle            POLICE OFFICER II
BasePay                     104962.26
OvertimePay                   9458.16
OtherPay                      6315.39
Benefits                          NaN
TotalPay                    120735.81
TotalPayBenefits            120735.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5653, dtype: object)
(5654, Id                                              5655
EmployeeName                           ROBBIN BOYKIN
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73396.17
OvertimePay                                 43718.63
OtherPay                                     3616.76
Benefits                                         NaN
TotalPay                                   120731.56
TotalPayBenefits                           120731.56
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5654, dtype: object)
(5655, Id                                                5656
EmployeeName                        BENEDICT MILITANTE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   34948.19
OtherPay                                       8193.04
Benefits                                           NaN
TotalPay                                     120721.63
TotalPayBenefits                             120721.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5655, dtype: object)
(5656, Id                                          5657
EmployeeName                        MICHAEL HART
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                100417.24
OvertimePay                             14184.28
OtherPay                                  6118.7
Benefits                                     NaN
TotalPay                               120720.22
TotalPayBenefits                       120720.22
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 5656, dtype: object)
(5657, Id                                5658
EmployeeName         RAFAEL LABUTAN JR
JobTitle            POLICE OFFICER III
BasePay                      112421.33
OvertimePay                    4395.21
OtherPay                       3900.86
Benefits                           NaN
TotalPay                      120717.4
TotalPayBenefits              120717.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5657, dtype: object)
(5658, Id                           5659
EmployeeName          JULIA DYETT
JobTitle            SPECIAL NURSE
BasePay                  116454.8
OvertimePay                 417.9
OtherPay                  3844.68
Benefits                      NaN
TotalPay                120717.38
TotalPayBenefits        120717.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5658, dtype: object)
(5659, Id                               5660
EmployeeName        CHRISTOPHER BIRCH
JobTitle                    MANAGER I
BasePay                     110965.95
OvertimePay                       0.0
OtherPay                      9743.54
Benefits                          NaN
TotalPay                    120709.49
TotalPayBenefits            120709.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5659, dtype: object)
(5660, Id                              5661
EmployeeName         STEPHEN GRITSCH
JobTitle            POLICE OFFICER I
BasePay                     96495.08
OvertimePay                   9236.5
OtherPay                    14974.18
Benefits                         NaN
TotalPay                   120705.76
TotalPayBenefits           120705.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5660, dtype: object)
(5661, Id                              5662
EmployeeName           BI JIAN HUANG
JobTitle            REGISTERED NURSE
BasePay                     115882.0
OvertimePay                      0.0
OtherPay                     4822.63
Benefits                         NaN
TotalPay                   120704.63
TotalPayBenefits           120704.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5661, dtype: object)
(5662, Id                              5663
EmployeeName          RODRIGO LABSON
JobTitle            POLICE OFFICER I
BasePay                     99893.32
OvertimePay                 12825.61
OtherPay                     7969.81
Benefits                         NaN
TotalPay                   120688.74
TotalPayBenefits           120688.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5662, dtype: object)
(5663, Id                                       5664
EmployeeName                       ALICE GIES
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                               99020.6
OvertimePay                          12647.97
OtherPay                              9009.55
Benefits                                  NaN
TotalPay                            120678.12
TotalPayBenefits                    120678.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5663, dtype: object)
(5664, Id                              5665
EmployeeName          KIMBERLY SEGNA
JobTitle            REGISTERED NURSE
BasePay                     96780.74
OvertimePay                  5461.35
OtherPay                    18431.76
Benefits                         NaN
TotalPay                   120673.85
TotalPayBenefits           120673.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5664, dtype: object)
(5665, Id                                    5666
EmployeeName           JOAQUINN VILLARREAL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          103145.52
OvertimePay                         5411.1
OtherPay                          12114.71
Benefits                               NaN
TotalPay                         120671.33
TotalPayBenefits                 120671.33
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5665, dtype: object)
(5666, Id                               5667
EmployeeName              DEREK BROWN
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   5653.52
OtherPay                      4763.68
Benefits                          NaN
TotalPay                    120660.11
TotalPayBenefits            120660.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5666, dtype: object)
(5667, Id                               5668
EmployeeName              MARK MONPAS
JobTitle            POLICE OFFICER II
BasePay                      110262.8
OvertimePay                   5161.63
OtherPay                      5232.02
Benefits                          NaN
TotalPay                    120656.45
TotalPayBenefits            120656.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5667, dtype: object)
(5668, Id                               5669
EmployeeName           RAIN DAUGHERTY
JobTitle            POLICE OFFICER II
BasePay                     110242.78
OvertimePay                   5243.78
OtherPay                      5169.49
Benefits                          NaN
TotalPay                    120656.05
TotalPayBenefits            120656.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5668, dtype: object)
(5669, Id                                        5670
EmployeeName                         LARRY LUI
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103971.4
OvertimePay                            4950.18
OtherPay                              11733.65
Benefits                                   NaN
TotalPay                             120655.23
TotalPayBenefits                     120655.23
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5669, dtype: object)
(5670, Id                                5671
EmployeeName           BARBARA PINELLI
JobTitle            POLICE OFFICER III
BasePay                      112380.72
OvertimePay                    4361.53
OtherPay                        3912.7
Benefits                           NaN
TotalPay                     120654.95
TotalPayBenefits             120654.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5670, dtype: object)
(5671, Id                                5672
EmployeeName            ALAN WURDINGER
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                     647.63
OtherPay                       7601.41
Benefits                           NaN
TotalPay                     120650.11
TotalPayBenefits             120650.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5671, dtype: object)
(5672, Id                                5673
EmployeeName         MICHAEL CAVANAUGH
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    2966.63
OtherPay                       5253.53
Benefits                           NaN
TotalPay                     120641.61
TotalPayBenefits             120641.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5672, dtype: object)
(5673, Id                                 5674
EmployeeName              ROLANDO NARAG
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    56172.77
OtherPay                        8580.17
Benefits                            NaN
TotalPay                      120632.94
TotalPayBenefits              120632.94
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5673, dtype: object)
(5674, Id                                 5675
EmployeeName        MARIA MOLINA-HANLEY
JobTitle            PUBLIC HEALTH NURSE
BasePay                       114711.56
OvertimePay                         0.0
OtherPay                        5917.72
Benefits                            NaN
TotalPay                      120629.28
TotalPayBenefits              120629.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5674, dtype: object)
(5675, Id                              5676
EmployeeName           JOHN DONNELLY
JobTitle            REGISTERED NURSE
BasePay                    108879.25
OvertimePay                  6790.59
OtherPay                     4952.16
Benefits                         NaN
TotalPay                    120622.0
TotalPayBenefits            120622.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5675, dtype: object)
(5676, Id                              5677
EmployeeName         ILEANA BURLESON
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                      1125.0
Benefits                         NaN
TotalPay                    120621.0
TotalPayBenefits            120621.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5676, dtype: object)
(5677, Id                                5678
EmployeeName            MILTON ANDALUZ
JobTitle            POLICE OFFICER III
BasePay                      112380.72
OvertimePay                    2930.33
OtherPay                       5307.68
Benefits                           NaN
TotalPay                     120618.73
TotalPayBenefits             120618.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5677, dtype: object)
(5678, Id                           5679
EmployeeName             JOHN LEE
JobTitle              STEAMFITTER
BasePay                   90461.8
OvertimePay              30142.64
OtherPay                     13.5
Benefits                      NaN
TotalPay                120617.94
TotalPayBenefits        120617.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5678, dtype: object)
(5679, Id                               5680
EmployeeName              MAGNUS CHOW
JobTitle            POLICE OFFICER II
BasePay                     103975.81
OvertimePay                   6909.31
OtherPay                      9729.47
Benefits                          NaN
TotalPay                    120614.59
TotalPayBenefits            120614.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5679, dtype: object)
(5680, Id                                5681
EmployeeName              DANIEL ROSEN
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.93
OvertimePay                    7314.44
OtherPay                       7597.39
Benefits                           NaN
TotalPay                     120609.76
TotalPayBenefits             120609.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5680, dtype: object)
(5681, Id                              5682
EmployeeName              JAMIE HYUN
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  9927.05
OtherPay                     4592.47
Benefits                         NaN
TotalPay                   120584.71
TotalPayBenefits           120584.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5681, dtype: object)
(5682, Id                                    5683
EmployeeName        CHRISTOPHER DEL GANDIO
JobTitle                 POLICE OFFICER II
BasePay                           99180.88
OvertimePay                        7463.06
OtherPay                          13940.29
Benefits                               NaN
TotalPay                         120584.23
TotalPayBenefits                 120584.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5682, dtype: object)
(5683, Id                                                           5684
EmployeeName                                       DONALD BANNETT
JobTitle            SUPERVISING ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                  114609.6
OvertimePay                                               5790.62
OtherPay                                                    180.0
Benefits                                                      NaN
TotalPay                                                120580.22
TotalPayBenefits                                        120580.22
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 5683, dtype: object)
(5684, Id                              5685
EmployeeName           ROBERT TOOMEY
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  9243.91
OtherPay                     5268.38
Benefits                         NaN
TotalPay                   120577.49
TotalPayBenefits           120577.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5684, dtype: object)
(5685, Id                           5686
EmployeeName         CAROL CYPERT
JobTitle              MANAGER III
BasePay                 120576.47
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120576.47
TotalPayBenefits        120576.47
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5685, dtype: object)
(5686, Id                              5687
EmployeeName                 KEN YAO
JobTitle            TRANSIT OPERATOR
BasePay                     65275.49
OvertimePay                 53374.79
OtherPay                     1903.51
Benefits                         NaN
TotalPay                   120553.79
TotalPayBenefits           120553.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5686, dtype: object)
(5687, Id                              5688
EmployeeName          HILDIE GOLDING
JobTitle            REGISTERED NURSE
BasePay                     118347.0
OvertimePay                      0.0
OtherPay                      2203.3
Benefits                         NaN
TotalPay                    120550.3
TotalPayBenefits            120550.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5687, dtype: object)
(5688, Id                               5689
EmployeeName          VICTOR SILVEIRA
JobTitle            POLICE OFFICER II
BasePay                     110850.06
OvertimePay                    8228.1
OtherPay                      1471.66
Benefits                          NaN
TotalPay                    120549.82
TotalPayBenefits            120549.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5688, dtype: object)
(5689, Id                                5690
EmployeeName              GREGORY HUIE
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                    7069.02
OtherPay                       1058.64
Benefits                           NaN
TotalPay                     120549.12
TotalPayBenefits             120549.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5689, dtype: object)
(5690, Id                                5691
EmployeeName              MILTON BLISS
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.98
OvertimePay                    2362.16
OtherPay                      12478.32
Benefits                           NaN
TotalPay                     120538.46
TotalPayBenefits             120538.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5690, dtype: object)
(5691, Id                                5692
EmployeeName            CATHERINE DALY
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    6374.91
OtherPay                       1736.81
Benefits                           NaN
TotalPay                     120533.15
TotalPayBenefits             120533.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5691, dtype: object)
(5692, Id                                       5693
EmployeeName                     DAVID LIPSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             120527.29
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            120527.29
TotalPayBenefits                    120527.29
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5692, dtype: object)
(5693, Id                                       5694
EmployeeName                   BRIAN PEARLMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             120527.29
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            120527.29
TotalPayBenefits                    120527.29
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5693, dtype: object)
(5694, Id                               5695
EmployeeName              DARREN WONG
JobTitle            POLICE OFFICER II
BasePay                     110223.06
OvertimePay                   3472.51
OtherPay                      6829.53
Benefits                          NaN
TotalPay                     120525.1
TotalPayBenefits             120525.1
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5694, dtype: object)
(5695, Id                                                       5696
EmployeeName                                      JOEL TURMEL
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                               89660.0
OvertimePay                                           2360.06
OtherPay                                             28498.98
Benefits                                                  NaN
TotalPay                                            120519.04
TotalPayBenefits                                    120519.04
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 5695, dtype: object)
(5696, Id                              5697
EmployeeName              LEO LAMELA
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  6534.64
OtherPay                      7956.2
Benefits                         NaN
TotalPay                    120517.8
TotalPayBenefits            120517.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5696, dtype: object)
(5697, Id                                5698
EmployeeName             MICHAEL KEANE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    4066.98
OtherPay                       4047.25
Benefits                           NaN
TotalPay                     120515.31
TotalPayBenefits             120515.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5697, dtype: object)
(5698, Id                                5699
EmployeeName         JENNIFER GRANUCCI
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    5676.77
OtherPay                       2421.21
Benefits                           NaN
TotalPay                     120499.07
TotalPayBenefits             120499.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5698, dtype: object)
(5699, Id                              5700
EmployeeName                GWEN MUI
JobTitle            REGISTERED NURSE
BasePay                     119014.6
OvertimePay                      0.0
OtherPay                      1475.0
Benefits                         NaN
TotalPay                    120489.6
TotalPayBenefits            120489.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5699, dtype: object)
(5700, Id                                             5701
EmployeeName                             TROY HINES
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    73534.01
OvertimePay                                45802.63
OtherPay                                    1145.86
Benefits                                        NaN
TotalPay                                   120482.5
TotalPayBenefits                           120482.5
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5700, dtype: object)
(5701, Id                                5702
EmployeeName              MARY GODFREY
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    3915.02
OtherPay                       4166.31
Benefits                           NaN
TotalPay                     120482.41
TotalPayBenefits             120482.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5701, dtype: object)
(5702, Id                                5703
EmployeeName            FRANCIS NGUYEN
JobTitle            DEPUTY DIRECTOR II
BasePay                      120480.49
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     120480.49
TotalPayBenefits             120480.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5702, dtype: object)
(5703, Id                                5704
EmployeeName              JOE GIANNINI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    3279.92
OtherPay                       4773.06
Benefits                           NaN
TotalPay                     120474.43
TotalPayBenefits             120474.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5703, dtype: object)
(5704, Id                               5705
EmployeeName        JENNIFER PRESCOTT
JobTitle                  FIREFIGHTER
BasePay                     105934.65
OvertimePay                   2949.05
OtherPay                     11587.52
Benefits                          NaN
TotalPay                    120471.22
TotalPayBenefits            120471.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5704, dtype: object)
(5705, Id                              5706
EmployeeName          PHILIP JAOJOCO
JobTitle            REGISTERED NURSE
BasePay                     97799.67
OvertimePay                  7800.81
OtherPay                    14865.39
Benefits                         NaN
TotalPay                   120465.87
TotalPayBenefits           120465.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5705, dtype: object)
(5706, Id                           5707
EmployeeName          FRANK CUFFE
JobTitle              FIREFIGHTER
BasePay                  71634.85
OvertimePay              35394.01
OtherPay                 13429.49
Benefits                      NaN
TotalPay                120458.35
TotalPayBenefits        120458.35
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5706, dtype: object)
(5707, Id                                5708
EmployeeName             CLODAGH COLES
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                     2961.3
OtherPay                       5094.41
Benefits                           NaN
TotalPay                     120456.76
TotalPayBenefits             120456.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5707, dtype: object)
(5708, Id                              5709
EmployeeName          STACEY JOHNSON
JobTitle            REGISTERED NURSE
BasePay                     120201.6
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    120451.6
TotalPayBenefits            120451.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5708, dtype: object)
(5709, Id                              5710
EmployeeName              SUE MARTIN
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                      950.89
Benefits                         NaN
TotalPay                   120446.89
TotalPayBenefits           120446.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5709, dtype: object)
(5710, Id                                    5711
EmployeeName                  DEREK POWELL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          104650.63
OvertimePay                         679.26
OtherPay                          15114.68
Benefits                               NaN
TotalPay                         120444.57
TotalPayBenefits                 120444.57
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5710, dtype: object)
(5711, Id                            5712
EmployeeName         SUKHWANT MANN
JobTitle            DEPUTY SHERIFF
BasePay                   86589.51
OvertimePay                23411.0
OtherPay                  10439.19
Benefits                       NaN
TotalPay                  120439.7
TotalPayBenefits          120439.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5711, dtype: object)
(5712, Id                               5713
EmployeeName            FRANK CLEMENS
JobTitle            POLICE OFFICER II
BasePay                     110222.97
OvertimePay                   2984.52
OtherPay                      7230.53
Benefits                          NaN
TotalPay                    120438.02
TotalPayBenefits            120438.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5712, dtype: object)
(5713, Id                           5714
EmployeeName         JODY JIMENEZ
JobTitle              FIREFIGHTER
BasePay                  106270.6
OvertimePay               5763.59
OtherPay                  8320.96
Benefits                      NaN
TotalPay                120355.15
TotalPayBenefits        120355.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5713, dtype: object)
(5714, Id                                                               5715
EmployeeName                                              ROGER SMITH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107023.27
OvertimePay                                                   4054.44
OtherPay                                                      9276.59
Benefits                                                          NaN
TotalPay                                                     120354.3
TotalPayBenefits                                             120354.3
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5714, dtype: object)
(5715, Id                                                               5716
EmployeeName                                                  DON DER
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       97375.5
OvertimePay                                                  10768.54
OtherPay                                                     12208.59
Benefits                                                          NaN
TotalPay                                                    120352.63
TotalPayBenefits                                            120352.63
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5715, dtype: object)
(5716, Id                              5717
EmployeeName           ANNA CALDERON
JobTitle            REGISTERED NURSE
BasePay                    116742.61
OvertimePay                      0.0
OtherPay                      3605.4
Benefits                         NaN
TotalPay                   120348.01
TotalPayBenefits           120348.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5716, dtype: object)
(5717, Id                                       5718
EmployeeName                    JOHN ZAHAR JR
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             120343.47
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            120343.47
TotalPayBenefits                    120343.47
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5717, dtype: object)
(5718, Id                                5719
EmployeeName               DANIEL SHIU
JobTitle            POLICE OFFICER III
BasePay                      117283.32
OvertimePay                    1730.65
OtherPay                       1323.02
Benefits                           NaN
TotalPay                     120336.99
TotalPayBenefits             120336.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5718, dtype: object)
(5719, Id                                     5720
EmployeeName               JANET LEE MILLER
JobTitle            COURT STAFF ATTORNEY II
BasePay                             92595.6
OvertimePay                             0.0
OtherPay                            27738.0
Benefits                                NaN
TotalPay                           120333.6
TotalPayBenefits                   120333.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5719, dtype: object)
(5720, Id                                             5721
EmployeeName               JO-THERESA ELIAS-JACKSON
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.07
OvertimePay                                     0.0
OtherPay                                     4506.8
Benefits                                        NaN
TotalPay                                  120323.87
TotalPayBenefits                          120323.87
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5720, dtype: object)
(5721, Id                              5722
EmployeeName          SHANNON KEENEY
JobTitle            REGISTERED NURSE
BasePay                    101419.77
OvertimePay                  7764.72
OtherPay                    11132.52
Benefits                         NaN
TotalPay                   120317.01
TotalPayBenefits           120317.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5721, dtype: object)
(5722, Id                           5723
EmployeeName        BELA CARREIRA
JobTitle              FIREFIGHTER
BasePay                 103054.86
OvertimePay               4996.77
OtherPay                 12262.12
Benefits                      NaN
TotalPay                120313.75
TotalPayBenefits        120313.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5722, dtype: object)
(5723, Id                              5724
EmployeeName            JOSH TIUMALU
JobTitle            POLICE OFFICER I
BasePay                     96721.71
OvertimePay                   7091.0
OtherPay                     16497.6
Benefits                         NaN
TotalPay                   120310.31
TotalPayBenefits           120310.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5723, dtype: object)
(5724, Id                           5725
EmployeeName          JULIA ORTIZ
JobTitle              MANAGER III
BasePay                 120309.36
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                120309.36
TotalPayBenefits        120309.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5724, dtype: object)
(5725, Id                               5726
EmployeeName          WILLIAM HEPPLER
JobTitle            POLICE OFFICER II
BasePay                     108218.74
OvertimePay                   3923.92
OtherPay                      8166.14
Benefits                          NaN
TotalPay                     120308.8
TotalPayBenefits             120308.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5725, dtype: object)
(5726, Id                                 5727
EmployeeName                WING CHEUNG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72490.4
OvertimePay                     28085.7
OtherPay                       19727.67
Benefits                            NaN
TotalPay                      120303.77
TotalPayBenefits              120303.77
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5726, dtype: object)
(5727, Id                                5728
EmployeeName                  SAMMY AU
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   26702.58
OtherPay                        5529.5
Benefits                           NaN
TotalPay                     120294.08
TotalPayBenefits             120294.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5727, dtype: object)
(5728, Id                              5729
EmployeeName            SUSAN HARMON
JobTitle            REGISTERED NURSE
BasePay                    104793.43
OvertimePay                  8755.38
OtherPay                     6744.18
Benefits                         NaN
TotalPay                   120292.99
TotalPayBenefits           120292.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5728, dtype: object)
(5729, Id                               5730
EmployeeName              GIGI GEORGE
JobTitle            POLICE OFFICER II
BasePay                     110222.95
OvertimePay                   3019.27
OtherPay                      7046.14
Benefits                          NaN
TotalPay                    120288.36
TotalPayBenefits            120288.36
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5729, dtype: object)
(5730, Id                                    5731
EmployeeName                 GEORGE POYNOR
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                       29609.28
OtherPay                               0.0
Benefits                               NaN
TotalPay                         120273.28
TotalPayBenefits                 120273.28
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5730, dtype: object)
(5731, Id                                5732
EmployeeName                 ALVIN UNG
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.95
OvertimePay                     426.98
OtherPay                      14144.82
Benefits                           NaN
TotalPay                     120269.75
TotalPayBenefits             120269.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5731, dtype: object)
(5732, Id                              5733
EmployeeName          ELIZABETH WONG
JobTitle            REGISTERED NURSE
BasePay                    107364.15
OvertimePay                  5849.85
OtherPay                     7052.81
Benefits                         NaN
TotalPay                   120266.81
TotalPayBenefits           120266.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5732, dtype: object)
(5733, Id                                              5734
EmployeeName                        MICHAEL GALLEGOS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                      39472.0
OvertimePay                                 28332.95
OtherPay                                    52457.66
Benefits                                         NaN
TotalPay                                   120262.61
TotalPayBenefits                           120262.61
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5733, dtype: object)
(5734, Id                              5735
EmployeeName        CHRISTIAN MURPHY
JobTitle                 FIREFIGHTER
BasePay                    105934.69
OvertimePay                      0.0
OtherPay                     14304.3
Benefits                         NaN
TotalPay                   120238.99
TotalPayBenefits           120238.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5734, dtype: object)
(5735, Id                                                5736
EmployeeName                                  DAVID LI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       78421.41
OvertimePay                                   39845.06
OtherPay                                        1961.5
Benefits                                           NaN
TotalPay                                     120227.97
TotalPayBenefits                             120227.97
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5735, dtype: object)
(5736, Id                                    5737
EmployeeName        AMALIA BARCENA-BOSNICH
JobTitle                POLICE OFFICER III
BasePay                           112401.0
OvertimePay                         827.62
OtherPay                           6997.81
Benefits                               NaN
TotalPay                         120226.43
TotalPayBenefits                 120226.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5736, dtype: object)
(5737, Id                                   5738
EmployeeName               MALECHI BURRIS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          92551.95
OvertimePay                      21355.11
OtherPay                          6316.71
Benefits                              NaN
TotalPay                        120223.77
TotalPayBenefits                120223.77
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5737, dtype: object)
(5738, Id                           5739
EmployeeName          MIKYUNG KIM
JobTitle            SPECIAL NURSE
BasePay                  103221.3
OvertimePay                   0.0
OtherPay                  16994.6
Benefits                      NaN
TotalPay                 120215.9
TotalPayBenefits         120215.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5738, dtype: object)
(5739, Id                           5740
EmployeeName           ALBERT HOE
JobTitle                 ENGINEER
BasePay                 114169.57
OvertimePay                   0.0
OtherPay                  6040.53
Benefits                      NaN
TotalPay                 120210.1
TotalPayBenefits         120210.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5739, dtype: object)
(5740, Id                                5741
EmployeeName        VERNON PRESTON III
JobTitle              TRANSIT OPERATOR
BasePay                       67365.81
OvertimePay                   49588.65
OtherPay                       3251.32
Benefits                           NaN
TotalPay                     120205.78
TotalPayBenefits             120205.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5740, dtype: object)
(5741, Id                            5742
EmployeeName            BENTON WAN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               20000.63
OtherPay                  13354.27
Benefits                       NaN
TotalPay                 120194.92
TotalPayBenefits         120194.92
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5741, dtype: object)
(5742, Id                           5743
EmployeeName             MIN CHEN
JobTitle                 ENGINEER
BasePay                  108996.0
OvertimePay                   0.0
OtherPay                 11193.72
Benefits                      NaN
TotalPay                120189.72
TotalPayBenefits        120189.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5742, dtype: object)
(5743, Id                             5744
EmployeeName        NATALIE SPAELTI
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                 1652.15
OtherPay                   12602.03
Benefits                        NaN
TotalPay                  120188.87
TotalPayBenefits          120188.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5743, dtype: object)
(5744, Id                                5745
EmployeeName                  ROGER LU
JobTitle            POLICE OFFICER III
BasePay                      112380.68
OvertimePay                    5354.03
OtherPay                       2451.26
Benefits                           NaN
TotalPay                     120185.97
TotalPayBenefits             120185.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5744, dtype: object)
(5745, Id                                                               5746
EmployeeName                                          FRANK CALVO-III
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      89092.04
OvertimePay                                                  23417.99
OtherPay                                                      7675.35
Benefits                                                          NaN
TotalPay                                                    120185.38
TotalPayBenefits                                            120185.38
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5745, dtype: object)
(5746, Id                              5747
EmployeeName            EDUARD OCHOA
JobTitle            POLICE OFFICER I
BasePay                     88350.57
OvertimePay                 17899.17
OtherPay                    13930.51
Benefits                         NaN
TotalPay                   120180.25
TotalPayBenefits           120180.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5746, dtype: object)
(5747, Id                                                     5748
EmployeeName                                 ROBERT MATCHAM
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           101244.03
OvertimePay                                         8828.79
OtherPay                                           10106.41
Benefits                                                NaN
TotalPay                                          120179.23
TotalPayBenefits                                  120179.23
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5747, dtype: object)
(5748, Id                                5749
EmployeeName        NATHANIEL MANALANG
JobTitle              POLICE OFFICER I
BasePay                      104789.95
OvertimePay                    6845.49
OtherPay                       8536.73
Benefits                           NaN
TotalPay                     120172.17
TotalPayBenefits             120172.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5748, dtype: object)
(5749, Id                                                5750
EmployeeName                                 KEN LOUIE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   41197.24
OtherPay                                       1386.81
Benefits                                           NaN
TotalPay                                     120153.05
TotalPayBenefits                             120153.05
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5749, dtype: object)
(5750, Id                           5751
EmployeeName          DANA POMPEO
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay                   0.0
OtherPay                  14207.8
Benefits                      NaN
TotalPay                120142.49
TotalPayBenefits        120142.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5750, dtype: object)
(5751, Id                             5752
EmployeeName        BRUCE ROBERTSON
JobTitle                MANAGER III
BasePay                   120137.62
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  120137.62
TotalPayBenefits          120137.62
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5751, dtype: object)
(5752, Id                                                               5753
EmployeeName                                              NELSON DOON
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     107007.01
OvertimePay                                                  10922.18
OtherPay                                                       2202.0
Benefits                                                          NaN
TotalPay                                                    120131.19
TotalPayBenefits                                            120131.19
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5752, dtype: object)
(5753, Id                                                5754
EmployeeName                        JENNIFER FORRESTER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       13600.41
OvertimePay                                     3525.9
OtherPay                                      103002.6
Benefits                                           NaN
TotalPay                                     120128.91
TotalPayBenefits                             120128.91
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5753, dtype: object)
(5754, Id                                5755
EmployeeName                ALANE BACA
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    4715.35
OtherPay                       3001.39
Benefits                           NaN
TotalPay                     120117.81
TotalPayBenefits             120117.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5754, dtype: object)
(5755, Id                              5756
EmployeeName             SHARON PENN
JobTitle            REGISTERED NURSE
BasePay                    103953.74
OvertimePay                   103.42
OtherPay                    16058.19
Benefits                         NaN
TotalPay                   120115.35
TotalPayBenefits           120115.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5755, dtype: object)
(5756, Id                                 5757
EmployeeName                   DING TAM
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73075.01
OvertimePay                    36062.82
OtherPay                       10973.44
Benefits                            NaN
TotalPay                      120111.27
TotalPayBenefits              120111.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5756, dtype: object)
(5757, Id                              5758
EmployeeName            AIMEE DUMLAO
JobTitle            REGISTERED NURSE
BasePay                     98859.24
OvertimePay                  4403.68
OtherPay                    16847.12
Benefits                         NaN
TotalPay                   120110.04
TotalPayBenefits           120110.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5757, dtype: object)
(5758, Id                               5759
EmployeeName               FREDDIE WU
JobTitle            POLICE OFFICER II
BasePay                     101647.31
OvertimePay                   3800.63
OtherPay                     14660.46
Benefits                          NaN
TotalPay                     120108.4
TotalPayBenefits             120108.4
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5758, dtype: object)
(5759, Id                                 5760
EmployeeName                    SAM KUO
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71321.21
OvertimePay                    35064.24
OtherPay                        13722.8
Benefits                            NaN
TotalPay                      120108.25
TotalPayBenefits              120108.25
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5759, dtype: object)
(5760, Id                                5761
EmployeeName              MICHELLE DAY
JobTitle            POLICE OFFICER III
BasePay                      109507.68
OvertimePay                    4232.86
OtherPay                       6364.04
Benefits                           NaN
TotalPay                     120104.58
TotalPayBenefits             120104.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5760, dtype: object)
(5761, Id                              5762
EmployeeName         CORNAAL BRANNER
JobTitle            TRANSIT OPERATOR
BasePay                     68665.29
OvertimePay                 47746.72
OtherPay                     3674.84
Benefits                         NaN
TotalPay                   120086.85
TotalPayBenefits           120086.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5761, dtype: object)
(5762, Id                           5763
EmployeeName         PAUL SANDIGO
JobTitle              FIREFIGHTER
BasePay                  78460.39
OvertimePay              34675.61
OtherPay                  6948.28
Benefits                      NaN
TotalPay                120084.28
TotalPayBenefits        120084.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5762, dtype: object)
(5763, Id                              5764
EmployeeName           BRENDA KEEGAN
JobTitle            REGISTERED NURSE
BasePay                     98444.53
OvertimePay                  6700.05
OtherPay                    14934.98
Benefits                         NaN
TotalPay                   120079.56
TotalPayBenefits           120079.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5763, dtype: object)
(5764, Id                              5765
EmployeeName         JOAN THERESE LO
JobTitle            REGISTERED NURSE
BasePay                      97164.5
OvertimePay                  7800.81
OtherPay                    15100.52
Benefits                         NaN
TotalPay                   120065.83
TotalPayBenefits           120065.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5764, dtype: object)
(5765, Id                                5766
EmployeeName                JOHN GLYNN
JobTitle            POLICE OFFICER III
BasePay                       112401.0
OvertimePay                     660.38
OtherPay                       6998.79
Benefits                           NaN
TotalPay                     120060.17
TotalPayBenefits             120060.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5765, dtype: object)
(5766, Id                                5767
EmployeeName              KEVIN MOYLAN
JobTitle            POLICE OFFICER III
BasePay                      110812.12
OvertimePay                    5874.87
OtherPay                       3371.84
Benefits                           NaN
TotalPay                     120058.83
TotalPayBenefits             120058.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5766, dtype: object)
(5767, Id                                    5768
EmployeeName                   MICHAEL ORR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          104157.65
OvertimePay                       12041.24
OtherPay                           3856.33
Benefits                               NaN
TotalPay                         120055.22
TotalPayBenefits                 120055.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5767, dtype: object)
(5768, Id                                             5769
EmployeeName                          ROBERT REITER
JobTitle            PRINCIPAL REAL PROPERTY OFFICER
BasePay                                    120049.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   120049.0
TotalPayBenefits                           120049.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5768, dtype: object)
(5769, Id                                            5770
EmployeeName                 CARMEN VILLEGAS-GRANT
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.63
OvertimePay                                14457.5
OtherPay                                  11286.85
Benefits                                       NaN
TotalPay                                 120040.98
TotalPayBenefits                         120040.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5769, dtype: object)
(5770, Id                                 5771
EmployeeName                PABLO MUNOZ
JobTitle            IS PROJECT DIRECTOR
BasePay                        112679.4
OvertimePay                         0.0
OtherPay                        7359.08
Benefits                            NaN
TotalPay                      120038.48
TotalPayBenefits              120038.48
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5770, dtype: object)
(5771, Id                                                               5772
EmployeeName                                             SEYOUM AWETU
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89815.61
OvertimePay                                                  28453.03
OtherPay                                                       1758.0
Benefits                                                          NaN
TotalPay                                                    120026.64
TotalPayBenefits                                            120026.64
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 5771, dtype: object)
(5772, Id                                                     5773
EmployeeName                                 CARLOS SOTO JR
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            74827.73
OvertimePay                                        35767.07
OtherPay                                             9418.4
Benefits                                                NaN
TotalPay                                           120013.2
TotalPayBenefits                                   120013.2
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5772, dtype: object)
(5773, Id                                5774
EmployeeName               ERIC O'NEAL
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                    3641.04
OtherPay                       3949.36
Benefits                           NaN
TotalPay                      120011.8
TotalPayBenefits              120011.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5773, dtype: object)
(5774, Id                                5775
EmployeeName          JOSEPHINE BORGES
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    4450.38
OtherPay                       3173.29
Benefits                           NaN
TotalPay                     120004.37
TotalPayBenefits             120004.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5774, dtype: object)
(5775, Id                              5776
EmployeeName         CHRISTOS RALLIS
JobTitle            POLICE OFFICER I
BasePay                     98391.95
OvertimePay                 12280.64
OtherPay                     9315.33
Benefits                         NaN
TotalPay                   119987.92
TotalPayBenefits           119987.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5775, dtype: object)
(5776, Id                                5777
EmployeeName              JASON BLANTZ
JobTitle            NURSE PRACTITIONER
BasePay                      119737.75
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     119987.75
TotalPayBenefits             119987.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5776, dtype: object)
(5777, Id                                                          5778
EmployeeName                                           PAUL ROSE
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                119986.35
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               119986.35
TotalPayBenefits                                       119986.35
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5777, dtype: object)
(5778, Id                           5779
EmployeeName        MICHAEL FERRY
JobTitle              FIREFIGHTER
BasePay                  105934.7
OvertimePay               2235.95
OtherPay                 11813.96
Benefits                      NaN
TotalPay                119984.61
TotalPayBenefits        119984.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5778, dtype: object)
(5779, Id                                5780
EmployeeName        SHERMINEH JAFARIEH
JobTitle                    MANAGER VI
BasePay                      119959.32
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     119959.32
TotalPayBenefits             119959.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5779, dtype: object)
(5780, Id                            5781
EmployeeName        STEPHEN HARPER
JobTitle               FIREFIGHTER
BasePay                    48166.0
OvertimePay               31299.72
OtherPay                  40493.13
Benefits                       NaN
TotalPay                 119958.85
TotalPayBenefits         119958.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5780, dtype: object)
(5781, Id                                           5782
EmployeeName                          JOHN MULLEN
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  83374.88
OvertimePay                              30877.37
OtherPay                                  5687.51
Benefits                                      NaN
TotalPay                                119939.76
TotalPayBenefits                        119939.76
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 5781, dtype: object)
(5782, Id                               5783
EmployeeName            GREGG GOTELLI
JobTitle            POLICE OFFICER II
BasePay                     109749.05
OvertimePay                   6067.78
OtherPay                      4116.66
Benefits                          NaN
TotalPay                    119933.49
TotalPayBenefits            119933.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5782, dtype: object)
(5783, Id                                    5784
EmployeeName                    ROYAL SIMS
JobTitle            CARPENTER SUPERVISOR I
BasePay                           96852.68
OvertimePay                       23069.95
OtherPay                               0.0
Benefits                               NaN
TotalPay                         119922.63
TotalPayBenefits                 119922.63
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5783, dtype: object)
(5784, Id                             5785
EmployeeName        CHARLES GALLMAN
JobTitle                  MANAGER I
BasePay                   117093.45
OvertimePay                     0.0
OtherPay                    2827.21
Benefits                        NaN
TotalPay                  119920.66
TotalPayBenefits          119920.66
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5784, dtype: object)
(5785, Id                                5786
EmployeeName           PAUL DELROSARIO
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.96
OvertimePay                     3528.3
OtherPay                       10693.1
Benefits                           NaN
TotalPay                     119919.36
TotalPayBenefits             119919.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5785, dtype: object)
(5786, Id                                5787
EmployeeName               EDITH LEWIS
JobTitle            POLICE OFFICER III
BasePay                      112400.92
OvertimePay                        0.0
OtherPay                       7516.91
Benefits                           NaN
TotalPay                     119917.83
TotalPayBenefits             119917.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5786, dtype: object)
(5787, Id                              5788
EmployeeName          MARIA CUMISKEY
JobTitle            REGISTERED NURSE
BasePay                    119663.14
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   119913.14
TotalPayBenefits           119913.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5787, dtype: object)
(5788, Id                                                     5789
EmployeeName                                 ROBERTO MCLEAN
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           101244.01
OvertimePay                                         9050.12
OtherPay                                            9615.08
Benefits                                                NaN
TotalPay                                          119909.21
TotalPayBenefits                                  119909.21
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 5788, dtype: object)
(5789, Id                              5790
EmployeeName          AIMEE CALIMLIM
JobTitle            REGISTERED NURSE
BasePay                    107300.87
OvertimePay                  2642.22
OtherPay                     9950.66
Benefits                         NaN
TotalPay                   119893.75
TotalPayBenefits           119893.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5789, dtype: object)
(5790, Id                                                          5791
EmployeeName                                   DEMETRIOUS CUTINO
JobTitle            SUPERINTENDENT OF WATER TREATMENT FACILITIES
BasePay                                                108976.07
OvertimePay                                                  0.0
OtherPay                                                 10915.4
Benefits                                                     NaN
TotalPay                                               119891.47
TotalPayBenefits                                       119891.47
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5790, dtype: object)
(5791, Id                              5792
EmployeeName          DIANE MCKEVITT
JobTitle            POLICE OFFICER I
BasePay                    106046.05
OvertimePay                 12703.33
OtherPay                      1139.3
Benefits                         NaN
TotalPay                   119888.68
TotalPayBenefits           119888.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5791, dtype: object)
(5792, Id                                5793
EmployeeName             MARIA CIRIACO
JobTitle            POLICE OFFICER III
BasePay                      112411.18
OvertimePay                    2998.15
OtherPay                       4478.68
Benefits                           NaN
TotalPay                     119888.01
TotalPayBenefits             119888.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5792, dtype: object)
(5793, Id                              5794
EmployeeName          MARIDEL JARDIN
JobTitle            REGISTERED NURSE
BasePay                    101714.42
OvertimePay                  8173.09
OtherPay                      9993.7
Benefits                         NaN
TotalPay                   119881.21
TotalPayBenefits           119881.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5793, dtype: object)
(5794, Id                              5795
EmployeeName            LINDA TRUONG
JobTitle            REGISTERED NURSE
BasePay                    115017.54
OvertimePay                      0.0
OtherPay                     4862.25
Benefits                         NaN
TotalPay                   119879.79
TotalPayBenefits           119879.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5794, dtype: object)
(5795, Id                             5796
EmployeeName         LOIS WOODWORTH
JobTitle            CRIMINALIST III
BasePay                   119610.03
OvertimePay                  265.78
OtherPay                        0.0
Benefits                        NaN
TotalPay                  119875.81
TotalPayBenefits          119875.81
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5795, dtype: object)
(5796, Id                               5797
EmployeeName            SHAUN NAVARRO
JobTitle            POLICE OFFICER II
BasePay                     101100.14
OvertimePay                   5207.13
OtherPay                     13566.03
Benefits                          NaN
TotalPay                     119873.3
TotalPayBenefits             119873.3
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5796, dtype: object)
(5797, Id                              5798
EmployeeName            JOAN BROSNAN
JobTitle            REGISTERED NURSE
BasePay                    117436.72
OvertimePay                      0.0
OtherPay                     2414.02
Benefits                         NaN
TotalPay                   119850.74
TotalPayBenefits           119850.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5797, dtype: object)
(5798, Id                                    5799
EmployeeName             GABRIEL RODRIGUEZ
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105920.79
OvertimePay                        5805.67
OtherPay                           8118.81
Benefits                               NaN
TotalPay                         119845.27
TotalPayBenefits                 119845.27
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5798, dtype: object)
(5799, Id                               5800
EmployeeName             THOMAS WALSH
JobTitle            POLICE OFFICER II
BasePay                     115125.08
OvertimePay                   3325.83
OtherPay                      1393.86
Benefits                          NaN
TotalPay                    119844.77
TotalPayBenefits            119844.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5799, dtype: object)
(5800, Id                                       5801
EmployeeName                    GARY MCMURTRY
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92875.2
OvertimePay                          17772.05
OtherPay                              9191.31
Benefits                                  NaN
TotalPay                            119838.56
TotalPayBenefits                    119838.56
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5800, dtype: object)
(5801, Id                              5802
EmployeeName           MARK MILLIGAN
JobTitle            POLICE OFFICER I
BasePay                     98131.83
OvertimePay                 11557.98
OtherPay                    10143.79
Benefits                         NaN
TotalPay                    119833.6
TotalPayBenefits            119833.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5801, dtype: object)
(5802, Id                                         5803
EmployeeName                     NATASHA ZAHEDI
JobTitle            LABORATORY SERVICES MANAGER
BasePay                               118747.82
OvertimePay                                 0.0
OtherPay                                 1085.0
Benefits                                    NaN
TotalPay                              119832.82
TotalPayBenefits                      119832.82
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 5802, dtype: object)
(5803, Id                                  5804
EmployeeName            CHEONG TSENG ENG
JobTitle            IS ENGINEER - SENIOR
BasePay                        114130.81
OvertimePay                          0.0
OtherPay                         5693.69
Benefits                             NaN
TotalPay                        119824.5
TotalPayBenefits                119824.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5803, dtype: object)
(5804, Id                               5805
EmployeeName             CARLA HURLEY
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   4571.99
OtherPay                      5005.08
Benefits                          NaN
TotalPay                    119819.98
TotalPayBenefits            119819.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5804, dtype: object)
(5805, Id                              5806
EmployeeName           HYDRA MENDOZA
JobTitle            MAYORAL STAFF XV
BasePay                     119819.6
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    119819.6
TotalPayBenefits            119819.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5805, dtype: object)
(5806, Id                              5807
EmployeeName          ROWENA IGNACIO
JobTitle            REGISTERED NURSE
BasePay                    114697.63
OvertimePay                      0.0
OtherPay                     5120.86
Benefits                         NaN
TotalPay                   119818.49
TotalPayBenefits           119818.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5806, dtype: object)
(5807, Id                                  5808
EmployeeName             EUNICE AU-YEUNG
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                          1120.0
Benefits                             NaN
TotalPay                        119812.0
TotalPayBenefits                119812.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5807, dtype: object)
(5808, Id                                              5809
EmployeeName                         AGRIPINO MEDINA
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    109357.41
OvertimePay                                  6172.96
OtherPay                                     4279.32
Benefits                                         NaN
TotalPay                                   119809.69
TotalPayBenefits                           119809.69
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5808, dtype: object)
(5809, Id                                5810
EmployeeName            KEITA MORIWAKI
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    3283.95
OtherPay                       4114.91
Benefits                           NaN
TotalPay                     119799.91
TotalPayBenefits             119799.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5809, dtype: object)
(5810, Id                                5811
EmployeeName            JOSEPH FILAMOR
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    1472.44
OtherPay                       5919.29
Benefits                           NaN
TotalPay                      119792.8
TotalPayBenefits              119792.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5810, dtype: object)
(5811, Id                            5812
EmployeeName        MANUEL RAMIREZ
JobTitle                MANAGER II
BasePay                  118979.59
OvertimePay                    0.0
OtherPay                    806.78
Benefits                       NaN
TotalPay                 119786.37
TotalPayBenefits         119786.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5811, dtype: object)
(5812, Id                              5813
EmployeeName             KEVIN LUNDY
JobTitle            POLICE OFFICER I
BasePay                    105544.69
OvertimePay                  7521.44
OtherPay                     6714.65
Benefits                         NaN
TotalPay                   119780.78
TotalPayBenefits           119780.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5812, dtype: object)
(5813, Id                              5814
EmployeeName              JOSE PEREZ
JobTitle            POLICE OFFICER I
BasePay                     94088.34
OvertimePay                  7504.18
OtherPay                    18185.11
Benefits                         NaN
TotalPay                   119777.63
TotalPayBenefits           119777.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5813, dtype: object)
(5814, Id                                5815
EmployeeName          MICHAL OLKIEWICZ
JobTitle            POLICE OFFICER III
BasePay                      112175.36
OvertimePay                    4670.61
OtherPay                       2926.31
Benefits                           NaN
TotalPay                     119772.28
TotalPayBenefits             119772.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5814, dtype: object)
(5815, Id                                5816
EmployeeName                JOHN PAIGE
JobTitle            POLICE OFFICER III
BasePay                       112220.6
OvertimePay                    4483.73
OtherPay                       3062.53
Benefits                           NaN
TotalPay                     119766.86
TotalPayBenefits             119766.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5815, dtype: object)
(5816, Id                                       5817
EmployeeName                   GREGORY MENDEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             119765.96
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            119765.96
TotalPayBenefits                    119765.96
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5816, dtype: object)
(5817, Id                              5818
EmployeeName           KENYON BOWERS
JobTitle            POLICE OFFICER I
BasePay                     100258.7
OvertimePay                  8092.09
OtherPay                     11413.0
Benefits                         NaN
TotalPay                   119763.79
TotalPayBenefits           119763.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5817, dtype: object)
(5818, Id                                5819
EmployeeName              GEREMY GOZON
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.98
OvertimePay                    2221.35
OtherPay                      11832.23
Benefits                           NaN
TotalPay                     119751.56
TotalPayBenefits             119751.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5818, dtype: object)
(5819, Id                              5820
EmployeeName          PAMELA AXELSON
JobTitle            REGISTERED NURSE
BasePay                    119496.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   119746.01
TotalPayBenefits           119746.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5819, dtype: object)
(5820, Id                                5821
EmployeeName        GLORIA DEL ROSARIO
JobTitle              REGISTERED NURSE
BasePay                      119496.01
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     119746.01
TotalPayBenefits             119746.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5820, dtype: object)
(5821, Id                              5822
EmployeeName            MARISSA TINA
JobTitle            REGISTERED NURSE
BasePay                    119496.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   119746.01
TotalPayBenefits           119746.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5821, dtype: object)
(5822, Id                               5823
EmployeeName        ELAYNE HADA-SOUZA
JobTitle             REGISTERED NURSE
BasePay                      119496.0
OvertimePay                       0.0
OtherPay                        250.0
Benefits                          NaN
TotalPay                     119746.0
TotalPayBenefits             119746.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5822, dtype: object)
(5823, Id                              5824
EmployeeName               LINDA LEE
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    119746.0
TotalPayBenefits            119746.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5823, dtype: object)
(5824, Id                               5825
EmployeeName        VIOLETA DEL MUNDO
JobTitle             REGISTERED NURSE
BasePay                      119496.0
OvertimePay                       0.0
OtherPay                        250.0
Benefits                          NaN
TotalPay                     119746.0
TotalPayBenefits             119746.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5824, dtype: object)
(5825, Id                              5826
EmployeeName        OFELIA DELA CRUZ
JobTitle            REGISTERED NURSE
BasePay                     119496.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    119746.0
TotalPayBenefits            119746.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5825, dtype: object)
(5826, Id                                       5827
EmployeeName                      PAUL MYSLIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             119726.74
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            119726.74
TotalPayBenefits                    119726.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5826, dtype: object)
(5827, Id                                5828
EmployeeName               ROBERT WONG
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    3904.02
OtherPay                       3382.25
Benefits                           NaN
TotalPay                     119687.36
TotalPayBenefits             119687.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5827, dtype: object)
(5828, Id                                              5829
EmployeeName                        WENDI STEPHENSON
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72765.37
OvertimePay                                 42922.72
OtherPay                                     3997.41
Benefits                                         NaN
TotalPay                                    119685.5
TotalPayBenefits                            119685.5
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5828, dtype: object)
(5829, Id                              5830
EmployeeName             SEAN DENNIS
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  6512.21
OtherPay                      7104.9
Benefits                         NaN
TotalPay                    119682.3
TotalPayBenefits            119682.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5829, dtype: object)
(5830, Id                                5831
EmployeeName              ELLINA TEPER
JobTitle            POLICE OFFICER III
BasePay                      112363.67
OvertimePay                        0.0
OtherPay                       7315.31
Benefits                           NaN
TotalPay                     119678.98
TotalPayBenefits             119678.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5830, dtype: object)
(5831, Id                              5832
EmployeeName          RICHARD HOOPER
JobTitle            REGISTERED NURSE
BasePay                     112602.0
OvertimePay                  2047.96
OtherPay                     5024.11
Benefits                         NaN
TotalPay                   119674.07
TotalPayBenefits           119674.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5831, dtype: object)
(5832, Id                                  5833
EmployeeName                STEPHEN ROJA
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                          975.25
Benefits                             NaN
TotalPay                       119667.25
TotalPayBenefits               119667.25
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5832, dtype: object)
(5833, Id                                    5834
EmployeeName              KRISTOPHER MOORE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106391.08
OvertimePay                        2549.34
OtherPay                          10726.53
Benefits                               NaN
TotalPay                         119666.95
TotalPayBenefits                 119666.95
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5833, dtype: object)
(5834, Id                                5835
EmployeeName         MICHAEL ANDROVICH
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    2907.14
OtherPay                       4352.78
Benefits                           NaN
TotalPay                      119661.0
TotalPayBenefits              119661.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5834, dtype: object)
(5835, Id                                       5836
EmployeeName                STEPHANIE PROFITT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             119655.75
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            119655.75
TotalPayBenefits                    119655.75
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5835, dtype: object)
(5836, Id                                5837
EmployeeName         MICHAEL REBOLLINI
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1952.63
OtherPay                       5281.82
Benefits                           NaN
TotalPay                     119635.53
TotalPayBenefits             119635.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5836, dtype: object)
(5837, Id                              5838
EmployeeName           HEATHER FEGAN
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  7167.55
OtherPay                     6392.95
Benefits                         NaN
TotalPay                   119625.68
TotalPayBenefits           119625.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5837, dtype: object)
(5838, Id                              5839
EmployeeName          PATRICK CESARI
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  3945.14
OtherPay                     9615.09
Benefits                         NaN
TotalPay                   119625.42
TotalPayBenefits           119625.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5838, dtype: object)
(5839, Id                                   5840
EmployeeName                  JAMES ALLEN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.56
OvertimePay                      15256.69
OtherPay                          8112.72
Benefits                              NaN
TotalPay                        119621.97
TotalPayBenefits                119621.97
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5839, dtype: object)
(5840, Id                              5841
EmployeeName        VICTOR ARREBOLLO
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  5558.25
OtherPay                     7993.08
Benefits                         NaN
TotalPay                   119616.53
TotalPayBenefits           119616.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5840, dtype: object)
(5841, Id                              5842
EmployeeName            DANIEL GIBBS
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  9581.19
OtherPay                     3964.14
Benefits                         NaN
TotalPay                   119610.53
TotalPayBenefits           119610.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5841, dtype: object)
(5842, Id                              5843
EmployeeName             LUCY LOZANO
JobTitle            REGISTERED NURSE
BasePay                    118938.16
OvertimePay                      0.0
OtherPay                      663.64
Benefits                         NaN
TotalPay                    119601.8
TotalPayBenefits            119601.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5842, dtype: object)
(5843, Id                              5844
EmployeeName              MARK WHITE
JobTitle            REGISTERED NURSE
BasePay                    113256.91
OvertimePay                  2271.06
OtherPay                     4071.67
Benefits                         NaN
TotalPay                   119599.64
TotalPayBenefits           119599.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5843, dtype: object)
(5844, Id                              5845
EmployeeName            SHELIA GREER
JobTitle            REGISTERED NURSE
BasePay                     97671.92
OvertimePay                  4929.22
OtherPay                    16997.42
Benefits                         NaN
TotalPay                   119598.56
TotalPayBenefits           119598.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5844, dtype: object)
(5845, Id                              5846
EmployeeName         MILAGROS BROSAS
JobTitle            REGISTERED NURSE
BasePay                    119345.51
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   119595.51
TotalPayBenefits           119595.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5845, dtype: object)
(5846, Id                                            5847
EmployeeName                            CRAIG LOYD
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   80080.83
OvertimePay                               26861.02
OtherPay                                  12641.82
Benefits                                       NaN
TotalPay                                 119583.67
TotalPayBenefits                         119583.67
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5846, dtype: object)
(5847, Id                                 5848
EmployeeName                NELSON WONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73075.07
OvertimePay                    33287.55
OtherPay                       13220.96
Benefits                            NaN
TotalPay                      119583.58
TotalPayBenefits              119583.58
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5847, dtype: object)
(5848, Id                              5849
EmployeeName          SONIA BALATBAT
JobTitle            REGISTERED NURSE
BasePay                    107201.71
OvertimePay                  5756.49
OtherPay                     6623.53
Benefits                         NaN
TotalPay                   119581.73
TotalPayBenefits           119581.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5848, dtype: object)
(5849, Id                                              5850
EmployeeName                            DONALD KLOSS
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.67
OvertimePay                                 18176.51
OtherPay                                     5738.59
Benefits                                         NaN
TotalPay                                   119568.77
TotalPayBenefits                           119568.77
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5849, dtype: object)
(5850, Id                              5851
EmployeeName           JOHN O'ROURKE
JobTitle            POLICE OFFICER I
BasePay                    105788.41
OvertimePay                  8512.13
OtherPay                      5267.8
Benefits                         NaN
TotalPay                   119568.34
TotalPayBenefits           119568.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5850, dtype: object)
(5851, Id                                    5852
EmployeeName              BRIAN WASHINGTON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           105708.8
OvertimePay                        5659.21
OtherPay                           8193.82
Benefits                               NaN
TotalPay                         119561.83
TotalPayBenefits                 119561.83
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5851, dtype: object)
(5852, Id                              5853
EmployeeName          JULIE PETERSON
JobTitle            REGISTERED NURSE
BasePay                    112966.92
OvertimePay                  2271.06
OtherPay                     4322.02
Benefits                         NaN
TotalPay                    119560.0
TotalPayBenefits            119560.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5852, dtype: object)
(5853, Id                              5854
EmployeeName        KRISTIAN DEJESUS
JobTitle              DEPUTY SHERIFF
BasePay                     81233.72
OvertimePay                  29767.0
OtherPay                     8557.07
Benefits                         NaN
TotalPay                   119557.79
TotalPayBenefits           119557.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5853, dtype: object)
(5854, Id                              5855
EmployeeName           DARREN ARKAVA
JobTitle            REGISTERED NURSE
BasePay                    105323.12
OvertimePay                  9619.43
OtherPay                     4614.52
Benefits                         NaN
TotalPay                   119557.07
TotalPayBenefits           119557.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5854, dtype: object)
(5855, Id                               5856
EmployeeName               ROBIN ODUM
JobTitle            POLICE OFFICER II
BasePay                     109204.12
OvertimePay                   6412.52
OtherPay                      3939.06
Benefits                          NaN
TotalPay                     119555.7
TotalPayBenefits             119555.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5855, dtype: object)
(5856, Id                                  5857
EmployeeName               JONATHAN RAPP
JobTitle            PHYSICIAN SPECIALIST
BasePay                        115629.85
OvertimePay                          0.0
OtherPay                          3923.0
Benefits                             NaN
TotalPay                       119552.85
TotalPayBenefits               119552.85
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5856, dtype: object)
(5857, Id                              5858
EmployeeName               RICKY MAY
JobTitle            REGISTERED NURSE
BasePay                     103597.4
OvertimePay                  1470.82
OtherPay                    14477.45
Benefits                         NaN
TotalPay                   119545.67
TotalPayBenefits           119545.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5857, dtype: object)
(5858, Id                               5859
EmployeeName             WAYMAN YOUNG
JobTitle            POLICE OFFICER II
BasePay                     110348.78
OvertimePay                   3006.89
OtherPay                      6189.87
Benefits                          NaN
TotalPay                    119545.54
TotalPayBenefits            119545.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5858, dtype: object)
(5859, Id                                5860
EmployeeName        FRANCIS VALIQUETTE
JobTitle            POLICE OFFICER III
BasePay                      112421.47
OvertimePay                    4890.79
OtherPay                       2218.04
Benefits                           NaN
TotalPay                      119530.3
TotalPayBenefits              119530.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5859, dtype: object)
(5860, Id                              5861
EmployeeName             BRENT CADER
JobTitle            POLICE OFFICER I
BasePay                     96992.21
OvertimePay                  9762.13
OtherPay                    12773.02
Benefits                         NaN
TotalPay                   119527.36
TotalPayBenefits           119527.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5860, dtype: object)
(5861, Id                           5862
EmployeeName          MILES YOUNG
JobTitle              FIREFIGHTER
BasePay                 105934.66
OvertimePay               6147.24
OtherPay                   7443.1
Benefits                      NaN
TotalPay                 119525.0
TotalPayBenefits         119525.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5861, dtype: object)
(5862, Id                              5863
EmployeeName          JOEL SALMONSON
JobTitle            POLICE OFFICER I
BasePay                    106026.95
OvertimePay                  6268.83
OtherPay                     7225.75
Benefits                         NaN
TotalPay                   119521.53
TotalPayBenefits           119521.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5862, dtype: object)
(5863, Id                              5864
EmployeeName        RAPHAEL ROCKWELL
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  2876.88
OtherPay                    10576.83
Benefits                         NaN
TotalPay                   119518.89
TotalPayBenefits           119518.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5863, dtype: object)
(5864, Id                                        5865
EmployeeName                       BYRON DUHON
JobTitle            COUNSELOR, LOG CABIN RANCH
BasePay                               65215.26
OvertimePay                           51711.79
OtherPay                               2572.97
Benefits                                   NaN
TotalPay                             119500.02
TotalPayBenefits                     119500.02
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5864, dtype: object)
(5865, Id                            5866
EmployeeName          OSCAR TAYLOR
JobTitle            DEPUTY SHERIFF
BasePay                   86840.07
OvertimePay               21790.48
OtherPay                  10864.01
Benefits                       NaN
TotalPay                 119494.56
TotalPayBenefits         119494.56
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5865, dtype: object)
(5866, Id                              5867
EmployeeName          IMELDA VILORIA
JobTitle            REGISTERED NURSE
BasePay                     99338.48
OvertimePay                   6810.3
OtherPay                    13332.66
Benefits                         NaN
TotalPay                   119481.44
TotalPayBenefits           119481.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5866, dtype: object)
(5867, Id                                 5868
EmployeeName                YAN OI WONG
JobTitle            PUBLIC HEALTH NURSE
BasePay                       113357.98
OvertimePay                         0.0
OtherPay                        6122.29
Benefits                            NaN
TotalPay                      119480.27
TotalPayBenefits              119480.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5867, dtype: object)
(5868, Id                           5869
EmployeeName        MARY CALLAHAN
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               2891.27
OtherPay                 10650.63
Benefits                      NaN
TotalPay                119476.59
TotalPayBenefits        119476.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5868, dtype: object)
(5869, Id                                5870
EmployeeName              JEFFERY SUNG
JobTitle            POLICE OFFICER III
BasePay                      117283.07
OvertimePay                        0.0
OtherPay                        2177.1
Benefits                           NaN
TotalPay                     119460.17
TotalPayBenefits             119460.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5869, dtype: object)
(5870, Id                           5871
EmployeeName        STEPHEN MORAN
JobTitle              FIREFIGHTER
BasePay                 104692.44
OvertimePay               4043.54
OtherPay                  10722.5
Benefits                      NaN
TotalPay                119458.48
TotalPayBenefits        119458.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5870, dtype: object)
(5871, Id                               5872
EmployeeName            SHAWN JACKSON
JobTitle            POLICE OFFICER II
BasePay                     109768.92
OvertimePay                    7125.0
OtherPay                      2553.16
Benefits                          NaN
TotalPay                    119447.08
TotalPayBenefits            119447.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5871, dtype: object)
(5872, Id                            5873
EmployeeName        ROSEMARY WEBER
JobTitle             SPECIAL NURSE
BasePay                   98144.86
OvertimePay                2038.25
OtherPay                  19263.29
Benefits                       NaN
TotalPay                  119446.4
TotalPayBenefits          119446.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5872, dtype: object)
(5873, Id                                             5874
EmployeeName                           TZULIN HUANG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115370.36
OvertimePay                                     0.0
OtherPay                                    4076.04
Benefits                                        NaN
TotalPay                                   119446.4
TotalPayBenefits                           119446.4
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 5873, dtype: object)
(5874, Id                                        5875
EmployeeName                    EUTEMIO ESPINA
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103971.63
OvertimePay                            5075.48
OtherPay                              10396.47
Benefits                                   NaN
TotalPay                             119443.58
TotalPayBenefits                     119443.58
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 5874, dtype: object)
(5875, Id                                 5876
EmployeeName        FRANCISCO RODRIGUEZ
JobTitle              POLICE OFFICER II
BasePay                       110262.81
OvertimePay                     3657.34
OtherPay                        5522.55
Benefits                            NaN
TotalPay                       119442.7
TotalPayBenefits               119442.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5875, dtype: object)
(5876, Id                           5877
EmployeeName        PAUL CARLISLE
JobTitle               MANAGER II
BasePay                 119441.34
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                119441.34
TotalPayBenefits        119441.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5876, dtype: object)
(5877, Id                              5878
EmployeeName           SHERRI BARNES
JobTitle            REGISTERED NURSE
BasePay                    115448.04
OvertimePay                      0.0
OtherPay                     3982.66
Benefits                         NaN
TotalPay                    119430.7
TotalPayBenefits            119430.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5877, dtype: object)
(5878, Id                           5879
EmployeeName        STEVEN RASCON
JobTitle              FIREFIGHTER
BasePay                 103213.31
OvertimePay               1205.63
OtherPay                  15009.6
Benefits                      NaN
TotalPay                119428.54
TotalPayBenefits        119428.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5878, dtype: object)
(5879, Id                                5880
EmployeeName              SHERRY HICKS
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    5199.51
OtherPay                       1800.97
Benefits                           NaN
TotalPay                      119421.9
TotalPayBenefits              119421.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5879, dtype: object)
(5880, Id                                5881
EmployeeName                WARREN LEE
JobTitle            POLICE OFFICER III
BasePay                      112457.56
OvertimePay                    3408.78
OtherPay                       3549.08
Benefits                           NaN
TotalPay                     119415.42
TotalPayBenefits             119415.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5880, dtype: object)
(5881, Id                           5882
EmployeeName        LETTIE MILLER
JobTitle            NURSE MANAGER
BasePay                   76164.5
OvertimePay                1238.8
OtherPay                 42003.76
Benefits                      NaN
TotalPay                119407.06
TotalPayBenefits        119407.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5881, dtype: object)
(5882, Id                                5883
EmployeeName           HERBERT NAJARRO
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    4139.89
OtherPay                       2855.07
Benefits                           NaN
TotalPay                     119396.05
TotalPayBenefits             119396.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5882, dtype: object)
(5883, Id                              5884
EmployeeName            EDGAR MANUEL
JobTitle            REGISTERED NURSE
BasePay                    101055.66
OvertimePay                  3405.15
OtherPay                    14935.24
Benefits                         NaN
TotalPay                   119396.05
TotalPayBenefits           119396.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5883, dtype: object)
(5884, Id                                    5885
EmployeeName                 DENNIS FRAZER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          100558.35
OvertimePay                       10180.75
OtherPay                            8651.6
Benefits                               NaN
TotalPay                          119390.7
TotalPayBenefits                  119390.7
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5884, dtype: object)
(5885, Id                              5886
EmployeeName          GISELLE BURGOS
JobTitle            REGISTERED NURSE
BasePay                    117863.74
OvertimePay                      0.0
OtherPay                     1526.62
Benefits                         NaN
TotalPay                   119390.36
TotalPayBenefits           119390.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5885, dtype: object)
(5886, Id                               5887
EmployeeName            JOHN SHANAHAN
JobTitle            POLICE OFFICER II
BasePay                       96951.0
OvertimePay                   5805.25
OtherPay                     16623.09
Benefits                          NaN
TotalPay                    119379.34
TotalPayBenefits            119379.34
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5886, dtype: object)
(5887, Id                                 5888
EmployeeName        ROBERT CHRIS SAIDON
JobTitle             UTILITY SPECIALIST
BasePay                        113214.2
OvertimePay                         0.0
OtherPay                         6140.7
Benefits                            NaN
TotalPay                       119354.9
TotalPayBenefits               119354.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5887, dtype: object)
(5888, Id                                       5889
EmployeeName                    COLLEEN EVANS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             117003.83
OvertimePay                               0.0
OtherPay                              2340.66
Benefits                                  NaN
TotalPay                            119344.49
TotalPayBenefits                    119344.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 5888, dtype: object)
(5889, Id                                     5890
EmployeeName                ROSEMARY BOSQUE
JobTitle            CHIEF HOUSING INSPECTOR
BasePay                           119337.33
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          119337.33
TotalPayBenefits                  119337.33
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5889, dtype: object)
(5890, Id                                 5891
EmployeeName              LINDA WOO LIM
JobTitle            PUBLIC HEALTH NURSE
BasePay                       113684.28
OvertimePay                         0.0
OtherPay                        5620.55
Benefits                            NaN
TotalPay                      119304.83
TotalPayBenefits              119304.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5890, dtype: object)
(5891, Id                                5892
EmployeeName        CHRISTOPHER MORRIS
JobTitle             POLICE OFFICER II
BasePay                      107616.91
OvertimePay                    7613.77
OtherPay                       4052.14
Benefits                           NaN
TotalPay                     119282.82
TotalPayBenefits             119282.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5891, dtype: object)
(5892, Id                               5893
EmployeeName           FRANCIS GRAVES
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                   5317.15
OtherPay                      3718.86
Benefits                          NaN
TotalPay                    119278.94
TotalPayBenefits            119278.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5892, dtype: object)
(5893, Id                             5894
EmployeeName          EDWARD SKUBIC
JobTitle            UTILITY PLUMBER
BasePay                     90098.4
OvertimePay                16484.61
OtherPay                   12691.85
Benefits                        NaN
TotalPay                  119274.86
TotalPayBenefits          119274.86
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5893, dtype: object)
(5894, Id                                    5895
EmployeeName                  DAVID KIMMEL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102474.66
OvertimePay                        2426.23
OtherPay                          14371.97
Benefits                               NaN
TotalPay                         119272.86
TotalPayBenefits                 119272.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5894, dtype: object)
(5895, Id                                                5896
EmployeeName                             GRAHAM COWLEY
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       80779.65
OvertimePay                                   23906.29
OtherPay                                      14581.87
Benefits                                           NaN
TotalPay                                     119267.81
TotalPayBenefits                             119267.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5895, dtype: object)
(5896, Id                                5897
EmployeeName             SCOTT ERDMANN
JobTitle            SHERIFF'S SERGEANT
BasePay                      105696.95
OvertimePay                    4728.51
OtherPay                       8836.58
Benefits                           NaN
TotalPay                     119262.04
TotalPayBenefits             119262.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5896, dtype: object)
(5897, Id                                5898
EmployeeName              DAVID NAKASU
JobTitle            POLICE OFFICER III
BasePay                      112417.05
OvertimePay                    5051.09
OtherPay                       1791.81
Benefits                           NaN
TotalPay                     119259.95
TotalPayBenefits             119259.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5897, dtype: object)
(5898, Id                              5899
EmployeeName           CHINASA CHUBA
JobTitle            REGISTERED NURSE
BasePay                    108879.26
OvertimePay                  5342.85
OtherPay                     5037.61
Benefits                         NaN
TotalPay                   119259.72
TotalPayBenefits           119259.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5898, dtype: object)
(5899, Id                                5900
EmployeeName           RICHARD BODISCO
JobTitle            POLICE OFFICER III
BasePay                      108150.04
OvertimePay                    7743.67
OtherPay                       3350.03
Benefits                           NaN
TotalPay                     119243.74
TotalPayBenefits             119243.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5899, dtype: object)
(5900, Id                              5901
EmployeeName           CYRIL ANTONIO
JobTitle            REGISTERED NURSE
BasePay                     101643.9
OvertimePay                   2270.1
OtherPay                    15319.82
Benefits                         NaN
TotalPay                   119233.82
TotalPayBenefits           119233.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5900, dtype: object)
(5901, Id                             5902
EmployeeName        KATHLEEN ZEPEDA
JobTitle                FIREFIGHTER
BasePay                   105173.64
OvertimePay                     0.0
OtherPay                   14055.27
Benefits                        NaN
TotalPay                  119228.91
TotalPayBenefits          119228.91
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5901, dtype: object)
(5902, Id                           5903
EmployeeName         PATRICK SHEA
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               1790.25
OtherPay                 11501.59
Benefits                      NaN
TotalPay                119226.51
TotalPayBenefits        119226.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5902, dtype: object)
(5903, Id                              5904
EmployeeName            RYAN MARIANO
JobTitle            POLICE OFFICER I
BasePay                    103834.85
OvertimePay                  5434.23
OtherPay                     9941.29
Benefits                         NaN
TotalPay                   119210.37
TotalPayBenefits           119210.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5903, dtype: object)
(5904, Id                                5905
EmployeeName               TIMMY LOUIE
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    1893.88
OtherPay                       4911.69
Benefits                           NaN
TotalPay                     119206.63
TotalPayBenefits             119206.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5904, dtype: object)
(5905, Id                                     5906
EmployeeName           TONI RATCLIFF-POWELL
JobTitle            DIRECTOR, JUVENILE HALL
BasePay                           119203.65
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          119203.65
TotalPayBenefits                  119203.65
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 5905, dtype: object)
(5906, Id                               5907
EmployeeName         CRAIG BRANDOLINO
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                   5932.62
OtherPay                       3024.1
Benefits                          NaN
TotalPay                    119199.66
TotalPayBenefits            119199.66
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5906, dtype: object)
(5907, Id                                               5908
EmployeeName                            KATHRYN PERRY
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      105554.6
OvertimePay                                       0.0
OtherPay                                     13644.84
Benefits                                          NaN
TotalPay                                    119199.44
TotalPayBenefits                            119199.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5907, dtype: object)
(5908, Id                                               5909
EmployeeName                             FELIX MOLINA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   17601.3
OtherPay                                       2582.0
Benefits                                          NaN
TotalPay                                     119197.7
TotalPayBenefits                             119197.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5908, dtype: object)
(5909, Id                              5910
EmployeeName         THOMAS MACMAHON
JobTitle            POLICE OFFICER I
BasePay                     99323.01
OvertimePay                 10575.05
OtherPay                     9293.53
Benefits                         NaN
TotalPay                   119191.59
TotalPayBenefits           119191.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5909, dtype: object)
(5910, Id                              5911
EmployeeName         EDILYNN MERCADO
JobTitle            REGISTERED NURSE
BasePay                    116548.88
OvertimePay                    689.4
OtherPay                     1950.57
Benefits                         NaN
TotalPay                   119188.85
TotalPayBenefits           119188.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5910, dtype: object)
(5911, Id                                5912
EmployeeName        JONATHON LUCCHETTI
JobTitle             POLICE OFFICER II
BasePay                       107838.8
OvertimePay                     6163.6
OtherPay                       5166.95
Benefits                           NaN
TotalPay                     119169.35
TotalPayBenefits             119169.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5911, dtype: object)
(5912, Id                               5913
EmployeeName        GENIEVE DELA CRUZ
JobTitle             REGISTERED NURSE
BasePay                      94194.01
OvertimePay                   11350.5
OtherPay                      13616.5
Benefits                          NaN
TotalPay                    119161.01
TotalPayBenefits            119161.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5912, dtype: object)
(5913, Id                              5914
EmployeeName           TIMOTHY DAVIS
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  4111.22
OtherPay                     9022.12
Benefits                         NaN
TotalPay                    119160.3
TotalPayBenefits            119160.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5913, dtype: object)
(5914, Id                                    5915
EmployeeName                   MARK WARFEL
JobTitle            MAINTENANCE CONTROLLER
BasePay                           82744.65
OvertimePay                       20840.45
OtherPay                           15571.5
Benefits                               NaN
TotalPay                          119156.6
TotalPayBenefits                  119156.6
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 5914, dtype: object)
(5915, Id                                                5916
EmployeeName                             DAVID OROPEZA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77569.11
OvertimePay                                   35747.35
OtherPay                                       5828.55
Benefits                                           NaN
TotalPay                                     119145.01
TotalPayBenefits                             119145.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 5915, dtype: object)
(5916, Id                              5917
EmployeeName             ADAM STREET
JobTitle            POLICE OFFICER I
BasePay                    106046.06
OvertimePay                  4047.84
OtherPay                     9050.86
Benefits                         NaN
TotalPay                   119144.76
TotalPayBenefits           119144.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5916, dtype: object)
(5917, Id                                5918
EmployeeName         JOSEPH ZAMAGNI-JR
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    2492.45
OtherPay                       4225.99
Benefits                           NaN
TotalPay                     119139.89
TotalPayBenefits             119139.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5917, dtype: object)
(5918, Id                                5919
EmployeeName               HERMANN CHU
JobTitle            POLICE OFFICER III
BasePay                       112380.7
OvertimePay                    2439.09
OtherPay                       4318.94
Benefits                           NaN
TotalPay                     119138.73
TotalPayBenefits             119138.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5918, dtype: object)
(5919, Id                                                              5920
EmployeeName                                            DIANA KENYON
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                      0.0
OtherPay                                                     13729.3
Benefits                                                         NaN
TotalPay                                                    119133.3
TotalPayBenefits                                            119133.3
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5919, dtype: object)
(5920, Id                                                          5921
EmployeeName                                    KENNETH EDMONSON
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                119123.65
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               119123.65
TotalPayBenefits                                       119123.65
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 5920, dtype: object)
(5921, Id                                                              5922
EmployeeName                                         THOMAS PETERSEN
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                    108163.28
OvertimePay                                                  2845.29
OtherPay                                                     8113.45
Benefits                                                         NaN
TotalPay                                                   119122.02
TotalPayBenefits                                           119122.02
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5921, dtype: object)
(5922, Id                             5923
EmployeeName        CORNELIUS LUCEY
JobTitle                FIREFIGHTER
BasePay                   105934.69
OvertimePay                 2761.03
OtherPay                   10420.43
Benefits                        NaN
TotalPay                  119116.15
TotalPayBenefits          119116.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 5922, dtype: object)
(5923, Id                                5924
EmployeeName               JOHN TORRES
JobTitle            UTILITY SPECIALIST
BasePay                      112837.92
OvertimePay                        0.0
OtherPay                       6274.26
Benefits                           NaN
TotalPay                     119112.18
TotalPayBenefits             119112.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5923, dtype: object)
(5924, Id                                              5925
EmployeeName                            NANCY BREWER
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    114988.17
OvertimePay                                      0.0
OtherPay                                     4117.91
Benefits                                         NaN
TotalPay                                   119106.08
TotalPayBenefits                           119106.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5924, dtype: object)
(5925, Id                                5926
EmployeeName                 BRYAN WOO
JobTitle            POLICE OFFICER III
BasePay                      112400.99
OvertimePay                    2664.16
OtherPay                       4035.76
Benefits                           NaN
TotalPay                     119100.91
TotalPayBenefits             119100.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5925, dtype: object)
(5926, Id                              5927
EmployeeName            ANDREW FLYNN
JobTitle            REGISTERED NURSE
BasePay                     96026.87
OvertimePay                  6699.89
OtherPay                    16373.37
Benefits                         NaN
TotalPay                   119100.13
TotalPayBenefits           119100.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5926, dtype: object)
(5927, Id                              5928
EmployeeName               ZEXU FANG
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                  2693.33
OtherPay                     7348.17
Benefits                         NaN
TotalPay                    119085.5
TotalPayBenefits            119085.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5927, dtype: object)
(5928, Id                              5929
EmployeeName             BRIAN BURKE
JobTitle            POLICE OFFICER I
BasePay                     95274.93
OvertimePay                  8709.94
OtherPay                    15096.73
Benefits                         NaN
TotalPay                    119081.6
TotalPayBenefits            119081.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5928, dtype: object)
(5929, Id                                5930
EmployeeName             MARIA OROPEZA
JobTitle            POLICE OFFICER III
BasePay                      112401.03
OvertimePay                    1184.92
OtherPay                       5493.97
Benefits                           NaN
TotalPay                     119079.92
TotalPayBenefits             119079.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5929, dtype: object)
(5930, Id                              5931
EmployeeName              DAVID GOFF
JobTitle            POLICE OFFICER I
BasePay                     94088.34
OvertimePay                  7934.15
OtherPay                     17041.8
Benefits                         NaN
TotalPay                   119064.29
TotalPayBenefits           119064.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5930, dtype: object)
(5931, Id                               5932
EmployeeName          MARK MITCHINSON
JobTitle            POLICE OFFICER II
BasePay                     105014.44
OvertimePay                   8852.19
OtherPay                      5194.64
Benefits                          NaN
TotalPay                    119061.27
TotalPayBenefits            119061.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5931, dtype: object)
(5932, Id                               5933
EmployeeName               BYRON FONG
JobTitle            POLICE OFFICER II
BasePay                     110223.04
OvertimePay                   3579.73
OtherPay                      5253.55
Benefits                          NaN
TotalPay                    119056.32
TotalPayBenefits            119056.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5932, dtype: object)
(5933, Id                              5934
EmployeeName            GARED HANSEN
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  4698.22
OtherPay                     8288.26
Benefits                         NaN
TotalPay                   119051.68
TotalPayBenefits           119051.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5933, dtype: object)
(5934, Id                                5935
EmployeeName                  AMY COLE
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                     1130.2
OtherPay                       5475.74
Benefits                           NaN
TotalPay                     119047.76
TotalPayBenefits             119047.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5934, dtype: object)
(5935, Id                                           5936
EmployeeName                           SEAN DUFFY
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                 105881.13
OvertimePay                               2734.76
OtherPay                                 10426.24
Benefits                                      NaN
TotalPay                                119042.13
TotalPayBenefits                        119042.13
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 5935, dtype: object)
(5936, Id                                5937
EmployeeName              JOHN ANDREWS
JobTitle            POLICE OFFICER III
BasePay                      112380.69
OvertimePay                     3207.2
OtherPay                       3453.41
Benefits                           NaN
TotalPay                      119041.3
TotalPayBenefits              119041.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5936, dtype: object)
(5937, Id                                5938
EmployeeName              GORDON MOORE
JobTitle            POLICE OFFICER III
BasePay                      112441.81
OvertimePay                    2139.94
OtherPay                       4457.46
Benefits                           NaN
TotalPay                     119039.21
TotalPayBenefits             119039.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5937, dtype: object)
(5938, Id                                               5939
EmployeeName                        FERDINAND SALONGA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96422.4
OvertimePay                                  20958.75
OtherPay                                       1648.9
Benefits                                          NaN
TotalPay                                    119030.05
TotalPayBenefits                            119030.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 5938, dtype: object)
(5939, Id                              5940
EmployeeName        ERNANIE RASQUERO
JobTitle            REGISTERED NURSE
BasePay                    110015.77
OvertimePay                  4543.34
OtherPay                     4469.74
Benefits                         NaN
TotalPay                   119028.85
TotalPayBenefits           119028.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5939, dtype: object)
(5940, Id                              5941
EmployeeName           PING YUAN SHI
JobTitle            REGISTERED NURSE
BasePay                     111904.0
OvertimePay                   4501.2
OtherPay                     2610.92
Benefits                         NaN
TotalPay                   119016.12
TotalPayBenefits           119016.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5940, dtype: object)
(5941, Id                            5942
EmployeeName          RANDALL CHAN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.05
OvertimePay               25264.51
OtherPay                   6910.51
Benefits                       NaN
TotalPay                 119015.07
TotalPayBenefits         119015.07
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5941, dtype: object)
(5942, Id                                  5943
EmployeeName        PAUL FRANCIS MARIANO
JobTitle                REGISTERED NURSE
BasePay                        105564.06
OvertimePay                      8568.64
OtherPay                         4877.07
Benefits                             NaN
TotalPay                       119009.77
TotalPayBenefits               119009.77
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5942, dtype: object)
(5943, Id                                            5944
EmployeeName        PURIFICACION QUEVEDO-MAGHINANG
JobTitle                          REGISTERED NURSE
BasePay                                  111843.67
OvertimePay                                3206.86
OtherPay                                   3957.26
Benefits                                       NaN
TotalPay                                 119007.79
TotalPayBenefits                         119007.79
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5943, dtype: object)
(5944, Id                              5945
EmployeeName           YVONNE GUZMAN
JobTitle            REGISTERED NURSE
BasePay                    118745.43
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   118995.43
TotalPayBenefits           118995.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5944, dtype: object)
(5945, Id                                            5946
EmployeeName                          LAUREN GREEN
JobTitle            TRAF SIGNAL ELECTRICIAN SUP II
BasePay                                  118569.65
OvertimePay                                    0.0
OtherPay                                     420.0
Benefits                                       NaN
TotalPay                                 118989.65
TotalPayBenefits                         118989.65
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 5945, dtype: object)
(5946, Id                               5947
EmployeeName          MATTHEW FALIANO
JobTitle            POLICE OFFICER II
BasePay                     110223.03
OvertimePay                   7939.98
OtherPay                       826.18
Benefits                          NaN
TotalPay                    118989.19
TotalPayBenefits            118989.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5946, dtype: object)
(5947, Id                           5948
EmployeeName         ROBIN FARMER
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay                1609.8
OtherPay                 11437.04
Benefits                      NaN
TotalPay                118981.51
TotalPayBenefits        118981.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5947, dtype: object)
(5948, Id                                5949
EmployeeName          ROMINA IZAGUIRRE
JobTitle            POLICE OFFICER III
BasePay                      112417.08
OvertimePay                    4829.02
OtherPay                       1704.57
Benefits                           NaN
TotalPay                     118950.67
TotalPayBenefits             118950.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5948, dtype: object)
(5949, Id                               5950
EmployeeName        MACHEAL THOMAS JR
JobTitle                  FIREFIGHTER
BasePay                     105934.67
OvertimePay                    631.45
OtherPay                     12378.86
Benefits                          NaN
TotalPay                    118944.98
TotalPayBenefits            118944.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5949, dtype: object)
(5950, Id                                  5951
EmployeeName        NICHOLAS BETTENCOURT
JobTitle              POLICE OFFICER III
BasePay                        111849.28
OvertimePay                      5304.47
OtherPay                         1784.38
Benefits                             NaN
TotalPay                       118938.13
TotalPayBenefits               118938.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5950, dtype: object)
(5951, Id                              5952
EmployeeName         MICHELE ASCHERO
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                 10253.38
OtherPay                     2618.42
Benefits                         NaN
TotalPay                   118936.99
TotalPayBenefits           118936.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5951, dtype: object)
(5952, Id                            5953
EmployeeName        KELLY HIRAMOTO
JobTitle                MANAGER II
BasePay                  114335.49
OvertimePay                    0.0
OtherPay                    4600.0
Benefits                       NaN
TotalPay                 118935.49
TotalPayBenefits         118935.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5952, dtype: object)
(5953, Id                                 5954
EmployeeName              SANDRA GRACIA
JobTitle            CLAIMS INVESTIGATOR
BasePay                         94293.0
OvertimePay                     15115.8
OtherPay                        9519.28
Benefits                            NaN
TotalPay                      118928.08
TotalPayBenefits              118928.08
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5953, dtype: object)
(5954, Id                            5955
EmployeeName        LAINIE WALLING
JobTitle               FIREFIGHTER
BasePay                  105934.71
OvertimePay                 2239.0
OtherPay                  10750.48
Benefits                       NaN
TotalPay                 118924.19
TotalPayBenefits         118924.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 5954, dtype: object)
(5955, Id                                 5956
EmployeeName                   JOHN TOM
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72782.71
OvertimePay                     37197.3
OtherPay                        8943.94
Benefits                            NaN
TotalPay                      118923.95
TotalPayBenefits              118923.95
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 5955, dtype: object)
(5956, Id                                5957
EmployeeName            CHARLES MARION
JobTitle            NURSE PRACTITIONER
BasePay                       117336.1
OvertimePay                        0.0
OtherPay                       1587.22
Benefits                           NaN
TotalPay                     118923.32
TotalPayBenefits             118923.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5956, dtype: object)
(5957, Id                           5958
EmployeeName             JIM WANG
JobTitle                 ENGINEER
BasePay                 115396.23
OvertimePay                   0.0
OtherPay                  3521.69
Benefits                      NaN
TotalPay                118917.92
TotalPayBenefits        118917.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5957, dtype: object)
(5958, Id                              5959
EmployeeName             RAYMOND CHU
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                   5713.8
OtherPay                     7157.27
Benefits                         NaN
TotalPay                   118917.15
TotalPayBenefits           118917.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5958, dtype: object)
(5959, Id                                   5960
EmployeeName               ENRIQUE LUQUIN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.83
OvertimePay                      11655.42
OtherPay                         11376.03
Benefits                              NaN
TotalPay                        118913.28
TotalPayBenefits                118913.28
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5959, dtype: object)
(5960, Id                               5961
EmployeeName               GORDON HOM
JobTitle            POLICE OFFICER II
BasePay                     110223.08
OvertimePay                   5858.93
OtherPay                      2820.97
Benefits                          NaN
TotalPay                    118902.98
TotalPayBenefits            118902.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5960, dtype: object)
(5961, Id                               5962
EmployeeName        KIMBERLY ANDERSON
JobTitle             REGISTERED NURSE
BasePay                      97779.93
OvertimePay                   5859.91
OtherPay                     15263.13
Benefits                          NaN
TotalPay                    118902.97
TotalPayBenefits            118902.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5961, dtype: object)
(5962, Id                                  5963
EmployeeName               ELISE GRENIER
JobTitle            PHYSICIAN SPECIALIST
BasePay                        118902.57
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118902.57
TotalPayBenefits               118902.57
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5962, dtype: object)
(5963, Id                              5964
EmployeeName                LE CHUNG
JobTitle            REGISTERED NURSE
BasePay                     95243.48
OvertimePay                  7549.22
OtherPay                    16108.57
Benefits                         NaN
TotalPay                   118901.27
TotalPayBenefits           118901.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5963, dtype: object)
(5964, Id                                5965
EmployeeName               PAUL DENNES
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    2544.99
OtherPay                       3953.73
Benefits                           NaN
TotalPay                      118899.8
TotalPayBenefits              118899.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5964, dtype: object)
(5965, Id                                5966
EmployeeName           DORIAN MCCONICO
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    5647.54
OtherPay                        829.74
Benefits                           NaN
TotalPay                     118898.72
TotalPayBenefits             118898.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5965, dtype: object)
(5966, Id                                  5967
EmployeeName                 NAOMI LEWIS
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.03
OvertimePay                          0.0
OtherPay                        23694.17
Benefits                             NaN
TotalPay                        118897.2
TotalPayBenefits                118897.2
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5966, dtype: object)
(5967, Id                                                              5968
EmployeeName                                             VAN JACKSON
JobTitle            ASSISTANT CHIEF DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                                     108486.9
OvertimePay                                                  3898.05
OtherPay                                                     6509.65
Benefits                                                         NaN
TotalPay                                                    118894.6
TotalPayBenefits                                            118894.6
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 5967, dtype: object)
(5968, Id                              5969
EmployeeName         THERESA ALVAREZ
JobTitle            REGISTERED NURSE
BasePay                    115771.57
OvertimePay                      0.0
OtherPay                     3101.87
Benefits                         NaN
TotalPay                   118873.44
TotalPayBenefits           118873.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5968, dtype: object)
(5969, Id                                   5970
EmployeeName                IFVON BALLARD
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.45
OvertimePay                       9999.25
OtherPay                         12616.95
Benefits                              NaN
TotalPay                        118870.65
TotalPayBenefits                118870.65
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5969, dtype: object)
(5970, Id                               5971
EmployeeName             PATRICK FAYE
JobTitle            POLICE OFFICER II
BasePay                      92213.25
OvertimePay                    7896.3
OtherPay                     18755.33
Benefits                          NaN
TotalPay                    118864.88
TotalPayBenefits            118864.88
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5970, dtype: object)
(5971, Id                                              5972
EmployeeName                           PETER SHIELDS
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                    115962.02
OvertimePay                                   444.91
OtherPay                                     2452.65
Benefits                                         NaN
TotalPay                                   118859.58
TotalPayBenefits                           118859.58
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5971, dtype: object)
(5972, Id                                              5973
EmployeeName                         MICHAEL REARDON
JobTitle            STEAMFITTER ASSISTANT SUPERVISOR
BasePay                                    106507.13
OvertimePay                                  9139.66
OtherPay                                     3195.68
Benefits                                         NaN
TotalPay                                   118842.47
TotalPayBenefits                           118842.47
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 5972, dtype: object)
(5973, Id                              5974
EmployeeName           LAURA BANDURA
JobTitle            REGISTERED NURSE
BasePay                     96299.46
OvertimePay                  6105.46
OtherPay                    16411.74
Benefits                         NaN
TotalPay                   118816.66
TotalPayBenefits           118816.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5973, dtype: object)
(5974, Id                                5975
EmployeeName           EDILBERTO FELIX
JobTitle            UTILITY SPECIALIST
BasePay                       113213.9
OvertimePay                        0.0
OtherPay                       5598.25
Benefits                           NaN
TotalPay                     118812.15
TotalPayBenefits             118812.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5974, dtype: object)
(5975, Id                              5976
EmployeeName            MICAH NORRIS
JobTitle            POLICE OFFICER I
BasePay                    106065.08
OvertimePay                  7907.11
OtherPay                     4824.27
Benefits                         NaN
TotalPay                   118796.46
TotalPayBenefits           118796.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5975, dtype: object)
(5976, Id                                5977
EmployeeName               KURTIS WONG
JobTitle            POLICE OFFICER III
BasePay                      112380.73
OvertimePay                    3345.51
OtherPay                       3067.85
Benefits                           NaN
TotalPay                     118794.09
TotalPayBenefits             118794.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5976, dtype: object)
(5977, Id                           5978
EmployeeName         STEVEN QUINN
JobTitle                  PLUMBER
BasePay                   89371.8
OvertimePay              25742.79
OtherPay                   3671.4
Benefits                      NaN
TotalPay                118785.99
TotalPayBenefits        118785.99
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 5977, dtype: object)
(5978, Id                               5979
EmployeeName               WAYNE WONG
JobTitle            POLICE OFFICER II
BasePay                     108486.19
OvertimePay                   4039.48
OtherPay                      6255.97
Benefits                          NaN
TotalPay                    118781.64
TotalPayBenefits            118781.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5978, dtype: object)
(5979, Id                              5980
EmployeeName        PATRICK WILLIAMS
JobTitle            REGISTERED NURSE
BasePay                    101863.56
OvertimePay                  1256.66
OtherPay                    15651.68
Benefits                         NaN
TotalPay                    118771.9
TotalPayBenefits            118771.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5979, dtype: object)
(5980, Id                              5981
EmployeeName            ROBERT NEVIN
JobTitle            POLICE OFFICER I
BasePay                     95892.68
OvertimePay                 10575.75
OtherPay                    12300.16
Benefits                         NaN
TotalPay                   118768.59
TotalPayBenefits           118768.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5980, dtype: object)
(5981, Id                              5982
EmployeeName               JOSE BACH
JobTitle            REGISTERED NURSE
BasePay                     97857.48
OvertimePay                   7468.5
OtherPay                    13440.63
Benefits                         NaN
TotalPay                   118766.61
TotalPayBenefits           118766.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5981, dtype: object)
(5982, Id                              5983
EmployeeName         CAROL DAVENPORT
JobTitle            REGISTERED NURSE
BasePay                    105650.89
OvertimePay                  6379.11
OtherPay                     6731.12
Benefits                         NaN
TotalPay                   118761.12
TotalPayBenefits           118761.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5982, dtype: object)
(5983, Id                                5984
EmployeeName        ERNEST WILBERG III
JobTitle              POLICE OFFICER I
BasePay                      104981.45
OvertimePay                    7289.38
OtherPay                       6470.31
Benefits                           NaN
TotalPay                     118741.14
TotalPayBenefits             118741.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5983, dtype: object)
(5984, Id                              5985
EmployeeName          DENNIS QUIGLEY
JobTitle            POLICE OFFICER I
BasePay                      57156.9
OvertimePay                 44772.34
OtherPay                    16808.68
Benefits                         NaN
TotalPay                   118737.92
TotalPayBenefits           118737.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5984, dtype: object)
(5985, Id                               5986
EmployeeName        HAZELLE FERNANDEZ
JobTitle                  MANAGER III
BasePay                      118733.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     118733.0
TotalPayBenefits             118733.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 5985, dtype: object)
(5986, Id                              5987
EmployeeName            EUGENE PARAS
JobTitle            POLICE OFFICER I
BasePay                    101867.34
OvertimePay                 11185.35
OtherPay                     5676.24
Benefits                         NaN
TotalPay                   118728.93
TotalPayBenefits           118728.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 5986, dtype: object)
(5987, Id                                   5988
EmployeeName              PAOLO PIGNATARO
JobTitle            IS ENGINEER - JOURNEY
BasePay                         105849.97
OvertimePay                      12847.86
OtherPay                              0.0
Benefits                              NaN
TotalPay                        118697.83
TotalPayBenefits                118697.83
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 5987, dtype: object)
(5988, Id                                5989
EmployeeName              KATHY PUBILL
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    1669.97
OtherPay                       4622.87
Benefits                           NaN
TotalPay                     118693.92
TotalPayBenefits             118693.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 5988, dtype: object)
(5989, Id                                  5990
EmployeeName               SHEILA MURPHY
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.06
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.06
TotalPayBenefits               118692.06
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5989, dtype: object)
(5990, Id                                  5991
EmployeeName             IRENE SOROKOLIT
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.05
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.05
TotalPayBenefits               118692.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5990, dtype: object)
(5991, Id                                  5992
EmployeeName              DARRELL ASCANO
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.05
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.05
TotalPayBenefits               118692.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5991, dtype: object)
(5992, Id                                  5993
EmployeeName                     TIM LEE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.03
TotalPayBenefits               118692.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5992, dtype: object)
(5993, Id                                  5994
EmployeeName                  WAYNE LAKE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.03
TotalPayBenefits               118692.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5993, dtype: object)
(5994, Id                                  5995
EmployeeName                   SAMUEL HO
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.03
TotalPayBenefits               118692.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5994, dtype: object)
(5995, Id                                  5996
EmployeeName                 CARY MARINO
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.03
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.03
TotalPayBenefits               118692.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5995, dtype: object)
(5996, Id                                  5997
EmployeeName               RUBEN VASQUEZ
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.02
TotalPayBenefits               118692.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5996, dtype: object)
(5997, Id                                  5998
EmployeeName                JESSE CRISTO
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.02
TotalPayBenefits               118692.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5997, dtype: object)
(5998, Id                                  5999
EmployeeName                    QUANG HA
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.02
TotalPayBenefits               118692.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5998, dtype: object)
(5999, Id                                  6000
EmployeeName                    GARY YEE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.02
TotalPayBenefits               118692.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 5999, dtype: object)
(6000, Id                                  6001
EmployeeName                 ROBIN OLSON
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.02
TotalPayBenefits               118692.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6000, dtype: object)
(6001, Id                                  6002
EmployeeName             KYLE TORGRIMSON
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6001, dtype: object)
(6002, Id                                  6003
EmployeeName                CECILIA BELL
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6002, dtype: object)
(6003, Id                                  6004
EmployeeName                   JOSEPH HU
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6003, dtype: object)
(6004, Id                                  6005
EmployeeName                  EARL PRACK
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6004, dtype: object)
(6005, Id                                  6006
EmployeeName            VICTOR TANG-QUAN
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6005, dtype: object)
(6006, Id                                  6007
EmployeeName                LINLING WANG
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6006, dtype: object)
(6007, Id                                  6008
EmployeeName                 JOSHUA CHAN
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6007, dtype: object)
(6008, Id                                  6009
EmployeeName                 PAMELA FONG
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6008, dtype: object)
(6009, Id                                  6010
EmployeeName               ERIC RANDOLPH
JobTitle            IS ENGINEER - SENIOR
BasePay                        118692.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118692.01
TotalPayBenefits               118692.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6009, dtype: object)
(6010, Id                                  6011
EmployeeName               ERIC MITCHELL
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6010, dtype: object)
(6011, Id                                  6012
EmployeeName           CANDACE ALEXANDER
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6011, dtype: object)
(6012, Id                                  6013
EmployeeName                 MARY MURPHY
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6012, dtype: object)
(6013, Id                                  6014
EmployeeName                THOMAS BROWN
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6013, dtype: object)
(6014, Id                                  6015
EmployeeName                  DANNIE TSE
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6014, dtype: object)
(6015, Id                                  6016
EmployeeName         VOLTAIRE ALMENDRALA
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6015, dtype: object)
(6016, Id                                  6017
EmployeeName                    WAI TSUI
JobTitle            IS ENGINEER - SENIOR
BasePay                         118692.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        118692.0
TotalPayBenefits                118692.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6016, dtype: object)
(6017, Id                                  6018
EmployeeName                JOEL RUIDERA
JobTitle            IS ENGINEER - SENIOR
BasePay                        118691.96
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118691.96
TotalPayBenefits               118691.96
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6017, dtype: object)
(6018, Id                                  6019
EmployeeName               PHILLIP AKERS
JobTitle            IS ENGINEER - SENIOR
BasePay                        118691.81
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118691.81
TotalPayBenefits               118691.81
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6018, dtype: object)
(6019, Id                              6020
EmployeeName        BERTA VALDERRAMA
JobTitle            REGISTERED NURSE
BasePay                     97956.13
OvertimePay                  5598.97
OtherPay                    15119.92
Benefits                         NaN
TotalPay                   118675.02
TotalPayBenefits           118675.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6019, dtype: object)
(6020, Id                                6021
EmployeeName              SCOTT KIESEL
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                    1640.66
OtherPay                       4616.83
Benefits                           NaN
TotalPay                     118658.58
TotalPayBenefits             118658.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6020, dtype: object)
(6021, Id                                                              6022
EmployeeName                                                WIN HTUT
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                  2705.08
OtherPay                                                    10546.74
Benefits                                                         NaN
TotalPay                                                   118655.82
TotalPayBenefits                                           118655.82
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6021, dtype: object)
(6022, Id                                                      6023
EmployeeName                                  EDUARDO ROSETE
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             91755.41
OvertimePay                                         18027.87
OtherPay                                              8870.6
Benefits                                                 NaN
TotalPay                                           118653.88
TotalPayBenefits                                   118653.88
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6022, dtype: object)
(6023, Id                                               6024
EmployeeName                          RAYMUND RAMIREZ
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96684.81
OvertimePay                                  10226.93
OtherPay                                     11732.71
Benefits                                          NaN
TotalPay                                    118644.45
TotalPayBenefits                            118644.45
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6023, dtype: object)
(6024, Id                                6025
EmployeeName          ANTHONY CALASANZ
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2956.41
OtherPay                       3285.13
Benefits                           NaN
TotalPay                     118642.61
TotalPayBenefits             118642.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6024, dtype: object)
(6025, Id                            6026
EmployeeName        JOANNE FARRELL
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                  10784.84
Benefits                       NaN
TotalPay                 118633.24
TotalPayBenefits         118633.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6025, dtype: object)
(6026, Id                            6027
EmployeeName         ROBERT BALIAN
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                  10784.84
Benefits                       NaN
TotalPay                 118633.24
TotalPayBenefits         118633.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6026, dtype: object)
(6027, Id                              6028
EmployeeName             BRYAN BRUCE
JobTitle            REGISTERED NURSE
BasePay                    115882.03
OvertimePay                      0.0
OtherPay                      2750.0
Benefits                         NaN
TotalPay                   118632.03
TotalPayBenefits           118632.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6027, dtype: object)
(6028, Id                                               6029
EmployeeName                           BRIAN MCGREGOR
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96422.4
OvertimePay                                    9331.2
OtherPay                                     12871.82
Benefits                                          NaN
TotalPay                                    118625.42
TotalPayBenefits                            118625.42
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6028, dtype: object)
(6029, Id                                             6030
EmployeeName                   MARIA CECILI BADIOLA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   114618.23
OvertimePay                                 4006.35
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  118624.58
TotalPayBenefits                          118624.58
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6029, dtype: object)
(6030, Id                                       6031
EmployeeName                 DIANA ROSENSTEIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              118621.1
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             118621.1
TotalPayBenefits                     118621.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6030, dtype: object)
(6031, Id                              6032
EmployeeName          SHAWN PHILLIPS
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                 11487.92
OtherPay                     1085.83
Benefits                         NaN
TotalPay                   118619.82
TotalPayBenefits           118619.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6031, dtype: object)
(6032, Id                                 6033
EmployeeName             KIRK BRELSFORD
JobTitle            AIRPORT ELECTRICIAN
BasePay                        94077.11
OvertimePay                    13451.28
OtherPay                       11088.93
Benefits                            NaN
TotalPay                      118617.32
TotalPayBenefits              118617.32
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6032, dtype: object)
(6033, Id                                                     6034
EmployeeName                                       PETER MA
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87277.53
OvertimePay                                        19776.13
OtherPay                                           11562.56
Benefits                                                NaN
TotalPay                                          118616.22
TotalPayBenefits                                  118616.22
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6033, dtype: object)
(6034, Id                                   6035
EmployeeName               JOHNNY MAYORGA
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                      13453.81
OtherPay                          8905.61
Benefits                              NaN
TotalPay                        118611.44
TotalPayBenefits                118611.44
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6034, dtype: object)
(6035, Id                            6036
EmployeeName        JAMES MOGANNAM
JobTitle               FIREFIGHTER
BasePay                  106270.62
OvertimePay                 3338.8
OtherPay                    8981.4
Benefits                       NaN
TotalPay                 118590.82
TotalPayBenefits         118590.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6035, dtype: object)
(6036, Id                                            6037
EmployeeName                         JAMES WOLANIN
JobTitle            AIRPORT ELECTRICIAN SUPERVISOR
BasePay                                  103888.31
OvertimePay                                5507.09
OtherPay                                    9190.0
Benefits                                       NaN
TotalPay                                  118585.4
TotalPayBenefits                          118585.4
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6036, dtype: object)
(6037, Id                                6038
EmployeeName         HRATCH SARKISSIAN
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2641.17
OtherPay                       3537.89
Benefits                           NaN
TotalPay                     118580.13
TotalPayBenefits             118580.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6037, dtype: object)
(6038, Id                            6039
EmployeeName            JANET POND
JobTitle            COURT REPORTER
BasePay                  107795.33
OvertimePay                    0.0
OtherPay                  10779.53
Benefits                       NaN
TotalPay                 118574.86
TotalPayBenefits         118574.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6038, dtype: object)
(6039, Id                                6040
EmployeeName                JERRY KING
JobTitle            POLICE OFFICER III
BasePay                       112401.0
OvertimePay                    3630.66
OtherPay                       2542.39
Benefits                           NaN
TotalPay                     118574.05
TotalPayBenefits             118574.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6039, dtype: object)
(6040, Id                              6041
EmployeeName           EDWINA BRINAS
JobTitle            REGISTERED NURSE
BasePay                    104513.04
OvertimePay                  6412.57
OtherPay                     7633.48
Benefits                         NaN
TotalPay                   118559.09
TotalPayBenefits           118559.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6040, dtype: object)
(6041, Id                                6042
EmployeeName                 JOE CHANG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2462.65
OtherPay                       3686.45
Benefits                           NaN
TotalPay                     118550.17
TotalPayBenefits             118550.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6041, dtype: object)
(6042, Id                           6043
EmployeeName        BARBARA BRITZ
JobTitle              FIREFIGHTER
BasePay                  103789.7
OvertimePay               1276.34
OtherPay                 13484.05
Benefits                      NaN
TotalPay                118550.09
TotalPayBenefits        118550.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6042, dtype: object)
(6043, Id                                6044
EmployeeName            CHRISTA PETERS
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    3407.08
OtherPay                       2728.56
Benefits                           NaN
TotalPay                      118536.7
TotalPayBenefits              118536.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6043, dtype: object)
(6044, Id                            6045
EmployeeName        BRIAN STAEHELY
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               21163.83
OtherPay                  10528.15
Benefits                       NaN
TotalPay                 118531.98
TotalPayBenefits         118531.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6044, dtype: object)
(6045, Id                                             6046
EmployeeName                             GUY KEENAN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                 2708.04
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  118525.05
TotalPayBenefits                          118525.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6045, dtype: object)
(6046, Id                              6047
EmployeeName          KENDRA KENNEDY
JobTitle            REGISTERED NURSE
BasePay                     97026.41
OvertimePay                  5448.09
OtherPay                    16045.43
Benefits                         NaN
TotalPay                   118519.93
TotalPayBenefits           118519.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6046, dtype: object)
(6047, Id                                  6048
EmployeeName              PAUL ZABRISKIE
JobTitle            IS ENGINEER - SENIOR
BasePay                        118516.55
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118516.55
TotalPayBenefits               118516.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6047, dtype: object)
(6048, Id                              6049
EmployeeName        JOSEPH VICKSTEIN
JobTitle              COURT REPORTER
BasePay                    107742.25
OvertimePay                      0.0
OtherPay                    10774.23
Benefits                         NaN
TotalPay                   118516.48
TotalPayBenefits           118516.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6048, dtype: object)
(6049, Id                                             6050
EmployeeName                           STEVEN HANES
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                     0.0
OtherPay                                    2685.85
Benefits                                        NaN
TotalPay                                  118502.86
TotalPayBenefits                          118502.86
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6049, dtype: object)
(6050, Id                                6051
EmployeeName            J JAMIE ONGPIN
JobTitle            POLICE OFFICER III
BasePay                      112380.71
OvertimePay                    2501.34
OtherPay                       3615.23
Benefits                           NaN
TotalPay                     118497.28
TotalPayBenefits             118497.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6050, dtype: object)
(6051, Id                                                6052
EmployeeName                            ALLAN AGBAYANI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77260.8
OvertimePay                                   31929.03
OtherPay                                       9305.75
Benefits                                           NaN
TotalPay                                     118495.58
TotalPayBenefits                             118495.58
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6051, dtype: object)
(6052, Id                              6053
EmployeeName           MARIAM JANZAD
JobTitle            REGISTERED NURSE
BasePay                     95911.83
OvertimePay                  5499.76
OtherPay                    17079.98
Benefits                         NaN
TotalPay                   118491.57
TotalPayBenefits           118491.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6052, dtype: object)
(6053, Id                                6054
EmployeeName                  ANDY LAM
JobTitle            TRANSIT SUPERVISOR
BasePay                        84954.7
OvertimePay                   28130.34
OtherPay                        5405.6
Benefits                           NaN
TotalPay                     118490.64
TotalPayBenefits             118490.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6053, dtype: object)
(6054, Id                              6055
EmployeeName            JULIAN PERRY
JobTitle            TRANSIT OPERATOR
BasePay                     68471.94
OvertimePay                 44255.58
OtherPay                     5762.81
Benefits                         NaN
TotalPay                   118490.33
TotalPayBenefits           118490.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6054, dtype: object)
(6055, Id                              6056
EmployeeName                AMY WARE
JobTitle            REGISTERED NURSE
BasePay                     98223.57
OvertimePay                  8960.78
OtherPay                    11303.59
Benefits                         NaN
TotalPay                   118487.94
TotalPayBenefits           118487.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6055, dtype: object)
(6056, Id                                    6057
EmployeeName               JOSHUA UUSITALO
JobTitle            ELECTRICAL LINE WORKER
BasePay                            83371.8
OvertimePay                       33773.71
OtherPay                           1330.59
Benefits                               NaN
TotalPay                          118476.1
TotalPayBenefits                  118476.1
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6056, dtype: object)
(6057, Id                                6058
EmployeeName                ELLEN OPIE
JobTitle            NURSE PRACTITIONER
BasePay                      113979.59
OvertimePay                        0.0
OtherPay                       4495.68
Benefits                           NaN
TotalPay                     118475.27
TotalPayBenefits             118475.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6057, dtype: object)
(6058, Id                           6059
EmployeeName         MARK CULKINS
JobTitle            COURT MANAGER
BasePay                  116198.4
OvertimePay                   0.0
OtherPay                   2269.5
Benefits                      NaN
TotalPay                 118467.9
TotalPayBenefits         118467.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6058, dtype: object)
(6059, Id                           6060
EmployeeName         NICOLE ADAMS
JobTitle            COURT MANAGER
BasePay                  116198.4
OvertimePay                   0.0
OtherPay                   2269.5
Benefits                      NaN
TotalPay                 118467.9
TotalPayBenefits         118467.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6059, dtype: object)
(6060, Id                                6061
EmployeeName             TORRIE BARNES
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                    1383.25
OtherPay                       4654.81
Benefits                           NaN
TotalPay                      118459.5
TotalPayBenefits              118459.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6060, dtype: object)
(6061, Id                              6062
EmployeeName           PETER VAERNET
JobTitle            REGISTERED NURSE
BasePay                    115882.06
OvertimePay                      0.0
OtherPay                     2566.69
Benefits                         NaN
TotalPay                   118448.75
TotalPayBenefits           118448.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6061, dtype: object)
(6062, Id                                6063
EmployeeName           ANGELO SPAGNOLI
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    3796.58
OtherPay                       2244.29
Benefits                           NaN
TotalPay                     118441.92
TotalPayBenefits             118441.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6062, dtype: object)
(6063, Id                                                6064
EmployeeName                              OSCAR HUERTA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   40386.24
OtherPay                                         473.1
Benefits                                           NaN
TotalPay                                     118439.73
TotalPayBenefits                             118439.73
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6063, dtype: object)
(6064, Id                                                     6065
EmployeeName                                     RUSSELL NG
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           107611.61
OvertimePay                                         2616.55
OtherPay                                            8211.15
Benefits                                                NaN
TotalPay                                          118439.31
TotalPayBenefits                                  118439.31
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6064, dtype: object)
(6065, Id                              6066
EmployeeName          MYRENE FUERTES
JobTitle            REGISTERED NURSE
BasePay                     108986.9
OvertimePay                   3813.6
OtherPay                     5634.81
Benefits                         NaN
TotalPay                   118435.31
TotalPayBenefits           118435.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6065, dtype: object)
(6066, Id                                 6067
EmployeeName        MARCELLA MC CORMACK
JobTitle                    FIREFIGHTER
BasePay                       105934.66
OvertimePay                     1701.79
OtherPay                       10786.51
Benefits                            NaN
TotalPay                      118422.96
TotalPayBenefits              118422.96
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6066, dtype: object)
(6067, Id                                            6068
EmployeeName                         ERIC ALTORFER
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  109406.03
OvertimePay                                  623.6
OtherPay                                   8387.46
Benefits                                       NaN
TotalPay                                 118417.09
TotalPayBenefits                         118417.09
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6067, dtype: object)
(6068, Id                                     6069
EmployeeName        ARCEO LUIS DIMACULANGAN
JobTitle                   REGISTERED NURSE
BasePay                            99753.07
OvertimePay                          2270.1
OtherPay                           16387.26
Benefits                                NaN
TotalPay                          118410.43
TotalPayBenefits                  118410.43
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6068, dtype: object)
(6069, Id                                 6070
EmployeeName        EARL RAYMUND CUESTA
JobTitle               REGISTERED NURSE
BasePay                       101678.86
OvertimePay                     1232.33
OtherPay                        15492.0
Benefits                            NaN
TotalPay                      118403.19
TotalPayBenefits              118403.19
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6069, dtype: object)
(6070, Id                                       6071
EmployeeName                      MARIA LOPEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             118376.81
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            118376.81
TotalPayBenefits                    118376.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6070, dtype: object)
(6071, Id                                    6072
EmployeeName                  JORGE VELADO
JobTitle            ELECTRICAL LINE WORKER
BasePay                            84560.4
OvertimePay                       31163.57
OtherPay                           2647.08
Benefits                               NaN
TotalPay                         118371.05
TotalPayBenefits                 118371.05
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6071, dtype: object)
(6072, Id                              6073
EmployeeName        IGNACIO MARTINEZ
JobTitle            POLICE OFFICER I
BasePay                    105553.02
OvertimePay                  3950.31
OtherPay                     8866.37
Benefits                         NaN
TotalPay                    118369.7
TotalPayBenefits            118369.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6072, dtype: object)
(6073, Id                              6074
EmployeeName             STEVE SMITH
JobTitle            REGISTERED NURSE
BasePay                    109223.94
OvertimePay                  1068.57
OtherPay                     8057.46
Benefits                         NaN
TotalPay                   118349.97
TotalPayBenefits           118349.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6073, dtype: object)
(6074, Id                                6075
EmployeeName            HARRY SOULETTE
JobTitle            POLICE OFFICER III
BasePay                      109553.56
OvertimePay                       6.64
OtherPay                        8787.5
Benefits                           NaN
TotalPay                      118347.7
TotalPayBenefits              118347.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6074, dtype: object)
(6075, Id                                       6076
EmployeeName                   CAROL BOARDMAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                               88451.3
OvertimePay                               0.0
OtherPay                              29871.0
Benefits                                  NaN
TotalPay                             118322.3
TotalPayBenefits                     118322.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6075, dtype: object)
(6076, Id                              6077
EmployeeName         MYLENE ESPIRITU
JobTitle            REGISTERED NURSE
BasePay                    103767.34
OvertimePay                  9326.34
OtherPay                     5222.35
Benefits                         NaN
TotalPay                   118316.03
TotalPayBenefits           118316.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6076, dtype: object)
(6077, Id                              6078
EmployeeName        DANIEL SOLORZANO
JobTitle            POLICE OFFICER I
BasePay                     95786.84
OvertimePay                  8329.97
OtherPay                    14195.91
Benefits                         NaN
TotalPay                   118312.72
TotalPayBenefits           118312.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6077, dtype: object)
(6078, Id                           6079
EmployeeName        MARIA LECLAIR
JobTitle               MANAGER II
BasePay                 118303.64
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                118303.64
TotalPayBenefits        118303.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6078, dtype: object)
(6079, Id                                  6080
EmployeeName                 TUNG NGUYEN
JobTitle            IS ENGINEER - SENIOR
BasePay                        118303.56
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       118303.56
TotalPayBenefits               118303.56
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6079, dtype: object)
(6080, Id                               6081
EmployeeName        CASSANDRA CHAPMAN
JobTitle             TRAIN CONTROLLER
BasePay                      72821.99
OvertimePay                  39108.13
OtherPay                      6364.75
Benefits                          NaN
TotalPay                    118294.87
TotalPayBenefits            118294.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6080, dtype: object)
(6081, Id                              6082
EmployeeName         RICHARD AUSTRIA
JobTitle            POLICE OFFICER I
BasePay                    100934.42
OvertimePay                 12608.86
OtherPay                     4749.23
Benefits                         NaN
TotalPay                   118292.51
TotalPayBenefits           118292.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6081, dtype: object)
(6082, Id                                                6083
EmployeeName                    JOHN MICHAEL FERNANDEZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   16599.56
OtherPay                                      24112.45
Benefits                                           NaN
TotalPay                                     118292.41
TotalPayBenefits                             118292.41
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6082, dtype: object)
(6083, Id                                            6084
EmployeeName                           SHIRLEY CHU
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   87184.99
OvertimePay                                7241.61
OtherPay                                  23856.42
Benefits                                       NaN
TotalPay                                 118283.02
TotalPayBenefits                         118283.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6083, dtype: object)
(6084, Id                                                              6085
EmployeeName                                          CARLOS SANCHEZ
JobTitle            ASSISTANT CHIEF DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                                    110708.06
OvertimePay                                                      0.0
OtherPay                                                     7552.97
Benefits                                                         NaN
TotalPay                                                   118261.03
TotalPayBenefits                                           118261.03
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6084, dtype: object)
(6085, Id                                    6086
EmployeeName               BRITTANY GREENE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106393.63
OvertimePay                        6508.91
OtherPay                           5357.72
Benefits                               NaN
TotalPay                         118260.26
TotalPayBenefits                 118260.26
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6085, dtype: object)
(6086, Id                                6087
EmployeeName              JOANN WALKER
JobTitle            POLICE OFFICER III
BasePay                      112380.34
OvertimePay                    4355.83
OtherPay                       1519.76
Benefits                           NaN
TotalPay                     118255.93
TotalPayBenefits             118255.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6086, dtype: object)
(6087, Id                                6088
EmployeeName             ERIK ANDERSON
JobTitle            POLICE OFFICER III
BasePay                      106838.04
OvertimePay                    3506.94
OtherPay                       7907.81
Benefits                           NaN
TotalPay                     118252.79
TotalPayBenefits             118252.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6087, dtype: object)
(6088, Id                               6089
EmployeeName         PRISCILLA KENNEY
JobTitle            POLICE OFFICER II
BasePay                     110242.89
OvertimePay                   5669.24
OtherPay                      2339.29
Benefits                          NaN
TotalPay                    118251.42
TotalPayBenefits            118251.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6088, dtype: object)
(6089, Id                                                6090
EmployeeName                              RAUL ALVAREZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   35652.24
OtherPay                                       5017.71
Benefits                                           NaN
TotalPay                                     118250.34
TotalPayBenefits                             118250.34
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6089, dtype: object)
(6090, Id                                6091
EmployeeName                ANGEL POON
JobTitle            POLICE OFFICER III
BasePay                      112380.68
OvertimePay                     4138.1
OtherPay                       1730.52
Benefits                           NaN
TotalPay                      118249.3
TotalPayBenefits              118249.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6090, dtype: object)
(6091, Id                              6092
EmployeeName           MARILEN BORJA
JobTitle            REGISTERED NURSE
BasePay                     96933.82
OvertimePay                  5882.06
OtherPay                    15415.47
Benefits                         NaN
TotalPay                   118231.35
TotalPayBenefits           118231.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6091, dtype: object)
(6092, Id                                 6093
EmployeeName        RICHARD HASTING III
JobTitle              POLICE OFFICER II
BasePay                       106885.17
OvertimePay                     4936.62
OtherPay                        6406.62
Benefits                            NaN
TotalPay                      118228.41
TotalPayBenefits              118228.41
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6092, dtype: object)
(6093, Id                           6094
EmployeeName          WYATT NOWAK
JobTitle            SPECIAL NURSE
BasePay                 101155.55
OvertimePay               3005.76
OtherPay                 14065.19
Benefits                      NaN
TotalPay                 118226.5
TotalPayBenefits         118226.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6093, dtype: object)
(6094, Id                                6095
EmployeeName                 JUDE RAND
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    3439.96
OtherPay                       2378.36
Benefits                           NaN
TotalPay                      118219.4
TotalPayBenefits              118219.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6094, dtype: object)
(6095, Id                                                      6096
EmployeeName                                     BRUCE SEALE
JobTitle            SUPERVISING WASTEWATER CONTROL INSPECTOR
BasePay                                            108242.03
OvertimePay                                          8958.84
OtherPay                                             1009.38
Benefits                                                 NaN
TotalPay                                           118210.25
TotalPayBenefits                                   118210.25
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6095, dtype: object)
(6096, Id                             6097
EmployeeName        TIMOTHY SHEEHAN
JobTitle            UTILITY PLUMBER
BasePay                     90825.0
OvertimePay                17710.75
OtherPay                     9667.4
Benefits                        NaN
TotalPay                  118203.15
TotalPayBenefits          118203.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6096, dtype: object)
(6097, Id                              6098
EmployeeName         JENNIFER ESTEEN
JobTitle            REGISTERED NURSE
BasePay                     96954.45
OvertimePay                  2554.37
OtherPay                    18682.26
Benefits                         NaN
TotalPay                   118191.08
TotalPayBenefits           118191.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6097, dtype: object)
(6098, Id                              6099
EmployeeName        JOVITA QUILAQUIL
JobTitle            REGISTERED NURSE
BasePay                     97458.07
OvertimePay                  5598.97
OtherPay                    15130.43
Benefits                         NaN
TotalPay                   118187.47
TotalPayBenefits           118187.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6098, dtype: object)
(6099, Id                                                              6100
EmployeeName                                        MICHAEL SALDANHA
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                  2181.53
OtherPay                                                    10601.84
Benefits                                                         NaN
TotalPay                                                   118187.37
TotalPayBenefits                                           118187.37
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6099, dtype: object)
(6100, Id                             6101
EmployeeName        STEVEN BRANTLEY
JobTitle                FIREFIGHTER
BasePay                   105335.02
OvertimePay                 3035.52
OtherPay                     9815.7
Benefits                        NaN
TotalPay                  118186.24
TotalPayBenefits          118186.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6100, dtype: object)
(6101, Id                                     6102
EmployeeName              JOHN SHERMAN HOAR
JobTitle            COURT STAFF ATTORNEY II
BasePay                            115290.6
OvertimePay                             0.0
OtherPay                             2893.5
Benefits                                NaN
TotalPay                           118184.1
TotalPayBenefits                   118184.1
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6101, dtype: object)
(6102, Id                              6103
EmployeeName           MATTHEW CLOUD
JobTitle            POLICE OFFICER I
BasePay                     101612.2
OvertimePay                   6793.1
OtherPay                     9761.88
Benefits                         NaN
TotalPay                   118167.18
TotalPayBenefits           118167.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6102, dtype: object)
(6103, Id                                6104
EmployeeName        RODERICK SUGUI-TAN
JobTitle            POLICE OFFICER III
BasePay                      108861.05
OvertimePay                    4068.54
OtherPay                       5237.34
Benefits                           NaN
TotalPay                     118166.93
TotalPayBenefits             118166.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6103, dtype: object)
(6104, Id                                                     6105
EmployeeName                                  THOMAS COTTER
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           103318.75
OvertimePay                                             0.0
OtherPay                                           14838.49
Benefits                                                NaN
TotalPay                                          118157.24
TotalPayBenefits                                  118157.24
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6104, dtype: object)
(6105, Id                              6106
EmployeeName        JUSTIN DAUTERMAN
JobTitle            REGISTERED NURSE
BasePay                    104149.82
OvertimePay                  9216.28
OtherPay                     4790.18
Benefits                         NaN
TotalPay                   118156.28
TotalPayBenefits           118156.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6105, dtype: object)
(6106, Id                              6107
EmployeeName              FRANK TJIA
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  7826.05
OtherPay                     4255.73
Benefits                         NaN
TotalPay                   118146.97
TotalPayBenefits           118146.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6106, dtype: object)
(6107, Id                              6108
EmployeeName           EILEEN TURNER
JobTitle            REGISTERED NURSE
BasePay                    117883.63
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   118133.63
TotalPayBenefits           118133.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6107, dtype: object)
(6108, Id                              6109
EmployeeName            JOEL VALEROS
JobTitle            REGISTERED NURSE
BasePay                     97351.34
OvertimePay                  5880.29
OtherPay                     14896.6
Benefits                         NaN
TotalPay                   118128.23
TotalPayBenefits           118128.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6108, dtype: object)
(6109, Id                                     6110
EmployeeName                JOSEPH MOLINARI
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                           109606.61
OvertimePay                         8100.72
OtherPay                              420.0
Benefits                                NaN
TotalPay                          118127.33
TotalPayBenefits                  118127.33
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6109, dtype: object)
(6110, Id                                       6111
EmployeeName                PATRICK O'RIORDAN
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              111427.2
OvertimePay                            868.78
OtherPay                              5830.09
Benefits                                  NaN
TotalPay                            118126.07
TotalPayBenefits                    118126.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6110, dtype: object)
(6111, Id                              6112
EmployeeName          SUSHILA SHAKYA
JobTitle            REGISTERED NURSE
BasePay                    104160.09
OvertimePay                  8291.19
OtherPay                     5673.41
Benefits                         NaN
TotalPay                   118124.69
TotalPayBenefits           118124.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6111, dtype: object)
(6112, Id                               6113
EmployeeName               CRAIG DONG
JobTitle            POLICE OFFICER II
BasePay                     110223.08
OvertimePay                   4274.01
OtherPay                      3625.85
Benefits                          NaN
TotalPay                    118122.94
TotalPayBenefits            118122.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6112, dtype: object)
(6113, Id                                6114
EmployeeName          CARLOS JR GARATE
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    4874.04
OtherPay                        819.52
Benefits                           NaN
TotalPay                     118115.01
TotalPayBenefits             118115.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6113, dtype: object)
(6114, Id                                       6115
EmployeeName                   TIFFANY SUTTON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             118102.11
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            118102.11
TotalPayBenefits                    118102.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6114, dtype: object)
(6115, Id                                6116
EmployeeName                LINDA CHEN
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                        0.0
OtherPay                       5693.02
Benefits                           NaN
TotalPay                      118094.1
TotalPayBenefits              118094.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6115, dtype: object)
(6116, Id                              6117
EmployeeName          MOSES BAUTISTA
JobTitle            REGISTERED NURSE
BasePay                      98488.6
OvertimePay                  5849.85
OtherPay                    13749.73
Benefits                         NaN
TotalPay                   118088.18
TotalPayBenefits           118088.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6116, dtype: object)
(6117, Id                            6118
EmployeeName        TREVOR LINDSAY
JobTitle             SPECIAL NURSE
BasePay                  101680.64
OvertimePay                 3447.6
OtherPay                  12949.57
Benefits                       NaN
TotalPay                 118077.81
TotalPayBenefits         118077.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6117, dtype: object)
(6118, Id                                6119
EmployeeName            CLARE SENCHYNA
JobTitle            NURSE PRACTITIONER
BasePay                       107924.9
OvertimePay                    4059.28
OtherPay                       6093.37
Benefits                           NaN
TotalPay                     118077.55
TotalPayBenefits             118077.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6118, dtype: object)
(6119, Id                                                6120
EmployeeName                              FRANCIS PANG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   36725.09
OtherPay                                       3764.46
Benefits                                           NaN
TotalPay                                     118069.94
TotalPayBenefits                             118069.94
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6119, dtype: object)
(6120, Id                              6121
EmployeeName             AMMA DONKOR
JobTitle            REGISTERED NURSE
BasePay                    111788.92
OvertimePay                   2594.4
OtherPay                     3684.88
Benefits                         NaN
TotalPay                    118068.2
TotalPayBenefits            118068.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6120, dtype: object)
(6121, Id                                               6122
EmployeeName                               JAMES LONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   9161.25
OtherPay                                       9901.2
Benefits                                          NaN
TotalPay                                    118062.45
TotalPayBenefits                            118062.45
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6121, dtype: object)
(6122, Id                               6123
EmployeeName        MICHAEL FERRARESI
JobTitle            POLICE OFFICER II
BasePay                     101526.44
OvertimePay                   6631.55
OtherPay                      9904.24
Benefits                          NaN
TotalPay                    118062.23
TotalPayBenefits            118062.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6122, dtype: object)
(6123, Id                                       6124
EmployeeName                      HADI RAZZAQ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             118058.88
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            118058.88
TotalPayBenefits                    118058.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6123, dtype: object)
(6124, Id                                       6125
EmployeeName                       NANCY TUNG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             118055.69
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            118055.69
TotalPayBenefits                    118055.69
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6124, dtype: object)
(6125, Id                                6126
EmployeeName                EDGAR TABO
JobTitle            POLICE OFFICER III
BasePay                      109593.73
OvertimePay                    4846.71
OtherPay                       3608.97
Benefits                           NaN
TotalPay                     118049.41
TotalPayBenefits             118049.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6125, dtype: object)
(6126, Id                              6127
EmployeeName             WINSON SETO
JobTitle            POLICE OFFICER I
BasePay                     95223.71
OvertimePay                 11465.57
OtherPay                    11354.74
Benefits                         NaN
TotalPay                   118044.02
TotalPayBenefits           118044.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6126, dtype: object)
(6127, Id                                  6128
EmployeeName             MONICA SHERIDAN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        110295.52
OvertimePay                          0.0
OtherPay                         7744.21
Benefits                             NaN
TotalPay                       118039.73
TotalPayBenefits               118039.73
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6127, dtype: object)
(6128, Id                            6129
EmployeeName        ROBERT ROTISKI
JobTitle                MANAGER II
BasePay                  115116.03
OvertimePay                    0.0
OtherPay                   2922.91
Benefits                       NaN
TotalPay                 118038.94
TotalPayBenefits         118038.94
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6128, dtype: object)
(6129, Id                               6130
EmployeeName              ANDREA WEYL
JobTitle            POLICE OFFICER II
BasePay                     109787.85
OvertimePay                   5429.45
OtherPay                      2820.16
Benefits                          NaN
TotalPay                    118037.46
TotalPayBenefits            118037.46
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6129, dtype: object)
(6130, Id                                6131
EmployeeName              LORIE BROPHY
JobTitle            POLICE OFFICER III
BasePay                      112409.33
OvertimePay                      162.6
OtherPay                        5458.3
Benefits                           NaN
TotalPay                     118030.23
TotalPayBenefits             118030.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6130, dtype: object)
(6131, Id                              6132
EmployeeName          KRISTEN STRAIT
JobTitle            REGISTERED NURSE
BasePay                    101473.47
OvertimePay                  2140.38
OtherPay                    14400.14
Benefits                         NaN
TotalPay                   118013.99
TotalPayBenefits           118013.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6131, dtype: object)
(6132, Id                              6133
EmployeeName         JAN BRYAN REYES
JobTitle            REGISTERED NURSE
BasePay                     98961.89
OvertimePay                  2168.77
OtherPay                    16881.58
Benefits                         NaN
TotalPay                   118012.24
TotalPayBenefits           118012.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6132, dtype: object)
(6133, Id                                6134
EmployeeName             PATRICK BURKE
JobTitle            POLICE OFFICER III
BasePay                      112360.31
OvertimePay                    2569.24
OtherPay                        3067.4
Benefits                           NaN
TotalPay                     117996.95
TotalPayBenefits             117996.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6133, dtype: object)
(6134, Id                                           6135
EmployeeName                         LAURA MUNTER
JobTitle            TRAF SIGNAL ELECTRICIAN SUP I
BasePay                                 109117.61
OvertimePay                               6396.15
OtherPay                                   2482.5
Benefits                                      NaN
TotalPay                                117996.26
TotalPayBenefits                        117996.26
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6134, dtype: object)
(6135, Id                              6136
EmployeeName        GEORGE DEBRUNNER
JobTitle                 FIREFIGHTER
BasePay                    105934.67
OvertimePay                  1701.79
OtherPay                    10350.03
Benefits                         NaN
TotalPay                   117986.49
TotalPayBenefits           117986.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6135, dtype: object)
(6136, Id                              6137
EmployeeName        REYNALDO SERRANO
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                 10190.72
OtherPay                     1730.57
Benefits                         NaN
TotalPay                   117986.48
TotalPayBenefits           117986.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6136, dtype: object)
(6137, Id                                    6138
EmployeeName                MICHAEL HARPER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102853.86
OvertimePay                        3203.67
OtherPay                          11925.43
Benefits                               NaN
TotalPay                         117982.96
TotalPayBenefits                 117982.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6137, dtype: object)
(6138, Id                              6139
EmployeeName           CORAZON TALAG
JobTitle            REGISTERED NURSE
BasePay                     111176.0
OvertimePay                   5130.3
OtherPay                     1663.27
Benefits                         NaN
TotalPay                   117969.57
TotalPayBenefits           117969.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6138, dtype: object)
(6139, Id                              6140
EmployeeName          MATTHEW SEAVEY
JobTitle            POLICE OFFICER I
BasePay                     96566.33
OvertimePay                  9966.11
OtherPay                    11428.88
Benefits                         NaN
TotalPay                   117961.32
TotalPayBenefits           117961.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6139, dtype: object)
(6140, Id                                6141
EmployeeName            BARBARA KESTER
JobTitle            SHERIFF'S SERGEANT
BasePay                      104366.48
OvertimePay                    1151.61
OtherPay                      12437.98
Benefits                           NaN
TotalPay                     117956.07
TotalPayBenefits             117956.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6140, dtype: object)
(6141, Id                                6142
EmployeeName              JAMES SEIDEL
JobTitle            UTILITY SPECIALIST
BasePay                      113214.22
OvertimePay                        0.0
OtherPay                       4728.13
Benefits                           NaN
TotalPay                     117942.35
TotalPayBenefits             117942.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6141, dtype: object)
(6142, Id                                 6143
EmployeeName                ROBERT RUDY
JobTitle            STATIONARY ENGINEER
BasePay                        72465.68
OvertimePay                    39268.41
OtherPay                        6208.25
Benefits                            NaN
TotalPay                      117942.34
TotalPayBenefits              117942.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6142, dtype: object)
(6143, Id                                6144
EmployeeName              SILVIA DAVID
JobTitle            POLICE OFFICER III
BasePay                        57388.5
OvertimePay                   17603.41
OtherPay                      42950.04
Benefits                           NaN
TotalPay                     117941.95
TotalPayBenefits             117941.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6143, dtype: object)
(6144, Id                              6145
EmployeeName        FELIX PAGATPATAN
JobTitle            TRANSIT OPERATOR
BasePay                     66863.99
OvertimePay                 50885.94
OtherPay                      181.71
Benefits                         NaN
TotalPay                   117931.64
TotalPayBenefits           117931.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6144, dtype: object)
(6145, Id                                6146
EmployeeName             AKLILU BEMNET
JobTitle            TRANSIT SUPERVISOR
BasePay                       89395.63
OvertimePay                   22754.51
OtherPay                       5773.25
Benefits                           NaN
TotalPay                     117923.39
TotalPayBenefits             117923.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6145, dtype: object)
(6146, Id                            6147
EmployeeName         DANIEL MURPHY
JobTitle            LINE INSPECTOR
BasePay                   103481.2
OvertimePay               14255.75
OtherPay                     180.0
Benefits                       NaN
TotalPay                 117916.95
TotalPayBenefits         117916.95
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6146, dtype: object)
(6147, Id                                   6148
EmployeeName               THOMAS BRADLEY
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.83
OvertimePay                      15422.19
OtherPay                          6610.84
Benefits                              NaN
TotalPay                        117914.86
TotalPayBenefits                117914.86
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6147, dtype: object)
(6148, Id                               6149
EmployeeName            STEVEN WONDER
JobTitle            POLICE OFFICER II
BasePay                     110206.74
OvertimePay                   3450.16
OtherPay                      4252.48
Benefits                          NaN
TotalPay                    117909.38
TotalPayBenefits            117909.38
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6148, dtype: object)
(6149, Id                               6150
EmployeeName         CARMICHAEL REYES
JobTitle            POLICE OFFICER II
BasePay                      95785.02
OvertimePay                   7991.22
OtherPay                     14131.31
Benefits                          NaN
TotalPay                    117907.55
TotalPayBenefits            117907.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6149, dtype: object)
(6150, Id                            6151
EmployeeName        BARBARA WALTER
JobTitle             NURSE MANAGER
BasePay                  108316.13
OvertimePay                    0.0
OtherPay                   9575.94
Benefits                       NaN
TotalPay                 117892.07
TotalPayBenefits         117892.07
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6150, dtype: object)
(6151, Id                                                 6152
EmployeeName                            JAMES ALEXANDER
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       116777.48
OvertimePay                                         0.0
OtherPay                                        1112.24
Benefits                                            NaN
TotalPay                                      117889.72
TotalPayBenefits                              117889.72
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6151, dtype: object)
(6152, Id                              6153
EmployeeName             FENGYI RUAN
JobTitle            REGISTERED NURSE
BasePay                     112424.0
OvertimePay                   2594.4
OtherPay                     2868.82
Benefits                         NaN
TotalPay                   117887.22
TotalPayBenefits           117887.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6152, dtype: object)
(6153, Id                                6154
EmployeeName              HOPE NECHUTA
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    1836.57
OtherPay                       3645.85
Benefits                           NaN
TotalPay                     117883.49
TotalPayBenefits             117883.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6153, dtype: object)
(6154, Id                              6155
EmployeeName          ELEANOR GANIBI
JobTitle            REGISTERED NURSE
BasePay                    115882.19
OvertimePay                   668.55
OtherPay                     1332.23
Benefits                         NaN
TotalPay                   117882.97
TotalPayBenefits           117882.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6154, dtype: object)
(6155, Id                                6156
EmployeeName        DANIEL D'INNOCENTI
JobTitle                    MANAGER II
BasePay                      114237.28
OvertimePay                        0.0
OtherPay                       3641.99
Benefits                           NaN
TotalPay                     117879.27
TotalPayBenefits             117879.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6155, dtype: object)
(6156, Id                                6157
EmployeeName              MICHAEL MANN
JobTitle            SHERIFF'S SERGEANT
BasePay                        98906.6
OvertimePay                    5863.73
OtherPay                      13098.26
Benefits                           NaN
TotalPay                     117868.59
TotalPayBenefits             117868.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6156, dtype: object)
(6157, Id                              6158
EmployeeName          STEPHON DEGAND
JobTitle            POLICE OFFICER I
BasePay                     91777.54
OvertimePay                  8696.71
OtherPay                     17390.7
Benefits                         NaN
TotalPay                   117864.95
TotalPayBenefits           117864.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6157, dtype: object)
(6158, Id                              6159
EmployeeName          DEWAYNE WILSON
JobTitle            POLICE OFFICER I
BasePay                    106585.68
OvertimePay                   9649.4
OtherPay                     1628.64
Benefits                         NaN
TotalPay                   117863.72
TotalPayBenefits           117863.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6158, dtype: object)
(6159, Id                                6160
EmployeeName        RHIA CELESTE ARBIS
JobTitle              REGISTERED NURSE
BasePay                      104298.78
OvertimePay                    4243.83
OtherPay                       9319.93
Benefits                           NaN
TotalPay                     117862.54
TotalPayBenefits             117862.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6159, dtype: object)
(6160, Id                               6161
EmployeeName           BRET MCMANIGAL
JobTitle            POLICE OFFICER II
BasePay                     100106.25
OvertimePay                   5725.89
OtherPay                     12027.35
Benefits                          NaN
TotalPay                    117859.49
TotalPayBenefits            117859.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6160, dtype: object)
(6161, Id                                  6162
EmployeeName                 AARON SMITH
JobTitle            IS ENGINEER - SENIOR
BasePay                        114119.01
OvertimePay                          0.0
OtherPay                         3734.57
Benefits                             NaN
TotalPay                       117853.58
TotalPayBenefits               117853.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6161, dtype: object)
(6162, Id                                6163
EmployeeName              JOHN HIGGINS
JobTitle            POLICE OFFICER III
BasePay                      112511.44
OvertimePay                        0.0
OtherPay                       5341.49
Benefits                           NaN
TotalPay                     117852.93
TotalPayBenefits             117852.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6162, dtype: object)
(6163, Id                              6164
EmployeeName          GIRLIE BITANGA
JobTitle            REGISTERED NURSE
BasePay                     112076.4
OvertimePay                   3852.6
OtherPay                     1923.36
Benefits                         NaN
TotalPay                   117852.36
TotalPayBenefits           117852.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6163, dtype: object)
(6164, Id                              6165
EmployeeName           DAVID SERRANO
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  4421.33
OtherPay                     7359.48
Benefits                         NaN
TotalPay                   117846.01
TotalPayBenefits           117846.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6164, dtype: object)
(6165, Id                                6166
EmployeeName              GERALD LOUIE
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2112.88
OtherPay                        3313.9
Benefits                           NaN
TotalPay                     117827.85
TotalPayBenefits             117827.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6165, dtype: object)
(6166, Id                                             6167
EmployeeName                            GAIL CLABBY
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115816.94
OvertimePay                                 2007.89
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  117824.83
TotalPayBenefits                          117824.83
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6166, dtype: object)
(6167, Id                                6168
EmployeeName             JAMES ANDREWS
JobTitle            UTILITY SPECIALIST
BasePay                      113214.23
OvertimePay                        0.0
OtherPay                       4603.51
Benefits                           NaN
TotalPay                     117817.74
TotalPayBenefits             117817.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6167, dtype: object)
(6168, Id                               6169
EmployeeName        MICHAEL KAWAGUCHI
JobTitle             POLICE OFFICER I
BasePay                     106045.98
OvertimePay                   4007.98
OtherPay                      7763.31
Benefits                          NaN
TotalPay                    117817.27
TotalPayBenefits            117817.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6168, dtype: object)
(6169, Id                           6170
EmployeeName         KEVIN SPORER
JobTitle               MANAGER IV
BasePay                 109284.37
OvertimePay               5046.36
OtherPay                  3485.85
Benefits                      NaN
TotalPay                117816.58
TotalPayBenefits        117816.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6169, dtype: object)
(6170, Id                                6171
EmployeeName               PAUL BONITZ
JobTitle            UTILITY SPECIALIST
BasePay                      113214.21
OvertimePay                        0.0
OtherPay                       4601.68
Benefits                           NaN
TotalPay                     117815.89
TotalPayBenefits             117815.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6170, dtype: object)
(6171, Id                                               6172
EmployeeName                          MICHAEL DICHOSO
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.62
OvertimePay                                    455.74
OtherPay                                     11797.09
Benefits                                          NaN
TotalPay                                    117807.45
TotalPayBenefits                            117807.45
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6171, dtype: object)
(6172, Id                              6173
EmployeeName        MICHAEL BUSHNELL
JobTitle            POLICE OFFICER I
BasePay                     96704.33
OvertimePay                  9261.54
OtherPay                     11838.7
Benefits                         NaN
TotalPay                   117804.57
TotalPayBenefits           117804.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6172, dtype: object)
(6173, Id                               6174
EmployeeName        REBECCA SILVERMAN
JobTitle             REGISTERED NURSE
BasePay                     113073.57
OvertimePay                       0.0
OtherPay                      4730.23
Benefits                          NaN
TotalPay                     117803.8
TotalPayBenefits             117803.8
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6173, dtype: object)
(6174, Id                                6175
EmployeeName             RUSSELL STEPP
JobTitle            UTILITY SPECIALIST
BasePay                      113214.23
OvertimePay                        0.0
OtherPay                       4567.72
Benefits                           NaN
TotalPay                     117781.95
TotalPayBenefits             117781.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6174, dtype: object)
(6175, Id                               6176
EmployeeName        KIM TRUONG-NGUYEN
JobTitle             REGISTERED NURSE
BasePay                     116405.25
OvertimePay                       0.0
OtherPay                       1375.0
Benefits                          NaN
TotalPay                    117780.25
TotalPayBenefits            117780.25
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6175, dtype: object)
(6176, Id                            6177
EmployeeName         MARK MORRISON
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               16309.18
OtherPay                  14624.81
Benefits                       NaN
TotalPay                 117774.01
TotalPayBenefits         117774.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6176, dtype: object)
(6177, Id                                                     6178
EmployeeName                              NATALIE ELICETCHE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78013.34
OvertimePay                                        29422.22
OtherPay                                           10337.56
Benefits                                                NaN
TotalPay                                          117773.12
TotalPayBenefits                                  117773.12
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6177, dtype: object)
(6178, Id                                6179
EmployeeName             JAMES QUANICO
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.97
OvertimePay                    3715.77
OtherPay                       8346.09
Benefits                           NaN
TotalPay                     117759.83
TotalPayBenefits             117759.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6178, dtype: object)
(6179, Id                            6180
EmployeeName          ANDREW BROWN
JobTitle            DEPUTY SHERIFF
BasePay                   73832.13
OvertimePay               38733.47
OtherPay                   5177.03
Benefits                       NaN
TotalPay                 117742.63
TotalPayBenefits         117742.63
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6179, dtype: object)
(6180, Id                                     6181
EmployeeName                 SUSAN SOTERIOU
JobTitle            WATER SERVICE INSPECTOR
BasePay                            90232.81
OvertimePay                        11327.39
OtherPay                           16179.25
Benefits                                NaN
TotalPay                          117739.45
TotalPayBenefits                  117739.45
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6180, dtype: object)
(6181, Id                                                     6182
EmployeeName                             TEODROS DERESSEGNE
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87694.48
OvertimePay                                        19832.24
OtherPay                                           10200.46
Benefits                                                NaN
TotalPay                                          117727.18
TotalPayBenefits                                  117727.18
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6181, dtype: object)
(6182, Id                                      6183
EmployeeName        ROSA-LEAH MARTINEZ-DAVIS
JobTitle                    REGISTERED NURSE
BasePay                             96166.31
OvertimePay                          6453.57
OtherPay                            15097.38
Benefits                                 NaN
TotalPay                           117717.26
TotalPayBenefits                   117717.26
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 6182, dtype: object)
(6183, Id                               6184
EmployeeName           ROBERT FRAZIER
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                   2488.64
OtherPay                      5003.24
Benefits                          NaN
TotalPay                    117714.95
TotalPayBenefits            117714.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6183, dtype: object)
(6184, Id                              6185
EmployeeName           RANDY TIFFANY
JobTitle            POLICE OFFICER I
BasePay                     94496.84
OvertimePay                  5509.37
OtherPay                    17699.82
Benefits                         NaN
TotalPay                   117706.03
TotalPayBenefits           117706.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6184, dtype: object)
(6185, Id                                                     6186
EmployeeName                                     DORIAN LOK
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77546.27
OvertimePay                                        29119.19
OtherPay                                           11038.89
Benefits                                                NaN
TotalPay                                          117704.35
TotalPayBenefits                                  117704.35
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6185, dtype: object)
(6186, Id                            6187
EmployeeName         SHERYL SAWYER
JobTitle            COURT REPORTER
BasePay                   106999.2
OvertimePay                    0.0
OtherPay                  10699.92
Benefits                       NaN
TotalPay                 117699.12
TotalPayBenefits         117699.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6186, dtype: object)
(6187, Id                                6188
EmployeeName        REGINALD HORTINELA
JobTitle              REGISTERED NURSE
BasePay                       112424.0
OvertimePay                        0.0
OtherPay                       5257.73
Benefits                           NaN
TotalPay                     117681.73
TotalPayBenefits             117681.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6187, dtype: object)
(6188, Id                           6189
EmployeeName            LILY WANG
JobTitle               MANAGER II
BasePay                 114237.38
OvertimePay                   0.0
OtherPay                  3443.27
Benefits                      NaN
TotalPay                117680.65
TotalPayBenefits        117680.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6188, dtype: object)
(6189, Id                                6190
EmployeeName              ROBIN BREUER
JobTitle            UTILITY SPECIALIST
BasePay                       113214.2
OvertimePay                        0.0
OtherPay                       4463.61
Benefits                           NaN
TotalPay                     117677.81
TotalPayBenefits             117677.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6189, dtype: object)
(6190, Id                              6191
EmployeeName         MIGUELITA NICER
JobTitle            REGISTERED NURSE
BasePay                    105310.49
OvertimePay                  7394.97
OtherPay                     4971.55
Benefits                         NaN
TotalPay                   117677.01
TotalPayBenefits           117677.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6190, dtype: object)
(6191, Id                                        6192
EmployeeName                      KEVIN ADKINS
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               94830.36
OvertimePay                           20210.14
OtherPay                               2634.94
Benefits                                   NaN
TotalPay                             117675.44
TotalPayBenefits                     117675.44
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6191, dtype: object)
(6192, Id                                          6193
EmployeeName                           DAN VARNI
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                102254.18
OvertimePay                              8583.01
OtherPay                                 6836.74
Benefits                                     NaN
TotalPay                               117673.93
TotalPayBenefits                       117673.93
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 6192, dtype: object)
(6193, Id                                6194
EmployeeName                DENNIS JEE
JobTitle            POLICE OFFICER III
BasePay                      112421.44
OvertimePay                     162.48
OtherPay                       5087.44
Benefits                           NaN
TotalPay                     117671.36
TotalPayBenefits             117671.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6193, dtype: object)
(6194, Id                                    6195
EmployeeName                  EDWARD DILLE
JobTitle            ELECTRICAL LINE WORKER
BasePay                           84220.81
OvertimePay                         6845.0
OtherPay                          26603.41
Benefits                               NaN
TotalPay                         117669.22
TotalPayBenefits                 117669.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6194, dtype: object)
(6195, Id                                               6196
EmployeeName                         CHRISTOPHER WONG
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.64
OvertimePay                                    734.27
OtherPay                                     11375.95
Benefits                                          NaN
TotalPay                                    117664.86
TotalPayBenefits                            117664.86
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6195, dtype: object)
(6196, Id                              6197
EmployeeName            JOYCE GRAVES
JobTitle            REGISTERED NURSE
BasePay                    107362.56
OvertimePay                  4274.28
OtherPay                     6024.89
Benefits                         NaN
TotalPay                   117661.73
TotalPayBenefits           117661.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6196, dtype: object)
(6197, Id                              6198
EmployeeName          STEVEN NEEDHAM
JobTitle            POLICE OFFICER I
BasePay                     96152.34
OvertimePay                 12939.88
OtherPay                     8559.22
Benefits                         NaN
TotalPay                   117651.44
TotalPayBenefits           117651.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6197, dtype: object)
(6198, Id                           6199
EmployeeName        ROCK PLICHCIK
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay                   0.0
OtherPay                 11712.26
Benefits                      NaN
TotalPay                117646.93
TotalPayBenefits        117646.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6198, dtype: object)
(6199, Id                              6200
EmployeeName           MICHAEL BROWN
JobTitle            POLICE OFFICER I
BasePay                    106084.31
OvertimePay                  5649.66
OtherPay                      5895.3
Benefits                         NaN
TotalPay                   117629.27
TotalPayBenefits           117629.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6199, dtype: object)
(6200, Id                              6201
EmployeeName            MICHAEL HILL
JobTitle            REGISTERED NURSE
BasePay                     92918.34
OvertimePay                  9742.93
OtherPay                    14961.17
Benefits                         NaN
TotalPay                   117622.44
TotalPayBenefits           117622.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6200, dtype: object)
(6201, Id                              6202
EmployeeName        LOUIS HARGREAVES
JobTitle            POLICE OFFICER I
BasePay                     94582.83
OvertimePay                  5267.89
OtherPay                    17766.04
Benefits                         NaN
TotalPay                   117616.76
TotalPayBenefits           117616.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6201, dtype: object)
(6202, Id                           6203
EmployeeName          LINDA PERRY
JobTitle               MANAGER II
BasePay                  114237.3
OvertimePay                   0.0
OtherPay                  3377.31
Benefits                      NaN
TotalPay                117614.61
TotalPayBenefits        117614.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6202, dtype: object)
(6203, Id                                  6204
EmployeeName                  SANSAN TIN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        117610.14
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       117610.14
TotalPayBenefits               117610.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6203, dtype: object)
(6204, Id                              6205
EmployeeName           STUART MOLVER
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                 10477.98
OtherPay                     1061.41
Benefits                         NaN
TotalPay                   117604.59
TotalPayBenefits           117604.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6204, dtype: object)
(6205, Id                                6206
EmployeeName            DARWIN HELMUTH
JobTitle            UTILITY SPECIALIST
BasePay                      113213.88
OvertimePay                        0.0
OtherPay                       4384.43
Benefits                           NaN
TotalPay                     117598.31
TotalPayBenefits             117598.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6205, dtype: object)
(6206, Id                                6207
EmployeeName             DONALD CALKIN
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                        0.0
OtherPay                        5194.5
Benefits                           NaN
TotalPay                     117595.59
TotalPayBenefits             117595.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6206, dtype: object)
(6207, Id                               6208
EmployeeName              NANCY MAZUR
JobTitle            POLICE OFFICER II
BasePay                     108662.93
OvertimePay                   1908.72
OtherPay                       7021.4
Benefits                          NaN
TotalPay                    117593.05
TotalPayBenefits            117593.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6207, dtype: object)
(6208, Id                                               6209
EmployeeName                                 SUNNY MA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  10596.21
OtherPay                                      7981.98
Benefits                                          NaN
TotalPay                                    117592.59
TotalPayBenefits                            117592.59
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6208, dtype: object)
(6209, Id                                  6210
EmployeeName        MEGAN VIRGIN LICHTER
JobTitle                REGISTERED NURSE
BasePay                         97209.52
OvertimePay                      5438.46
OtherPay                        14942.86
Benefits                             NaN
TotalPay                       117590.84
TotalPayBenefits               117590.84
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6209, dtype: object)
(6210, Id                                       6211
EmployeeName                 THOMAS VENIZELOS
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              110743.2
OvertimePay                           1303.16
OtherPay                              5537.16
Benefits                                  NaN
TotalPay                            117583.52
TotalPayBenefits                    117583.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6210, dtype: object)
(6211, Id                                                               6212
EmployeeName                                                KEVIN MAI
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                      107023.2
OvertimePay                                                   8355.23
OtherPay                                                       2202.0
Benefits                                                          NaN
TotalPay                                                    117580.43
TotalPayBenefits                                            117580.43
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6211, dtype: object)
(6212, Id                               6213
EmployeeName           RICHMOND CURRY
JobTitle            POLICE OFFICER II
BasePay                     110242.89
OvertimePay                   5864.33
OtherPay                       1472.8
Benefits                          NaN
TotalPay                    117580.02
TotalPayBenefits            117580.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6212, dtype: object)
(6213, Id                                       6214
EmployeeName                   VILASKA NGUYEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             117575.68
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            117575.68
TotalPayBenefits                    117575.68
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6213, dtype: object)
(6214, Id                                       6215
EmployeeName                   JAMI TILLOTSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             117568.82
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            117568.82
TotalPayBenefits                    117568.82
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6214, dtype: object)
(6215, Id                              6216
EmployeeName            SANDRA SZETO
JobTitle            REGISTERED NURSE
BasePay                    113523.74
OvertimePay                      0.0
OtherPay                     4044.23
Benefits                         NaN
TotalPay                   117567.97
TotalPayBenefits           117567.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6215, dtype: object)
(6216, Id                           6217
EmployeeName          ALLEN POSEY
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay                   0.0
OtherPay                 11628.03
Benefits                      NaN
TotalPay                117562.66
TotalPayBenefits        117562.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6216, dtype: object)
(6217, Id                                                 6218
EmployeeName                                 KAMMY VONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       117553.41
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      117553.41
TotalPayBenefits                              117553.41
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6217, dtype: object)
(6218, Id                                6219
EmployeeName             RANDALL SMITH
JobTitle            UTILITY SPECIALIST
BasePay                       113105.2
OvertimePay                        0.0
OtherPay                       4439.99
Benefits                           NaN
TotalPay                     117545.19
TotalPayBenefits             117545.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6218, dtype: object)
(6219, Id                              6220
EmployeeName        JONATHAN ERI NON
JobTitle            REGISTERED NURSE
BasePay                      96419.7
OvertimePay                  3236.62
OtherPay                    17874.33
Benefits                         NaN
TotalPay                   117530.65
TotalPayBenefits           117530.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6219, dtype: object)
(6220, Id                                6221
EmployeeName           DONALD MCINTYRE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                    4289.16
OtherPay                        819.53
Benefits                           NaN
TotalPay                     117509.77
TotalPayBenefits             117509.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6220, dtype: object)
(6221, Id                                    6222
EmployeeName                 DAVID CAMERLO
JobTitle            ELECTRICAL LINE WORKER
BasePay                           84220.87
OvertimePay                        4425.38
OtherPay                          28856.46
Benefits                               NaN
TotalPay                         117502.71
TotalPayBenefits                 117502.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6221, dtype: object)
(6222, Id                               6223
EmployeeName           MATTHEW MATTEI
JobTitle            POLICE OFFICER II
BasePay                     108643.08
OvertimePay                   2343.65
OtherPay                      6505.74
Benefits                          NaN
TotalPay                    117492.47
TotalPayBenefits            117492.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6222, dtype: object)
(6223, Id                           6224
EmployeeName        MIGUEL MONROY
JobTitle                MANAGER I
BasePay                  117478.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 117478.5
TotalPayBenefits         117478.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6223, dtype: object)
(6224, Id                                       6225
EmployeeName                 MICHAEL MITCHELL
JobTitle            SENIOR PLUMBING INSPECTOR
BasePay                              111875.8
OvertimePay                               0.0
OtherPay                              5593.79
Benefits                                  NaN
TotalPay                            117469.59
TotalPayBenefits                    117469.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6224, dtype: object)
(6225, Id                                    6226
EmployeeName                   JASON EAKLE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           98532.25
OvertimePay                        6060.31
OtherPay                          12874.29
Benefits                               NaN
TotalPay                         117466.85
TotalPayBenefits                 117466.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6225, dtype: object)
(6226, Id                              6227
EmployeeName            HASIJA SISIC
JobTitle            REGISTERED NURSE
BasePay                    108257.63
OvertimePay                   2516.4
OtherPay                     6687.79
Benefits                         NaN
TotalPay                   117461.82
TotalPayBenefits           117461.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6226, dtype: object)
(6227, Id                                     6228
EmployeeName                 DENNIS EDWARDS
JobTitle            WATER SERVICE INSPECTOR
BasePay                            89499.25
OvertimePay                         10536.6
OtherPay                            17418.1
Benefits                                NaN
TotalPay                          117453.95
TotalPayBenefits                  117453.95
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6227, dtype: object)
(6228, Id                                6229
EmployeeName           LORENZO ADAMSON
JobTitle            POLICE OFFICER III
BasePay                      112400.99
OvertimePay                     3476.0
OtherPay                       1565.22
Benefits                           NaN
TotalPay                     117442.21
TotalPayBenefits             117442.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6228, dtype: object)
(6229, Id                           6230
EmployeeName        YVETTE GAMBLE
JobTitle              MANAGER III
BasePay                 117441.58
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                117441.58
TotalPayBenefits        117441.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6229, dtype: object)
(6230, Id                                6231
EmployeeName           VICTOR SANTIAGO
JobTitle            SHERIFF'S SERGEANT
BasePay                       92027.02
OvertimePay                   18804.97
OtherPay                       6607.46
Benefits                           NaN
TotalPay                     117439.45
TotalPayBenefits             117439.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6230, dtype: object)
(6231, Id                                6232
EmployeeName              HUITIER CHOI
JobTitle            POLICE OFFICER III
BasePay                      112421.43
OvertimePay                    1937.75
OtherPay                       3068.67
Benefits                           NaN
TotalPay                     117427.85
TotalPayBenefits             117427.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6231, dtype: object)
(6232, Id                                6233
EmployeeName          DAVID MARTINDALE
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.93
OvertimePay                    1542.62
OtherPay                      10183.45
Benefits                           NaN
TotalPay                      117424.0
TotalPayBenefits              117424.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6232, dtype: object)
(6233, Id                              6234
EmployeeName        NIKOLAUS BORTHNE
JobTitle            POLICE OFFICER I
BasePay                    107945.25
OvertimePay                  4904.45
OtherPay                     4572.69
Benefits                         NaN
TotalPay                   117422.39
TotalPayBenefits           117422.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6233, dtype: object)
(6234, Id                               6235
EmployeeName          ANDREW KAVANAGH
JobTitle            POLICE OFFICER II
BasePay                     101359.28
OvertimePay                   6317.23
OtherPay                      9743.21
Benefits                          NaN
TotalPay                    117419.72
TotalPayBenefits            117419.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6234, dtype: object)
(6235, Id                                6236
EmployeeName        DOUGLAS TENNENBAUM
JobTitle              POLICE OFFICER I
BasePay                       106065.2
OvertimePay                    6935.63
OtherPay                       4415.71
Benefits                           NaN
TotalPay                     117416.54
TotalPayBenefits             117416.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6235, dtype: object)
(6236, Id                              6237
EmployeeName        CHRISTINA ABELLA
JobTitle            REGISTERED NURSE
BasePay                    104159.08
OvertimePay                  6218.67
OtherPay                     7023.46
Benefits                         NaN
TotalPay                   117401.21
TotalPayBenefits           117401.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6236, dtype: object)
(6237, Id                                        6238
EmployeeName                        SHARI ZINN
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103971.4
OvertimePay                           12536.83
OtherPay                                890.19
Benefits                                   NaN
TotalPay                             117398.42
TotalPayBenefits                     117398.42
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6237, dtype: object)
(6238, Id                                6239
EmployeeName        ANN PATRICE GAMBOA
JobTitle            POLICE OFFICER III
BasePay                      112134.69
OvertimePay                     832.43
OtherPay                       4425.92
Benefits                           NaN
TotalPay                     117393.04
TotalPayBenefits             117393.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6238, dtype: object)
(6239, Id                              6240
EmployeeName             HUNG NGUYEN
JobTitle            TRANSIT OPERATOR
BasePay                     65958.89
OvertimePay                 48133.75
OtherPay                     3291.25
Benefits                         NaN
TotalPay                   117383.89
TotalPayBenefits           117383.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6239, dtype: object)
(6240, Id                                6241
EmployeeName                 FRANK LUM
JobTitle            TRANSIT MANAGER II
BasePay                       117364.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      117364.0
TotalPayBenefits              117364.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6240, dtype: object)
(6241, Id                                      6242
EmployeeName                     GLORIA CHAN
JobTitle            PUBLIC RELATIONS MANAGER
BasePay                            116342.08
OvertimePay                              0.0
OtherPay                             1018.49
Benefits                                 NaN
TotalPay                           117360.57
TotalPayBenefits                   117360.57
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 6241, dtype: object)
(6242, Id                                6243
EmployeeName         ALFREDDIE STEWARD
JobTitle            POLICE OFFICER III
BasePay                      112421.49
OvertimePay                        0.0
OtherPay                       4938.74
Benefits                           NaN
TotalPay                     117360.23
TotalPayBenefits             117360.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6242, dtype: object)
(6243, Id                                                              6244
EmployeeName                                 KATHLEEN MCCARTHY-BOYCE
JobTitle            ASSISTANT CHIEF DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                                     110708.1
OvertimePay                                                      0.0
OtherPay                                                     6642.93
Benefits                                                         NaN
TotalPay                                                   117351.03
TotalPayBenefits                                           117351.03
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6243, dtype: object)
(6244, Id                                                              6245
EmployeeName                                            RON HUBERMAN
JobTitle            ASSISTANT CHIEF DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                                    110708.01
OvertimePay                                                      0.0
OtherPay                                                     6642.97
Benefits                                                         NaN
TotalPay                                                   117350.98
TotalPayBenefits                                           117350.98
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6244, dtype: object)
(6245, Id                                6246
EmployeeName            ANTHONY FICHER
JobTitle            SHERIFF'S SERGEANT
BasePay                       98535.89
OvertimePay                    7014.58
OtherPay                      11791.71
Benefits                           NaN
TotalPay                     117342.18
TotalPayBenefits             117342.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6245, dtype: object)
(6246, Id                                        6247
EmployeeName                            WAI NG
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                                97130.8
OvertimePay                           17479.33
OtherPay                               2726.67
Benefits                                   NaN
TotalPay                              117336.8
TotalPayBenefits                      117336.8
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6246, dtype: object)
(6247, Id                              6248
EmployeeName          BRANDI JACKSON
JobTitle            REGISTERED NURSE
BasePay                    105192.11
OvertimePay                  7483.22
OtherPay                     4659.39
Benefits                         NaN
TotalPay                   117334.72
TotalPayBenefits           117334.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6247, dtype: object)
(6248, Id                               6249
EmployeeName        WILLIAM WILKINSON
JobTitle                    MANAGER I
BasePay                     110807.84
OvertimePay                       0.0
OtherPay                      6507.06
Benefits                          NaN
TotalPay                     117314.9
TotalPayBenefits             117314.9
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6248, dtype: object)
(6249, Id                                6250
EmployeeName           JEAN ETCHEVESTE
JobTitle            POLICE OFFICER III
BasePay                      112441.74
OvertimePay                    4046.42
OtherPay                        826.38
Benefits                           NaN
TotalPay                     117314.54
TotalPayBenefits             117314.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6249, dtype: object)
(6250, Id                              6251
EmployeeName              ERIN TOLVA
JobTitle            REGISTERED NURSE
BasePay                     97930.98
OvertimePay                  4337.54
OtherPay                    15045.39
Benefits                         NaN
TotalPay                   117313.91
TotalPayBenefits           117313.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6250, dtype: object)
(6251, Id                                               6252
EmployeeName                          MICHAEL SEYMORE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      97699.64
OvertimePay                                   9300.49
OtherPay                                     10309.48
Benefits                                          NaN
TotalPay                                    117309.61
TotalPayBenefits                            117309.61
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6251, dtype: object)
(6252, Id                                6253
EmployeeName                  HANK LUM
JobTitle            POLICE OFFICER III
BasePay                      112380.64
OvertimePay                    4101.03
OtherPay                        826.46
Benefits                           NaN
TotalPay                     117308.13
TotalPayBenefits             117308.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6252, dtype: object)
(6253, Id                               6254
EmployeeName               CARL UEBER
JobTitle            POLICE OFFICER II
BasePay                     100539.09
OvertimePay                   9837.85
OtherPay                      6926.79
Benefits                          NaN
TotalPay                    117303.73
TotalPayBenefits            117303.73
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6253, dtype: object)
(6254, Id                                6255
EmployeeName                 FRED KWAN
JobTitle            POLICE OFFICER III
BasePay                       112401.0
OvertimePay                        0.0
OtherPay                       4897.23
Benefits                           NaN
TotalPay                     117298.23
TotalPayBenefits             117298.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6254, dtype: object)
(6255, Id                           6256
EmployeeName        JAMES SCHRICK
JobTitle              FIREFIGHTER
BasePay                 103090.65
OvertimePay                   0.0
OtherPay                 14205.66
Benefits                      NaN
TotalPay                117296.31
TotalPayBenefits        117296.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6255, dtype: object)
(6256, Id                                             6257
EmployeeName                               MUN CHOI
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    111972.2
OvertimePay                                  749.93
OtherPay                                     4570.0
Benefits                                        NaN
TotalPay                                  117292.13
TotalPayBenefits                          117292.13
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6256, dtype: object)
(6257, Id                               6258
EmployeeName               OLIVER LIM
JobTitle            POLICE OFFICER II
BasePay                     101462.32
OvertimePay                   8886.45
OtherPay                      6930.34
Benefits                          NaN
TotalPay                    117279.11
TotalPayBenefits            117279.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6257, dtype: object)
(6258, Id                                6259
EmployeeName                 RYAN SETO
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                        0.0
OtherPay                       4875.74
Benefits                           NaN
TotalPay                     117276.82
TotalPayBenefits             117276.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6258, dtype: object)
(6259, Id                              6260
EmployeeName            LENE ZULUETA
JobTitle            REGISTERED NURSE
BasePay                     99236.67
OvertimePay                    419.4
OtherPay                    17616.57
Benefits                         NaN
TotalPay                   117272.64
TotalPayBenefits           117272.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6259, dtype: object)
(6260, Id                                                               6261
EmployeeName                                           PATRICK TOEPEL
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      90376.01
OvertimePay                                                  10602.38
OtherPay                                                     16280.04
Benefits                                                          NaN
TotalPay                                                    117258.43
TotalPayBenefits                                            117258.43
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6260, dtype: object)
(6261, Id                                       6262
EmployeeName                    JAMES WHIPPLE
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              111651.6
OvertimePay                               0.0
OtherPay                              5582.58
Benefits                                  NaN
TotalPay                            117234.18
TotalPayBenefits                    117234.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6261, dtype: object)
(6262, Id                                                 6263
EmployeeName                                LEANNE NHAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       114118.43
OvertimePay                                         0.0
OtherPay                                        3109.35
Benefits                                            NaN
TotalPay                                      117227.78
TotalPayBenefits                              117227.78
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6262, dtype: object)
(6263, Id                           6264
EmployeeName            JAY VEACH
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               4153.49
OtherPay                  7136.52
Benefits                      NaN
TotalPay                117224.68
TotalPayBenefits        117224.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6263, dtype: object)
(6264, Id                              6265
EmployeeName          JANITH ANN ONG
JobTitle            REGISTERED NURSE
BasePay                    109343.15
OvertimePay                      0.0
OtherPay                     7879.11
Benefits                         NaN
TotalPay                   117222.26
TotalPayBenefits           117222.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6264, dtype: object)
(6265, Id                                       6266
EmployeeName                 MICHAEL SULLIVAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             117217.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            117217.62
TotalPayBenefits                    117217.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6265, dtype: object)
(6266, Id                              6267
EmployeeName        ROMINA GUTIERREZ
JobTitle            REGISTERED NURSE
BasePay                     97787.26
OvertimePay                  5675.25
OtherPay                    13742.95
Benefits                         NaN
TotalPay                   117205.46
TotalPayBenefits           117205.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6266, dtype: object)
(6267, Id                               6268
EmployeeName            ERNEST TRAPSI
JobTitle            POLICE OFFICER II
BasePay                     110242.93
OvertimePay                   5247.82
OtherPay                      1712.19
Benefits                          NaN
TotalPay                    117202.94
TotalPayBenefits            117202.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6267, dtype: object)
(6268, Id                                                      6269
EmployeeName                                  WALTER PODESTA
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             88983.33
OvertimePay                                          8623.93
OtherPay                                            19594.67
Benefits                                                 NaN
TotalPay                                           117201.93
TotalPayBenefits                                   117201.93
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6268, dtype: object)
(6269, Id                                     6270
EmployeeName                      JOHN ROSS
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                           117194.48
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          117194.48
TotalPayBenefits                  117194.48
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6269, dtype: object)
(6270, Id                                6271
EmployeeName                  DAVID ON
JobTitle            POLICE OFFICER III
BasePay                      112401.05
OvertimePay                    2647.48
OtherPay                       2145.67
Benefits                           NaN
TotalPay                      117194.2
TotalPayBenefits              117194.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6270, dtype: object)
(6271, Id                                    6272
EmployeeName            JEFFREY MARCALETTI
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85568.69
OvertimePay                       19161.31
OtherPay                          12460.05
Benefits                               NaN
TotalPay                         117190.05
TotalPayBenefits                 117190.05
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6271, dtype: object)
(6272, Id                                6273
EmployeeName         SCOTT MAC PHERSON
JobTitle            UTILITY SPECIALIST
BasePay                      113214.01
OvertimePay                        0.0
OtherPay                        3969.8
Benefits                           NaN
TotalPay                     117183.81
TotalPayBenefits             117183.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6272, dtype: object)
(6273, Id                                 6274
EmployeeName                BELLA FUDYM
JobTitle            IS PROJECT DIRECTOR
BasePay                        117182.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       117182.0
TotalPayBenefits               117182.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6273, dtype: object)
(6274, Id                                                     6275
EmployeeName                                VANESSA FRANCIS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77934.82
OvertimePay                                        32055.79
OtherPay                                            7191.14
Benefits                                                NaN
TotalPay                                          117181.75
TotalPayBenefits                                  117181.75
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6274, dtype: object)
(6275, Id                                6276
EmployeeName                DAVID DORN
JobTitle            SHERIFF'S SERGEANT
BasePay                      105698.72
OvertimePay                    2601.65
OtherPay                       8869.52
Benefits                           NaN
TotalPay                     117169.89
TotalPayBenefits             117169.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6275, dtype: object)
(6276, Id                              6277
EmployeeName        AMANDA HANDERHAN
JobTitle            REGISTERED NURSE
BasePay                     99411.09
OvertimePay                  2235.97
OtherPay                    15518.69
Benefits                         NaN
TotalPay                   117165.75
TotalPayBenefits           117165.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6276, dtype: object)
(6277, Id                           6278
EmployeeName         TRACY BURRIS
JobTitle               MANAGER IV
BasePay                  117162.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 117162.5
TotalPayBenefits         117162.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6277, dtype: object)
(6278, Id                                    6279
EmployeeName                    SHERMAN YU
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.02
OvertimePay                       26485.22
OtherPay                               0.0
Benefits                               NaN
TotalPay                         117149.24
TotalPayBenefits                 117149.24
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6278, dtype: object)
(6279, Id                                6280
EmployeeName             SAMUEL MARTIN
JobTitle            POLICE OFFICER III
BasePay                      110806.94
OvertimePay                    2880.57
OtherPay                       3458.48
Benefits                           NaN
TotalPay                     117145.99
TotalPayBenefits             117145.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6279, dtype: object)
(6280, Id                            6281
EmployeeName        DOUGLAS ULLMAN
JobTitle                 ARCHITECT
BasePay                  117142.91
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 117142.91
TotalPayBenefits         117142.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6280, dtype: object)
(6281, Id                              6282
EmployeeName           SHEREE BAYEUR
JobTitle            REGISTERED NURSE
BasePay                     93905.14
OvertimePay                  9536.39
OtherPay                    13689.48
Benefits                         NaN
TotalPay                   117131.01
TotalPayBenefits           117131.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6281, dtype: object)
(6282, Id                                6283
EmployeeName        ELIZABETH ADVIENTO
JobTitle              REGISTERED NURSE
BasePay                      105029.96
OvertimePay                    5027.73
OtherPay                       7069.99
Benefits                           NaN
TotalPay                     117127.68
TotalPayBenefits             117127.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6282, dtype: object)
(6283, Id                           6284
EmployeeName         MARK THORSEN
JobTitle                  PLUMBER
BasePay                  89735.15
OvertimePay              23659.68
OtherPay                  3732.25
Benefits                      NaN
TotalPay                117127.08
TotalPayBenefits        117127.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6283, dtype: object)
(6284, Id                              6285
EmployeeName             GENE CORNYN
JobTitle            POLICE OFFICER I
BasePay                    106046.03
OvertimePay                  6061.87
OtherPay                     5008.86
Benefits                         NaN
TotalPay                   117116.76
TotalPayBenefits           117116.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6284, dtype: object)
(6285, Id                              6286
EmployeeName             WANXIA CHEN
JobTitle            REGISTERED NURSE
BasePay                    103820.37
OvertimePay                   8229.3
OtherPay                     5045.17
Benefits                         NaN
TotalPay                   117094.84
TotalPayBenefits           117094.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6285, dtype: object)
(6286, Id                                                   6287
EmployeeName                                  HENRY LOUIE
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.01
OvertimePay                                        630.64
OtherPay                                         13263.88
Benefits                                              NaN
TotalPay                                        117091.53
TotalPayBenefits                                117091.53
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 6286, dtype: object)
(6287, Id                              6288
EmployeeName            NOMERITA LUZ
JobTitle            REGISTERED NURSE
BasePay                    102889.86
OvertimePay                  9327.45
OtherPay                     4866.92
Benefits                         NaN
TotalPay                   117084.23
TotalPayBenefits           117084.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6287, dtype: object)
(6288, Id                              6289
EmployeeName            JARED LOVRIN
JobTitle            POLICE OFFICER I
BasePay                    106065.18
OvertimePay                  4983.08
OtherPay                     6030.34
Benefits                         NaN
TotalPay                    117078.6
TotalPayBenefits            117078.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6288, dtype: object)
(6289, Id                                 6290
EmployeeName          PONCIANO SULIT JR
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         71613.5
OvertimePay                    35043.37
OtherPay                       10416.69
Benefits                            NaN
TotalPay                      117073.56
TotalPayBenefits              117073.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6289, dtype: object)
(6290, Id                                6291
EmployeeName                ANNA ROCHE
JobTitle            UTILITY SPECIALIST
BasePay                      113213.92
OvertimePay                        0.0
OtherPay                        3854.9
Benefits                           NaN
TotalPay                     117068.82
TotalPayBenefits             117068.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6290, dtype: object)
(6291, Id                                             6292
EmployeeName                             DANIEL SEK
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.87
OvertimePay                                     0.0
OtherPay                                     1235.0
Benefits                                        NaN
TotalPay                                  117052.87
TotalPayBenefits                          117052.87
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6291, dtype: object)
(6292, Id                                6293
EmployeeName            REGINA COLEMAN
JobTitle            TRANSIT SUPERVISOR
BasePay                       85869.21
OvertimePay                   31053.35
OtherPay                        113.66
Benefits                           NaN
TotalPay                     117036.22
TotalPayBenefits             117036.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6292, dtype: object)
(6293, Id                              6294
EmployeeName           MICHAEL EVANS
JobTitle            POLICE OFFICER I
BasePay                     99804.34
OvertimePay                  9999.83
OtherPay                     7230.01
Benefits                         NaN
TotalPay                   117034.18
TotalPayBenefits           117034.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6293, dtype: object)
(6294, Id                               6295
EmployeeName          ROBERT FORNERIS
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                    951.06
OtherPay                      5837.76
Benefits                          NaN
TotalPay                    117031.76
TotalPayBenefits            117031.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6294, dtype: object)
(6295, Id                                6296
EmployeeName               RICHARD JUE
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    3647.36
OtherPay                        982.02
Benefits                           NaN
TotalPay                     117030.45
TotalPayBenefits             117030.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6295, dtype: object)
(6296, Id                                                6297
EmployeeName                       VLADIMIR VASILEVSKI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        72887.6
OvertimePay                                   43451.72
OtherPay                                         684.3
Benefits                                           NaN
TotalPay                                     117023.62
TotalPayBenefits                             117023.62
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6296, dtype: object)
(6297, Id                                6298
EmployeeName           CHRISTINE VANCE
JobTitle            UTILITY SPECIALIST
BasePay                      113213.85
OvertimePay                        0.0
OtherPay                       3802.78
Benefits                           NaN
TotalPay                     117016.63
TotalPayBenefits             117016.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6297, dtype: object)
(6298, Id                                            6299
EmployeeName                       SHIRLEY TREVINO
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   116004.0
OvertimePay                                    0.0
OtherPay                                    1000.0
Benefits                                       NaN
TotalPay                                  117004.0
TotalPayBenefits                          117004.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6298, dtype: object)
(6299, Id                                6300
EmployeeName               SUSAN LAVIN
JobTitle            POLICE OFFICER III
BasePay                      112421.24
OvertimePay                    3265.72
OtherPay                       1316.17
Benefits                           NaN
TotalPay                     117003.13
TotalPayBenefits             117003.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6299, dtype: object)
(6300, Id                                6301
EmployeeName             VILMA VINCENT
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   20204.67
OtherPay                        8728.5
Benefits                           NaN
TotalPay                     116995.17
TotalPayBenefits             116995.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6300, dtype: object)
(6301, Id                              6302
EmployeeName         ROBERTA MCGOWAN
JobTitle            REGISTERED NURSE
BasePay                     116742.9
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    116992.9
TotalPayBenefits            116992.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6301, dtype: object)
(6302, Id                               6303
EmployeeName           ALLEN MULLIKEN
JobTitle            POLICE OFFICER II
BasePay                     103399.96
OvertimePay                    6281.7
OtherPay                      7308.06
Benefits                          NaN
TotalPay                    116989.72
TotalPayBenefits            116989.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6302, dtype: object)
(6303, Id                           6304
EmployeeName            GARY DITO
JobTitle              FIREFIGHTER
BasePay                 105934.69
OvertimePay               1701.79
OtherPay                  9350.52
Benefits                      NaN
TotalPay                 116987.0
TotalPayBenefits         116987.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6303, dtype: object)
(6304, Id                                6305
EmployeeName              THOMAS DEELY
JobTitle            POLICE OFFICER III
BasePay                       112441.8
OvertimePay                    3718.17
OtherPay                        826.48
Benefits                           NaN
TotalPay                     116986.45
TotalPayBenefits             116986.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6304, dtype: object)
(6305, Id                              6306
EmployeeName         KIMBERLY TUCKER
JobTitle            REGISTERED NURSE
BasePay                    112201.12
OvertimePay                      0.0
OtherPay                     4778.92
Benefits                         NaN
TotalPay                   116980.04
TotalPayBenefits           116980.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6305, dtype: object)
(6306, Id                              6307
EmployeeName            LESLIE TYNES
JobTitle            REGISTERED NURSE
BasePay                     93880.97
OvertimePay                  7577.93
OtherPay                    15517.13
Benefits                         NaN
TotalPay                   116976.03
TotalPayBenefits           116976.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6306, dtype: object)
(6307, Id                                6308
EmployeeName            MARIA WILLIAMS
JobTitle            TRANSIT MANAGER II
BasePay                       116912.6
OvertimePay                        0.0
OtherPay                          61.0
Benefits                           NaN
TotalPay                      116973.6
TotalPayBenefits              116973.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6307, dtype: object)
(6308, Id                              6309
EmployeeName            JOSEPH GUMMO
JobTitle            POLICE OFFICER I
BasePay                     99201.32
OvertimePay                  5620.97
OtherPay                    12148.76
Benefits                         NaN
TotalPay                   116971.05
TotalPayBenefits           116971.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6308, dtype: object)
(6309, Id                                6310
EmployeeName        RANDOLPH BORDON JR
JobTitle              REGISTERED NURSE
BasePay                       95707.42
OvertimePay                    7019.82
OtherPay                      14237.21
Benefits                           NaN
TotalPay                     116964.45
TotalPayBenefits             116964.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6309, dtype: object)
(6310, Id                                  6311
EmployeeName                NORMAN NOBLE
JobTitle            IS ENGINEER - SENIOR
BasePay                         116964.3
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        116964.3
TotalPayBenefits                116964.3
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6310, dtype: object)
(6311, Id                              6312
EmployeeName            MAYA VASQUEZ
JobTitle            REGISTERED NURSE
BasePay                     115993.6
OvertimePay                      0.0
OtherPay                      970.34
Benefits                         NaN
TotalPay                   116963.94
TotalPayBenefits           116963.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6311, dtype: object)
(6312, Id                                 6313
EmployeeName                RUPERT CHIN
JobTitle            AIRPORT ELECTRICIAN
BasePay                        96050.44
OvertimePay                      9532.5
OtherPay                       11375.04
Benefits                            NaN
TotalPay                      116957.98
TotalPayBenefits              116957.98
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6312, dtype: object)
(6313, Id                               6314
EmployeeName          THEODORE LATTIG
JobTitle            POLICE OFFICER II
BasePay                      105439.5
OvertimePay                   4497.58
OtherPay                      7014.35
Benefits                          NaN
TotalPay                    116951.43
TotalPayBenefits            116951.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6313, dtype: object)
(6314, Id                              6315
EmployeeName            GENE GABRIEL
JobTitle            POLICE OFFICER I
BasePay                     98358.08
OvertimePay                  9009.58
OtherPay                     9569.32
Benefits                         NaN
TotalPay                   116936.98
TotalPayBenefits           116936.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6314, dtype: object)
(6315, Id                                6316
EmployeeName              WILLIAM WOON
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   22882.69
OtherPay                        5972.4
Benefits                           NaN
TotalPay                     116917.09
TotalPayBenefits             116917.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6315, dtype: object)
(6316, Id                                               6317
EmployeeName                             ALEX SANCHEZ
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   7937.82
OtherPay                                      9961.44
Benefits                                          NaN
TotalPay                                    116913.66
TotalPayBenefits                            116913.66
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6316, dtype: object)
(6317, Id                                                              6318
EmployeeName                                              STEVE SHIH
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                    105404.02
OvertimePay                                                  3344.54
OtherPay                                                     8161.77
Benefits                                                         NaN
TotalPay                                                   116910.33
TotalPayBenefits                                           116910.33
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 6317, dtype: object)
(6318, Id                               6319
EmployeeName                 BRIAN NG
JobTitle            POLICE OFFICER II
BasePay                     101532.32
OvertimePay                   9576.05
OtherPay                       5800.0
Benefits                          NaN
TotalPay                    116908.37
TotalPayBenefits            116908.37
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6318, dtype: object)
(6319, Id                                  6320
EmployeeName            RODERICK WALLACE
JobTitle            SHERIFF'S LIEUTENANT
BasePay                        110285.56
OvertimePay                      2618.66
OtherPay                         4003.92
Benefits                             NaN
TotalPay                       116908.14
TotalPayBenefits               116908.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6319, dtype: object)
(6320, Id                                             6321
EmployeeName                       ALEXANDER ISMAIL
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                     1090.0
Benefits                                        NaN
TotalPay                                   116907.0
TotalPayBenefits                           116907.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6320, dtype: object)
(6321, Id                               6322
EmployeeName        ANTHONY INOCENCIO
JobTitle            POLICE OFFICER II
BasePay                      105469.3
OvertimePay                   3890.34
OtherPay                      7542.43
Benefits                          NaN
TotalPay                    116902.07
TotalPayBenefits            116902.07
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6321, dtype: object)
(6322, Id                                             6323
EmployeeName                         ANDREW WAI KAN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                     0.0
OtherPay                                     1075.0
Benefits                                        NaN
TotalPay                                  116892.01
TotalPayBenefits                          116892.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6322, dtype: object)
(6323, Id                                   6324
EmployeeName               PHYLLIS WARREN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                      13686.45
OtherPay                          6928.01
Benefits                              NaN
TotalPay                        116866.48
TotalPayBenefits                116866.48
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6323, dtype: object)
(6324, Id                               6325
EmployeeName        MARINELL LLORANDO
JobTitle             REGISTERED NURSE
BasePay                     103090.44
OvertimePay                   7254.93
OtherPay                      6516.14
Benefits                          NaN
TotalPay                    116861.51
TotalPayBenefits            116861.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6324, dtype: object)
(6325, Id                                                     6326
EmployeeName                               TOMIO NAKADEGAWA
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            99318.93
OvertimePay                                         7820.18
OtherPay                                            9721.19
Benefits                                                NaN
TotalPay                                           116860.3
TotalPayBenefits                                   116860.3
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6325, dtype: object)
(6326, Id                                            6327
EmployeeName                            SUSAN TAIT
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   93968.35
OvertimePay                               12759.03
OtherPay                                  10128.61
Benefits                                       NaN
TotalPay                                 116855.99
TotalPayBenefits                         116855.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6326, dtype: object)
(6327, Id                              6328
EmployeeName         ALEGRIA SAPIERA
JobTitle            REGISTERED NURSE
BasePay                     111189.0
OvertimePay                   3872.1
OtherPay                     1792.34
Benefits                         NaN
TotalPay                   116853.44
TotalPayBenefits           116853.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6327, dtype: object)
(6328, Id                           6329
EmployeeName         ANNE PITTMAN
JobTitle            SPECIAL NURSE
BasePay                 101110.61
OvertimePay               1371.69
OtherPay                 14361.35
Benefits                      NaN
TotalPay                116843.65
TotalPayBenefits        116843.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6328, dtype: object)
(6329, Id                                                6330
EmployeeName                          FELIPE FERNANDEZ
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       84144.37
OvertimePay                                   25311.85
OtherPay                                       7386.69
Benefits                                           NaN
TotalPay                                     116842.91
TotalPayBenefits                             116842.91
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6329, dtype: object)
(6330, Id                                             6331
EmployeeName                           BETTY GOLDEN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                     1025.0
Benefits                                        NaN
TotalPay                                  116842.04
TotalPayBenefits                          116842.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6330, dtype: object)
(6331, Id                              6332
EmployeeName        HOLLAND STEPHENS
JobTitle            REGISTERED NURSE
BasePay                     95567.23
OvertimePay                  4370.61
OtherPay                    16904.06
Benefits                         NaN
TotalPay                    116841.9
TotalPayBenefits            116841.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6331, dtype: object)
(6332, Id                                                               6333
EmployeeName                                              LAURA OHEIR
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     116824.08
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    116824.08
TotalPayBenefits                                            116824.08
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6332, dtype: object)
(6333, Id                            6334
EmployeeName        STEPHEN BROOKS
JobTitle            SAFETY OFFICER
BasePay                  116824.08
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 116824.08
TotalPayBenefits         116824.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6333, dtype: object)
(6334, Id                                                               6335
EmployeeName                                            KAREN HECKMAN
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     116824.04
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    116824.04
TotalPayBenefits                                            116824.04
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6334, dtype: object)
(6335, Id                            6336
EmployeeName           DONNA POTTS
JobTitle            SAFETY OFFICER
BasePay                  116824.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 116824.02
TotalPayBenefits         116824.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6335, dtype: object)
(6336, Id                             6337
EmployeeName        TAMARA DAVIDSON
JobTitle             SAFETY OFFICER
BasePay                   116824.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  116824.02
TotalPayBenefits          116824.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6336, dtype: object)
(6337, Id                                                               6338
EmployeeName                                             MARK MATYJAS
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     116824.02
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    116824.02
TotalPayBenefits                                            116824.02
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6337, dtype: object)
(6338, Id                                                               6339
EmployeeName                                              MARK HENNIG
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     116824.01
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    116824.01
TotalPayBenefits                                            116824.01
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6338, dtype: object)
(6339, Id                                                               6340
EmployeeName                                              EDWARD OCHI
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                      116824.0
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     116824.0
TotalPayBenefits                                             116824.0
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6339, dtype: object)
(6340, Id                                                               6341
EmployeeName                                           GERARDO SURBAN
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                      116824.0
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     116824.0
TotalPayBenefits                                             116824.0
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6340, dtype: object)
(6341, Id                                                               6342
EmployeeName                                                RALPH RAY
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                      116824.0
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     116824.0
TotalPayBenefits                                             116824.0
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6341, dtype: object)
(6342, Id                                6343
EmployeeName         MICHAEL KILGARIFF
JobTitle            SHERIFF'S SERGEANT
BasePay                       98905.03
OvertimePay                    8863.25
OtherPay                       9023.13
Benefits                           NaN
TotalPay                     116791.41
TotalPayBenefits             116791.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6342, dtype: object)
(6343, Id                               6344
EmployeeName              GREGORY PAK
JobTitle            POLICE OFFICER II
BasePay                     110223.08
OvertimePay                   3021.56
OtherPay                      3528.71
Benefits                          NaN
TotalPay                    116773.35
TotalPayBenefits            116773.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6343, dtype: object)
(6344, Id                                              6345
EmployeeName                        LAWRENCE QUARLES
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    104256.17
OvertimePay                                      0.0
OtherPay                                    12516.19
Benefits                                         NaN
TotalPay                                   116772.36
TotalPayBenefits                           116772.36
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6344, dtype: object)
(6345, Id                                       6346
EmployeeName                    CARLA JOHNSON
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                             111203.19
OvertimePay                               0.0
OtherPay                              5560.13
Benefits                                  NaN
TotalPay                            116763.32
TotalPayBenefits                    116763.32
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6345, dtype: object)
(6346, Id                              6347
EmployeeName         MARINA SCHWARTZ
JobTitle            REGISTERED NURSE
BasePay                     109241.5
OvertimePay                  2805.25
OtherPay                     4712.19
Benefits                         NaN
TotalPay                   116758.94
TotalPayBenefits           116758.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6346, dtype: object)
(6347, Id                                             6348
EmployeeName                          JEREMY LUKINS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                      940.0
Benefits                                        NaN
TotalPay                                   116757.0
TotalPayBenefits                           116757.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6347, dtype: object)
(6348, Id                              6349
EmployeeName        MARGOT ANTONETTY
JobTitle                   MANAGER I
BasePay                     111408.9
OvertimePay                      0.0
OtherPay                     5344.67
Benefits                         NaN
TotalPay                   116753.57
TotalPayBenefits           116753.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6348, dtype: object)
(6349, Id                                6350
EmployeeName             MICHAEL PALMA
JobTitle            POLICE OFFICER III
BasePay                      111102.88
OvertimePay                    3535.86
OtherPay                       2114.03
Benefits                           NaN
TotalPay                     116752.77
TotalPayBenefits             116752.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6349, dtype: object)
(6350, Id                               6351
EmployeeName        ROGER BERMUDEZ JR
JobTitle               DEPUTY SHERIFF
BasePay                      85534.36
OvertimePay                  24469.62
OtherPay                      6732.27
Benefits                          NaN
TotalPay                    116736.25
TotalPayBenefits            116736.25
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6350, dtype: object)
(6351, Id                                6352
EmployeeName           ROBERT JONES JR
JobTitle            TRANSIT SUPERVISOR
BasePay                       88400.71
OvertimePay                   26573.45
OtherPay                       1761.66
Benefits                           NaN
TotalPay                     116735.82
TotalPayBenefits             116735.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6351, dtype: object)
(6352, Id                                6353
EmployeeName               MARY SCHEIB
JobTitle            NURSE PRACTITIONER
BasePay                      115615.34
OvertimePay                        0.0
OtherPay                        1100.0
Benefits                           NaN
TotalPay                     116715.34
TotalPayBenefits             116715.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6352, dtype: object)
(6353, Id                                             6354
EmployeeName                       HSIAO-LUNG CHANG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115816.79
OvertimePay                                     0.0
OtherPay                                      895.0
Benefits                                        NaN
TotalPay                                  116711.79
TotalPayBenefits                          116711.79
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6353, dtype: object)
(6354, Id                                6355
EmployeeName             WILLIAM AHERN
JobTitle            DEPUTY DIRECTOR II
BasePay                      114368.76
OvertimePay                        0.0
OtherPay                       2340.91
Benefits                           NaN
TotalPay                     116709.67
TotalPayBenefits             116709.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6354, dtype: object)
(6355, Id                                6356
EmployeeName               TERI TUSSEY
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.02
OvertimePay                    1048.31
OtherPay                       9548.44
Benefits                           NaN
TotalPay                     116702.77
TotalPayBenefits             116702.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6355, dtype: object)
(6356, Id                             6357
EmployeeName            ROBERT SARI
JobTitle            UTILITY PLUMBER
BasePay                     89735.1
OvertimePay                15020.11
OtherPay                   11944.92
Benefits                        NaN
TotalPay                  116700.13
TotalPayBenefits          116700.13
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6356, dtype: object)
(6357, Id                                       6358
EmployeeName                  ERNESTO LEGASPI
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              97841.46
OvertimePay                           4261.84
OtherPay                              14596.4
Benefits                                  NaN
TotalPay                             116699.7
TotalPayBenefits                     116699.7
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6357, dtype: object)
(6358, Id                           6359
EmployeeName          DAVID BRITT
JobTitle              FIREFIGHTER
BasePay                  49158.29
OvertimePay              30219.85
OtherPay                 37315.47
Benefits                      NaN
TotalPay                116693.61
TotalPayBenefits        116693.61
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6358, dtype: object)
(6359, Id                           6360
EmployeeName           JAMES ZHAN
JobTitle                 ENGINEER
BasePay                 110232.02
OvertimePay                6453.9
OtherPay                      0.0
Benefits                      NaN
TotalPay                116685.92
TotalPayBenefits        116685.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6359, dtype: object)
(6360, Id                                6361
EmployeeName            MARQUITA BOOTH
JobTitle            POLICE OFFICER III
BasePay                      112421.12
OvertimePay                     695.78
OtherPay                       3568.51
Benefits                           NaN
TotalPay                     116685.41
TotalPayBenefits             116685.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6360, dtype: object)
(6361, Id                           6362
EmployeeName          ANA HERRERA
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                  2438.97
Benefits                      NaN
TotalPay                116676.21
TotalPayBenefits        116676.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6361, dtype: object)
(6362, Id                                 6363
EmployeeName        JUSTIN-PAUL BUGARIN
JobTitle              POLICE OFFICER II
BasePay                        95297.09
OvertimePay                     1328.45
OtherPay                       20048.32
Benefits                            NaN
TotalPay                      116673.86
TotalPayBenefits              116673.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6362, dtype: object)
(6363, Id                                               6364
EmployeeName                              DAVID YOUNG
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      95787.81
OvertimePay                                  20385.88
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                    116673.69
TotalPayBenefits                            116673.69
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6363, dtype: object)
(6364, Id                                               6365
EmployeeName                               STEVEN CHU
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      72453.87
OvertimePay                                  38912.11
OtherPay                                       5292.5
Benefits                                          NaN
TotalPay                                    116658.48
TotalPayBenefits                            116658.48
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6364, dtype: object)
(6365, Id                                                               6366
EmployeeName                                          LOUIS GUZZO III
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       89815.6
OvertimePay                                                  17496.52
OtherPay                                                       9342.1
Benefits                                                          NaN
TotalPay                                                    116654.22
TotalPayBenefits                                            116654.22
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6365, dtype: object)
(6366, Id                                6367
EmployeeName            CYNTHIA THOMAS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    23385.6
OtherPay                        5188.5
Benefits                           NaN
TotalPay                      116636.1
TotalPayBenefits              116636.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6366, dtype: object)
(6367, Id                              6368
EmployeeName        EDMOND DANICOURT
JobTitle                   MANAGER I
BasePay                    107548.77
OvertimePay                      0.0
OtherPay                     9085.02
Benefits                         NaN
TotalPay                   116633.79
TotalPayBenefits           116633.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6367, dtype: object)
(6368, Id                                6369
EmployeeName               TIMOTHY YEE
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                        0.0
OtherPay                       4226.38
Benefits                           NaN
TotalPay                     116627.47
TotalPayBenefits             116627.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6368, dtype: object)
(6369, Id                               6370
EmployeeName           HENRY ESPINOZA
JobTitle            POLICE OFFICER II
BasePay                     110242.51
OvertimePay                   3034.74
OtherPay                      3346.32
Benefits                          NaN
TotalPay                    116623.57
TotalPayBenefits            116623.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6369, dtype: object)
(6370, Id                                6371
EmployeeName           MICHAEL KAZANIS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   19089.36
OtherPay                       9469.81
Benefits                           NaN
TotalPay                     116621.17
TotalPayBenefits             116621.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6370, dtype: object)
(6371, Id                               6372
EmployeeName        ALYCIA CLATWORTHY
JobTitle             REGISTERED NURSE
BasePay                     108642.42
OvertimePay                   3505.84
OtherPay                      4471.91
Benefits                          NaN
TotalPay                    116620.17
TotalPayBenefits            116620.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6371, dtype: object)
(6372, Id                              6373
EmployeeName            MELISSA CHEN
JobTitle            REGISTERED NURSE
BasePay                    104337.52
OvertimePay                  4241.97
OtherPay                     8033.29
Benefits                         NaN
TotalPay                   116612.78
TotalPayBenefits           116612.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6372, dtype: object)
(6373, Id                              6374
EmployeeName             SUSAN OROSZ
JobTitle            REGISTERED NURSE
BasePay                    101889.87
OvertimePay                  9661.73
OtherPay                     5059.24
Benefits                         NaN
TotalPay                   116610.84
TotalPayBenefits           116610.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6373, dtype: object)
(6374, Id                                       6375
EmployeeName                    ROBERT FARROW
JobTitle            SENIOR PLUMBING INSPECTOR
BasePay                              111539.5
OvertimePay                           1715.12
OtherPay                              3345.84
Benefits                                  NaN
TotalPay                            116600.46
TotalPayBenefits                    116600.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6374, dtype: object)
(6375, Id                                             6376
EmployeeName                           STEVEN SMITH
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   112431.11
OvertimePay                                     0.0
OtherPay                                    4168.15
Benefits                                        NaN
TotalPay                                  116599.26
TotalPayBenefits                          116599.26
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6375, dtype: object)
(6376, Id                                   6377
EmployeeName                     SAM CHAN
JobTitle            MAINTENANCE MACHINIST
BasePay                          76784.39
OvertimePay                      35649.48
OtherPay                           4160.0
Benefits                              NaN
TotalPay                        116593.87
TotalPayBenefits                116593.87
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6376, dtype: object)
(6377, Id                                                               6378
EmployeeName                                               KAREN COHN
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     116578.93
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    116578.93
TotalPayBenefits                                            116578.93
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6377, dtype: object)
(6378, Id                                6379
EmployeeName           CHARLES GRAYSON
JobTitle            SHERIFF'S SERGEANT
BasePay                      104868.96
OvertimePay                     598.78
OtherPay                      11105.59
Benefits                           NaN
TotalPay                     116573.33
TotalPayBenefits             116573.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6378, dtype: object)
(6379, Id                               6380
EmployeeName           MARIA ALVARADO
JobTitle            POLICE OFFICER II
BasePay                      110238.4
OvertimePay                   3479.05
OtherPay                      2844.58
Benefits                          NaN
TotalPay                    116562.03
TotalPayBenefits            116562.03
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6379, dtype: object)
(6380, Id                           6381
EmployeeName         DEREK MURPHY
JobTitle              FIREFIGHTER
BasePay                 100687.19
OvertimePay                   0.0
OtherPay                 15872.17
Benefits                      NaN
TotalPay                116559.36
TotalPayBenefits        116559.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6380, dtype: object)
(6381, Id                                                     6382
EmployeeName                              LISA MARIE GERARD
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78167.69
OvertimePay                                        30371.61
OtherPay                                            8001.87
Benefits                                                NaN
TotalPay                                          116541.17
TotalPayBenefits                                  116541.17
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6381, dtype: object)
(6382, Id                           6383
EmployeeName        BRANDON RILEY
JobTitle            COURT MANAGER
BasePay                 116198.41
OvertimePay                   0.0
OtherPay                   340.43
Benefits                      NaN
TotalPay                116538.84
TotalPayBenefits        116538.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6382, dtype: object)
(6383, Id                              6384
EmployeeName                 MINH DU
JobTitle            POLICE OFFICER I
BasePay                     97992.32
OvertimePay                  9106.81
OtherPay                     9439.18
Benefits                         NaN
TotalPay                   116538.31
TotalPayBenefits           116538.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6383, dtype: object)
(6384, Id                               6385
EmployeeName        CATHERYN WILLIAMS
JobTitle             REGISTERED NURSE
BasePay                     114547.07
OvertimePay                    1337.1
OtherPay                       624.82
Benefits                          NaN
TotalPay                    116508.99
TotalPayBenefits            116508.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6384, dtype: object)
(6385, Id                                               6386
EmployeeName                          ERNEST MENDIETA
JobTitle            DIVISION DIRECTOR ADULT PROBATION
BasePay                                     110834.63
OvertimePay                                       0.0
OtherPay                                       5666.0
Benefits                                          NaN
TotalPay                                    116500.63
TotalPayBenefits                            116500.63
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6385, dtype: object)
(6386, Id                                6387
EmployeeName              LIONEL LUCAS
JobTitle            POLICE OFFICER III
BasePay                      112441.76
OvertimePay                    2482.86
OtherPay                       1574.69
Benefits                           NaN
TotalPay                     116499.31
TotalPayBenefits             116499.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6386, dtype: object)
(6387, Id                                               6388
EmployeeName                         NESTOR ADVINCULA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  15061.68
OtherPay                                       2420.0
Benefits                                          NaN
TotalPay                                    116496.08
TotalPayBenefits                            116496.08
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6387, dtype: object)
(6388, Id                                           6389
EmployeeName                      ROBERT BAGGETTA
JobTitle            UTILITY PLUMBER SUPERVISOR II
BasePay                                  98911.15
OvertimePay                               2303.51
OtherPay                                 15267.43
Benefits                                      NaN
TotalPay                                116482.09
TotalPayBenefits                        116482.09
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6388, dtype: object)
(6389, Id                              6390
EmployeeName           DANIEL BONNEL
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                   5050.4
OtherPay                     5383.43
Benefits                         NaN
TotalPay                   116479.91
TotalPayBenefits           116479.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6389, dtype: object)
(6390, Id                              6391
EmployeeName           THOMAS MILLER
JobTitle            REGISTERED NURSE
BasePay                     116229.5
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    116479.5
TotalPayBenefits            116479.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6390, dtype: object)
(6391, Id                                                6392
EmployeeName                                  KIM ROCA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   30766.79
OtherPay                                       8133.24
Benefits                                           NaN
TotalPay                                     116469.03
TotalPayBenefits                             116469.03
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6391, dtype: object)
(6392, Id                                6393
EmployeeName               RODNEY TONG
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                    2660.86
OtherPay                       1392.75
Benefits                           NaN
TotalPay                     116454.67
TotalPayBenefits             116454.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6392, dtype: object)
(6393, Id                           6394
EmployeeName        JAMES CORMACK
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay               3142.95
OtherPay                  7375.93
Benefits                      NaN
TotalPay                116453.55
TotalPayBenefits        116453.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6393, dtype: object)
(6394, Id                                                 6395
EmployeeName                              DEBORAH LUTHI
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                        114576.4
OvertimePay                                         0.0
OtherPay                                         1868.0
Benefits                                            NaN
TotalPay                                       116444.4
TotalPayBenefits                               116444.4
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6394, dtype: object)
(6395, Id                           6396
EmployeeName        MIRANDA MARTZ
JobTitle            SPECIAL NURSE
BasePay                  98712.22
OvertimePay                 972.9
OtherPay                 16754.98
Benefits                      NaN
TotalPay                 116440.1
TotalPayBenefits         116440.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6395, dtype: object)
(6396, Id                               6397
EmployeeName           ANDREW JOHNSON
JobTitle            POLICE OFFICER II
BasePay                     110238.41
OvertimePay                   2067.98
OtherPay                      4132.13
Benefits                          NaN
TotalPay                    116438.52
TotalPayBenefits            116438.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6396, dtype: object)
(6397, Id                              6398
EmployeeName              SUAN CHANG
JobTitle            REGISTERED NURSE
BasePay                    105323.46
OvertimePay                  3356.22
OtherPay                     7753.47
Benefits                         NaN
TotalPay                   116433.15
TotalPayBenefits           116433.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6397, dtype: object)
(6398, Id                              6399
EmployeeName          VENUS WILLIAMS
JobTitle            POLICE OFFICER I
BasePay                    106065.17
OvertimePay                  9541.64
OtherPay                      821.11
Benefits                         NaN
TotalPay                   116427.92
TotalPayBenefits           116427.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6398, dtype: object)
(6399, Id                              6400
EmployeeName              BETH KUHNS
JobTitle            REGISTERED NURSE
BasePay                     113228.8
OvertimePay                   729.67
OtherPay                     2464.42
Benefits                         NaN
TotalPay                   116422.89
TotalPayBenefits           116422.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6399, dtype: object)
(6400, Id                              6401
EmployeeName             JONIE EVORA
JobTitle            REGISTERED NURSE
BasePay                     96360.09
OvertimePay                  6410.25
OtherPay                    13649.14
Benefits                         NaN
TotalPay                   116419.48
TotalPayBenefits           116419.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6400, dtype: object)
(6401, Id                              6402
EmployeeName             BRIAN DOYLE
JobTitle            REGISTERED NURSE
BasePay                      95581.4
OvertimePay                  5489.31
OtherPay                    15340.21
Benefits                         NaN
TotalPay                   116410.92
TotalPayBenefits           116410.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6401, dtype: object)
(6402, Id                                6403
EmployeeName             CRAIG FREEMAN
JobTitle            UTILITY SPECIALIST
BasePay                      113214.25
OvertimePay                        0.0
OtherPay                       3194.25
Benefits                           NaN
TotalPay                      116408.5
TotalPayBenefits              116408.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6402, dtype: object)
(6403, Id                              6404
EmployeeName            ANN MITCHELL
JobTitle            REGISTERED NURSE
BasePay                     98579.97
OvertimePay                  2201.84
OtherPay                     15623.2
Benefits                         NaN
TotalPay                   116405.01
TotalPayBenefits           116405.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6403, dtype: object)
(6404, Id                              6405
EmployeeName        PATRICK CONNOLLY
JobTitle                 FIREFIGHTER
BasePay                     105934.7
OvertimePay                  6670.24
OtherPay                     3779.98
Benefits                         NaN
TotalPay                   116384.92
TotalPayBenefits           116384.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6404, dtype: object)
(6405, Id                                               6406
EmployeeName                               DWAYNE VAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   8124.44
OtherPay                                      9240.01
Benefits                                          NaN
TotalPay                                    116378.85
TotalPayBenefits                            116378.85
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6405, dtype: object)
(6406, Id                                               6407
EmployeeName                            ISMAYA SENDUK
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  17053.34
OtherPay                                        300.0
Benefits                                          NaN
TotalPay                                    116367.74
TotalPayBenefits                            116367.74
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6406, dtype: object)
(6407, Id                              6408
EmployeeName           ROXANNE NALUS
JobTitle            REGISTERED NURSE
BasePay                     94662.94
OvertimePay                  7415.63
OtherPay                    14279.68
Benefits                         NaN
TotalPay                   116358.25
TotalPayBenefits           116358.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6407, dtype: object)
(6408, Id                               6409
EmployeeName              MICHAEL LEE
JobTitle            POLICE OFFICER II
BasePay                     106306.85
OvertimePay                    5444.9
OtherPay                      4603.12
Benefits                          NaN
TotalPay                    116354.87
TotalPayBenefits            116354.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6408, dtype: object)
(6409, Id                              6410
EmployeeName          ANDREA CROWLEY
JobTitle            REGISTERED NURSE
BasePay                    109222.09
OvertimePay                  1362.06
OtherPay                     5768.51
Benefits                         NaN
TotalPay                   116352.66
TotalPayBenefits           116352.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6409, dtype: object)
(6410, Id                             6411
EmployeeName        RICHARD LAWLESS
JobTitle                    PLUMBER
BasePay                    89371.81
OvertimePay                19379.89
OtherPay                    7596.73
Benefits                        NaN
TotalPay                  116348.43
TotalPayBenefits          116348.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6410, dtype: object)
(6411, Id                                       6412
EmployeeName                   REBECCA PROZAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             116347.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            116347.65
TotalPayBenefits                    116347.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6411, dtype: object)
(6412, Id                            6413
EmployeeName        CARLITO MANDIA
JobTitle            COURT REPORTER
BasePay                   105765.6
OvertimePay                    0.0
OtherPay                  10576.56
Benefits                       NaN
TotalPay                 116342.16
TotalPayBenefits         116342.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6412, dtype: object)
(6413, Id                            6414
EmployeeName        MARIA TORREANO
JobTitle            COURT REPORTER
BasePay                   105765.6
OvertimePay                    0.0
OtherPay                  10576.56
Benefits                       NaN
TotalPay                 116342.16
TotalPayBenefits         116342.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6413, dtype: object)
(6414, Id                            6415
EmployeeName         MELANIE GHENO
JobTitle            COURT REPORTER
BasePay                   105765.6
OvertimePay                    0.0
OtherPay                  10576.56
Benefits                       NaN
TotalPay                 116342.16
TotalPayBenefits         116342.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6414, dtype: object)
(6415, Id                              6416
EmployeeName        MARJORIE MCGUIRE
JobTitle                 MANAGER III
BasePay                    116337.53
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   116337.53
TotalPayBenefits           116337.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6415, dtype: object)
(6416, Id                                6417
EmployeeName           CYNDIA CHAMBERS
JobTitle            TRANSIT MANAGER II
BasePay                      112848.98
OvertimePay                        0.0
OtherPay                        3482.4
Benefits                           NaN
TotalPay                     116331.38
TotalPayBenefits             116331.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6416, dtype: object)
(6417, Id                                  6418
EmployeeName               EDDIE GARDNER
JobTitle            IS ENGINEER - SENIOR
BasePay                        114575.81
OvertimePay                          0.0
OtherPay                         1754.13
Benefits                             NaN
TotalPay                       116329.94
TotalPayBenefits               116329.94
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6417, dtype: object)
(6418, Id                                6419
EmployeeName                LARRY LACY
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                     844.17
OtherPay                       3068.38
Benefits                           NaN
TotalPay                     116329.35
TotalPayBenefits             116329.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6418, dtype: object)
(6419, Id                               6420
EmployeeName         JASMINE SUGUITAN
JobTitle            POLICE OFFICER II
BasePay                      95574.94
OvertimePay                   7485.89
OtherPay                     13261.42
Benefits                          NaN
TotalPay                    116322.25
TotalPayBenefits            116322.25
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6419, dtype: object)
(6420, Id                             6421
EmployeeName        MARCIO QUINTANA
JobTitle             DEPUTY SHERIFF
BasePay                    86840.01
OvertimePay                17436.33
OtherPay                   12039.48
Benefits                        NaN
TotalPay                  116315.82
TotalPayBenefits          116315.82
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6420, dtype: object)
(6421, Id                                6422
EmployeeName                LORI DUTRA
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                        0.0
OtherPay                       3913.99
Benefits                           NaN
TotalPay                     116315.06
TotalPayBenefits             116315.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6421, dtype: object)
(6422, Id                                6423
EmployeeName              SARITA BRITT
JobTitle            TRANSIT MANAGER II
BasePay                      112848.99
OvertimePay                        0.0
OtherPay                        3439.2
Benefits                           NaN
TotalPay                     116288.19
TotalPayBenefits             116288.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6422, dtype: object)
(6423, Id                                                           6424
EmployeeName                                         BRIAN ROLLEY
JobTitle            SUPERVISING ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                  110700.0
OvertimePay                                               3628.12
OtherPay                                                  1951.42
Benefits                                                      NaN
TotalPay                                                116279.54
TotalPayBenefits                                        116279.54
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 6423, dtype: object)
(6424, Id                              6425
EmployeeName        ANTONIO CACATIAN
JobTitle            POLICE OFFICER I
BasePay                    102925.31
OvertimePay                   5169.8
OtherPay                     8173.35
Benefits                         NaN
TotalPay                   116268.46
TotalPayBenefits           116268.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6424, dtype: object)
(6425, Id                              6426
EmployeeName          TYLER ROPELATO
JobTitle            POLICE OFFICER I
BasePay                    102558.31
OvertimePay                  9103.69
OtherPay                     4595.48
Benefits                         NaN
TotalPay                   116257.48
TotalPayBenefits           116257.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6425, dtype: object)
(6426, Id                               6427
EmployeeName          JOSEPH SIRAGUSA
JobTitle            POLICE OFFICER II
BasePay                       96843.5
OvertimePay                   5758.98
OtherPay                     13629.74
Benefits                          NaN
TotalPay                    116232.22
TotalPayBenefits            116232.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6426, dtype: object)
(6427, Id                                       6428
EmployeeName                    PETER SANTINA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             116225.16
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            116225.16
TotalPayBenefits                    116225.16
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6427, dtype: object)
(6428, Id                                       6429
EmployeeName             MICHELLE TONG-CHOYCE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             116225.16
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            116225.16
TotalPayBenefits                    116225.16
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6428, dtype: object)
(6429, Id                                6430
EmployeeName                NORMAN LEE
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    3001.89
OtherPay                        819.41
Benefits                           NaN
TotalPay                     116222.37
TotalPayBenefits             116222.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6429, dtype: object)
(6430, Id                              6431
EmployeeName           CARLOS CASTRO
JobTitle            POLICE OFFICER I
BasePay                     94066.84
OvertimePay                  4423.91
OtherPay                    17729.58
Benefits                         NaN
TotalPay                   116220.33
TotalPayBenefits           116220.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6430, dtype: object)
(6431, Id                                6432
EmployeeName             BRUCE MEADORS
JobTitle            POLICE OFFICER III
BasePay                       57919.88
OvertimePay                   18477.34
OtherPay                      39815.67
Benefits                           NaN
TotalPay                     116212.89
TotalPayBenefits             116212.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6431, dtype: object)
(6432, Id                               6433
EmployeeName        PATRICIA KILKENNY
JobTitle                COURT MANAGER
BasePay                     116198.41
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    116198.41
TotalPayBenefits            116198.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6432, dtype: object)
(6433, Id                           6434
EmployeeName        LISA LIGHTMAN
JobTitle            COURT MANAGER
BasePay                 116198.38
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                116198.38
TotalPayBenefits        116198.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6433, dtype: object)
(6434, Id                                    6435
EmployeeName                GLEN HUNSICKER
JobTitle            CARPENTER SUPERVISOR I
BasePay                           97237.81
OvertimePay                       18773.63
OtherPay                             180.0
Benefits                               NaN
TotalPay                         116191.44
TotalPayBenefits                 116191.44
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6434, dtype: object)
(6435, Id                             6436
EmployeeName        MICHAEL CLAUZEL
JobTitle             DEPUTY SHERIFF
BasePay                     77514.0
OvertimePay                 37354.7
OtherPay                    1322.73
Benefits                        NaN
TotalPay                  116191.43
TotalPayBenefits          116191.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6435, dtype: object)
(6436, Id                              6437
EmployeeName        GERALYN KAVANAGH
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  6958.51
OtherPay                     3165.13
Benefits                         NaN
TotalPay                   116188.83
TotalPayBenefits           116188.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6436, dtype: object)
(6437, Id                                    6438
EmployeeName              NATHANIEL OLIVAS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.71
OvertimePay                        5241.88
OtherPay                           4501.86
Benefits                               NaN
TotalPay                         116185.45
TotalPayBenefits                 116185.45
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6437, dtype: object)
(6438, Id                                    6439
EmployeeName                JAMES LOCKHART
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          107306.09
OvertimePay                            0.0
OtherPay                           8876.11
Benefits                               NaN
TotalPay                          116182.2
TotalPayBenefits                  116182.2
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6438, dtype: object)
(6439, Id                                        6440
EmployeeName                       MAYRA GOMEZ
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.33
OvertimePay                           24414.05
OtherPay                               7880.46
Benefits                                   NaN
TotalPay                             116175.84
TotalPayBenefits                     116175.84
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6439, dtype: object)
(6440, Id                               6441
EmployeeName        JEFFREY SMETHURST
JobTitle             POLICE OFFICER I
BasePay                     101995.49
OvertimePay                   2516.34
OtherPay                     11647.11
Benefits                          NaN
TotalPay                    116158.94
TotalPayBenefits            116158.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6440, dtype: object)
(6441, Id                                 6442
EmployeeName        TERRENCE O'SULLIVAN
JobTitle             UTILITY SPECIALIST
BasePay                       113214.28
OvertimePay                         0.0
OtherPay                        2936.06
Benefits                            NaN
TotalPay                      116150.34
TotalPayBenefits              116150.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6441, dtype: object)
(6442, Id                              6443
EmployeeName          ORPHEOS TARBOX
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  4083.56
OtherPay                     6017.59
Benefits                         NaN
TotalPay                   116147.22
TotalPayBenefits           116147.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6442, dtype: object)
(6443, Id                                    6444
EmployeeName               JUDITH KLOFSTAD
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105279.98
OvertimePay                         166.44
OtherPay                          10698.11
Benefits                               NaN
TotalPay                         116144.53
TotalPayBenefits                 116144.53
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6443, dtype: object)
(6444, Id                           6445
EmployeeName           KURT FUCHS
JobTitle                MANAGER I
BasePay                 116137.46
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                116137.46
TotalPayBenefits        116137.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6444, dtype: object)
(6445, Id                                   6446
EmployeeName                  NORMAN CHAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                          9018.32
Benefits                              NaN
TotalPay                        116135.73
TotalPayBenefits                116135.73
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6445, dtype: object)
(6446, Id                            6447
EmployeeName        DIANA SOKOLOVE
JobTitle                PLANNER IV
BasePay                  112431.15
OvertimePay                    0.0
OtherPay                   3702.24
Benefits                       NaN
TotalPay                 116133.39
TotalPayBenefits         116133.39
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6446, dtype: object)
(6447, Id                                                 6448
EmployeeName                            THOMAS MCDONALD
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR III
BasePay                                        89315.16
OvertimePay                                     8124.15
OtherPay                                       18692.73
Benefits                                            NaN
TotalPay                                      116132.04
TotalPayBenefits                              116132.04
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6447, dtype: object)
(6448, Id                              6449
EmployeeName           DAVID SICKLES
JobTitle            REGISTERED NURSE
BasePay                    115882.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   116132.01
TotalPayBenefits           116132.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6448, dtype: object)
(6449, Id                              6450
EmployeeName           NANCY HARDIES
JobTitle            REGISTERED NURSE
BasePay                    115882.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   116132.01
TotalPayBenefits           116132.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6449, dtype: object)
(6450, Id                                   6451
EmployeeName        CRISTOBAL GUAJARDO-JR
JobTitle                      FIREFIGHTER
BasePay                         105934.65
OvertimePay                           0.0
OtherPay                         10191.49
Benefits                              NaN
TotalPay                        116126.14
TotalPayBenefits                116126.14
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6450, dtype: object)
(6451, Id                               6452
EmployeeName              LYNN REILLY
JobTitle            POLICE OFFICER II
BasePay                     110242.46
OvertimePay                   4649.17
OtherPay                      1233.96
Benefits                          NaN
TotalPay                    116125.59
TotalPayBenefits            116125.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6451, dtype: object)
(6452, Id                                               6453
EmployeeName                       GUILLERMO MADRIGAL
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96228.0
OvertimePay                                     874.8
OtherPay                                     19016.82
Benefits                                          NaN
TotalPay                                    116119.62
TotalPayBenefits                            116119.62
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6452, dtype: object)
(6453, Id                                    6454
EmployeeName                BENJAMIN SOSIN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105152.03
OvertimePay                         222.11
OtherPay                          10740.26
Benefits                               NaN
TotalPay                          116114.4
TotalPayBenefits                  116114.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6453, dtype: object)
(6454, Id                                           6455
EmployeeName                         ARTURO LOPEZ
JobTitle            CHIEF WATER SERVICE INSPECTOR
BasePay                                 116106.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                116106.96
TotalPayBenefits                        116106.96
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6454, dtype: object)
(6455, Id                              6456
EmployeeName         ERNESTO LINARES
JobTitle            POLICE OFFICER I
BasePay                     99960.07
OvertimePay                 10200.27
OtherPay                      5942.7
Benefits                         NaN
TotalPay                   116103.04
TotalPayBenefits           116103.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6455, dtype: object)
(6456, Id                                                   6457
EmployeeName                                   LESLIE LUM
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.02
OvertimePay                                           0.0
OtherPay                                         12897.75
Benefits                                              NaN
TotalPay                                        116094.77
TotalPayBenefits                                116094.77
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 6456, dtype: object)
(6457, Id                                    6458
EmployeeName                ARTHUR KING JR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          100154.07
OvertimePay                        4644.65
OtherPay                          11257.76
Benefits                               NaN
TotalPay                         116056.48
TotalPayBenefits                 116056.48
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6457, dtype: object)
(6458, Id                                       6459
EmployeeName                     ANDRIA JANOS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              107431.8
OvertimePay                               0.0
OtherPay                               8621.1
Benefits                                  NaN
TotalPay                             116052.9
TotalPayBenefits                     116052.9
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6458, dtype: object)
(6459, Id                                       6460
EmployeeName                CHRISTOPHER QUANN
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                               99020.6
OvertimePay                           1899.09
OtherPay                             15131.43
Benefits                                  NaN
TotalPay                            116051.12
TotalPayBenefits                    116051.12
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6459, dtype: object)
(6460, Id                                   6461
EmployeeName                    DANIEL HU
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.47
OvertimePay                       1276.77
OtherPay                          7645.22
Benefits                              NaN
TotalPay                        116039.46
TotalPayBenefits                116039.46
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6460, dtype: object)
(6461, Id                                  6462
EmployeeName        ANTONETTE VALENZUELA
JobTitle              POLICE OFFICER III
BasePay                         112421.4
OvertimePay                       2634.1
OtherPay                          980.46
Benefits                             NaN
TotalPay                       116035.96
TotalPayBenefits               116035.96
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6461, dtype: object)
(6462, Id                                6463
EmployeeName             GEORGE CUEVAS
JobTitle            POLICE OFFICER III
BasePay                      112952.82
OvertimePay                        0.0
OtherPay                       3083.02
Benefits                           NaN
TotalPay                     116035.84
TotalPayBenefits             116035.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6462, dtype: object)
(6463, Id                                            6464
EmployeeName                        DENIS MORRISON
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   78833.06
OvertimePay                               33560.44
OtherPay                                   3642.11
Benefits                                       NaN
TotalPay                                 116035.61
TotalPayBenefits                         116035.61
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6463, dtype: object)
(6464, Id                                          6465
EmployeeName                      DANIEL GODFREY
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                  98992.7
OvertimePay                              12964.7
OtherPay                                 4076.66
Benefits                                     NaN
TotalPay                               116034.06
TotalPayBenefits                       116034.06
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 6464, dtype: object)
(6465, Id                                6466
EmployeeName                ALICE CHAN
JobTitle            NURSE PRACTITIONER
BasePay                       114507.5
OvertimePay                        0.0
OtherPay                        1525.0
Benefits                           NaN
TotalPay                      116032.5
TotalPayBenefits              116032.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6465, dtype: object)
(6466, Id                              6467
EmployeeName            SUE KIRKLAND
JobTitle            REGISTERED NURSE
BasePay                     115251.0
OvertimePay                      0.0
OtherPay                       775.0
Benefits                         NaN
TotalPay                    116026.0
TotalPayBenefits            116026.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6466, dtype: object)
(6467, Id                                                6468
EmployeeName                         EMMANUEL ENRIQUEZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   22893.45
OtherPay                                      15548.48
Benefits                                           NaN
TotalPay                                     116022.32
TotalPayBenefits                             116022.32
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6467, dtype: object)
(6468, Id                                       6469
EmployeeName             CHUSAK SRETPISALSILP
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58800.8
OvertimePay                          44069.81
OtherPay                             13147.01
Benefits                                  NaN
TotalPay                            116017.62
TotalPayBenefits                    116017.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6468, dtype: object)
(6469, Id                                6470
EmployeeName             CRAIG FARRELL
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                     523.28
OtherPay                       3077.24
Benefits                           NaN
TotalPay                     116017.32
TotalPayBenefits             116017.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6469, dtype: object)
(6470, Id                                6471
EmployeeName        ROSALINDA CALDERON
JobTitle              REGISTERED NURSE
BasePay                      103230.05
OvertimePay                     2270.1
OtherPay                      10513.92
Benefits                           NaN
TotalPay                     116014.07
TotalPayBenefits             116014.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6470, dtype: object)
(6471, Id                            6472
EmployeeName        DECLAN SHARKEY
JobTitle               ELECTRICIAN
BasePay                   87684.06
OvertimePay               25466.72
OtherPay                   2860.02
Benefits                       NaN
TotalPay                  116010.8
TotalPayBenefits          116010.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6471, dtype: object)
(6472, Id                                            6473
EmployeeName                         MARY MARZOTTO
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  116004.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 116004.03
TotalPayBenefits                         116004.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6472, dtype: object)
(6473, Id                                            6474
EmployeeName                           PRESTON TOM
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  116004.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 116004.02
TotalPayBenefits                         116004.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6473, dtype: object)
(6474, Id                                            6475
EmployeeName                        RICHARD WALLER
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  116004.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 116004.02
TotalPayBenefits                         116004.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6474, dtype: object)
(6475, Id                                            6476
EmployeeName                  SHEILA EVANS-PEGUESE
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  116004.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 116004.02
TotalPayBenefits                         116004.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6475, dtype: object)
(6476, Id                                            6477
EmployeeName                            ZULA JONES
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   116004.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  116004.0
TotalPayBenefits                          116004.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6476, dtype: object)
(6477, Id                                            6478
EmployeeName                         PANETTA SCOTT
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   116004.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  116004.0
TotalPayBenefits                          116004.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6477, dtype: object)
(6478, Id                                            6479
EmployeeName                       ROMULUS ASENLOO
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  116003.97
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 116003.97
TotalPayBenefits                         116003.97
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6478, dtype: object)
(6479, Id                               6480
EmployeeName               MARY QUINN
JobTitle            DIRECTOR, PROBATE
BasePay                      98179.21
OvertimePay                       0.0
OtherPay                     17819.15
Benefits                          NaN
TotalPay                    115998.36
TotalPayBenefits            115998.36
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6479, dtype: object)
(6480, Id                                    6481
EmployeeName                 WILLIAM CHENG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.68
OvertimePay                        2113.98
OtherPay                           7442.19
Benefits                               NaN
TotalPay                         115997.85
TotalPayBenefits                 115997.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6480, dtype: object)
(6481, Id                                    6482
EmployeeName                    LUIS GOMEZ
JobTitle            MAINTENANCE CONTROLLER
BasePay                           88358.19
OvertimePay                       26867.37
OtherPay                            765.66
Benefits                               NaN
TotalPay                         115991.22
TotalPayBenefits                 115991.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6481, dtype: object)
(6482, Id                              6483
EmployeeName          JENNIFER PLAZA
JobTitle            REGISTERED NURSE
BasePay                     87289.33
OvertimePay                 13377.86
OtherPay                     15317.9
Benefits                         NaN
TotalPay                   115985.09
TotalPayBenefits           115985.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6482, dtype: object)
(6483, Id                                6484
EmployeeName             ALICE DICROCE
JobTitle            POLICE OFFICER III
BasePay                      112400.94
OvertimePay                    2753.25
OtherPay                        826.12
Benefits                           NaN
TotalPay                     115980.31
TotalPayBenefits             115980.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6483, dtype: object)
(6484, Id                              6485
EmployeeName           MARY NAVICKAS
JobTitle            REGISTERED NURSE
BasePay                    107190.21
OvertimePay                  3205.71
OtherPay                     5575.63
Benefits                         NaN
TotalPay                   115971.55
TotalPayBenefits           115971.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6484, dtype: object)
(6485, Id                                6486
EmployeeName              ERIK WHITNEY
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                     1863.8
OtherPay                       1705.47
Benefits                           NaN
TotalPay                     115970.33
TotalPayBenefits             115970.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6485, dtype: object)
(6486, Id                                6487
EmployeeName             JONATHAN TONG
JobTitle            POLICE OFFICER III
BasePay                      111723.55
OvertimePay                    1479.11
OtherPay                        2758.2
Benefits                           NaN
TotalPay                     115960.86
TotalPayBenefits             115960.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6486, dtype: object)
(6487, Id                                  6488
EmployeeName                 DENNIS HOLL
JobTitle            ELECTRICAL INSPECTOR
BasePay                         100454.9
OvertimePay                     13495.97
OtherPay                         2008.42
Benefits                             NaN
TotalPay                       115959.29
TotalPayBenefits               115959.29
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6487, dtype: object)
(6488, Id                                6489
EmployeeName        BENJAMIN CARPENTER
JobTitle              REGISTERED NURSE
BasePay                       94063.21
OvertimePay                    3275.43
OtherPay                      18618.31
Benefits                           NaN
TotalPay                     115956.95
TotalPayBenefits             115956.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6488, dtype: object)
(6489, Id                                6490
EmployeeName          SEAN MCELLISTRIM
JobTitle            POLICE OFFICER III
BasePay                      112441.82
OvertimePay                     2372.6
OtherPay                        1141.7
Benefits                           NaN
TotalPay                     115956.12
TotalPayBenefits             115956.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6489, dtype: object)
(6490, Id                                       6491
EmployeeName                  MICHAEL GERCHOW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             115941.76
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            115941.76
TotalPayBenefits                    115941.76
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6490, dtype: object)
(6491, Id                                6492
EmployeeName              SHONDA POOLE
JobTitle            TRANSIT SUPERVISOR
BasePay                       75703.55
OvertimePay                   34314.27
OtherPay                       5909.29
Benefits                           NaN
TotalPay                     115927.11
TotalPayBenefits             115927.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6491, dtype: object)
(6492, Id                                           6493
EmployeeName                        SHOAIB SHAIKH
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                1864.2
OtherPay                                 11597.62
Benefits                                      NaN
TotalPay                                115922.83
TotalPayBenefits                        115922.83
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6492, dtype: object)
(6493, Id                                             6494
EmployeeName                        HOWARD MURAYAMA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.22
OvertimePay                                     0.0
OtherPay                                      100.4
Benefits                                        NaN
TotalPay                                  115917.62
TotalPayBenefits                          115917.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6493, dtype: object)
(6494, Id                                     6495
EmployeeName                 PATRICK BURTON
JobTitle            COURT STAFF ATTORNEY II
BasePay                            115290.6
OvertimePay                             0.0
OtherPay                              624.0
Benefits                                NaN
TotalPay                           115914.6
TotalPayBenefits                   115914.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6494, dtype: object)
(6495, Id                                     6496
EmployeeName                      JENNY LIN
JobTitle            COURT STAFF ATTORNEY II
BasePay                           115290.58
OvertimePay                             0.0
OtherPay                              624.0
Benefits                                NaN
TotalPay                          115914.58
TotalPayBenefits                  115914.58
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6495, dtype: object)
(6496, Id                                6497
EmployeeName                 ALLEN YIP
JobTitle            POLICE OFFICER III
BasePay                       34008.32
OvertimePay                    19856.0
OtherPay                      62043.26
Benefits                           NaN
TotalPay                     115907.58
TotalPayBenefits             115907.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6496, dtype: object)
(6497, Id                              6498
EmployeeName                DUC TRAN
JobTitle            TRANSIT OPERATOR
BasePay                     67756.38
OvertimePay                 43543.49
OtherPay                     4601.85
Benefits                         NaN
TotalPay                   115901.72
TotalPayBenefits           115901.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6497, dtype: object)
(6498, Id                              6499
EmployeeName          JULIET PALARCA
JobTitle            REGISTERED NURSE
BasePay                     115629.3
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    115879.3
TotalPayBenefits            115879.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6498, dtype: object)
(6499, Id                              6500
EmployeeName                LYNN ROU
JobTitle            REGISTERED NURSE
BasePay                     95992.19
OvertimePay                  2841.35
OtherPay                     17036.4
Benefits                         NaN
TotalPay                   115869.94
TotalPayBenefits           115869.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6499, dtype: object)
(6500, Id                              6501
EmployeeName          CHARLES COFFEY
JobTitle            TRANSIT OPERATOR
BasePay                     70414.63
OvertimePay                  40710.8
OtherPay                     4740.19
Benefits                         NaN
TotalPay                   115865.62
TotalPayBenefits           115865.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6500, dtype: object)
(6501, Id                              6502
EmployeeName             SAMUEL FUNG
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  4185.36
OtherPay                     5618.98
Benefits                         NaN
TotalPay                   115850.41
TotalPayBenefits           115850.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6501, dtype: object)
(6502, Id                                  6503
EmployeeName               SILVERIO CUSI
JobTitle            IS ENGINEER - SENIOR
BasePay                        115845.75
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       115845.75
TotalPayBenefits               115845.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6502, dtype: object)
(6503, Id                              6504
EmployeeName        REGINALD SNELGRO
JobTitle            TRANSIT OPERATOR
BasePay                     69540.54
OvertimePay                 42358.46
OtherPay                     3941.72
Benefits                         NaN
TotalPay                   115840.72
TotalPayBenefits           115840.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6503, dtype: object)
(6504, Id                                             6505
EmployeeName                              TIM LEUNG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                      16.73
Benefits                                        NaN
TotalPay                                  115833.75
TotalPayBenefits                          115833.75
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6504, dtype: object)
(6505, Id                              6506
EmployeeName            KEITH MURPHY
JobTitle            POLICE OFFICER I
BasePay                     95743.84
OvertimePay                  6077.42
OtherPay                    14003.57
Benefits                         NaN
TotalPay                   115824.83
TotalPayBenefits           115824.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6505, dtype: object)
(6506, Id                                6507
EmployeeName            JAMES RICHARDS
JobTitle            POLICE OFFICER III
BasePay                      112400.65
OvertimePay                    2603.76
OtherPay                        820.12
Benefits                           NaN
TotalPay                     115824.53
TotalPayBenefits             115824.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6506, dtype: object)
(6507, Id                                 6508
EmployeeName        KRISTOPHER SHINBORI
JobTitle              POLICE OFFICER II
BasePay                       100994.32
OvertimePay                     5487.36
OtherPay                        9341.31
Benefits                            NaN
TotalPay                      115822.99
TotalPayBenefits              115822.99
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6507, dtype: object)
(6508, Id                                     6509
EmployeeName                 WILLIAM TWOMEY
JobTitle            SEWER REPAIR SUPERVISOR
BasePay                             93563.6
OvertimePay                        14741.58
OtherPay                             7517.4
Benefits                                NaN
TotalPay                          115822.58
TotalPayBenefits                  115822.58
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6508, dtype: object)
(6509, Id                               6510
EmployeeName                EDWIN LEE
JobTitle            POLICE OFFICER II
BasePay                     102599.12
OvertimePay                   6326.86
OtherPay                      6894.49
Benefits                          NaN
TotalPay                    115820.47
TotalPayBenefits            115820.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6509, dtype: object)
(6510, Id                           6511
EmployeeName             JEFF LAI
JobTitle                 ENGINEER
BasePay                 110232.02
OvertimePay               5586.75
OtherPay                      0.0
Benefits                      NaN
TotalPay                115818.77
TotalPayBenefits        115818.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6510, dtype: object)
(6511, Id                                             6512
EmployeeName                          MICHAEL LOUIS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.25
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.25
TotalPayBenefits                          115817.25
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6511, dtype: object)
(6512, Id                                             6513
EmployeeName                         WILLIAM BEATTY
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.19
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.19
TotalPayBenefits                          115817.19
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6512, dtype: object)
(6513, Id                                             6514
EmployeeName                        ANNETTE REARDON
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.17
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.17
TotalPayBenefits                          115817.17
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6513, dtype: object)
(6514, Id                                             6515
EmployeeName                           MICHAEL CHEN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.12
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.12
TotalPayBenefits                          115817.12
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6514, dtype: object)
(6515, Id                                             6516
EmployeeName                             JILL UYEDA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.1
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.1
TotalPayBenefits                           115817.1
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6515, dtype: object)
(6516, Id                                             6517
EmployeeName                          CHARLES LEWIS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.07
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.07
TotalPayBenefits                          115817.07
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6516, dtype: object)
(6517, Id                                             6518
EmployeeName                   JOAQUIN BENAVIDES SR
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.05
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.05
TotalPayBenefits                          115817.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6517, dtype: object)
(6518, Id                                             6519
EmployeeName                         ALONA BUMANLAG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.05
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.05
TotalPayBenefits                          115817.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6518, dtype: object)
(6519, Id                                             6520
EmployeeName                              PEGGY YAO
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.05
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.05
TotalPayBenefits                          115817.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6519, dtype: object)
(6520, Id                                             6521
EmployeeName                           GAIL WEBSTER
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.05
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.05
TotalPayBenefits                          115817.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6520, dtype: object)
(6521, Id                                             6522
EmployeeName                           ISIDRO REYES
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6521, dtype: object)
(6522, Id                                             6523
EmployeeName                          WENDELL LOUIE
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6522, dtype: object)
(6523, Id                                             6524
EmployeeName                           JAYNE MATSUI
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6523, dtype: object)
(6524, Id                                             6525
EmployeeName                             MARK PITTS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6524, dtype: object)
(6525, Id                                             6526
EmployeeName                          BRUCE SUMMERS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6525, dtype: object)
(6526, Id                                             6527
EmployeeName                          BING BING CHU
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.04
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.04
TotalPayBenefits                          115817.04
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6526, dtype: object)
(6527, Id                                             6528
EmployeeName                 ARLENE LICUDINE-BARKER
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.03
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.03
TotalPayBenefits                          115817.03
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6527, dtype: object)
(6528, Id                                             6529
EmployeeName                              JUDY HONG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.02
TotalPayBenefits                          115817.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6528, dtype: object)
(6529, Id                                             6530
EmployeeName                NAKHAMPHONE PHOMMACHACK
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.02
TotalPayBenefits                          115817.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6529, dtype: object)
(6530, Id                                             6531
EmployeeName                           BINA RAJPARA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.02
TotalPayBenefits                          115817.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6530, dtype: object)
(6531, Id                                             6532
EmployeeName                           HAROLD KRESS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.02
TotalPayBenefits                          115817.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6531, dtype: object)
(6532, Id                                             6533
EmployeeName                             JACKVIN NG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.02
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.02
TotalPayBenefits                          115817.02
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6532, dtype: object)
(6533, Id                                             6534
EmployeeName                          VAL BACHARACH
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.01
TotalPayBenefits                          115817.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6533, dtype: object)
(6534, Id                                             6535
EmployeeName                         RANDY LA BOTTE
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.01
TotalPayBenefits                          115817.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6534, dtype: object)
(6535, Id                                             6536
EmployeeName                        KATHRYN ROBERTS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115817.01
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115817.01
TotalPayBenefits                          115817.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6535, dtype: object)
(6536, Id                                             6537
EmployeeName                            SHAWN EWING
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6536, dtype: object)
(6537, Id                                             6538
EmployeeName                          JANET ALLISON
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6537, dtype: object)
(6538, Id                                             6539
EmployeeName                           HEDY TUNGGAL
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6538, dtype: object)
(6539, Id                                             6540
EmployeeName                         NEIL BANOUVONG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6539, dtype: object)
(6540, Id                                             6541
EmployeeName                     ALEXANDER BARBALAT
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6540, dtype: object)
(6541, Id                                             6542
EmployeeName                             EDDY CHING
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6541, dtype: object)
(6542, Id                                             6543
EmployeeName                        PHILLIP MC DOWN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115817.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115817.0
TotalPayBenefits                           115817.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6542, dtype: object)
(6543, Id                                             6544
EmployeeName                            LILY DRYDEN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115816.85
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  115816.85
TotalPayBenefits                          115816.85
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6543, dtype: object)
(6544, Id                              6545
EmployeeName           SHERDAN GUIAO
JobTitle            REGISTERED NURSE
BasePay                    105351.81
OvertimePay                   6774.8
OtherPay                     3686.66
Benefits                         NaN
TotalPay                   115813.27
TotalPayBenefits           115813.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6544, dtype: object)
(6545, Id                                6546
EmployeeName              JAMES STUART
JobTitle            TRANSIT SUPERVISOR
BasePay                       89755.51
OvertimePay                   15324.22
OtherPay                      10721.96
Benefits                           NaN
TotalPay                     115801.69
TotalPayBenefits             115801.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6545, dtype: object)
(6546, Id                            6547
EmployeeName         LINTON MARTIN
JobTitle            DEPUTY SHERIFF
BasePay                   86619.98
OvertimePay               18598.81
OtherPay                  10577.01
Benefits                       NaN
TotalPay                  115795.8
TotalPayBenefits          115795.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6546, dtype: object)
(6547, Id                              6548
EmployeeName             LUZ SANCHEZ
JobTitle            TRANSIT OPERATOR
BasePay                     64928.94
OvertimePay                  47417.5
OtherPay                     3448.43
Benefits                         NaN
TotalPay                   115794.87
TotalPayBenefits           115794.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6547, dtype: object)
(6548, Id                               6549
EmployeeName               MARK STULL
JobTitle            POLICE OFFICER II
BasePay                     110238.39
OvertimePay                   4639.61
OtherPay                       901.78
Benefits                          NaN
TotalPay                    115779.78
TotalPayBenefits            115779.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6548, dtype: object)
(6549, Id                              6550
EmployeeName            ANDREW LUCAS
JobTitle            POLICE OFFICER I
BasePay                     99341.18
OvertimePay                  3263.71
OtherPay                     13169.4
Benefits                         NaN
TotalPay                   115774.29
TotalPayBenefits           115774.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6549, dtype: object)
(6550, Id                                      6551
EmployeeName                  MATTHEW GREENE
JobTitle            SENIOR HOUSING INSPECTOR
BasePay                            111008.03
OvertimePay                          1175.87
OtherPay                             3584.89
Benefits                                 NaN
TotalPay                           115768.79
TotalPayBenefits                   115768.79
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 6550, dtype: object)
(6551, Id                           6552
EmployeeName          BARRY PEARL
JobTitle               PLANNER IV
BasePay                 112431.06
OvertimePay                   0.0
OtherPay                   3322.3
Benefits                      NaN
TotalPay                115753.36
TotalPayBenefits        115753.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6551, dtype: object)
(6552, Id                               6553
EmployeeName        GUSTAVO CASTANEDA
JobTitle             POLICE OFFICER I
BasePay                     101889.81
OvertimePay                   6582.85
OtherPay                      7280.63
Benefits                          NaN
TotalPay                    115753.29
TotalPayBenefits            115753.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6552, dtype: object)
(6553, Id                              6554
EmployeeName               HONG SHAN
JobTitle            REGISTERED NURSE
BasePay                     109616.0
OvertimePay                   3833.1
OtherPay                     2301.21
Benefits                         NaN
TotalPay                   115750.31
TotalPayBenefits           115750.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6553, dtype: object)
(6554, Id                                6555
EmployeeName              JOSEPH LYNCH
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                      588.9
OtherPay                       2760.21
Benefits                           NaN
TotalPay                     115750.17
TotalPayBenefits             115750.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6554, dtype: object)
(6555, Id                                  6556
EmployeeName                 BARRY ZEVIN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        112955.79
OvertimePay                          0.0
OtherPay                         2793.56
Benefits                             NaN
TotalPay                       115749.35
TotalPayBenefits               115749.35
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6555, dtype: object)
(6556, Id                            6557
EmployeeName        MIKAEL SVAHLIN
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                21345.7
OtherPay                   7895.66
Benefits                       NaN
TotalPay                 115747.37
TotalPayBenefits         115747.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6556, dtype: object)
(6557, Id                           6558
EmployeeName              JON LOW
JobTitle              FIREFIGHTER
BasePay                 105934.68
OvertimePay                   0.0
OtherPay                  9810.02
Benefits                      NaN
TotalPay                 115744.7
TotalPayBenefits         115744.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6557, dtype: object)
(6558, Id                                               6559
EmployeeName                               DANIEL LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   8918.43
OtherPay                                      7811.28
Benefits                                          NaN
TotalPay                                    115744.11
TotalPayBenefits                            115744.11
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6558, dtype: object)
(6559, Id                           6560
EmployeeName         DAVID MAXION
JobTitle              FIREFIGHTER
BasePay                 100822.03
OvertimePay               1422.68
OtherPay                 13497.17
Benefits                      NaN
TotalPay                115741.88
TotalPayBenefits        115741.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6559, dtype: object)
(6560, Id                              6561
EmployeeName              RAUL REYES
JobTitle            REGISTERED NURSE
BasePay                    114285.61
OvertimePay                      0.0
OtherPay                      1450.0
Benefits                         NaN
TotalPay                   115735.61
TotalPayBenefits           115735.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6560, dtype: object)
(6561, Id                              6562
EmployeeName         TIMOTHY WHATLEY
JobTitle            POLICE OFFICER I
BasePay                    106061.26
OvertimePay                  3480.27
OtherPay                     6189.29
Benefits                         NaN
TotalPay                   115730.82
TotalPayBenefits           115730.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6561, dtype: object)
(6562, Id                             6563
EmployeeName        NANCY TERRANOVA
JobTitle             SAFETY OFFICER
BasePay                   115724.49
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  115724.49
TotalPayBenefits          115724.49
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6562, dtype: object)
(6563, Id                              6564
EmployeeName        ANTONIO BALINGIT
JobTitle            POLICE OFFICER I
BasePay                     99407.95
OvertimePay                  5458.33
OtherPay                    10852.14
Benefits                         NaN
TotalPay                   115718.42
TotalPayBenefits           115718.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6563, dtype: object)
(6564, Id                                                     6565
EmployeeName                                    JUSTIN WONG
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            73637.47
OvertimePay                                        32926.78
OtherPay                                            9147.93
Benefits                                                NaN
TotalPay                                          115712.18
TotalPayBenefits                                  115712.18
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6564, dtype: object)
(6565, Id                              6566
EmployeeName         PAVEL KHMARSKIY
JobTitle            POLICE OFFICER I
BasePay                      86393.2
OvertimePay                 10686.87
OtherPay                    18629.86
Benefits                         NaN
TotalPay                   115709.93
TotalPayBenefits           115709.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6565, dtype: object)
(6566, Id                             6567
EmployeeName        RICHARD HOLBACK
JobTitle                FIREFIGHTER
BasePay                    98195.04
OvertimePay                 8855.28
OtherPay                    8655.85
Benefits                        NaN
TotalPay                  115706.17
TotalPayBenefits          115706.17
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6566, dtype: object)
(6567, Id                                6568
EmployeeName               KEITH SOVIG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    2482.86
OtherPay                        819.53
Benefits                           NaN
TotalPay                     115703.46
TotalPayBenefits             115703.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6567, dtype: object)
(6568, Id                              6569
EmployeeName         ANGELIQUE MARIN
JobTitle            POLICE OFFICER I
BasePay                     99270.31
OvertimePay                  8367.27
OtherPay                     8060.74
Benefits                         NaN
TotalPay                   115698.32
TotalPayBenefits           115698.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6568, dtype: object)
(6569, Id                                6570
EmployeeName               EDDY TUCKER
JobTitle            TRANSIT SUPERVISOR
BasePay                        90094.2
OvertimePay                   24367.59
OtherPay                       1232.81
Benefits                           NaN
TotalPay                      115694.6
TotalPayBenefits              115694.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6569, dtype: object)
(6570, Id                                              6571
EmployeeName                            DEBRA WALKER
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73458.19
OvertimePay                                 37629.57
OtherPay                                     4600.94
Benefits                                         NaN
TotalPay                                    115688.7
TotalPayBenefits                            115688.7
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6570, dtype: object)
(6571, Id                                             6572
EmployeeName                               HANNA VU
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   115655.03
OvertimePay                                     0.0
OtherPay                                      27.78
Benefits                                        NaN
TotalPay                                  115682.81
TotalPayBenefits                          115682.81
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6571, dtype: object)
(6572, Id                                 6573
EmployeeName        ALPHONSO LIVINGSTON
JobTitle             POLICE OFFICER III
BasePay                       112401.07
OvertimePay                         0.0
OtherPay                        3280.38
Benefits                            NaN
TotalPay                      115681.45
TotalPayBenefits              115681.45
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6572, dtype: object)
(6573, Id                                6574
EmployeeName                  GARY OTO
JobTitle            UTILITY SPECIALIST
BasePay                      113214.24
OvertimePay                        0.0
OtherPay                       2453.89
Benefits                           NaN
TotalPay                     115668.13
TotalPayBenefits             115668.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6573, dtype: object)
(6574, Id                              6575
EmployeeName             RODNEY LANE
JobTitle            POLICE OFFICER I
BasePay                    106046.12
OvertimePay                   2361.1
OtherPay                     7255.58
Benefits                         NaN
TotalPay                    115662.8
TotalPayBenefits            115662.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6574, dtype: object)
(6575, Id                           6576
EmployeeName         NANCY GALVIN
JobTitle              FIREFIGHTER
BasePay                 105934.63
OvertimePay                   0.0
OtherPay                   9719.5
Benefits                      NaN
TotalPay                115654.13
TotalPayBenefits        115654.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6575, dtype: object)
(6576, Id                                6577
EmployeeName                HELEN SHIH
JobTitle            NURSE PRACTITIONER
BasePay                      115643.15
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     115643.15
TotalPayBenefits             115643.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6576, dtype: object)
(6577, Id                               6578
EmployeeName         FRANCISCO MORROW
JobTitle            POLICE OFFICER II
BasePay                      101628.2
OvertimePay                   8166.11
OtherPay                      5841.58
Benefits                          NaN
TotalPay                    115635.89
TotalPayBenefits            115635.89
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6577, dtype: object)
(6578, Id                             6579
EmployeeName        RAYMOND JOHNSON
JobTitle             DEPUTY SHERIFF
BasePay                    83817.32
OvertimePay                23491.26
OtherPay                     8324.4
Benefits                        NaN
TotalPay                  115632.98
TotalPayBenefits          115632.98
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6578, dtype: object)
(6579, Id                               6580
EmployeeName            SALINA TUVERA
JobTitle            POLICE OFFICER II
BasePay                     110639.88
OvertimePay                     39.08
OtherPay                      4947.86
Benefits                          NaN
TotalPay                    115626.82
TotalPayBenefits            115626.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6579, dtype: object)
(6580, Id                                  6581
EmployeeName              PATRICK MULLEN
JobTitle            SEWER SERVICE WORKER
BasePay                          85642.3
OvertimePay                     24050.75
OtherPay                         5928.73
Benefits                             NaN
TotalPay                       115621.78
TotalPayBenefits               115621.78
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6580, dtype: object)
(6581, Id                                                      6582
EmployeeName                                   WILLIAM MORSE
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             88039.01
OvertimePay                                         14980.56
OtherPay                                            12598.37
Benefits                                                 NaN
TotalPay                                           115617.94
TotalPayBenefits                                   115617.94
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6581, dtype: object)
(6582, Id                                    6583
EmployeeName                   MEGAN BYRNE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           106961.7
OvertimePay                         820.15
OtherPay                           7825.86
Benefits                               NaN
TotalPay                         115607.71
TotalPayBenefits                 115607.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6582, dtype: object)
(6583, Id                                6584
EmployeeName        EVANGELINE SUANGCO
JobTitle              REGISTERED NURSE
BasePay                      114627.99
OvertimePay                     194.72
OtherPay                        784.94
Benefits                           NaN
TotalPay                     115607.65
TotalPayBenefits             115607.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6583, dtype: object)
(6584, Id                              6585
EmployeeName            ELSA PALOMAR
JobTitle            REGISTERED NURSE
BasePay                    107109.78
OvertimePay                  2137.14
OtherPay                     6359.26
Benefits                         NaN
TotalPay                   115606.18
TotalPayBenefits           115606.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6584, dtype: object)
(6585, Id                              6586
EmployeeName              MARK HODGE
JobTitle            POLICE OFFICER I
BasePay                     96658.31
OvertimePay                 10243.12
OtherPay                     8702.79
Benefits                         NaN
TotalPay                   115604.22
TotalPayBenefits           115604.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6585, dtype: object)
(6586, Id                                         6587
EmployeeName                      MICHAEL KELLY
JobTitle            STREET REPAIR SUPERVISOR II
BasePay                                94498.36
OvertimePay                            14979.24
OtherPay                                6121.74
Benefits                                    NaN
TotalPay                              115599.34
TotalPayBenefits                      115599.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 6586, dtype: object)
(6587, Id                                6588
EmployeeName            SANDRA NEWLAND
JobTitle            POLICE OFFICER III
BasePay                      112416.81
OvertimePay                     159.41
OtherPay                       3018.72
Benefits                           NaN
TotalPay                     115594.94
TotalPayBenefits             115594.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6587, dtype: object)
(6588, Id                                            6589
EmployeeName                     ROBERT WRIGHT III
JobTitle            AIRPORT ELECTRICIAN SUPERVISOR
BasePay                                  104519.14
OvertimePay                                 195.18
OtherPay                                   10877.8
Benefits                                       NaN
TotalPay                                 115592.12
TotalPayBenefits                         115592.12
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6588, dtype: object)
(6589, Id                               6590
EmployeeName              DANILO CRUZ
JobTitle            POLICE OFFICER II
BasePay                     106040.31
OvertimePay                    4001.5
OtherPay                       5540.7
Benefits                          NaN
TotalPay                    115582.51
TotalPayBenefits            115582.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6589, dtype: object)
(6590, Id                                6591
EmployeeName               JAMES GOMEZ
JobTitle            SHERIFF'S SERGEANT
BasePay                       105697.9
OvertimePay                    4706.69
OtherPay                       5173.44
Benefits                           NaN
TotalPay                     115578.03
TotalPayBenefits             115578.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6590, dtype: object)
(6591, Id                                  6592
EmployeeName              ANNE ROSENTHAL
JobTitle            PHYSICIAN SPECIALIST
BasePay                        112685.95
OvertimePay                          0.0
OtherPay                          2889.0
Benefits                             NaN
TotalPay                       115574.95
TotalPayBenefits               115574.95
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6591, dtype: object)
(6592, Id                                6593
EmployeeName              MARK MALLETT
JobTitle            SHERIFF'S SERGEANT
BasePay                      105698.92
OvertimePay                    1136.14
OtherPay                        8719.6
Benefits                           NaN
TotalPay                     115554.66
TotalPayBenefits             115554.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6592, dtype: object)
(6593, Id                                     6594
EmployeeName                  MUHAMMAD KHAN
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.03
OvertimePay                        34722.02
OtherPay                             4355.0
Benefits                                NaN
TotalPay                          115551.05
TotalPayBenefits                  115551.05
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6593, dtype: object)
(6594, Id                               6595
EmployeeName            TODD SULLIVAN
JobTitle            POLICE OFFICER II
BasePay                     110223.04
OvertimePay                   2549.89
OtherPay                      2758.64
Benefits                          NaN
TotalPay                    115531.57
TotalPayBenefits            115531.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6594, dtype: object)
(6595, Id                                6596
EmployeeName            PATRICIA BROWN
JobTitle            POLICE OFFICER III
BasePay                      111857.39
OvertimePay                     199.27
OtherPay                       3467.87
Benefits                           NaN
TotalPay                     115524.53
TotalPayBenefits             115524.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6595, dtype: object)
(6596, Id                                 6597
EmployeeName               PETER BOLTON
JobTitle            AIRPORT ELECTRICIAN
BasePay                         96050.4
OvertimePay                     7928.21
OtherPay                       11545.02
Benefits                            NaN
TotalPay                      115523.63
TotalPayBenefits              115523.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6596, dtype: object)
(6597, Id                              6598
EmployeeName        VINCENT MASILANG
JobTitle            POLICE OFFICER I
BasePay                     99407.95
OvertimePay                   6142.8
OtherPay                     9954.51
Benefits                         NaN
TotalPay                   115505.26
TotalPayBenefits           115505.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6597, dtype: object)
(6598, Id                           6599
EmployeeName         MICHAEL JINE
JobTitle               MANAGER II
BasePay                 114046.06
OvertimePay                   0.0
OtherPay                   1458.0
Benefits                      NaN
TotalPay                115504.06
TotalPayBenefits        115504.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6598, dtype: object)
(6599, Id                              6600
EmployeeName            JAMES ALONSO
JobTitle            REGISTERED NURSE
BasePay                    101657.24
OvertimePay                  5026.65
OtherPay                     8808.26
Benefits                         NaN
TotalPay                   115492.15
TotalPayBenefits           115492.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6599, dtype: object)
(6600, Id                              6601
EmployeeName             DANIEL RIAL
JobTitle            REGISTERED NURSE
BasePay                    108333.47
OvertimePay                  1069.72
OtherPay                     6087.24
Benefits                         NaN
TotalPay                   115490.43
TotalPayBenefits           115490.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6600, dtype: object)
(6601, Id                              6602
EmployeeName                 KEN LIU
JobTitle            TRANSIT OPERATOR
BasePay                     69666.02
OvertimePay                 43029.19
OtherPay                     2793.38
Benefits                         NaN
TotalPay                   115488.59
TotalPayBenefits           115488.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6601, dtype: object)
(6602, Id                                6603
EmployeeName           NICHOLAS SEPICH
JobTitle            POLICE OFFICER III
BasePay                      112416.81
OvertimePay                        0.0
OtherPay                        3068.3
Benefits                           NaN
TotalPay                     115485.11
TotalPayBenefits             115485.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6602, dtype: object)
(6603, Id                                6604
EmployeeName          COLLEEN SULLIVAN
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                        0.0
OtherPay                       3067.29
Benefits                           NaN
TotalPay                     115484.09
TotalPayBenefits             115484.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6603, dtype: object)
(6604, Id                                6605
EmployeeName             SHAWN WALLACE
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                        0.0
OtherPay                        3068.0
Benefits                           NaN
TotalPay                     115469.08
TotalPayBenefits             115469.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6604, dtype: object)
(6605, Id                              6606
EmployeeName              LUIS ORTIZ
JobTitle            POLICE OFFICER I
BasePay                    106045.62
OvertimePay                  5176.13
OtherPay                     4240.41
Benefits                         NaN
TotalPay                   115462.16
TotalPayBenefits           115462.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6605, dtype: object)
(6606, Id                            6607
EmployeeName             JIMMY LEE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               14580.68
OtherPay                  14040.85
Benefits                       NaN
TotalPay                 115461.54
TotalPayBenefits         115461.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6606, dtype: object)
(6607, Id                               6608
EmployeeName        WARRICK WHITFIELD
JobTitle             POLICE OFFICER I
BasePay                     106065.18
OvertimePay                   6331.47
OtherPay                      3053.64
Benefits                          NaN
TotalPay                    115450.29
TotalPayBenefits            115450.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6607, dtype: object)
(6608, Id                                                 6609
EmployeeName                            ELIZABETH TISON
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       115443.05
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      115443.05
TotalPayBenefits                              115443.05
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6608, dtype: object)
(6609, Id                                                 6610
EmployeeName                                SANDA THAIK
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       115443.04
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      115443.04
TotalPayBenefits                              115443.04
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6609, dtype: object)
(6610, Id                                                 6611
EmployeeName                              ROSIANA ANGEL
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       115443.03
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      115443.03
TotalPayBenefits                              115443.03
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6610, dtype: object)
(6611, Id                                                 6612
EmployeeName                             DEBORAH GORDON
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       115442.97
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      115442.97
TotalPayBenefits                              115442.97
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6611, dtype: object)
(6612, Id                                                      6613
EmployeeName                                     JERRY DIXON
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             92679.22
OvertimePay                                         13832.03
OtherPay                                             8917.85
Benefits                                                 NaN
TotalPay                                            115429.1
TotalPayBenefits                                    115429.1
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6612, dtype: object)
(6613, Id                                   6614
EmployeeName                ROBERT WILSON
JobTitle            FIRE RESCUE PARAMEDIC
BasePay                          108623.2
OvertimePay                           0.0
OtherPay                          6805.47
Benefits                              NaN
TotalPay                        115428.67
TotalPayBenefits                115428.67
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6613, dtype: object)
(6614, Id                              6615
EmployeeName          DENNIS MCGUIRE
JobTitle            REGISTERED NURSE
BasePay                    104938.17
OvertimePay                  3895.11
OtherPay                     6576.97
Benefits                         NaN
TotalPay                   115410.25
TotalPayBenefits           115410.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6614, dtype: object)
(6615, Id                                6616
EmployeeName                 LOUIS RUE
JobTitle            POLICE OFFICER III
BasePay                       112417.2
OvertimePay                    1921.26
OtherPay                        1045.6
Benefits                           NaN
TotalPay                     115384.06
TotalPayBenefits             115384.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6615, dtype: object)
(6616, Id                              6617
EmployeeName           DIANE SCARLET
JobTitle            REGISTERED NURSE
BasePay                    105418.99
OvertimePay                  1036.26
OtherPay                     8925.16
Benefits                         NaN
TotalPay                   115380.41
TotalPayBenefits           115380.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6616, dtype: object)
(6617, Id                                     6618
EmployeeName                    DANIEL CUSI
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           115380.17
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          115380.17
TotalPayBenefits                  115380.17
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6617, dtype: object)
(6618, Id                           6619
EmployeeName         THANH NGUYEN
JobTitle                 ENGINEER
BasePay                  115374.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 115374.9
TotalPayBenefits         115374.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6618, dtype: object)
(6619, Id                                        6620
EmployeeName                        NILESH RAM
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                              108364.02
OvertimePay                            5729.16
OtherPay                               1279.58
Benefits                                   NaN
TotalPay                             115372.76
TotalPayBenefits                     115372.76
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6619, dtype: object)
(6620, Id                                6621
EmployeeName        FAENETTA HUTCHINGS
JobTitle            POLICE OFFICER III
BasePay                      110194.08
OvertimePay                        0.0
OtherPay                       5175.29
Benefits                           NaN
TotalPay                     115369.37
TotalPayBenefits             115369.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6620, dtype: object)
(6621, Id                               6622
EmployeeName          RICKEY WILLIAMS
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   4296.18
OtherPay                       829.55
Benefits                          NaN
TotalPay                    115368.64
TotalPayBenefits            115368.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6621, dtype: object)
(6622, Id                               6623
EmployeeName        KIM PATRICE KLEIN
JobTitle             REGISTERED NURSE
BasePay                      92496.23
OvertimePay                    4141.0
OtherPay                     18720.79
Benefits                          NaN
TotalPay                    115358.02
TotalPayBenefits            115358.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6622, dtype: object)
(6623, Id                              6624
EmployeeName           SHAO PING LAI
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                   3145.5
OtherPay                     3164.69
Benefits                         NaN
TotalPay                   115354.19
TotalPayBenefits           115354.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6623, dtype: object)
(6624, Id                              6625
EmployeeName            PEARL ROGERS
JobTitle            POLICE OFFICER I
BasePay                     99318.94
OvertimePay                  6009.68
OtherPay                    10022.68
Benefits                         NaN
TotalPay                    115351.3
TotalPayBenefits            115351.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6624, dtype: object)
(6625, Id                              6626
EmployeeName         KEVIN O'DONNELL
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  4378.07
OtherPay                     4944.15
Benefits                         NaN
TotalPay                   115349.18
TotalPayBenefits           115349.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6625, dtype: object)
(6626, Id                                6627
EmployeeName            ROBERT BIERNAT
JobTitle            POLICE OFFICER III
BasePay                      112380.69
OvertimePay                    2142.77
OtherPay                        819.54
Benefits                           NaN
TotalPay                      115343.0
TotalPayBenefits              115343.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6626, dtype: object)
(6627, Id                                             6628
EmployeeName                               TINA LEE
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    115341.8
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   115341.8
TotalPayBenefits                           115341.8
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6627, dtype: object)
(6628, Id                               6629
EmployeeName        LOURDES BENVENUTI
JobTitle                   MANAGER II
BasePay                     115335.73
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    115335.73
TotalPayBenefits            115335.73
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6628, dtype: object)
(6629, Id                               6630
EmployeeName        JOSEPH MCCALL III
JobTitle             POLICE OFFICER I
BasePay                     104986.82
OvertimePay                   4078.64
OtherPay                       6269.6
Benefits                          NaN
TotalPay                    115335.06
TotalPayBenefits            115335.06
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6629, dtype: object)
(6630, Id                                                 6631
EmployeeName                           RUTHANNE MORENTZ
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       115331.79
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      115331.79
TotalPayBenefits                              115331.79
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6630, dtype: object)
(6631, Id                              6632
EmployeeName          ROBERT HAMBLEN
JobTitle            POLICE OFFICER I
BasePay                    106084.29
OvertimePay                  5382.49
OtherPay                     3850.03
Benefits                         NaN
TotalPay                   115316.81
TotalPayBenefits           115316.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6631, dtype: object)
(6632, Id                           6633
EmployeeName        REGINA DENNIS
JobTitle            COURT MANAGER
BasePay                 113152.81
OvertimePay                   0.0
OtherPay                   2161.5
Benefits                      NaN
TotalPay                115314.31
TotalPayBenefits        115314.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6632, dtype: object)
(6633, Id                               6634
EmployeeName        JENNIFER GLICKMAN
JobTitle                  FIREFIGHTER
BasePay                      78722.84
OvertimePay                       0.0
OtherPay                     36587.17
Benefits                          NaN
TotalPay                    115310.01
TotalPayBenefits            115310.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6633, dtype: object)
(6634, Id                                   6635
EmployeeName             CHRISTOPHER CHEN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.46
OvertimePay                           0.0
OtherPay                          8185.74
Benefits                              NaN
TotalPay                         115303.2
TotalPayBenefits                 115303.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6634, dtype: object)
(6635, Id                               6636
EmployeeName         ANGELA RODRIGUEZ
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   2136.61
OtherPay                       2921.4
Benefits                          NaN
TotalPay                    115300.92
TotalPayBenefits            115300.92
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6635, dtype: object)
(6636, Id                                                6637
EmployeeName                             NOEL ATANACIO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   28032.68
OtherPay                                       9695.06
Benefits                                           NaN
TotalPay                                     115296.74
TotalPayBenefits                             115296.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6636, dtype: object)
(6637, Id                                  6638
EmployeeName               NAVEENA BOBBA
JobTitle            PHYSICIAN SPECIALIST
BasePay                         102442.5
OvertimePay                          0.0
OtherPay                         12852.0
Benefits                             NaN
TotalPay                        115294.5
TotalPayBenefits                115294.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6637, dtype: object)
(6638, Id                                     6639
EmployeeName                     ANN DONLAN
JobTitle            COMMUNICATIONS DIRECTOR
BasePay                           115289.99
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          115289.99
TotalPayBenefits                  115289.99
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6638, dtype: object)
(6639, Id                                6640
EmployeeName              CHARLES CHAN
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     865.19
OtherPay                       1999.18
Benefits                           NaN
TotalPay                     115285.82
TotalPayBenefits             115285.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6639, dtype: object)
(6640, Id                                                           6641
EmployeeName                                         DAVID BARTEL
JobTitle            SUPERVISING ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                 111150.03
OvertimePay                                                928.12
OtherPay                                                  3201.52
Benefits                                                      NaN
TotalPay                                                115279.67
TotalPayBenefits                                        115279.67
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 6640, dtype: object)
(6641, Id                                                    6642
EmployeeName                               JULIETTE HAYMAN
JobTitle            COURT COMPUTER APPLICATIONS PROGRAMMER
BasePay                                           114655.6
OvertimePay                                            0.0
OtherPay                                             624.0
Benefits                                               NaN
TotalPay                                          115279.6
TotalPayBenefits                                  115279.6
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 6641, dtype: object)
(6642, Id                                              6643
EmployeeName                           ROBERT HARVEY
JobTitle            AUTOMOTIVE MECHANIC SUPERVISOR I
BasePay                                     97997.27
OvertimePay                                 14164.48
OtherPay                                     3113.31
Benefits                                         NaN
TotalPay                                   115275.06
TotalPayBenefits                           115275.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6642, dtype: object)
(6643, Id                              6644
EmployeeName          MATTHEW RACINE
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  4332.92
OtherPay                     4869.46
Benefits                         NaN
TotalPay                   115267.58
TotalPayBenefits           115267.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6643, dtype: object)
(6644, Id                                6645
EmployeeName        MARCELINA SANTIAGO
JobTitle              REGISTERED NURSE
BasePay                      105616.09
OvertimePay                    5342.85
OtherPay                       4303.12
Benefits                           NaN
TotalPay                     115262.06
TotalPayBenefits             115262.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6644, dtype: object)
(6645, Id                              6646
EmployeeName           LUIS ARCHILLA
JobTitle            POLICE OFFICER I
BasePay                     99604.07
OvertimePay                  9031.78
OtherPay                     6625.06
Benefits                         NaN
TotalPay                   115260.91
TotalPayBenefits           115260.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6645, dtype: object)
(6646, Id                                    6647
EmployeeName        FANNY PELAYO RODRIGUEZ
JobTitle                  REGISTERED NURSE
BasePay                            98066.2
OvertimePay                        3302.76
OtherPay                          13869.06
Benefits                               NaN
TotalPay                         115238.02
TotalPayBenefits                 115238.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6646, dtype: object)
(6647, Id                            6648
EmployeeName        MURRAY CRESHON
JobTitle            DEPUTY SHERIFF
BasePay                   85932.39
OvertimePay               21880.26
OtherPay                   7424.87
Benefits                       NaN
TotalPay                 115237.52
TotalPayBenefits         115237.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6647, dtype: object)
(6648, Id                                                    6649
EmployeeName                                HUI-FANG HWANG
JobTitle            COURT COMPUTER APPLICATIONS PROGRAMMER
BasePay                                           114655.6
OvertimePay                                            0.0
OtherPay                                             576.0
Benefits                                               NaN
TotalPay                                          115231.6
TotalPayBenefits                                  115231.6
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 6648, dtype: object)
(6649, Id                              6650
EmployeeName        BRENDAN GARDINER
JobTitle            POLICE OFFICER I
BasePay                     94131.34
OvertimePay                  8477.14
OtherPay                    12622.49
Benefits                         NaN
TotalPay                   115230.97
TotalPayBenefits           115230.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6649, dtype: object)
(6650, Id                              6651
EmployeeName          SONSIRE GARCIA
JobTitle            REGISTERED NURSE
BasePay                     93299.85
OvertimePay                  6061.32
OtherPay                    15868.48
Benefits                         NaN
TotalPay                   115229.65
TotalPayBenefits           115229.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6650, dtype: object)
(6651, Id                              6652
EmployeeName            YVONNE COBBS
JobTitle            REGISTERED NURSE
BasePay                    114236.76
OvertimePay                    732.6
OtherPay                       250.0
Benefits                         NaN
TotalPay                   115219.36
TotalPayBenefits           115219.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6651, dtype: object)
(6652, Id                                6653
EmployeeName             WILLIAM LIANG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                      10730.82
Benefits                           NaN
TotalPay                     115216.86
TotalPayBenefits             115216.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6652, dtype: object)
(6653, Id                                6654
EmployeeName           STEPHANIE SAKAI
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                      10730.18
Benefits                           NaN
TotalPay                     115216.23
TotalPayBenefits             115216.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6653, dtype: object)
(6654, Id                               6655
EmployeeName             CARMEN BATAN
JobTitle            POLICE OFFICER II
BasePay                     101560.07
OvertimePay                   6439.64
OtherPay                      7206.27
Benefits                          NaN
TotalPay                    115205.98
TotalPayBenefits            115205.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6654, dtype: object)
(6655, Id                                6656
EmployeeName           LATANYA KELLOGG
JobTitle            POLICE OFFICER III
BasePay                      112401.07
OvertimePay                    1076.04
OtherPay                       1722.76
Benefits                           NaN
TotalPay                     115199.87
TotalPayBenefits             115199.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6655, dtype: object)
(6656, Id                              6657
EmployeeName           SARAH LINDLEY
JobTitle            REGISTERED NURSE
BasePay                     110181.5
OvertimePay                  2616.32
OtherPay                     2401.58
Benefits                         NaN
TotalPay                    115199.4
TotalPayBenefits            115199.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6656, dtype: object)
(6657, Id                              6658
EmployeeName          MICHELLE ALVIS
JobTitle            POLICE OFFICER I
BasePay                    106046.02
OvertimePay                  3534.14
OtherPay                     5618.45
Benefits                         NaN
TotalPay                   115198.61
TotalPayBenefits           115198.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6657, dtype: object)
(6658, Id                                        6659
EmployeeName                  BENEDETTO MURPHY
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.81
OvertimePay                           14864.81
OtherPay                               3197.14
Benefits                                   NaN
TotalPay                             115192.76
TotalPayBenefits                     115192.76
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6658, dtype: object)
(6659, Id                                            6660
EmployeeName                            OREN DAVIS
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   78275.82
OvertimePay                               23666.06
OtherPay                                  13235.79
Benefits                                       NaN
TotalPay                                 115177.67
TotalPayBenefits                         115177.67
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6659, dtype: object)
(6660, Id                                     6661
EmployeeName              ADRIENNE MCMILLAN
JobTitle            COURT STAFF ATTORNEY II
BasePay                           115177.05
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          115177.05
TotalPayBenefits                  115177.05
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6660, dtype: object)
(6661, Id                                  6662
EmployeeName                 TRAVIS HOFF
JobTitle            IS ENGINEER - SENIOR
BasePay                        115176.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       115176.01
TotalPayBenefits               115176.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6661, dtype: object)
(6662, Id                            6663
EmployeeName          GLEN WEBSTER
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay               21257.21
OtherPay                   7412.56
Benefits                       NaN
TotalPay                 115175.77
TotalPayBenefits         115175.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6662, dtype: object)
(6663, Id                                    6664
EmployeeName              EDWARD ALEXANDER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.67
OvertimePay                         411.08
OtherPay                           8322.94
Benefits                               NaN
TotalPay                         115175.69
TotalPayBenefits                 115175.69
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6663, dtype: object)
(6664, Id                              6665
EmployeeName           LEOVINA GOMEZ
JobTitle            REGISTERED NURSE
BasePay                    102780.66
OvertimePay                  6218.67
OtherPay                     6157.24
Benefits                         NaN
TotalPay                   115156.57
TotalPayBenefits           115156.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6664, dtype: object)
(6665, Id                                 6666
EmployeeName             ROLANDO ESTEPA
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    37125.69
OtherPay                         5611.4
Benefits                            NaN
TotalPay                      115147.09
TotalPayBenefits              115147.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6665, dtype: object)
(6666, Id                              6667
EmployeeName                LIEZL UY
JobTitle            REGISTERED NURSE
BasePay                    101927.49
OvertimePay                  7038.39
OtherPay                     6174.41
Benefits                         NaN
TotalPay                   115140.29
TotalPayBenefits           115140.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6666, dtype: object)
(6667, Id                                6668
EmployeeName              SIMON WILSON
JobTitle            UTILITY SPECIALIST
BasePay                      110477.92
OvertimePay                        0.0
OtherPay                       4645.21
Benefits                           NaN
TotalPay                     115123.13
TotalPayBenefits             115123.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6667, dtype: object)
(6668, Id                              6669
EmployeeName         JESUS VARGAS JR
JobTitle            TRANSIT OPERATOR
BasePay                     67923.75
OvertimePay                 42974.79
OtherPay                     4224.52
Benefits                         NaN
TotalPay                   115123.06
TotalPayBenefits           115123.06
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6668, dtype: object)
(6669, Id                                6670
EmployeeName           ALEXANDER POPOV
JobTitle            POLICE OFFICER III
BasePay                      112175.47
OvertimePay                    1508.27
OtherPay                       1408.07
Benefits                           NaN
TotalPay                     115091.81
TotalPayBenefits             115091.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6669, dtype: object)
(6670, Id                                6671
EmployeeName               JAMES KELLY
JobTitle            POLICE OFFICER III
BasePay                      112416.85
OvertimePay                     1052.8
OtherPay                       1616.09
Benefits                           NaN
TotalPay                     115085.74
TotalPayBenefits             115085.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6670, dtype: object)
(6671, Id                                6672
EmployeeName                JOHN JIANG
JobTitle            TRANSIT SUPERVISOR
BasePay                        75116.4
OvertimePay                   37351.16
OtherPay                       2618.12
Benefits                           NaN
TotalPay                     115085.68
TotalPayBenefits             115085.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6671, dtype: object)
(6672, Id                                6673
EmployeeName                  DAVIS KO
JobTitle            BUILDING INSPECTOR
BasePay                       101268.3
OvertimePay                    8739.24
OtherPay                       5064.28
Benefits                           NaN
TotalPay                     115071.82
TotalPayBenefits             115071.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6672, dtype: object)
(6673, Id                           6674
EmployeeName        ERIN YAMAMURA
JobTitle              FIREFIGHTER
BasePay                  95701.81
OvertimePay               4373.32
OtherPay                 14985.76
Benefits                      NaN
TotalPay                115060.89
TotalPayBenefits        115060.89
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6673, dtype: object)
(6674, Id                                 6675
EmployeeName        CESLI MAY CAGALAWAN
JobTitle               REGISTERED NURSE
BasePay                       108935.61
OvertimePay                     3146.79
OtherPay                        2971.93
Benefits                            NaN
TotalPay                      115054.33
TotalPayBenefits              115054.33
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6674, dtype: object)
(6675, Id                              6676
EmployeeName        ROBERT HERNANDEZ
JobTitle            REGISTERED NURSE
BasePay                    114153.15
OvertimePay                      0.0
OtherPay                       900.0
Benefits                         NaN
TotalPay                   115053.15
TotalPayBenefits           115053.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6675, dtype: object)
(6676, Id                                                          6677
EmployeeName                                            JOHN LEE
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                 79598.01
OvertimePay                                             26875.96
OtherPay                                                 8554.71
Benefits                                                     NaN
TotalPay                                               115028.68
TotalPayBenefits                                       115028.68
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 6676, dtype: object)
(6677, Id                               6678
EmployeeName           CHRIS SCHAEFER
JobTitle            POLICE OFFICER II
BasePay                     110223.07
OvertimePay                   3331.55
OtherPay                      1472.79
Benefits                          NaN
TotalPay                    115027.41
TotalPayBenefits            115027.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6677, dtype: object)
(6678, Id                                    6679
EmployeeName                  DYLAN HAWHEE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.69
OvertimePay                        1671.59
OtherPay                            6913.7
Benefits                               NaN
TotalPay                         115026.98
TotalPayBenefits                 115026.98
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6678, dtype: object)
(6679, Id                                   6680
EmployeeName                    DALE CHOY
JobTitle            MAINTENANCE MACHINIST
BasePay                          76555.87
OvertimePay                      37735.19
OtherPay                            727.0
Benefits                              NaN
TotalPay                        115018.06
TotalPayBenefits                115018.06
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6679, dtype: object)
(6680, Id                                         6681
EmployeeName                        DONALD CHIN
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               102396.05
OvertimePay                            11615.59
OtherPay                                 1000.0
Benefits                                    NaN
TotalPay                              115011.64
TotalPayBenefits                      115011.64
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 6680, dtype: object)
(6681, Id                                6682
EmployeeName                DAWN NANCE
JobTitle            NURSE PRACTITIONER
BasePay                       114729.5
OvertimePay                        0.0
OtherPay                        278.01
Benefits                           NaN
TotalPay                     115007.51
TotalPayBenefits             115007.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6681, dtype: object)
(6682, Id                                 6683
EmployeeName             CARLO BAUTISTA
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72490.4
OvertimePay                    33549.92
OtherPay                        8945.88
Benefits                            NaN
TotalPay                       114986.2
TotalPayBenefits               114986.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6682, dtype: object)
(6683, Id                              6684
EmployeeName           RAIMUNDO TING
JobTitle            REGISTERED NURSE
BasePay                     92081.09
OvertimePay                 10571.51
OtherPay                    12303.95
Benefits                         NaN
TotalPay                   114956.55
TotalPayBenefits           114956.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6683, dtype: object)
(6684, Id                              6685
EmployeeName        AILEEN DEL MUNDO
JobTitle            REGISTERED NURSE
BasePay                    100151.08
OvertimePay                  9542.23
OtherPay                     5249.33
Benefits                         NaN
TotalPay                   114942.64
TotalPayBenefits           114942.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6684, dtype: object)
(6685, Id                                  6686
EmployeeName             PATRICK NURISSO
JobTitle            PLUMBER SUPERVISOR I
BasePay                         102866.4
OvertimePay                      3829.43
OtherPay                         8245.31
Benefits                             NaN
TotalPay                       114941.14
TotalPayBenefits               114941.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6685, dtype: object)
(6686, Id                                6687
EmployeeName        MARCUS DOBROWOLSKI
JobTitle              POLICE OFFICER I
BasePay                       96152.34
OvertimePay                    8199.23
OtherPay                      10588.93
Benefits                           NaN
TotalPay                      114940.5
TotalPayBenefits              114940.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6686, dtype: object)
(6687, Id                                6688
EmployeeName                JOHN ANTON
JobTitle            POLICE OFFICER III
BasePay                      112421.42
OvertimePay                    1655.24
OtherPay                        849.93
Benefits                           NaN
TotalPay                     114926.59
TotalPayBenefits             114926.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6687, dtype: object)
(6688, Id                                                6689
EmployeeName                            ARTHUR RAMIREZ
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.67
OvertimePay                                   32814.68
OtherPay                                       4524.45
Benefits                                           NaN
TotalPay                                      114919.8
TotalPayBenefits                              114919.8
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6688, dtype: object)
(6689, Id                                6690
EmployeeName            CHRIS MUSELMAN
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                        0.0
OtherPay                       2511.26
Benefits                           NaN
TotalPay                     114912.32
TotalPayBenefits             114912.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6689, dtype: object)
(6690, Id                              6691
EmployeeName           MEIGHAN LYONS
JobTitle            POLICE OFFICER I
BasePay                     93980.82
OvertimePay                  7550.84
OtherPay                    13352.61
Benefits                         NaN
TotalPay                   114884.27
TotalPayBenefits           114884.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6690, dtype: object)
(6691, Id                           6692
EmployeeName         DUK-SOO CHOI
JobTitle                 ENGINEER
BasePay                  109432.0
OvertimePay                   0.0
OtherPay                   5446.8
Benefits                      NaN
TotalPay                 114878.8
TotalPayBenefits         114878.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6691, dtype: object)
(6692, Id                                       6693
EmployeeName            ALEXIS FEIGEN FASTEAU
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             114876.61
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            114876.61
TotalPayBenefits                    114876.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6692, dtype: object)
(6693, Id                                    6694
EmployeeName              TERESA CAVANAUGH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          101702.73
OvertimePay                       10003.42
OtherPay                           3165.62
Benefits                               NaN
TotalPay                         114871.77
TotalPayBenefits                 114871.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6693, dtype: object)
(6694, Id                                                      6695
EmployeeName                                    ARMIN BORICK
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             92183.85
OvertimePay                                         15814.78
OtherPay                                              6868.2
Benefits                                                 NaN
TotalPay                                           114866.83
TotalPayBenefits                                   114866.83
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 6694, dtype: object)
(6695, Id                                6696
EmployeeName         KIYOTAKA KANAMORI
JobTitle            POLICE OFFICER III
BasePay                      112400.54
OvertimePay                        0.0
OtherPay                       2464.37
Benefits                           NaN
TotalPay                     114864.91
TotalPayBenefits             114864.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6695, dtype: object)
(6696, Id                                       6697
EmployeeName                    JEFFREY RANTA
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92875.2
OvertimePay                          21804.19
OtherPay                                180.0
Benefits                                  NaN
TotalPay                            114859.39
TotalPayBenefits                    114859.39
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6696, dtype: object)
(6697, Id                               6698
EmployeeName         JESSICA NANTROUP
JobTitle            POLICE OFFICER II
BasePay                      96016.02
OvertimePay                   8132.76
OtherPay                     10701.88
Benefits                          NaN
TotalPay                    114850.66
TotalPayBenefits            114850.66
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6697, dtype: object)
(6698, Id                                6699
EmployeeName              MARY MORENTZ
JobTitle            POLICE OFFICER III
BasePay                       112421.4
OvertimePay                     812.34
OtherPay                       1616.55
Benefits                           NaN
TotalPay                     114850.29
TotalPayBenefits             114850.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6698, dtype: object)
(6699, Id                              6700
EmployeeName          STEVEN STEARNS
JobTitle            POLICE OFFICER I
BasePay                    101051.19
OvertimePay                  6101.82
OtherPay                     7697.12
Benefits                         NaN
TotalPay                   114850.13
TotalPayBenefits           114850.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6699, dtype: object)
(6700, Id                              6701
EmployeeName          TOMMIE BARTLEY
JobTitle            POLICE OFFICER I
BasePay                     98513.04
OvertimePay                  9820.03
OtherPay                      6508.1
Benefits                         NaN
TotalPay                   114841.17
TotalPayBenefits           114841.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6700, dtype: object)
(6701, Id                              6702
EmployeeName          CARLOS PADILLA
JobTitle            POLICE OFFICER I
BasePay                     97371.33
OvertimePay                  8665.76
OtherPay                     8800.16
Benefits                         NaN
TotalPay                   114837.25
TotalPayBenefits           114837.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6701, dtype: object)
(6702, Id                               6703
EmployeeName        FILIPINAS GUASQUE
JobTitle             REGISTERED NURSE
BasePay                      110045.0
OvertimePay                    3204.0
OtherPay                      1563.14
Benefits                          NaN
TotalPay                    114812.14
TotalPayBenefits            114812.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6702, dtype: object)
(6703, Id                                                          6704
EmployeeName                                     RICHARD ELLIOTT
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                 90090.01
OvertimePay                                              17087.0
OtherPay                                                 7633.92
Benefits                                                     NaN
TotalPay                                               114810.93
TotalPayBenefits                                       114810.93
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 6703, dtype: object)
(6704, Id                                 6705
EmployeeName            ALEXANDER LUGTU
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                     35054.8
OtherPay                        7342.78
Benefits                            NaN
TotalPay                      114807.58
TotalPayBenefits              114807.58
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6704, dtype: object)
(6705, Id                                               6706
EmployeeName                          VASILIY TSURKAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   13737.6
OtherPay                                       2052.0
Benefits                                          NaN
TotalPay                                     114804.0
TotalPayBenefits                             114804.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6705, dtype: object)
(6706, Id                                 6707
EmployeeName                 HELEN CHEN
JobTitle            PUBLIC HEALTH NURSE
BasePay                       111514.01
OvertimePay                         0.0
OtherPay                        3287.31
Benefits                            NaN
TotalPay                      114801.32
TotalPayBenefits              114801.32
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6706, dtype: object)
(6707, Id                                   6708
EmployeeName              ROBERT MIKOVICH
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                       10819.1
OtherPay                          7726.44
Benefits                              NaN
TotalPay                        114797.56
TotalPayBenefits                114797.56
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6707, dtype: object)
(6708, Id                                6709
EmployeeName                 YAN HUANG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   22453.61
OtherPay                        4281.7
Benefits                           NaN
TotalPay                     114797.31
TotalPayBenefits             114797.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6708, dtype: object)
(6709, Id                                 6710
EmployeeName              DAVID MYERSON
JobTitle            PROJECT MANAGER III
BasePay                        114796.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       114796.8
TotalPayBenefits               114796.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6709, dtype: object)
(6710, Id                                      6711
EmployeeName                 VIRGINIA SUNDAY
JobTitle            PUBLIC RELATIONS MANAGER
BasePay                            114796.75
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           114796.75
TotalPayBenefits                   114796.75
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 6710, dtype: object)
(6711, Id                                  6712
EmployeeName                  DAN TRUONG
JobTitle            IS ENGINEER - SENIOR
BasePay                         107558.4
OvertimePay                      2999.28
OtherPay                         4216.83
Benefits                             NaN
TotalPay                       114774.51
TotalPayBenefits               114774.51
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6711, dtype: object)
(6712, Id                              6713
EmployeeName         CHERYL DE LEMOS
JobTitle            REGISTERED NURSE
BasePay                    105675.71
OvertimePay                  3602.95
OtherPay                     5485.31
Benefits                         NaN
TotalPay                   114763.97
TotalPayBenefits           114763.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6712, dtype: object)
(6713, Id                               6714
EmployeeName            AUSTIN WILSON
JobTitle            POLICE OFFICER II
BasePay                      94059.22
OvertimePay                    2966.4
OtherPay                     17734.15
Benefits                          NaN
TotalPay                    114759.77
TotalPayBenefits            114759.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6713, dtype: object)
(6714, Id                               6715
EmployeeName              DUSTIN DAZA
JobTitle            POLICE OFFICER II
BasePay                     104569.76
OvertimePay                   3833.69
OtherPay                      6354.09
Benefits                          NaN
TotalPay                    114757.54
TotalPayBenefits            114757.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6714, dtype: object)
(6715, Id                                       6716
EmployeeName                   MEGHAN HIGGINS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             104031.16
OvertimePay                               0.0
OtherPay                             10723.29
Benefits                                  NaN
TotalPay                            114754.45
TotalPayBenefits                    114754.45
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6715, dtype: object)
(6716, Id                               6717
EmployeeName        YVETTE POINDEXTER
JobTitle             POLICE OFFICER I
BasePay                     106046.07
OvertimePay                    417.94
OtherPay                      8289.75
Benefits                          NaN
TotalPay                    114753.76
TotalPayBenefits            114753.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6716, dtype: object)
(6717, Id                              6718
EmployeeName            DELIA MANUEL
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                  4364.38
OtherPay                     1339.13
Benefits                         NaN
TotalPay                   114747.51
TotalPayBenefits           114747.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6717, dtype: object)
(6718, Id                                                   6719
EmployeeName                              PATRICK FOSDAHL
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.47
OvertimePay                                           0.0
OtherPay                                         11545.64
Benefits                                              NaN
TotalPay                                        114743.11
TotalPayBenefits                                114743.11
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 6718, dtype: object)
(6719, Id                           6720
EmployeeName        DIEDRE GIBSON
JobTitle              FIREFIGHTER
BasePay                  97163.65
OvertimePay               7700.75
OtherPay                  9874.08
Benefits                      NaN
TotalPay                114738.48
TotalPayBenefits        114738.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6719, dtype: object)
(6720, Id                               6721
EmployeeName          CHIEN-PING CHOU
JobTitle            POLICE OFFICER II
BasePay                     102069.79
OvertimePay                   8458.87
OtherPay                      4184.33
Benefits                          NaN
TotalPay                    114712.99
TotalPayBenefits            114712.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6720, dtype: object)
(6721, Id                                        6722
EmployeeName                     LUCILLE PALMA
JobTitle            DIAGNOSTIC IMAGING TECH IV
BasePay                              106206.37
OvertimePay                            7256.94
OtherPay                                1245.0
Benefits                                   NaN
TotalPay                             114708.31
TotalPayBenefits                     114708.31
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6721, dtype: object)
(6722, Id                                6723
EmployeeName         GABRIELLA CIRELLI
JobTitle            PROJECT MANAGER II
BasePay                      114686.93
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     114686.93
TotalPayBenefits             114686.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6722, dtype: object)
(6723, Id                              6724
EmployeeName         NORLISSA COOPER
JobTitle            REGISTERED NURSE
BasePay                    103701.88
OvertimePay                  4828.32
OtherPay                     6147.01
Benefits                         NaN
TotalPay                   114677.21
TotalPayBenefits           114677.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6723, dtype: object)
(6724, Id                               6725
EmployeeName             DENIZ AKMESE
JobTitle            POLICE OFFICER II
BasePay                     106040.31
OvertimePay                   6916.03
OtherPay                      1717.78
Benefits                          NaN
TotalPay                    114674.12
TotalPayBenefits            114674.12
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6724, dtype: object)
(6725, Id                              6726
EmployeeName            JARED HARRIS
JobTitle            POLICE OFFICER I
BasePay                     93760.19
OvertimePay                  5704.99
OtherPay                    15206.97
Benefits                         NaN
TotalPay                   114672.15
TotalPayBenefits           114672.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6725, dtype: object)
(6726, Id                              6727
EmployeeName              AMY THARPE
JobTitle            MAYORAL STAFF XV
BasePay                    113479.21
OvertimePay                      0.0
OtherPay                     1186.64
Benefits                         NaN
TotalPay                   114665.85
TotalPayBenefits           114665.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6726, dtype: object)
(6727, Id                               6728
EmployeeName         TIMOTHY REYNOLDS
JobTitle            POLICE OFFICER II
BasePay                     103338.95
OvertimePay                   2530.89
OtherPay                      8791.55
Benefits                          NaN
TotalPay                    114661.39
TotalPayBenefits            114661.39
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6727, dtype: object)
(6728, Id                              6729
EmployeeName        BRANDON MCKELLEY
JobTitle            POLICE OFFICER I
BasePay                      94535.7
OvertimePay                  7652.41
OtherPay                    12464.45
Benefits                         NaN
TotalPay                   114652.56
TotalPayBenefits           114652.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6728, dtype: object)
(6729, Id                               6730
EmployeeName               AJAY SINGH
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                    374.75
OtherPay                      4045.93
Benefits                          NaN
TotalPay                     114643.7
TotalPayBenefits             114643.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6729, dtype: object)
(6730, Id                              6731
EmployeeName             LEA MASSERY
JobTitle            REGISTERED NURSE
BasePay                     95960.22
OvertimePay                  3846.15
OtherPay                    14831.17
Benefits                         NaN
TotalPay                   114637.54
TotalPayBenefits           114637.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6730, dtype: object)
(6731, Id                            6732
EmployeeName         HUGO APARICIO
JobTitle            DEPUTY SHERIFF
BasePay                   86506.02
OvertimePay               20389.91
OtherPay                   7736.85
Benefits                       NaN
TotalPay                 114632.78
TotalPayBenefits         114632.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6731, dtype: object)
(6732, Id                              6733
EmployeeName         ANDREW CLIFFORD
JobTitle            POLICE OFFICER I
BasePay                     95687.58
OvertimePay                 16538.28
OtherPay                     2402.82
Benefits                         NaN
TotalPay                   114628.68
TotalPayBenefits           114628.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6732, dtype: object)
(6733, Id                            6734
EmployeeName        VANDA BAPTISTA
JobTitle               MANAGER III
BasePay                   114215.0
OvertimePay                    0.0
OtherPay                    410.47
Benefits                       NaN
TotalPay                 114625.47
TotalPayBenefits         114625.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6733, dtype: object)
(6734, Id                              6735
EmployeeName              SARENNA LI
JobTitle            REGISTERED NURSE
BasePay                     113089.0
OvertimePay                      0.0
OtherPay                     1535.81
Benefits                         NaN
TotalPay                   114624.81
TotalPayBenefits           114624.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6734, dtype: object)
(6735, Id                            6736
EmployeeName        XAVIER MURILLO
JobTitle            DEPUTY SHERIFF
BasePay                    85949.0
OvertimePay               17613.37
OtherPay                  11062.15
Benefits                       NaN
TotalPay                 114624.52
TotalPayBenefits         114624.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6735, dtype: object)
(6736, Id                              6737
EmployeeName           JOAN GOLDBERG
JobTitle            REGISTERED NURSE
BasePay                     106604.9
OvertimePay                  2271.06
OtherPay                     5748.19
Benefits                         NaN
TotalPay                   114624.15
TotalPayBenefits           114624.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6736, dtype: object)
(6737, Id                                       6738
EmployeeName                     VICTOR HWANG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             114617.23
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            114617.23
TotalPayBenefits                    114617.23
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6737, dtype: object)
(6738, Id                              6739
EmployeeName             LIZA BONGCO
JobTitle            REGISTERED NURSE
BasePay                    104402.84
OvertimePay                  3664.59
OtherPay                     6546.79
Benefits                         NaN
TotalPay                   114614.22
TotalPayBenefits           114614.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6738, dtype: object)
(6739, Id                                               6740
EmployeeName                             BRUCE KELLER
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      96589.65
OvertimePay                                  15416.79
OtherPay                                       2601.5
Benefits                                          NaN
TotalPay                                    114607.94
TotalPayBenefits                            114607.94
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6739, dtype: object)
(6740, Id                                                6741
EmployeeName                             DE GUANG JING
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   29305.11
OtherPay                                       7728.35
Benefits                                           NaN
TotalPay                                     114602.46
TotalPayBenefits                             114602.46
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6740, dtype: object)
(6741, Id                                6742
EmployeeName        CHRISTOPHER COTTER
JobTitle              POLICE OFFICER I
BasePay                      106045.76
OvertimePay                    4570.91
OtherPay                       3983.58
Benefits                           NaN
TotalPay                     114600.25
TotalPayBenefits             114600.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6741, dtype: object)
(6742, Id                                               6743
EmployeeName                               LEE TAYLOR
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96684.81
OvertimePay                                  16276.33
OtherPay                                       1639.0
Benefits                                          NaN
TotalPay                                    114600.14
TotalPayBenefits                            114600.14
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6742, dtype: object)
(6743, Id                                  6744
EmployeeName                 ANNE SIMONS
JobTitle            PHYSICIAN SPECIALIST
BasePay                        112031.75
OvertimePay                          0.0
OtherPay                          2565.0
Benefits                             NaN
TotalPay                       114596.75
TotalPayBenefits               114596.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6743, dtype: object)
(6744, Id                                6745
EmployeeName              KENDAL DAGGS
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.04
OvertimePay                        0.0
OtherPay                       8488.48
Benefits                           NaN
TotalPay                     114594.52
TotalPayBenefits             114594.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6744, dtype: object)
(6745, Id                                 6746
EmployeeName             MARIA CARRANZA
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    49933.53
OtherPay                         8767.4
Benefits                            NaN
TotalPay                      114580.93
TotalPayBenefits              114580.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6745, dtype: object)
(6746, Id                              6747
EmployeeName             SHANE STROH
JobTitle            REGISTERED NURSE
BasePay                     96281.24
OvertimePay                  3610.19
OtherPay                    14685.81
Benefits                         NaN
TotalPay                   114577.24
TotalPayBenefits           114577.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6746, dtype: object)
(6747, Id                               6748
EmployeeName              STEVEN REEL
JobTitle            PROJECT MANAGER I
BasePay                     111679.79
OvertimePay                       0.0
OtherPay                      2889.98
Benefits                          NaN
TotalPay                    114569.77
TotalPayBenefits            114569.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6747, dtype: object)
(6748, Id                                                     6749
EmployeeName                                   MICHAEL PONS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77692.2
OvertimePay                                        30956.17
OtherPay                                            5919.55
Benefits                                                NaN
TotalPay                                          114567.92
TotalPayBenefits                                  114567.92
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6748, dtype: object)
(6749, Id                            6750
EmployeeName            BRIAN RICE
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                21191.0
OtherPay                   6849.03
Benefits                       NaN
TotalPay                 114546.04
TotalPayBenefits         114546.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6749, dtype: object)
(6750, Id                                6751
EmployeeName               DANIEL CHUI
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                     411.83
OtherPay                       1712.14
Benefits                           NaN
TotalPay                     114545.42
TotalPayBenefits             114545.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6750, dtype: object)
(6751, Id                                  6752
EmployeeName           EVELYN VAN HOOZER
JobTitle            IS ENGINEER - SENIOR
BasePay                         114531.6
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        114531.6
TotalPayBenefits                114531.6
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6751, dtype: object)
(6752, Id                                   6753
EmployeeName                    MARC NUTI
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.38
OvertimePay                       9478.32
OtherPay                          8797.85
Benefits                              NaN
TotalPay                        114530.55
TotalPayBenefits                114530.55
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6752, dtype: object)
(6753, Id                                                6754
EmployeeName                             JUAN IRIZARRY
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       71939.79
OvertimePay                                   38690.47
OtherPay                                       3900.05
Benefits                                           NaN
TotalPay                                     114530.31
TotalPayBenefits                             114530.31
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6753, dtype: object)
(6754, Id                                            6755
EmployeeName                      RICARDO CASTILLO
JobTitle            SERGEANT I (POLICE DEPARTMENT)
BasePay                                  109425.18
OvertimePay                                1859.76
OtherPay                                   3245.21
Benefits                                       NaN
TotalPay                                 114530.15
TotalPayBenefits                         114530.15
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6754, dtype: object)
(6755, Id                               6756
EmployeeName            LYDIA FAIDIGA
JobTitle            POLICE OFFICER II
BasePay                     105047.17
OvertimePay                   6052.14
OtherPay                      3423.47
Benefits                          NaN
TotalPay                    114522.78
TotalPayBenefits            114522.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6755, dtype: object)
(6756, Id                                  6757
EmployeeName                   ERIC CHEN
JobTitle            IS ENGINEER - SENIOR
BasePay                        114522.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       114522.01
TotalPayBenefits               114522.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6756, dtype: object)
(6757, Id                                6758
EmployeeName              MELISSA GORE
JobTitle            NURSE PRACTITIONER
BasePay                      114266.18
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     114516.18
TotalPayBenefits             114516.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6757, dtype: object)
(6758, Id                              6759
EmployeeName           RAQUEL FERRER
JobTitle            REGISTERED NURSE
BasePay                    100299.81
OvertimePay                  4170.59
OtherPay                     10031.1
Benefits                         NaN
TotalPay                    114501.5
TotalPayBenefits            114501.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6758, dtype: object)
(6759, Id                              6760
EmployeeName           WON SEA CHUNG
JobTitle            REGISTERED NURSE
BasePay                     109789.8
OvertimePay                      0.0
OtherPay                     4700.57
Benefits                         NaN
TotalPay                   114490.37
TotalPayBenefits           114490.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6759, dtype: object)
(6760, Id                            6761
EmployeeName          JASON RAGUAL
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               15453.19
OtherPay                  12196.49
Benefits                       NaN
TotalPay                 114489.69
TotalPayBenefits         114489.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6760, dtype: object)
(6761, Id                                6762
EmployeeName             ERIC ROBINSON
JobTitle            POLICE OFFICER III
BasePay                       96738.19
OvertimePay                    6839.77
OtherPay                      10910.21
Benefits                           NaN
TotalPay                     114488.17
TotalPayBenefits             114488.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6761, dtype: object)
(6762, Id                           6763
EmployeeName          LORI REGLER
JobTitle               MANAGER II
BasePay                  114487.2
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 114487.2
TotalPayBenefits         114487.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6762, dtype: object)
(6763, Id                              6764
EmployeeName        ADRIANNE WYNACHT
JobTitle               SPECIAL NURSE
BasePay                    114392.42
OvertimePay                    92.68
OtherPay                         0.0
Benefits                         NaN
TotalPay                    114485.1
TotalPayBenefits            114485.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6763, dtype: object)
(6764, Id                                6765
EmployeeName                HARRY VONG
JobTitle            TRANSIT SUPERVISOR
BasePay                       75115.63
OvertimePay                    34357.4
OtherPay                        5003.4
Benefits                           NaN
TotalPay                     114476.43
TotalPayBenefits             114476.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6764, dtype: object)
(6765, Id                            6766
EmployeeName           ERICK SIMMS
JobTitle            DEPUTY SHERIFF
BasePay                   85038.52
OvertimePay               20622.18
OtherPay                   8814.35
Benefits                       NaN
TotalPay                 114475.05
TotalPayBenefits         114475.05
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6765, dtype: object)
(6766, Id                              6767
EmployeeName         JASON MOSTASISA
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  2862.55
OtherPay                     5562.65
Benefits                         NaN
TotalPay                   114471.27
TotalPayBenefits           114471.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6766, dtype: object)
(6767, Id                                             6768
EmployeeName                         SCOTT NORTHRUP
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    114467.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   114467.0
TotalPayBenefits                           114467.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6767, dtype: object)
(6768, Id                                  6769
EmployeeName        ELIZABETH PRILLINGER
JobTitle               POLICE OFFICER II
BasePay                        107792.09
OvertimePay                      4599.29
OtherPay                         2072.29
Benefits                             NaN
TotalPay                       114463.67
TotalPayBenefits               114463.67
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6768, dtype: object)
(6769, Id                              6770
EmployeeName          BRYAN CAMPBELL
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  2026.31
OtherPay                     6388.93
Benefits                         NaN
TotalPay                   114461.32
TotalPayBenefits           114461.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6769, dtype: object)
(6770, Id                            6771
EmployeeName           WENDY WELLS
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               15322.84
OtherPay                  12283.68
Benefits                       NaN
TotalPay                 114446.53
TotalPayBenefits         114446.53
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6770, dtype: object)
(6771, Id                                6772
EmployeeName           JOYCE HUTCHINGS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88400.7
OvertimePay                   23740.73
OtherPay                        2304.0
Benefits                           NaN
TotalPay                     114445.43
TotalPayBenefits             114445.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6771, dtype: object)
(6772, Id                             6773
EmployeeName         JAMES KAZARIAN
JobTitle            UTILITY PLUMBER
BasePay                    90280.05
OvertimePay                 4529.84
OtherPay                   19634.56
Benefits                        NaN
TotalPay                  114444.45
TotalPayBenefits          114444.45
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6772, dtype: object)
(6773, Id                             6774
EmployeeName        HECTOR MARTINEZ
JobTitle             DEPUTY SHERIFF
BasePay                    86840.03
OvertimePay                23351.85
OtherPay                    4248.49
Benefits                        NaN
TotalPay                  114440.37
TotalPayBenefits          114440.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6773, dtype: object)
(6774, Id                                 6775
EmployeeName            KATHLEEN SHUTON
JobTitle            PUBLIC HEALTH NURSE
BasePay                       112717.69
OvertimePay                         0.0
OtherPay                        1718.69
Benefits                            NaN
TotalPay                      114436.38
TotalPayBenefits              114436.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6774, dtype: object)
(6775, Id                              6776
EmployeeName              JOEL LEONG
JobTitle            REGISTERED NURSE
BasePay                     110836.3
OvertimePay                    648.6
OtherPay                     2944.45
Benefits                         NaN
TotalPay                   114429.35
TotalPayBenefits           114429.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6775, dtype: object)
(6776, Id                              6777
EmployeeName               JIMMY LEE
JobTitle            POLICE OFFICER I
BasePay                    106038.13
OvertimePay                  3870.61
OtherPay                     4507.89
Benefits                         NaN
TotalPay                   114416.63
TotalPayBenefits           114416.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6776, dtype: object)
(6777, Id                                6778
EmployeeName                   LILY NG
JobTitle            POLICE OFFICER III
BasePay                      112427.39
OvertimePay                     255.18
OtherPay                       1730.38
Benefits                           NaN
TotalPay                     114412.95
TotalPayBenefits             114412.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6777, dtype: object)
(6778, Id                              6779
EmployeeName        PATRICK MCNICHOL
JobTitle            POLICE OFFICER I
BasePay                     93567.92
OvertimePay                  8462.39
OtherPay                    12376.09
Benefits                         NaN
TotalPay                    114406.4
TotalPayBenefits            114406.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6778, dtype: object)
(6779, Id                                  6780
EmployeeName              WILLIAM CLARKE
JobTitle            SEWER SERVICE WORKER
BasePay                          82909.2
OvertimePay                     29506.33
OtherPay                         1990.63
Benefits                             NaN
TotalPay                       114406.16
TotalPayBenefits               114406.16
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6779, dtype: object)
(6780, Id                                6781
EmployeeName        PHILLIP WILLIAMSON
JobTitle                    MANAGER II
BasePay                      114405.69
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     114405.69
TotalPayBenefits             114405.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6780, dtype: object)
(6781, Id                               6782
EmployeeName              ALVIN LOUIE
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                   3337.92
OtherPay                       819.53
Benefits                          NaN
TotalPay                    114400.36
TotalPayBenefits            114400.36
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6781, dtype: object)
(6782, Id                                6783
EmployeeName              PAUL MOURGOS
JobTitle            POLICE OFFICER III
BasePay                      112421.45
OvertimePay                    1158.67
OtherPay                        819.44
Benefits                           NaN
TotalPay                     114399.56
TotalPayBenefits             114399.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6782, dtype: object)
(6783, Id                               6784
EmployeeName          MICHAEL SHUGARS
JobTitle            POLICE OFFICER II
BasePay                      99323.11
OvertimePay                   5167.52
OtherPay                       9908.2
Benefits                          NaN
TotalPay                    114398.83
TotalPayBenefits            114398.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6783, dtype: object)
(6784, Id                              6785
EmployeeName         MICHELLE SPEARS
JobTitle            POLICE OFFICER I
BasePay                    106084.31
OvertimePay                  5029.95
OtherPay                     3284.23
Benefits                         NaN
TotalPay                   114398.49
TotalPayBenefits           114398.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6784, dtype: object)
(6785, Id                                           6786
EmployeeName                      RAMON HERNANDEZ
JobTitle            ASPHALT FINISHER SUPERVISOR I
BasePay                                  84423.99
OvertimePay                              19054.95
OtherPay                                 10914.42
Benefits                                      NaN
TotalPay                                114393.36
TotalPayBenefits                        114393.36
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6785, dtype: object)
(6786, Id                           6787
EmployeeName        GLENN BROTMAN
JobTitle               MANAGER II
BasePay                 114391.66
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114391.66
TotalPayBenefits        114391.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6786, dtype: object)
(6787, Id                                6788
EmployeeName         JENNIFER THOMPSON
JobTitle            POLICE OFFICER III
BasePay                      112155.05
OvertimePay                       6.64
OtherPay                       2226.07
Benefits                           NaN
TotalPay                     114387.76
TotalPayBenefits             114387.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6787, dtype: object)
(6788, Id                              6789
EmployeeName           ELIAS SARSOUR
JobTitle            TRANSIT OPERATOR
BasePay                     67493.05
OvertimePay                 45962.78
OtherPay                      928.79
Benefits                         NaN
TotalPay                   114384.62
TotalPayBenefits           114384.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6788, dtype: object)
(6789, Id                            6790
EmployeeName          TORI JACKSON
JobTitle            DEPUTY SHERIFF
BasePay                   84502.01
OvertimePay               22868.57
OtherPay                   7000.05
Benefits                       NaN
TotalPay                 114370.63
TotalPayBenefits         114370.63
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6789, dtype: object)
(6790, Id                                6791
EmployeeName               HERBERT YEE
JobTitle            POLICE OFFICER III
BasePay                      110441.24
OvertimePay                        0.0
OtherPay                       3923.32
Benefits                           NaN
TotalPay                     114364.56
TotalPayBenefits             114364.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6790, dtype: object)
(6791, Id                               6792
EmployeeName            CHERYL TURNER
JobTitle            TRANSIT MANAGER I
BasePay                     110997.05
OvertimePay                       0.0
OtherPay                       3347.0
Benefits                          NaN
TotalPay                    114344.05
TotalPayBenefits            114344.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6791, dtype: object)
(6792, Id                                 6793
EmployeeName        SALLA VAERMA JADLOS
JobTitle                     MANAGER II
BasePay                        114335.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       114335.5
TotalPayBenefits               114335.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6792, dtype: object)
(6793, Id                                                           6794
EmployeeName                                       LORRAINE FUQUA
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  114335.5
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                 114335.5
TotalPayBenefits                                         114335.5
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 6793, dtype: object)
(6794, Id                             6795
EmployeeName        MARILYN DANIELS
JobTitle                 MANAGER II
BasePay                    114335.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   114335.5
TotalPayBenefits           114335.5
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6794, dtype: object)
(6795, Id                            6796
EmployeeName        THOMAS ELLISON
JobTitle                MANAGER II
BasePay                   114335.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  114335.5
TotalPayBenefits          114335.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6795, dtype: object)
(6796, Id                           6797
EmployeeName           EDGAR POMA
JobTitle               MANAGER II
BasePay                  114335.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 114335.5
TotalPayBenefits         114335.5
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6796, dtype: object)
(6797, Id                                             6798
EmployeeName                          SAMUEL VALDEZ
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   114306.23
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  114306.23
TotalPayBenefits                          114306.23
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6797, dtype: object)
(6798, Id                               6799
EmployeeName            CRISPIN JONES
JobTitle            POLICE OFFICER II
BasePay                     101765.24
OvertimePay                   4649.35
OtherPay                      7890.41
Benefits                          NaN
TotalPay                     114305.0
TotalPayBenefits             114305.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6798, dtype: object)
(6799, Id                                            6800
EmployeeName                         MARIA CORDERO
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  114299.97
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 114299.97
TotalPayBenefits                         114299.97
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6799, dtype: object)
(6800, Id                                   6801
EmployeeName        ERNESTO DEL BARRIO JR
JobTitle                TRANSIT MANAGER I
BasePay                         105853.97
OvertimePay                           0.0
OtherPay                          8444.68
Benefits                              NaN
TotalPay                        114298.65
TotalPayBenefits                114298.65
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6800, dtype: object)
(6801, Id                                6802
EmployeeName           PATRICK EBELING
JobTitle            SHERIFF'S SERGEANT
BasePay                       105697.9
OvertimePay                     306.08
OtherPay                       8291.42
Benefits                           NaN
TotalPay                      114295.4
TotalPayBenefits              114295.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6801, dtype: object)
(6802, Id                           6803
EmployeeName          DENNIS REED
JobTitle               MANAGER II
BasePay                 114293.39
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114293.39
TotalPayBenefits        114293.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6802, dtype: object)
(6803, Id                           6804
EmployeeName          MATT DORSEY
JobTitle              MANAGER III
BasePay                  114291.6
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 114291.6
TotalPayBenefits         114291.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6803, dtype: object)
(6804, Id                                              6805
EmployeeName                         MEDRICK BELL JR
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73203.69
OvertimePay                                  38105.5
OtherPay                                     2972.03
Benefits                                         NaN
TotalPay                                   114281.22
TotalPayBenefits                           114281.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6804, dtype: object)
(6805, Id                                6806
EmployeeName             EDMUNDO SAENZ
JobTitle            POLICE OFFICER III
BasePay                      110849.43
OvertimePay                     322.15
OtherPay                       3108.35
Benefits                           NaN
TotalPay                     114279.93
TotalPayBenefits             114279.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6805, dtype: object)
(6806, Id                                6807
EmployeeName              NICOLAS HUFF
JobTitle            ASSOCIATE ENGINEER
BasePay                      114278.07
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     114278.07
TotalPayBenefits             114278.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6806, dtype: object)
(6807, Id                                 6808
EmployeeName        CHRISTINE MCCORMICK
JobTitle              POLICE OFFICER II
BasePay                       110222.81
OvertimePay                      1663.6
OtherPay                        2388.85
Benefits                            NaN
TotalPay                      114275.26
TotalPayBenefits              114275.26
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6807, dtype: object)
(6808, Id                           6809
EmployeeName          SHAUNA ROSE
JobTitle                MANAGER I
BasePay                 109594.52
OvertimePay                   0.0
OtherPay                  4672.55
Benefits                      NaN
TotalPay                114267.07
TotalPayBenefits        114267.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6808, dtype: object)
(6809, Id                              6810
EmployeeName          JOEL HORNSTEIN
JobTitle            POLICE OFFICER I
BasePay                    101941.15
OvertimePay                  4930.56
OtherPay                     7394.32
Benefits                         NaN
TotalPay                   114266.03
TotalPayBenefits           114266.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6809, dtype: object)
(6810, Id                               6811
EmployeeName        SEPTEMBER JARRETT
JobTitle                   MANAGER II
BasePay                     114259.97
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    114259.97
TotalPayBenefits            114259.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6810, dtype: object)
(6811, Id                                              6812
EmployeeName                          JOSHUA SADORRA
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                    104100.11
OvertimePay                                  4273.93
OtherPay                                     5878.31
Benefits                                         NaN
TotalPay                                   114252.35
TotalPayBenefits                           114252.35
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6811, dtype: object)
(6812, Id                                6813
EmployeeName            SANTOKH KAHLON
JobTitle            ASSOCIATE ENGINEER
BasePay                      106062.53
OvertimePay                        0.0
OtherPay                       8188.37
Benefits                           NaN
TotalPay                      114250.9
TotalPayBenefits              114250.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6812, dtype: object)
(6813, Id                                            6814
EmployeeName                           JOHN NELSON
JobTitle            TRANSMISSION LINE SUPERVISOR I
BasePay                                   99260.71
OvertimePay                               11693.37
OtherPay                                   3286.87
Benefits                                       NaN
TotalPay                                 114240.95
TotalPayBenefits                         114240.95
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6813, dtype: object)
(6814, Id                            6815
EmployeeName         DAVID JACKSON
JobTitle            CRIMINALIST II
BasePay                  101418.02
OvertimePay               12812.51
OtherPay                      7.78
Benefits                       NaN
TotalPay                 114238.31
TotalPayBenefits         114238.31
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6814, dtype: object)
(6815, Id                           6816
EmployeeName          LORETTA LUM
JobTitle               MANAGER II
BasePay                  114237.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 114237.3
TotalPayBenefits         114237.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6815, dtype: object)
(6816, Id                           6817
EmployeeName        DARYL HIGASHI
JobTitle               MANAGER II
BasePay                 114237.27
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.27
TotalPayBenefits        114237.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6816, dtype: object)
(6817, Id                           6818
EmployeeName           GRACE CHAN
JobTitle               MANAGER II
BasePay                 114237.26
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.26
TotalPayBenefits        114237.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6817, dtype: object)
(6818, Id                            6819
EmployeeName        MICHAEL ROBERT
JobTitle                MANAGER II
BasePay                  114237.26
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.26
TotalPayBenefits         114237.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6818, dtype: object)
(6819, Id                           6820
EmployeeName          THOMAS MESA
JobTitle               MANAGER II
BasePay                 114237.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.25
TotalPayBenefits        114237.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6819, dtype: object)
(6820, Id                              6821
EmployeeName        VLADIMIR RUDAKOV
JobTitle                  MANAGER II
BasePay                    114237.25
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   114237.25
TotalPayBenefits           114237.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6820, dtype: object)
(6821, Id                              6822
EmployeeName        MARTHA SINGLETON
JobTitle                  MANAGER II
BasePay                    114237.25
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   114237.25
TotalPayBenefits           114237.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6821, dtype: object)
(6822, Id                           6823
EmployeeName          KEVIN ALLEN
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6822, dtype: object)
(6823, Id                           6824
EmployeeName           ROBIN LOVE
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6823, dtype: object)
(6824, Id                            6825
EmployeeName        CHARLES STRAWN
JobTitle                MANAGER II
BasePay                  114237.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.24
TotalPayBenefits         114237.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6824, dtype: object)
(6825, Id                             6826
EmployeeName        ELIZABETH CRUDO
JobTitle                 MANAGER II
BasePay                   114237.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  114237.24
TotalPayBenefits          114237.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6825, dtype: object)
(6826, Id                                                           6827
EmployeeName                                    LOURDES FELICIANO
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 114237.24
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                114237.24
TotalPayBenefits                                        114237.24
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 6826, dtype: object)
(6827, Id                               6828
EmployeeName        CHRISTIANE MEDINA
JobTitle                   MANAGER II
BasePay                     114237.24
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    114237.24
TotalPayBenefits            114237.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6827, dtype: object)
(6828, Id                               6829
EmployeeName        RENEE DUNN MARTIN
JobTitle                   MANAGER II
BasePay                     114237.24
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    114237.24
TotalPayBenefits            114237.24
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6828, dtype: object)
(6829, Id                             6830
EmployeeName        JOSEF BRUCKBACK
JobTitle                 MANAGER II
BasePay                   114237.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  114237.24
TotalPayBenefits          114237.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6829, dtype: object)
(6830, Id                             6831
EmployeeName        KATHLEEN DIOHEP
JobTitle                 MANAGER II
BasePay                   114237.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  114237.24
TotalPayBenefits          114237.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6830, dtype: object)
(6831, Id                           6832
EmployeeName          MARY ADRIAN
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6831, dtype: object)
(6832, Id                              6833
EmployeeName        YOLANDA ALCANTAR
JobTitle                  MANAGER II
BasePay                    114237.24
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   114237.24
TotalPayBenefits           114237.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6832, dtype: object)
(6833, Id                           6834
EmployeeName         JAMES WHELLY
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6833, dtype: object)
(6834, Id                             6835
EmployeeName        DEBORAH WALTERS
JobTitle                 MANAGER II
BasePay                   114237.24
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  114237.24
TotalPayBenefits          114237.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6834, dtype: object)
(6835, Id                           6836
EmployeeName           SIDNEY LAM
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6835, dtype: object)
(6836, Id                           6837
EmployeeName            JOHN DOLL
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6836, dtype: object)
(6837, Id                           6838
EmployeeName        CHONA PERALTA
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6837, dtype: object)
(6838, Id                           6839
EmployeeName          JOHN GRIMES
JobTitle               MANAGER II
BasePay                 114237.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.24
TotalPayBenefits        114237.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6838, dtype: object)
(6839, Id                                6840
EmployeeName        ERNESTINA CARRILLO
JobTitle                    MANAGER II
BasePay                      114237.24
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     114237.24
TotalPayBenefits             114237.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6839, dtype: object)
(6840, Id                            6841
EmployeeName        SUSAN ESPOSITO
JobTitle                MANAGER II
BasePay                  114237.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.24
TotalPayBenefits         114237.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6840, dtype: object)
(6841, Id                            6842
EmployeeName        AREGAWIE YOSEF
JobTitle                MANAGER II
BasePay                  114237.23
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.23
TotalPayBenefits         114237.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6841, dtype: object)
(6842, Id                            6843
EmployeeName        LLEWELLYN CHEE
JobTitle                MANAGER II
BasePay                  114237.23
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.23
TotalPayBenefits         114237.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6842, dtype: object)
(6843, Id                           6844
EmployeeName           JULIE PECK
JobTitle               MANAGER II
BasePay                 114237.23
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.23
TotalPayBenefits        114237.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6843, dtype: object)
(6844, Id                            6845
EmployeeName        JAMES GARFIELD
JobTitle                MANAGER II
BasePay                  114237.23
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.23
TotalPayBenefits         114237.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6844, dtype: object)
(6845, Id                           6846
EmployeeName            ALEX MANN
JobTitle               MANAGER II
BasePay                 114237.23
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114237.23
TotalPayBenefits        114237.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6845, dtype: object)
(6846, Id                             6847
EmployeeName        MARY ANN WARREN
JobTitle                 MANAGER II
BasePay                   114237.22
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  114237.22
TotalPayBenefits          114237.22
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6846, dtype: object)
(6847, Id                           6848
EmployeeName         THOMAS NEILL
JobTitle               MANAGER II
BasePay                  114237.2
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 114237.2
TotalPayBenefits         114237.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6847, dtype: object)
(6848, Id                            6849
EmployeeName        MATTHEW THOMAS
JobTitle                MANAGER II
BasePay                  114237.19
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 114237.19
TotalPayBenefits         114237.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6848, dtype: object)
(6849, Id                                            6850
EmployeeName                         NICHOLE TRUAX
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   114236.1
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  114236.1
TotalPayBenefits                          114236.1
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6849, dtype: object)
(6850, Id                              6851
EmployeeName            DAVID BRANDT
JobTitle            POLICE OFFICER I
BasePay                    106046.03
OvertimePay                  4763.52
OtherPay                     3418.91
Benefits                         NaN
TotalPay                   114228.46
TotalPayBenefits           114228.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6850, dtype: object)
(6851, Id                                       6852
EmployeeName                   DANIEL LAZZARI
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              94252.07
OvertimePay                          12466.81
OtherPay                              7506.78
Benefits                                  NaN
TotalPay                            114225.66
TotalPayBenefits                    114225.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6851, dtype: object)
(6852, Id                                       6853
EmployeeName                       RONALD TOM
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                              108784.6
OvertimePay                               0.0
OtherPay                               5439.5
Benefits                                  NaN
TotalPay                             114224.1
TotalPayBenefits                     114224.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 6852, dtype: object)
(6853, Id                              6854
EmployeeName             IRENE MANIO
JobTitle            REGISTERED NURSE
BasePay                    108244.52
OvertimePay                   3774.6
OtherPay                     2200.21
Benefits                         NaN
TotalPay                   114219.33
TotalPayBenefits           114219.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6853, dtype: object)
(6854, Id                               6855
EmployeeName        DEREK CHRISTENSEN
JobTitle            POLICE OFFICER II
BasePay                      92566.31
OvertimePay                   7687.55
OtherPay                     13964.55
Benefits                          NaN
TotalPay                    114218.41
TotalPayBenefits            114218.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6854, dtype: object)
(6855, Id                                         6856
EmployeeName                    PATRICK GRIFFIN
JobTitle            POWER GENERATION SUPERVISOR
BasePay                                98048.35
OvertimePay                             3675.85
OtherPay                               12488.79
Benefits                                    NaN
TotalPay                              114212.99
TotalPayBenefits                      114212.99
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 6855, dtype: object)
(6856, Id                                6857
EmployeeName        LAURENCE BRILLIANT
JobTitle                SAFETY OFFICER
BasePay                      114207.91
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     114207.91
TotalPayBenefits             114207.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6856, dtype: object)
(6857, Id                               6858
EmployeeName          ALEXANDER LENTZ
JobTitle            POLICE OFFICER II
BasePay                      94437.09
OvertimePay                   3464.56
OtherPay                     16299.18
Benefits                          NaN
TotalPay                    114200.83
TotalPayBenefits            114200.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6857, dtype: object)
(6858, Id                                6859
EmployeeName          SCOTT ST HILAIRE
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.96
OvertimePay                        0.0
OtherPay                        8491.3
Benefits                           NaN
TotalPay                     114189.26
TotalPayBenefits             114189.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6858, dtype: object)
(6859, Id                              6860
EmployeeName         PATRICE SCANLAN
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  2124.59
OtherPay                     6007.33
Benefits                         NaN
TotalPay                    114178.0
TotalPayBenefits            114178.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6859, dtype: object)
(6860, Id                               6861
EmployeeName             MARY TIENKEN
JobTitle            PROJECT MANAGER I
BasePay                     113141.68
OvertimePay                       0.0
OtherPay                      1017.79
Benefits                          NaN
TotalPay                    114159.47
TotalPayBenefits            114159.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6860, dtype: object)
(6861, Id                              6862
EmployeeName           VILMA BARRERA
JobTitle            REGISTERED NURSE
BasePay                    102509.34
OvertimePay                  6217.56
OtherPay                     5430.83
Benefits                         NaN
TotalPay                   114157.73
TotalPayBenefits           114157.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6861, dtype: object)
(6862, Id                                                6863
EmployeeName                          CHARLES STELLINI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   29934.85
OtherPay                                       6641.51
Benefits                                           NaN
TotalPay                                     114156.76
TotalPayBenefits                             114156.76
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6862, dtype: object)
(6863, Id                                6864
EmployeeName        JACQUELINE CANDIES
JobTitle              REGISTERED NURSE
BasePay                      101092.47
OvertimePay                    5849.27
OtherPay                       7214.21
Benefits                           NaN
TotalPay                     114155.95
TotalPayBenefits             114155.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6863, dtype: object)
(6864, Id                           6865
EmployeeName         GREGORY KATS
JobTitle               MANAGER II
BasePay                 114153.98
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114153.98
TotalPayBenefits        114153.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6864, dtype: object)
(6865, Id                           6866
EmployeeName         SCOTT WALTON
JobTitle               MANAGER II
BasePay                 114153.32
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                114153.32
TotalPayBenefits        114153.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6865, dtype: object)
(6866, Id                              6867
EmployeeName           PATRICK BRADY
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  4996.95
OtherPay                     3088.63
Benefits                         NaN
TotalPay                   114150.78
TotalPayBenefits           114150.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6866, dtype: object)
(6867, Id                                  6868
EmployeeName                MARK PANDORI
JobTitle            CHIEF MICROBIOLOGIST
BasePay                        109641.76
OvertimePay                          0.0
OtherPay                          4500.0
Benefits                             NaN
TotalPay                       114141.76
TotalPayBenefits               114141.76
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6867, dtype: object)
(6868, Id                                6869
EmployeeName          DEBORAH RUTLEDGE
JobTitle            POLICE OFFICER III
BasePay                      112401.02
OvertimePay                        0.0
OtherPay                       1740.17
Benefits                           NaN
TotalPay                     114141.19
TotalPayBenefits             114141.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6868, dtype: object)
(6869, Id                           6870
EmployeeName          LIANE ANGUS
JobTitle            SPECIAL NURSE
BasePay                  114043.9
OvertimePay                 95.36
OtherPay                      0.0
Benefits                      NaN
TotalPay                114139.26
TotalPayBenefits        114139.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6869, dtype: object)
(6870, Id                               6871
EmployeeName             DANIEL OWENS
JobTitle            POLICE OFFICER II
BasePay                     100180.59
OvertimePay                   6449.92
OtherPay                      7501.14
Benefits                          NaN
TotalPay                    114131.65
TotalPayBenefits            114131.65
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6870, dtype: object)
(6871, Id                                6872
EmployeeName              LUCY CLEMONS
JobTitle            POLICE OFFICER III
BasePay                      112401.02
OvertimePay                        0.0
OtherPay                       1730.47
Benefits                           NaN
TotalPay                     114131.49
TotalPayBenefits             114131.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6871, dtype: object)
(6872, Id                              6873
EmployeeName             CHAD CAMPOS
JobTitle            POLICE OFFICER I
BasePay                    106084.29
OvertimePay                  2240.59
OtherPay                     5773.98
Benefits                         NaN
TotalPay                   114098.86
TotalPayBenefits           114098.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6872, dtype: object)
(6873, Id                           6874
EmployeeName           JOHN GINTY
JobTitle               MANAGER II
BasePay                 111351.75
OvertimePay                   0.0
OtherPay                  2729.17
Benefits                      NaN
TotalPay                114080.92
TotalPayBenefits        114080.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6873, dtype: object)
(6874, Id                                   6875
EmployeeName         ELPIDIO SELETARIA JR
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.39
OvertimePay                       4841.53
OtherPay                         12974.22
Benefits                              NaN
TotalPay                        114070.14
TotalPayBenefits                114070.14
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6874, dtype: object)
(6875, Id                              6876
EmployeeName        MARIBEL PALINSAD
JobTitle            REGISTERED NURSE
BasePay                     95120.01
OvertimePay                  4241.74
OtherPay                    14694.07
Benefits                         NaN
TotalPay                   114055.82
TotalPayBenefits           114055.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6875, dtype: object)
(6876, Id                                6877
EmployeeName               BRIAN NEILL
JobTitle            POLICE OFFICER III
BasePay                      105360.39
OvertimePay                    6912.57
OtherPay                       1779.11
Benefits                           NaN
TotalPay                     114052.07
TotalPayBenefits             114052.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6876, dtype: object)
(6877, Id                           6878
EmployeeName        ROBERT MUNROE
JobTitle            SPECIAL NURSE
BasePay                  91395.96
OvertimePay               6955.69
OtherPay                  15699.5
Benefits                      NaN
TotalPay                114051.15
TotalPayBenefits        114051.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6877, dtype: object)
(6878, Id                            6879
EmployeeName         SARA LERSCHEN
JobTitle            COURT REPORTER
BasePay                   103682.8
OvertimePay                    0.0
OtherPay                  10368.28
Benefits                       NaN
TotalPay                 114051.08
TotalPayBenefits         114051.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6878, dtype: object)
(6879, Id                             6880
EmployeeName        RHONDA AQUILINA
JobTitle             COURT REPORTER
BasePay                    103682.8
OvertimePay                     0.0
OtherPay                   10368.28
Benefits                        NaN
TotalPay                  114051.08
TotalPayBenefits          114051.08
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6879, dtype: object)
(6880, Id                                              6881
EmployeeName                        DEMITRIS JACKSON
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73457.64
OvertimePay                                 38981.53
OtherPay                                     1610.56
Benefits                                         NaN
TotalPay                                   114049.73
TotalPayBenefits                           114049.73
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 6880, dtype: object)
(6881, Id                                                               6882
EmployeeName                                             SUZANNE CONE
JobTitle            SENIOR INDUSTRIAL HYGIENIST DEPT OF PUBLIC HEALTH
BasePay                                                     114030.47
OvertimePay                                                       0.0
OtherPay                                                         17.4
Benefits                                                          NaN
TotalPay                                                    114047.87
TotalPayBenefits                                            114047.87
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6881, dtype: object)
(6882, Id                                               6883
EmployeeName                                 ROY MASH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    8397.0
OtherPay                                      6628.64
Benefits                                          NaN
TotalPay                                    114040.04
TotalPayBenefits                            114040.04
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6882, dtype: object)
(6883, Id                             6884
EmployeeName        ROBERT PETERSON
JobTitle             CHIEF SURVEYOR
BasePay                   112954.02
OvertimePay                     0.0
OtherPay                     1080.0
Benefits                        NaN
TotalPay                  114034.02
TotalPayBenefits          114034.02
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6883, dtype: object)
(6884, Id                                    6885
EmployeeName                ASHLEY JARDINE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          105412.12
OvertimePay                          215.2
OtherPay                           8402.29
Benefits                               NaN
TotalPay                         114029.61
TotalPayBenefits                 114029.61
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6884, dtype: object)
(6885, Id                                6886
EmployeeName            DARREN NOCETTI
JobTitle            POLICE OFFICER III
BasePay                      112416.81
OvertimePay                     772.88
OtherPay                        835.61
Benefits                           NaN
TotalPay                      114025.3
TotalPayBenefits              114025.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6885, dtype: object)
(6886, Id                                 6887
EmployeeName        ARTHUR CALDEIRA III
JobTitle             DEPUTY DIRECTOR II
BasePay                        114024.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       114024.2
TotalPayBenefits               114024.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6886, dtype: object)
(6887, Id                              6888
EmployeeName         MICHAEL ROBISON
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                    75.21
OtherPay                     7877.96
Benefits                         NaN
TotalPay                   114018.37
TotalPayBenefits           114018.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6887, dtype: object)
(6888, Id                               6889
EmployeeName              RONALD HILL
JobTitle            POLICE OFFICER II
BasePay                     110242.91
OvertimePay                    413.86
OtherPay                      3357.86
Benefits                          NaN
TotalPay                    114014.63
TotalPayBenefits            114014.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6888, dtype: object)
(6889, Id                              6890
EmployeeName                YULAN HU
JobTitle            REGISTERED NURSE
BasePay                    103334.27
OvertimePay                  6156.78
OtherPay                      4519.3
Benefits                         NaN
TotalPay                   114010.35
TotalPayBenefits           114010.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6889, dtype: object)
(6890, Id                              6891
EmployeeName           ERIK SCUDMORE
JobTitle            REGISTERED NURSE
BasePay                    107615.34
OvertimePay                  1068.57
OtherPay                     5325.14
Benefits                         NaN
TotalPay                   114009.05
TotalPayBenefits           114009.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6890, dtype: object)
(6891, Id                              6892
EmployeeName           OLGA ABRAMOVA
JobTitle            REGISTERED NURSE
BasePay                    104204.67
OvertimePay                  2072.52
OtherPay                     7727.39
Benefits                         NaN
TotalPay                   114004.58
TotalPayBenefits           114004.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6891, dtype: object)
(6892, Id                             6893
EmployeeName        RONALD LOMBARDI
JobTitle                    PLUMBER
BasePay                    88281.94
OvertimePay                18664.59
OtherPay                    7041.76
Benefits                        NaN
TotalPay                  113988.29
TotalPayBenefits          113988.29
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6892, dtype: object)
(6893, Id                                             6894
EmployeeName                            WEIZHONG LI
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    113985.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   113985.0
TotalPayBenefits                           113985.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6893, dtype: object)
(6894, Id                                                               6895
EmployeeName                                              GALEN DUTCH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     106576.31
OvertimePay                                                    749.19
OtherPay                                                      6659.48
Benefits                                                          NaN
TotalPay                                                    113984.98
TotalPayBenefits                                            113984.98
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6894, dtype: object)
(6895, Id                              6896
EmployeeName           RAFAEL ROMERO
JobTitle            TRANSIT OPERATOR
BasePay                     61438.78
OvertimePay                 48487.75
OtherPay                     4047.12
Benefits                         NaN
TotalPay                   113973.65
TotalPayBenefits           113973.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6895, dtype: object)
(6896, Id                            6897
EmployeeName           PAULNITE IM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               21077.07
OtherPay                   6050.81
Benefits                       NaN
TotalPay                 113967.88
TotalPayBenefits         113967.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6896, dtype: object)
(6897, Id                                  6898
EmployeeName                GREG STEVENS
JobTitle            IS ENGINEER - SENIOR
BasePay                         105377.6
OvertimePay                          0.0
OtherPay                         8580.14
Benefits                             NaN
TotalPay                       113957.74
TotalPayBenefits               113957.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 6897, dtype: object)
(6898, Id                            6899
EmployeeName        ROSANA SORIANO
JobTitle                MANAGER II
BasePay                  113956.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 113956.51
TotalPayBenefits         113956.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6898, dtype: object)
(6899, Id                              6900
EmployeeName          DEILAH ANGELES
JobTitle            REGISTERED NURSE
BasePay                     113687.5
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    113937.5
TotalPayBenefits            113937.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6899, dtype: object)
(6900, Id                              6901
EmployeeName         MALACHY OSUAGWU
JobTitle            REGISTERED NURSE
BasePay                     91956.87
OvertimePay                   6810.3
OtherPay                     15169.1
Benefits                         NaN
TotalPay                   113936.27
TotalPayBenefits           113936.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6900, dtype: object)
(6901, Id                               6902
EmployeeName         MICHELE PRIMIANO
JobTitle            POLICE OFFICER II
BasePay                     108643.28
OvertimePay                   2563.17
OtherPay                       2691.9
Benefits                          NaN
TotalPay                    113898.35
TotalPayBenefits            113898.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6901, dtype: object)
(6902, Id                              6903
EmployeeName           DANA HENNESSY
JobTitle            REGISTERED NURSE
BasePay                     87919.91
OvertimePay                 17332.26
OtherPay                     8636.32
Benefits                         NaN
TotalPay                   113888.49
TotalPayBenefits           113888.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6902, dtype: object)
(6903, Id                                                6904
EmployeeName                              BRENDAN DALY
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   26431.92
OtherPay                                       9873.04
Benefits                                           NaN
TotalPay                                     113885.37
TotalPayBenefits                             113885.37
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6903, dtype: object)
(6904, Id                              6905
EmployeeName        CATHERINE GROODY
JobTitle              DEPUTY SHERIFF
BasePay                     86840.06
OvertimePay                 20106.58
OtherPay                     6938.06
Benefits                         NaN
TotalPay                    113884.7
TotalPayBenefits            113884.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6904, dtype: object)
(6905, Id                               6906
EmployeeName           RONALD HOLLINS
JobTitle            POLICE OFFICER II
BasePay                     110223.04
OvertimePay                       0.0
OtherPay                      3661.65
Benefits                          NaN
TotalPay                    113884.69
TotalPayBenefits            113884.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6905, dtype: object)
(6906, Id                             6907
EmployeeName        VICTOR GIANNINI
JobTitle                    PLUMBER
BasePay                    91369.95
OvertimePay                11876.53
OtherPay                   10635.12
Benefits                        NaN
TotalPay                   113881.6
TotalPayBenefits           113881.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6906, dtype: object)
(6907, Id                           6908
EmployeeName          EUGENE LING
JobTitle                 ENGINEER
BasePay                  110438.0
OvertimePay                   0.0
OtherPay                  3440.58
Benefits                      NaN
TotalPay                113878.58
TotalPayBenefits        113878.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6907, dtype: object)
(6908, Id                                6909
EmployeeName            KEVIN O'ROURKE
JobTitle            POLICE OFFICER III
BasePay                       112294.8
OvertimePay                       3.45
OtherPay                       1576.98
Benefits                           NaN
TotalPay                     113875.23
TotalPayBenefits             113875.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6908, dtype: object)
(6909, Id                                           6910
EmployeeName                     LEWIS TOWER AMES
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                 111891.08
OvertimePay                                   0.0
OtherPay                                  1937.64
Benefits                                      NaN
TotalPay                                113828.72
TotalPayBenefits                        113828.72
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6909, dtype: object)
(6910, Id                               6911
EmployeeName               KENNY NGAN
JobTitle            PROJECT MANAGER I
BasePay                     111890.97
OvertimePay                       0.0
OtherPay                      1937.64
Benefits                          NaN
TotalPay                    113828.61
TotalPayBenefits            113828.61
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6910, dtype: object)
(6911, Id                                    6912
EmployeeName                    SUM CHEUNG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                       22989.85
OtherPay                            174.65
Benefits                               NaN
TotalPay                         113828.51
TotalPayBenefits                 113828.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6911, dtype: object)
(6912, Id                              6913
EmployeeName          CESAR CABATBAT
JobTitle            TRANSIT OPERATOR
BasePay                     67108.98
OvertimePay                 41439.67
OtherPay                     5276.92
Benefits                         NaN
TotalPay                   113825.57
TotalPayBenefits           113825.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6912, dtype: object)
(6913, Id                              6914
EmployeeName           EDITH BARRERA
JobTitle            REGISTERED NURSE
BasePay                    102528.41
OvertimePay                  5120.52
OtherPay                     6169.11
Benefits                         NaN
TotalPay                   113818.04
TotalPayBenefits           113818.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6913, dtype: object)
(6914, Id                               6915
EmployeeName                 ERIC LAU
JobTitle            POLICE OFFICER II
BasePay                      95635.32
OvertimePay                   8483.85
OtherPay                      9698.82
Benefits                          NaN
TotalPay                    113817.99
TotalPayBenefits            113817.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6914, dtype: object)
(6915, Id                               6916
EmployeeName              LAURA COLIN
JobTitle            POLICE OFFICER II
BasePay                     110222.78
OvertimePay                     23.66
OtherPay                      3570.71
Benefits                          NaN
TotalPay                    113817.15
TotalPayBenefits            113817.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6915, dtype: object)
(6916, Id                                                6917
EmployeeName                           ROLANDO SOLOMON
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                    26466.7
OtherPay                                        9778.4
Benefits                                           NaN
TotalPay                                      113814.1
TotalPayBenefits                              113814.1
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6916, dtype: object)
(6917, Id                              6918
EmployeeName         ERIC BORGHESANI
JobTitle            POLICE OFFICER I
BasePay                     99771.85
OvertimePay                  3654.33
OtherPay                    10387.46
Benefits                         NaN
TotalPay                   113813.64
TotalPayBenefits           113813.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6917, dtype: object)
(6918, Id                              6919
EmployeeName        KATHLEEN MCCLURE
JobTitle            REGISTERED NURSE
BasePay                     98029.51
OvertimePay                  2862.39
OtherPay                    12920.73
Benefits                         NaN
TotalPay                   113812.63
TotalPayBenefits           113812.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6918, dtype: object)
(6919, Id                                    6920
EmployeeName                  SCOTT MCFALL
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106441.69
OvertimePay                         226.45
OtherPay                           7143.24
Benefits                               NaN
TotalPay                         113811.38
TotalPayBenefits                 113811.38
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6919, dtype: object)
(6920, Id                                    6921
EmployeeName              BARBARA WILLIAMS
JobTitle            PSYCHIATRIC TECHNICIAN
BasePay                           28079.76
OvertimePay                          776.7
OtherPay                          84954.85
Benefits                               NaN
TotalPay                         113811.31
TotalPayBenefits                 113811.31
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6920, dtype: object)
(6921, Id                              6922
EmployeeName        STEPHEN LAPLANTE
JobTitle                  MANAGER II
BasePay                    111623.48
OvertimePay                      0.0
OtherPay                     2187.73
Benefits                         NaN
TotalPay                   113811.21
TotalPayBenefits           113811.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6921, dtype: object)
(6922, Id                                               6923
EmployeeName                               VINCENT NG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      99384.12
OvertimePay                                   5062.46
OtherPay                                      9353.75
Benefits                                          NaN
TotalPay                                    113800.33
TotalPayBenefits                            113800.33
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6922, dtype: object)
(6923, Id                              6924
EmployeeName        NADEREH FANAEIAN
JobTitle               SPECIAL NURSE
BasePay                    100853.32
OvertimePay                  3949.15
OtherPay                     8996.99
Benefits                         NaN
TotalPay                   113799.46
TotalPayBenefits           113799.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6923, dtype: object)
(6924, Id                                               6925
EmployeeName                             CHI-ICH TRAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      85371.47
OvertimePay                                  24468.21
OtherPay                                      3959.37
Benefits                                          NaN
TotalPay                                    113799.05
TotalPayBenefits                            113799.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6924, dtype: object)
(6925, Id                              6926
EmployeeName           MICHAEL HORAN
JobTitle            POLICE OFFICER I
BasePay                    106026.95
OvertimePay                   4293.0
OtherPay                     3477.08
Benefits                         NaN
TotalPay                   113797.03
TotalPayBenefits           113797.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6925, dtype: object)
(6926, Id                               6927
EmployeeName          AMANDA KABANUCK
JobTitle            POLICE OFFICER II
BasePay                       99053.0
OvertimePay                   2983.52
OtherPay                     11757.06
Benefits                          NaN
TotalPay                    113793.58
TotalPayBenefits            113793.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6926, dtype: object)
(6927, Id                                            6928
EmployeeName                     DEBORAH GOLDSTEIN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.59
OvertimePay                                8994.99
OtherPay                                  10501.65
Benefits                                       NaN
TotalPay                                 113793.23
TotalPayBenefits                         113793.23
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6927, dtype: object)
(6928, Id                           6929
EmployeeName          PAUL FOSTER
JobTitle               MANAGER II
BasePay                 113788.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113788.05
TotalPayBenefits        113788.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6928, dtype: object)
(6929, Id                                6930
EmployeeName           PATRICIA BURLEY
JobTitle            POLICE OFFICER III
BasePay                      112416.92
OvertimePay                     552.01
OtherPay                        819.06
Benefits                           NaN
TotalPay                     113787.99
TotalPayBenefits             113787.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6929, dtype: object)
(6930, Id                                6931
EmployeeName           LOUIS BARBERINI
JobTitle            POLICE OFFICER III
BasePay                      112416.79
OvertimePay                     540.48
OtherPay                        826.01
Benefits                           NaN
TotalPay                     113783.28
TotalPayBenefits             113783.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6930, dtype: object)
(6931, Id                            6932
EmployeeName           LAVENA WARD
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                   5930.93
Benefits                       NaN
TotalPay                 113779.33
TotalPayBenefits         113779.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6931, dtype: object)
(6932, Id                            6933
EmployeeName         BRENDA FIELDS
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                    5930.9
Benefits                       NaN
TotalPay                  113779.3
TotalPayBenefits          113779.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6932, dtype: object)
(6933, Id                            6934
EmployeeName         KATY BERSAMIN
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                    5930.9
Benefits                       NaN
TotalPay                  113779.3
TotalPayBenefits          113779.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6933, dtype: object)
(6934, Id                            6935
EmployeeName           VICKI GROSS
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                    5930.9
Benefits                       NaN
TotalPay                  113779.3
TotalPayBenefits          113779.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6934, dtype: object)
(6935, Id                            6936
EmployeeName          KENT GUBBINE
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                    5930.9
Benefits                       NaN
TotalPay                  113779.3
TotalPayBenefits          113779.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6935, dtype: object)
(6936, Id                            6937
EmployeeName        ANTHONY VAUGHN
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                    5930.9
Benefits                       NaN
TotalPay                  113779.3
TotalPayBenefits          113779.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6936, dtype: object)
(6937, Id                                               6938
EmployeeName                           DONALD RICHMAN
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      94985.69
OvertimePay                                   11266.2
OtherPay                                      7524.15
Benefits                                          NaN
TotalPay                                    113776.04
TotalPayBenefits                            113776.04
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6937, dtype: object)
(6938, Id                             6939
EmployeeName        MICHAEL HERRERA
JobTitle             DEPUTY SHERIFF
BasePay                    86840.02
OvertimePay                19156.71
OtherPay                    7757.05
Benefits                        NaN
TotalPay                  113753.78
TotalPayBenefits          113753.78
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6938, dtype: object)
(6939, Id                                   6940
EmployeeName                  SPENCER LEE
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.46
OvertimePay                           0.0
OtherPay                          6626.87
Benefits                              NaN
TotalPay                        113744.33
TotalPayBenefits                113744.33
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6939, dtype: object)
(6940, Id                                                     6941
EmployeeName                                CHARLES WEGERLE
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            95067.16
OvertimePay                                         9549.31
OtherPay                                            9113.78
Benefits                                                NaN
TotalPay                                          113730.25
TotalPayBenefits                                  113730.25
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6940, dtype: object)
(6941, Id                                   6942
EmployeeName              GLENN DE CASTRO
JobTitle            IS ENGINEER - JOURNEY
BasePay                         106704.72
OvertimePay                           0.0
OtherPay                          7024.68
Benefits                              NaN
TotalPay                         113729.4
TotalPayBenefits                 113729.4
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6941, dtype: object)
(6942, Id                                            6943
EmployeeName                       RAYMOND BARRETT
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  105300.88
OvertimePay                                    0.0
OtherPay                                   8424.41
Benefits                                       NaN
TotalPay                                 113725.29
TotalPayBenefits                         113725.29
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 6942, dtype: object)
(6943, Id                               6944
EmployeeName          DAVID GREENAWAY
JobTitle            PROJECT MANAGER I
BasePay                      111783.5
OvertimePay                       0.0
OtherPay                      1937.64
Benefits                          NaN
TotalPay                    113721.14
TotalPayBenefits            113721.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6943, dtype: object)
(6944, Id                                                     6945
EmployeeName                                    JOSE CUEVAS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77796.21
OvertimePay                                        28715.32
OtherPay                                            7200.63
Benefits                                                NaN
TotalPay                                          113712.16
TotalPayBenefits                                  113712.16
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6944, dtype: object)
(6945, Id                              6946
EmployeeName         HERBERT MARIANO
JobTitle            REGISTERED NURSE
BasePay                     98520.23
OvertimePay                  4391.64
OtherPay                     10790.6
Benefits                         NaN
TotalPay                   113702.47
TotalPayBenefits           113702.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6945, dtype: object)
(6946, Id                                6947
EmployeeName            MUKESH CHANDRA
JobTitle            POLICE OFFICER III
BasePay                        71040.2
OvertimePay                    28257.3
OtherPay                      14402.23
Benefits                           NaN
TotalPay                     113699.73
TotalPayBenefits             113699.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6946, dtype: object)
(6947, Id                           6948
EmployeeName        NANCY LEDESMA
JobTitle            SPECIAL NURSE
BasePay                  96401.83
OvertimePay                   0.0
OtherPay                 17296.88
Benefits                      NaN
TotalPay                113698.71
TotalPayBenefits        113698.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6947, dtype: object)
(6948, Id                              6949
EmployeeName         AGNES ESTILLORE
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                  3302.77
OtherPay                     1350.93
Benefits                         NaN
TotalPay                    113697.7
TotalPayBenefits            113697.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6948, dtype: object)
(6949, Id                            6950
EmployeeName          PETRA CISSEL
JobTitle            DEPUTY SHERIFF
BasePay                   81915.22
OvertimePay               22237.94
OtherPay                   9511.94
Benefits                       NaN
TotalPay                  113665.1
TotalPayBenefits          113665.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6949, dtype: object)
(6950, Id                                                 6951
EmployeeName                               GEORGE WHITE
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       113663.42
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      113663.42
TotalPayBenefits                              113663.42
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 6950, dtype: object)
(6951, Id                                                         6952
EmployeeName                               VLADIMIR YAGOLNITSER
JobTitle            ASSISTANT ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                 92552.8
OvertimePay                                             4874.34
OtherPay                                               16223.74
Benefits                                                    NaN
TotalPay                                              113650.88
TotalPayBenefits                                      113650.88
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 6951, dtype: object)
(6952, Id                                   6953
EmployeeName                PAUL MCGREGOR
JobTitle            SUPERVISING BIOLOGIST
BasePay                         106492.11
OvertimePay                           0.0
OtherPay                          7154.68
Benefits                              NaN
TotalPay                        113646.79
TotalPayBenefits                113646.79
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6952, dtype: object)
(6953, Id                           6954
EmployeeName         DENISE JONES
JobTitle               MANAGER II
BasePay                 113640.93
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113640.93
TotalPayBenefits        113640.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6953, dtype: object)
(6954, Id                                                6955
EmployeeName                             DAVID AMBROSE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       95237.05
OvertimePay                                    2935.43
OtherPay                                      15463.63
Benefits                                           NaN
TotalPay                                     113636.11
TotalPayBenefits                             113636.11
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6954, dtype: object)
(6955, Id                                6956
EmployeeName            TRACY GASANYAN
JobTitle            POLICE OFFICER III
BasePay                      112401.09
OvertimePay                     413.81
OtherPay                        819.53
Benefits                           NaN
TotalPay                     113634.43
TotalPayBenefits             113634.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6955, dtype: object)
(6956, Id                              6957
EmployeeName           ESTEBAN PEREZ
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  4418.91
OtherPay                     3155.37
Benefits                         NaN
TotalPay                   113620.35
TotalPayBenefits           113620.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6956, dtype: object)
(6957, Id                                                6958
EmployeeName                           BRUCE FAIRBAIRN
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       89505.55
OvertimePay                                        0.0
OtherPay                                      24103.64
Benefits                                           NaN
TotalPay                                     113609.19
TotalPayBenefits                             113609.19
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 6957, dtype: object)
(6958, Id                                        6959
EmployeeName                          LINDA WU
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               90640.94
OvertimePay                            14056.0
OtherPay                               8911.73
Benefits                                   NaN
TotalPay                             113608.67
TotalPayBenefits                     113608.67
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 6958, dtype: object)
(6959, Id                              6960
EmployeeName            SEAN ARCHINI
JobTitle            POLICE OFFICER I
BasePay                    106061.16
OvertimePay                  5752.54
OtherPay                     1788.61
Benefits                         NaN
TotalPay                   113602.31
TotalPayBenefits           113602.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6959, dtype: object)
(6960, Id                                                           6961
EmployeeName                                         JOHN SADORRA
JobTitle            MANAGER VII - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  84698.55
OvertimePay                                                   0.0
OtherPay                                                 28896.08
Benefits                                                      NaN
TotalPay                                                113594.63
TotalPayBenefits                                        113594.63
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 6960, dtype: object)
(6961, Id                                                   6962
EmployeeName                               DAVID COPELAND
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         113594.22
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        113594.22
TotalPayBenefits                                113594.22
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 6961, dtype: object)
(6962, Id                                                               6963
EmployeeName                                            RYAN MACAULAY
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      89848.27
OvertimePay                                                   15850.8
OtherPay                                                      7878.81
Benefits                                                          NaN
TotalPay                                                    113577.88
TotalPayBenefits                                            113577.88
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 6962, dtype: object)
(6963, Id                                     6964
EmployeeName                MICHAEL DILALLO
JobTitle            SENIOR RADIO TECHNICIAN
BasePay                            111910.2
OvertimePay                           917.6
OtherPay                              749.0
Benefits                                NaN
TotalPay                           113576.8
TotalPayBenefits                   113576.8
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 6963, dtype: object)
(6964, Id                               6965
EmployeeName        ARTHUR MADRID III
JobTitle             POLICE OFFICER I
BasePay                     106061.36
OvertimePay                   1381.94
OtherPay                      6127.73
Benefits                          NaN
TotalPay                    113571.03
TotalPayBenefits            113571.03
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6964, dtype: object)
(6965, Id                                           6966
EmployeeName                         JOSEPH SMITH
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90386.31
OvertimePay                              18443.99
OtherPay                                   4737.4
Benefits                                      NaN
TotalPay                                 113567.7
TotalPayBenefits                         113567.7
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6965, dtype: object)
(6966, Id                             6967
EmployeeName          DANIEL MALLEN
JobTitle            UTILITY PLUMBER
BasePay                     90098.4
OvertimePay                12181.85
OtherPay                    11286.7
Benefits                        NaN
TotalPay                  113566.95
TotalPayBenefits          113566.95
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 6966, dtype: object)
(6967, Id                              6968
EmployeeName           KERRY JOHNSON
JobTitle            TRAIN CONTROLLER
BasePay                     93969.31
OvertimePay                 12650.17
OtherPay                     6929.31
Benefits                         NaN
TotalPay                   113548.79
TotalPayBenefits           113548.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6967, dtype: object)
(6968, Id                                6969
EmployeeName               DANIEL PINO
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.02
OvertimePay                        0.0
OtherPay                        1115.0
Benefits                           NaN
TotalPay                     113546.02
TotalPayBenefits             113546.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6968, dtype: object)
(6969, Id                                 6970
EmployeeName        CHRISTOPHER GALLION
JobTitle                UTILITY PLUMBER
BasePay                        89281.03
OvertimePay                    15360.68
OtherPay                        8898.45
Benefits                            NaN
TotalPay                      113540.16
TotalPayBenefits              113540.16
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6969, dtype: object)
(6970, Id                                6971
EmployeeName         JESSIE WASHINGTON
JobTitle            POLICE OFFICER III
BasePay                      112416.85
OvertimePay                     298.29
OtherPay                        819.18
Benefits                           NaN
TotalPay                     113534.32
TotalPayBenefits             113534.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6970, dtype: object)
(6971, Id                                6972
EmployeeName             RONALD GEHRKE
JobTitle            POLICE OFFICER III
BasePay                      112421.46
OvertimePay                      10.34
OtherPay                       1102.31
Benefits                           NaN
TotalPay                     113534.11
TotalPayBenefits             113534.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6971, dtype: object)
(6972, Id                                   6973
EmployeeName                DANILO BANTAY
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.42
OvertimePay                           0.0
OtherPay                          6413.83
Benefits                              NaN
TotalPay                        113531.25
TotalPayBenefits                113531.25
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6972, dtype: object)
(6973, Id                                   6974
EmployeeName                 BEN KAWAMURA
JobTitle            SUPERVISING PURCHASER
BasePay                          113452.0
OvertimePay                           0.0
OtherPay                            78.72
Benefits                              NaN
TotalPay                        113530.72
TotalPayBenefits                113530.72
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6973, dtype: object)
(6974, Id                           6975
EmployeeName        MICHAEL MULRY
JobTitle                  PLUMBER
BasePay                  90280.06
OvertimePay              13010.93
OtherPay                 10232.45
Benefits                      NaN
TotalPay                113523.44
TotalPayBenefits        113523.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6974, dtype: object)
(6975, Id                            6976
EmployeeName          GERALD SMITH
JobTitle            CRIMINALIST II
BasePay                  106489.21
OvertimePay                7030.66
OtherPay                       0.0
Benefits                       NaN
TotalPay                 113519.87
TotalPayBenefits         113519.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6975, dtype: object)
(6976, Id                              6977
EmployeeName          CARLTON BLOUNT
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  2102.44
OtherPay                     5368.79
Benefits                         NaN
TotalPay                    113517.3
TotalPayBenefits            113517.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6976, dtype: object)
(6977, Id                                6978
EmployeeName          ELIZABETH MINGLE
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.01
OvertimePay                        0.0
OtherPay                        1085.0
Benefits                           NaN
TotalPay                     113516.01
TotalPayBenefits             113516.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6977, dtype: object)
(6978, Id                                6979
EmployeeName          RONNIE DONALDSON
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   20280.63
OtherPay                        5164.9
Benefits                           NaN
TotalPay                     113507.53
TotalPayBenefits             113507.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6978, dtype: object)
(6979, Id                                         6980
EmployeeName                           YIM CHAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               106862.83
OvertimePay                                 0.0
OtherPay                                6643.21
Benefits                                    NaN
TotalPay                              113506.04
TotalPayBenefits                      113506.04
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 6979, dtype: object)
(6980, Id                              6981
EmployeeName               SU MONROE
JobTitle            REGISTERED NURSE
BasePay                    100878.92
OvertimePay                  7005.96
OtherPay                     5610.68
Benefits                         NaN
TotalPay                   113495.56
TotalPayBenefits           113495.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6980, dtype: object)
(6981, Id                                6982
EmployeeName         CHRISTA GALLAGHER
JobTitle            NURSE PRACTITIONER
BasePay                      111972.46
OvertimePay                        0.0
OtherPay                        1500.0
Benefits                           NaN
TotalPay                     113472.46
TotalPayBenefits             113472.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6981, dtype: object)
(6982, Id                                6983
EmployeeName              DEBBIE ADAMS
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                     248.29
OtherPay                        819.53
Benefits                           NaN
TotalPay                      113468.9
TotalPayBenefits              113468.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6982, dtype: object)
(6983, Id                                6984
EmployeeName            CLAIRE SIMEONE
JobTitle            NURSE PRACTITIONER
BasePay                      113216.38
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     113466.38
TotalPayBenefits             113466.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6983, dtype: object)
(6984, Id                                    6985
EmployeeName        PETER-KWADWO ASARE III
JobTitle                  POLICE OFFICER I
BasePay                          103829.31
OvertimePay                        5103.72
OtherPay                            4527.2
Benefits                               NaN
TotalPay                         113460.23
TotalPayBenefits                 113460.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 6984, dtype: object)
(6985, Id                              6986
EmployeeName            DIANNA YANEZ
JobTitle            REGISTERED NURSE
BasePay                    100303.93
OvertimePay                  5315.93
OtherPay                     7833.49
Benefits                         NaN
TotalPay                   113453.35
TotalPayBenefits           113453.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6985, dtype: object)
(6986, Id                                   6987
EmployeeName                 JEANNIE CHIN
JobTitle            SUPERVISING PURCHASER
BasePay                         113452.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        113452.01
TotalPayBenefits                113452.01
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 6986, dtype: object)
(6987, Id                           6988
EmployeeName        KENNETH JONES
JobTitle                MANAGER I
BasePay                 113443.72
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113443.72
TotalPayBenefits        113443.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6987, dtype: object)
(6988, Id                                           6989
EmployeeName                       GLENN EAGLESON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                 113434.77
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                113434.77
TotalPayBenefits                        113434.77
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 6988, dtype: object)
(6989, Id                            6990
EmployeeName        NATHAN PURKISS
JobTitle                MANAGER II
BasePay                  113430.41
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 113430.41
TotalPayBenefits         113430.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6989, dtype: object)
(6990, Id                           6991
EmployeeName          KEANWAY KYI
JobTitle                 ENGINEER
BasePay                  112704.0
OvertimePay                   0.0
OtherPay                   712.45
Benefits                      NaN
TotalPay                113416.45
TotalPayBenefits        113416.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 6990, dtype: object)
(6991, Id                               6992
EmployeeName              ERIN MILLER
JobTitle            PROJECT MANAGER I
BasePay                     111475.46
OvertimePay                       0.0
OtherPay                      1937.64
Benefits                          NaN
TotalPay                     113413.1
TotalPayBenefits             113413.1
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 6991, dtype: object)
(6992, Id                              6993
EmployeeName          MICHAEL WRIGHT
JobTitle            POLICE OFFICER I
BasePay                    106566.58
OvertimePay                  2484.63
OtherPay                     4360.24
Benefits                         NaN
TotalPay                   113411.45
TotalPayBenefits           113411.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6992, dtype: object)
(6993, Id                                             6994
EmployeeName                          ERIKA LOVEJOY
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   112431.11
OvertimePay                                     0.0
OtherPay                                     969.82
Benefits                                        NaN
TotalPay                                  113400.93
TotalPayBenefits                          113400.93
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 6993, dtype: object)
(6994, Id                            6995
EmployeeName        SYLVIA SEGOVIA
JobTitle                MANAGER II
BasePay                  113394.99
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 113394.99
TotalPayBenefits         113394.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 6994, dtype: object)
(6995, Id                              6996
EmployeeName            VILMA FLORES
JobTitle            REGISTERED NURSE
BasePay                    107135.08
OvertimePay                   1766.6
OtherPay                     4492.83
Benefits                         NaN
TotalPay                   113394.51
TotalPayBenefits           113394.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 6995, dtype: object)
(6996, Id                                6997
EmployeeName          EDOUARD MARCHAND
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                        0.0
OtherPay                        992.22
Benefits                           NaN
TotalPay                     113393.28
TotalPayBenefits             113393.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 6996, dtype: object)
(6997, Id                                 6998
EmployeeName          REINERES SUSBILLA
JobTitle            PUBLIC HEALTH NURSE
BasePay                       107870.99
OvertimePay                         0.0
OtherPay                        5519.33
Benefits                            NaN
TotalPay                      113390.32
TotalPayBenefits              113390.32
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 6997, dtype: object)
(6998, Id                                               6999
EmployeeName                               ROHAN LANE
JobTitle            MEDIA/SECURITY SYSTEMS SUPERVISOR
BasePay                                      99094.85
OvertimePay                                       0.0
OtherPay                                     14294.43
Benefits                                          NaN
TotalPay                                    113389.28
TotalPayBenefits                            113389.28
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 6998, dtype: object)
(6999, Id                                                     7000
EmployeeName                                 MATTHEW IRVINE
JobTitle            SENIOR DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                           101333.01
OvertimePay                                         5567.47
OtherPay                                            6484.97
Benefits                                                NaN
TotalPay                                          113385.45
TotalPayBenefits                                  113385.45
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 6999, dtype: object)
(7000, Id                           7001
EmployeeName        DEBORAH BAKER
JobTitle              MANAGER III
BasePay                 109549.65
OvertimePay                   0.0
OtherPay                  3806.29
Benefits                      NaN
TotalPay                113355.94
TotalPayBenefits        113355.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7000, dtype: object)
(7001, Id                              7002
EmployeeName          SHAMIDEH ENGEL
JobTitle            REGISTERED NURSE
BasePay                     97760.26
OvertimePay                  5045.41
OtherPay                    10542.85
Benefits                         NaN
TotalPay                   113348.52
TotalPayBenefits           113348.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7001, dtype: object)
(7002, Id                              7003
EmployeeName           SARAH WHEELER
JobTitle            REGISTERED NURSE
BasePay                     94941.56
OvertimePay                   7322.4
OtherPay                    11084.05
Benefits                         NaN
TotalPay                   113348.01
TotalPayBenefits           113348.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7002, dtype: object)
(7003, Id                              7004
EmployeeName        NICHOLAS APODACA
JobTitle            POLICE OFFICER I
BasePay                     98602.82
OvertimePay                  4110.88
OtherPay                    10632.65
Benefits                         NaN
TotalPay                   113346.35
TotalPayBenefits           113346.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7003, dtype: object)
(7004, Id                              7005
EmployeeName         CLIFTON FOGARTY
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  1633.63
OtherPay                     5680.43
Benefits                         NaN
TotalPay                   113341.02
TotalPayBenefits           113341.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7004, dtype: object)
(7005, Id                              7006
EmployeeName        BRANDON THOMPSON
JobTitle            POLICE OFFICER I
BasePay                     97831.29
OvertimePay                  7812.86
OtherPay                     7689.77
Benefits                         NaN
TotalPay                   113333.92
TotalPayBenefits           113333.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7005, dtype: object)
(7006, Id                                       7007
EmployeeName                 ARTRICIA JENKINS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             113324.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            113324.92
TotalPayBenefits                    113324.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7006, dtype: object)
(7007, Id                           7008
EmployeeName           BRIAN KANE
JobTitle              FIREFIGHTER
BasePay                 105934.67
OvertimePay                   0.0
OtherPay                  7377.86
Benefits                      NaN
TotalPay                113312.53
TotalPayBenefits        113312.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7007, dtype: object)
(7008, Id                                                              7009
EmployeeName                                              JAMES WEST
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                    105404.09
OvertimePay                                                      0.0
OtherPay                                                      7905.4
Benefits                                                         NaN
TotalPay                                                   113309.49
TotalPayBenefits                                           113309.49
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 7008, dtype: object)
(7009, Id                                                     7010
EmployeeName                                  ELAINE ANIANA
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77723.05
OvertimePay                                        26735.52
OtherPay                                            8849.41
Benefits                                                NaN
TotalPay                                          113307.98
TotalPayBenefits                                  113307.98
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7009, dtype: object)
(7010, Id                                                     7011
EmployeeName                                 AUDREY HILLMAN
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87481.92
OvertimePay                                        13848.46
OtherPay                                            11977.3
Benefits                                                NaN
TotalPay                                          113307.68
TotalPayBenefits                                  113307.68
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7010, dtype: object)
(7011, Id                                                              7012
EmployeeName                                             KEVIN KELLY
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                     105404.0
OvertimePay                                                      0.0
OtherPay                                                      7900.2
Benefits                                                         NaN
TotalPay                                                    113304.2
TotalPayBenefits                                            113304.2
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 7011, dtype: object)
(7012, Id                                                     7013
EmployeeName                                   ANDREW CLARK
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           101236.82
OvertimePay                                         4466.95
OtherPay                                            7599.05
Benefits                                                NaN
TotalPay                                          113302.82
TotalPayBenefits                                  113302.82
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7012, dtype: object)
(7013, Id                              7014
EmployeeName           RITA RESTREPO
JobTitle            REGISTERED NURSE
BasePay                     104395.5
OvertimePay                  2271.06
OtherPay                     6634.59
Benefits                         NaN
TotalPay                   113301.15
TotalPayBenefits           113301.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7013, dtype: object)
(7014, Id                             7015
EmployeeName        DAVID ALUMBAUGH
JobTitle                 PLANNER IV
BasePay                   113299.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  113299.01
TotalPayBenefits          113299.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7014, dtype: object)
(7015, Id                           7016
EmployeeName         KENT EICKMAN
JobTitle                 ENGINEER
BasePay                  110190.8
OvertimePay                   0.0
OtherPay                  3101.79
Benefits                      NaN
TotalPay                113292.59
TotalPayBenefits        113292.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7015, dtype: object)
(7016, Id                           7017
EmployeeName         RYAN JACKSON
JobTitle              ELECTRICIAN
BasePay                   85365.9
OvertimePay              26545.23
OtherPay                   1375.4
Benefits                      NaN
TotalPay                113286.53
TotalPayBenefits        113286.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7016, dtype: object)
(7017, Id                                                              7018
EmployeeName                                          MICHAEL BARROW
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERINTENDENT
BasePay                                                    105404.07
OvertimePay                                                      0.0
OtherPay                                                     7874.97
Benefits                                                         NaN
TotalPay                                                   113279.04
TotalPayBenefits                                           113279.04
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 7017, dtype: object)
(7018, Id                              7019
EmployeeName            JEFFREY CHOW
JobTitle            POLICE OFFICER I
BasePay                     99941.93
OvertimePay                  6708.06
OtherPay                     6604.51
Benefits                         NaN
TotalPay                    113254.5
TotalPayBenefits            113254.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7018, dtype: object)
(7019, Id                                7020
EmployeeName            ROBERT HERROLD
JobTitle            POLICE OFFICER III
BasePay                       112416.8
OvertimePay                        0.0
OtherPay                        834.48
Benefits                           NaN
TotalPay                     113251.28
TotalPayBenefits             113251.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7019, dtype: object)
(7020, Id                                7021
EmployeeName              JEROME GRADY
JobTitle            POLICE OFFICER III
BasePay                      112416.82
OvertimePay                       3.45
OtherPay                        819.03
Benefits                           NaN
TotalPay                      113239.3
TotalPayBenefits              113239.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7020, dtype: object)
(7021, Id                                 7022
EmployeeName        TIMOTHY FARRELLY-II
JobTitle             POLICE OFFICER III
BasePay                        112416.8
OvertimePay                         0.0
OtherPay                         819.73
Benefits                            NaN
TotalPay                      113236.53
TotalPayBenefits              113236.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7021, dtype: object)
(7022, Id                                7023
EmployeeName          KATHLEEN MULLINS
JobTitle            POLICE OFFICER III
BasePay                      112416.93
OvertimePay                        0.0
OtherPay                         819.2
Benefits                           NaN
TotalPay                     113236.13
TotalPayBenefits             113236.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7022, dtype: object)
(7023, Id                            7024
EmployeeName        JEAN CARAMATTI
JobTitle                 MANAGER I
BasePay                  113233.26
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 113233.26
TotalPayBenefits         113233.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7023, dtype: object)
(7024, Id                                      7025
EmployeeName                     DAVID GOGNA
JobTitle            SENIOR HOUSING INSPECTOR
BasePay                             111008.1
OvertimePay                              0.0
OtherPay                             2221.14
Benefits                                 NaN
TotalPay                           113229.24
TotalPayBenefits                   113229.24
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7024, dtype: object)
(7025, Id                                      7026
EmployeeName                PATRICK MCKENZIE
JobTitle            SENIOR HOUSING INSPECTOR
BasePay                            111008.08
OvertimePay                              0.0
OtherPay                             2221.13
Benefits                                 NaN
TotalPay                           113229.21
TotalPayBenefits                   113229.21
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7025, dtype: object)
(7026, Id                           7027
EmployeeName           CINDY WARD
JobTitle               MANAGER II
BasePay                 113226.46
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113226.46
TotalPayBenefits        113226.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7026, dtype: object)
(7027, Id                                7028
EmployeeName        CATHERINE SCHIEFER
JobTitle            POLICE OFFICER III
BasePay                      112401.08
OvertimePay                        0.0
OtherPay                         819.5
Benefits                           NaN
TotalPay                     113220.58
TotalPayBenefits             113220.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7027, dtype: object)
(7028, Id                                7029
EmployeeName          YULANDA WILLIAMS
JobTitle            POLICE OFFICER III
BasePay                      112401.06
OvertimePay                        0.0
OtherPay                         819.4
Benefits                           NaN
TotalPay                     113220.46
TotalPayBenefits             113220.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7028, dtype: object)
(7029, Id                             7030
EmployeeName        MAURA BALDOCCHI
JobTitle             COURT REPORTER
BasePay                   107317.66
OvertimePay                     0.0
OtherPay                    5901.71
Benefits                        NaN
TotalPay                  113219.37
TotalPayBenefits          113219.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7029, dtype: object)
(7030, Id                                    7031
EmployeeName               HERMAN VIRAY JR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106116.12
OvertimePay                        3661.69
OtherPay                           3437.23
Benefits                               NaN
TotalPay                         113215.04
TotalPayBenefits                 113215.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7030, dtype: object)
(7031, Id                                7032
EmployeeName              EDWARD MYERS
JobTitle            UTILITY SPECIALIST
BasePay                      113214.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.44
TotalPayBenefits             113214.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7031, dtype: object)
(7032, Id                                7033
EmployeeName             ROGER PICKLUM
JobTitle            UTILITY SPECIALIST
BasePay                      113214.24
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.24
TotalPayBenefits             113214.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7032, dtype: object)
(7033, Id                                7034
EmployeeName              JAMES HENDRY
JobTitle            UTILITY SPECIALIST
BasePay                      113214.23
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.23
TotalPayBenefits             113214.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7033, dtype: object)
(7034, Id                                7035
EmployeeName              LAURA PAGANO
JobTitle            UTILITY SPECIALIST
BasePay                      113214.21
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.21
TotalPayBenefits             113214.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7034, dtype: object)
(7035, Id                                7036
EmployeeName           WILLIAM IDZERDA
JobTitle            UTILITY SPECIALIST
BasePay                      113214.21
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.21
TotalPayBenefits             113214.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7035, dtype: object)
(7036, Id                                7037
EmployeeName                 NORA MILL
JobTitle            UTILITY SPECIALIST
BasePay                      113214.14
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113214.14
TotalPayBenefits             113214.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7036, dtype: object)
(7037, Id                                7038
EmployeeName              DANIEL MASON
JobTitle            UTILITY SPECIALIST
BasePay                      113213.89
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113213.89
TotalPayBenefits             113213.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7037, dtype: object)
(7038, Id                                7039
EmployeeName              JIAYO CHIANG
JobTitle            UTILITY SPECIALIST
BasePay                      113213.87
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113213.87
TotalPayBenefits             113213.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7038, dtype: object)
(7039, Id                                7040
EmployeeName               RALPH LEONG
JobTitle            UTILITY SPECIALIST
BasePay                      113213.86
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113213.86
TotalPayBenefits             113213.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7039, dtype: object)
(7040, Id                                7041
EmployeeName              ROBERT EVANS
JobTitle            UTILITY SPECIALIST
BasePay                      113213.61
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     113213.61
TotalPayBenefits             113213.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7040, dtype: object)
(7041, Id                              7042
EmployeeName           OSCAR PADILLA
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  2892.03
OtherPay                      4271.1
Benefits                         NaN
TotalPay                    113209.2
TotalPayBenefits            113209.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7041, dtype: object)
(7042, Id                                                           7043
EmployeeName                                        JARVIS MURRAY
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 113206.49
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                113206.49
TotalPayBenefits                                        113206.49
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 7042, dtype: object)
(7043, Id                                 7044
EmployeeName           DALE DENICE WOOD
JobTitle            PUBLIC HEALTH NURSE
BasePay                        112424.0
OvertimePay                         0.0
OtherPay                         768.88
Benefits                            NaN
TotalPay                      113192.88
TotalPayBenefits              113192.88
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7043, dtype: object)
(7044, Id                                        7045
EmployeeName                        RICHARD HO
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.84
OvertimePay                           12822.97
OtherPay                               3233.87
Benefits                                   NaN
TotalPay                             113187.68
TotalPayBenefits                     113187.68
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7044, dtype: object)
(7045, Id                            7046
EmployeeName            AVERY HILL
JobTitle            DEPUTY SHERIFF
BasePay                   86733.56
OvertimePay               25687.32
OtherPay                    766.07
Benefits                       NaN
TotalPay                 113186.95
TotalPayBenefits         113186.95
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7045, dtype: object)
(7046, Id                                    7047
EmployeeName                     JOHNNY NG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        20945.6
OtherPay                           1576.41
Benefits                               NaN
TotalPay                         113186.01
TotalPayBenefits                 113186.01
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7046, dtype: object)
(7047, Id                                   7048
EmployeeName               MICHAEL ZEHNER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96194.78
OvertimePay                       7266.14
OtherPay                          9723.03
Benefits                              NaN
TotalPay                        113183.95
TotalPayBenefits                113183.95
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7047, dtype: object)
(7048, Id                                           7049
EmployeeName                       THOMAS FENWICK
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                   0.0
OtherPay                                 10719.35
Benefits                                      NaN
TotalPay                                113180.36
TotalPayBenefits                        113180.36
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7048, dtype: object)
(7049, Id                                7050
EmployeeName           ANTHONY JOHNSON
JobTitle            POLICE OFFICER III
BasePay                       110155.0
OvertimePay                        0.0
OtherPay                       3022.15
Benefits                           NaN
TotalPay                     113177.15
TotalPayBenefits             113177.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7049, dtype: object)
(7050, Id                              7051
EmployeeName          ORLANDO TABIOS
JobTitle            REGISTERED NURSE
BasePay                     112920.9
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    113170.9
TotalPayBenefits            113170.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7050, dtype: object)
(7051, Id                                 7052
EmployeeName        ROSEMARY PASSANTINO
JobTitle                     MANAGER II
BasePay                       113167.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      113167.62
TotalPayBenefits              113167.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7051, dtype: object)
(7052, Id                                         7053
EmployeeName                   ANA BORJA VALDES
JobTitle            PRINCIPAL PERSONNEL ANALYST
BasePay                               112954.02
OvertimePay                                 0.0
OtherPay                                 212.49
Benefits                                    NaN
TotalPay                              113166.51
TotalPayBenefits                      113166.51
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7052, dtype: object)
(7053, Id                              7054
EmployeeName               TIP I TAM
JobTitle            REGISTERED NURSE
BasePay                     109044.0
OvertimePay                   1258.2
OtherPay                     2854.85
Benefits                         NaN
TotalPay                   113157.05
TotalPayBenefits           113157.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7053, dtype: object)
(7054, Id                              7055
EmployeeName           BAYARDO ROMAN
JobTitle            POLICE OFFICER I
BasePay                     94586.96
OvertimePay                  4953.45
OtherPay                    13603.36
Benefits                         NaN
TotalPay                   113143.77
TotalPayBenefits           113143.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7054, dtype: object)
(7055, Id                                             7056
EmployeeName                            ROSANA LEON
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    113139.6
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   113139.6
TotalPayBenefits                           113139.6
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7055, dtype: object)
(7056, Id                           7057
EmployeeName           MARK CORSO
JobTitle              MANAGER III
BasePay                 113134.33
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113134.33
TotalPayBenefits        113134.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7056, dtype: object)
(7057, Id                                7058
EmployeeName               PETER RAMOS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   20112.88
OtherPay                       4954.56
Benefits                           NaN
TotalPay                     113129.44
TotalPayBenefits             113129.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7057, dtype: object)
(7058, Id                                     7059
EmployeeName                  VIRDIS GAMBLE
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                            113129.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           113129.0
TotalPayBenefits                   113129.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7058, dtype: object)
(7059, Id                              7060
EmployeeName               CORY FOSS
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                  5416.34
OtherPay                     1644.75
Benefits                         NaN
TotalPay                   113126.28
TotalPayBenefits           113126.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7059, dtype: object)
(7060, Id                             7061
EmployeeName        ANTHONY PEPPERS
JobTitle             DEPUTY SHERIFF
BasePay                     86506.0
OvertimePay                 16109.3
OtherPay                   10507.02
Benefits                        NaN
TotalPay                  113122.32
TotalPayBenefits          113122.32
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7060, dtype: object)
(7061, Id                              7062
EmployeeName               SUSAN MOY
JobTitle            REGISTERED NURSE
BasePay                     92747.28
OvertimePay                 13719.06
OtherPay                     6643.04
Benefits                         NaN
TotalPay                   113109.38
TotalPayBenefits           113109.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7061, dtype: object)
(7062, Id                                             7063
EmployeeName                         PAMELA MICHAUD
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    113107.4
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   113107.4
TotalPayBenefits                           113107.4
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7062, dtype: object)
(7063, Id                                 7064
EmployeeName           JOYCELYN LAMPKIN
JobTitle            TRANSIT CAR CLEANER
BasePay                         55674.7
OvertimePay                    49199.25
OtherPay                        8228.47
Benefits                            NaN
TotalPay                      113102.42
TotalPayBenefits              113102.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7063, dtype: object)
(7064, Id                              7065
EmployeeName             JANE DROBOT
JobTitle            REGISTERED NURSE
BasePay                    108999.39
OvertimePay                      0.0
OtherPay                     4091.26
Benefits                         NaN
TotalPay                   113090.65
TotalPayBenefits           113090.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7064, dtype: object)
(7065, Id                              7066
EmployeeName             ETHEL ROQUE
JobTitle            REGISTERED NURSE
BasePay                    103246.42
OvertimePay                  3108.78
OtherPay                     6720.99
Benefits                         NaN
TotalPay                   113076.19
TotalPayBenefits           113076.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7065, dtype: object)
(7066, Id                                7067
EmployeeName               DONALD EMEL
JobTitle            UTILITY SPECIALIST
BasePay                       102537.6
OvertimePay                     400.95
OtherPay                      10135.02
Benefits                           NaN
TotalPay                     113073.57
TotalPayBenefits             113073.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7066, dtype: object)
(7067, Id                              7068
EmployeeName           BARON DARNELL
JobTitle            POLICE OFFICER I
BasePay                    106065.17
OvertimePay                  4835.02
OtherPay                      2172.8
Benefits                         NaN
TotalPay                   113072.99
TotalPayBenefits           113072.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7067, dtype: object)
(7068, Id                              7069
EmployeeName        ERWIN VILLANUEVA
JobTitle            REGISTERED NURSE
BasePay                     100425.6
OvertimePay                  5027.73
OtherPay                     7618.66
Benefits                         NaN
TotalPay                   113071.99
TotalPayBenefits           113071.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7068, dtype: object)
(7069, Id                           7070
EmployeeName        SCOTT SANCHEZ
JobTitle                PLANNER V
BasePay                 113066.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                113066.02
TotalPayBenefits        113066.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7069, dtype: object)
(7070, Id                              7071
EmployeeName          EMILIA PATRICK
JobTitle            REGISTERED NURSE
BasePay                     99631.21
OvertimePay                  6902.28
OtherPay                     6528.84
Benefits                         NaN
TotalPay                   113062.33
TotalPayBenefits           113062.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7070, dtype: object)
(7071, Id                                       7072
EmployeeName                  BARBARA LUEDTKE
JobTitle            SENIOR PHYSICAL THERAPIST
BasePay                             112954.01
OvertimePay                               0.0
OtherPay                                100.0
Benefits                                  NaN
TotalPay                            113054.01
TotalPayBenefits                    113054.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7071, dtype: object)
(7072, Id                                           7073
EmployeeName                      SUSAN EDELSBERG
JobTitle            SENIOR OCCUPATIONAL THERAPIST
BasePay                                  112954.0
OvertimePay                                   0.0
OtherPay                                    100.0
Benefits                                      NaN
TotalPay                                 113054.0
TotalPayBenefits                         113054.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7072, dtype: object)
(7073, Id                            7074
EmployeeName          DONN WEBSTER
JobTitle            DEPUTY SHERIFF
BasePay                   76860.98
OvertimePay               28258.82
OtherPay                   7933.34
Benefits                       NaN
TotalPay                 113053.14
TotalPayBenefits         113053.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7073, dtype: object)
(7074, Id                               7075
EmployeeName        MARIA TERESA ERFE
JobTitle             REGISTERED NURSE
BasePay                     106789.73
OvertimePay                    4403.7
OtherPay                      1854.21
Benefits                          NaN
TotalPay                    113047.64
TotalPayBenefits            113047.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7074, dtype: object)
(7075, Id                               7076
EmployeeName              ERIC LETSCH
JobTitle            POLICE OFFICER II
BasePay                     102599.14
OvertimePay                   5150.04
OtherPay                      5297.09
Benefits                          NaN
TotalPay                    113046.27
TotalPayBenefits            113046.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7075, dtype: object)
(7076, Id                               7077
EmployeeName              NICOLE YICK
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                   1609.02
OtherPay                      1194.08
Benefits                          NaN
TotalPay                    113046.04
TotalPayBenefits            113046.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7076, dtype: object)
(7077, Id                              7078
EmployeeName            STEPHEN BUCY
JobTitle            POLICE OFFICER I
BasePay                    106065.17
OvertimePay                  4806.36
OtherPay                     2174.07
Benefits                         NaN
TotalPay                    113045.6
TotalPayBenefits            113045.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7077, dtype: object)
(7078, Id                                               7079
EmployeeName                            JOHN PLESKACH
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     104567.76
OvertimePay                                       0.0
OtherPay                                      8475.36
Benefits                                          NaN
TotalPay                                    113043.12
TotalPayBenefits                            113043.12
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7078, dtype: object)
(7079, Id                                                      7080
EmployeeName                                   RODRIGO PARAS
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              89990.3
OvertimePay                                         14237.12
OtherPay                                             8814.78
Benefits                                                 NaN
TotalPay                                            113042.2
TotalPayBenefits                                    113042.2
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7079, dtype: object)
(7080, Id                              7081
EmployeeName         JAMES WESTFIELD
JobTitle            TRANSIT OPERATOR
BasePay                     65135.85
OvertimePay                 44307.95
OtherPay                     3584.02
Benefits                         NaN
TotalPay                   113027.82
TotalPayBenefits           113027.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7080, dtype: object)
(7081, Id                                7082
EmployeeName                 RYAN KUSS
JobTitle            ASSOCIATE ENGINEER
BasePay                      111153.95
OvertimePay                        0.0
OtherPay                       1871.78
Benefits                           NaN
TotalPay                     113025.73
TotalPayBenefits             113025.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7081, dtype: object)
(7082, Id                                  7083
EmployeeName                  RUTH DILTS
JobTitle            SHELTER VETERINARIAN
BasePay                         113021.1
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        113021.1
TotalPayBenefits                113021.1
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7082, dtype: object)
(7083, Id                              7084
EmployeeName            CHERISE WONG
JobTitle            REGISTERED NURSE
BasePay                    108641.89
OvertimePay                  2234.97
OtherPay                     2140.95
Benefits                         NaN
TotalPay                   113017.81
TotalPayBenefits           113017.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7083, dtype: object)
(7084, Id                              7085
EmployeeName              MICAH HOPE
JobTitle            POLICE OFFICER I
BasePay                     96606.71
OvertimePay                 10122.22
OtherPay                     6279.44
Benefits                         NaN
TotalPay                   113008.37
TotalPayBenefits           113008.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7084, dtype: object)
(7085, Id                              7086
EmployeeName           URSZULA MUNKA
JobTitle            REGISTERED NURSE
BasePay                     112756.5
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    113006.5
TotalPayBenefits            113006.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7085, dtype: object)
(7086, Id                           7087
EmployeeName         DINA QUESADA
JobTitle               MANAGER IV
BasePay                 112999.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112999.53
TotalPayBenefits        112999.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7086, dtype: object)
(7087, Id                               7088
EmployeeName           BRANDON HARRIS
JobTitle            POLICE OFFICER II
BasePay                       94777.3
OvertimePay                   6142.18
OtherPay                     12069.16
Benefits                          NaN
TotalPay                    112988.64
TotalPayBenefits            112988.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7087, dtype: object)
(7088, Id                                7089
EmployeeName            RAMONA JOHNSON
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.91
OvertimePay                        0.0
OtherPay                       7289.45
Benefits                           NaN
TotalPay                     112987.36
TotalPayBenefits             112987.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7088, dtype: object)
(7089, Id                               7090
EmployeeName        THERESA HERNANDEZ
JobTitle             TRANSIT OPERATOR
BasePay                      65054.99
OvertimePay                  44385.69
OtherPay                      3546.29
Benefits                          NaN
TotalPay                    112986.97
TotalPayBenefits            112986.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7089, dtype: object)
(7090, Id                              7091
EmployeeName         GEORGE SCRIVANI
JobTitle            REGISTERED NURSE
BasePay                    101692.43
OvertimePay                  5399.94
OtherPay                     5890.67
Benefits                         NaN
TotalPay                   112983.04
TotalPayBenefits           112983.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7090, dtype: object)
(7091, Id                                 7092
EmployeeName           WILFREDO ARQUIZA
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    28752.45
OtherPay                       11818.86
Benefits                            NaN
TotalPay                      112981.31
TotalPayBenefits              112981.31
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7091, dtype: object)
(7092, Id                                7093
EmployeeName            DEBORAH FRANKS
JobTitle            TRANSIT MANAGER II
BasePay                       112849.0
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                      112969.0
TotalPayBenefits              112969.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7092, dtype: object)
(7093, Id                               7094
EmployeeName        MICHAEL ARSENAULT
JobTitle             REGISTERED NURSE
BasePay                      94307.34
OvertimePay                   2339.94
OtherPay                     16315.51
Benefits                          NaN
TotalPay                    112962.79
TotalPayBenefits            112962.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7093, dtype: object)
(7094, Id                                       7095
EmployeeName              CATHERINE HAYASHIDA
JobTitle            SENIOR PHYSICAL THERAPIST
BasePay                              112954.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             112954.0
TotalPayBenefits                     112954.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7094, dtype: object)
(7095, Id                            7096
EmployeeName         MARILYN LOPES
JobTitle            CHIEF SURVEYOR
BasePay                   112954.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  112954.0
TotalPayBenefits          112954.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7095, dtype: object)
(7096, Id                                7097
EmployeeName            VICTOR SANCHEZ
JobTitle            SHERIFF'S SERGEANT
BasePay                       103949.2
OvertimePay                    1753.05
OtherPay                       7251.72
Benefits                           NaN
TotalPay                     112953.97
TotalPayBenefits             112953.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7096, dtype: object)
(7097, Id                                   7098
EmployeeName                  PHILIP TONG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96250.94
OvertimePay                      14437.26
OtherPay                          2261.11
Benefits                              NaN
TotalPay                        112949.31
TotalPayBenefits                112949.31
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7097, dtype: object)
(7098, Id                              7099
EmployeeName        PATRISHA LEVARDO
JobTitle            REGISTERED NURSE
BasePay                     101824.8
OvertimePay                  3194.36
OtherPay                     7925.07
Benefits                         NaN
TotalPay                   112944.23
TotalPayBenefits           112944.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7098, dtype: object)
(7099, Id                                               7100
EmployeeName                               JOHN CHANG
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.72
OvertimePay                                       0.0
OtherPay                                      7383.37
Benefits                                          NaN
TotalPay                                    112938.09
TotalPayBenefits                            112938.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7099, dtype: object)
(7100, Id                                               7101
EmployeeName                               CHIENG NIM
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                  11588.24
OtherPay                                       2332.8
Benefits                                          NaN
TotalPay                                    112935.44
TotalPayBenefits                            112935.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7100, dtype: object)
(7101, Id                                  7102
EmployeeName               ADRIENNE KANE
JobTitle            PHYSICIAN SPECIALIST
BasePay                        109251.44
OvertimePay                          0.0
OtherPay                          3671.0
Benefits                             NaN
TotalPay                       112922.44
TotalPayBenefits               112922.44
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7101, dtype: object)
(7102, Id                                 7103
EmployeeName              DAVID SWENSON
JobTitle            STATIONARY ENGINEER
BasePay                        72411.02
OvertimePay                    31818.22
OtherPay                        8688.23
Benefits                            NaN
TotalPay                      112917.47
TotalPayBenefits              112917.47
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7102, dtype: object)
(7103, Id                              7104
EmployeeName            RACHEL SOUKI
JobTitle            REGISTERED NURSE
BasePay                    102519.95
OvertimePay                  4088.64
OtherPay                     6298.98
Benefits                         NaN
TotalPay                   112907.57
TotalPayBenefits           112907.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7103, dtype: object)
(7104, Id                                7105
EmployeeName        HERNANDO PATARROYO
JobTitle              REGISTERED NURSE
BasePay                      102922.36
OvertimePay                    4114.11
OtherPay                       5857.37
Benefits                           NaN
TotalPay                     112893.84
TotalPayBenefits             112893.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7104, dtype: object)
(7105, Id                                             7106
EmployeeName                          YAN PING CHAO
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   112893.43
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  112893.43
TotalPayBenefits                          112893.43
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7105, dtype: object)
(7106, Id                              7107
EmployeeName           BUDDY SIGUIDO
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  2639.02
OtherPay                     4216.61
Benefits                         NaN
TotalPay                   112882.59
TotalPayBenefits           112882.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7106, dtype: object)
(7107, Id                               7108
EmployeeName               GARY CHENG
JobTitle            POLICE OFFICER II
BasePay                      95342.55
OvertimePay                   3318.51
OtherPay                     14218.68
Benefits                          NaN
TotalPay                    112879.74
TotalPayBenefits            112879.74
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7107, dtype: object)
(7108, Id                                               7109
EmployeeName                               RICKY CHEN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96616.8
OvertimePay                                  13899.61
OtherPay                                       2352.8
Benefits                                          NaN
TotalPay                                    112869.21
TotalPayBenefits                            112869.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7108, dtype: object)
(7109, Id                                                 7110
EmployeeName                            CYNTHIA CZERWIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       112868.83
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      112868.83
TotalPayBenefits                              112868.83
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7109, dtype: object)
(7110, Id                               7111
EmployeeName         NANCIE STOCKWELL
JobTitle            POLICE OFFICER II
BasePay                      110242.9
OvertimePay                       0.0
OtherPay                      2615.92
Benefits                          NaN
TotalPay                    112858.82
TotalPayBenefits            112858.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7110, dtype: object)
(7111, Id                           7112
EmployeeName        HARRY H C YEE
JobTitle              FIREFIGHTER
BasePay                  92326.51
OvertimePay               9001.66
OtherPay                 11528.83
Benefits                      NaN
TotalPay                 112857.0
TotalPayBenefits         112857.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7111, dtype: object)
(7112, Id                                               7113
EmployeeName                       CHARLES PANGELINAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       97498.3
OvertimePay                                   5415.55
OtherPay                                       9938.8
Benefits                                          NaN
TotalPay                                    112852.65
TotalPayBenefits                            112852.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7112, dtype: object)
(7113, Id                                         7114
EmployeeName                CHRISTOPHER HINNANT
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               112848.18
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              112848.18
TotalPayBenefits                      112848.18
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7113, dtype: object)
(7114, Id                           7115
EmployeeName         MARK OCONNOR
JobTitle              FIREFIGHTER
BasePay                 105934.65
OvertimePay                   0.0
OtherPay                  6896.77
Benefits                      NaN
TotalPay                112831.42
TotalPayBenefits        112831.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7114, dtype: object)
(7115, Id                                7116
EmployeeName                RICHARD NG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   19514.21
OtherPay                       5254.45
Benefits                           NaN
TotalPay                     112830.66
TotalPayBenefits             112830.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7115, dtype: object)
(7116, Id                               7117
EmployeeName             LEON JACKSON
JobTitle            POLICE OFFICER II
BasePay                     107202.88
OvertimePay                   2752.36
OtherPay                      2873.21
Benefits                          NaN
TotalPay                    112828.45
TotalPayBenefits            112828.45
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7116, dtype: object)
(7117, Id                                                               7118
EmployeeName                                           VINCENT GOLDEN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     105570.68
OvertimePay                                                    5329.8
OtherPay                                                       1920.0
Benefits                                                          NaN
TotalPay                                                    112820.48
TotalPayBenefits                                            112820.48
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7117, dtype: object)
(7118, Id                                    7119
EmployeeName                  MARK AUSTRIA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           97332.75
OvertimePay                        4842.34
OtherPay                           10644.1
Benefits                               NaN
TotalPay                         112819.19
TotalPayBenefits                 112819.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7118, dtype: object)
(7119, Id                                 7120
EmployeeName               DARRYL LEUNG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72198.11
OvertimePay                    30044.19
OtherPay                       10557.21
Benefits                            NaN
TotalPay                      112799.51
TotalPayBenefits              112799.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7119, dtype: object)
(7120, Id                                         7121
EmployeeName                   NERIVALDO SANTOS
JobTitle            CHIEF FIRE ALARM DISPATCHER
BasePay                                 80307.2
OvertimePay                            32491.17
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              112798.37
TotalPayBenefits                      112798.37
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7120, dtype: object)
(7121, Id                               7122
EmployeeName                AARON YOO
JobTitle            POLICE OFFICER II
BasePay                     108020.94
OvertimePay                   2218.05
OtherPay                      2557.23
Benefits                          NaN
TotalPay                    112796.22
TotalPayBenefits            112796.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7121, dtype: object)
(7122, Id                                   7123
EmployeeName                     JINA TIN
JobTitle            SUPERVISING BIOLOGIST
BasePay                         106492.09
OvertimePay                           0.0
OtherPay                          6298.73
Benefits                              NaN
TotalPay                        112790.82
TotalPayBenefits                112790.82
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7122, dtype: object)
(7123, Id                              7124
EmployeeName           JESSICA THURN
JobTitle            REGISTERED NURSE
BasePay                     99158.18
OvertimePay                  3040.74
OtherPay                    10589.13
Benefits                         NaN
TotalPay                   112788.05
TotalPayBenefits           112788.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7123, dtype: object)
(7124, Id                                   7125
EmployeeName             STEPHANIE THOMAS
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                          5656.82
Benefits                              NaN
TotalPay                        112774.23
TotalPayBenefits                112774.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7124, dtype: object)
(7125, Id                                               7126
EmployeeName                            JEFFRY HERWIG
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      95885.28
OvertimePay                                   9712.14
OtherPay                                      7160.02
Benefits                                          NaN
TotalPay                                    112757.44
TotalPayBenefits                            112757.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7125, dtype: object)
(7126, Id                            7127
EmployeeName             PETER LAU
JobTitle            DEPUTY SHERIFF
BasePay                    86673.0
OvertimePay               12012.98
OtherPay                  14060.96
Benefits                       NaN
TotalPay                 112746.94
TotalPayBenefits         112746.94
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7126, dtype: object)
(7127, Id                               7128
EmployeeName          MICHAEL PERALTA
JobTitle            POLICE OFFICER II
BasePay                      95312.02
OvertimePay                   9176.72
OtherPay                      8256.26
Benefits                          NaN
TotalPay                     112745.0
TotalPayBenefits             112745.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7127, dtype: object)
(7128, Id                                 7129
EmployeeName                 KARL DAVIS
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71591.62
OvertimePay                    29891.24
OtherPay                       11241.74
Benefits                            NaN
TotalPay                       112724.6
TotalPayBenefits               112724.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7128, dtype: object)
(7129, Id                              7130
EmployeeName              ELDA YOUNG
JobTitle            REGISTERED NURSE
BasePay                    101419.42
OvertimePay                  5026.65
OtherPay                     6244.12
Benefits                         NaN
TotalPay                   112690.19
TotalPayBenefits           112690.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7129, dtype: object)
(7130, Id                                    7131
EmployeeName                   DAVID RAGNI
JobTitle            CARPENTER SUPERVISOR I
BasePay                            99227.7
OvertimePay                       13460.81
OtherPay                               0.0
Benefits                               NaN
TotalPay                         112688.51
TotalPayBenefits                 112688.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7130, dtype: object)
(7131, Id                              7132
EmployeeName         EILEEN MCSORLEY
JobTitle            REGISTERED NURSE
BasePay                    112423.99
OvertimePay                      0.0
OtherPay                      258.11
Benefits                         NaN
TotalPay                    112682.1
TotalPayBenefits            112682.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7131, dtype: object)
(7132, Id                                                     7133
EmployeeName                              DEMETRECE MAXWELL
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77861.72
OvertimePay                                        25186.53
OtherPay                                             9627.4
Benefits                                                NaN
TotalPay                                          112675.65
TotalPayBenefits                                  112675.65
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7132, dtype: object)
(7133, Id                              7134
EmployeeName         ALEXIS STINGLEY
JobTitle            REGISTERED NURSE
BasePay                    112424.01
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   112674.01
TotalPayBenefits           112674.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7133, dtype: object)
(7134, Id                              7135
EmployeeName             SUSAN NOBLE
JobTitle            REGISTERED NURSE
BasePay                     112424.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    112674.0
TotalPayBenefits            112674.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7134, dtype: object)
(7135, Id                            7136
EmployeeName           CAROL KAREN
JobTitle            COURT REPORTER
BasePay                   102208.4
OvertimePay                    0.0
OtherPay                  10448.84
Benefits                       NaN
TotalPay                 112657.24
TotalPayBenefits         112657.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7135, dtype: object)
(7136, Id                                               7137
EmployeeName                         FRANCISCO JUAREZ
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      92669.26
OvertimePay                                  18571.02
OtherPay                                      1408.75
Benefits                                          NaN
TotalPay                                    112649.03
TotalPayBenefits                            112649.03
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7136, dtype: object)
(7137, Id                              7138
EmployeeName           IGNACIO REYES
JobTitle            TRANSIT OPERATOR
BasePay                     65800.95
OvertimePay                 40950.82
OtherPay                     5896.01
Benefits                         NaN
TotalPay                   112647.78
TotalPayBenefits           112647.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7137, dtype: object)
(7138, Id                              7139
EmployeeName              CRAIG WONG
JobTitle            REGISTERED NURSE
BasePay                    105528.47
OvertimePay                  1892.64
OtherPay                     5219.41
Benefits                         NaN
TotalPay                   112640.52
TotalPayBenefits           112640.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7138, dtype: object)
(7139, Id                             7140
EmployeeName            WARREN LOWE
JobTitle            UTILITY PLUMBER
BasePay                    91006.66
OvertimePay                 1464.52
OtherPay                    20168.3
Benefits                        NaN
TotalPay                  112639.48
TotalPayBenefits          112639.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7139, dtype: object)
(7140, Id                              7141
EmployeeName        JENNIFER LEONARD
JobTitle            REGISTERED NURSE
BasePay                     88740.33
OvertimePay                  8913.63
OtherPay                    14979.78
Benefits                         NaN
TotalPay                   112633.74
TotalPayBenefits           112633.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7140, dtype: object)
(7141, Id                                       7142
EmployeeName                        DEWEY YEN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               59275.0
OvertimePay                          38643.63
OtherPay                             14708.74
Benefits                                  NaN
TotalPay                            112627.37
TotalPayBenefits                    112627.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7141, dtype: object)
(7142, Id                              7143
EmployeeName           GREGORY RAMOS
JobTitle            REGISTERED NURSE
BasePay                     86471.41
OvertimePay                  6167.37
OtherPay                    19977.69
Benefits                         NaN
TotalPay                   112616.47
TotalPayBenefits           112616.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7142, dtype: object)
(7143, Id                                   7144
EmployeeName              ERIC BOATWRIGHT
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.43
OvertimePay                           0.0
OtherPay                          5487.74
Benefits                              NaN
TotalPay                        112605.17
TotalPayBenefits                112605.17
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7143, dtype: object)
(7144, Id                              7145
EmployeeName          FRANK LEONETTI
JobTitle            POLICE OFFICER I
BasePay                    106026.96
OvertimePay                  4349.29
OtherPay                     2205.56
Benefits                         NaN
TotalPay                   112581.81
TotalPayBenefits           112581.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7144, dtype: object)
(7145, Id                              7146
EmployeeName            MICHELLE LIN
JobTitle            REGISTERED NURSE
BasePay                     95925.25
OvertimePay                  1771.66
OtherPay                    14884.62
Benefits                         NaN
TotalPay                   112581.53
TotalPayBenefits           112581.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7145, dtype: object)
(7146, Id                                    7147
EmployeeName              JAMES NOVELLO JR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79187.63
OvertimePay                       21635.93
OtherPay                          11756.02
Benefits                               NaN
TotalPay                         112579.58
TotalPayBenefits                 112579.58
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7146, dtype: object)
(7147, Id                                   7148
EmployeeName               SAUL RODRIGUEZ
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96254.5
OvertimePay                       3044.45
OtherPay                          13273.3
Benefits                              NaN
TotalPay                        112572.25
TotalPayBenefits                112572.25
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7147, dtype: object)
(7148, Id                           7149
EmployeeName        JESSICA DRURY
JobTitle            SPECIAL NURSE
BasePay                 105394.33
OvertimePay               1717.14
OtherPay                  5457.55
Benefits                      NaN
TotalPay                112569.02
TotalPayBenefits        112569.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7148, dtype: object)
(7149, Id                                          7150
EmployeeName                          TONY CUKAR
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                101641.87
OvertimePay                               361.63
OtherPay                                10562.35
Benefits                                     NaN
TotalPay                               112565.85
TotalPayBenefits                       112565.85
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7149, dtype: object)
(7150, Id                                        7151
EmployeeName                     DAVID KOESTER
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               96573.87
OvertimePay                            2934.72
OtherPay                              13057.01
Benefits                                   NaN
TotalPay                              112565.6
TotalPayBenefits                      112565.6
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7150, dtype: object)
(7151, Id                              7152
EmployeeName        FRANCE PEAN-RUSH
JobTitle               SPECIAL NURSE
BasePay                      96561.2
OvertimePay                      0.0
OtherPay                     15994.8
Benefits                         NaN
TotalPay                    112556.0
TotalPayBenefits            112556.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7151, dtype: object)
(7152, Id                                              7153
EmployeeName                         JOHN TOSTANOSKI
JobTitle            SHEET METAL WORKER SUPERVISOR II
BasePay                                     112554.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    112554.0
TotalPayBenefits                            112554.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7152, dtype: object)
(7153, Id                                7154
EmployeeName              DANIEL PULON
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.81
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                     112551.81
TotalPayBenefits             112551.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7153, dtype: object)
(7154, Id                                7155
EmployeeName           FRANK MARKOWITZ
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.15
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                     112551.15
TotalPayBenefits             112551.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7154, dtype: object)
(7155, Id                                7156
EmployeeName              OLIVER GAJDA
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.04
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                     112551.04
TotalPayBenefits             112551.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7155, dtype: object)
(7156, Id                                 7157
EmployeeName        RONALD NIEWIAROWSKI
JobTitle             TRANSIT PLANNER IV
BasePay                       112431.01
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                      112551.01
TotalPayBenefits              112551.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7156, dtype: object)
(7157, Id                                7158
EmployeeName             PAUL BIGNARDI
JobTitle            TRANSIT PLANNER IV
BasePay                       112431.0
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                      112551.0
TotalPayBenefits              112551.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7157, dtype: object)
(7158, Id                            7159
EmployeeName         SERGIO CHAVEZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               17943.15
OtherPay                   7763.69
Benefits                       NaN
TotalPay                 112546.86
TotalPayBenefits         112546.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7158, dtype: object)
(7159, Id                              7160
EmployeeName             EDWIN ANAYA
JobTitle            POLICE OFFICER I
BasePay                     99318.94
OvertimePay                  4803.07
OtherPay                     8424.59
Benefits                         NaN
TotalPay                    112546.6
TotalPayBenefits            112546.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7159, dtype: object)
(7160, Id                               7161
EmployeeName           ROMEO DELAVEGA
JobTitle            POLICE OFFICER II
BasePay                     110242.29
OvertimePay                   1476.63
OtherPay                        819.6
Benefits                          NaN
TotalPay                    112538.52
TotalPayBenefits            112538.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7160, dtype: object)
(7161, Id                              7162
EmployeeName             JOHN LAFFEY
JobTitle            POLICE OFFICER I
BasePay                    100945.09
OvertimePay                  7335.28
OtherPay                     4257.14
Benefits                         NaN
TotalPay                   112537.51
TotalPayBenefits           112537.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7161, dtype: object)
(7162, Id                                 7163
EmployeeName        GERALDINE HERNANDEZ
JobTitle                  SPECIAL NURSE
BasePay                        92037.06
OvertimePay                      3121.4
OtherPay                       17378.46
Benefits                            NaN
TotalPay                      112536.92
TotalPayBenefits              112536.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7162, dtype: object)
(7163, Id                                       7164
EmployeeName                     RAYMOND HUFF
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              96352.04
OvertimePay                           2819.33
OtherPay                             13356.47
Benefits                                  NaN
TotalPay                            112527.84
TotalPayBenefits                    112527.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7163, dtype: object)
(7164, Id                            7165
EmployeeName           JOANN PRIOR
JobTitle            COURT REPORTER
BasePay                   106659.4
OvertimePay                    0.0
OtherPay                   5865.66
Benefits                       NaN
TotalPay                 112525.06
TotalPayBenefits         112525.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7164, dtype: object)
(7165, Id                               7166
EmployeeName        ALLISON BOSZHARDT
JobTitle             REGISTERED NURSE
BasePay                     103464.26
OvertimePay                   2072.52
OtherPay                      6982.71
Benefits                          NaN
TotalPay                    112519.49
TotalPayBenefits            112519.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7165, dtype: object)
(7166, Id                                       7167
EmployeeName                     DAVID SNYDER
JobTitle            SENIOR PHYSICAL THERAPIST
BasePay                             112518.81
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            112518.81
TotalPayBenefits                    112518.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7166, dtype: object)
(7167, Id                                                           7168
EmployeeName                                   PATRICIA FIELDSTED
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 112389.89
OvertimePay                                                   0.0
OtherPay                                                    120.0
Benefits                                                      NaN
TotalPay                                                112509.89
TotalPayBenefits                                        112509.89
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 7167, dtype: object)
(7168, Id                              7169
EmployeeName          MARGARET FARNY
JobTitle            REGISTERED NURSE
BasePay                    110461.19
OvertimePay                      0.0
OtherPay                     2042.91
Benefits                         NaN
TotalPay                    112504.1
TotalPayBenefits            112504.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7168, dtype: object)
(7169, Id                                                    7170
EmployeeName                                    PATRICK WU
JobTitle            COURT COMPUTER APPLICATIONS PROGRAMMER
BasePay                                          111869.34
OvertimePay                                            0.0
OtherPay                                             624.0
Benefits                                               NaN
TotalPay                                         112493.34
TotalPayBenefits                                 112493.34
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 7169, dtype: object)
(7170, Id                                7171
EmployeeName             SUSAN CHELONE
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.18
OvertimePay                        0.0
OtherPay                          61.0
Benefits                           NaN
TotalPay                     112492.18
TotalPayBenefits             112492.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7170, dtype: object)
(7171, Id                           7172
EmployeeName              LILY OW
JobTitle               PHARMACIST
BasePay                  106972.5
OvertimePay               4611.24
OtherPay                   896.32
Benefits                      NaN
TotalPay                112480.06
TotalPayBenefits        112480.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7171, dtype: object)
(7172, Id                               7173
EmployeeName          JASON GALLAGHER
JobTitle            POLICE OFFICER II
BasePay                     105835.27
OvertimePay                       0.0
OtherPay                      6630.28
Benefits                          NaN
TotalPay                    112465.55
TotalPayBenefits            112465.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7172, dtype: object)
(7173, Id                                 7174
EmployeeName                 RICK HOANG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72965.39
OvertimePay                    29028.39
OtherPay                       10466.05
Benefits                            NaN
TotalPay                      112459.83
TotalPayBenefits              112459.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7173, dtype: object)
(7174, Id                                               7175
EmployeeName                           JUDY NISHIMOTO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96616.8
OvertimePay                                  14081.85
OtherPay                                       1760.0
Benefits                                          NaN
TotalPay                                    112458.65
TotalPayBenefits                            112458.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7174, dtype: object)
(7175, Id                              7176
EmployeeName        EDUARDO CASTILLO
JobTitle            POLICE OFFICER I
BasePay                    106061.28
OvertimePay                  2712.65
OtherPay                     3678.37
Benefits                         NaN
TotalPay                    112452.3
TotalPayBenefits            112452.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7175, dtype: object)
(7176, Id                               7177
EmployeeName             JAMES BARBER
JobTitle            POLICE OFFICER II
BasePay                      110238.4
OvertimePay                       0.0
OtherPay                      2204.31
Benefits                          NaN
TotalPay                    112442.71
TotalPayBenefits            112442.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7176, dtype: object)
(7177, Id                                                               7178
EmployeeName                                          NORBERT FEYLING
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89551.09
OvertimePay                                                  20861.36
OtherPay                                                      2024.73
Benefits                                                          NaN
TotalPay                                                    112437.18
TotalPayBenefits                                            112437.18
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7177, dtype: object)
(7178, Id                           7179
EmployeeName         DANIEL SIDER
JobTitle               PLANNER IV
BasePay                 112431.76
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.76
TotalPayBenefits        112431.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7178, dtype: object)
(7179, Id                            7180
EmployeeName        JULIAN BANALES
JobTitle                PLANNER IV
BasePay                  112431.75
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 112431.75
TotalPayBenefits         112431.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7179, dtype: object)
(7180, Id                                             7181
EmployeeName                         RICHARD COOPER
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   112431.59
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  112431.59
TotalPayBenefits                          112431.59
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7180, dtype: object)
(7181, Id                           7182
EmployeeName        CHRISTINE HAW
JobTitle               PLANNER IV
BasePay                 112431.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.54
TotalPayBenefits        112431.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7181, dtype: object)
(7182, Id                           7183
EmployeeName        JOANNE WILSON
JobTitle               PLANNER IV
BasePay                 112431.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.05
TotalPayBenefits        112431.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7182, dtype: object)
(7183, Id                           7184
EmployeeName         MARK LUELLEN
JobTitle               PLANNER IV
BasePay                 112431.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.04
TotalPayBenefits        112431.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7183, dtype: object)
(7184, Id                                 7185
EmployeeName        FRANKLYN WASHINGTON
JobTitle                     PLANNER IV
BasePay                       112431.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      112431.04
TotalPayBenefits              112431.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7184, dtype: object)
(7185, Id                             7186
EmployeeName        JAMES MCCORMICK
JobTitle                 PLANNER IV
BasePay                   112431.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  112431.03
TotalPayBenefits          112431.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7185, dtype: object)
(7186, Id                                7187
EmployeeName        MARIA TERESA OJEDA
JobTitle                    PLANNER IV
BasePay                      112431.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     112431.02
TotalPayBenefits             112431.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7186, dtype: object)
(7187, Id                           7188
EmployeeName        DAVID LINDSAY
JobTitle               PLANNER IV
BasePay                 112431.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.01
TotalPayBenefits        112431.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7187, dtype: object)
(7188, Id                                7189
EmployeeName              DAVID HOOSON
JobTitle            TRANSIT PLANNER IV
BasePay                      112431.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     112431.01
TotalPayBenefits             112431.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7188, dtype: object)
(7189, Id                                             7190
EmployeeName                               JOY SOTO
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   112431.01
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  112431.01
TotalPayBenefits                          112431.01
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7189, dtype: object)
(7190, Id                           7191
EmployeeName             TINA TAM
JobTitle               PLANNER IV
BasePay                 112431.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112431.01
TotalPayBenefits        112431.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7190, dtype: object)
(7191, Id                                7192
EmployeeName            JOALE ROBINSON
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.92
OvertimePay                    2381.26
OtherPay                       4347.87
Benefits                           NaN
TotalPay                     112427.05
TotalPayBenefits             112427.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7191, dtype: object)
(7192, Id                                    7193
EmployeeName                 JOHN PRADENAS
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90083.02
OvertimePay                       11764.85
OtherPay                          10578.12
Benefits                               NaN
TotalPay                         112425.99
TotalPayBenefits                 112425.99
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7192, dtype: object)
(7193, Id                           7194
EmployeeName          MANUEL MENA
JobTitle               MANAGER II
BasePay                 112419.66
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112419.66
TotalPayBenefits        112419.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7193, dtype: object)
(7194, Id                                   7195
EmployeeName        CHRISTOPER CASSINELLI
JobTitle                POLICE OFFICER II
BasePay                           98148.0
OvertimePay                       5563.69
OtherPay                          8707.64
Benefits                              NaN
TotalPay                        112419.33
TotalPayBenefits                112419.33
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7194, dtype: object)
(7195, Id                                                      7196
EmployeeName                                 JAMES ALEXANDER
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             91121.88
OvertimePay                                         12211.46
OtherPay                                             9072.94
Benefits                                                 NaN
TotalPay                                           112406.28
TotalPayBenefits                                   112406.28
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7195, dtype: object)
(7196, Id                                7197
EmployeeName                 JOHN KATZ
JobTitle            TRANSIT PLANNER IV
BasePay                      112269.48
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                     112389.48
TotalPayBenefits             112389.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7196, dtype: object)
(7197, Id                                  7198
EmployeeName        ANNA CATHERI NOLASCO
JobTitle                REGISTERED NURSE
BasePay                         98280.55
OvertimePay                      6888.26
OtherPay                         7219.96
Benefits                             NaN
TotalPay                       112388.77
TotalPayBenefits               112388.77
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7197, dtype: object)
(7198, Id                                                 7199
EmployeeName                              NEVILLE HUNTE
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                        112387.0
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       112387.0
TotalPayBenefits                               112387.0
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7198, dtype: object)
(7199, Id                              7200
EmployeeName         ELIZABETH RUBIN
JobTitle            REGISTERED NURSE
BasePay                     91748.93
OvertimePay                    934.4
OtherPay                    19694.09
Benefits                         NaN
TotalPay                   112377.42
TotalPayBenefits           112377.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7199, dtype: object)
(7200, Id                                7201
EmployeeName        JOSEPHINE MACARAIG
JobTitle              REGISTERED NURSE
BasePay                       98699.59
OvertimePay                    7306.61
OtherPay                       6364.27
Benefits                           NaN
TotalPay                     112370.47
TotalPayBenefits             112370.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7200, dtype: object)
(7201, Id                           7202
EmployeeName            DERYK LEE
JobTitle              FIREFIGHTER
BasePay                 102176.37
OvertimePay                   0.0
OtherPay                 10192.51
Benefits                      NaN
TotalPay                112368.88
TotalPayBenefits        112368.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7201, dtype: object)
(7202, Id                                        7203
EmployeeName                  YOUCEF BOUHAMAMA
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              112363.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             112363.03
TotalPayBenefits                     112363.03
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7202, dtype: object)
(7203, Id                           7204
EmployeeName           GARY CHANG
JobTitle                 ENGINEER
BasePay                 106946.08
OvertimePay                   0.0
OtherPay                  5413.98
Benefits                      NaN
TotalPay                112360.06
TotalPayBenefits        112360.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7203, dtype: object)
(7204, Id                              7205
EmployeeName              MARIBEL WE
JobTitle            REGISTERED NURSE
BasePay                    101668.05
OvertimePay                  5027.73
OtherPay                      5662.5
Benefits                         NaN
TotalPay                   112358.28
TotalPayBenefits           112358.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7204, dtype: object)
(7205, Id                                 7206
EmployeeName                 DAVID TANG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72051.98
OvertimePay                    30053.16
OtherPay                       10249.23
Benefits                            NaN
TotalPay                      112354.37
TotalPayBenefits              112354.37
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7205, dtype: object)
(7206, Id                               7207
EmployeeName        STEPHANIE OTAGURO
JobTitle             POLICE OFFICER I
BasePay                      104947.1
OvertimePay                   3539.67
OtherPay                      3867.23
Benefits                          NaN
TotalPay                     112354.0
TotalPayBenefits             112354.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7206, dtype: object)
(7207, Id                              7208
EmployeeName             KYLE HANSON
JobTitle            REGISTERED NURSE
BasePay                     108271.3
OvertimePay                    975.1
OtherPay                     3107.45
Benefits                         NaN
TotalPay                   112353.85
TotalPayBenefits           112353.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7207, dtype: object)
(7208, Id                              7209
EmployeeName         CANDETTE HILDER
JobTitle            POLICE OFFICER I
BasePay                    106065.04
OvertimePay                   5308.9
OtherPay                      969.88
Benefits                         NaN
TotalPay                   112343.82
TotalPayBenefits           112343.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7208, dtype: object)
(7209, Id                              7210
EmployeeName        MICHAEL ELLISTON
JobTitle            POLICE OFFICER I
BasePay                     97647.34
OvertimePay                  7368.17
OtherPay                     7322.28
Benefits                         NaN
TotalPay                   112337.79
TotalPayBenefits           112337.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7209, dtype: object)
(7210, Id                                           7211
EmployeeName                         KURTIS SMITH
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                  91906.48
OvertimePay                              13497.94
OtherPay                                  6930.55
Benefits                                      NaN
TotalPay                                112334.97
TotalPayBenefits                        112334.97
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7210, dtype: object)
(7211, Id                                               7212
EmployeeName                          CHARLES JOHNSON
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96811.2
OvertimePay                                  13949.47
OtherPay                                       1570.0
Benefits                                          NaN
TotalPay                                    112330.67
TotalPayBenefits                            112330.67
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7211, dtype: object)
(7212, Id                                                     7213
EmployeeName                                  CARLA GODFREY
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           101142.86
OvertimePay                                         3590.82
OtherPay                                            7582.17
Benefits                                                NaN
TotalPay                                          112315.85
TotalPayBenefits                                  112315.85
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7212, dtype: object)
(7213, Id                              7214
EmployeeName                 TINA TO
JobTitle            POLICE OFFICER I
BasePay                     98560.57
OvertimePay                  7288.21
OtherPay                     6458.18
Benefits                         NaN
TotalPay                   112306.96
TotalPayBenefits           112306.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7213, dtype: object)
(7214, Id                              7215
EmployeeName        ANTONIO SUNGA JR
JobTitle            REGISTERED NURSE
BasePay                     111189.0
OvertimePay                   865.01
OtherPay                       250.0
Benefits                         NaN
TotalPay                   112304.01
TotalPayBenefits           112304.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7214, dtype: object)
(7215, Id                                 7216
EmployeeName            DONALD O'CONNOR
JobTitle            AIRPORT ELECTRICIAN
BasePay                         96437.7
OvertimePay                     4313.57
OtherPay                        11550.2
Benefits                            NaN
TotalPay                      112301.47
TotalPayBenefits              112301.47
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7215, dtype: object)
(7216, Id                              7217
EmployeeName            LAI LAM KUAN
JobTitle            REGISTERED NURSE
BasePay                     88923.06
OvertimePay                   4966.1
OtherPay                    18396.57
Benefits                         NaN
TotalPay                   112285.73
TotalPayBenefits           112285.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7216, dtype: object)
(7217, Id                                                     7218
EmployeeName                             BUNYAN JOHNSON III
JobTitle            SENIOR DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                           103948.02
OvertimePay                                         2083.97
OtherPay                                            6237.39
Benefits                                                NaN
TotalPay                                          112269.38
TotalPayBenefits                                  112269.38
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7217, dtype: object)
(7218, Id                            7219
EmployeeName           DAVID CAIRO
JobTitle            DEPUTY SHERIFF
BasePay                   74098.01
OvertimePay               35310.14
OtherPay                   2851.56
Benefits                       NaN
TotalPay                 112259.71
TotalPayBenefits         112259.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7218, dtype: object)
(7219, Id                              7220
EmployeeName          DOREEN CARROLL
JobTitle            POLICE OFFICER I
BasePay                    106026.93
OvertimePay                  3289.46
OtherPay                     2940.34
Benefits                         NaN
TotalPay                   112256.73
TotalPayBenefits           112256.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7219, dtype: object)
(7220, Id                                7221
EmployeeName             AURA MENDIETA
JobTitle            DEPUTY DIRECTOR II
BasePay                      112255.25
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     112255.25
TotalPayBenefits             112255.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7220, dtype: object)
(7221, Id                              7222
EmployeeName          JULIANN FUSARO
JobTitle            REGISTERED NURSE
BasePay                    105918.11
OvertimePay                      0.0
OtherPay                     6334.19
Benefits                         NaN
TotalPay                    112252.3
TotalPayBenefits            112252.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7221, dtype: object)
(7222, Id                                             7223
EmployeeName                        MANUEL GONZALES
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                     99500.0
OvertimePay                                10651.34
OtherPay                                     2060.0
Benefits                                        NaN
TotalPay                                  112211.34
TotalPayBenefits                          112211.34
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7222, dtype: object)
(7223, Id                                       7224
EmployeeName                  WILLIAM BARTELS
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              65222.55
OvertimePay                           4564.27
OtherPay                             42422.02
Benefits                                  NaN
TotalPay                            112208.84
TotalPayBenefits                    112208.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7223, dtype: object)
(7224, Id                              7225
EmployeeName         RAYMOND DACANAY
JobTitle            REGISTERED NURSE
BasePay                    107236.17
OvertimePay                    689.4
OtherPay                     4280.12
Benefits                         NaN
TotalPay                   112205.69
TotalPayBenefits           112205.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7224, dtype: object)
(7225, Id                                  7226
EmployeeName                  JAMES REED
JobTitle            ELECTRICAL INSPECTOR
BasePay                        100658.25
OvertimePay                       9530.8
OtherPay                          2012.3
Benefits                             NaN
TotalPay                       112201.35
TotalPayBenefits               112201.35
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7225, dtype: object)
(7226, Id                                7227
EmployeeName                MYRON FONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88065.6
OvertimePay                   16229.43
OtherPay                       7902.44
Benefits                           NaN
TotalPay                     112197.47
TotalPayBenefits             112197.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7226, dtype: object)
(7227, Id                                       7228
EmployeeName                       LUKE BAGAN
JobTitle            TRANSIT POWER LINE WORKER
BasePay                              88902.99
OvertimePay                          16161.03
OtherPay                              7125.14
Benefits                                  NaN
TotalPay                            112189.16
TotalPayBenefits                    112189.16
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7227, dtype: object)
(7228, Id                              7229
EmployeeName          SANDRA VALEROS
JobTitle            REGISTERED NURSE
BasePay                    101801.23
OvertimePay                  6218.67
OtherPay                     4161.63
Benefits                         NaN
TotalPay                   112181.53
TotalPayBenefits           112181.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7228, dtype: object)
(7229, Id                           7230
EmployeeName         CARLA KASPER
JobTitle              FIREFIGHTER
BasePay                 101066.84
OvertimePay               3326.93
OtherPay                  7772.52
Benefits                      NaN
TotalPay                112166.29
TotalPayBenefits        112166.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7229, dtype: object)
(7230, Id                            7231
EmployeeName         EVAN STAEHELY
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               23158.26
OtherPay                   2166.08
Benefits                       NaN
TotalPay                 112164.34
TotalPayBenefits         112164.34
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7230, dtype: object)
(7231, Id                                   7232
EmployeeName           CLARENCE LEWIS III
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.39
OvertimePay                       8169.72
OtherPay                          7741.72
Benefits                              NaN
TotalPay                        112163.83
TotalPayBenefits                112163.83
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7231, dtype: object)
(7232, Id                                    7233
EmployeeName          CHRISTOPHER HAMILTON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102752.61
OvertimePay                          67.85
OtherPay                           9341.58
Benefits                               NaN
TotalPay                         112162.04
TotalPayBenefits                 112162.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7232, dtype: object)
(7233, Id                           7234
EmployeeName         MARK DONOVAN
JobTitle                   WELDER
BasePay                  77989.86
OvertimePay              27503.63
OtherPay                  6661.36
Benefits                      NaN
TotalPay                112154.85
TotalPayBenefits        112154.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7233, dtype: object)
(7234, Id                                    7235
EmployeeName                  MATHEW FLUKE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          103101.46
OvertimePay                           3.16
OtherPay                           9049.28
Benefits                               NaN
TotalPay                          112153.9
TotalPayBenefits                  112153.9
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7234, dtype: object)
(7235, Id                                                     7236
EmployeeName                                      WESLEY NG
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             94149.7
OvertimePay                                         9382.67
OtherPay                                            8609.73
Benefits                                                NaN
TotalPay                                           112142.1
TotalPayBenefits                                   112142.1
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7235, dtype: object)
(7236, Id                           7237
EmployeeName         THOMAS SMITH
JobTitle            SPECIAL NURSE
BasePay                  105827.8
OvertimePay               2131.29
OtherPay                  4180.82
Benefits                      NaN
TotalPay                112139.91
TotalPayBenefits        112139.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7236, dtype: object)
(7237, Id                                 7238
EmployeeName           BERNARDO ANDRADE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71822.16
OvertimePay                    18715.91
OtherPay                       21601.76
Benefits                            NaN
TotalPay                      112139.83
TotalPayBenefits              112139.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7237, dtype: object)
(7238, Id                              7239
EmployeeName              KEVIN ISON
JobTitle            POLICE OFFICER I
BasePay                     97641.72
OvertimePay                   4938.6
OtherPay                     9556.72
Benefits                         NaN
TotalPay                   112137.04
TotalPayBenefits           112137.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7238, dtype: object)
(7239, Id                                  7240
EmployeeName                 ANN DALLMAN
JobTitle            PHYSICIAN SPECIALIST
BasePay                        110886.93
OvertimePay                          0.0
OtherPay                          1250.0
Benefits                             NaN
TotalPay                       112136.93
TotalPayBenefits               112136.93
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7239, dtype: object)
(7240, Id                                                     7241
EmployeeName                                 JUANITA RAGLER
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77788.49
OvertimePay                                        26330.91
OtherPay                                            7982.64
Benefits                                                NaN
TotalPay                                          112102.04
TotalPayBenefits                                  112102.04
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7240, dtype: object)
(7241, Id                              7242
EmployeeName              ADAM UDLIS
JobTitle            REGISTERED NURSE
BasePay                     111852.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    112102.0
TotalPayBenefits            112102.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7241, dtype: object)
(7242, Id                                                     7243
EmployeeName                                   RAYMOND TANG
JobTitle            SENIOR DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                           103948.01
OvertimePay                                         1911.54
OtherPay                                            6237.31
Benefits                                                NaN
TotalPay                                          112096.86
TotalPayBenefits                                  112096.86
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7242, dtype: object)
(7243, Id                                       7244
EmployeeName                    MARIA CARCAMO
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              97790.27
OvertimePay                            4926.3
OtherPay                              9368.94
Benefits                                  NaN
TotalPay                            112085.51
TotalPayBenefits                    112085.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7243, dtype: object)
(7244, Id                            7245
EmployeeName        KEVIN GONZALES
JobTitle                   PLUMBER
BasePay                   90280.05
OvertimePay               20776.24
OtherPay                    1020.0
Benefits                       NaN
TotalPay                 112076.29
TotalPayBenefits         112076.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7244, dtype: object)
(7245, Id                                  7246
EmployeeName                ROGER MASCIO
JobTitle            ELECTRICAL INSPECTOR
BasePay                         101268.3
OvertimePay                      8782.62
OtherPay                         2024.44
Benefits                             NaN
TotalPay                       112075.36
TotalPayBenefits               112075.36
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7245, dtype: object)
(7246, Id                           7247
EmployeeName            JUDY CHIN
JobTitle                 ENGINEER
BasePay                 112064.67
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                112064.67
TotalPayBenefits        112064.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7246, dtype: object)
(7247, Id                                 7248
EmployeeName                MOSHE WEBER
JobTitle            AIRPORT ELECTRICIAN
BasePay                        95832.56
OvertimePay                    14275.67
OtherPay                         1950.0
Benefits                            NaN
TotalPay                      112058.23
TotalPayBenefits              112058.23
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7247, dtype: object)
(7248, Id                                          7249
EmployeeName        AURELIA PAUL CAMPBELL-KIROSS
JobTitle                        REGISTERED NURSE
BasePay                                101336.03
OvertimePay                              5653.08
OtherPay                                 5066.61
Benefits                                     NaN
TotalPay                               112055.72
TotalPayBenefits                       112055.72
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7248, dtype: object)
(7249, Id                              7250
EmployeeName           DANNY BARAJAS
JobTitle            POLICE OFFICER I
BasePay                     97624.34
OvertimePay                  9835.33
OtherPay                     4590.92
Benefits                         NaN
TotalPay                   112050.59
TotalPayBenefits           112050.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7249, dtype: object)
(7250, Id                                       7251
EmployeeName                    SANAZ NIKAEIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             112049.47
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            112049.47
TotalPayBenefits                    112049.47
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7250, dtype: object)
(7251, Id                                                7252
EmployeeName                                CHARLES FU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   25180.59
OtherPay                                       9285.82
Benefits                                           NaN
TotalPay                                     112046.81
TotalPayBenefits                             112046.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7251, dtype: object)
(7252, Id                                7253
EmployeeName               JAMES SEARS
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.91
OvertimePay                     735.36
OtherPay                       5599.43
Benefits                           NaN
TotalPay                      112032.7
TotalPayBenefits              112032.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7252, dtype: object)
(7253, Id                            7254
EmployeeName          JOSEPH LEAKE
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               19538.42
OtherPay                   5980.85
Benefits                       NaN
TotalPay                 112025.28
TotalPayBenefits         112025.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7253, dtype: object)
(7254, Id                               7255
EmployeeName                KEENT CHU
JobTitle            POLICE OFFICER II
BasePay                       96358.0
OvertimePay                   8313.04
OtherPay                      7349.74
Benefits                          NaN
TotalPay                    112020.78
TotalPayBenefits            112020.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7254, dtype: object)
(7255, Id                               7256
EmployeeName          JASON HERNANDEZ
JobTitle            POLICE OFFICER II
BasePay                     110223.02
OvertimePay                    481.34
OtherPay                      1307.51
Benefits                          NaN
TotalPay                    112011.87
TotalPayBenefits            112011.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7255, dtype: object)
(7256, Id                                      7257
EmployeeName                    ANDREW KARCS
JobTitle            SENIOR HOUSING INSPECTOR
BasePay                            111008.07
OvertimePay                              0.0
OtherPay                              1000.0
Benefits                                 NaN
TotalPay                           112008.07
TotalPayBenefits                   112008.07
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7256, dtype: object)
(7257, Id                                 7258
EmployeeName               ANNA GRAJEDA
JobTitle            PUBLIC HEALTH NURSE
BasePay                       106861.29
OvertimePay                         0.0
OtherPay                         5136.3
Benefits                            NaN
TotalPay                      111997.59
TotalPayBenefits              111997.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7257, dtype: object)
(7258, Id                              7259
EmployeeName           DACK THOMPSON
JobTitle            POLICE OFFICER I
BasePay                    106045.82
OvertimePay                   933.84
OtherPay                     5016.96
Benefits                         NaN
TotalPay                   111996.62
TotalPayBenefits           111996.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7258, dtype: object)
(7259, Id                           7260
EmployeeName          POPE POWELL
JobTitle                MANAGER I
BasePay                 111995.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                111995.56
TotalPayBenefits        111995.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7259, dtype: object)
(7260, Id                                 7261
EmployeeName              DARRYL FIELDS
JobTitle            AIRPORT ELECTRICIAN
BasePay                         95275.8
OvertimePay                      7288.2
OtherPay                        9408.33
Benefits                            NaN
TotalPay                      111972.33
TotalPayBenefits              111972.33
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7260, dtype: object)
(7261, Id                              7262
EmployeeName          RICHARD SOARES
JobTitle            POLICE OFFICER I
BasePay                     94142.85
OvertimePay                  5151.27
OtherPay                    12676.99
Benefits                         NaN
TotalPay                   111971.11
TotalPayBenefits           111971.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7261, dtype: object)
(7262, Id                              7263
EmployeeName         RICHARD SANTANA
JobTitle            REGISTERED NURSE
BasePay                     105751.5
OvertimePay                  1770.87
OtherPay                     4448.28
Benefits                         NaN
TotalPay                   111970.65
TotalPayBenefits           111970.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7262, dtype: object)
(7263, Id                                7264
EmployeeName           MAINA TUIMAVAVE
JobTitle            POLICE OFFICER III
BasePay                      110586.84
OvertimePay                     430.78
OtherPay                        943.12
Benefits                           NaN
TotalPay                     111960.74
TotalPayBenefits             111960.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7263, dtype: object)
(7264, Id                              7265
EmployeeName           VENUS PERALTA
JobTitle            REGISTERED NURSE
BasePay                    100230.32
OvertimePay                  7037.31
OtherPay                     4690.18
Benefits                         NaN
TotalPay                   111957.81
TotalPayBenefits           111957.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7264, dtype: object)
(7265, Id                               7266
EmployeeName              PETER BROWN
JobTitle            PROJECT MANAGER I
BasePay                     111890.81
OvertimePay                       0.0
OtherPay                         60.0
Benefits                          NaN
TotalPay                    111950.81
TotalPayBenefits            111950.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7265, dtype: object)
(7266, Id                              7267
EmployeeName         JEFFREY FORTUNO
JobTitle            POLICE OFFICER I
BasePay                     95328.44
OvertimePay                   5064.1
OtherPay                    11548.53
Benefits                         NaN
TotalPay                   111941.07
TotalPayBenefits           111941.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7266, dtype: object)
(7267, Id                                           7268
EmployeeName                      JOSEPH TIMONERE
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.04
OvertimePay                               8220.94
OtherPay                                  3749.69
Benefits                                      NaN
TotalPay                                111931.67
TotalPayBenefits                        111931.67
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7267, dtype: object)
(7268, Id                                         7269
EmployeeName                    REGINA THARAYIL
JobTitle            PRINCIPAL PERSONNEL ANALYST
BasePay                               111924.69
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              111924.69
TotalPayBenefits                      111924.69
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7268, dtype: object)
(7269, Id                              7270
EmployeeName            RANDALL BUCK
JobTitle            TRANSIT OPERATOR
BasePay                     65129.97
OvertimePay                 44560.23
OtherPay                      2231.3
Benefits                         NaN
TotalPay                    111921.5
TotalPayBenefits            111921.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7269, dtype: object)
(7270, Id                              7271
EmployeeName            NGOZI ONYIKE
JobTitle            REGISTERED NURSE
BasePay                    100403.28
OvertimePay                  8042.64
OtherPay                     3455.16
Benefits                         NaN
TotalPay                   111901.08
TotalPayBenefits           111901.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7270, dtype: object)
(7271, Id                               7272
EmployeeName           RIGOBERTO HARO
JobTitle            POLICE OFFICER II
BasePay                       96520.0
OvertimePay                   3421.32
OtherPay                     11951.19
Benefits                          NaN
TotalPay                    111892.51
TotalPayBenefits            111892.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7271, dtype: object)
(7272, Id                               7273
EmployeeName           MEGHAN TIERNAN
JobTitle            PROJECT MANAGER I
BasePay                     111892.27
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    111892.27
TotalPayBenefits            111892.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7272, dtype: object)
(7273, Id                               7274
EmployeeName          JACOB GILCHRIST
JobTitle            PROJECT MANAGER I
BasePay                     111892.15
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    111892.15
TotalPayBenefits            111892.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7273, dtype: object)
(7274, Id                               7275
EmployeeName           PAULINA ARAICA
JobTitle            PROJECT MANAGER I
BasePay                     111891.33
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    111891.33
TotalPayBenefits            111891.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7274, dtype: object)
(7275, Id                                 7276
EmployeeName        KAREN MAUNEY-BRODEK
JobTitle              PROJECT MANAGER I
BasePay                       111891.17
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      111891.17
TotalPayBenefits              111891.17
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7275, dtype: object)
(7276, Id                                7277
EmployeeName                ROSALYN YU
JobTitle            ASSOCIATE ENGINEER
BasePay                      111431.28
OvertimePay                        0.0
OtherPay                         459.8
Benefits                           NaN
TotalPay                     111891.08
TotalPayBenefits             111891.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7276, dtype: object)
(7277, Id                               7278
EmployeeName               PATTI VIRI
JobTitle            PROJECT MANAGER I
BasePay                     111891.05
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    111891.05
TotalPayBenefits            111891.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7277, dtype: object)
(7278, Id                                7279
EmployeeName          KENNETH SPIELMAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      111891.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     111891.04
TotalPayBenefits             111891.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7278, dtype: object)
(7279, Id                                7280
EmployeeName             KIRIT BAVISHI
JobTitle            ASSOCIATE ENGINEER
BasePay                      111891.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     111891.02
TotalPayBenefits             111891.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7279, dtype: object)
(7280, Id                                7281
EmployeeName               VIVIAN CHOW
JobTitle            ASSOCIATE ENGINEER
BasePay                       111891.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      111891.0
TotalPayBenefits              111891.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7280, dtype: object)
(7281, Id                                 7282
EmployeeName        CHRISTOPHER MCMANUS
JobTitle             ASSOCIATE ENGINEER
BasePay                       111436.92
OvertimePay                         0.0
OtherPay                         454.04
Benefits                            NaN
TotalPay                      111890.96
TotalPayBenefits              111890.96
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7281, dtype: object)
(7282, Id                                7283
EmployeeName             TROY COURTNEY
JobTitle            POLICE OFFICER III
BasePay                      110194.08
OvertimePay                        0.0
OtherPay                       1695.12
Benefits                           NaN
TotalPay                      111889.2
TotalPayBenefits              111889.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7282, dtype: object)
(7283, Id                                        7284
EmployeeName                       SAMUEL CHUI
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               111888.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              111888.0
TotalPayBenefits                      111888.0
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7283, dtype: object)
(7284, Id                               7285
EmployeeName        JENNIFER FIORELLO
JobTitle             POLICE OFFICER I
BasePay                      92510.16
OvertimePay                   6894.08
OtherPay                     12480.47
Benefits                          NaN
TotalPay                    111884.71
TotalPayBenefits            111884.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7284, dtype: object)
(7285, Id                                               7286
EmployeeName                                CHONG NIE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96811.2
OvertimePay                                   5813.57
OtherPay                                      9259.45
Benefits                                          NaN
TotalPay                                    111884.22
TotalPayBenefits                            111884.22
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7285, dtype: object)
(7286, Id                             7287
EmployeeName          PETER QUIGLEY
JobTitle            UTILITY PLUMBER
BasePay                    91188.31
OvertimePay                11954.81
OtherPay                    8724.64
Benefits                        NaN
TotalPay                  111867.76
TotalPayBenefits          111867.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7286, dtype: object)
(7287, Id                                      7288
EmployeeName                      BARRY NEAL
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                            100825.59
OvertimePay                         10313.44
OtherPay                               711.0
Benefits                                 NaN
TotalPay                           111850.03
TotalPayBenefits                   111850.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7287, dtype: object)
(7288, Id                              7289
EmployeeName            AUDREY SMITH
JobTitle            REGISTERED NURSE
BasePay                     95219.46
OvertimePay                  7477.51
OtherPay                     9136.05
Benefits                         NaN
TotalPay                   111833.02
TotalPayBenefits           111833.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7288, dtype: object)
(7289, Id                               7290
EmployeeName                 MABEL NG
JobTitle            DEPUTY DIRECTOR I
BasePay                     111825.63
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    111825.63
TotalPayBenefits            111825.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7289, dtype: object)
(7290, Id                                                               7291
EmployeeName                                           NORMAN NICKENS
JobTitle            EXECUTIVE ASSISTANT TO THE GENERAL MANAGER, RE...
BasePay                                                     111821.33
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    111821.33
TotalPayBenefits                                            111821.33
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7290, dtype: object)
(7291, Id                                                     7292
EmployeeName                              PEDRO MENDOZA JR.
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            99054.37
OvertimePay                                         4606.88
OtherPay                                            8157.29
Benefits                                                NaN
TotalPay                                          111818.54
TotalPayBenefits                                  111818.54
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7291, dtype: object)
(7292, Id                                              7293
EmployeeName                         JEFF CHING CHIU
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73449.58
OvertimePay                                 34042.43
OtherPay                                     4322.41
Benefits                                         NaN
TotalPay                                   111814.42
TotalPayBenefits                           111814.42
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7292, dtype: object)
(7293, Id                                              7294
EmployeeName                             KAILEY WONG
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                     94938.32
OvertimePay                                  6690.18
OtherPay                                    10185.74
Benefits                                         NaN
TotalPay                                   111814.24
TotalPayBenefits                           111814.24
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7293, dtype: object)
(7294, Id                                 7295
EmployeeName                  DAVID FOK
JobTitle            SUPERVISING CHEMIST
BasePay                       110464.43
OvertimePay                         0.0
OtherPay                        1347.66
Benefits                            NaN
TotalPay                      111812.09
TotalPayBenefits              111812.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7294, dtype: object)
(7295, Id                                      7296
EmployeeName                       JOHN REEB
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            111811.72
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           111811.72
TotalPayBenefits                   111811.72
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7295, dtype: object)
(7296, Id                                      7297
EmployeeName                     GIGI RICASA
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                             111811.7
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            111811.7
TotalPayBenefits                    111811.7
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7296, dtype: object)
(7297, Id                                      7298
EmployeeName                      DIANE ARTZ
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            111811.67
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           111811.67
TotalPayBenefits                   111811.67
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7297, dtype: object)
(7298, Id                                      7299
EmployeeName                    TERESA RIVOR
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            111811.49
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           111811.49
TotalPayBenefits                   111811.49
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7298, dtype: object)
(7299, Id                                   7300
EmployeeName                    BRIAN SAK
JobTitle            SUPERVISING BIOLOGIST
BasePay                         111086.35
OvertimePay                           0.0
OtherPay                           724.75
Benefits                              NaN
TotalPay                         111811.1
TotalPayBenefits                 111811.1
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7299, dtype: object)
(7300, Id                                      7301
EmployeeName                       RONDA CHU
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            111811.09
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           111811.09
TotalPayBenefits                   111811.09
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7300, dtype: object)
(7301, Id                                      7302
EmployeeName                 JELINA ENRIQUEZ
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            111811.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           111811.06
TotalPayBenefits                   111811.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7301, dtype: object)
(7302, Id                                   7303
EmployeeName              MICHAEL KELLOGG
JobTitle            SUPERVISING BIOLOGIST
BasePay                         111076.03
OvertimePay                           0.0
OtherPay                           733.73
Benefits                              NaN
TotalPay                        111809.76
TotalPayBenefits                111809.76
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7302, dtype: object)
(7303, Id                           7304
EmployeeName        TIM PATRIARCA
JobTitle               MANAGER VI
BasePay                 104748.93
OvertimePay                   0.0
OtherPay                  7052.55
Benefits                      NaN
TotalPay                111801.48
TotalPayBenefits        111801.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7303, dtype: object)
(7304, Id                                                      7305
EmployeeName                                 MARILENE HARVEY
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             91360.92
OvertimePay                                         11436.44
OtherPay                                             8998.09
Benefits                                                 NaN
TotalPay                                           111795.45
TotalPayBenefits                                   111795.45
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7304, dtype: object)
(7305, Id                              7306
EmployeeName                AMY WELS
JobTitle            REGISTERED NURSE
BasePay                    104915.63
OvertimePay                  1068.57
OtherPay                     5798.44
Benefits                         NaN
TotalPay                   111782.64
TotalPayBenefits           111782.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7305, dtype: object)
(7306, Id                                    7307
EmployeeName                    MARY MERAW
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           100539.1
OvertimePay                        1352.92
OtherPay                           9887.94
Benefits                               NaN
TotalPay                         111779.96
TotalPayBenefits                 111779.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7306, dtype: object)
(7307, Id                               7308
EmployeeName        JANET CASTELLANOS
JobTitle             REGISTERED NURSE
BasePay                      98484.51
OvertimePay                   8042.64
OtherPay                      5245.28
Benefits                          NaN
TotalPay                    111772.43
TotalPayBenefits            111772.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7307, dtype: object)
(7308, Id                                    7309
EmployeeName                 DANIEL FICHER
JobTitle            MAINTENANCE CONTROLLER
BasePay                           89106.63
OvertimePay                        8606.82
OtherPay                           14026.0
Benefits                               NaN
TotalPay                         111739.45
TotalPayBenefits                 111739.45
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7308, dtype: object)
(7309, Id                                7310
EmployeeName        CECILLE LORE AGUJA
JobTitle              REGISTERED NURSE
BasePay                       98958.86
OvertimePay                    6456.27
OtherPay                       6322.99
Benefits                           NaN
TotalPay                     111738.12
TotalPayBenefits             111738.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7309, dtype: object)
(7310, Id                                   7311
EmployeeName                 PAMELA DAVIS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.81
OvertimePay                       9201.99
OtherPay                          6650.22
Benefits                              NaN
TotalPay                        111734.02
TotalPayBenefits                111734.02
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7310, dtype: object)
(7311, Id                                7312
EmployeeName               RICK WILSON
JobTitle            MAYORAL STAFF XVII
BasePay                      111173.99
OvertimePay                        0.0
OtherPay                        554.53
Benefits                           NaN
TotalPay                     111728.52
TotalPayBenefits             111728.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7311, dtype: object)
(7312, Id                              7313
EmployeeName             ALVARO MORA
JobTitle            POLICE OFFICER I
BasePay                     94539.84
OvertimePay                  6727.24
OtherPay                    10449.67
Benefits                         NaN
TotalPay                   111716.75
TotalPayBenefits           111716.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7312, dtype: object)
(7313, Id                              7314
EmployeeName          TERRI KERLEGAN
JobTitle            POLICE OFFICER I
BasePay                     85782.07
OvertimePay                  5666.21
OtherPay                    20254.68
Benefits                         NaN
TotalPay                   111702.96
TotalPayBenefits           111702.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7313, dtype: object)
(7314, Id                              7315
EmployeeName          CANDIECE LEWIS
JobTitle            POLICE OFFICER I
BasePay                     97652.95
OvertimePay                  3646.99
OtherPay                    10399.45
Benefits                         NaN
TotalPay                   111699.39
TotalPayBenefits           111699.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7314, dtype: object)
(7315, Id                              7316
EmployeeName        REMILDA BRACEROS
JobTitle            REGISTERED NURSE
BasePay                    100760.01
OvertimePay                  6033.06
OtherPay                     4903.67
Benefits                         NaN
TotalPay                   111696.74
TotalPayBenefits           111696.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7315, dtype: object)
(7316, Id                                   7317
EmployeeName                MAZEN BARBARI
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95816.11
OvertimePay                       6914.57
OtherPay                          8949.55
Benefits                              NaN
TotalPay                        111680.23
TotalPayBenefits                111680.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7316, dtype: object)
(7317, Id                           7318
EmployeeName        ANGELA PATANE
JobTitle               MANAGER II
BasePay                 111598.19
OvertimePay                   0.0
OtherPay                    78.88
Benefits                      NaN
TotalPay                111677.07
TotalPayBenefits        111677.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7317, dtype: object)
(7318, Id                                7319
EmployeeName        ALEXANDER LAWRENCE
JobTitle                   MANAGER III
BasePay                       109752.6
OvertimePay                        0.0
OtherPay                       1923.18
Benefits                           NaN
TotalPay                     111675.78
TotalPayBenefits             111675.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7318, dtype: object)
(7319, Id                                         7320
EmployeeName                    MANDANA SIYADAT
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               109067.42
OvertimePay                                 0.0
OtherPay                                2601.52
Benefits                                    NaN
TotalPay                              111668.94
TotalPayBenefits                      111668.94
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7319, dtype: object)
(7320, Id                                 7321
EmployeeName          MARIA LACSON-KUAN
JobTitle            CLAIMS INVESTIGATOR
BasePay                         84694.9
OvertimePay                     17093.2
OtherPay                        9869.92
Benefits                            NaN
TotalPay                      111658.02
TotalPayBenefits              111658.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7320, dtype: object)
(7321, Id                              7322
EmployeeName         SUZANNE GARNIER
JobTitle            REGISTERED NURSE
BasePay                    107035.11
OvertimePay                    344.7
OtherPay                      4270.1
Benefits                         NaN
TotalPay                   111649.91
TotalPayBenefits           111649.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7321, dtype: object)
(7322, Id                              7323
EmployeeName            TINA GIMENEZ
JobTitle            REGISTERED NURSE
BasePay                    104339.25
OvertimePay                      0.0
OtherPay                     7309.11
Benefits                         NaN
TotalPay                   111648.36
TotalPayBenefits           111648.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7322, dtype: object)
(7323, Id                              7324
EmployeeName          KATHLEEN LYNCH
JobTitle            REGISTERED NURSE
BasePay                     111390.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    111640.0
TotalPayBenefits            111640.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7323, dtype: object)
(7324, Id                               7325
EmployeeName            GERALD BERNAL
JobTitle            POLICE OFFICER II
BasePay                      94836.38
OvertimePay                   8126.57
OtherPay                      8674.25
Benefits                          NaN
TotalPay                     111637.2
TotalPayBenefits             111637.2
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7324, dtype: object)
(7325, Id                                                7326
EmployeeName                            PETER ESHABARR
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   25989.64
OtherPay                                       8059.32
Benefits                                           NaN
TotalPay                                     111629.36
TotalPayBenefits                             111629.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7325, dtype: object)
(7326, Id                           7327
EmployeeName        MICHAEL TSANG
JobTitle                 ENGINEER
BasePay                 111613.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                111613.03
TotalPayBenefits        111613.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7326, dtype: object)
(7327, Id                            7328
EmployeeName        PATRICK SCHOCH
JobTitle            DEPUTY SHERIFF
BasePay                   86840.03
OvertimePay               12227.76
OtherPay                  12537.43
Benefits                       NaN
TotalPay                 111605.22
TotalPayBenefits         111605.22
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7327, dtype: object)
(7328, Id                              7329
EmployeeName          ANTONIO SANTOS
JobTitle            POLICE OFFICER I
BasePay                     94131.31
OvertimePay                  9040.45
OtherPay                     8422.25
Benefits                         NaN
TotalPay                   111594.01
TotalPayBenefits           111594.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7328, dtype: object)
(7329, Id                                                   7330
EmployeeName                            HUMBERTO QUINONEZ
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                          100196.6
OvertimePay                                        222.58
OtherPay                                         11172.25
Benefits                                              NaN
TotalPay                                        111591.43
TotalPayBenefits                                111591.43
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7329, dtype: object)
(7330, Id                              7331
EmployeeName             ELLEN DAVIS
JobTitle            REGISTERED NURSE
BasePay                    102825.23
OvertimePay                  3108.78
OtherPay                     5657.13
Benefits                         NaN
TotalPay                   111591.14
TotalPayBenefits           111591.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7330, dtype: object)
(7331, Id                             7332
EmployeeName        DEBORAH NEVILLE
JobTitle             COURT REPORTER
BasePay                    105765.6
OvertimePay                     0.0
OtherPay                     5816.6
Benefits                        NaN
TotalPay                   111582.2
TotalPayBenefits           111582.2
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7331, dtype: object)
(7332, Id                            7333
EmployeeName           ANN MENDOZA
JobTitle            COURT REPORTER
BasePay                   105765.6
OvertimePay                    0.0
OtherPay                    5816.6
Benefits                       NaN
TotalPay                  111582.2
TotalPayBenefits          111582.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7332, dtype: object)
(7333, Id                             7334
EmployeeName        JACQUELINE CHAN
JobTitle             COURT REPORTER
BasePay                    105765.6
OvertimePay                     0.0
OtherPay                     5816.6
Benefits                        NaN
TotalPay                   111582.2
TotalPayBenefits           111582.2
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7333, dtype: object)
(7334, Id                            7335
EmployeeName            MITCH LYON
JobTitle            COURT REPORTER
BasePay                   105765.6
OvertimePay                    0.0
OtherPay                    5816.6
Benefits                       NaN
TotalPay                  111582.2
TotalPayBenefits          111582.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7334, dtype: object)
(7335, Id                              7336
EmployeeName          CAREL TROUTMAN
JobTitle            REGISTERED NURSE
BasePay                    100317.77
OvertimePay                  6187.71
OtherPay                     5070.85
Benefits                         NaN
TotalPay                   111576.33
TotalPayBenefits           111576.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7335, dtype: object)
(7336, Id                                               7337
EmployeeName                                JAMES WIN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96033.6
OvertimePay                                   5968.32
OtherPay                                      9573.25
Benefits                                          NaN
TotalPay                                    111575.17
TotalPayBenefits                            111575.17
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7336, dtype: object)
(7337, Id                              7338
EmployeeName          FRANCO HERRERA
JobTitle            REGISTERED NURSE
BasePay                     111319.0
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    111569.0
TotalPayBenefits            111569.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7337, dtype: object)
(7338, Id                                                7339
EmployeeName                         ANGELITO CARVAJAL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   27680.93
OtherPay                                       6291.42
Benefits                                           NaN
TotalPay                                     111552.75
TotalPayBenefits                             111552.75
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7338, dtype: object)
(7339, Id                                 7340
EmployeeName        CHRISTOPHER DOWNING
JobTitle               POLICE OFFICER I
BasePay                       100934.33
OvertimePay                     2039.03
OtherPay                        8575.56
Benefits                            NaN
TotalPay                      111548.92
TotalPayBenefits              111548.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7339, dtype: object)
(7340, Id                                            7341
EmployeeName                      JOSEPH RODRIGUES
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   82132.17
OvertimePay                               26559.36
OtherPay                                   2849.22
Benefits                                       NaN
TotalPay                                 111540.75
TotalPayBenefits                         111540.75
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7340, dtype: object)
(7341, Id                           7342
EmployeeName           SUSAN HUNG
JobTitle            SPECIAL NURSE
BasePay                  89396.67
OvertimePay              11311.75
OtherPay                 10830.54
Benefits                      NaN
TotalPay                111538.96
TotalPayBenefits        111538.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7341, dtype: object)
(7342, Id                                                   7343
EmployeeName                                  MARK HARRIS
JobTitle            SEWAGE TREATMENT PLANT SUPERINTENDENT
BasePay                                         110618.64
OvertimePay                                           0.0
OtherPay                                           919.22
Benefits                                              NaN
TotalPay                                        111537.86
TotalPayBenefits                                111537.86
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7342, dtype: object)
(7343, Id                              7344
EmployeeName             EDDIE CLARK
JobTitle            TRANSIT OPERATOR
BasePay                     69135.27
OvertimePay                 34790.51
OtherPay                     7608.46
Benefits                         NaN
TotalPay                   111534.24
TotalPayBenefits           111534.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7343, dtype: object)
(7344, Id                              7345
EmployeeName           KARYN SANCHEZ
JobTitle            REGISTERED NURSE
BasePay                     93661.07
OvertimePay                  4679.88
OtherPay                    13190.46
Benefits                         NaN
TotalPay                   111531.41
TotalPayBenefits           111531.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7344, dtype: object)
(7345, Id                                 7346
EmployeeName           ABRAHAM BOLLOZOS
JobTitle            AIRPORT ELECTRICIAN
BasePay                         96437.7
OvertimePay                     5633.59
OtherPay                        9457.08
Benefits                            NaN
TotalPay                      111528.37
TotalPayBenefits              111528.37
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7345, dtype: object)
(7346, Id                                       7347
EmployeeName                       MABEL JUNG
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             111265.33
OvertimePay                               0.0
OtherPay                                250.0
Benefits                                  NaN
TotalPay                            111515.33
TotalPayBenefits                    111515.33
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7346, dtype: object)
(7347, Id                               7348
EmployeeName              SHERIE WONG
JobTitle            POLICE OFFICER II
BasePay                     110223.05
OvertimePay                       0.0
OtherPay                      1288.64
Benefits                          NaN
TotalPay                    111511.69
TotalPayBenefits            111511.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7347, dtype: object)
(7348, Id                             7349
EmployeeName           JOSE JIMENEZ
JobTitle            SWITCH REPAIRER
BasePay                     61538.4
OvertimePay                46386.77
OtherPay                    3586.21
Benefits                        NaN
TotalPay                  111511.38
TotalPayBenefits          111511.38
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7348, dtype: object)
(7349, Id                                                               7350
EmployeeName                                                WILMAN NG
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      85138.19
OvertimePay                                                  18834.66
OtherPay                                                      7537.24
Benefits                                                          NaN
TotalPay                                                    111510.09
TotalPayBenefits                                            111510.09
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7349, dtype: object)
(7350, Id                                   7351
EmployeeName                  GALEN LEUNG
JobTitle            SUPERVISING PURCHASER
BasePay                         111495.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        111495.51
TotalPayBenefits                111495.51
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7350, dtype: object)
(7351, Id                                               7352
EmployeeName                      WILLIAM PRENDERGAST
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96811.2
OvertimePay                                   3462.81
OtherPay                                      11210.0
Benefits                                          NaN
TotalPay                                    111484.01
TotalPayBenefits                            111484.01
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7351, dtype: object)
(7352, Id                                   7353
EmployeeName        CHRISTOPHER BEAUCHAMP
JobTitle                POLICE OFFICER II
BasePay                         103994.82
OvertimePay                        3959.0
OtherPay                           3520.0
Benefits                              NaN
TotalPay                        111473.82
TotalPayBenefits                111473.82
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7352, dtype: object)
(7353, Id                                           7354
EmployeeName                      FRANK AUGUSTINE
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  102461.0
OvertimePay                                   0.0
OtherPay                                  9000.14
Benefits                                      NaN
TotalPay                                111461.14
TotalPayBenefits                        111461.14
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7353, dtype: object)
(7354, Id                                             7355
EmployeeName                         KIMBERLY STERN
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   107800.59
OvertimePay                                     0.0
OtherPay                                     3657.8
Benefits                                        NaN
TotalPay                                  111458.39
TotalPayBenefits                          111458.39
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7354, dtype: object)
(7355, Id                             7356
EmployeeName             MARK CLARK
JobTitle            UTILITY PLUMBER
BasePay                     90098.4
OvertimePay                   131.2
OtherPay                   21207.04
Benefits                        NaN
TotalPay                  111436.64
TotalPayBenefits          111436.64
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7355, dtype: object)
(7356, Id                                                     7357
EmployeeName                                KAREN COLINDRES
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78127.06
OvertimePay                                        20501.24
OtherPay                                           12798.91
Benefits                                                NaN
TotalPay                                          111427.21
TotalPayBenefits                                  111427.21
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7356, dtype: object)
(7357, Id                              7358
EmployeeName            STEVEN KEITH
JobTitle            POLICE OFFICER I
BasePay                    106046.07
OvertimePay                  1864.49
OtherPay                     3506.91
Benefits                         NaN
TotalPay                   111417.47
TotalPayBenefits           111417.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7357, dtype: object)
(7358, Id                                       7359
EmployeeName                   EDWARD SOLOMON
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92861.5
OvertimePay                          18032.15
OtherPay                                520.0
Benefits                                  NaN
TotalPay                            111413.65
TotalPayBenefits                    111413.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7358, dtype: object)
(7359, Id                               7360
EmployeeName        JACQUELINE PEPPER
JobTitle             REGISTERED NURSE
BasePay                      96328.04
OvertimePay                  10364.83
OtherPay                      4713.56
Benefits                          NaN
TotalPay                    111406.43
TotalPayBenefits            111406.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7359, dtype: object)
(7360, Id                                                  7361
EmployeeName                                  DONALD GEE
JobTitle            ELECTRICAL TRANSIT SHOP SUPERVISOR I
BasePay                                        109160.83
OvertimePay                                      2184.98
OtherPay                                            60.0
Benefits                                             NaN
TotalPay                                       111405.81
TotalPayBenefits                               111405.81
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 7360, dtype: object)
(7361, Id                              7362
EmployeeName           JUDITH CHAVEZ
JobTitle            REGISTERED NURSE
BasePay                    100940.07
OvertimePay                   8058.6
OtherPay                      2404.7
Benefits                         NaN
TotalPay                   111403.37
TotalPayBenefits           111403.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7361, dtype: object)
(7362, Id                              7363
EmployeeName         NENITA GONZALES
JobTitle            REGISTERED NURSE
BasePay                     97405.65
OvertimePay                   9751.0
OtherPay                     4242.74
Benefits                         NaN
TotalPay                   111399.39
TotalPayBenefits           111399.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7362, dtype: object)
(7363, Id                            7364
EmployeeName            BAILEY LIM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               11768.35
OtherPay                   12790.3
Benefits                       NaN
TotalPay                 111398.65
TotalPayBenefits         111398.65
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7363, dtype: object)
(7364, Id                                  7365
EmployeeName        MARIA JANETT NAVARRO
JobTitle                REGISTERED NURSE
BasePay                         97692.67
OvertimePay                      6856.98
OtherPay                         6848.83
Benefits                             NaN
TotalPay                       111398.48
TotalPayBenefits               111398.48
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7364, dtype: object)
(7365, Id                              7366
EmployeeName           ERIC EASTLUND
JobTitle            POLICE OFFICER I
BasePay                     91799.92
OvertimePay                  6171.68
OtherPay                    13425.67
Benefits                         NaN
TotalPay                   111397.27
TotalPayBenefits           111397.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7365, dtype: object)
(7366, Id                                                  7367
EmployeeName                              KENNETH ESLICK
JobTitle            POWER HOUSE ELECTRICIAN SUPERVISOR I
BasePay                                        101871.64
OvertimePay                                      5881.89
OtherPay                                         3639.02
Benefits                                             NaN
TotalPay                                       111392.55
TotalPayBenefits                               111392.55
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 7366, dtype: object)
(7367, Id                              7368
EmployeeName          MA ISABEL CRUZ
JobTitle            REGISTERED NURSE
BasePay                     110262.0
OvertimePay                    432.4
OtherPay                      693.21
Benefits                         NaN
TotalPay                   111387.61
TotalPayBenefits           111387.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7367, dtype: object)
(7368, Id                                      7369
EmployeeName                    ANTONIO BUSH
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                            102072.32
OvertimePay                          4242.92
OtherPay                             5066.26
Benefits                                 NaN
TotalPay                            111381.5
TotalPayBenefits                    111381.5
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7368, dtype: object)
(7369, Id                               7370
EmployeeName            GREGORY SKAUG
JobTitle            POLICE OFFICER II
BasePay                      95329.35
OvertimePay                   1822.68
OtherPay                     14229.29
Benefits                          NaN
TotalPay                    111381.32
TotalPayBenefits            111381.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7369, dtype: object)
(7370, Id                                7371
EmployeeName            ADAM PLANTINGA
JobTitle            POLICE OFFICER III
BasePay                       98051.72
OvertimePay                    1132.43
OtherPay                      12189.97
Benefits                           NaN
TotalPay                     111374.12
TotalPayBenefits             111374.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7370, dtype: object)
(7371, Id                                   7372
EmployeeName                 VINCENT CHEW
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                       4365.03
OtherPay                         11118.45
Benefits                              NaN
TotalPay                        111365.28
TotalPayBenefits                111365.28
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7371, dtype: object)
(7372, Id                              7373
EmployeeName           RAYMOND ORTIZ
JobTitle            POLICE OFFICER I
BasePay                    106065.16
OvertimePay                   338.43
OtherPay                     4960.59
Benefits                         NaN
TotalPay                   111364.18
TotalPayBenefits           111364.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7372, dtype: object)
(7373, Id                              7374
EmployeeName           THEOATIS HILL
JobTitle            TRANSIT OPERATOR
BasePay                      67668.1
OvertimePay                  38797.7
OtherPay                     4898.36
Benefits                         NaN
TotalPay                   111364.16
TotalPayBenefits           111364.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7373, dtype: object)
(7374, Id                                               7375
EmployeeName                               ROBERT LAI
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      99046.22
OvertimePay                                   3749.76
OtherPay                                      8564.01
Benefits                                          NaN
TotalPay                                    111359.99
TotalPayBenefits                            111359.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7374, dtype: object)
(7375, Id                              7376
EmployeeName             JOHN SIRLES
JobTitle            TRANSIT OPERATOR
BasePay                     64969.39
OvertimePay                 44501.19
OtherPay                      1886.7
Benefits                         NaN
TotalPay                   111357.28
TotalPayBenefits           111357.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7375, dtype: object)
(7376, Id                              7377
EmployeeName                 MIKE NG
JobTitle            TRANSIT OPERATOR
BasePay                      64193.3
OvertimePay                 44687.31
OtherPay                     2471.65
Benefits                         NaN
TotalPay                   111352.26
TotalPayBenefits           111352.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7376, dtype: object)
(7377, Id                               7378
EmployeeName        WILLIAM PALLADINO
JobTitle             POLICE OFFICER I
BasePay                      95743.82
OvertimePay                   5738.62
OtherPay                      9869.75
Benefits                          NaN
TotalPay                    111352.19
TotalPayBenefits            111352.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7377, dtype: object)
(7378, Id                              7379
EmployeeName             KEVIN GRADY
JobTitle            TRANSIT OPERATOR
BasePay                     67967.44
OvertimePay                 39892.98
OtherPay                     3465.93
Benefits                         NaN
TotalPay                   111326.35
TotalPayBenefits           111326.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7378, dtype: object)
(7379, Id                                        7380
EmployeeName                     RAMON PADILLA
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                86524.4
OvertimePay                            15000.1
OtherPay                               9799.27
Benefits                                   NaN
TotalPay                             111323.77
TotalPayBenefits                     111323.77
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7379, dtype: object)
(7380, Id                           7381
EmployeeName        CARLA PEGUESE
JobTitle            SPECIAL NURSE
BasePay                 100909.22
OvertimePay               1937.03
OtherPay                  8477.39
Benefits                      NaN
TotalPay                111323.64
TotalPayBenefits        111323.64
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7380, dtype: object)
(7381, Id                             7382
EmployeeName            GREG HUBLEY
JobTitle            UTILITY PLUMBER
BasePay                    89553.52
OvertimePay                13364.74
OtherPay                    8403.61
Benefits                        NaN
TotalPay                  111321.87
TotalPayBenefits          111321.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7381, dtype: object)
(7382, Id                               7383
EmployeeName         MATTHEW FRIEDMAN
JobTitle            POLICE OFFICER II
BasePay                      100756.4
OvertimePay                   2296.74
OtherPay                      8264.41
Benefits                          NaN
TotalPay                    111317.55
TotalPayBenefits            111317.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7382, dtype: object)
(7383, Id                                        7384
EmployeeName                   JAIME ARGUELLES
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               90465.11
OvertimePay                                0.0
OtherPay                              20845.96
Benefits                                   NaN
TotalPay                             111311.07
TotalPayBenefits                     111311.07
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7383, dtype: object)
(7384, Id                                                      7385
EmployeeName                                   EFREN BRIONES
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90574.56
OvertimePay                                         11810.38
OtherPay                                             8920.91
Benefits                                                 NaN
TotalPay                                           111305.85
TotalPayBenefits                                   111305.85
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7384, dtype: object)
(7385, Id                              7386
EmployeeName          PAVEL KONEVSKY
JobTitle            REGISTERED NURSE
BasePay                     97846.02
OvertimePay                   6825.7
OtherPay                      6633.7
Benefits                         NaN
TotalPay                   111305.42
TotalPayBenefits           111305.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7385, dtype: object)
(7386, Id                             7387
EmployeeName        GERALD WILLIAMS
JobTitle             SAFETY ANALYST
BasePay                   109716.61
OvertimePay                     0.0
OtherPay                     1578.4
Benefits                        NaN
TotalPay                  111295.01
TotalPayBenefits          111295.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7386, dtype: object)
(7387, Id                                       7388
EmployeeName                    JAMES STRUBLE
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                               91858.0
OvertimePay                               0.0
OtherPay                             19433.74
Benefits                                  NaN
TotalPay                            111291.74
TotalPayBenefits                    111291.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7387, dtype: object)
(7388, Id                                               7389
EmployeeName                              GINO GANOZA
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       73659.6
OvertimePay                                  36884.29
OtherPay                                        740.0
Benefits                                          NaN
TotalPay                                    111283.89
TotalPayBenefits                            111283.89
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7388, dtype: object)
(7389, Id                            7390
EmployeeName          YOLANDA RICE
JobTitle            DEPUTY SHERIFF
BasePay                   85816.71
OvertimePay               14034.99
OtherPay                  11421.64
Benefits                       NaN
TotalPay                 111273.34
TotalPayBenefits         111273.34
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7389, dtype: object)
(7390, Id                                7391
EmployeeName            KAREN PANDOLFI
JobTitle            POLICE OFFICER III
BasePay                      111258.72
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     111258.72
TotalPayBenefits             111258.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7390, dtype: object)
(7391, Id                              7392
EmployeeName           ANNE DEVICAIS
JobTitle            REGISTERED NURSE
BasePay                    107960.06
OvertimePay                  2901.86
OtherPay                      385.01
Benefits                         NaN
TotalPay                   111246.93
TotalPayBenefits           111246.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7391, dtype: object)
(7392, Id                            7393
EmployeeName         ROBERT HANLEY
JobTitle            CHIEF SURVEYOR
BasePay                   111213.2
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  111213.2
TotalPayBenefits          111213.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7392, dtype: object)
(7393, Id                                             7394
EmployeeName                            TREVOR D'SA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   111206.05
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  111206.05
TotalPayBenefits                          111206.05
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7393, dtype: object)
(7394, Id                               7395
EmployeeName        JAMILLA CHURCHILL
JobTitle             REGISTERED NURSE
BasePay                      91250.92
OvertimePay                   5466.69
OtherPay                     14474.66
Benefits                          NaN
TotalPay                    111192.27
TotalPayBenefits            111192.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7394, dtype: object)
(7395, Id                                       7396
EmployeeName                       GENE WELCH
JobTitle            ELECTRICIAN SUPERVISOR II
BasePay                              110400.0
OvertimePay                             786.6
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             111186.6
TotalPayBenefits                     111186.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7395, dtype: object)
(7396, Id                              7397
EmployeeName            JASON NEGRON
JobTitle            REGISTERED NURSE
BasePay                     94432.69
OvertimePay                  5217.21
OtherPay                    11497.01
Benefits                         NaN
TotalPay                   111146.91
TotalPayBenefits           111146.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7396, dtype: object)
(7397, Id                                                               7398
EmployeeName                                         MICHAEL DULDULAO
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      88478.62
OvertimePay                                                   5205.73
OtherPay                                                     17439.29
Benefits                                                          NaN
TotalPay                                                    111123.64
TotalPayBenefits                                            111123.64
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7397, dtype: object)
(7398, Id                            7399
EmployeeName        PATRICK CONROY
JobTitle             BIOLOGIST III
BasePay                  106492.14
OvertimePay                    0.0
OtherPay                   4630.98
Benefits                       NaN
TotalPay                 111123.12
TotalPayBenefits         111123.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7398, dtype: object)
(7399, Id                                              7400
EmployeeName                      JAN CROSBIE TAYLOR
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    108323.18
OvertimePay                                  2189.44
OtherPay                                      610.05
Benefits                                         NaN
TotalPay                                   111122.67
TotalPayBenefits                           111122.67
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7399, dtype: object)
(7400, Id                            7401
EmployeeName        LAURA LOMBARDI
JobTitle                  ENGINEER
BasePay                  110972.03
OvertimePay                    0.0
OtherPay                    138.21
Benefits                       NaN
TotalPay                 111110.24
TotalPayBenefits         111110.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7400, dtype: object)
(7401, Id                               7402
EmployeeName             MATTHEW COLE
JobTitle            POLICE OFFICER II
BasePay                     110302.19
OvertimePay                       0.0
OtherPay                       807.35
Benefits                          NaN
TotalPay                    111109.54
TotalPayBenefits            111109.54
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7401, dtype: object)
(7402, Id                                               7403
EmployeeName                                JAMES LEE
JobTitle            PARKING ENFORCEMENT ADMINISTRATOR
BasePay                                      85123.02
OvertimePay                                   20999.5
OtherPay                                      4986.21
Benefits                                          NaN
TotalPay                                    111108.73
TotalPayBenefits                            111108.73
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7402, dtype: object)
(7403, Id                           7404
EmployeeName         SUSAN SCHEER
JobTitle                MANAGER I
BasePay                 106506.16
OvertimePay                   0.0
OtherPay                   4600.0
Benefits                      NaN
TotalPay                111106.16
TotalPayBenefits        111106.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7403, dtype: object)
(7404, Id                               7405
EmployeeName        MARIA CRISTI DIAZ
JobTitle             REGISTERED NURSE
BasePay                      103333.8
OvertimePay                   4274.98
OtherPay                      3487.05
Benefits                          NaN
TotalPay                    111095.83
TotalPayBenefits            111095.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7404, dtype: object)
(7405, Id                                        7406
EmployeeName                       DEBRA JONES
JobTitle            DIAGNOSTIC IMAGING TECH IV
BasePay                              110890.37
OvertimePay                                0.0
OtherPay                                 200.0
Benefits                                   NaN
TotalPay                             111090.37
TotalPayBenefits                     111090.37
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7405, dtype: object)
(7406, Id                               7407
EmployeeName             BECKI NEWMAN
JobTitle            POLICE OFFICER II
BasePay                     110242.94
OvertimePay                      3.38
OtherPay                       824.53
Benefits                          NaN
TotalPay                    111070.85
TotalPayBenefits            111070.85
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7406, dtype: object)
(7407, Id                                                      7408
EmployeeName                                   LISA O'MALLEY
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                            111062.46
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           111062.46
TotalPayBenefits                                   111062.46
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7407, dtype: object)
(7408, Id                               7409
EmployeeName               JOEL BABBS
JobTitle            POLICE OFFICER II
BasePay                      110238.4
OvertimePay                       0.0
OtherPay                       819.02
Benefits                          NaN
TotalPay                    111057.42
TotalPayBenefits            111057.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7408, dtype: object)
(7409, Id                               7410
EmployeeName         KAHRI GILL-KEHOE
JobTitle            POLICE OFFICER II
BasePay                     110230.16
OvertimePay                       0.0
OtherPay                       819.93
Benefits                          NaN
TotalPay                    111050.09
TotalPayBenefits            111050.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7409, dtype: object)
(7410, Id                                 7411
EmployeeName             CHRISTINE NATH
JobTitle            IS PROJECT DIRECTOR
BasePay                        111041.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       111041.5
TotalPayBenefits               111041.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7410, dtype: object)
(7411, Id                                              7412
EmployeeName                          EDWARD ACEVEDO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    111031.72
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   111031.72
TotalPayBenefits                           111031.72
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7411, dtype: object)
(7412, Id                           7413
EmployeeName         JOSE ARRIOLA
JobTitle                   WELDER
BasePay                   76491.8
OvertimePay              34363.02
OtherPay                   175.46
Benefits                      NaN
TotalPay                111030.28
TotalPayBenefits        111030.28
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7412, dtype: object)
(7413, Id                             7414
EmployeeName        TYNITHIA BONNER
JobTitle             DEPUTY SHERIFF
BasePay                    86506.01
OvertimePay                19939.93
OtherPay                    4582.54
Benefits                        NaN
TotalPay                  111028.48
TotalPayBenefits          111028.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7413, dtype: object)
(7414, Id                                                      7415
EmployeeName                                  CHRISTINA FONG
JobTitle            SENIOR EMPLOYEE RELATIONS REPRESENTATIVE
BasePay                                            111020.05
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           111020.05
TotalPayBenefits                                   111020.05
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7414, dtype: object)
(7415, Id                                 7416
EmployeeName            JAMMIE RISINGER
JobTitle            AIRPORT ELECTRICIAN
BasePay                        94888.51
OvertimePay                    14033.66
OtherPay                         2090.0
Benefits                            NaN
TotalPay                      111012.17
TotalPayBenefits              111012.17
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7415, dtype: object)
(7416, Id                                                      7417
EmployeeName                                     JOHNSON OJO
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                            111009.02
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           111009.02
TotalPayBenefits                                   111009.02
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7416, dtype: object)
(7417, Id                                                      7418
EmployeeName                                  SCOTT NAKAMURA
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                            111008.55
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           111008.55
TotalPayBenefits                                   111008.55
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7417, dtype: object)
(7418, Id                                      7419
EmployeeName                    ALAN DAVISON
JobTitle            SENIOR HOUSING INSPECTOR
BasePay                             111008.2
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            111008.2
TotalPayBenefits                    111008.2
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7418, dtype: object)
(7419, Id                                                      7420
EmployeeName                               STEPHANIE CUSHING
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                            111008.08
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           111008.08
TotalPayBenefits                                   111008.08
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7419, dtype: object)
(7420, Id                              7421
EmployeeName         REBECCA SALAZAR
JobTitle            REGISTERED NURSE
BasePay                     97264.53
OvertimePay                  2042.95
OtherPay                    11696.45
Benefits                         NaN
TotalPay                   111003.93
TotalPayBenefits           111003.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7420, dtype: object)
(7421, Id                                  7422
EmployeeName                  GLENN NASH
JobTitle            PAINTER SUPERVISOR I
BasePay                         86150.07
OvertimePay                     22453.04
OtherPay                         2376.89
Benefits                             NaN
TotalPay                        110980.0
TotalPayBenefits                110980.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7421, dtype: object)
(7422, Id                                 7423
EmployeeName              ENRIQUE MEJIA
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71151.27
OvertimePay                    25321.23
OtherPay                       14485.36
Benefits                            NaN
TotalPay                      110957.86
TotalPayBenefits              110957.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7422, dtype: object)
(7423, Id                                                      7424
EmployeeName                                      KENNY WONG
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                            110955.54
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           110955.54
TotalPayBenefits                                   110955.54
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7423, dtype: object)
(7424, Id                            7425
EmployeeName        DERRY MOTEN II
JobTitle                 MANAGER I
BasePay                  103437.35
OvertimePay                    0.0
OtherPay                   7515.74
Benefits                       NaN
TotalPay                 110953.09
TotalPayBenefits         110953.09
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7424, dtype: object)
(7425, Id                                   7426
EmployeeName             MICHAEL ANDERSON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.57
OvertimePay                      10872.12
OtherPay                          3818.41
Benefits                              NaN
TotalPay                         110943.1
TotalPayBenefits                 110943.1
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7425, dtype: object)
(7426, Id                           7427
EmployeeName         SO-MAN LEUNG
JobTitle                 ENGINEER
BasePay                 108996.01
OvertimePay                   0.0
OtherPay                  1943.97
Benefits                      NaN
TotalPay                110939.98
TotalPayBenefits        110939.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7426, dtype: object)
(7427, Id                               7428
EmployeeName        BRETT KACZMARCZYK
JobTitle             POLICE OFFICER I
BasePay                     106026.96
OvertimePay                   3813.78
OtherPay                      1093.98
Benefits                          NaN
TotalPay                    110934.72
TotalPayBenefits            110934.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7427, dtype: object)
(7428, Id                              7429
EmployeeName                 LAN LAU
JobTitle            TRANSIT OPERATOR
BasePay                     64728.21
OvertimePay                 43784.12
OtherPay                     2419.39
Benefits                         NaN
TotalPay                   110931.72
TotalPayBenefits           110931.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7428, dtype: object)
(7429, Id                                7430
EmployeeName              CARMEN WALSH
JobTitle            POLICE OFFICER III
BasePay                      108574.99
OvertimePay                      27.59
OtherPay                       2323.44
Benefits                           NaN
TotalPay                     110926.02
TotalPayBenefits             110926.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7429, dtype: object)
(7430, Id                              7431
EmployeeName            GIDAY BESHUE
JobTitle            REGISTERED NURSE
BasePay                    101751.21
OvertimePay                  2239.66
OtherPay                     6922.12
Benefits                         NaN
TotalPay                   110912.99
TotalPayBenefits           110912.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7430, dtype: object)
(7431, Id                              7432
EmployeeName        RICHARD GULINGAN
JobTitle            TRANSIT OPERATOR
BasePay                     65565.97
OvertimePay                 41095.44
OtherPay                     4240.28
Benefits                         NaN
TotalPay                   110901.69
TotalPayBenefits           110901.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7431, dtype: object)
(7432, Id                                7433
EmployeeName              LEROY WILSON
JobTitle            TRANSIT SUPERVISOR
BasePay                       83172.02
OvertimePay                   22687.36
OtherPay                       5039.34
Benefits                           NaN
TotalPay                     110898.72
TotalPayBenefits             110898.72
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7432, dtype: object)
(7433, Id                                                      7434
EmployeeName                                CHARLES COPELAND
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             99383.91
OvertimePay                                           4341.1
OtherPay                                             7172.27
Benefits                                                 NaN
TotalPay                                           110897.28
TotalPayBenefits                                   110897.28
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7433, dtype: object)
(7434, Id                           7435
EmployeeName          THOMAS JANG
JobTitle                 ENGINEER
BasePay                 106126.03
OvertimePay                   0.0
OtherPay                  4758.49
Benefits                      NaN
TotalPay                110884.52
TotalPayBenefits        110884.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7434, dtype: object)
(7435, Id                           7436
EmployeeName         PAUL LORD-JR
JobTitle               PLANNER IV
BasePay                 110874.18
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                110874.18
TotalPayBenefits        110874.18
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7435, dtype: object)
(7436, Id                                 7437
EmployeeName               DIAN STAVREV
JobTitle            AIRPORT ELECTRICIAN
BasePay                         95275.8
OvertimePay                    11686.26
OtherPay                        3910.31
Benefits                            NaN
TotalPay                      110872.37
TotalPayBenefits              110872.37
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7436, dtype: object)
(7437, Id                                7438
EmployeeName              SANFORD PONG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                       6386.25
Benefits                           NaN
TotalPay                     110872.28
TotalPayBenefits             110872.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7437, dtype: object)
(7438, Id                                                      7439
EmployeeName                                   THOMAS RIVARD
JobTitle            PRINCIPAL ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                             110849.1
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            110849.1
TotalPayBenefits                                    110849.1
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7438, dtype: object)
(7439, Id                              7440
EmployeeName         BEATRIZ AGUILAR
JobTitle            REGISTERED NURSE
BasePay                     99446.59
OvertimePay                  7037.31
OtherPay                     4361.04
Benefits                         NaN
TotalPay                   110844.94
TotalPayBenefits           110844.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7439, dtype: object)
(7440, Id                                                      7441
EmployeeName                                     THOMAS SUJO
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             85344.29
OvertimePay                                         17090.49
OtherPay                                             8408.77
Benefits                                                 NaN
TotalPay                                           110843.55
TotalPayBenefits                                   110843.55
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7440, dtype: object)
(7441, Id                              7442
EmployeeName               SEUNG LEE
JobTitle            REGISTERED NURSE
BasePay                     99354.71
OvertimePay                  6703.28
OtherPay                     4766.37
Benefits                         NaN
TotalPay                   110824.36
TotalPayBenefits           110824.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7441, dtype: object)
(7442, Id                                 7443
EmployeeName               JOHN ASCARIZ
JobTitle            STATIONARY ENGINEER
BasePay                        72410.06
OvertimePay                    32952.85
OtherPay                        5431.37
Benefits                            NaN
TotalPay                      110794.28
TotalPayBenefits              110794.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7442, dtype: object)
(7443, Id                                            7444
EmployeeName                          DAVID O'KANE
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   69831.47
OvertimePay                               37139.24
OtherPay                                   3821.72
Benefits                                       NaN
TotalPay                                 110792.43
TotalPayBenefits                         110792.43
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7443, dtype: object)
(7444, Id                                       7445
EmployeeName                  VICTORIA SANTOS
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             107382.02
OvertimePay                               0.0
OtherPay                               3404.0
Benefits                                  NaN
TotalPay                            110786.02
TotalPayBenefits                    110786.02
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7444, dtype: object)
(7445, Id                                 7446
EmployeeName          KELLY CHUKUNTAROD
JobTitle            PUBLIC HEALTH NURSE
BasePay                        109044.0
OvertimePay                         0.0
OtherPay                        1732.09
Benefits                            NaN
TotalPay                      110776.09
TotalPayBenefits              110776.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7445, dtype: object)
(7446, Id                                   7447
EmployeeName                   ANNA PAYNE
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95882.5
OvertimePay                       6168.97
OtherPay                          8719.67
Benefits                              NaN
TotalPay                        110771.14
TotalPayBenefits                110771.14
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7446, dtype: object)
(7447, Id                                                     7448
EmployeeName                                 STEVEN KOHMANN
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            99859.41
OvertimePay                                         3419.83
OtherPay                                            7489.51
Benefits                                                NaN
TotalPay                                          110768.75
TotalPayBenefits                                  110768.75
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7447, dtype: object)
(7448, Id                                                7449
EmployeeName                                 JOHN WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77609.73
OvertimePay                                    23913.2
OtherPay                                       9243.91
Benefits                                           NaN
TotalPay                                     110766.84
TotalPayBenefits                             110766.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7448, dtype: object)
(7449, Id                           7450
EmployeeName           BRIAN BYUN
JobTitle                 ENGINEER
BasePay                  110417.4
OvertimePay                   0.0
OtherPay                    345.0
Benefits                      NaN
TotalPay                 110762.4
TotalPayBenefits         110762.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7449, dtype: object)
(7450, Id                              7451
EmployeeName             TRICIA WONG
JobTitle            REGISTERED NURSE
BasePay                    107843.89
OvertimePay                  1037.37
OtherPay                     1878.96
Benefits                         NaN
TotalPay                   110760.22
TotalPayBenefits           110760.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7450, dtype: object)
(7451, Id                              7452
EmployeeName              ERIC PEREZ
JobTitle            POLICE OFFICER I
BasePay                     106065.2
OvertimePay                  3001.48
OtherPay                     1691.01
Benefits                         NaN
TotalPay                   110757.69
TotalPayBenefits           110757.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7451, dtype: object)
(7452, Id                            7453
EmployeeName        CURTIS EDWARDS
JobTitle            DEPUTY SHERIFF
BasePay                    86172.0
OvertimePay               18361.66
OtherPay                   6213.53
Benefits                       NaN
TotalPay                 110747.19
TotalPayBenefits         110747.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7452, dtype: object)
(7453, Id                                      7454
EmployeeName                  JEFFREY GILMAN
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.02
OvertimePay                           635.25
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           110745.27
TotalPayBenefits                   110745.27
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7453, dtype: object)
(7454, Id                                7455
EmployeeName            CHRISTINE TANG
JobTitle            ASSOCIATE ENGINEER
BasePay                      110724.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     110724.01
TotalPayBenefits             110724.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7454, dtype: object)
(7455, Id                                    7456
EmployeeName                  PAUL BASSETT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106324.33
OvertimePay                         1706.2
OtherPay                           2689.72
Benefits                               NaN
TotalPay                         110720.25
TotalPayBenefits                 110720.25
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7455, dtype: object)
(7456, Id                           7457
EmployeeName          SAPNA PATEL
JobTitle            SPECIAL NURSE
BasePay                  91649.47
OvertimePay               6500.21
OtherPay                 12569.22
Benefits                      NaN
TotalPay                 110718.9
TotalPayBenefits         110718.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7456, dtype: object)
(7457, Id                              7458
EmployeeName        MANUEL RODRIGUEZ
JobTitle                    ENGINEER
BasePay                     110716.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    110716.0
TotalPayBenefits            110716.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7457, dtype: object)
(7458, Id                                        7459
EmployeeName                       DAVIS W SIU
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103883.3
OvertimePay                             6182.1
OtherPay                                 640.0
Benefits                                   NaN
TotalPay                              110705.4
TotalPayBenefits                      110705.4
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7458, dtype: object)
(7459, Id                           7460
EmployeeName         JAMES HODGIN
JobTitle              FIREFIGHTER
BasePay                   56220.0
OvertimePay              18726.02
OtherPay                 35753.08
Benefits                      NaN
TotalPay                 110699.1
TotalPayBenefits         110699.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7459, dtype: object)
(7460, Id                           7461
EmployeeName          JONAS IONIN
JobTitle               PLANNER IV
BasePay                 110697.42
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                110697.42
TotalPayBenefits        110697.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7460, dtype: object)
(7461, Id                           7462
EmployeeName        TIMMY SANDERS
JobTitle            SPECIAL NURSE
BasePay                 105145.34
OvertimePay                5257.6
OtherPay                    287.3
Benefits                      NaN
TotalPay                110690.24
TotalPayBenefits        110690.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7461, dtype: object)
(7462, Id                                    7463
EmployeeName                 DAREN BRANNAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          101371.35
OvertimePay                            0.0
OtherPay                           9314.77
Benefits                               NaN
TotalPay                         110686.12
TotalPayBenefits                 110686.12
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7462, dtype: object)
(7463, Id                                   7464
EmployeeName               MELANIE VAUGHN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.83
OvertimePay                       7862.38
OtherPay                          6926.21
Benefits                              NaN
TotalPay                        110670.42
TotalPayBenefits                110670.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7463, dtype: object)
(7464, Id                            7465
EmployeeName          JAMES SHARPE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               17308.63
OtherPay                   6519.68
Benefits                       NaN
TotalPay                 110668.31
TotalPayBenefits         110668.31
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7464, dtype: object)
(7465, Id                                 7466
EmployeeName                    BEN LEE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73703.45
OvertimePay                    16759.92
OtherPay                       20189.62
Benefits                            NaN
TotalPay                      110652.99
TotalPayBenefits              110652.99
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7465, dtype: object)
(7466, Id                              7467
EmployeeName          MARIBETH RIDAY
JobTitle            REGISTERED NURSE
BasePay                     109174.0
OvertimePay                      0.0
OtherPay                      1450.0
Benefits                         NaN
TotalPay                    110624.0
TotalPayBenefits            110624.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7466, dtype: object)
(7467, Id                              7468
EmployeeName        MILA DEL ROSARIO
JobTitle            REGISTERED NURSE
BasePay                    107166.62
OvertimePay                   1830.6
OtherPay                     1611.48
Benefits                         NaN
TotalPay                    110608.7
TotalPayBenefits            110608.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7467, dtype: object)
(7468, Id                              7469
EmployeeName           AGUSTIN PEREZ
JobTitle            POLICE OFFICER I
BasePay                     97911.56
OvertimePay                  6797.13
OtherPay                      5889.3
Benefits                         NaN
TotalPay                   110597.99
TotalPayBenefits           110597.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7468, dtype: object)
(7469, Id                            7470
EmployeeName            MARK PROIA
JobTitle            CRIMINALIST II
BasePay                  101418.05
OvertimePay                9162.06
OtherPay                     13.61
Benefits                       NaN
TotalPay                 110593.72
TotalPayBenefits         110593.72
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7469, dtype: object)
(7470, Id                                7471
EmployeeName             MICHAEL BROWN
JobTitle            UTILITY SPECIALIST
BasePay                      110585.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     110585.01
TotalPayBenefits             110585.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7470, dtype: object)
(7471, Id                              7472
EmployeeName              TAEEUN KIM
JobTitle            REGISTERED NURSE
BasePay                      98788.4
OvertimePay                  5165.06
OtherPay                     6628.21
Benefits                         NaN
TotalPay                   110581.67
TotalPayBenefits           110581.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7471, dtype: object)
(7472, Id                              7473
EmployeeName           ANNETTE WHITE
JobTitle            REGISTERED NURSE
BasePay                    110314.77
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   110564.77
TotalPayBenefits           110564.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7472, dtype: object)
(7473, Id                           7474
EmployeeName        DEBRA NEBREDA
JobTitle               MANAGER II
BasePay                 110564.11
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                110564.11
TotalPayBenefits        110564.11
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7473, dtype: object)
(7474, Id                                              7475
EmployeeName                           CHERYL SPERRY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     101478.9
OvertimePay                                      0.0
OtherPay                                     9085.02
Benefits                                         NaN
TotalPay                                   110563.92
TotalPayBenefits                           110563.92
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7474, dtype: object)
(7475, Id                                 7476
EmployeeName        PORNSOWANG DECHARAT
JobTitle               REGISTERED NURSE
BasePay                        109044.0
OvertimePay                      1258.2
OtherPay                          250.0
Benefits                            NaN
TotalPay                       110552.2
TotalPayBenefits               110552.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7475, dtype: object)
(7476, Id                               7477
EmployeeName        EMIKO THEODORIDIS
JobTitle               DEPUTY SHERIFF
BasePay                      86840.01
OvertimePay                  17720.48
OtherPay                      5984.84
Benefits                          NaN
TotalPay                    110545.33
TotalPayBenefits            110545.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7476, dtype: object)
(7477, Id                                 7478
EmployeeName               KRISTI MARCH
JobTitle            CLINICAL PHARMACIST
BasePay                       104171.12
OvertimePay                         0.0
OtherPay                        6366.45
Benefits                            NaN
TotalPay                      110537.57
TotalPayBenefits              110537.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7477, dtype: object)
(7478, Id                              7479
EmployeeName        GRANVILLE TONGUE
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                 17645.44
OtherPay                     6050.81
Benefits                         NaN
TotalPay                   110536.25
TotalPayBenefits           110536.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7478, dtype: object)
(7479, Id                            7480
EmployeeName          ANITRA PRADO
JobTitle            DEPUTY SHERIFF
BasePay                   82900.93
OvertimePay               16617.02
OtherPay                  11014.31
Benefits                       NaN
TotalPay                 110532.26
TotalPayBenefits         110532.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7479, dtype: object)
(7480, Id                                7481
EmployeeName               HUBERT WONG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.1
OvertimePay                        0.0
OtherPay                       6024.86
Benefits                           NaN
TotalPay                     110510.96
TotalPayBenefits             110510.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7480, dtype: object)
(7481, Id                                        7482
EmployeeName                   YVONNE WHITLOCK
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              100880.24
OvertimePay                            7037.65
OtherPay                               2579.95
Benefits                                   NaN
TotalPay                             110497.84
TotalPayBenefits                     110497.84
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7481, dtype: object)
(7482, Id                                                7483
EmployeeName                           DONALD KYLES JR
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   32474.66
OtherPay                                         435.0
Benefits                                           NaN
TotalPay                                     110490.07
TotalPayBenefits                             110490.07
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7482, dtype: object)
(7483, Id                                     7484
EmployeeName                   RAFAEL GUGOL
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.01
OvertimePay                        32510.77
OtherPay                             1505.0
Benefits                                NaN
TotalPay                          110489.78
TotalPayBenefits                  110489.78
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7483, dtype: object)
(7484, Id                                                 7485
EmployeeName                             BRENDAN CONRAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       109409.75
OvertimePay                                         0.0
OtherPay                                        1079.55
Benefits                                            NaN
TotalPay                                       110489.3
TotalPayBenefits                               110489.3
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7484, dtype: object)
(7485, Id                               7486
EmployeeName        VINCENTE ZAMBRANA
JobTitle               DEPUTY SHERIFF
BasePay                      86641.29
OvertimePay                  13337.42
OtherPay                     10494.97
Benefits                          NaN
TotalPay                    110473.68
TotalPayBenefits            110473.68
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7485, dtype: object)
(7486, Id                                       7487
EmployeeName                    TIFFANY TISEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             110468.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            110468.92
TotalPayBenefits                    110468.92
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7486, dtype: object)
(7487, Id                                       7488
EmployeeName                     JOSHUA LURIA
JobTitle            SENIOR PHYSICAL THERAPIST
BasePay                             110465.86
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            110465.86
TotalPayBenefits                    110465.86
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7487, dtype: object)
(7488, Id                              7489
EmployeeName          RYAN DAUGHERTY
JobTitle            POLICE OFFICER I
BasePay                     96686.88
OvertimePay                   3504.7
OtherPay                    10273.85
Benefits                         NaN
TotalPay                   110465.43
TotalPayBenefits           110465.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7488, dtype: object)
(7489, Id                                                      7490
EmployeeName                                  RANDY HOLLIDAY
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                              87807.9
OvertimePay                                          19514.3
OtherPay                                             3139.74
Benefits                                                 NaN
TotalPay                                           110461.94
TotalPayBenefits                                   110461.94
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7489, dtype: object)
(7490, Id                              7491
EmployeeName           STEVE SICKLES
JobTitle            TRANSIT OPERATOR
BasePay                     71626.75
OvertimePay                 35815.66
OtherPay                      2996.6
Benefits                         NaN
TotalPay                   110439.01
TotalPayBenefits           110439.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7490, dtype: object)
(7491, Id                            7492
EmployeeName          JOSE PADILLA
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               12245.36
OtherPay                  11348.95
Benefits                       NaN
TotalPay                 110434.31
TotalPayBenefits         110434.31
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7491, dtype: object)
(7492, Id                              7493
EmployeeName          GILBERT ROSHER
JobTitle            TRANSIT OPERATOR
BasePay                     68370.67
OvertimePay                 34887.88
OtherPay                     7175.66
Benefits                         NaN
TotalPay                   110434.21
TotalPayBenefits           110434.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7492, dtype: object)
(7493, Id                             7494
EmployeeName        TERRENCE DANIEL
JobTitle                MANAGER III
BasePay                   108298.67
OvertimePay                     0.0
OtherPay                    2133.84
Benefits                        NaN
TotalPay                  110432.51
TotalPayBenefits          110432.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7493, dtype: object)
(7494, Id                              7495
EmployeeName        ANTHONY RANDOLPH
JobTitle            POLICE OFFICER I
BasePay                      92031.5
OvertimePay                  7308.17
OtherPay                    11087.62
Benefits                         NaN
TotalPay                   110427.29
TotalPayBenefits           110427.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7494, dtype: object)
(7495, Id                              7496
EmployeeName            NICOLAS PENA
JobTitle            POLICE OFFICER I
BasePay                     94543.96
OvertimePay                  5072.98
OtherPay                    10803.11
Benefits                         NaN
TotalPay                   110420.05
TotalPayBenefits           110420.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7495, dtype: object)
(7496, Id                                 7497
EmployeeName               RICHARD WONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        68204.57
OvertimePay                    26013.99
OtherPay                       16198.19
Benefits                            NaN
TotalPay                      110416.75
TotalPayBenefits              110416.75
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7496, dtype: object)
(7497, Id                                                          7498
EmployeeName                                           JASON LEE
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                110408.05
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               110408.05
TotalPayBenefits                                       110408.05
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 7497, dtype: object)
(7498, Id                              7499
EmployeeName           JENNIFER CHOI
JobTitle            REGISTERED NURSE
BasePay                    102768.48
OvertimePay                  1921.93
OtherPay                     5708.94
Benefits                         NaN
TotalPay                   110399.35
TotalPayBenefits           110399.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7498, dtype: object)
(7499, Id                             7500
EmployeeName         ANTHONY PIAZZA
JobTitle            UTILITY PLUMBER
BasePay                    80926.01
OvertimePay                20844.24
OtherPay                    8624.78
Benefits                        NaN
TotalPay                  110395.03
TotalPayBenefits          110395.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7499, dtype: object)
(7500, Id                              7501
EmployeeName           ALICIA ALACCE
JobTitle            REGISTERED NURSE
BasePay                    100325.41
OvertimePay                      0.0
OtherPay                    10065.87
Benefits                         NaN
TotalPay                   110391.28
TotalPayBenefits           110391.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7500, dtype: object)
(7501, Id                              7502
EmployeeName         WILLARD LINDSAY
JobTitle            TRANSIT OPERATOR
BasePay                     66793.42
OvertimePay                 41653.59
OtherPay                     1938.47
Benefits                         NaN
TotalPay                   110385.48
TotalPayBenefits           110385.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7501, dtype: object)
(7502, Id                                     7503
EmployeeName               VINCENT YONG TIM
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76185.01
OvertimePay                        32680.56
OtherPay                             1505.0
Benefits                                NaN
TotalPay                          110370.57
TotalPayBenefits                  110370.57
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7502, dtype: object)
(7503, Id                              7504
EmployeeName        STEPHANIE SOMMER
JobTitle               SPECIAL NURSE
BasePay                    100441.58
OvertimePay                  6648.29
OtherPay                      3276.4
Benefits                         NaN
TotalPay                   110366.27
TotalPayBenefits           110366.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7503, dtype: object)
(7504, Id                                      7505
EmployeeName                 BRANDON GRISSOM
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.08
OvertimePay                           238.22
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            110348.3
TotalPayBenefits                    110348.3
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7504, dtype: object)
(7505, Id                                           7506
EmployeeName                         RONALD ADAMS
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.01
OvertimePay                               8446.75
OtherPay                                  1937.64
Benefits                                      NaN
TotalPay                                 110345.4
TotalPayBenefits                         110345.4
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7505, dtype: object)
(7506, Id                                 7507
EmployeeName        JACQUELINE SELINGER
JobTitle               POLICE OFFICER I
BasePay                       105870.11
OvertimePay                         0.0
OtherPay                        4463.29
Benefits                            NaN
TotalPay                       110333.4
TotalPayBenefits               110333.4
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7506, dtype: object)
(7507, Id                               7508
EmployeeName        CHRISTOPHER LEONG
JobTitle             POLICE OFFICER I
BasePay                     104981.48
OvertimePay                       0.0
OtherPay                      5331.04
Benefits                          NaN
TotalPay                    110312.52
TotalPayBenefits            110312.52
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7507, dtype: object)
(7508, Id                                    7509
EmployeeName                 NELSON AVELAR
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          102652.25
OvertimePay                         564.12
OtherPay                           7092.21
Benefits                               NaN
TotalPay                         110308.58
TotalPayBenefits                 110308.58
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7508, dtype: object)
(7509, Id                                   7510
EmployeeName                CHERYLL BAKER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96253.52
OvertimePay                       2283.68
OtherPay                         11765.88
Benefits                              NaN
TotalPay                        110303.08
TotalPayBenefits                110303.08
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7509, dtype: object)
(7510, Id                              7511
EmployeeName          LEONARD MORROW
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                   2673.7
OtherPay                     1580.19
Benefits                         NaN
TotalPay                   110299.97
TotalPayBenefits           110299.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7510, dtype: object)
(7511, Id                               7512
EmployeeName            RENAE HOFMANN
JobTitle            POLICE OFFICER II
BasePay                     104909.93
OvertimePay                   2293.45
OtherPay                      3090.84
Benefits                          NaN
TotalPay                    110294.22
TotalPayBenefits            110294.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7511, dtype: object)
(7512, Id                                       7513
EmployeeName                    JAMIE PADOVER
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              105404.0
OvertimePay                            1652.0
OtherPay                               3232.1
Benefits                                  NaN
TotalPay                             110288.1
TotalPayBenefits                     110288.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7512, dtype: object)
(7513, Id                                7514
EmployeeName        CHRISTINA ESTONINA
JobTitle              REGISTERED NURSE
BasePay                      103513.17
OvertimePay                    1951.25
OtherPay                       4818.11
Benefits                           NaN
TotalPay                     110282.53
TotalPayBenefits             110282.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7513, dtype: object)
(7514, Id                           7515
EmployeeName         ASHLEY LOUIE
JobTitle            SPECIAL NURSE
BasePay                 101420.78
OvertimePay                   0.0
OtherPay                   8853.2
Benefits                      NaN
TotalPay                110273.98
TotalPayBenefits        110273.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7514, dtype: object)
(7515, Id                                 7516
EmployeeName            BEVERLY SWEENEY
JobTitle            PUBLIC HEALTH NURSE
BasePay                        104416.9
OvertimePay                         0.0
OtherPay                        5856.15
Benefits                            NaN
TotalPay                      110273.05
TotalPayBenefits              110273.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7515, dtype: object)
(7516, Id                               7517
EmployeeName             JOHNATHON NG
JobTitle            POLICE OFFICER II
BasePay                     102580.14
OvertimePay                   6048.21
OtherPay                      1634.21
Benefits                          NaN
TotalPay                    110262.56
TotalPayBenefits            110262.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7516, dtype: object)
(7517, Id                           7518
EmployeeName         DOYLE MILLER
JobTitle              FIREFIGHTER
BasePay                  56220.02
OvertimePay                   0.0
OtherPay                 54019.97
Benefits                      NaN
TotalPay                110239.99
TotalPayBenefits        110239.99
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7517, dtype: object)
(7518, Id                                             7519
EmployeeName                         DONNA GUILLORY
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                   109261.53
OvertimePay                                     0.0
OtherPay                                     970.47
Benefits                                        NaN
TotalPay                                   110232.0
TotalPayBenefits                           110232.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7518, dtype: object)
(7519, Id                                 7520
EmployeeName        MARIA CECILI MARTIN
JobTitle               REGISTERED NURSE
BasePay                       101441.04
OvertimePay                      4022.4
OtherPay                         4766.4
Benefits                            NaN
TotalPay                      110229.84
TotalPayBenefits              110229.84
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7519, dtype: object)
(7520, Id                                                   7521
EmployeeName                                JENNIFER KASS
JobTitle            GOVERNMENT AND PUBLIC AFFAIRS MANAGER
BasePay                                         110219.06
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        110219.06
TotalPayBenefits                                110219.06
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7520, dtype: object)
(7521, Id                                                   7522
EmployeeName                             SHARYN SASLAFSKY
JobTitle            GOVERNMENT AND PUBLIC AFFAIRS MANAGER
BasePay                                          110219.0
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         110219.0
TotalPayBenefits                                 110219.0
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7521, dtype: object)
(7522, Id                                                   7523
EmployeeName                                  BART BROOME
JobTitle            GOVERNMENT AND PUBLIC AFFAIRS MANAGER
BasePay                                         110218.98
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        110218.98
TotalPayBenefits                                110218.98
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7522, dtype: object)
(7523, Id                                                   7524
EmployeeName                              ANMARIE RODGERS
JobTitle            GOVERNMENT AND PUBLIC AFFAIRS MANAGER
BasePay                                         110218.94
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        110218.94
TotalPayBenefits                                110218.94
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7523, dtype: object)
(7524, Id                            7525
EmployeeName        LAURA PHILLIPS
JobTitle              MANAGER VIII
BasePay                   92862.25
OvertimePay                    0.0
OtherPay                  17351.93
Benefits                       NaN
TotalPay                 110214.18
TotalPayBenefits         110214.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7524, dtype: object)
(7525, Id                           7526
EmployeeName          TRAVIS RAIL
JobTitle              FIREFIGHTER
BasePay                  95232.76
OvertimePay               2785.22
OtherPay                  12190.1
Benefits                      NaN
TotalPay                110208.08
TotalPayBenefits        110208.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7525, dtype: object)
(7526, Id                                                7527
EmployeeName                               RAYMOND GEE
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                        69569.4
OvertimePay                                    29575.7
OtherPay                                      11062.67
Benefits                                           NaN
TotalPay                                     110207.77
TotalPayBenefits                             110207.77
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7526, dtype: object)
(7527, Id                            7528
EmployeeName            JENKIN CHU
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               11004.09
OtherPay                  12358.55
Benefits                       NaN
TotalPay                 110202.64
TotalPayBenefits         110202.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7527, dtype: object)
(7528, Id                              7529
EmployeeName        EVELYN PALOMARES
JobTitle            REGISTERED NURSE
BasePay                     109947.1
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    110197.1
TotalPayBenefits            110197.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7528, dtype: object)
(7529, Id                           7530
EmployeeName           CAROL BACH
JobTitle              MANAGER III
BasePay                  110192.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 110192.3
TotalPayBenefits         110192.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7529, dtype: object)
(7530, Id                                                     7531
EmployeeName                                    JEFFREY WOO
JobTitle            SENIOR DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                           103948.06
OvertimePay                                             0.0
OtherPay                                            6237.36
Benefits                                                NaN
TotalPay                                          110185.42
TotalPayBenefits                                  110185.42
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7530, dtype: object)
(7531, Id                                                       7532
EmployeeName                                      PAUL MORGAN
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                               96050.4
OvertimePay                                           4877.13
OtherPay                                              9243.52
Benefits                                                  NaN
TotalPay                                            110171.05
TotalPayBenefits                                    110171.05
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 7531, dtype: object)
(7532, Id                                       7533
EmployeeName                STEPHANIE BICKHAM
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             110167.65
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            110167.65
TotalPayBenefits                    110167.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7532, dtype: object)
(7533, Id                            7534
EmployeeName           MARCO CALIZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               16466.52
OtherPay                   6852.26
Benefits                       NaN
TotalPay                  110158.8
TotalPayBenefits          110158.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7533, dtype: object)
(7534, Id                              7535
EmployeeName        EDRALINE BENCITO
JobTitle            REGISTERED NURSE
BasePay                    100830.27
OvertimePay                  5027.73
OtherPay                     4297.23
Benefits                         NaN
TotalPay                   110155.23
TotalPayBenefits           110155.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7534, dtype: object)
(7535, Id                                                7536
EmployeeName                                  KENT FAN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   24453.84
OtherPay                                       8123.44
Benefits                                           NaN
TotalPay                                     110146.28
TotalPayBenefits                             110146.28
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7535, dtype: object)
(7536, Id                              7537
EmployeeName          MARLENE MENDEZ
JobTitle            REGISTERED NURSE
BasePay                    101549.14
OvertimePay                   4022.4
OtherPay                     4564.24
Benefits                         NaN
TotalPay                   110135.78
TotalPayBenefits           110135.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7536, dtype: object)
(7537, Id                                                      7538
EmployeeName                                       DARON GEE
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             89458.83
OvertimePay                                          7856.28
OtherPay                                            12796.29
Benefits                                                 NaN
TotalPay                                            110111.4
TotalPayBenefits                                    110111.4
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7537, dtype: object)
(7538, Id                                   7539
EmployeeName                 MICHAEL REID
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.85
OvertimePay                        6732.3
OtherPay                          7495.94
Benefits                              NaN
TotalPay                        110110.09
TotalPayBenefits                110110.09
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7538, dtype: object)
(7539, Id                                      7540
EmployeeName                     AMOD DHAKAL
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           110110.06
TotalPayBenefits                   110110.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7539, dtype: object)
(7540, Id                                      7541
EmployeeName                CARLA SCHULTHEIS
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           110110.02
TotalPayBenefits                   110110.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7540, dtype: object)
(7541, Id                                      7542
EmployeeName                    JOHN FOURNET
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           110110.02
TotalPayBenefits                   110110.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7541, dtype: object)
(7542, Id                                      7543
EmployeeName                    JOHN CHESTER
JobTitle            WATER OPERATIONS ANALYST
BasePay                            110110.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           110110.02
TotalPayBenefits                   110110.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7542, dtype: object)
(7543, Id                           7544
EmployeeName        KERRY WILHITE
JobTitle               MANAGER II
BasePay                 110097.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                110097.16
TotalPayBenefits        110097.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7543, dtype: object)
(7544, Id                            7545
EmployeeName              BRIAN LO
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               11873.49
OtherPay                  11372.59
Benefits                       NaN
TotalPay                 110086.08
TotalPayBenefits         110086.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7544, dtype: object)
(7545, Id                              7546
EmployeeName           LENIE DE VERA
JobTitle            REGISTERED NURSE
BasePay                      97583.9
OvertimePay                   6825.7
OtherPay                     5665.76
Benefits                         NaN
TotalPay                   110075.36
TotalPayBenefits           110075.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7545, dtype: object)
(7546, Id                                7547
EmployeeName               GRAIG WELLS
JobTitle            POLICE OFFICER III
BasePay                       96914.05
OvertimePay                    3141.32
OtherPay                      10011.58
Benefits                           NaN
TotalPay                     110066.95
TotalPayBenefits             110066.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7546, dtype: object)
(7547, Id                              7548
EmployeeName             PETE TRACHY
JobTitle            REGISTERED NURSE
BasePay                     96717.42
OvertimePay                  4212.42
OtherPay                      9129.8
Benefits                         NaN
TotalPay                   110059.64
TotalPayBenefits           110059.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7547, dtype: object)
(7548, Id                                         7549
EmployeeName           SHEILA WASHINGTON-ANDREW
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               109168.44
OvertimePay                                 0.0
OtherPay                                  874.0
Benefits                                    NaN
TotalPay                              110042.44
TotalPayBenefits                      110042.44
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7548, dtype: object)
(7549, Id                                         7550
EmployeeName                           JIMMY HO
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                               106597.18
OvertimePay                              134.94
OtherPay                                3305.34
Benefits                                    NaN
TotalPay                              110037.46
TotalPayBenefits                      110037.46
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7549, dtype: object)
(7550, Id                                                          7551
EmployeeName                                    ANNETTE WILLIAMS
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                110036.19
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               110036.19
TotalPayBenefits                                       110036.19
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 7550, dtype: object)
(7551, Id                                      7552
EmployeeName        YVONNE FUENTES-PATTISHAL
JobTitle                    REGISTERED NURSE
BasePay                            108987.58
OvertimePay                              0.0
OtherPay                             1030.06
Benefits                                 NaN
TotalPay                           110017.64
TotalPayBenefits                   110017.64
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7551, dtype: object)
(7552, Id                              7553
EmployeeName        TIFFANY ELIZARDE
JobTitle            REGISTERED NURSE
BasePay                    104293.82
OvertimePay                      0.0
OtherPay                     5704.96
Benefits                         NaN
TotalPay                   109998.78
TotalPayBenefits           109998.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7552, dtype: object)
(7553, Id                               7554
EmployeeName        BRIDGETTE HANDLOS
JobTitle             REGISTERED NURSE
BasePay                      99843.42
OvertimePay                   2076.02
OtherPay                      8077.64
Benefits                          NaN
TotalPay                    109997.08
TotalPayBenefits            109997.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7553, dtype: object)
(7554, Id                            7555
EmployeeName        FREDERICK SASS
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               16122.48
OtherPay                   7027.34
Benefits                       NaN
TotalPay                 109989.82
TotalPayBenefits         109989.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7554, dtype: object)
(7555, Id                              7556
EmployeeName          MICHAEL DISKIN
JobTitle            POLICE OFFICER I
BasePay                    106046.08
OvertimePay                  2881.05
OtherPay                     1060.01
Benefits                         NaN
TotalPay                   109987.14
TotalPayBenefits           109987.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7555, dtype: object)
(7556, Id                             7557
EmployeeName        PATRICK GAZZANO
JobTitle                STEAMFITTER
BasePay                    89553.45
OvertimePay                 16883.9
OtherPay                    3548.84
Benefits                        NaN
TotalPay                  109986.19
TotalPayBenefits          109986.19
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7556, dtype: object)
(7557, Id                                     7558
EmployeeName        TONYETTE SMITH-AL-GHANI
JobTitle                     DEPUTY SHERIFF
BasePay                            85271.47
OvertimePay                        23927.29
OtherPay                             785.35
Benefits                                NaN
TotalPay                          109984.11
TotalPayBenefits                  109984.11
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7557, dtype: object)
(7558, Id                                                 7559
EmployeeName                                  CINDY LEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       109269.06
OvertimePay                                         0.0
OtherPay                                          714.0
Benefits                                            NaN
TotalPay                                      109983.06
TotalPayBenefits                              109983.06
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7558, dtype: object)
(7559, Id                            7560
EmployeeName          DARRYL JONES
JobTitle            DEPUTY SHERIFF
BasePay                   85094.43
OvertimePay                13187.9
OtherPay                   11698.7
Benefits                       NaN
TotalPay                 109981.03
TotalPayBenefits         109981.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7559, dtype: object)
(7560, Id                                7561
EmployeeName            BARBARA DULLEA
JobTitle            POLICE OFFICER III
BasePay                      106449.42
OvertimePay                    2121.32
OtherPay                       1404.69
Benefits                           NaN
TotalPay                     109975.43
TotalPayBenefits             109975.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7560, dtype: object)
(7561, Id                                              7562
EmployeeName                             JOERN KROLL
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                     109356.0
OvertimePay                                   552.02
OtherPay                                        61.0
Benefits                                         NaN
TotalPay                                   109969.02
TotalPayBenefits                           109969.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7561, dtype: object)
(7562, Id                              7563
EmployeeName               JULIA KAY
JobTitle            REGISTERED NURSE
BasePay                     98747.73
OvertimePay                  3176.94
OtherPay                     8039.36
Benefits                         NaN
TotalPay                   109964.03
TotalPayBenefits           109964.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7562, dtype: object)
(7563, Id                                7564
EmployeeName           STEPHEN COLEMAN
JobTitle            POLICE OFFICER III
BasePay                      108133.32
OvertimePay                     418.98
OtherPay                       1410.47
Benefits                           NaN
TotalPay                     109962.77
TotalPayBenefits             109962.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7563, dtype: object)
(7564, Id                              7565
EmployeeName             KAREN DANES
JobTitle            REGISTERED NURSE
BasePay                    102387.16
OvertimePay                  3017.07
OtherPay                     4553.24
Benefits                         NaN
TotalPay                   109957.47
TotalPayBenefits           109957.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7564, dtype: object)
(7565, Id                                                              7566
EmployeeName                                            YURI LEVITIN
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     99451.06
OvertimePay                                                      0.0
OtherPay                                                    10497.91
Benefits                                                         NaN
TotalPay                                                   109948.97
TotalPayBenefits                                           109948.97
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 7565, dtype: object)
(7566, Id                                                7567
EmployeeName                          CHRISTOPHER RISO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   21636.83
OtherPay                                      10723.71
Benefits                                           NaN
TotalPay                                     109940.94
TotalPayBenefits                             109940.94
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7566, dtype: object)
(7567, Id                                  7568
EmployeeName        RICHARD BAMBERGER-JR
JobTitle            ELECTRICAL INSPECTOR
BasePay                         95981.22
OvertimePay                          0.0
OtherPay                        13958.95
Benefits                             NaN
TotalPay                       109940.17
TotalPayBenefits               109940.17
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7567, dtype: object)
(7568, Id                                             7569
EmployeeName                       STEPHEN IWANCIOW
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   109889.25
OvertimePay                                     0.0
OtherPay                                      35.55
Benefits                                        NaN
TotalPay                                   109924.8
TotalPayBenefits                           109924.8
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7568, dtype: object)
(7569, Id                           7570
EmployeeName           JEANNE SUM
JobTitle                 ENGINEER
BasePay                  106126.0
OvertimePay                   0.0
OtherPay                  3792.79
Benefits                      NaN
TotalPay                109918.79
TotalPayBenefits        109918.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7569, dtype: object)
(7570, Id                              7571
EmployeeName             ROXANA RUIZ
JobTitle            REGISTERED NURSE
BasePay                     96828.79
OvertimePay                  5761.59
OtherPay                     7323.95
Benefits                         NaN
TotalPay                   109914.33
TotalPayBenefits           109914.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7570, dtype: object)
(7571, Id                            7572
EmployeeName          MICHAEL MOHN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               12821.49
OtherPay                  10247.32
Benefits                       NaN
TotalPay                 109908.82
TotalPayBenefits         109908.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7571, dtype: object)
(7572, Id                              7573
EmployeeName             DANIEL TAFT
JobTitle            POLICE OFFICER I
BasePay                     96157.95
OvertimePay                  4729.35
OtherPay                     9014.94
Benefits                         NaN
TotalPay                   109902.24
TotalPayBenefits           109902.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7572, dtype: object)
(7573, Id                              7574
EmployeeName         TOMAS SUERTE CU
JobTitle            REGISTERED NURSE
BasePay                     99939.14
OvertimePay                  3991.09
OtherPay                     5961.73
Benefits                         NaN
TotalPay                   109891.96
TotalPayBenefits           109891.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7573, dtype: object)
(7574, Id                                  7575
EmployeeName                 JOHN TACHIS
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         73960.75
OvertimePay                     24381.58
OtherPay                        11545.39
Benefits                             NaN
TotalPay                       109887.72
TotalPayBenefits               109887.72
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7574, dtype: object)
(7575, Id                                7576
EmployeeName              MICHELLE WOO
JobTitle            ASSOCIATE ENGINEER
BasePay                      105695.07
OvertimePay                        0.0
OtherPay                       4191.75
Benefits                           NaN
TotalPay                     109886.82
TotalPayBenefits             109886.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7575, dtype: object)
(7576, Id                              7577
EmployeeName         MA TERESA PACIS
JobTitle            REGISTERED NURSE
BasePay                     96615.99
OvertimePay                  3931.54
OtherPay                     9332.44
Benefits                         NaN
TotalPay                   109879.97
TotalPayBenefits           109879.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7576, dtype: object)
(7577, Id                                 7578
EmployeeName               FELICHA BELL
JobTitle            PUBLIC HEALTH NURSE
BasePay                        109629.0
OvertimePay                         0.0
OtherPay                          250.0
Benefits                            NaN
TotalPay                       109879.0
TotalPayBenefits               109879.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7577, dtype: object)
(7578, Id                                            7579
EmployeeName                         WILLIAM TOLAR
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   81721.92
OvertimePay                               15560.05
OtherPay                                  12595.77
Benefits                                       NaN
TotalPay                                 109877.74
TotalPayBenefits                         109877.74
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7578, dtype: object)
(7579, Id                              7580
EmployeeName              JUAN GOMEZ
JobTitle            POLICE OFFICER I
BasePay                    106061.18
OvertimePay                      0.0
OtherPay                     3816.31
Benefits                         NaN
TotalPay                   109877.49
TotalPayBenefits           109877.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7579, dtype: object)
(7580, Id                               7581
EmployeeName        LORI LATA-PELTIER
JobTitle            POLICE OFFICER II
BasePay                       94489.0
OvertimePay                   9372.63
OtherPay                      5997.59
Benefits                          NaN
TotalPay                    109859.22
TotalPayBenefits            109859.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7580, dtype: object)
(7581, Id                           7582
EmployeeName           RYAN PIERI
JobTitle                  PLUMBER
BasePay                   89735.1
OvertimePay               7629.38
OtherPay                 12489.48
Benefits                      NaN
TotalPay                109853.96
TotalPayBenefits        109853.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7581, dtype: object)
(7582, Id                                   7583
EmployeeName        JENNIFER ROS ANONUEVO
JobTitle                 REGISTERED NURSE
BasePay                          99990.21
OvertimePay                       4152.04
OtherPay                          5703.26
Benefits                              NaN
TotalPay                        109845.51
TotalPayBenefits                109845.51
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7582, dtype: object)
(7583, Id                            7584
EmployeeName        AKBAR LASHANLO
JobTitle                  ENGINEER
BasePay                   109844.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  109844.0
TotalPayBenefits          109844.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7583, dtype: object)
(7584, Id                                            7585
EmployeeName                           BARRY TIMKO
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  106574.65
OvertimePay                                3264.04
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 109838.69
TotalPayBenefits                         109838.69
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7584, dtype: object)
(7585, Id                              7586
EmployeeName             SHUK HA SIU
JobTitle            REGISTERED NURSE
BasePay                    100760.01
OvertimePay                  5027.73
OtherPay                     4049.68
Benefits                         NaN
TotalPay                   109837.42
TotalPayBenefits           109837.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7585, dtype: object)
(7586, Id                                                               7587
EmployeeName                                              STEVEN LEON
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                       89665.5
OvertimePay                                                   3930.56
OtherPay                                                     16241.02
Benefits                                                          NaN
TotalPay                                                    109837.08
TotalPayBenefits                                            109837.08
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7586, dtype: object)
(7587, Id                                                 7588
EmployeeName                               DIANA TRUONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       102540.03
OvertimePay                                         0.0
OtherPay                                        7288.49
Benefits                                            NaN
TotalPay                                      109828.52
TotalPayBenefits                              109828.52
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7587, dtype: object)
(7588, Id                                                     7589
EmployeeName                                   AMBER CURRAN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77792.28
OvertimePay                                        21478.55
OtherPay                                           10557.26
Benefits                                                NaN
TotalPay                                          109828.09
TotalPayBenefits                                  109828.09
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7588, dtype: object)
(7589, Id                              7590
EmployeeName          KAREN FERRETTI
JobTitle            POLICE OFFICER I
BasePay                    104586.36
OvertimePay                   2855.0
OtherPay                     2383.64
Benefits                         NaN
TotalPay                    109825.0
TotalPayBenefits            109825.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7589, dtype: object)
(7590, Id                           7591
EmployeeName         SCOTT CHENUE
JobTitle            BIOLOGIST III
BasePay                 106492.17
OvertimePay                   0.0
OtherPay                  3330.15
Benefits                      NaN
TotalPay                109822.32
TotalPayBenefits        109822.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7590, dtype: object)
(7591, Id                            7592
EmployeeName         ANTHONY BLACK
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               12323.74
OtherPay                  10652.47
Benefits                       NaN
TotalPay                 109816.21
TotalPayBenefits         109816.21
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7591, dtype: object)
(7592, Id                                 7593
EmployeeName        ERNESTO EVANGELISTA
JobTitle             ASSOCIATE ENGINEER
BasePay                       104486.11
OvertimePay                         0.0
OtherPay                        5328.56
Benefits                            NaN
TotalPay                      109814.67
TotalPayBenefits              109814.67
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7592, dtype: object)
(7593, Id                              7594
EmployeeName        KIMBERLY BELLONE
JobTitle            REGISTERED NURSE
BasePay                      98768.7
OvertimePay                  4980.35
OtherPay                     6062.17
Benefits                         NaN
TotalPay                   109811.22
TotalPayBenefits           109811.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7593, dtype: object)
(7594, Id                               7595
EmployeeName        CHARLES AUGUST JR
JobTitle             POLICE OFFICER I
BasePay                      98257.24
OvertimePay                   7464.29
OtherPay                      4082.96
Benefits                          NaN
TotalPay                    109804.49
TotalPayBenefits            109804.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7594, dtype: object)
(7595, Id                            7596
EmployeeName         GORDON AIAVAO
JobTitle            COURT REPORTER
BasePay                   103846.8
OvertimePay                    0.0
OtherPay                    5957.3
Benefits                       NaN
TotalPay                  109804.1
TotalPayBenefits          109804.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7595, dtype: object)
(7596, Id                              7597
EmployeeName            XIAOJUN WANG
JobTitle            REGISTERED NURSE
BasePay                     100248.2
OvertimePay                  4966.19
OtherPay                     4576.25
Benefits                         NaN
TotalPay                   109790.64
TotalPayBenefits           109790.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7596, dtype: object)
(7597, Id                                    7598
EmployeeName               BRANDON CHATHAM
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           98812.96
OvertimePay                        6958.24
OtherPay                           4016.87
Benefits                               NaN
TotalPay                         109788.07
TotalPayBenefits                 109788.07
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7597, dtype: object)
(7598, Id                              7599
EmployeeName          GEORGANNA REIS
JobTitle            REGISTERED NURSE
BasePay                     89800.12
OvertimePay                  2585.26
OtherPay                    17397.75
Benefits                         NaN
TotalPay                   109783.13
TotalPayBenefits           109783.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7598, dtype: object)
(7599, Id                              7600
EmployeeName          KENNETH MATHIS
JobTitle            TRANSIT OPERATOR
BasePay                      63173.1
OvertimePay                 44664.84
OtherPay                     1922.88
Benefits                         NaN
TotalPay                   109760.82
TotalPayBenefits           109760.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7599, dtype: object)
(7600, Id                              7601
EmployeeName               THU VAING
JobTitle            POLICE OFFICER I
BasePay                    100952.58
OvertimePay                   5596.2
OtherPay                     3209.29
Benefits                         NaN
TotalPay                   109758.07
TotalPayBenefits           109758.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7600, dtype: object)
(7601, Id                                                     7602
EmployeeName                                 SHEILA CALABRO
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            96321.45
OvertimePay                                         5267.73
OtherPay                                            8167.84
Benefits                                                NaN
TotalPay                                          109757.02
TotalPayBenefits                                  109757.02
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7601, dtype: object)
(7602, Id                                   7603
EmployeeName                JEROME MCCAIN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          93465.73
OvertimePay                       6479.09
OtherPay                          9808.95
Benefits                              NaN
TotalPay                        109753.77
TotalPayBenefits                109753.77
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7602, dtype: object)
(7603, Id                                   7604
EmployeeName                  ALVIN YOUNG
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.81
OvertimePay                       4647.13
OtherPay                          9218.82
Benefits                              NaN
TotalPay                        109747.76
TotalPayBenefits                109747.76
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7603, dtype: object)
(7604, Id                              7605
EmployeeName         BRINDER BHULLER
JobTitle            REGISTERED NURSE
BasePay                     93213.75
OvertimePay                 10301.82
OtherPay                     6231.66
Benefits                         NaN
TotalPay                   109747.23
TotalPayBenefits           109747.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7604, dtype: object)
(7605, Id                              7606
EmployeeName             SUE KOKALIS
JobTitle            REGISTERED NURSE
BasePay                    100564.32
OvertimePay                  5344.24
OtherPay                     3833.43
Benefits                         NaN
TotalPay                   109741.99
TotalPayBenefits           109741.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7605, dtype: object)
(7606, Id                              7607
EmployeeName           WALTER KNIGHT
JobTitle            TRANSIT OPERATOR
BasePay                     64998.31
OvertimePay                 43645.44
OtherPay                      1095.6
Benefits                         NaN
TotalPay                   109739.35
TotalPayBenefits           109739.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7606, dtype: object)
(7607, Id                              7608
EmployeeName          FRANCO FLEMING
JobTitle            POLICE OFFICER I
BasePay                    104102.56
OvertimePay                   3039.6
OtherPay                     2596.58
Benefits                         NaN
TotalPay                   109738.74
TotalPayBenefits           109738.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7607, dtype: object)
(7608, Id                              7609
EmployeeName              IVY BAINTO
JobTitle            REGISTERED NURSE
BasePay                     93761.36
OvertimePay                  2339.94
OtherPay                    13629.39
Benefits                         NaN
TotalPay                   109730.69
TotalPayBenefits           109730.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7608, dtype: object)
(7609, Id                                           7610
EmployeeName                        JORGE VICENTE
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  85136.25
OvertimePay                              14668.99
OtherPay                                  9914.72
Benefits                                      NaN
TotalPay                                109719.96
TotalPayBenefits                        109719.96
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7609, dtype: object)
(7610, Id                                 7611
EmployeeName        STEPHEN CHRISTENSEN
JobTitle                        PLUMBER
BasePay                        90280.06
OvertimePay                     9611.62
OtherPay                        9827.89
Benefits                            NaN
TotalPay                      109719.57
TotalPayBenefits              109719.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7610, dtype: object)
(7611, Id                                7612
EmployeeName          DERRICK PRESSLEY
JobTitle            SHERIFF'S SERGEANT
BasePay                      100481.88
OvertimePay                    1858.67
OtherPay                       7377.14
Benefits                           NaN
TotalPay                     109717.69
TotalPayBenefits             109717.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7611, dtype: object)
(7612, Id                                  7613
EmployeeName               KENNETH RUSSI
JobTitle            CAR AND AUTO PAINTER
BasePay                         73323.41
OvertimePay                     23200.66
OtherPay                        13185.18
Benefits                             NaN
TotalPay                       109709.25
TotalPayBenefits               109709.25
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7612, dtype: object)
(7613, Id                                       7614
EmployeeName                   NATHAN QUIGLEY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              109701.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             109701.9
TotalPayBenefits                     109701.9
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7613, dtype: object)
(7614, Id                              7615
EmployeeName           DIANA HAMPTON
JobTitle            REGISTERED NURSE
BasePay                     97281.42
OvertimePay                  3998.51
OtherPay                     8419.99
Benefits                         NaN
TotalPay                   109699.92
TotalPayBenefits           109699.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7614, dtype: object)
(7615, Id                               7616
EmployeeName              ORIT SAMSON
JobTitle            POLICE OFFICER II
BasePay                     102320.67
OvertimePay                   5139.12
OtherPay                      2217.88
Benefits                          NaN
TotalPay                    109677.67
TotalPayBenefits            109677.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7615, dtype: object)
(7616, Id                                 7617
EmployeeName            PHILIP MATIATOS
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    24388.59
OtherPay                       12873.29
Benefits                            NaN
TotalPay                      109671.88
TotalPayBenefits              109671.88
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7616, dtype: object)
(7617, Id                              7618
EmployeeName             EDWARD HUNT
JobTitle            POLICE OFFICER I
BasePay                    106046.05
OvertimePay                  2803.22
OtherPay                      819.52
Benefits                         NaN
TotalPay                   109668.79
TotalPayBenefits           109668.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7617, dtype: object)
(7618, Id                                             7619
EmployeeName                           DEVYANI JAIN
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   109660.54
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  109660.54
TotalPayBenefits                          109660.54
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7618, dtype: object)
(7619, Id                                                       7620
EmployeeName                                    MICHAEL WYLIE
JobTitle            PERFORMANCE ANALYST III - PROJECT MANAGER
BasePay                                             109658.72
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                            109658.72
TotalPayBenefits                                    109658.72
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 7619, dtype: object)
(7620, Id                            7621
EmployeeName        MICHAEL BAXTER
JobTitle                MANAGER II
BasePay                  109658.62
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 109658.62
TotalPayBenefits         109658.62
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7620, dtype: object)
(7621, Id                                                     7622
EmployeeName                             JANET SELINGER-NOA
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77788.51
OvertimePay                                        27934.86
OtherPay                                            3916.96
Benefits                                                NaN
TotalPay                                          109640.33
TotalPayBenefits                                  109640.33
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7621, dtype: object)
(7622, Id                              7623
EmployeeName            DAVID GARCIA
JobTitle            POLICE OFFICER I
BasePay                    106046.05
OvertimePay                  2766.62
OtherPay                      825.81
Benefits                         NaN
TotalPay                   109638.48
TotalPayBenefits           109638.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7622, dtype: object)
(7623, Id                                               7624
EmployeeName                           ARVIN GERONIMO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      72499.67
OvertimePay                                  34588.81
OtherPay                                       2533.7
Benefits                                          NaN
TotalPay                                    109622.18
TotalPayBenefits                            109622.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7623, dtype: object)
(7624, Id                                         7625
EmployeeName                 ANA VIEIRA-RIBEIRO
JobTitle            DIAGNOSTIC IMAGING TECH III
BasePay                                106812.7
OvertimePay                              785.48
OtherPay                                2021.79
Benefits                                    NaN
TotalPay                              109619.97
TotalPayBenefits                      109619.97
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7624, dtype: object)
(7625, Id                                   7626
EmployeeName                     AVA KNOX
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.04
OvertimePay                       7550.69
OtherPay                          5814.83
Benefits                              NaN
TotalPay                        109617.56
TotalPayBenefits                109617.56
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7625, dtype: object)
(7626, Id                                  7627
EmployeeName               OSHA ASHWORTH
JobTitle            ELECTRICAL INSPECTOR
BasePay                        100658.25
OvertimePay                      7763.81
OtherPay                         1174.85
Benefits                             NaN
TotalPay                       109596.91
TotalPayBenefits               109596.91
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7626, dtype: object)
(7627, Id                            7628
EmployeeName        CLIFFORD CHIBA
JobTitle            DEPUTY SHERIFF
BasePay                   78959.24
OvertimePay                28388.4
OtherPay                   2246.62
Benefits                       NaN
TotalPay                 109594.26
TotalPayBenefits         109594.26
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7627, dtype: object)
(7628, Id                                               7629
EmployeeName                            MICHAEL BRAUN
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      96492.57
OvertimePay                                  12595.56
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                    109588.13
TotalPayBenefits                            109588.13
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7628, dtype: object)
(7629, Id                                                     7630
EmployeeName                                CORLINA ABANTAO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77760.95
OvertimePay                                        27200.93
OtherPay                                            4595.41
Benefits                                                NaN
TotalPay                                          109557.29
TotalPayBenefits                                  109557.29
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7629, dtype: object)
(7630, Id                           7631
EmployeeName        SARAH BALLARD
JobTitle                MANAGER I
BasePay                 109550.22
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                109550.22
TotalPayBenefits        109550.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7630, dtype: object)
(7631, Id                                7632
EmployeeName              RAMON ZAMORA
JobTitle            ASSOCIATE ENGINEER
BasePay                      108327.57
OvertimePay                        0.0
OtherPay                       1215.64
Benefits                           NaN
TotalPay                     109543.21
TotalPayBenefits             109543.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7631, dtype: object)
(7632, Id                              7633
EmployeeName             ROGER MORSE
JobTitle            POLICE OFFICER I
BasePay                     100868.2
OvertimePay                  3369.16
OtherPay                      5300.0
Benefits                         NaN
TotalPay                   109537.36
TotalPayBenefits           109537.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7632, dtype: object)
(7633, Id                                7634
EmployeeName               DONAL DUFFY
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                    3624.72
OtherPay                       5044.29
Benefits                           NaN
TotalPay                     109530.61
TotalPayBenefits             109530.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7633, dtype: object)
(7634, Id                                   7635
EmployeeName                JASON BIELSKI
JobTitle            SUPERVISING BIOLOGIST
BasePay                         106492.12
OvertimePay                           0.0
OtherPay                           3033.2
Benefits                              NaN
TotalPay                        109525.32
TotalPayBenefits                109525.32
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7634, dtype: object)
(7635, Id                              7636
EmployeeName        ANOTHAI EDGERTON
JobTitle            REGISTERED NURSE
BasePay                    100900.54
OvertimePay                   4022.4
OtherPay                     4599.91
Benefits                         NaN
TotalPay                   109522.85
TotalPayBenefits           109522.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7635, dtype: object)
(7636, Id                              7637
EmployeeName        PURISIMA MALLARI
JobTitle            REGISTERED NURSE
BasePay                     100082.3
OvertimePay                  4966.19
OtherPay                     4472.23
Benefits                         NaN
TotalPay                   109520.72
TotalPayBenefits           109520.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7636, dtype: object)
(7637, Id                                       7638
EmployeeName                  WILLIAM CABRERA
JobTitle            ELECTRICIAN SUPERVISOR II
BasePay                              109516.8
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             109516.8
TotalPayBenefits                     109516.8
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7637, dtype: object)
(7638, Id                                      7639
EmployeeName              LAWRENCE MICHELINI
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                             92915.33
OvertimePay                         16009.86
OtherPay                               580.0
Benefits                                 NaN
TotalPay                           109505.19
TotalPayBenefits                   109505.19
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7638, dtype: object)
(7639, Id                               7640
EmployeeName        MICHAEL VANNUCCHI
JobTitle            POLICE OFFICER II
BasePay                      99551.19
OvertimePay                   2918.83
OtherPay                      7023.47
Benefits                          NaN
TotalPay                    109493.49
TotalPayBenefits            109493.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7639, dtype: object)
(7640, Id                              7641
EmployeeName            STEVEN CLARK
JobTitle            TRAIN CONTROLLER
BasePay                     76893.29
OvertimePay                 22417.81
OtherPay                    10172.21
Benefits                         NaN
TotalPay                   109483.31
TotalPayBenefits           109483.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7640, dtype: object)
(7641, Id                                                     7642
EmployeeName                                   THOMAS JONES
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76281.87
OvertimePay                                        27511.38
OtherPay                                            5660.14
Benefits                                                NaN
TotalPay                                          109453.39
TotalPayBenefits                                  109453.39
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7641, dtype: object)
(7642, Id                              7643
EmployeeName              LUIS REYES
JobTitle            TRANSIT OPERATOR
BasePay                     67798.29
OvertimePay                 37066.41
OtherPay                     4581.33
Benefits                         NaN
TotalPay                   109446.03
TotalPayBenefits           109446.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7642, dtype: object)
(7643, Id                                                7644
EmployeeName                              ENOCH HARRIS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       72504.09
OvertimePay                                    34726.7
OtherPay                                        2195.0
Benefits                                           NaN
TotalPay                                     109425.79
TotalPayBenefits                             109425.79
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7643, dtype: object)
(7644, Id                              7645
EmployeeName             THELMA GINN
JobTitle            REGISTERED NURSE
BasePay                    101646.43
OvertimePay                  3017.07
OtherPay                     4752.33
Benefits                         NaN
TotalPay                   109415.83
TotalPayBenefits           109415.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7644, dtype: object)
(7645, Id                                  7646
EmployeeName                  EDWIN WONG
JobTitle            CAR AND AUTO PAINTER
BasePay                         73075.02
OvertimePay                     23099.46
OtherPay                        13217.94
Benefits                             NaN
TotalPay                       109392.42
TotalPayBenefits               109392.42
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7645, dtype: object)
(7646, Id                              7647
EmployeeName               APRIL PAN
JobTitle            REGISTERED NURSE
BasePay                    103458.45
OvertimePay                  3108.78
OtherPay                     2824.92
Benefits                         NaN
TotalPay                   109392.15
TotalPayBenefits           109392.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7646, dtype: object)
(7647, Id                            7648
EmployeeName            DIANA CHEN
JobTitle            COURT REPORTER
BasePay                   103682.8
OvertimePay                    0.0
OtherPay                   5702.31
Benefits                       NaN
TotalPay                 109385.11
TotalPayBenefits         109385.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7647, dtype: object)
(7648, Id                           7649
EmployeeName        ALEXIS DUFOUR
JobTitle                 ENGINEER
BasePay                 109381.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                109381.05
TotalPayBenefits        109381.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7648, dtype: object)
(7649, Id                              7650
EmployeeName          JOHN BROUCARET
JobTitle            POLICE OFFICER I
BasePay                    106061.27
OvertimePay                  2160.64
OtherPay                     1158.07
Benefits                         NaN
TotalPay                   109379.98
TotalPayBenefits           109379.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7649, dtype: object)
(7650, Id                            7651
EmployeeName          SILVIO PEREZ
JobTitle            DEPUTY SHERIFF
BasePay                    86005.0
OvertimePay               17321.62
OtherPay                   6032.77
Benefits                       NaN
TotalPay                 109359.39
TotalPayBenefits         109359.39
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7650, dtype: object)
(7651, Id                              7652
EmployeeName         ABRAHAM SHERMAN
JobTitle            TRANSIT OPERATOR
BasePay                     69501.01
OvertimePay                 38193.23
OtherPay                     1661.69
Benefits                         NaN
TotalPay                   109355.93
TotalPayBenefits           109355.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7651, dtype: object)
(7652, Id                              7653
EmployeeName         DELIA CACHAPERO
JobTitle            REGISTERED NURSE
BasePay                     90225.76
OvertimePay                  5405.39
OtherPay                    13723.04
Benefits                         NaN
TotalPay                   109354.19
TotalPayBenefits           109354.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7652, dtype: object)
(7653, Id                                        7654
EmployeeName                      LEONARD WONG
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                                97130.8
OvertimePay                           11412.91
OtherPay                                793.56
Benefits                                   NaN
TotalPay                             109337.27
TotalPayBenefits                     109337.27
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7653, dtype: object)
(7654, Id                              7655
EmployeeName           WO ZHOU HUANG
JobTitle            TRANSIT OPERATOR
BasePay                     65860.31
OvertimePay                 41122.79
OtherPay                     2346.28
Benefits                         NaN
TotalPay                   109329.38
TotalPayBenefits           109329.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7654, dtype: object)
(7655, Id                                                           7656
EmployeeName                                        MARTHA GAMBLE
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 109208.63
OvertimePay                                                   0.0
OtherPay                                                    120.0
Benefits                                                      NaN
TotalPay                                                109328.63
TotalPayBenefits                                        109328.63
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 7655, dtype: object)
(7656, Id                                   7657
EmployeeName                 GORDON BROWN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.82
OvertimePay                       4732.89
OtherPay                          8713.55
Benefits                              NaN
TotalPay                        109328.26
TotalPayBenefits                109328.26
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7656, dtype: object)
(7657, Id                             7658
EmployeeName        MARVIN GONZALEZ
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                17343.68
OtherPay                     5144.5
Benefits                        NaN
TotalPay                  109328.18
TotalPayBenefits          109328.18
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7657, dtype: object)
(7658, Id                                       7659
EmployeeName                    MARCO EVONIUK
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                               94303.2
OvertimePay                           6407.17
OtherPay                              8616.71
Benefits                                  NaN
TotalPay                            109327.08
TotalPayBenefits                    109327.08
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7658, dtype: object)
(7659, Id                                                               7660
EmployeeName                                                FRANK LEM
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                      107023.2
OvertimePay                                                   1993.24
OtherPay                                                        300.0
Benefits                                                          NaN
TotalPay                                                    109316.44
TotalPayBenefits                                            109316.44
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7659, dtype: object)
(7660, Id                              7661
EmployeeName           NANETTE LLOYD
JobTitle            REGISTERED NURSE
BasePay                     87472.54
OvertimePay                  5620.28
OtherPay                    16219.49
Benefits                         NaN
TotalPay                   109312.31
TotalPayBenefits           109312.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7660, dtype: object)
(7661, Id                                           7662
EmployeeName                      TIMOTHY OVERALL
JobTitle            INSTITUTIONAL POLICE SERGEANT
BasePay                                 100658.12
OvertimePay                               2827.18
OtherPay                                  5823.87
Benefits                                      NaN
TotalPay                                109309.17
TotalPayBenefits                        109309.17
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7661, dtype: object)
(7662, Id                           7663
EmployeeName            SARAH LEE
JobTitle            SPECIAL NURSE
BasePay                 101062.16
OvertimePay               1002.96
OtherPay                   7243.6
Benefits                      NaN
TotalPay                109308.72
TotalPayBenefits        109308.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7662, dtype: object)
(7663, Id                                 7664
EmployeeName            MARTHA KETTERER
JobTitle            LANDSCAPE ARCHITECT
BasePay                       109308.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      109308.62
TotalPayBenefits              109308.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7663, dtype: object)
(7664, Id                              7665
EmployeeName               IAN GLYNN
JobTitle            POLICE OFFICER I
BasePay                     91861.18
OvertimePay                  6690.29
OtherPay                     10756.3
Benefits                         NaN
TotalPay                   109307.77
TotalPayBenefits           109307.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7664, dtype: object)
(7665, Id                                    7666
EmployeeName                REMIGIO MIGUEL
JobTitle            MAINTENANCE CONTROLLER
BasePay                           85232.51
OvertimePay                       21548.05
OtherPay                           2526.66
Benefits                               NaN
TotalPay                         109307.22
TotalPayBenefits                 109307.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7665, dtype: object)
(7666, Id                               7667
EmployeeName           MARY MUSZYNSKI
JobTitle            PROJECT MANAGER I
BasePay                     109304.41
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    109304.41
TotalPayBenefits            109304.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7666, dtype: object)
(7667, Id                                7668
EmployeeName        MARGARET OSULLIVAN
JobTitle                    MANAGER II
BasePay                      109302.78
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     109302.78
TotalPayBenefits             109302.78
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7667, dtype: object)
(7668, Id                              7669
EmployeeName          NICOLE DOOLING
JobTitle            REGISTERED NURSE
BasePay                     88429.85
OvertimePay                   6171.1
OtherPay                    14700.95
Benefits                         NaN
TotalPay                    109301.9
TotalPayBenefits            109301.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7668, dtype: object)
(7669, Id                                     7670
EmployeeName              ALEJANDRO SANTOYO
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.07
OvertimePay                        31225.98
OtherPay                             1585.0
Benefits                                NaN
TotalPay                          109285.05
TotalPayBenefits                  109285.05
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7669, dtype: object)
(7670, Id                                7671
EmployeeName            FELICIA HAYNES
JobTitle            SHERIFF'S SERGEANT
BasePay                      101836.31
OvertimePay                        0.0
OtherPay                       7440.26
Benefits                           NaN
TotalPay                     109276.57
TotalPayBenefits             109276.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7670, dtype: object)
(7671, Id                            7672
EmployeeName            SAMUEL LOU
JobTitle            DEPUTY SHERIFF
BasePay                    81830.0
OvertimePay               20590.42
OtherPay                   6852.03
Benefits                       NaN
TotalPay                 109272.45
TotalPayBenefits         109272.45
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7671, dtype: object)
(7672, Id                            7673
EmployeeName          FAIVA AFEAKI
JobTitle            DEPUTY SHERIFF
BasePay                   83972.64
OvertimePay               14489.37
OtherPay                  10804.69
Benefits                       NaN
TotalPay                  109266.7
TotalPayBenefits          109266.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7672, dtype: object)
(7673, Id                                                     7674
EmployeeName                                    MAURA DUFFY
JobTitle            SENIOR DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                           103948.02
OvertimePay                                          749.63
OtherPay                                            4557.42
Benefits                                                NaN
TotalPay                                          109255.07
TotalPayBenefits                                  109255.07
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7673, dtype: object)
(7674, Id                                    7675
EmployeeName                DEBORAH PALMER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          106371.33
OvertimePay                            0.0
OtherPay                           2871.11
Benefits                               NaN
TotalPay                         109242.44
TotalPayBenefits                 109242.44
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7674, dtype: object)
(7675, Id                                    7676
EmployeeName        AMANDA PADILLA-BRAININ
JobTitle                  REGISTERED NURSE
BasePay                           98160.57
OvertimePay                        5819.15
OtherPay                           5253.53
Benefits                               NaN
TotalPay                         109233.25
TotalPayBenefits                 109233.25
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7675, dtype: object)
(7676, Id                                                      7677
EmployeeName                                   DONALD STOVER
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             89703.56
OvertimePay                                          11799.8
OtherPay                                             7717.61
Benefits                                                 NaN
TotalPay                                           109220.97
TotalPayBenefits                                   109220.97
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7676, dtype: object)
(7677, Id                                        7678
EmployeeName                     JAMES BIGGINS
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                               86447.56
OvertimePay                           16435.17
OtherPay                                6336.9
Benefits                                   NaN
TotalPay                             109219.63
TotalPayBenefits                     109219.63
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7677, dtype: object)
(7678, Id                              7679
EmployeeName                 T GALLO
JobTitle            REGISTERED NURSE
BasePay                     94656.73
OvertimePay                  1909.44
OtherPay                    12634.99
Benefits                         NaN
TotalPay                   109201.16
TotalPayBenefits           109201.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7678, dtype: object)
(7679, Id                                          7680
EmployeeName                    MICHAEL CORRIERE
JobTitle            PRINCIPAL MANAGEMENT ANALYST
BasePay                                109194.58
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               109194.58
TotalPayBenefits                       109194.58
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7679, dtype: object)
(7680, Id                                          7681
EmployeeName                       SUSAN PATRICK
JobTitle            PRINCIPAL MANAGEMENT ANALYST
BasePay                                109194.56
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               109194.56
TotalPayBenefits                       109194.56
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7680, dtype: object)
(7681, Id                            7682
EmployeeName        WILLIAM BENDER
JobTitle                 LOCKSMITH
BasePay                   77993.72
OvertimePay               29233.12
OtherPay                    1957.4
Benefits                       NaN
TotalPay                 109184.24
TotalPayBenefits         109184.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7681, dtype: object)
(7682, Id                                                      7683
EmployeeName                                MARGARETE CABATU
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             79987.82
OvertimePay                                          23073.5
OtherPay                                             6116.48
Benefits                                                 NaN
TotalPay                                            109177.8
TotalPayBenefits                                    109177.8
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7682, dtype: object)
(7683, Id                            7684
EmployeeName         RENE GONZALEZ
JobTitle            DEPUTY SHERIFF
BasePay                   86307.28
OvertimePay               19979.66
OtherPay                    2890.7
Benefits                       NaN
TotalPay                 109177.64
TotalPayBenefits         109177.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7683, dtype: object)
(7684, Id                                     7685
EmployeeName                  RONALDO ROTAP
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.02
OvertimePay                        31191.48
OtherPay                             1505.0
Benefits                                NaN
TotalPay                           109170.5
TotalPayBenefits                   109170.5
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7684, dtype: object)
(7685, Id                              7686
EmployeeName              PO LIN LUI
JobTitle            REGISTERED NURSE
BasePay                     106650.0
OvertimePay                      0.0
OtherPay                     2514.03
Benefits                         NaN
TotalPay                   109164.03
TotalPayBenefits           109164.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7685, dtype: object)
(7686, Id                                       7687
EmployeeName                      CAROLYN LEW
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              109158.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             109158.6
TotalPayBenefits                     109158.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7686, dtype: object)
(7687, Id                                       7688
EmployeeName                         KAN HTUN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             109158.06
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            109158.06
TotalPayBenefits                    109158.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7687, dtype: object)
(7688, Id                                           7689
EmployeeName                        JEFFREY BAUER
JobTitle            SENIOR PROPERTY MANAGER, PORT
BasePay                                 109158.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                109158.03
TotalPayBenefits                        109158.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7688, dtype: object)
(7689, Id                                           7690
EmployeeName                        ELLIOTT RILEY
JobTitle            SENIOR PROPERTY MANAGER, PORT
BasePay                                  109158.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 109158.0
TotalPayBenefits                         109158.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7689, dtype: object)
(7690, Id                              7691
EmployeeName         ERNESTO SARAVIA
JobTitle            TRANSIT OPERATOR
BasePay                     65918.45
OvertimePay                 38336.62
OtherPay                     4893.53
Benefits                         NaN
TotalPay                    109148.6
TotalPayBenefits            109148.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7690, dtype: object)
(7691, Id                              7692
EmployeeName             JOHNNY VONG
JobTitle            POLICE OFFICER I
BasePay                     99585.68
OvertimePay                  4427.42
OtherPay                      5134.4
Benefits                         NaN
TotalPay                    109147.5
TotalPayBenefits            109147.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7691, dtype: object)
(7692, Id                                                      7693
EmployeeName                                   PHILIP LEFMAN
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              90376.0
OvertimePay                                          2907.62
OtherPay                                            15863.28
Benefits                                                 NaN
TotalPay                                            109146.9
TotalPayBenefits                                    109146.9
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7692, dtype: object)
(7693, Id                               7694
EmployeeName            RYAN MCARTHUR
JobTitle            POLICE OFFICER II
BasePay                       97564.0
OvertimePay                   2588.03
OtherPay                      8981.46
Benefits                          NaN
TotalPay                    109133.49
TotalPayBenefits            109133.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7693, dtype: object)
(7694, Id                           7695
EmployeeName         BARRY FRASER
JobTitle               MANAGER IV
BasePay                 109130.26
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                109130.26
TotalPayBenefits        109130.26
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7694, dtype: object)
(7695, Id                                                   7696
EmployeeName                                 BENJAMIN ANG
JobTitle            HEAVY EQUIPMENT OPERATIONS SUPERVISOR
BasePay                                          98305.21
OvertimePay                                           0.0
OtherPay                                         10814.03
Benefits                                              NaN
TotalPay                                        109119.24
TotalPayBenefits                                109119.24
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 7695, dtype: object)
(7696, Id                                 7697
EmployeeName        STEPHANIE COLMENERO
JobTitle             SHERIFF'S SERGEANT
BasePay                       105697.91
OvertimePay                      423.54
OtherPay                         2993.6
Benefits                            NaN
TotalPay                      109115.05
TotalPayBenefits              109115.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7696, dtype: object)
(7697, Id                                      7698
EmployeeName                     BEVERLY JEW
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            109113.16
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           109113.16
TotalPayBenefits                   109113.16
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7697, dtype: object)
(7698, Id                               7699
EmployeeName        FERNANDO LEIVA JR
JobTitle             POLICE OFFICER I
BasePay                      95335.34
OvertimePay                   6305.79
OtherPay                      7462.13
Benefits                          NaN
TotalPay                    109103.26
TotalPayBenefits            109103.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7698, dtype: object)
(7699, Id                                7700
EmployeeName                JOEL JONES
JobTitle            SHERIFF'S SERGEANT
BasePay                      106106.04
OvertimePay                    2046.88
OtherPay                        946.58
Benefits                           NaN
TotalPay                      109099.5
TotalPayBenefits              109099.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7699, dtype: object)
(7700, Id                                 7701
EmployeeName              BERNARDO BABA
JobTitle            AIRPORT ELECTRICIAN
BasePay                        95275.84
OvertimePay                    11909.54
OtherPay                         1910.0
Benefits                            NaN
TotalPay                      109095.38
TotalPayBenefits              109095.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7700, dtype: object)
(7701, Id                                 7702
EmployeeName           ERNESTO WILLIAMS
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.01
OvertimePay                    13337.05
OtherPay                          180.0
Benefits                            NaN
TotalPay                      109093.06
TotalPayBenefits              109093.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7701, dtype: object)
(7702, Id                              7703
EmployeeName           EDENORA SUNGA
JobTitle            REGISTERED NURSE
BasePay                      87015.1
OvertimePay                  5452.56
OtherPay                    16623.21
Benefits                         NaN
TotalPay                   109090.87
TotalPayBenefits           109090.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7702, dtype: object)
(7703, Id                             7704
EmployeeName        ROBERT ICHINOSE
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                  9945.6
OtherPay                   12303.16
Benefits                        NaN
TotalPay                  109088.76
TotalPayBenefits          109088.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7703, dtype: object)
(7704, Id                                     7705
EmployeeName             ALEXANDER LUKOVSKY
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.07
OvertimePay                        32543.75
OtherPay                               70.0
Benefits                                NaN
TotalPay                          109087.82
TotalPayBenefits                  109087.82
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7704, dtype: object)
(7705, Id                                     7706
EmployeeName                       KHUN THI
JobTitle            SENIOR STREET INSPECTOR
BasePay                             82664.0
OvertimePay                        25404.45
OtherPay                             1014.0
Benefits                                NaN
TotalPay                          109082.45
TotalPayBenefits                  109082.45
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7705, dtype: object)
(7706, Id                            7707
EmployeeName        DAVID GONZALES
JobTitle                   PLUMBER
BasePay                    89735.1
OvertimePay               18426.13
OtherPay                     920.0
Benefits                       NaN
TotalPay                 109081.23
TotalPayBenefits         109081.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7706, dtype: object)
(7707, Id                              7708
EmployeeName           TERESA HARRIS
JobTitle            REGISTERED NURSE
BasePay                     87765.07
OvertimePay                  5430.79
OtherPay                    15881.41
Benefits                         NaN
TotalPay                   109077.27
TotalPayBenefits           109077.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7707, dtype: object)
(7708, Id                                               7709
EmployeeName                             STEVEN LOBAO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    9865.8
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                     109060.2
TotalPayBenefits                             109060.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7708, dtype: object)
(7709, Id                            7710
EmployeeName        MARK ROBERTSON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               16216.13
OtherPay                   6000.88
Benefits                       NaN
TotalPay                 109057.01
TotalPayBenefits         109057.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7709, dtype: object)
(7710, Id                                          7711
EmployeeName                        CHARLES DUNN
JobTitle            SENIOR REAL PROPERTY OFFICER
BasePay                                108838.54
OvertimePay                                  0.0
OtherPay                                   208.8
Benefits                                     NaN
TotalPay                               109047.34
TotalPayBenefits                       109047.34
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7710, dtype: object)
(7711, Id                                        7712
EmployeeName                      PHONG NGUYEN
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.82
OvertimePay                            9189.83
OtherPay                                2715.7
Benefits                                   NaN
TotalPay                             109036.35
TotalPayBenefits                     109036.35
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7711, dtype: object)
(7712, Id                                  7713
EmployeeName               RONALD CURLEY
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         74551.51
OvertimePay                     18047.59
OtherPay                        16436.55
Benefits                             NaN
TotalPay                       109035.65
TotalPayBenefits               109035.65
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7712, dtype: object)
(7713, Id                               7714
EmployeeName        ADAM VAN DE WATER
JobTitle                   MANAGER II
BasePay                     109031.71
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    109031.71
TotalPayBenefits            109031.71
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7713, dtype: object)
(7714, Id                              7715
EmployeeName              JOSHUA FRY
JobTitle            POLICE OFFICER I
BasePay                      94604.3
OvertimePay                  8629.13
OtherPay                      5796.6
Benefits                         NaN
TotalPay                   109030.03
TotalPayBenefits           109030.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7714, dtype: object)
(7715, Id                              7716
EmployeeName              EVAN MOGAN
JobTitle            REGISTERED NURSE
BasePay                     98620.78
OvertimePay                  1611.72
OtherPay                      8797.0
Benefits                         NaN
TotalPay                    109029.5
TotalPayBenefits            109029.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7715, dtype: object)
(7716, Id                              7717
EmployeeName          GERARD PADILLA
JobTitle            REGISTERED NURSE
BasePay                     99935.43
OvertimePay                  1298.37
OtherPay                     7785.98
Benefits                         NaN
TotalPay                   109019.78
TotalPayBenefits           109019.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7716, dtype: object)
(7717, Id                                    7718
EmployeeName               RAMON DOMINGUEZ
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.1
OvertimePay                       11281.48
OtherPay                           7069.56
Benefits                               NaN
TotalPay                         109015.14
TotalPayBenefits                 109015.14
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7717, dtype: object)
(7718, Id                              7719
EmployeeName            JOSEPH OBIDI
JobTitle            POLICE OFFICER I
BasePay                     95464.35
OvertimePay                  9493.32
OtherPay                     4056.06
Benefits                         NaN
TotalPay                   109013.73
TotalPayBenefits           109013.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7718, dtype: object)
(7719, Id                              7720
EmployeeName            KEVIN WHALEN
JobTitle            POLICE OFFICER I
BasePay                    106065.19
OvertimePay                      0.0
OtherPay                     2941.14
Benefits                         NaN
TotalPay                   109006.33
TotalPayBenefits           109006.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7719, dtype: object)
(7720, Id                           7721
EmployeeName         KARIN BREUER
JobTitle                MANAGER I
BasePay                 106506.15
OvertimePay                   0.0
OtherPay                   2500.0
Benefits                      NaN
TotalPay                109006.15
TotalPayBenefits        109006.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7720, dtype: object)
(7721, Id                                                       7722
EmployeeName                                    DAVID MONDANI
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                              87345.61
OvertimePay                                          12421.77
OtherPay                                              9234.57
Benefits                                                  NaN
TotalPay                                            109001.95
TotalPayBenefits                                    109001.95
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 7721, dtype: object)
(7722, Id                                        7723
EmployeeName                     GINITTA GLASS
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                                97130.8
OvertimePay                            9187.99
OtherPay                               2680.34
Benefits                                   NaN
TotalPay                             108999.13
TotalPayBenefits                     108999.13
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7722, dtype: object)
(7723, Id                              7724
EmployeeName        JONATHON CATLETT
JobTitle            POLICE OFFICER I
BasePay                    106045.89
OvertimePay                   875.84
OtherPay                     2076.39
Benefits                         NaN
TotalPay                   108998.12
TotalPayBenefits           108998.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7723, dtype: object)
(7724, Id                                7725
EmployeeName            YUANG-TAM CHIU
JobTitle            BUILDING INSPECTOR
BasePay                      101064.95
OvertimePay                    4900.17
OtherPay                       3031.86
Benefits                           NaN
TotalPay                     108996.98
TotalPayBenefits             108996.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7724, dtype: object)
(7725, Id                                                  7726
EmployeeName                               GREGORY ADAMS
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                         74932.01
OvertimePay                                     27212.92
OtherPay                                         6847.43
Benefits                                             NaN
TotalPay                                       108992.36
TotalPayBenefits                               108992.36
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 7725, dtype: object)
(7726, Id                                7727
EmployeeName                E BALINTON
JobTitle            POLICE OFFICER III
BasePay                      108165.82
OvertimePay                        0.0
OtherPay                        819.71
Benefits                           NaN
TotalPay                     108985.53
TotalPayBenefits             108985.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7726, dtype: object)
(7727, Id                           7728
EmployeeName         HERBERT GONG
JobTitle                  PLUMBER
BasePay                   90461.7
OvertimePay               4189.26
OtherPay                 14333.53
Benefits                      NaN
TotalPay                108984.49
TotalPayBenefits        108984.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7727, dtype: object)
(7728, Id                                7729
EmployeeName        GENEVIEVE ONGSIOCO
JobTitle              REGISTERED NURSE
BasePay                      100245.99
OvertimePay                     4022.4
OtherPay                       4708.01
Benefits                           NaN
TotalPay                      108976.4
TotalPayBenefits              108976.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7728, dtype: object)
(7729, Id                              7730
EmployeeName        BIRGITTA DURRETT
JobTitle            REGISTERED NURSE
BasePay                    108975.72
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   108975.72
TotalPayBenefits           108975.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7729, dtype: object)
(7730, Id                                         7731
EmployeeName                       SEEMA SHARMA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               108975.46
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              108975.46
TotalPayBenefits                      108975.46
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7730, dtype: object)
(7731, Id                                             7732
EmployeeName                          JERRY SCHULZE
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   108120.26
OvertimePay                                  849.39
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  108969.65
TotalPayBenefits                          108969.65
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7731, dtype: object)
(7732, Id                              7733
EmployeeName             DARIA PAULY
JobTitle            REGISTERED NURSE
BasePay                    106719.12
OvertimePay                    689.4
OtherPay                     1559.86
Benefits                         NaN
TotalPay                   108968.38
TotalPayBenefits           108968.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7732, dtype: object)
(7733, Id                              7734
EmployeeName        CECILIA GONZALEZ
JobTitle              DEPUTY SHERIFF
BasePay                     86840.03
OvertimePay                 13237.17
OtherPay                     8890.35
Benefits                         NaN
TotalPay                   108967.55
TotalPayBenefits           108967.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7733, dtype: object)
(7734, Id                              7735
EmployeeName        JIGNASA PANCHOLY
JobTitle            REGISTERED NURSE
BasePay                     90142.83
OvertimePay                  4679.88
OtherPay                    14139.73
Benefits                         NaN
TotalPay                   108962.44
TotalPayBenefits           108962.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7734, dtype: object)
(7735, Id                                                      7736
EmployeeName                                   STEVEN FULLER
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             91415.78
OvertimePay                                          8512.87
OtherPay                                             9022.16
Benefits                                                 NaN
TotalPay                                           108950.81
TotalPayBenefits                                   108950.81
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7735, dtype: object)
(7736, Id                                       7737
EmployeeName                 RICHARD HALLORAN
JobTitle            SENIOR BUILDING INSPECTOR
BasePay                             102139.23
OvertimePay                               0.0
OtherPay                              6799.34
Benefits                                  NaN
TotalPay                            108938.57
TotalPayBenefits                    108938.57
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7736, dtype: object)
(7737, Id                              7738
EmployeeName          COLLETTE BAKER
JobTitle            REGISTERED NURSE
BasePay                     88666.34
OvertimePay                 11106.32
OtherPay                     9151.17
Benefits                         NaN
TotalPay                   108923.83
TotalPayBenefits           108923.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7737, dtype: object)
(7738, Id                              7739
EmployeeName              SIMON WONG
JobTitle            POLICE OFFICER I
BasePay                     95120.34
OvertimePay                  6948.66
OtherPay                     6826.96
Benefits                         NaN
TotalPay                   108895.96
TotalPayBenefits           108895.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7738, dtype: object)
(7739, Id                                          7740
EmployeeName                    CLAUDINE VENEGAS
JobTitle            SENIOR REAL PROPERTY OFFICER
BasePay                                 108891.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                108891.0
TotalPayBenefits                        108891.0
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7739, dtype: object)
(7740, Id                                                       7741
EmployeeName                                      WILMA LOUIE
JobTitle            ASSISTANT DIRECTOR OF CLINICAL SERVICES I
BasePay                                             108888.03
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                            108888.03
TotalPayBenefits                                    108888.03
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 7740, dtype: object)
(7741, Id                            7742
EmployeeName        BERNARD MURPHY
JobTitle                 MANAGER I
BasePay                   108888.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  108888.0
TotalPayBenefits          108888.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7741, dtype: object)
(7742, Id                                7743
EmployeeName                HENRY KWAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                        4398.7
Benefits                           NaN
TotalPay                     108884.75
TotalPayBenefits             108884.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7742, dtype: object)
(7743, Id                           7744
EmployeeName        LORI SCHECTEL
JobTitle               PLANNER IV
BasePay                  108881.4
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 108881.4
TotalPayBenefits         108881.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7743, dtype: object)
(7744, Id                             7745
EmployeeName            JAMES TONER
JobTitle            UTILITY PLUMBER
BasePay                    90801.71
OvertimePay                11784.39
OtherPay                    6294.37
Benefits                        NaN
TotalPay                  108880.47
TotalPayBenefits          108880.47
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7744, dtype: object)
(7745, Id                                                     7746
EmployeeName                             CHRISTOPHER MOLINA
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            99462.29
OvertimePay                                          560.51
OtherPay                                            8843.27
Benefits                                                NaN
TotalPay                                          108866.07
TotalPayBenefits                                  108866.07
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7745, dtype: object)
(7746, Id                                 7747
EmployeeName                 ALAN WANDS
JobTitle            PHYSICIAN ASSISTANT
BasePay                       100326.13
OvertimePay                         0.0
OtherPay                        8529.28
Benefits                            NaN
TotalPay                      108855.41
TotalPayBenefits              108855.41
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7746, dtype: object)
(7747, Id                              7748
EmployeeName               AI QUN XU
JobTitle            REGISTERED NURSE
BasePay                     97848.32
OvertimePay                   3900.4
OtherPay                     7104.76
Benefits                         NaN
TotalPay                   108853.48
TotalPayBenefits           108853.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7747, dtype: object)
(7748, Id                                       7749
EmployeeName                      CINDY ELIAS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             108840.88
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            108840.88
TotalPayBenefits                    108840.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7748, dtype: object)
(7749, Id                                       7750
EmployeeName               STEPHANIE LACAMBRA
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             108840.88
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            108840.88
TotalPayBenefits                    108840.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7749, dtype: object)
(7750, Id                                7751
EmployeeName        BERNADETTE PARSONS
JobTitle              TRANSIT OPERATOR
BasePay                       65229.16
OvertimePay                   40186.91
OtherPay                       3422.08
Benefits                           NaN
TotalPay                     108838.15
TotalPayBenefits             108838.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7750, dtype: object)
(7751, Id                                                     7752
EmployeeName                                    JEFFREY YEE
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            101244.0
OvertimePay                                             0.0
OtherPay                                            7593.42
Benefits                                                NaN
TotalPay                                          108837.42
TotalPayBenefits                                  108837.42
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7751, dtype: object)
(7752, Id                                                     7753
EmployeeName                                  GERARD MURPHY
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           101220.58
OvertimePay                                             0.0
OtherPay                                            7591.66
Benefits                                                NaN
TotalPay                                          108812.24
TotalPayBenefits                                  108812.24
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7752, dtype: object)
(7753, Id                                 7754
EmployeeName               AHMED SHEIKH
JobTitle            STATIONARY ENGINEER
BasePay                        72654.39
OvertimePay                      5306.8
OtherPay                       30846.31
Benefits                            NaN
TotalPay                       108807.5
TotalPayBenefits               108807.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7753, dtype: object)
(7754, Id                              7755
EmployeeName          HEIDI STRATTON
JobTitle            POLICE OFFICER I
BasePay                     97641.72
OvertimePay                  5845.53
OtherPay                     5317.25
Benefits                         NaN
TotalPay                    108804.5
TotalPayBenefits            108804.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7754, dtype: object)
(7755, Id                              7756
EmployeeName            THOMAS SMITH
JobTitle            REGISTERED NURSE
BasePay                    102746.07
OvertimePay                  1036.26
OtherPay                     5014.56
Benefits                         NaN
TotalPay                   108796.89
TotalPayBenefits           108796.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7755, dtype: object)
(7756, Id                              7757
EmployeeName             LISA HOLTON
JobTitle            REGISTERED NURSE
BasePay                    100684.34
OvertimePay                  4021.32
OtherPay                     4089.68
Benefits                         NaN
TotalPay                   108795.34
TotalPayBenefits           108795.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7756, dtype: object)
(7757, Id                              7758
EmployeeName             ANDY RODNEY
JobTitle            TRANSIT OPERATOR
BasePay                     66859.24
OvertimePay                 39384.75
OtherPay                     2549.76
Benefits                         NaN
TotalPay                   108793.75
TotalPayBenefits           108793.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7757, dtype: object)
(7758, Id                              7759
EmployeeName             ADAM KUJATH
JobTitle            POLICE OFFICER I
BasePay                     98143.89
OvertimePay                  5527.81
OtherPay                     5107.13
Benefits                         NaN
TotalPay                   108778.83
TotalPayBenefits           108778.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7758, dtype: object)
(7759, Id                                7760
EmployeeName             KENNETH YOUNG
JobTitle            PLUMBING INSPECTOR
BasePay                       102081.7
OvertimePay                    1575.92
OtherPay                       5105.15
Benefits                           NaN
TotalPay                     108762.77
TotalPayBenefits             108762.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7759, dtype: object)
(7760, Id                              7761
EmployeeName          FRANCISCO ARCE
JobTitle            TRANSIT OPERATOR
BasePay                     66480.82
OvertimePay                  39848.7
OtherPay                     2410.85
Benefits                         NaN
TotalPay                   108740.37
TotalPayBenefits           108740.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7760, dtype: object)
(7761, Id                              7762
EmployeeName           BOBBY JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     67320.94
OvertimePay                 34611.63
OtherPay                     6805.64
Benefits                         NaN
TotalPay                   108738.21
TotalPayBenefits           108738.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7761, dtype: object)
(7762, Id                                 7763
EmployeeName        LEONARD WILLIAMS JR
JobTitle                   TRUCK DRIVER
BasePay                         72594.6
OvertimePay                    24350.38
OtherPay                       11789.71
Benefits                            NaN
TotalPay                      108734.69
TotalPayBenefits              108734.69
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7762, dtype: object)
(7763, Id                              7764
EmployeeName              EMMA SICAT
JobTitle            REGISTERED NURSE
BasePay                     98145.36
OvertimePay                  3841.82
OtherPay                      6743.3
Benefits                         NaN
TotalPay                   108730.48
TotalPayBenefits           108730.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7763, dtype: object)
(7764, Id                                               7765
EmployeeName                           ROBERT DONAHUE
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      73641.33
OvertimePay                                  35020.88
OtherPay                                        60.44
Benefits                                          NaN
TotalPay                                    108722.65
TotalPayBenefits                            108722.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7764, dtype: object)
(7765, Id                              7766
EmployeeName        ANGELO COSENTINO
JobTitle             UTILITY PLUMBER
BasePay                      91188.3
OvertimePay                  7288.67
OtherPay                    10243.57
Benefits                         NaN
TotalPay                   108720.54
TotalPayBenefits           108720.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7765, dtype: object)
(7766, Id                              7767
EmployeeName        ALADINO BAUTISTA
JobTitle            REGISTERED NURSE
BasePay                    102623.02
OvertimePay                   4620.0
OtherPay                     1470.63
Benefits                         NaN
TotalPay                   108713.65
TotalPayBenefits           108713.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7766, dtype: object)
(7767, Id                                           7768
EmployeeName                 JENNIFER CARTON-WADE
JobTitle            SENIOR OCCUPATIONAL THERAPIST
BasePay                                 108613.04
OvertimePay                                   0.0
OtherPay                                    100.0
Benefits                                      NaN
TotalPay                                108713.04
TotalPayBenefits                        108713.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7767, dtype: object)
(7768, Id                              7769
EmployeeName           YUKO MURAKAMI
JobTitle            REGISTERED NURSE
BasePay                     97143.52
OvertimePay                  7066.76
OtherPay                     4502.34
Benefits                         NaN
TotalPay                   108712.62
TotalPayBenefits           108712.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7768, dtype: object)
(7769, Id                            7770
EmployeeName            BURTON WAN
JobTitle            DEPUTY SHERIFF
BasePay                   86464.25
OvertimePay               10283.93
OtherPay                  11953.36
Benefits                       NaN
TotalPay                 108701.54
TotalPayBenefits         108701.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7769, dtype: object)
(7770, Id                                7771
EmployeeName        MARYELAINE IGNACIO
JobTitle              REGISTERED NURSE
BasePay                       108414.9
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      108664.9
TotalPayBenefits              108664.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7770, dtype: object)
(7771, Id                                    7772
EmployeeName               COSMO TARANTINO
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        17995.4
OtherPay                               0.0
Benefits                               NaN
TotalPay                          108659.4
TotalPayBenefits                  108659.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7771, dtype: object)
(7772, Id                                  7773
EmployeeName                EFREN BERNAL
JobTitle            CAR AND AUTO PAINTER
BasePay                          71861.9
OvertimePay                     23930.98
OtherPay                        12859.95
Benefits                             NaN
TotalPay                       108652.83
TotalPayBenefits               108652.83
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7772, dtype: object)
(7773, Id                              7774
EmployeeName                ANN DINH
JobTitle            REGISTERED NURSE
BasePay                     98852.58
OvertimePay                   2925.3
OtherPay                     6873.77
Benefits                         NaN
TotalPay                   108651.65
TotalPayBenefits           108651.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7773, dtype: object)
(7774, Id                                          7775
EmployeeName                      SARAH SCHUMANN
JobTitle            DIRECTOR, PROBATION SERVICES
BasePay                                108645.16
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               108645.16
TotalPayBenefits                       108645.16
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7774, dtype: object)
(7775, Id                             7776
EmployeeName        EL CEG GONZALES
JobTitle             DEPUTY SHERIFF
BasePay                     86506.0
OvertimePay                15139.74
OtherPay                    6994.13
Benefits                        NaN
TotalPay                  108639.87
TotalPayBenefits          108639.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7775, dtype: object)
(7776, Id                               7777
EmployeeName        ALMER MANRIQUE JR
JobTitle             POLICE OFFICER I
BasePay                     100813.82
OvertimePay                   3490.11
OtherPay                      4306.75
Benefits                          NaN
TotalPay                    108610.68
TotalPayBenefits            108610.68
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7776, dtype: object)
(7777, Id                              7778
EmployeeName          JOSE HERNANDEZ
JobTitle            POLICE OFFICER I
BasePay                     94582.83
OvertimePay                  4785.91
OtherPay                      9241.7
Benefits                         NaN
TotalPay                   108610.44
TotalPayBenefits           108610.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7777, dtype: object)
(7778, Id                                   7779
EmployeeName                 CHUNG-MO KAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                          1485.72
Benefits                              NaN
TotalPay                        108603.13
TotalPayBenefits                108603.13
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7778, dtype: object)
(7779, Id                              7780
EmployeeName          JEFFREY CUENCA
JobTitle            POLICE OFFICER I
BasePay                     97583.95
OvertimePay                  1922.68
OtherPay                     9089.98
Benefits                         NaN
TotalPay                   108596.61
TotalPayBenefits           108596.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7779, dtype: object)
(7780, Id                              7781
EmployeeName                 VIET HA
JobTitle            POLICE OFFICER I
BasePay                     96681.32
OvertimePay                  6734.49
OtherPay                     5170.65
Benefits                         NaN
TotalPay                   108586.46
TotalPayBenefits           108586.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7780, dtype: object)
(7781, Id                              7782
EmployeeName             JOSHUA ENEA
JobTitle            POLICE OFFICER I
BasePay                     97238.92
OvertimePay                   6557.1
OtherPay                      4784.1
Benefits                         NaN
TotalPay                   108580.12
TotalPayBenefits           108580.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7781, dtype: object)
(7782, Id                              7783
EmployeeName            RENE MARENCO
JobTitle            TRANSIT OPERATOR
BasePay                     68526.26
OvertimePay                 34905.96
OtherPay                     5141.25
Benefits                         NaN
TotalPay                   108573.47
TotalPayBenefits           108573.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7782, dtype: object)
(7783, Id                                                      7784
EmployeeName                                 STEPHEN NAVARRA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90376.01
OvertimePay                                          9941.95
OtherPay                                             8244.47
Benefits                                                 NaN
TotalPay                                           108562.43
TotalPayBenefits                                   108562.43
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7783, dtype: object)
(7784, Id                                           7785
EmployeeName                         JOSE BANARIA
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                   99961.0
OvertimePay                               7499.81
OtherPay                                  1101.53
Benefits                                      NaN
TotalPay                                108562.34
TotalPayBenefits                        108562.34
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7784, dtype: object)
(7785, Id                                7786
EmployeeName            RINALDI WIBOWO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104435.66
OvertimePay                        0.0
OtherPay                       4121.76
Benefits                           NaN
TotalPay                     108557.42
TotalPayBenefits             108557.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7785, dtype: object)
(7786, Id                            7787
EmployeeName        MELISSA KELLER
JobTitle             SPECIAL NURSE
BasePay                   96918.87
OvertimePay                    0.0
OtherPay                  11625.64
Benefits                       NaN
TotalPay                 108544.51
TotalPayBenefits         108544.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7786, dtype: object)
(7787, Id                                7788
EmployeeName           MICHAEL TENNANT
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.15
OvertimePay                        0.0
OtherPay                       4054.21
Benefits                           NaN
TotalPay                     108540.36
TotalPayBenefits             108540.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7787, dtype: object)
(7788, Id                              7789
EmployeeName            MICHAEL MAYO
JobTitle            POLICE OFFICER I
BasePay                     95618.96
OvertimePay                  9594.26
OtherPay                     3312.85
Benefits                         NaN
TotalPay                   108526.07
TotalPayBenefits           108526.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7788, dtype: object)
(7789, Id                              7790
EmployeeName            LONNIE BEARD
JobTitle            TRANSIT OPERATOR
BasePay                     67598.14
OvertimePay                  39125.7
OtherPay                     1798.61
Benefits                         NaN
TotalPay                   108522.45
TotalPayBenefits           108522.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7789, dtype: object)
(7790, Id                                                      7791
EmployeeName                                     DAVID MARKS
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90376.01
OvertimePay                                          9439.55
OtherPay                                             8704.05
Benefits                                                 NaN
TotalPay                                           108519.61
TotalPayBenefits                                   108519.61
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7790, dtype: object)
(7791, Id                                        7792
EmployeeName                    BERT DONLIN JR
JobTitle            SENIOR CLAIMS INVESTIGATOR
BasePay                              103969.02
OvertimePay                            1726.64
OtherPay                               2809.08
Benefits                                   NaN
TotalPay                             108504.74
TotalPayBenefits                     108504.74
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7791, dtype: object)
(7792, Id                              7793
EmployeeName               SHER KHAN
JobTitle            POLICE OFFICER I
BasePay                     96727.34
OvertimePay                  5114.64
OtherPay                      6648.4
Benefits                         NaN
TotalPay                   108490.38
TotalPayBenefits           108490.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7792, dtype: object)
(7793, Id                                    7794
EmployeeName                   DENNIS GAMA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83233.96
OvertimePay                       19375.91
OtherPay                            5877.9
Benefits                               NaN
TotalPay                         108487.77
TotalPayBenefits                 108487.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7793, dtype: object)
(7794, Id                              7795
EmployeeName        REBECCA HOUGHTON
JobTitle            REGISTERED NURSE
BasePay                     96493.45
OvertimePay                  7801.85
OtherPay                     4179.42
Benefits                         NaN
TotalPay                   108474.72
TotalPayBenefits           108474.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7794, dtype: object)
(7795, Id                                  7796
EmployeeName                  DENIS JONG
JobTitle            CAR AND AUTO PAINTER
BasePay                         72161.58
OvertimePay                      20830.5
OtherPay                        15478.42
Benefits                             NaN
TotalPay                        108470.5
TotalPayBenefits                108470.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7795, dtype: object)
(7796, Id                                                     7797
EmployeeName                                GERARDO SEGARRA
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           100951.41
OvertimePay                                             0.0
OtherPay                                            7513.07
Benefits                                                NaN
TotalPay                                          108464.48
TotalPayBenefits                                  108464.48
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7796, dtype: object)
(7797, Id                           7798
EmployeeName         JUNG HEE NOH
JobTitle            SPECIAL NURSE
BasePay                  108458.1
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 108458.1
TotalPayBenefits         108458.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7797, dtype: object)
(7798, Id                              7799
EmployeeName              MARY RUSSO
JobTitle            REGISTERED NURSE
BasePay                      89047.5
OvertimePay                  3619.35
OtherPay                    15781.72
Benefits                         NaN
TotalPay                   108448.57
TotalPayBenefits           108448.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7798, dtype: object)
(7799, Id                                                     7800
EmployeeName                                     LUISA WONG
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                           100849.86
OvertimePay                                             0.0
OtherPay                                            7589.72
Benefits                                                NaN
TotalPay                                          108439.58
TotalPayBenefits                                  108439.58
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7799, dtype: object)
(7800, Id                              7801
EmployeeName          DAMON WILLIAMS
JobTitle            TRANSIT OPERATOR
BasePay                     66113.59
OvertimePay                 41967.83
OtherPay                      354.47
Benefits                         NaN
TotalPay                   108435.89
TotalPayBenefits           108435.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7800, dtype: object)
(7801, Id                                      7802
EmployeeName                    JEMAL BAILEY
JobTitle            TRACK MAINTENANCE WORKER
BasePay                              56754.4
OvertimePay                         44664.55
OtherPay                             7001.06
Benefits                                 NaN
TotalPay                           108420.01
TotalPayBenefits                   108420.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7801, dtype: object)
(7802, Id                                7803
EmployeeName              HO JUNG PARK
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                       3932.28
Benefits                           NaN
TotalPay                     108418.33
TotalPayBenefits             108418.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7802, dtype: object)
(7803, Id                                              7804
EmployeeName                                LI ZHANG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    108417.96
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   108417.96
TotalPayBenefits                           108417.96
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7803, dtype: object)
(7804, Id                                        7805
EmployeeName                     JOHN AFFOLTER
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.81
OvertimePay                            9038.94
OtherPay                               2235.01
Benefits                                   NaN
TotalPay                             108404.76
TotalPayBenefits                     108404.76
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7804, dtype: object)
(7805, Id                                               7806
EmployeeName                                IVAN SOON
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.62
OvertimePay                                       0.0
OtherPay                                      2847.04
Benefits                                          NaN
TotalPay                                    108401.66
TotalPayBenefits                            108401.66
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7805, dtype: object)
(7806, Id                                                7807
EmployeeName                            SAMUEL DUMALIG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    28068.4
OtherPay                                       2750.69
Benefits                                           NaN
TotalPay                                     108399.49
TotalPayBenefits                             108399.49
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7806, dtype: object)
(7807, Id                                                           7808
EmployeeName                                        ROBERT MALONE
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 107912.16
OvertimePay                                                   0.0
OtherPay                                                    477.3
Benefits                                                      NaN
TotalPay                                                108389.46
TotalPayBenefits                                        108389.46
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 7807, dtype: object)
(7808, Id                                        7809
EmployeeName                      RODNEY DUDUM
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                               86361.27
OvertimePay                           22021.59
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             108382.86
TotalPayBenefits                     108382.86
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7808, dtype: object)
(7809, Id                                7810
EmployeeName              MEGHAN GREEN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104294.49
OvertimePay                        0.0
OtherPay                       4072.45
Benefits                           NaN
TotalPay                     108366.94
TotalPayBenefits             108366.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7809, dtype: object)
(7810, Id                              7811
EmployeeName               YEON JUNG
JobTitle            REGISTERED NURSE
BasePay                     98176.29
OvertimePay                   5850.6
OtherPay                     4337.57
Benefits                         NaN
TotalPay                   108364.46
TotalPayBenefits           108364.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7810, dtype: object)
(7811, Id                                  7812
EmployeeName           RICHARD BRUMBAUGH
JobTitle            SEWER SERVICE WORKER
BasePay                          77948.0
OvertimePay                      20152.1
OtherPay                        10253.28
Benefits                             NaN
TotalPay                       108353.38
TotalPayBenefits               108353.38
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7811, dtype: object)
(7812, Id                                          7813
EmployeeName                     JOSEPHINE HICKS
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                 8312.37
Benefits                                     NaN
TotalPay                               108351.58
TotalPayBenefits                       108351.58
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7812, dtype: object)
(7813, Id                           7814
EmployeeName        RACHAEL KAGAN
JobTitle              MANAGER III
BasePay                 107961.48
OvertimePay                   0.0
OtherPay                    388.7
Benefits                      NaN
TotalPay                108350.18
TotalPayBenefits        108350.18
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7813, dtype: object)
(7814, Id                                  7815
EmployeeName                ARTHUR LEARY
JobTitle            CAR AND AUTO PAINTER
BasePay                         73075.04
OvertimePay                     23635.18
OtherPay                        11638.41
Benefits                             NaN
TotalPay                       108348.63
TotalPayBenefits               108348.63
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7814, dtype: object)
(7815, Id                              7816
EmployeeName            AILEEN PABLO
JobTitle            REGISTERED NURSE
BasePay                     91892.23
OvertimePay                  7356.33
OtherPay                     9099.68
Benefits                         NaN
TotalPay                   108348.24
TotalPayBenefits           108348.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7815, dtype: object)
(7816, Id                              7817
EmployeeName          HEGLA FIELDING
JobTitle            REGISTERED NURSE
BasePay                     98638.45
OvertimePay                   5181.3
OtherPay                     4510.49
Benefits                         NaN
TotalPay                   108330.24
TotalPayBenefits           108330.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7816, dtype: object)
(7817, Id                                                      7818
EmployeeName                                   RAYMOND KLEIN
JobTitle            WATER AND POWER MAINTENANCE SUPERVISOR I
BasePay                                             90135.63
OvertimePay                                         12149.96
OtherPay                                             6039.05
Benefits                                                 NaN
TotalPay                                           108324.64
TotalPayBenefits                                   108324.64
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7817, dtype: object)
(7818, Id                                   7819
EmployeeName                DANIEL WILSON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.85
OvertimePay                       5825.14
OtherPay                          6610.89
Benefits                              NaN
TotalPay                        108317.88
TotalPayBenefits                108317.88
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7818, dtype: object)
(7819, Id                                7820
EmployeeName                 JOSEPH HO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.68
OvertimePay                        0.0
OtherPay                       3818.88
Benefits                           NaN
TotalPay                     108305.56
TotalPayBenefits             108305.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7819, dtype: object)
(7820, Id                              7821
EmployeeName             WAN LAN TAY
JobTitle            REGISTERED NURSE
BasePay                     106297.2
OvertimePay                    610.2
OtherPay                      1382.5
Benefits                         NaN
TotalPay                    108289.9
TotalPayBenefits            108289.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7820, dtype: object)
(7821, Id                               7822
EmployeeName        MICHAEL BROUSSARD
JobTitle              UTILITY PLUMBER
BasePay                      89916.76
OvertimePay                   2690.66
OtherPay                     15682.44
Benefits                          NaN
TotalPay                    108289.86
TotalPayBenefits            108289.86
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7821, dtype: object)
(7822, Id                              7823
EmployeeName            TRACY MIESEN
JobTitle            REGISTERED NURSE
BasePay                     95586.84
OvertimePay                  1891.62
OtherPay                    10808.01
Benefits                         NaN
TotalPay                   108286.47
TotalPayBenefits           108286.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7822, dtype: object)
(7823, Id                                7824
EmployeeName                   CHU LIU
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                       3787.81
Benefits                           NaN
TotalPay                     108273.81
TotalPayBenefits             108273.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7823, dtype: object)
(7824, Id                               7825
EmployeeName        MARIA GEMMA JURIE
JobTitle             REGISTERED NURSE
BasePay                      99857.38
OvertimePay                   4021.32
OtherPay                       4394.0
Benefits                          NaN
TotalPay                     108272.7
TotalPayBenefits             108272.7
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7824, dtype: object)
(7825, Id                                7826
EmployeeName                DAVID WANG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                        3778.2
Benefits                           NaN
TotalPay                      108264.2
TotalPayBenefits              108264.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7825, dtype: object)
(7826, Id                                  7827
EmployeeName        ESTELA ROSAR UGALINO
JobTitle                REGISTERED NURSE
BasePay                         97031.79
OvertimePay                      9716.68
OtherPay                         1505.32
Benefits                             NaN
TotalPay                       108253.79
TotalPayBenefits               108253.79
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7826, dtype: object)
(7827, Id                                7828
EmployeeName        MICHELLE JAVROTSKY
JobTitle              REGISTERED NURSE
BasePay                      100698.12
OvertimePay                    3109.89
OtherPay                       4441.68
Benefits                           NaN
TotalPay                     108249.69
TotalPayBenefits             108249.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7827, dtype: object)
(7828, Id                               7829
EmployeeName              LUIS CANCEL
JobTitle            DEPARTMENT HEAD I
BasePay                      82990.11
OvertimePay                       0.0
OtherPay                      25256.9
Benefits                          NaN
TotalPay                    108247.01
TotalPayBenefits            108247.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7828, dtype: object)
(7829, Id                                                      7830
EmployeeName                               SVETLANA VAKSBERG
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.04
OvertimePay                                              0.0
OtherPay                                             7320.63
Benefits                                                 NaN
TotalPay                                           108243.67
TotalPayBenefits                                   108243.67
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7829, dtype: object)
(7830, Id                                                      7831
EmployeeName                                     JANIE WHITE
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.03
OvertimePay                                              0.0
OtherPay                                             7320.63
Benefits                                                 NaN
TotalPay                                           108243.66
TotalPayBenefits                                   108243.66
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7830, dtype: object)
(7831, Id                                                      7832
EmployeeName                                MAGALY FERNANDEZ
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.02
OvertimePay                                              0.0
OtherPay                                             7320.63
Benefits                                                 NaN
TotalPay                                           108243.65
TotalPayBenefits                                   108243.65
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7831, dtype: object)
(7832, Id                             7833
EmployeeName        DIANE CONTRERAS
JobTitle             DEPUTY SHERIFF
BasePay                    86819.17
OvertimePay                13659.79
OtherPay                    7763.88
Benefits                        NaN
TotalPay                  108242.84
TotalPayBenefits          108242.84
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7832, dtype: object)
(7833, Id                             7834
EmployeeName        GEOFFREY GRAHAM
JobTitle                    PLUMBER
BasePay                    90531.71
OvertimePay                 5960.35
OtherPay                   11737.41
Benefits                        NaN
TotalPay                  108229.47
TotalPayBenefits          108229.47
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7833, dtype: object)
(7834, Id                              7835
EmployeeName         GEORGIA CHOURRE
JobTitle            REGISTERED NURSE
BasePay                     96778.41
OvertimePay                  2158.91
OtherPay                     9278.08
Benefits                         NaN
TotalPay                    108215.4
TotalPayBenefits            108215.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7834, dtype: object)
(7835, Id                                   7836
EmployeeName              PAUL RAPICAVOLI
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          88288.37
OvertimePay                       6125.99
OtherPay                         13794.37
Benefits                              NaN
TotalPay                        108208.73
TotalPayBenefits                108208.73
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7835, dtype: object)
(7836, Id                                              7837
EmployeeName                            ANTHONY WONG
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73316.07
OvertimePay                                  33604.9
OtherPay                                     1276.15
Benefits                                         NaN
TotalPay                                   108197.12
TotalPayBenefits                           108197.12
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7836, dtype: object)
(7837, Id                               7838
EmployeeName             JOCELYN KANE
JobTitle            DEPARTMENT HEAD I
BasePay                     108192.44
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    108192.44
TotalPayBenefits            108192.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7837, dtype: object)
(7838, Id                              7839
EmployeeName         MICHAEL AMOROSO
JobTitle            POLICE OFFICER I
BasePay                    106725.89
OvertimePay                      0.0
OtherPay                     1462.23
Benefits                         NaN
TotalPay                   108188.12
TotalPayBenefits           108188.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7838, dtype: object)
(7839, Id                                7840
EmployeeName             CECILE PORTER
JobTitle            POLICE OFFICER III
BasePay                      101753.07
OvertimePay                      82.77
OtherPay                       6343.01
Benefits                           NaN
TotalPay                     108178.85
TotalPayBenefits             108178.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7839, dtype: object)
(7840, Id                                        7841
EmployeeName                       ANDREA LEGO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                           23782.97
OtherPay                                514.38
Benefits                                   NaN
TotalPay                             108178.67
TotalPayBenefits                     108178.67
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7840, dtype: object)
(7841, Id                                                 7842
EmployeeName                              SHIRLEY GIANG
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       108177.02
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      108177.02
TotalPayBenefits                              108177.02
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 7841, dtype: object)
(7842, Id                                   7843
EmployeeName                   KENNETH SY
JobTitle            IS ENGINEER - JOURNEY
BasePay                          107117.4
OvertimePay                           0.0
OtherPay                           1055.0
Benefits                              NaN
TotalPay                         108172.4
TotalPayBenefits                 108172.4
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7842, dtype: object)
(7843, Id                                7844
EmployeeName                SOPHIA LIN
JobTitle            NURSE PRACTITIONER
BasePay                       107918.1
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      108168.1
TotalPayBenefits              108168.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7843, dtype: object)
(7844, Id                                 7845
EmployeeName        JEANNE HARKER-DAVIS
JobTitle             TRANSIT SUPERVISOR
BasePay                        83240.95
OvertimePay                     22218.4
OtherPay                        2708.74
Benefits                            NaN
TotalPay                      108168.09
TotalPayBenefits              108168.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7844, dtype: object)
(7845, Id                             7846
EmployeeName        CARL LUCKENBILL
JobTitle                 MANAGER IV
BasePay                   108157.99
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  108157.99
TotalPayBenefits          108157.99
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7845, dtype: object)
(7846, Id                              7847
EmployeeName             JAMES HORAN
JobTitle            POLICE OFFICER I
BasePay                     91799.92
OvertimePay                  6337.22
OtherPay                    10018.33
Benefits                         NaN
TotalPay                   108155.47
TotalPayBenefits           108155.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7846, dtype: object)
(7847, Id                               7848
EmployeeName               JANICE LUM
JobTitle            POLICE OFFICER II
BasePay                       98148.0
OvertimePay                   5020.18
OtherPay                      4970.17
Benefits                          NaN
TotalPay                    108138.35
TotalPayBenefits            108138.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7847, dtype: object)
(7848, Id                                 7849
EmployeeName              ADRIAN MONERO
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         71905.8
OvertimePay                    27216.87
OtherPay                        9003.45
Benefits                            NaN
TotalPay                      108126.12
TotalPayBenefits              108126.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7848, dtype: object)
(7849, Id                                           7850
EmployeeName                       GEORGE FICKLIN
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                   90360.5
OvertimePay                               9945.06
OtherPay                                  7812.21
Benefits                                      NaN
TotalPay                                108117.77
TotalPayBenefits                        108117.77
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7849, dtype: object)
(7850, Id                            7851
EmployeeName            KYLE CURRY
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                9415.14
OtherPay                  11854.26
Benefits                       NaN
TotalPay                  108109.4
TotalPayBenefits          108109.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7850, dtype: object)
(7851, Id                              7852
EmployeeName        MARIANNE PALISOC
JobTitle            REGISTERED NURSE
BasePay                     85932.44
OvertimePay                  6043.55
OtherPay                    16127.78
Benefits                         NaN
TotalPay                   108103.77
TotalPayBenefits           108103.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7851, dtype: object)
(7852, Id                              7853
EmployeeName          ANGELENE CANAS
JobTitle            REGISTERED NURSE
BasePay                     105514.4
OvertimePay                   701.99
OtherPay                     1886.86
Benefits                         NaN
TotalPay                   108103.25
TotalPayBenefits           108103.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7852, dtype: object)
(7853, Id                            7854
EmployeeName              FRED LEW
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               12847.68
OtherPay                   8409.68
Benefits                       NaN
TotalPay                 108097.36
TotalPayBenefits         108097.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7853, dtype: object)
(7854, Id                              7855
EmployeeName            MARY LUCIANO
JobTitle            POLICE OFFICER I
BasePay                    106060.81
OvertimePay                      0.0
OtherPay                     2006.33
Benefits                         NaN
TotalPay                   108067.14
TotalPayBenefits           108067.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7854, dtype: object)
(7855, Id                               7856
EmployeeName          MIGUEL ESPINOZA
JobTitle            TRANSIT MANAGER I
BasePay                     103948.01
OvertimePay                       0.0
OtherPay                       4100.3
Benefits                          NaN
TotalPay                    108048.31
TotalPayBenefits            108048.31
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7855, dtype: object)
(7856, Id                              7857
EmployeeName          DAVID STACONIS
JobTitle            REGISTERED NURSE
BasePay                    102240.95
OvertimePay                  1751.22
OtherPay                     4051.88
Benefits                         NaN
TotalPay                   108044.05
TotalPayBenefits           108044.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7856, dtype: object)
(7857, Id                                              7858
EmployeeName                         STEVEN GUDERIAN
JobTitle            TRANSPORTATION SAFETY SPECIALIST
BasePay                                     94857.62
OvertimePay                                   310.45
OtherPay                                    12856.09
Benefits                                         NaN
TotalPay                                   108024.16
TotalPayBenefits                           108024.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7857, dtype: object)
(7858, Id                              7859
EmployeeName        NICOLE PIN MAZZA
JobTitle            REGISTERED NURSE
BasePay                    100047.65
OvertimePay                  2631.73
OtherPay                     5340.83
Benefits                         NaN
TotalPay                   108020.21
TotalPayBenefits           108020.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7858, dtype: object)
(7859, Id                                             7860
EmployeeName                      LUCKSHALLA INDRAN
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    90930.63
OvertimePay                                 7149.05
OtherPay                                    9936.23
Benefits                                        NaN
TotalPay                                  108015.91
TotalPayBenefits                          108015.91
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7859, dtype: object)
(7860, Id                                                    7861
EmployeeName                                  LORRIE SERNA
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           93365.54
OvertimePay                                        6379.05
OtherPay                                           8269.91
Benefits                                               NaN
TotalPay                                          108014.5
TotalPayBenefits                                  108014.5
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 7860, dtype: object)
(7861, Id                              7862
EmployeeName           NICOLE MINNIS
JobTitle            REGISTERED NURSE
BasePay                     86629.72
OvertimePay                  3113.28
OtherPay                    18264.37
Benefits                         NaN
TotalPay                   108007.37
TotalPayBenefits           108007.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7861, dtype: object)
(7862, Id                                 7863
EmployeeName             HENRY BAKER JR
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         71321.2
OvertimePay                    12038.26
OtherPay                        24647.6
Benefits                            NaN
TotalPay                      108007.06
TotalPayBenefits              108007.06
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7862, dtype: object)
(7863, Id                                  7864
EmployeeName        MARIANNE BERTUCCELLI
JobTitle                       MANAGER I
BasePay                        106506.14
OvertimePay                          0.0
OtherPay                          1500.0
Benefits                             NaN
TotalPay                       108006.14
TotalPayBenefits               108006.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7863, dtype: object)
(7864, Id                              7865
EmployeeName           VALORIE SMITH
JobTitle            REGISTERED NURSE
BasePay                     97199.07
OvertimePay                  3306.15
OtherPay                     7500.66
Benefits                         NaN
TotalPay                   108005.88
TotalPayBenefits           108005.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7864, dtype: object)
(7865, Id                              7866
EmployeeName            MARIO MARINO
JobTitle            POLICE OFFICER I
BasePay                    106064.65
OvertimePay                      0.0
OtherPay                     1935.61
Benefits                         NaN
TotalPay                   108000.26
TotalPayBenefits           108000.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7865, dtype: object)
(7866, Id                                   7867
EmployeeName                 EMIL TOMINIO
JobTitle            MAINTENANCE MACHINIST
BasePay                          69201.93
OvertimePay                      38135.11
OtherPay                            660.0
Benefits                              NaN
TotalPay                        107997.04
TotalPayBenefits                107997.04
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7866, dtype: object)
(7867, Id                               7868
EmployeeName        CHRISTOPHER KOHRS
JobTitle            POLICE OFFICER II
BasePay                      95550.52
OvertimePay                   5690.91
OtherPay                       6751.7
Benefits                          NaN
TotalPay                    107993.13
TotalPayBenefits            107993.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7867, dtype: object)
(7868, Id                                                  7869
EmployeeName                                EDWIN DINOZO
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                          74932.0
OvertimePay                                     19292.17
OtherPay                                        13762.48
Benefits                                             NaN
TotalPay                                       107986.65
TotalPayBenefits                               107986.65
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 7868, dtype: object)
(7869, Id                                               7870
EmployeeName                              WILLIAM YUE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   8738.82
OtherPay                                        230.0
Benefits                                          NaN
TotalPay                                    107983.22
TotalPayBenefits                            107983.22
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7869, dtype: object)
(7870, Id                              7871
EmployeeName          SUZANNE MILLER
JobTitle            REGISTERED NURSE
BasePay                     96766.07
OvertimePay                  4026.22
OtherPay                     7182.76
Benefits                         NaN
TotalPay                   107975.05
TotalPayBenefits           107975.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7870, dtype: object)
(7871, Id                              7872
EmployeeName              HAVIN MURO
JobTitle            POLICE OFFICER I
BasePay                    101995.48
OvertimePay                  4937.25
OtherPay                     1034.06
Benefits                         NaN
TotalPay                   107966.79
TotalPayBenefits           107966.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7871, dtype: object)
(7872, Id                                             7873
EmployeeName                           OTTO DITTMAN
JobTitle            TRANSIT POWER LINE SUPERVISOR I
BasePay                                    86951.01
OvertimePay                                13506.18
OtherPay                                    7508.19
Benefits                                        NaN
TotalPay                                  107965.38
TotalPayBenefits                          107965.38
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7872, dtype: object)
(7873, Id                                                     7874
EmployeeName                                 JOAN VALLARINO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             78016.3
OvertimePay                                        22182.72
OtherPay                                            7764.88
Benefits                                                NaN
TotalPay                                           107963.9
TotalPayBenefits                                   107963.9
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7873, dtype: object)
(7874, Id                                                              7875
EmployeeName                                         ALEXANDER CHONG
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     88258.18
OvertimePay                                                 18815.75
OtherPay                                                      886.36
Benefits                                                         NaN
TotalPay                                                   107960.29
TotalPayBenefits                                           107960.29
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 7874, dtype: object)
(7875, Id                                    7876
EmployeeName                  STEPHEN SHAW
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           97629.62
OvertimePay                         881.77
OtherPay                           9445.22
Benefits                               NaN
TotalPay                         107956.61
TotalPayBenefits                 107956.61
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7875, dtype: object)
(7876, Id                              7877
EmployeeName           RYAN CROCKETT
JobTitle            POLICE OFFICER I
BasePay                     99337.06
OvertimePay                  6344.29
OtherPay                     2273.76
Benefits                         NaN
TotalPay                   107955.11
TotalPayBenefits           107955.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7876, dtype: object)
(7877, Id                               7878
EmployeeName        KATHERINE ASCHERO
JobTitle             REGISTERED NURSE
BasePay                      96877.06
OvertimePay                   5134.75
OtherPay                      5943.08
Benefits                          NaN
TotalPay                    107954.89
TotalPayBenefits            107954.89
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7877, dtype: object)
(7878, Id                                               7879
EmployeeName                                HOA HUYNH
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       98222.4
OvertimePay                                   8908.48
OtherPay                                        820.0
Benefits                                          NaN
TotalPay                                    107950.88
TotalPayBenefits                            107950.88
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7878, dtype: object)
(7879, Id                               7880
EmployeeName          ROBERT PEDERSEN
JobTitle            POLICE OFFICER II
BasePay                      96047.94
OvertimePay                   5013.61
OtherPay                      6887.96
Benefits                          NaN
TotalPay                    107949.51
TotalPayBenefits            107949.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7879, dtype: object)
(7880, Id                                 7881
EmployeeName        ANTHONY CASTELLANOS
JobTitle               POLICE OFFICER I
BasePay                         91822.3
OvertimePay                      7476.5
OtherPay                        8636.56
Benefits                            NaN
TotalPay                      107935.36
TotalPayBenefits              107935.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7880, dtype: object)
(7881, Id                              7882
EmployeeName          ABRAHAM ABARCA
JobTitle            REGISTERED NURSE
BasePay                     99610.11
OvertimePay                  2986.81
OtherPay                     5326.05
Benefits                         NaN
TotalPay                   107922.97
TotalPayBenefits           107922.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7881, dtype: object)
(7882, Id                           7883
EmployeeName         LAWRENCE SOE
JobTitle                 ENGINEER
BasePay                  103728.4
OvertimePay                   0.0
OtherPay                  4194.57
Benefits                      NaN
TotalPay                107922.97
TotalPayBenefits        107922.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7882, dtype: object)
(7883, Id                               7884
EmployeeName             MICHAEL COTA
JobTitle            POLICE OFFICER II
BasePay                       96245.5
OvertimePay                   2779.43
OtherPay                       8889.3
Benefits                          NaN
TotalPay                    107914.23
TotalPayBenefits            107914.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7883, dtype: object)
(7884, Id                               7885
EmployeeName                 HENRY HA
JobTitle            POLICE OFFICER II
BasePay                     101186.23
OvertimePay                   2766.04
OtherPay                      3948.98
Benefits                          NaN
TotalPay                    107901.25
TotalPayBenefits            107901.25
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7884, dtype: object)
(7885, Id                                              7886
EmployeeName                           EDWARD ANZORE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     39471.99
OvertimePay                                 13271.22
OtherPay                                     55149.8
Benefits                                         NaN
TotalPay                                   107893.01
TotalPayBenefits                           107893.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 7885, dtype: object)
(7886, Id                                      7887
EmployeeName                     NAUSHAD ALI
JobTitle            TRACK MAINTENANCE WORKER
BasePay                              60127.1
OvertimePay                         41978.67
OtherPay                             5779.33
Benefits                                 NaN
TotalPay                            107885.1
TotalPayBenefits                    107885.1
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7886, dtype: object)
(7887, Id                                   7888
EmployeeName                  JAMES DOLLY
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96254.33
OvertimePay                       3140.46
OtherPay                           8485.1
Benefits                              NaN
TotalPay                        107879.89
TotalPayBenefits                107879.89
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7887, dtype: object)
(7888, Id                              7889
EmployeeName        MANOLITO LAZATIN
JobTitle              DEPUTY SHERIFF
BasePay                     65696.97
OvertimePay                 33176.25
OtherPay                      9001.6
Benefits                         NaN
TotalPay                   107874.82
TotalPayBenefits           107874.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7888, dtype: object)
(7889, Id                            7890
EmployeeName            RONALD CHU
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               14523.62
OtherPay                   6830.36
Benefits                       NaN
TotalPay                 107859.99
TotalPayBenefits         107859.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7889, dtype: object)
(7890, Id                                7891
EmployeeName            ANDREW NAVARRO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                       3371.42
Benefits                           NaN
TotalPay                     107857.47
TotalPayBenefits             107857.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7890, dtype: object)
(7891, Id                               7892
EmployeeName             MARI SHEPARD
JobTitle            POLICE OFFICER II
BasePay                       98300.0
OvertimePay                   3966.93
OtherPay                      5582.35
Benefits                          NaN
TotalPay                    107849.28
TotalPayBenefits            107849.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7891, dtype: object)
(7892, Id                            7893
EmployeeName             SUSAN LEE
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  107848.4
TotalPayBenefits          107848.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7892, dtype: object)
(7893, Id                            7894
EmployeeName           RHONDA FUNG
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  107848.4
TotalPayBenefits          107848.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7893, dtype: object)
(7894, Id                            7895
EmployeeName         NOREEN IKEUYE
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  107848.4
TotalPayBenefits          107848.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7894, dtype: object)
(7895, Id                            7896
EmployeeName            LOIS JONES
JobTitle            COURT REPORTER
BasePay                   107848.4
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  107848.4
TotalPayBenefits          107848.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7895, dtype: object)
(7896, Id                            7897
EmployeeName         VINCENT QUOCK
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               10939.39
OtherPay                  10061.08
Benefits                       NaN
TotalPay                 107840.47
TotalPayBenefits         107840.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7896, dtype: object)
(7897, Id                                7898
EmployeeName            YOLANDA QUISAO
JobTitle            ASSOCIATE ENGINEER
BasePay                      107815.81
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     107815.81
TotalPayBenefits             107815.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7897, dtype: object)
(7898, Id                              7899
EmployeeName           PING FU KWONG
JobTitle            TRANSIT OPERATOR
BasePay                      66482.3
OvertimePay                 36994.96
OtherPay                     4329.88
Benefits                         NaN
TotalPay                   107807.14
TotalPayBenefits           107807.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7898, dtype: object)
(7899, Id                                                7900
EmployeeName                            EDWARD WYNKOOP
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       19735.84
OvertimePay                                   15879.08
OtherPay                                      72190.89
Benefits                                           NaN
TotalPay                                     107805.81
TotalPayBenefits                             107805.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7899, dtype: object)
(7900, Id                            7901
EmployeeName          LAWRENCE HOM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                9856.91
OtherPay                  11090.52
Benefits                       NaN
TotalPay                 107787.43
TotalPayBenefits         107787.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7900, dtype: object)
(7901, Id                              7902
EmployeeName            DARWIN NAVAL
JobTitle            POLICE OFFICER I
BasePay                     97613.11
OvertimePay                  5400.74
OtherPay                     4767.72
Benefits                         NaN
TotalPay                   107781.57
TotalPayBenefits           107781.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7901, dtype: object)
(7902, Id                                  7903
EmployeeName            WILLIE ALEXANDER
JobTitle            CAR AND AUTO PAINTER
BasePay                         73659.66
OvertimePay                     22343.15
OtherPay                        11774.12
Benefits                             NaN
TotalPay                       107776.93
TotalPayBenefits               107776.93
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7902, dtype: object)
(7903, Id                                                     7904
EmployeeName                                   MAURA MOYLAN
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            86994.87
OvertimePay                                        13437.68
OtherPay                                            7341.25
Benefits                                                NaN
TotalPay                                           107773.8
TotalPayBenefits                                   107773.8
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 7903, dtype: object)
(7904, Id                            7905
EmployeeName        PATRICIA SMITH
JobTitle                 MANAGER I
BasePay                  107773.71
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 107773.71
TotalPayBenefits         107773.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7904, dtype: object)
(7905, Id                              7906
EmployeeName           BRADEN TODARO
JobTitle            POLICE OFFICER I
BasePay                     97560.94
OvertimePay                  3708.68
OtherPay                     6502.02
Benefits                         NaN
TotalPay                   107771.64
TotalPayBenefits           107771.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7905, dtype: object)
(7906, Id                           7907
EmployeeName         DANA FREISER
JobTitle            SPECIAL NURSE
BasePay                 104460.63
OvertimePay                   0.0
OtherPay                  3300.21
Benefits                      NaN
TotalPay                107760.84
TotalPayBenefits        107760.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7906, dtype: object)
(7907, Id                           7908
EmployeeName         ANN BRUNETTA
JobTitle            SPECIAL NURSE
BasePay                  99312.04
OvertimePay               3761.11
OtherPay                  4683.99
Benefits                      NaN
TotalPay                107757.14
TotalPayBenefits        107757.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7907, dtype: object)
(7908, Id                                  7909
EmployeeName        STANISLAV BRATCHIKOV
JobTitle                POLICE OFFICER I
BasePay                          85049.7
OvertimePay                     10454.25
OtherPay                        12250.66
Benefits                             NaN
TotalPay                       107754.61
TotalPayBenefits               107754.61
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7908, dtype: object)
(7909, Id                                                               7910
EmployeeName                                              DAVID CALVO
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      90376.01
OvertimePay                                                   3610.83
OtherPay                                                     13751.72
Benefits                                                          NaN
TotalPay                                                    107738.56
TotalPayBenefits                                            107738.56
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7909, dtype: object)
(7910, Id                                                  7911
EmployeeName                               STEVEN CASHEN
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                         74743.22
OvertimePay                                     19823.48
OtherPay                                        13162.79
Benefits                                             NaN
TotalPay                                       107729.49
TotalPayBenefits                               107729.49
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 7910, dtype: object)
(7911, Id                                7912
EmployeeName             ROBERT LAROSE
JobTitle            BUILDING INSPECTOR
BasePay                      102030.89
OvertimePay                     594.79
OtherPay                       5101.52
Benefits                           NaN
TotalPay                      107727.2
TotalPayBenefits              107727.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7911, dtype: object)
(7912, Id                                   7913
EmployeeName                    MASBY LAU
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                            606.2
Benefits                              NaN
TotalPay                        107723.61
TotalPayBenefits                107723.61
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7912, dtype: object)
(7913, Id                              7914
EmployeeName        ANTONIO CARRASCO
JobTitle            POLICE OFFICER I
BasePay                    101344.34
OvertimePay                  4035.23
OtherPay                     2335.71
Benefits                         NaN
TotalPay                   107715.28
TotalPayBenefits           107715.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7913, dtype: object)
(7914, Id                                    7915
EmployeeName                   KEVIN KLYSE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            98199.9
OvertimePay                         891.99
OtherPay                            8614.2
Benefits                               NaN
TotalPay                         107706.09
TotalPayBenefits                 107706.09
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7914, dtype: object)
(7915, Id                                   7916
EmployeeName             WALTER WEATHERLY
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.81
OvertimePay                       4963.66
OtherPay                          6858.78
Benefits                              NaN
TotalPay                        107704.25
TotalPayBenefits                107704.25
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7915, dtype: object)
(7916, Id                              7917
EmployeeName          MARYELLEN RYAN
JobTitle            REGISTERED NURSE
BasePay                    100756.93
OvertimePay                  4288.23
OtherPay                      2654.0
Benefits                         NaN
TotalPay                   107699.16
TotalPayBenefits           107699.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7916, dtype: object)
(7917, Id                                     7918
EmployeeName                      MARY HAYS
JobTitle            ASSISTANT LAW LIBRARIAN
BasePay                            107692.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           107692.0
TotalPayBenefits                   107692.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 7917, dtype: object)
(7918, Id                                          7919
EmployeeName                      JIMMEY PARRISH
JobTitle            CEMENT FINISHER SUPERVISOR I
BasePay                                  88535.0
OvertimePay                             18476.51
OtherPay                                  677.85
Benefits                                     NaN
TotalPay                               107689.36
TotalPayBenefits                       107689.36
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 7918, dtype: object)
(7919, Id                                             7920
EmployeeName                            SARAH JONES
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   107689.31
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  107689.31
TotalPayBenefits                          107689.31
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 7919, dtype: object)
(7920, Id                                  7921
EmployeeName                LORENZO HALE
JobTitle            SEWER SERVICE WORKER
BasePay                         85478.79
OvertimePay                     22076.27
OtherPay                          132.76
Benefits                             NaN
TotalPay                       107687.82
TotalPayBenefits               107687.82
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7920, dtype: object)
(7921, Id                                 7922
EmployeeName        RUBY ANNE DELA CRUZ
JobTitle               REGISTERED NURSE
BasePay                       101311.32
OvertimePay                     2011.74
OtherPay                        4356.68
Benefits                            NaN
TotalPay                      107679.74
TotalPayBenefits              107679.74
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7921, dtype: object)
(7922, Id                                         7923
EmployeeName                       MARTIN DEASY
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                               102546.12
OvertimePay                                 0.0
OtherPay                                5127.09
Benefits                                    NaN
TotalPay                              107673.21
TotalPayBenefits                      107673.21
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 7922, dtype: object)
(7923, Id                                7924
EmployeeName                JACK KWONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   19384.32
OtherPay                         226.8
Benefits                           NaN
TotalPay                     107673.12
TotalPayBenefits             107673.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7923, dtype: object)
(7924, Id                            7925
EmployeeName           JOHN LAWSHA
JobTitle            DEPUTY SHERIFF
BasePay                   86814.58
OvertimePay               14669.74
OtherPay                   6185.71
Benefits                       NaN
TotalPay                 107670.03
TotalPayBenefits         107670.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7924, dtype: object)
(7925, Id                                  7926
EmployeeName        MARIA COREEN VELASCO
JobTitle                REGISTERED NURSE
BasePay                         96129.32
OvertimePay                      4978.53
OtherPay                         6560.93
Benefits                             NaN
TotalPay                       107668.78
TotalPayBenefits               107668.78
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 7925, dtype: object)
(7926, Id                              7927
EmployeeName          LEON FERRONATO
JobTitle            POLICE OFFICER I
BasePay                     93417.16
OvertimePay                  5907.78
OtherPay                     8333.76
Benefits                         NaN
TotalPay                    107658.7
TotalPayBenefits            107658.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7926, dtype: object)
(7927, Id                                                               7928
EmployeeName                                            MICHAEL EVANS
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      81900.76
OvertimePay                                                  10810.67
OtherPay                                                     14947.09
Benefits                                                          NaN
TotalPay                                                    107658.52
TotalPayBenefits                                            107658.52
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 7927, dtype: object)
(7928, Id                           7929
EmployeeName           NELSON JIM
JobTitle               MANAGER II
BasePay                  107658.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 107658.3
TotalPayBenefits         107658.3
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7928, dtype: object)
(7929, Id                              7930
EmployeeName           CHANG GEE LIM
JobTitle            REGISTERED NURSE
BasePay                     97391.59
OvertimePay                   5181.3
OtherPay                     5080.84
Benefits                         NaN
TotalPay                   107653.73
TotalPayBenefits           107653.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7929, dtype: object)
(7930, Id                                                7931
EmployeeName                                 DAVID YIP
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   19553.76
OtherPay                                       10528.4
Benefits                                           NaN
TotalPay                                     107651.16
TotalPayBenefits                             107651.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 7930, dtype: object)
(7931, Id                                 7932
EmployeeName              VINCENT SPOHN
JobTitle            CLAIMS INVESTIGATOR
BasePay                        84663.51
OvertimePay                    13241.17
OtherPay                        9740.59
Benefits                            NaN
TotalPay                      107645.27
TotalPayBenefits              107645.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7931, dtype: object)
(7932, Id                                7933
EmployeeName           STAN PALATNIKOV
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                      17830.38
Benefits                           NaN
TotalPay                     107636.39
TotalPayBenefits             107636.39
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7932, dtype: object)
(7933, Id                              7934
EmployeeName              JIMMY CHAU
JobTitle            TRANSIT OPERATOR
BasePay                     66398.76
OvertimePay                 35296.41
OtherPay                     5935.94
Benefits                         NaN
TotalPay                   107631.11
TotalPayBenefits           107631.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7933, dtype: object)
(7934, Id                              7935
EmployeeName              DANA TERRY
JobTitle            POLICE OFFICER I
BasePay                    106103.44
OvertimePay                   556.82
OtherPay                      969.79
Benefits                         NaN
TotalPay                   107630.05
TotalPayBenefits           107630.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7934, dtype: object)
(7935, Id                            7936
EmployeeName        PATRICIA FRANK
JobTitle             SPECIAL NURSE
BasePay                   86855.44
OvertimePay                5910.25
OtherPay                  14857.28
Benefits                       NaN
TotalPay                 107622.97
TotalPayBenefits         107622.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7935, dtype: object)
(7936, Id                                      7937
EmployeeName          NAIYAPAKORN NAKORNKHET
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            107614.09
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           107614.09
TotalPayBenefits                   107614.09
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7936, dtype: object)
(7937, Id                                7938
EmployeeName             NANCY CURVINO
JobTitle            BUILDING INSPECTOR
BasePay                       102488.4
OvertimePay                        0.0
OtherPay                       5125.55
Benefits                           NaN
TotalPay                     107613.95
TotalPayBenefits             107613.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7937, dtype: object)
(7938, Id                              7939
EmployeeName           OMAR ALVARADO
JobTitle            POLICE OFFICER I
BasePay                     98558.32
OvertimePay                  6080.11
OtherPay                     2975.13
Benefits                         NaN
TotalPay                   107613.56
TotalPayBenefits           107613.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7938, dtype: object)
(7939, Id                                7940
EmployeeName             DIANE ROBBINS
JobTitle            NURSE PRACTITIONER
BasePay                      103195.93
OvertimePay                        0.0
OtherPay                        4416.2
Benefits                           NaN
TotalPay                     107612.13
TotalPayBenefits             107612.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7939, dtype: object)
(7940, Id                                7941
EmployeeName               OPHELIA LAU
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                       3110.92
Benefits                           NaN
TotalPay                     107596.95
TotalPayBenefits             107596.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7940, dtype: object)
(7941, Id                            7942
EmployeeName          MICHAEL TUNE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 9811.3
OtherPay                  10938.87
Benefits                       NaN
TotalPay                 107590.17
TotalPayBenefits         107590.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7941, dtype: object)
(7942, Id                                        7943
EmployeeName                      MICHAEL DEAN
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                               86102.45
OvertimePay                           21487.53
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             107589.98
TotalPayBenefits                     107589.98
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7942, dtype: object)
(7943, Id                                 7944
EmployeeName                NICK ELSNER
JobTitle            SENIOR PLAN CHECKER
BasePay                       107583.02
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      107583.02
TotalPayBenefits              107583.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7943, dtype: object)
(7944, Id                                                        7945
EmployeeName                                      RICO ZUCCONI
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               88183.63
OvertimePay                                            1767.57
OtherPay                                              17607.95
Benefits                                                   NaN
TotalPay                                             107559.15
TotalPayBenefits                                     107559.15
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 7944, dtype: object)
(7945, Id                                7946
EmployeeName            ALFRED ESCOBAR
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                    8363.14
OtherPay                      10111.91
Benefits                           NaN
TotalPay                     107553.15
TotalPayBenefits             107553.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7945, dtype: object)
(7946, Id                                   7947
EmployeeName        CHRISTOPHER BOETTCHER
JobTitle                        MANAGER I
BasePay                         106506.14
OvertimePay                           0.0
OtherPay                          1045.75
Benefits                              NaN
TotalPay                        107551.89
TotalPayBenefits                107551.89
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7946, dtype: object)
(7947, Id                                 7948
EmployeeName              OSCAR WALLACE
JobTitle            MAINTENANCE MANAGER
BasePay                       107548.74
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      107548.74
TotalPayBenefits              107548.74
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7947, dtype: object)
(7948, Id                             7949
EmployeeName        RONALD GIANNINI
JobTitle                    PLUMBER
BasePay                     89371.8
OvertimePay                13245.76
OtherPay                    4921.47
Benefits                        NaN
TotalPay                  107539.03
TotalPayBenefits          107539.03
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7948, dtype: object)
(7949, Id                           7950
EmployeeName           SUNNY WONG
JobTitle                    CLERK
BasePay                   46386.4
OvertimePay              57036.75
OtherPay                  4106.29
Benefits                      NaN
TotalPay                107529.44
TotalPayBenefits        107529.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7949, dtype: object)
(7950, Id                              7951
EmployeeName         RACHAEL ORLANDO
JobTitle            REGISTERED NURSE
BasePay                     104430.6
OvertimePay                  2555.71
OtherPay                      542.79
Benefits                         NaN
TotalPay                    107529.1
TotalPayBenefits            107529.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7950, dtype: object)
(7951, Id                             7952
EmployeeName        MICHAEL WATKINS
JobTitle                    PLUMBER
BasePay                    90280.06
OvertimePay                 13270.9
OtherPay                    3971.64
Benefits                        NaN
TotalPay                   107522.6
TotalPayBenefits           107522.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7951, dtype: object)
(7952, Id                              7953
EmployeeName           LEEANNE HUANG
JobTitle            POLICE OFFICER I
BasePay                    106103.44
OvertimePay                   597.49
OtherPay                      819.41
Benefits                         NaN
TotalPay                   107520.34
TotalPayBenefits           107520.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7952, dtype: object)
(7953, Id                              7954
EmployeeName            GARY MERRITT
JobTitle            TRANSIT OPERATOR
BasePay                     67890.38
OvertimePay                  38418.5
OtherPay                     1207.88
Benefits                         NaN
TotalPay                   107516.76
TotalPayBenefits           107516.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7953, dtype: object)
(7954, Id                                 7955
EmployeeName               DANIEL GLYNN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72490.42
OvertimePay                    18622.92
OtherPay                       16402.21
Benefits                            NaN
TotalPay                      107515.55
TotalPayBenefits              107515.55
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7954, dtype: object)
(7955, Id                              7956
EmployeeName          NATHAN BERNARD
JobTitle            POLICE OFFICER I
BasePay                     98558.33
OvertimePay                  7748.35
OtherPay                     1205.35
Benefits                         NaN
TotalPay                   107512.03
TotalPayBenefits           107512.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7955, dtype: object)
(7956, Id                                            7957
EmployeeName                      JOSHUA PASTREICH
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                  106468.24
OvertimePay                                    0.0
OtherPay                                    1040.0
Benefits                                       NaN
TotalPay                                 107508.24
TotalPayBenefits                         107508.24
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 7956, dtype: object)
(7957, Id                                   7958
EmployeeName        SHEILA BISHOP-GRIFFIN
JobTitle              TRANSIT CAR CLEANER
BasePay                           55880.0
OvertimePay                      45750.94
OtherPay                          5861.45
Benefits                              NaN
TotalPay                        107492.39
TotalPayBenefits                107492.39
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7957, dtype: object)
(7958, Id                               7959
EmployeeName        KATHERINE MATTHEW
JobTitle             REGISTERED NURSE
BasePay                      95273.13
OvertimePay                   5821.31
OtherPay                      6394.33
Benefits                          NaN
TotalPay                    107488.77
TotalPayBenefits            107488.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7958, dtype: object)
(7959, Id                              7960
EmployeeName        BALRAJ SINGH RAI
JobTitle            TRANSIT OPERATOR
BasePay                     65031.66
OvertimePay                 37660.84
OtherPay                     4795.91
Benefits                         NaN
TotalPay                   107488.41
TotalPayBenefits           107488.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7959, dtype: object)
(7960, Id                                                      7961
EmployeeName                                   JOSEPH CRUSOE
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90376.01
OvertimePay                                          8721.75
OtherPay                                             8358.68
Benefits                                                 NaN
TotalPay                                           107456.44
TotalPayBenefits                                   107456.44
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7960, dtype: object)
(7961, Id                               7962
EmployeeName        MARIA LESA BUSINE
JobTitle             REGISTERED NURSE
BasePay                     103407.75
OvertimePay                    2478.6
OtherPay                      1555.69
Benefits                          NaN
TotalPay                    107442.04
TotalPayBenefits            107442.04
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7961, dtype: object)
(7962, Id                                       7963
EmployeeName                       ANNE IRWIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             107432.14
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            107432.14
TotalPayBenefits                    107432.14
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7962, dtype: object)
(7963, Id                              7964
EmployeeName          ERIC PETTERSON
JobTitle            POLICE OFFICER I
BasePay                     106060.8
OvertimePay                   521.57
OtherPay                      828.41
Benefits                         NaN
TotalPay                   107410.78
TotalPayBenefits           107410.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7963, dtype: object)
(7964, Id                           7965
EmployeeName         MICHAEL SHEA
JobTitle              ELECTRICIAN
BasePay                   88176.3
OvertimePay               1152.69
OtherPay                 18063.81
Benefits                      NaN
TotalPay                 107392.8
TotalPayBenefits         107392.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7964, dtype: object)
(7965, Id                                 7966
EmployeeName        FERNANDO FONTANILLA
JobTitle               TRAIN CONTROLLER
BasePay                         89797.0
OvertimePay                    13665.29
OtherPay                        3925.11
Benefits                            NaN
TotalPay                       107387.4
TotalPayBenefits               107387.4
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7965, dtype: object)
(7966, Id                                               7967
EmployeeName                            CHARLES DRANE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   5036.85
OtherPay                                      3332.44
Benefits                                          NaN
TotalPay                                    107383.69
TotalPayBenefits                            107383.69
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 7966, dtype: object)
(7967, Id                                 7968
EmployeeName              BRIAN MCVEIGH
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        70899.58
OvertimePay                    27752.27
OtherPay                        8725.35
Benefits                            NaN
TotalPay                       107377.2
TotalPayBenefits               107377.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7967, dtype: object)
(7968, Id                            7969
EmployeeName        JULIE MARTINEZ
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               16269.98
OtherPay                   4260.96
Benefits                       NaN
TotalPay                 107370.94
TotalPayBenefits         107370.94
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7968, dtype: object)
(7969, Id                             7970
EmployeeName        SILVIO CASTILLO
JobTitle              CABLE SPLICER
BasePay                     94425.0
OvertimePay                10799.95
OtherPay                    2143.62
Benefits                        NaN
TotalPay                  107368.57
TotalPayBenefits          107368.57
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 7969, dtype: object)
(7970, Id                              7971
EmployeeName        JOHN CVETOVAC JR
JobTitle            POLICE OFFICER I
BasePay                     97589.57
OvertimePay                  2352.73
OtherPay                     7425.22
Benefits                         NaN
TotalPay                   107367.52
TotalPayBenefits           107367.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7970, dtype: object)
(7971, Id                                7972
EmployeeName          CATHERINE WEISER
JobTitle            NURSE PRACTITIONER
BasePay                      102002.38
OvertimePay                     1598.4
OtherPay                       3765.08
Benefits                           NaN
TotalPay                     107365.86
TotalPayBenefits             107365.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7971, dtype: object)
(7972, Id                                7973
EmployeeName              ROBERT RAMOS
JobTitle            POLICE OFFICER III
BasePay                       95396.92
OvertimePay                     6230.3
OtherPay                       5738.05
Benefits                           NaN
TotalPay                     107365.27
TotalPayBenefits             107365.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7972, dtype: object)
(7973, Id                                7974
EmployeeName                  DAFNA WU
JobTitle            NURSE PRACTITIONER
BasePay                      104427.47
OvertimePay                        0.0
OtherPay                       2921.48
Benefits                           NaN
TotalPay                     107348.95
TotalPayBenefits             107348.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7973, dtype: object)
(7974, Id                                                      7975
EmployeeName                                    MILLAN VISTA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              99859.4
OvertimePay                                              0.0
OtherPay                                              7486.3
Benefits                                                 NaN
TotalPay                                            107345.7
TotalPayBenefits                                    107345.7
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7974, dtype: object)
(7975, Id                                7976
EmployeeName           JENNIFER NORRIS
JobTitle            DEPUTY DIRECTOR II
BasePay                      107335.46
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     107335.46
TotalPayBenefits             107335.46
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7975, dtype: object)
(7976, Id                                7977
EmployeeName           DANIEL SHEA-III
JobTitle            PLUMBING INSPECTOR
BasePay                       100861.6
OvertimePay                    1418.31
OtherPay                       5044.21
Benefits                           NaN
TotalPay                     107324.12
TotalPayBenefits             107324.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7976, dtype: object)
(7977, Id                           7978
EmployeeName        CHERYL AUSTIN
JobTitle              MANAGER III
BasePay                  28837.14
OvertimePay                   0.0
OtherPay                 78481.43
Benefits                      NaN
TotalPay                107318.57
TotalPayBenefits        107318.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7977, dtype: object)
(7978, Id                                      7979
EmployeeName                  SHEILA GARRETT
JobTitle            WATER OPERATIONS ANALYST
BasePay                            107304.35
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           107304.35
TotalPayBenefits                   107304.35
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 7978, dtype: object)
(7979, Id                                                      7980
EmployeeName                                ANATOLY DUKHOVNY
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              88792.6
OvertimePay                                         11875.97
OtherPay                                             6633.42
Benefits                                                 NaN
TotalPay                                           107301.99
TotalPayBenefits                                   107301.99
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 7979, dtype: object)
(7980, Id                                 7981
EmployeeName              JOHN IPPOLITO
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72490.46
OvertimePay                    34281.47
OtherPay                          500.0
Benefits                            NaN
TotalPay                      107271.93
TotalPayBenefits              107271.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7980, dtype: object)
(7981, Id                                        7982
EmployeeName                      GEORGE JAZUK
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                           16687.65
OtherPay                               8509.73
Benefits                                   NaN
TotalPay                             107253.38
TotalPayBenefits                     107253.38
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 7981, dtype: object)
(7982, Id                           7983
EmployeeName          JEFFREY TOM
JobTitle                  PLUMBER
BasePay                  91551.65
OvertimePay               11464.4
OtherPay                  4228.95
Benefits                      NaN
TotalPay                 107245.0
TotalPayBenefits         107245.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7982, dtype: object)
(7983, Id                                                          7984
EmployeeName                                       WILLIAM SMITH
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                106532.31
OvertimePay                                                  0.0
OtherPay                                                   712.0
Benefits                                                     NaN
TotalPay                                               107244.31
TotalPayBenefits                                       107244.31
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 7983, dtype: object)
(7984, Id                                7985
EmployeeName                  JOHN LEE
JobTitle            BUILDING INSPECTOR
BasePay                      102132.65
OvertimePay                        0.0
OtherPay                       5106.67
Benefits                           NaN
TotalPay                     107239.32
TotalPayBenefits             107239.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7984, dtype: object)
(7985, Id                                 7986
EmployeeName          PATRICK LARSON II
JobTitle            AIRPORT ELECTRICIAN
BasePay                        95663.22
OvertimePay                      319.53
OtherPay                       11251.34
Benefits                            NaN
TotalPay                      107234.09
TotalPayBenefits              107234.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 7985, dtype: object)
(7986, Id                              7987
EmployeeName            GREGORY HILL
JobTitle            TRANSIT OPERATOR
BasePay                     62777.24
OvertimePay                 38963.87
OtherPay                     5490.82
Benefits                         NaN
TotalPay                   107231.93
TotalPayBenefits           107231.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7986, dtype: object)
(7987, Id                           7988
EmployeeName          STEVEN NEFF
JobTitle              ELECTRICIAN
BasePay                   89394.0
OvertimePay              15737.85
OtherPay                   2099.0
Benefits                      NaN
TotalPay                107230.85
TotalPayBenefits        107230.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 7987, dtype: object)
(7988, Id                                   7989
EmployeeName               TIMOTHY CONWAY
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                       5693.89
OtherPay                           5652.5
Benefits                              NaN
TotalPay                        107228.19
TotalPayBenefits                107228.19
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 7988, dtype: object)
(7989, Id                                7990
EmployeeName             JOAN SCANNELL
JobTitle            SHERIFF'S SERGEANT
BasePay                      102229.16
OvertimePay                        0.0
OtherPay                       4993.41
Benefits                           NaN
TotalPay                     107222.57
TotalPayBenefits             107222.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 7989, dtype: object)
(7990, Id                                    7991
EmployeeName              DAVID CAMERLO JR
JobTitle            ELECTRICAL LINE WORKER
BasePay                            83711.4
OvertimePay                       20522.04
OtherPay                           2988.34
Benefits                               NaN
TotalPay                         107221.78
TotalPayBenefits                 107221.78
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 7990, dtype: object)
(7991, Id                              7992
EmployeeName            DAVID JACOBY
JobTitle            REGISTERED NURSE
BasePay                    100118.16
OvertimePay                  2839.47
OtherPay                     4263.12
Benefits                         NaN
TotalPay                   107220.75
TotalPayBenefits           107220.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7991, dtype: object)
(7992, Id                              7993
EmployeeName        LALAINE PILLAZAR
JobTitle            REGISTERED NURSE
BasePay                      96547.1
OvertimePay                  4817.94
OtherPay                     5849.74
Benefits                         NaN
TotalPay                   107214.78
TotalPayBenefits           107214.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7992, dtype: object)
(7993, Id                                           7994
EmployeeName                     ROMANDO LUCCHESI
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.45
OvertimePay                               2021.78
OtherPay                                  5229.63
Benefits                                      NaN
TotalPay                                107212.86
TotalPayBenefits                        107212.86
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 7993, dtype: object)
(7994, Id                              7995
EmployeeName             NATHAN CHEW
JobTitle            POLICE OFFICER I
BasePay                     97664.64
OvertimePay                  8120.67
OtherPay                     1427.32
Benefits                         NaN
TotalPay                   107212.63
TotalPayBenefits           107212.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7994, dtype: object)
(7995, Id                                                       7996
EmployeeName                                       ARIC LEMKE
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                               94888.5
OvertimePay                                          11873.54
OtherPay                                                447.0
Benefits                                                  NaN
TotalPay                                            107209.04
TotalPayBenefits                                    107209.04
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 7995, dtype: object)
(7996, Id                            7997
EmployeeName        MIA CAMBRONERO
JobTitle             SPECIAL NURSE
BasePay                   98673.52
OvertimePay                3514.25
OtherPay                   5019.67
Benefits                       NaN
TotalPay                 107207.44
TotalPayBenefits         107207.44
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 7996, dtype: object)
(7997, Id                               7998
EmployeeName                 EVA CHIN
JobTitle            TRANSIT MANAGER I
BasePay                     103948.04
OvertimePay                       0.0
OtherPay                       3259.4
Benefits                          NaN
TotalPay                    107207.44
TotalPayBenefits            107207.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 7997, dtype: object)
(7998, Id                              7999
EmployeeName             ROBERT HART
JobTitle            POLICE OFFICER I
BasePay                     106060.9
OvertimePay                   325.32
OtherPay                       819.1
Benefits                         NaN
TotalPay                   107205.32
TotalPayBenefits           107205.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 7998, dtype: object)
(7999, Id                                       8000
EmployeeName              ASHLEY DM FERNANDEZ
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              96759.69
OvertimePay                           7337.44
OtherPay                              3108.18
Benefits                                  NaN
TotalPay                            107205.31
TotalPayBenefits                    107205.31
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 7999, dtype: object)
(8000, Id                              8001
EmployeeName             RANDALL DEA
JobTitle            TRANSIT OPERATOR
BasePay                      70328.7
OvertimePay                 31560.64
OtherPay                     5312.08
Benefits                         NaN
TotalPay                   107201.42
TotalPayBenefits           107201.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8000, dtype: object)
(8001, Id                              8002
EmployeeName           JENNIFER TRAW
JobTitle            POLICE OFFICER I
BasePay                     97589.56
OvertimePay                   4852.3
OtherPay                     4751.54
Benefits                         NaN
TotalPay                    107193.4
TotalPayBenefits            107193.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8001, dtype: object)
(8002, Id                                                8003
EmployeeName                             SIOSIUA LIVAI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.42
OvertimePay                                   28937.02
OtherPay                                         675.0
Benefits                                           NaN
TotalPay                                     107192.44
TotalPayBenefits                             107192.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8002, dtype: object)
(8003, Id                                8004
EmployeeName                ALAN SMITH
JobTitle            BUILDING INSPECTOR
BasePay                       102081.7
OvertimePay                        0.0
OtherPay                       5105.27
Benefits                           NaN
TotalPay                     107186.97
TotalPayBenefits             107186.97
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8003, dtype: object)
(8004, Id                                8005
EmployeeName                 ZHONG QIU
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.09
OvertimePay                        0.0
OtherPay                       2697.18
Benefits                           NaN
TotalPay                     107183.27
TotalPayBenefits             107183.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8004, dtype: object)
(8005, Id                              8006
EmployeeName          PAUL DOMINGUEZ
JobTitle            POLICE OFFICER I
BasePay                     99869.75
OvertimePay                  4828.19
OtherPay                     2478.57
Benefits                         NaN
TotalPay                   107176.51
TotalPayBenefits           107176.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8005, dtype: object)
(8006, Id                              8007
EmployeeName         EDWARD DEGUZMAN
JobTitle            REGISTERED NURSE
BasePay                     95222.92
OvertimePay                  2984.61
OtherPay                     8966.23
Benefits                         NaN
TotalPay                   107173.76
TotalPayBenefits           107173.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8006, dtype: object)
(8007, Id                                    8008
EmployeeName               JUSTIN DAVIDSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85715.13
OvertimePay                        8726.23
OtherPay                          12730.83
Benefits                               NaN
TotalPay                         107172.19
TotalPayBenefits                 107172.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8007, dtype: object)
(8008, Id                                8009
EmployeeName           THOMAS ESPINOZA
JobTitle            TRANSIT SUPERVISOR
BasePay                       89914.27
OvertimePay                   10265.78
OtherPay                       6983.54
Benefits                           NaN
TotalPay                     107163.59
TotalPayBenefits             107163.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8008, dtype: object)
(8009, Id                               8010
EmployeeName        FITZGERALD FIELDS
JobTitle               DEPUTY SHERIFF
BasePay                      86840.01
OvertimePay                  12181.82
OtherPay                      8141.14
Benefits                          NaN
TotalPay                    107162.97
TotalPayBenefits            107162.97
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8009, dtype: object)
(8010, Id                                   8011
EmployeeName              KENNETH BURGESS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                       9463.96
OtherPay                          1816.71
Benefits                              NaN
TotalPay                        107162.47
TotalPayBenefits                107162.47
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8010, dtype: object)
(8011, Id                                    8012
EmployeeName                    NIKO SHARK
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                          100154.04
OvertimePay                           3.78
OtherPay                            7000.2
Benefits                               NaN
TotalPay                         107158.02
TotalPayBenefits                 107158.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8011, dtype: object)
(8012, Id                                                               8013
EmployeeName                                           ESTELLE YANCEY
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      87826.33
OvertimePay                                                  10738.93
OtherPay                                                       8589.7
Benefits                                                          NaN
TotalPay                                                    107154.96
TotalPayBenefits                                            107154.96
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8012, dtype: object)
(8013, Id                                                      8014
EmployeeName                                     MERRITT YEE
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             94658.79
OvertimePay                                          4471.82
OtherPay                                             8024.31
Benefits                                                 NaN
TotalPay                                           107154.92
TotalPayBenefits                                   107154.92
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8013, dtype: object)
(8014, Id                              8015
EmployeeName            FORTUNE CRUZ
JobTitle            REGISTERED NURSE
BasePay                    102068.02
OvertimePay                    864.8
OtherPay                     4208.62
Benefits                         NaN
TotalPay                   107141.44
TotalPayBenefits           107141.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8014, dtype: object)
(8015, Id                                                     8016
EmployeeName                                   ROBERT SHEDD
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78163.48
OvertimePay                                        21097.25
OtherPay                                            7870.89
Benefits                                                NaN
TotalPay                                          107131.62
TotalPayBenefits                                  107131.62
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8015, dtype: object)
(8016, Id                              8017
EmployeeName           MICHAEL PHENG
JobTitle            POLICE OFFICER I
BasePay                     98576.46
OvertimePay                  3498.28
OtherPay                     5055.79
Benefits                         NaN
TotalPay                   107130.53
TotalPayBenefits           107130.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8016, dtype: object)
(8017, Id                                8018
EmployeeName                    YEN NG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                        2642.2
Benefits                           NaN
TotalPay                     107128.21
TotalPayBenefits             107128.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8017, dtype: object)
(8018, Id                               8019
EmployeeName        THERESA SANDHOLDT
JobTitle                SPECIAL NURSE
BasePay                       96398.9
OvertimePay                   7336.64
OtherPay                      3386.23
Benefits                          NaN
TotalPay                    107121.77
TotalPayBenefits            107121.77
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8018, dtype: object)
(8019, Id                                   8020
EmployeeName                 MICHAEL RYAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.48
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.48
TotalPayBenefits                107117.48
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8019, dtype: object)
(8020, Id                                   8021
EmployeeName                   WAYNE CHAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.44
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.44
TotalPayBenefits                107117.44
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8020, dtype: object)
(8021, Id                                   8022
EmployeeName              DAVID O'DONNELL
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.42
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.42
TotalPayBenefits                107117.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8021, dtype: object)
(8022, Id                                   8023
EmployeeName            RICHARD CRISTOBAL
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.42
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.42
TotalPayBenefits                107117.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8022, dtype: object)
(8023, Id                                   8024
EmployeeName                 BENSON YOUNG
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.42
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.42
TotalPayBenefits                107117.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8023, dtype: object)
(8024, Id                                   8025
EmployeeName                 RONALD ROSES
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.42
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.42
TotalPayBenefits                107117.42
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8024, dtype: object)
(8025, Id                                   8026
EmployeeName              MICHEAL SANDERS
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8025, dtype: object)
(8026, Id                                   8027
EmployeeName              ARNOLD SANTIAGO
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8026, dtype: object)
(8027, Id                                   8028
EmployeeName                   DAVID CHUN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8027, dtype: object)
(8028, Id                                   8029
EmployeeName                    LEON WONG
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8028, dtype: object)
(8029, Id                                   8030
EmployeeName                LESLIE KEELER
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8029, dtype: object)
(8030, Id                                   8031
EmployeeName               GREGORY HOLMES
JobTitle            IS ENGINEER - JOURNEY
BasePay                         107117.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        107117.41
TotalPayBenefits                107117.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8030, dtype: object)
(8031, Id                                   8032
EmployeeName                GARE REBLANDO
JobTitle            IS ENGINEER - JOURNEY
BasePay                          107117.4
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         107117.4
TotalPayBenefits                 107117.4
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8031, dtype: object)
(8032, Id                              8033
EmployeeName            TERESA YANGA
JobTitle            MAYORAL STAFF XV
BasePay                    106512.33
OvertimePay                      0.0
OtherPay                      603.64
Benefits                         NaN
TotalPay                   107115.97
TotalPayBenefits           107115.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8032, dtype: object)
(8033, Id                              8034
EmployeeName         CLIFTON PUCKETT
JobTitle            TRANSIT OPERATOR
BasePay                      69456.4
OvertimePay                  34153.2
OtherPay                     3489.24
Benefits                         NaN
TotalPay                   107098.84
TotalPayBenefits           107098.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8033, dtype: object)
(8034, Id                                8035
EmployeeName              THOMAS BOWER
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.84
OvertimePay                        0.0
OtherPay                       2608.71
Benefits                           NaN
TotalPay                     107095.55
TotalPayBenefits             107095.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8034, dtype: object)
(8035, Id                                               8036
EmployeeName                                 VINH LAM
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      70444.32
OvertimePay                                  25804.71
OtherPay                                      10843.4
Benefits                                          NaN
TotalPay                                    107092.43
TotalPayBenefits                            107092.43
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8035, dtype: object)
(8036, Id                            8037
EmployeeName         ENRIQUE MIXCO
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                8204.29
OtherPay                  12033.57
Benefits                       NaN
TotalPay                 107077.87
TotalPayBenefits         107077.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8036, dtype: object)
(8037, Id                                8038
EmployeeName             JASON BUCKLEY
JobTitle            PLUMBING INSPECTOR
BasePay                      101134.95
OvertimePay                    2848.73
OtherPay                       3083.93
Benefits                           NaN
TotalPay                     107067.61
TotalPayBenefits             107067.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8037, dtype: object)
(8038, Id                               8039
EmployeeName        LORNA JEAN DANILA
JobTitle             REGISTERED NURSE
BasePay                     101095.12
OvertimePay                   2010.66
OtherPay                      3959.98
Benefits                          NaN
TotalPay                    107065.76
TotalPayBenefits            107065.76
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8038, dtype: object)
(8039, Id                            8040
EmployeeName        MICHAEL CASSIN
JobTitle             SPECIAL NURSE
BasePay                   99404.54
OvertimePay                1708.69
OtherPay                   5943.81
Benefits                       NaN
TotalPay                 107057.04
TotalPayBenefits         107057.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8039, dtype: object)
(8040, Id                                8041
EmployeeName           RICHARD STRABEL
JobTitle            PLUMBING INSPECTOR
BasePay                       100454.9
OvertimePay                     1575.9
OtherPay                       5023.86
Benefits                           NaN
TotalPay                     107054.66
TotalPayBenefits             107054.66
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8040, dtype: object)
(8041, Id                                  8042
EmployeeName            ANDREW SCHREIBER
JobTitle            IS ENGINEER - SENIOR
BasePay                         107054.1
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        107054.1
TotalPayBenefits                107054.1
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8041, dtype: object)
(8042, Id                           8043
EmployeeName             ANDY TSE
JobTitle                  PLUMBER
BasePay                  89371.81
OvertimePay              12397.67
OtherPay                  5281.77
Benefits                      NaN
TotalPay                107051.25
TotalPayBenefits        107051.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8042, dtype: object)
(8043, Id                            8044
EmployeeName           JOHN JARDIN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               14412.96
OtherPay                   5787.64
Benefits                       NaN
TotalPay                  107040.6
TotalPayBenefits          107040.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8043, dtype: object)
(8044, Id                                                     8045
EmployeeName                                    DALE MILLER
JobTitle            CHIEF STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                            92723.44
OvertimePay                                         5555.14
OtherPay                                             8760.4
Benefits                                                NaN
TotalPay                                          107038.98
TotalPayBenefits                                  107038.98
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8044, dtype: object)
(8045, Id                                 8046
EmployeeName        JAMES VALLE-SCHWENK
JobTitle                       ENGINEER
BasePay                        106946.0
OvertimePay                         0.0
OtherPay                           90.0
Benefits                            NaN
TotalPay                       107036.0
TotalPayBenefits               107036.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8045, dtype: object)
(8046, Id                                  8047
EmployeeName        YAROSLAV SHABLINSKIY
JobTitle                POLICE OFFICER I
BasePay                         91844.67
OvertimePay                      3521.42
OtherPay                        11666.65
Benefits                             NaN
TotalPay                       107032.74
TotalPayBenefits               107032.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8046, dtype: object)
(8047, Id                                                 8048
EmployeeName                              DEBRA KENNEDY
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                       107025.05
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                      107025.05
TotalPayBenefits                              107025.05
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8047, dtype: object)
(8048, Id                                       8049
EmployeeName                  VIKTOR KIRIENKO
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              93474.44
OvertimePay                             221.9
OtherPay                             13314.17
Benefits                                  NaN
TotalPay                            107010.51
TotalPayBenefits                    107010.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8048, dtype: object)
(8049, Id                              8050
EmployeeName        ARMANDO GONZALEZ
JobTitle              DEPUTY SHERIFF
BasePay                     86840.01
OvertimePay                 14988.35
OtherPay                     5173.69
Benefits                         NaN
TotalPay                   107002.05
TotalPayBenefits           107002.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8049, dtype: object)
(8050, Id                              8051
EmployeeName              CALVIN LEE
JobTitle            TRANSIT OPERATOR
BasePay                     68096.12
OvertimePay                 35929.69
OtherPay                     2973.24
Benefits                         NaN
TotalPay                   106999.05
TotalPayBenefits           106999.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8050, dtype: object)
(8051, Id                              8052
EmployeeName          DONALD KALLSEN
JobTitle            POLICE OFFICER I
BasePay                    106060.92
OvertimePay                      0.0
OtherPay                      913.93
Benefits                         NaN
TotalPay                   106974.85
TotalPayBenefits           106974.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8051, dtype: object)
(8052, Id                                       8053
EmployeeName                      GENE SHEETS
JobTitle            CRANE MECHANIC SUPERVISOR
BasePay                              105469.0
OvertimePay                           1494.49
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            106963.49
TotalPayBenefits                    106963.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8052, dtype: object)
(8053, Id                                8054
EmployeeName              STEVE HAJNAL
JobTitle            BUILDING INSPECTOR
BasePay                      101033.45
OvertimePay                        0.0
OtherPay                       5926.43
Benefits                           NaN
TotalPay                     106959.88
TotalPayBenefits             106959.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8053, dtype: object)
(8054, Id                              8055
EmployeeName        RODRIGO ARELLANO
JobTitle            TRANSIT OPERATOR
BasePay                     65703.84
OvertimePay                 38569.86
OtherPay                     2683.74
Benefits                         NaN
TotalPay                   106957.44
TotalPayBenefits           106957.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8054, dtype: object)
(8055, Id                              8056
EmployeeName          REBECCA CHEUNG
JobTitle            REGISTERED NURSE
BasePay                    103540.47
OvertimePay                   1784.2
OtherPay                     1631.87
Benefits                         NaN
TotalPay                   106956.54
TotalPayBenefits           106956.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8055, dtype: object)
(8056, Id                                8057
EmployeeName             PAUL LOUIE JR
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                       2469.46
Benefits                           NaN
TotalPay                     106955.47
TotalPayBenefits             106955.47
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8056, dtype: object)
(8057, Id                                        8058
EmployeeName                    EVERETT TIMMER
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.82
OvertimePay                            7086.57
OtherPay                               2726.93
Benefits                                   NaN
TotalPay                             106944.32
TotalPayBenefits                     106944.32
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8057, dtype: object)
(8058, Id                                               8059
EmployeeName                             CURTIS JIANG
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.64
OvertimePay                                       0.0
OtherPay                                      1387.29
Benefits                                          NaN
TotalPay                                    106941.93
TotalPayBenefits                            106941.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8058, dtype: object)
(8059, Id                            8060
EmployeeName        LONNIE ROBBINS
JobTitle             CABLE SPLICER
BasePay                    96128.4
OvertimePay               10632.35
OtherPay                     180.0
Benefits                       NaN
TotalPay                 106940.75
TotalPayBenefits         106940.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8059, dtype: object)
(8060, Id                              8061
EmployeeName           JACINTO REYES
JobTitle            TRANSIT OPERATOR
BasePay                     68686.22
OvertimePay                 31014.71
OtherPay                     7227.36
Benefits                         NaN
TotalPay                   106928.29
TotalPayBenefits           106928.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8060, dtype: object)
(8061, Id                                                     8062
EmployeeName                                  CORININA CRUZ
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             78149.9
OvertimePay                                        16713.68
OtherPay                                           12059.62
Benefits                                                NaN
TotalPay                                           106923.2
TotalPayBenefits                                   106923.2
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8061, dtype: object)
(8062, Id                             8063
EmployeeName        MARIO CALDERONI
JobTitle             DEPUTY SHERIFF
BasePay                    86225.04
OvertimePay                 8233.11
OtherPay                   12461.09
Benefits                        NaN
TotalPay                  106919.24
TotalPayBenefits          106919.24
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8062, dtype: object)
(8063, Id                                           8064
EmployeeName                     JOHN BRANDENBURG
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                 101899.08
OvertimePay                                1500.9
OtherPay                                  3516.24
Benefits                                      NaN
TotalPay                                106916.22
TotalPayBenefits                        106916.22
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8063, dtype: object)
(8064, Id                            8065
EmployeeName         VALERIO JOSIF
JobTitle            DEPUTY SHERIFF
BasePay                   86295.17
OvertimePay               16953.26
OtherPay                   3666.74
Benefits                       NaN
TotalPay                 106915.17
TotalPayBenefits         106915.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8064, dtype: object)
(8065, Id                                        8066
EmployeeName                       CARLOS CHEN
JobTitle            COUNSELOR, LOG CABIN RANCH
BasePay                               59700.42
OvertimePay                           45614.32
OtherPay                                1590.1
Benefits                                   NaN
TotalPay                             106904.84
TotalPayBenefits                     106904.84
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8065, dtype: object)
(8066, Id                              8067
EmployeeName             LEVEL SIMON
JobTitle            TRANSIT OPERATOR
BasePay                     66575.28
OvertimePay                 38112.81
OtherPay                      2204.5
Benefits                         NaN
TotalPay                   106892.59
TotalPayBenefits           106892.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8066, dtype: object)
(8067, Id                                                      8068
EmployeeName                                 EDGAR RODRIGUEZ
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              90417.8
OvertimePay                                          7518.05
OtherPay                                             8953.16
Benefits                                                 NaN
TotalPay                                           106889.01
TotalPayBenefits                                   106889.01
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8067, dtype: object)
(8068, Id                              8069
EmployeeName            OLIVER REICH
JobTitle            POLICE OFFICER I
BasePay                    106060.82
OvertimePay                      0.0
OtherPay                       819.1
Benefits                         NaN
TotalPay                   106879.92
TotalPayBenefits           106879.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8068, dtype: object)
(8069, Id                              8070
EmployeeName           JAMES COCHRAN
JobTitle            TRANSIT OPERATOR
BasePay                     68041.25
OvertimePay                 37784.31
OtherPay                     1050.75
Benefits                         NaN
TotalPay                   106876.31
TotalPayBenefits           106876.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8069, dtype: object)
(8070, Id                                                     8071
EmployeeName                               CHRIS DOMEROFSKI
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78162.41
OvertimePay                                        24963.87
OtherPay                                            3749.56
Benefits                                                NaN
TotalPay                                          106875.84
TotalPayBenefits                                  106875.84
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8070, dtype: object)
(8071, Id                              8072
EmployeeName           BRIAN LEVARDO
JobTitle            REGISTERED NURSE
BasePay                    103804.99
OvertimePay                  1228.18
OtherPay                     1827.64
Benefits                         NaN
TotalPay                   106860.81
TotalPayBenefits           106860.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8071, dtype: object)
(8072, Id                                                8073
EmployeeName                              ELMER ESPANO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   21557.26
OtherPay                                       7731.04
Benefits                                           NaN
TotalPay                                      106857.3
TotalPayBenefits                              106857.3
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8072, dtype: object)
(8073, Id                                8074
EmployeeName              CHI CHIU LAU
JobTitle            BUILDING INSPECTOR
BasePay                       103708.5
OvertimePay                        0.0
OtherPay                       3147.65
Benefits                           NaN
TotalPay                     106856.15
TotalPayBenefits             106856.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8073, dtype: object)
(8074, Id                                        8075
EmployeeName                       DUONG HUYNH
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83883.69
OvertimePay                            20932.0
OtherPay                               2033.85
Benefits                                   NaN
TotalPay                             106849.54
TotalPayBenefits                     106849.54
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8074, dtype: object)
(8075, Id                                8076
EmployeeName                  DAVID HA
JobTitle            ASSOCIATE ENGINEER
BasePay                      104334.98
OvertimePay                        0.0
OtherPay                       2507.47
Benefits                           NaN
TotalPay                     106842.45
TotalPayBenefits             106842.45
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8075, dtype: object)
(8076, Id                              8077
EmployeeName             MARTHA BAER
JobTitle            REGISTERED NURSE
BasePay                     104310.3
OvertimePay                      0.0
OtherPay                      2523.0
Benefits                         NaN
TotalPay                    106833.3
TotalPayBenefits            106833.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8076, dtype: object)
(8077, Id                                   8078
EmployeeName                 JOSEF ARAUJO
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                           0.0
OtherPay                         10950.01
Benefits                              NaN
TotalPay                        106831.81
TotalPayBenefits                106831.81
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8077, dtype: object)
(8078, Id                              8079
EmployeeName         KIMIYO SAMEJIMA
JobTitle            REGISTERED NURSE
BasePay                    102362.59
OvertimePay                  1005.33
OtherPay                     3447.58
Benefits                         NaN
TotalPay                    106815.5
TotalPayBenefits            106815.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8078, dtype: object)
(8079, Id                               8080
EmployeeName        WILLIAM WHITFIELD
JobTitle             POLICE OFFICER I
BasePay                     101483.66
OvertimePay                   2649.15
OtherPay                      2674.68
Benefits                          NaN
TotalPay                    106807.49
TotalPayBenefits            106807.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8079, dtype: object)
(8080, Id                            8081
EmployeeName           TEANNA WARD
JobTitle            COURT REPORTER
BasePay                   103682.8
OvertimePay                    0.0
OtherPay                   3120.56
Benefits                       NaN
TotalPay                 106803.36
TotalPayBenefits         106803.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8080, dtype: object)
(8081, Id                            8082
EmployeeName        MICHAEL VROMAN
JobTitle                 MANAGER I
BasePay                   100507.3
OvertimePay                    0.0
OtherPay                    6285.3
Benefits                       NaN
TotalPay                  106792.6
TotalPayBenefits          106792.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8081, dtype: object)
(8082, Id                                 8083
EmployeeName               RUSSELL HALL
JobTitle            CLAIMS INVESTIGATOR
BasePay                         94293.0
OvertimePay                     9589.41
OtherPay                        2902.78
Benefits                            NaN
TotalPay                      106785.19
TotalPayBenefits              106785.19
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8082, dtype: object)
(8083, Id                           8084
EmployeeName           CORY GROOM
JobTitle            SPECIAL NURSE
BasePay                  90933.25
OvertimePay                836.46
OtherPay                  15014.3
Benefits                      NaN
TotalPay                106784.01
TotalPayBenefits        106784.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8083, dtype: object)
(8084, Id                                             8085
EmployeeName                      JONRAY WOOLBRIGHT
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    70392.72
OvertimePay                                31729.75
OtherPay                                    4653.78
Benefits                                        NaN
TotalPay                                  106776.25
TotalPayBenefits                          106776.25
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8084, dtype: object)
(8085, Id                                           8086
EmployeeName                          TIMOTHY WON
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  67738.61
OvertimePay                               3672.85
OtherPay                                 35364.54
Benefits                                      NaN
TotalPay                                 106776.0
TotalPayBenefits                         106776.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8085, dtype: object)
(8086, Id                              8087
EmployeeName             JANIS RAFFA
JobTitle            REGISTERED NURSE
BasePay                    101187.29
OvertimePay                  3164.49
OtherPay                     2423.05
Benefits                         NaN
TotalPay                   106774.83
TotalPayBenefits           106774.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8086, dtype: object)
(8087, Id                                  8088
EmployeeName        DANIEL MCLAUGHLIN JR
JobTitle                POLICE OFFICER I
BasePay                          94535.7
OvertimePay                      5182.01
OtherPay                         7040.37
Benefits                             NaN
TotalPay                       106758.08
TotalPayBenefits               106758.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8087, dtype: object)
(8088, Id                              8089
EmployeeName           CHHUNMENG TOV
JobTitle            POLICE OFFICER I
BasePay                     85499.18
OvertimePay                  7622.05
OtherPay                    13634.65
Benefits                         NaN
TotalPay                   106755.88
TotalPayBenefits           106755.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8088, dtype: object)
(8089, Id                              8090
EmployeeName          JOCELYN POULIN
JobTitle            REGISTERED NURSE
BasePay                    106501.32
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   106751.32
TotalPayBenefits           106751.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8089, dtype: object)
(8090, Id                                             8091
EmployeeName                           SIU-MEI WONG
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   106733.62
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  106733.62
TotalPayBenefits                          106733.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8090, dtype: object)
(8091, Id                           8092
EmployeeName        TJADE JACKSON
JobTitle                MANAGER I
BasePay                 106715.62
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106715.62
TotalPayBenefits        106715.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8091, dtype: object)
(8092, Id                              8093
EmployeeName        PATRICK CANTWELL
JobTitle               CABLE SPLICER
BasePay                     96128.43
OvertimePay                  8362.83
OtherPay                      2220.0
Benefits                         NaN
TotalPay                   106711.26
TotalPayBenefits           106711.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8092, dtype: object)
(8093, Id                                                     8094
EmployeeName                                    EVORA HEARD
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87441.63
OvertimePay                                        11865.96
OtherPay                                            7384.93
Benefits                                                NaN
TotalPay                                          106692.52
TotalPayBenefits                                  106692.52
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8093, dtype: object)
(8094, Id                           8095
EmployeeName         LAUREN HAYES
JobTitle                MANAGER I
BasePay                 106690.84
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106690.84
TotalPayBenefits        106690.84
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8094, dtype: object)
(8095, Id                              8096
EmployeeName             SABA ADHANA
JobTitle            REGISTERED NURSE
BasePay                     94852.62
OvertimePay                  6709.56
OtherPay                     5123.94
Benefits                         NaN
TotalPay                   106686.12
TotalPayBenefits           106686.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8095, dtype: object)
(8096, Id                                       8097
EmployeeName               MICHAEL JOHNSON SR
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               95233.2
OvertimePay                            6459.0
OtherPay                              4985.68
Benefits                                  NaN
TotalPay                            106677.88
TotalPayBenefits                    106677.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8096, dtype: object)
(8097, Id                                               8098
EmployeeName                            CAROLINE NGUY
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.61
OvertimePay                                       0.0
OtherPay                                      1122.25
Benefits                                          NaN
TotalPay                                    106676.86
TotalPayBenefits                            106676.86
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8097, dtype: object)
(8098, Id                                8099
EmployeeName        JENNIFER DIGNADICE
JobTitle              REGISTERED NURSE
BasePay                       98527.55
OvertimePay                    1951.25
OtherPay                       6195.44
Benefits                           NaN
TotalPay                     106674.24
TotalPayBenefits             106674.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8098, dtype: object)
(8099, Id                                      8100
EmployeeName                 DONALD WHEATLEY
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            106655.24
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           106655.24
TotalPayBenefits                   106655.24
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8099, dtype: object)
(8100, Id                                  8101
EmployeeName                HUI RAN SHAO
JobTitle            IS ENGINEER - SENIOR
BasePay                         106654.3
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        106654.3
TotalPayBenefits                106654.3
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8100, dtype: object)
(8101, Id                             8102
EmployeeName         DANIEL JOHNSON
JobTitle            UTILITY PLUMBER
BasePay                    92096.56
OvertimePay                 4018.94
OtherPay                   10533.37
Benefits                        NaN
TotalPay                  106648.87
TotalPayBenefits          106648.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8101, dtype: object)
(8102, Id                                8103
EmployeeName            TERENCE DURKAN
JobTitle            SHERIFF'S SERGEANT
BasePay                      105697.91
OvertimePay                        0.0
OtherPay                        946.57
Benefits                           NaN
TotalPay                     106644.48
TotalPayBenefits             106644.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8102, dtype: object)
(8103, Id                                8104
EmployeeName          ROBERT CHRISTMAN
JobTitle            PLUMBING INSPECTOR
BasePay                      100658.25
OvertimePay                     945.54
OtherPay                       5033.97
Benefits                           NaN
TotalPay                     106637.76
TotalPayBenefits             106637.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8103, dtype: object)
(8104, Id                               8105
EmployeeName        JAMES SANGUINETTI
JobTitle                      PLUMBER
BasePay                      89553.45
OvertimePay                  15599.19
OtherPay                       1470.8
Benefits                          NaN
TotalPay                    106623.44
TotalPayBenefits            106623.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8104, dtype: object)
(8105, Id                              8106
EmployeeName               JESUS URO
JobTitle            TRANSIT OPERATOR
BasePay                     67990.18
OvertimePay                 33031.94
OtherPay                     5588.35
Benefits                         NaN
TotalPay                   106610.47
TotalPayBenefits           106610.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8105, dtype: object)
(8106, Id                                        8107
EmployeeName                    CORAZON ANDAYA
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103963.4
OvertimePay                             1822.0
OtherPay                                823.96
Benefits                                   NaN
TotalPay                             106609.36
TotalPayBenefits                     106609.36
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8106, dtype: object)
(8107, Id                            8108
EmployeeName          JAMES WILSON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                7249.52
OtherPay                  12511.61
Benefits                       NaN
TotalPay                 106601.13
TotalPayBenefits         106601.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8107, dtype: object)
(8108, Id                           8109
EmployeeName        ELSIE MCATEER
JobTitle                MANAGER I
BasePay                 106597.75
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106597.75
TotalPayBenefits        106597.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8108, dtype: object)
(8109, Id                             8110
EmployeeName        MAXWELL CHIKERE
JobTitle                  MANAGER I
BasePay                   106597.75
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  106597.75
TotalPayBenefits          106597.75
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8109, dtype: object)
(8110, Id                                             8111
EmployeeName                   DEBORAH CRAVEN-GREEN
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   102191.01
OvertimePay                                     0.0
OtherPay                                    4400.49
Benefits                                        NaN
TotalPay                                   106591.5
TotalPayBenefits                           106591.5
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8110, dtype: object)
(8111, Id                            8112
EmployeeName             DAVID SUM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 7861.2
OtherPay                  11890.21
Benefits                       NaN
TotalPay                 106591.41
TotalPayBenefits         106591.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8111, dtype: object)
(8112, Id                                                              8113
EmployeeName                                                 HUY DAO
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                    101515.03
OvertimePay                                                      0.0
OtherPay                                                     5071.15
Benefits                                                         NaN
TotalPay                                                   106586.18
TotalPayBenefits                                           106586.18
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 8112, dtype: object)
(8113, Id                              8114
EmployeeName        DESTINY ANDERSEN
JobTitle            POLICE OFFICER I
BasePay                     95167.28
OvertimePay                  5905.41
OtherPay                     5466.05
Benefits                         NaN
TotalPay                   106538.74
TotalPayBenefits           106538.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8113, dtype: object)
(8114, Id                                    8115
EmployeeName               ANTHONY VALERIO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           58396.14
OvertimePay                        2713.78
OtherPay                          45426.19
Benefits                               NaN
TotalPay                         106536.11
TotalPayBenefits                 106536.11
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8114, dtype: object)
(8115, Id                            8116
EmployeeName         DANIEL GUERRA
JobTitle            DEPUTY SHERIFF
BasePay                   85576.27
OvertimePay                10700.7
OtherPay                  10255.42
Benefits                       NaN
TotalPay                 106532.39
TotalPayBenefits         106532.39
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8115, dtype: object)
(8116, Id                                  8117
EmployeeName                 LEON BERNAL
JobTitle            CAR AND AUTO PAINTER
BasePay                         73659.66
OvertimePay                      20609.9
OtherPay                        12254.12
Benefits                             NaN
TotalPay                       106523.68
TotalPayBenefits               106523.68
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8116, dtype: object)
(8117, Id                                                     8118
EmployeeName                                 JAMILIA CUEVAS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77796.21
OvertimePay                                        24007.86
OtherPay                                            4707.46
Benefits                                                NaN
TotalPay                                          106511.53
TotalPayBenefits                                  106511.53
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8117, dtype: object)
(8118, Id                           8119
EmployeeName        OMAR CARVALLO
JobTitle                MANAGER I
BasePay                 106506.29
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.29
TotalPayBenefits        106506.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8118, dtype: object)
(8119, Id                           8120
EmployeeName         JASON ADAMEK
JobTitle                MANAGER I
BasePay                 106506.27
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.27
TotalPayBenefits        106506.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8119, dtype: object)
(8120, Id                           8121
EmployeeName          PAMELA TEBO
JobTitle                MANAGER I
BasePay                 106506.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.25
TotalPayBenefits        106506.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8120, dtype: object)
(8121, Id                               8122
EmployeeName               SANDRA ENG
JobTitle            DEPUTY DIRECTOR I
BasePay                     106506.23
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    106506.23
TotalPayBenefits            106506.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8121, dtype: object)
(8122, Id                           8123
EmployeeName         BELINDA CHIN
JobTitle                MANAGER I
BasePay                 106506.23
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.23
TotalPayBenefits        106506.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8122, dtype: object)
(8123, Id                               8124
EmployeeName        MARGARET MCARTHUR
JobTitle                    MANAGER I
BasePay                     106506.22
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    106506.22
TotalPayBenefits            106506.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8123, dtype: object)
(8124, Id                                8125
EmployeeName        CAROLINE ARGUELLES
JobTitle                     MANAGER I
BasePay                      106506.22
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     106506.22
TotalPayBenefits             106506.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8124, dtype: object)
(8125, Id                            8126
EmployeeName        GEORGE COTHRAN
JobTitle                 MANAGER I
BasePay                  106506.22
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.22
TotalPayBenefits         106506.22
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8125, dtype: object)
(8126, Id                             8127
EmployeeName        ARLENE LAXAMANA
JobTitle                  MANAGER I
BasePay                   106506.18
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  106506.18
TotalPayBenefits          106506.18
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8126, dtype: object)
(8127, Id                            8128
EmployeeName        MELISSA HANSON
JobTitle                 MANAGER I
BasePay                  106506.17
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.17
TotalPayBenefits         106506.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8127, dtype: object)
(8128, Id                            8129
EmployeeName        ALISON JOHNSON
JobTitle                 MANAGER I
BasePay                  106506.17
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.17
TotalPayBenefits         106506.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8128, dtype: object)
(8129, Id                           8130
EmployeeName            JOHN HILL
JobTitle                MANAGER I
BasePay                 106506.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.16
TotalPayBenefits        106506.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8129, dtype: object)
(8130, Id                           8131
EmployeeName        ANGELA AUYONG
JobTitle                MANAGER I
BasePay                 106506.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.16
TotalPayBenefits        106506.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8130, dtype: object)
(8131, Id                             8132
EmployeeName        REBECCA JACKSON
JobTitle                  MANAGER I
BasePay                   106506.16
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  106506.16
TotalPayBenefits          106506.16
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8131, dtype: object)
(8132, Id                            8133
EmployeeName        KRISTIN BOWMAN
JobTitle                 MANAGER I
BasePay                  106506.16
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.16
TotalPayBenefits         106506.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8132, dtype: object)
(8133, Id                              8134
EmployeeName        KATHLEEN KENNETT
JobTitle                   MANAGER I
BasePay                    106506.15
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   106506.15
TotalPayBenefits           106506.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8133, dtype: object)
(8134, Id                            8135
EmployeeName        SONIA MARTINEZ
JobTitle                 MANAGER I
BasePay                  106506.15
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.15
TotalPayBenefits         106506.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8134, dtype: object)
(8135, Id                             8136
EmployeeName        JEFFREY HOGLIND
JobTitle                  MANAGER I
BasePay                   106506.15
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  106506.15
TotalPayBenefits          106506.15
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8135, dtype: object)
(8136, Id                           8137
EmployeeName         ALEDA GRAHAM
JobTitle                MANAGER I
BasePay                 106506.15
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.15
TotalPayBenefits        106506.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8136, dtype: object)
(8137, Id                           8138
EmployeeName          NOEL PANELO
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8137, dtype: object)
(8138, Id                           8139
EmployeeName           GERALD SUI
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8138, dtype: object)
(8139, Id                           8140
EmployeeName           CARL HOUSH
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8139, dtype: object)
(8140, Id                           8141
EmployeeName        LOUIS GOUDEAU
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8140, dtype: object)
(8141, Id                           8142
EmployeeName        EDWARD FORNER
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8141, dtype: object)
(8142, Id                            8143
EmployeeName        MICHAEL KNIGHT
JobTitle                 MANAGER I
BasePay                  106506.14
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106506.14
TotalPayBenefits         106506.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8142, dtype: object)
(8143, Id                           8144
EmployeeName           DONNA HOOD
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8143, dtype: object)
(8144, Id                           8145
EmployeeName            AMY COHEN
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8144, dtype: object)
(8145, Id                           8146
EmployeeName          SCOTT RILEY
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8145, dtype: object)
(8146, Id                           8147
EmployeeName          MARC MAJORS
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8146, dtype: object)
(8147, Id                           8148
EmployeeName         WILLIAM BLUM
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8147, dtype: object)
(8148, Id                           8149
EmployeeName            TODD RUFO
JobTitle                MANAGER I
BasePay                 106506.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106506.14
TotalPayBenefits        106506.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8148, dtype: object)
(8149, Id                                                         8150
EmployeeName                                      JAMES CERENIO
JobTitle            MANAGER I - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                               106028.37
OvertimePay                                                 0.0
OtherPay                                                 477.77
Benefits                                                    NaN
TotalPay                                              106506.14
TotalPayBenefits                                      106506.14
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 8149, dtype: object)
(8150, Id                              8151
EmployeeName        STEVEN CISMOWSKI
JobTitle                   MANAGER I
BasePay                    106506.14
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   106506.14
TotalPayBenefits           106506.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8150, dtype: object)
(8151, Id                                                          8152
EmployeeName                                     CAROLINE CELAYA
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                106506.14
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               106506.14
TotalPayBenefits                                       106506.14
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8151, dtype: object)
(8152, Id                                               8153
EmployeeName                            BRENDA AUSTIN
JobTitle            SUPERVISING CLINICAL PSYCHOLOGIST
BasePay                                     106504.92
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    106504.92
TotalPayBenefits                            106504.92
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8152, dtype: object)
(8153, Id                            8154
EmployeeName        NICHOLE RODICH
JobTitle            COURT REPORTER
BasePay                   100951.2
OvertimePay                    0.0
OtherPay                   5551.59
Benefits                       NaN
TotalPay                 106502.79
TotalPayBenefits         106502.79
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8153, dtype: object)
(8154, Id                            8155
EmployeeName         MICHAEL BROWN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               11875.45
OtherPay                   7785.54
Benefits                       NaN
TotalPay                 106500.99
TotalPayBenefits         106500.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8154, dtype: object)
(8155, Id                                                     8156
EmployeeName                                 STEPHEN GOLDEN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78163.61
OvertimePay                                         16469.0
OtherPay                                           11867.65
Benefits                                                NaN
TotalPay                                          106500.26
TotalPayBenefits                                  106500.26
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8155, dtype: object)
(8156, Id                                 8157
EmployeeName         ANTHONY RATTONETTI
JobTitle            SUPERVISING CHEMIST
BasePay                       106492.08
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      106492.08
TotalPayBenefits              106492.08
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8156, dtype: object)
(8157, Id                                 8158
EmployeeName              MICHAEL GILES
JobTitle            SUPERVISING CHEMIST
BasePay                       106492.07
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      106492.07
TotalPayBenefits              106492.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8157, dtype: object)
(8158, Id                                       8159
EmployeeName                      EDUARDO LIM
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             106492.07
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            106492.07
TotalPayBenefits                    106492.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8158, dtype: object)
(8159, Id                           8160
EmployeeName        ELLEN NATESAN
JobTitle            BIOLOGIST III
BasePay                 106492.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106492.05
TotalPayBenefits        106492.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8159, dtype: object)
(8160, Id                           8161
EmployeeName           CHENXI SHI
JobTitle              CHEMIST III
BasePay                 106492.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106492.05
TotalPayBenefits        106492.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8160, dtype: object)
(8161, Id                                         8162
EmployeeName                       LOURDES CHAN
JobTitle            ARCHITECTURAL ADMINISTRATOR
BasePay                               106492.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              106492.04
TotalPayBenefits                      106492.04
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 8161, dtype: object)
(8162, Id                                       8163
EmployeeName               FLORDELIZA LEVISTE
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             106492.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            106492.04
TotalPayBenefits                    106492.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8162, dtype: object)
(8163, Id                           8164
EmployeeName        ANTHONY BAZAN
JobTitle              CHEMIST III
BasePay                 106492.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106492.03
TotalPayBenefits        106492.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8163, dtype: object)
(8164, Id                            8165
EmployeeName        DAVID NEHRKORN
JobTitle               CHEMIST III
BasePay                  106492.03
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 106492.03
TotalPayBenefits         106492.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8164, dtype: object)
(8165, Id                           8166
EmployeeName          LISA MAZUCA
JobTitle              CHEMIST III
BasePay                 106492.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106492.03
TotalPayBenefits        106492.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8165, dtype: object)
(8166, Id                                       8167
EmployeeName                      WYNNIE RUAN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             106492.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            106492.01
TotalPayBenefits                    106492.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8166, dtype: object)
(8167, Id                           8168
EmployeeName             ALEX LIU
JobTitle              CHEMIST III
BasePay                  106492.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 106492.0
TotalPayBenefits         106492.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8167, dtype: object)
(8168, Id                                       8169
EmployeeName                   BEATRICE LEUNG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             105979.22
OvertimePay                               0.0
OtherPay                                505.6
Benefits                                  NaN
TotalPay                            106484.82
TotalPayBenefits                    106484.82
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8168, dtype: object)
(8169, Id                                              8170
EmployeeName                        LILIA MAKIYEVSKY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.11
OvertimePay                                      0.0
OtherPay                                       995.0
Benefits                                         NaN
TotalPay                                   106484.11
TotalPayBenefits                           106484.11
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8169, dtype: object)
(8170, Id                                                          8171
EmployeeName                                  ROBERT WOLFGANG JR
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                106476.35
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               106476.35
TotalPayBenefits                                       106476.35
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8170, dtype: object)
(8171, Id                           8172
EmployeeName        DAVID RIZZOLO
JobTitle                MANAGER I
BasePay                  106453.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 106453.8
TotalPayBenefits         106453.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8171, dtype: object)
(8172, Id                                           8173
EmployeeName                           THOMAS CHU
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  102461.0
OvertimePay                                   0.0
OtherPay                                  3982.82
Benefits                                      NaN
TotalPay                                106443.82
TotalPayBenefits                        106443.82
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8172, dtype: object)
(8173, Id                                   8174
EmployeeName            LUIGI CAUTERUCCIO
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.05
OvertimePay                       3469.96
OtherPay                          6716.38
Benefits                              NaN
TotalPay                        106438.39
TotalPayBenefits                106438.39
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8173, dtype: object)
(8174, Id                                  8175
EmployeeName        GLORIA KOCH-GONZALEZ
JobTitle                       MANAGER I
BasePay                        106432.49
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       106432.49
TotalPayBenefits               106432.49
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8174, dtype: object)
(8175, Id                           8176
EmployeeName           DAWN DURAN
JobTitle                MANAGER I
BasePay                  106430.6
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 106430.6
TotalPayBenefits         106430.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8175, dtype: object)
(8176, Id                                                8177
EmployeeName                             JIANMIN HUANG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   28315.07
OtherPay                                         535.0
Benefits                                           NaN
TotalPay                                     106430.47
TotalPayBenefits                             106430.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8176, dtype: object)
(8177, Id                                             8178
EmployeeName                     CORAZON CONCEPCION
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   104691.36
OvertimePay                                 1726.94
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   106418.3
TotalPayBenefits                           106418.3
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8177, dtype: object)
(8178, Id                            8179
EmployeeName           ROBERT ROSE
JobTitle            DEPUTY SHERIFF
BasePay                   85840.92
OvertimePay                5695.23
OtherPay                  14881.18
Benefits                       NaN
TotalPay                 106417.33
TotalPayBenefits         106417.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8178, dtype: object)
(8179, Id                              8180
EmployeeName            HANS GUMPFER
JobTitle            POLICE OFFICER I
BasePay                     93435.55
OvertimePay                   8078.4
OtherPay                     4899.24
Benefits                         NaN
TotalPay                   106413.19
TotalPayBenefits           106413.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8179, dtype: object)
(8180, Id                                      8181
EmployeeName                     JAMES CHENG
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            105898.02
OvertimePay                              0.0
OtherPay                               515.0
Benefits                                 NaN
TotalPay                           106413.02
TotalPayBenefits                   106413.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8180, dtype: object)
(8181, Id                           8182
EmployeeName        DAVID STEFFEN
JobTitle                 ENGINEER
BasePay                 106411.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106411.01
TotalPayBenefits        106411.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8181, dtype: object)
(8182, Id                           8183
EmployeeName          TONI RUCKER
JobTitle                MANAGER I
BasePay                 106401.45
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106401.45
TotalPayBenefits        106401.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8182, dtype: object)
(8183, Id                           8184
EmployeeName          HUGH SHIELS
JobTitle                MANAGER I
BasePay                  106398.2
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 106398.2
TotalPayBenefits         106398.2
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8183, dtype: object)
(8184, Id                                  8185
EmployeeName              ANTHONY ROGERS
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         75642.34
OvertimePay                     22886.11
OtherPay                         7858.87
Benefits                             NaN
TotalPay                       106387.32
TotalPayBenefits               106387.32
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8184, dtype: object)
(8185, Id                              8186
EmployeeName            AARON CRAMER
JobTitle            REGISTERED NURSE
BasePay                     99460.72
OvertimePay                   3271.3
OtherPay                     3653.47
Benefits                         NaN
TotalPay                   106385.49
TotalPayBenefits           106385.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8185, dtype: object)
(8186, Id                              8187
EmployeeName             LUIS PRIETO
JobTitle            POLICE OFFICER I
BasePay                     92670.21
OvertimePay                  6649.98
OtherPay                     7064.54
Benefits                         NaN
TotalPay                   106384.73
TotalPayBenefits           106384.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8186, dtype: object)
(8187, Id                                8188
EmployeeName               DAVID LEDDA
JobTitle            PLUMBING INSPECTOR
BasePay                       100861.6
OvertimePay                     472.77
OtherPay                       5044.06
Benefits                           NaN
TotalPay                     106378.43
TotalPayBenefits             106378.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8187, dtype: object)
(8188, Id                              8189
EmployeeName        JENNIFER ORANTES
JobTitle            POLICE OFFICER I
BasePay                     95765.32
OvertimePay                  3986.88
OtherPay                     6624.81
Benefits                         NaN
TotalPay                   106377.01
TotalPayBenefits           106377.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8188, dtype: object)
(8189, Id                              8190
EmployeeName            JOSEPH CHONG
JobTitle            TRANSIT OPERATOR
BasePay                     66857.18
OvertimePay                 34310.24
OtherPay                     5205.54
Benefits                         NaN
TotalPay                   106372.96
TotalPayBenefits           106372.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8189, dtype: object)
(8190, Id                           8191
EmployeeName          JANE HERMAN
JobTitle                MANAGER I
BasePay                  106366.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 106366.0
TotalPayBenefits         106366.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8190, dtype: object)
(8191, Id                                                      8192
EmployeeName                                   MAURICE HAYES
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              90877.6
OvertimePay                                          6496.24
OtherPay                                             8987.65
Benefits                                                 NaN
TotalPay                                           106361.49
TotalPayBenefits                                   106361.49
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8191, dtype: object)
(8192, Id                              8193
EmployeeName              AMY MURPHY
JobTitle            REGISTERED NURSE
BasePay                     98064.09
OvertimePay                  3812.53
OtherPay                     4483.18
Benefits                         NaN
TotalPay                    106359.8
TotalPayBenefits            106359.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8192, dtype: object)
(8193, Id                            8194
EmployeeName        KYLE BERNSTEIN
JobTitle                 MANAGER I
BasePay                   106349.1
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  106349.1
TotalPayBenefits          106349.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8193, dtype: object)
(8194, Id                              8195
EmployeeName              MAX FLORES
JobTitle            TRANSIT OPERATOR
BasePay                     65163.01
OvertimePay                 39351.57
OtherPay                     1833.68
Benefits                         NaN
TotalPay                   106348.26
TotalPayBenefits           106348.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8194, dtype: object)
(8195, Id                                              8196
EmployeeName                           RONALD RAMIRO
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73458.06
OvertimePay                                 28961.38
OtherPay                                     3927.16
Benefits                                         NaN
TotalPay                                    106346.6
TotalPayBenefits                            106346.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8195, dtype: object)
(8196, Id                           8197
EmployeeName           LISA WAYNE
JobTitle                MANAGER I
BasePay                 106337.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106337.14
TotalPayBenefits        106337.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8196, dtype: object)
(8197, Id                              8198
EmployeeName          MARIESA DUGGAN
JobTitle            REGISTERED NURSE
BasePay                     99460.71
OvertimePay                   976.15
OtherPay                     5899.74
Benefits                         NaN
TotalPay                    106336.6
TotalPayBenefits            106336.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8197, dtype: object)
(8198, Id                            8199
EmployeeName         DANNY CONKLIN
JobTitle            DEPUTY SHERIFF
BasePay                   77572.79
OvertimePay               20149.32
OtherPay                    8611.0
Benefits                       NaN
TotalPay                 106333.11
TotalPayBenefits         106333.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8198, dtype: object)
(8199, Id                                8200
EmployeeName        LEOPOLDO RAFAEL-JR
JobTitle            BUILDING INSPECTOR
BasePay                       101268.3
OvertimePay                        0.0
OtherPay                       5064.65
Benefits                           NaN
TotalPay                     106332.95
TotalPayBenefits             106332.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8199, dtype: object)
(8200, Id                                8201
EmployeeName          DERMOTT SULLIVAN
JobTitle            BUILDING INSPECTOR
BasePay                       101268.3
OvertimePay                        0.0
OtherPay                       5064.12
Benefits                           NaN
TotalPay                     106332.42
TotalPayBenefits             106332.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8200, dtype: object)
(8201, Id                                 8202
EmployeeName                 COLLIN LEE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73075.07
OvertimePay                    11843.68
OtherPay                       21407.61
Benefits                            NaN
TotalPay                      106326.36
TotalPayBenefits              106326.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8201, dtype: object)
(8202, Id                                 8203
EmployeeName              CRAIG SRABIAN
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    25352.08
OtherPay                        8556.85
Benefits                            NaN
TotalPay                      106318.93
TotalPayBenefits              106318.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8202, dtype: object)
(8203, Id                              8204
EmployeeName              ZAHID KHAN
JobTitle            POLICE OFFICER I
BasePay                     98766.81
OvertimePay                  2733.27
OtherPay                     4815.12
Benefits                         NaN
TotalPay                    106315.2
TotalPayBenefits            106315.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8203, dtype: object)
(8204, Id                                              8205
EmployeeName                    DEOGRACIAS LAUDENCIA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     106302.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    106302.6
TotalPayBenefits                            106302.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8204, dtype: object)
(8205, Id                                8206
EmployeeName            REFUGIO GARCIA
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                       1813.67
Benefits                           NaN
TotalPay                     106299.67
TotalPayBenefits             106299.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8205, dtype: object)
(8206, Id                                  8207
EmployeeName        KATHLEEN MONICOKLEIN
JobTitle                       MANAGER I
BasePay                        106297.28
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       106297.28
TotalPayBenefits               106297.28
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8206, dtype: object)
(8207, Id                                8208
EmployeeName                  ELISA NG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.17
OvertimePay                        0.0
OtherPay                       1810.54
Benefits                           NaN
TotalPay                     106296.71
TotalPayBenefits             106296.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8207, dtype: object)
(8208, Id                                8209
EmployeeName              FREDDIE WONG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                       1810.54
Benefits                           NaN
TotalPay                     106296.55
TotalPayBenefits             106296.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8208, dtype: object)
(8209, Id                                8210
EmployeeName              MAJID AYYOUB
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                       1810.54
Benefits                           NaN
TotalPay                     106296.55
TotalPayBenefits             106296.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8209, dtype: object)
(8210, Id                                8211
EmployeeName            PRESTER WILSON
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                       1810.54
Benefits                           NaN
TotalPay                     106296.54
TotalPayBenefits             106296.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8210, dtype: object)
(8211, Id                                 8212
EmployeeName               JOHN GREGSON
JobTitle            SUPERVISING CHEMIST
BasePay                       106287.95
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      106287.95
TotalPayBenefits              106287.95
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8211, dtype: object)
(8212, Id                            8213
EmployeeName          LARRY NAPATA
JobTitle            DEPUTY SHERIFF
BasePay                   82038.76
OvertimePay               18038.12
OtherPay                   6209.82
Benefits                       NaN
TotalPay                  106286.7
TotalPayBenefits          106286.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8212, dtype: object)
(8213, Id                                 8214
EmployeeName                  WAYNE CHU
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72490.41
OvertimePay                    24893.18
OtherPay                        8902.52
Benefits                            NaN
TotalPay                      106286.11
TotalPayBenefits              106286.11
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8213, dtype: object)
(8214, Id                               8215
EmployeeName        CYNTHIA LA FRANCA
JobTitle                COURT MANAGER
BasePay                     105043.45
OvertimePay                       0.0
OtherPay                       1235.1
Benefits                          NaN
TotalPay                    106278.55
TotalPayBenefits            106278.55
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8214, dtype: object)
(8215, Id                                8216
EmployeeName                IRENE WONG
JobTitle            BUILDING INSPECTOR
BasePay                      102132.55
OvertimePay                        0.0
OtherPay                        4138.2
Benefits                           NaN
TotalPay                     106270.75
TotalPayBenefits             106270.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8215, dtype: object)
(8216, Id                                    8217
EmployeeName        MARIE-FRANCE CONCEICAO
JobTitle                  POLICE OFFICER I
BasePay                           100974.4
OvertimePay                        2267.01
OtherPay                           3028.02
Benefits                               NaN
TotalPay                         106269.43
TotalPayBenefits                 106269.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8216, dtype: object)
(8217, Id                                8218
EmployeeName          NAOMI SCHOENFELD
JobTitle            NURSE PRACTITIONER
BasePay                      103958.45
OvertimePay                        0.0
OtherPay                       2305.04
Benefits                           NaN
TotalPay                     106263.49
TotalPayBenefits             106263.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8217, dtype: object)
(8218, Id                               8219
EmployeeName           ROBERT COLLINS
JobTitle            DEPUTY DIRECTOR I
BasePay                     106260.35
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    106260.35
TotalPayBenefits            106260.35
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8218, dtype: object)
(8219, Id                           8220
EmployeeName        DENISE CHEUNG
JobTitle                MANAGER I
BasePay                 106259.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106259.57
TotalPayBenefits        106259.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8219, dtype: object)
(8220, Id                                                      8221
EmployeeName                                 RODNEY TALAVERA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             88346.01
OvertimePay                                           9174.4
OtherPay                                             8737.18
Benefits                                                 NaN
TotalPay                                           106257.59
TotalPayBenefits                                   106257.59
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8220, dtype: object)
(8221, Id                              8222
EmployeeName           PATRICK NAGLE
JobTitle            REGISTERED NURSE
BasePay                    101412.96
OvertimePay                  1044.09
OtherPay                     3793.53
Benefits                         NaN
TotalPay                   106250.58
TotalPayBenefits           106250.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8221, dtype: object)
(8222, Id                                8223
EmployeeName            THOMAS FESSLER
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                     315.19
OtherPay                       5044.31
Benefits                           NaN
TotalPay                      106221.1
TotalPayBenefits              106221.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8222, dtype: object)
(8223, Id                              8224
EmployeeName              TONIA VEGA
JobTitle            REGISTERED NURSE
BasePay                    100473.54
OvertimePay                  2010.66
OtherPay                     3729.46
Benefits                         NaN
TotalPay                   106213.66
TotalPayBenefits           106213.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8223, dtype: object)
(8224, Id                           8225
EmployeeName           KEELY ZAHN
JobTitle            SPECIAL NURSE
BasePay                  95176.73
OvertimePay               1838.76
OtherPay                  9197.29
Benefits                      NaN
TotalPay                106212.78
TotalPayBenefits        106212.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8224, dtype: object)
(8225, Id                                       8226
EmployeeName                 QIANA WASHINGTON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             105009.22
OvertimePay                               0.0
OtherPay                              1200.96
Benefits                                  NaN
TotalPay                            106210.18
TotalPayBenefits                    106210.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8225, dtype: object)
(8226, Id                                               8227
EmployeeName                             GREGORY WONG
JobTitle            PRINCIPAL REAL PROPERTY APPRAISER
BasePay                                     103969.18
OvertimePay                                       0.0
OtherPay                                      2239.75
Benefits                                          NaN
TotalPay                                    106208.93
TotalPayBenefits                            106208.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8226, dtype: object)
(8227, Id                              8228
EmployeeName              ROSE HUANG
JobTitle            REGISTERED NURSE
BasePay                     90012.84
OvertimePay                  7246.51
OtherPay                     8934.16
Benefits                         NaN
TotalPay                   106193.51
TotalPayBenefits           106193.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8227, dtype: object)
(8228, Id                              8229
EmployeeName         LEONARD PERALTA
JobTitle            TRANSIT OPERATOR
BasePay                     65144.14
OvertimePay                 37817.62
OtherPay                     3227.87
Benefits                         NaN
TotalPay                   106189.63
TotalPayBenefits           106189.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8228, dtype: object)
(8229, Id                              8230
EmployeeName         MARSHA CALIMLIM
JobTitle            REGISTERED NURSE
BasePay                     97363.73
OvertimePay                  5260.86
OtherPay                     3563.08
Benefits                         NaN
TotalPay                   106187.67
TotalPayBenefits           106187.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8229, dtype: object)
(8230, Id                                8231
EmployeeName                ANTHONY YU
JobTitle            ASSOCIATE ENGINEER
BasePay                      103781.03
OvertimePay                        0.0
OtherPay                        2390.8
Benefits                           NaN
TotalPay                     106171.83
TotalPayBenefits             106171.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8230, dtype: object)
(8231, Id                                               8232
EmployeeName                                 JULIE WU
JobTitle            PRINCIPAL REAL PROPERTY APPRAISER
BasePay                                     103968.99
OvertimePay                                       0.0
OtherPay                                       2200.0
Benefits                                          NaN
TotalPay                                    106168.99
TotalPayBenefits                            106168.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8231, dtype: object)
(8232, Id                           8233
EmployeeName            WAYNE LEE
JobTitle                  PLUMBER
BasePay                  91737.12
OvertimePay               1658.72
OtherPay                 12756.56
Benefits                      NaN
TotalPay                 106152.4
TotalPayBenefits         106152.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8232, dtype: object)
(8233, Id                                               8234
EmployeeName                            JAMES BALSHAM
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       97588.8
OvertimePay                                       0.0
OtherPay                                       8554.9
Benefits                                          NaN
TotalPay                                     106143.7
TotalPayBenefits                             106143.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8233, dtype: object)
(8234, Id                               8235
EmployeeName        ALFONSO HERNANDEZ
JobTitle               DEPUTY SHERIFF
BasePay                      86840.02
OvertimePay                  14138.21
OtherPay                      5158.51
Benefits                          NaN
TotalPay                    106136.74
TotalPayBenefits            106136.74
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8234, dtype: object)
(8235, Id                                8236
EmployeeName               JOSEPH CHAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                       1642.95
Benefits                           NaN
TotalPay                     106128.99
TotalPayBenefits             106128.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8235, dtype: object)
(8236, Id                               8237
EmployeeName        STEVEN HUTCHINSON
JobTitle                      PLUMBER
BasePay                      91006.65
OvertimePay                   7310.55
OtherPay                      7805.37
Benefits                          NaN
TotalPay                    106122.57
TotalPayBenefits            106122.57
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8236, dtype: object)
(8237, Id                                    8238
EmployeeName                DUSTIN NUNNERY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85715.17
OvertimePay                       11493.37
OtherPay                           8912.75
Benefits                               NaN
TotalPay                         106121.29
TotalPayBenefits                 106121.29
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8237, dtype: object)
(8238, Id                                 8239
EmployeeName                 LUONG KHUU
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72634.38
OvertimePay                    22865.32
OtherPay                       10619.76
Benefits                            NaN
TotalPay                      106119.46
TotalPayBenefits              106119.46
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8238, dtype: object)
(8239, Id                                8240
EmployeeName                 ANGIE LEE
JobTitle            UTILITY SPECIALIST
BasePay                       106113.1
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      106113.1
TotalPayBenefits              106113.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8239, dtype: object)
(8240, Id                                 8241
EmployeeName              ELIZABETH FOY
JobTitle            PUBLIC HEALTH NURSE
BasePay                       100879.03
OvertimePay                         0.0
OtherPay                        5226.64
Benefits                            NaN
TotalPay                      106105.67
TotalPayBenefits              106105.67
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8240, dtype: object)
(8241, Id                                               8242
EmployeeName                           SHAWN MCINTYRE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96811.2
OvertimePay                                     801.9
OtherPay                                      8485.56
Benefits                                          NaN
TotalPay                                    106098.66
TotalPayBenefits                            106098.66
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8241, dtype: object)
(8242, Id                                                          8243
EmployeeName                                  KATHLEEN SAKELARIS
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                106087.35
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               106087.35
TotalPayBenefits                                       106087.35
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8242, dtype: object)
(8243, Id                            8244
EmployeeName        HECTOR ALMANZA
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               12861.73
OtherPay                   6385.12
Benefits                       NaN
TotalPay                 106086.85
TotalPayBenefits         106086.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8243, dtype: object)
(8244, Id                            8245
EmployeeName            TERESA FOX
JobTitle            DEPUTY SHERIFF
BasePay                   86571.45
OvertimePay                8925.95
OtherPay                  10584.61
Benefits                       NaN
TotalPay                 106082.01
TotalPayBenefits         106082.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8244, dtype: object)
(8245, Id                              8246
EmployeeName         ALLEN VUGRINCIC
JobTitle            POLICE OFFICER I
BasePay                    106060.82
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   106060.82
TotalPayBenefits           106060.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8245, dtype: object)
(8246, Id                              8247
EmployeeName           STEPHEN HOGAN
JobTitle            POLICE OFFICER I
BasePay                     100537.1
OvertimePay                  4383.54
OtherPay                     1137.23
Benefits                         NaN
TotalPay                   106057.87
TotalPayBenefits           106057.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8246, dtype: object)
(8247, Id                           8248
EmployeeName        ANGELO WILSON
JobTitle                  PLUMBER
BasePay                  90280.06
OvertimePay               3303.72
OtherPay                 12471.43
Benefits                      NaN
TotalPay                106055.21
TotalPayBenefits        106055.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8247, dtype: object)
(8248, Id                            8249
EmployeeName             ROBB BURY
JobTitle            SAFETY ANALYST
BasePay                   105967.0
OvertimePay                    0.0
OtherPay                      61.0
Benefits                       NaN
TotalPay                  106028.0
TotalPayBenefits          106028.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8248, dtype: object)
(8249, Id                                 8250
EmployeeName        NAPOLEON KHALILNAJI
JobTitle                 SAFETY ANALYST
BasePay                        105967.0
OvertimePay                         0.0
OtherPay                           61.0
Benefits                            NaN
TotalPay                       106028.0
TotalPayBenefits               106028.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8249, dtype: object)
(8250, Id                              8251
EmployeeName        FRANKLIN JOHNSON
JobTitle              SAFETY ANALYST
BasePay                     105967.0
OvertimePay                      0.0
OtherPay                        61.0
Benefits                         NaN
TotalPay                    106028.0
TotalPayBenefits            106028.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8250, dtype: object)
(8251, Id                             8252
EmployeeName        SHERRI ANDERSON
JobTitle             SAFETY ANALYST
BasePay                    105967.0
OvertimePay                     0.0
OtherPay                       61.0
Benefits                        NaN
TotalPay                   106028.0
TotalPayBenefits           106028.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8251, dtype: object)
(8252, Id                                8253
EmployeeName                MARK WALLS
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                     937.94
OtherPay                       4225.58
Benefits                           NaN
TotalPay                     106025.12
TotalPayBenefits             106025.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8252, dtype: object)
(8253, Id                           8254
EmployeeName        TRACEY PACKER
JobTitle                MANAGER I
BasePay                 106016.68
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                106016.68
TotalPayBenefits        106016.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8253, dtype: object)
(8254, Id                                                          8255
EmployeeName                                 FRANCIS MELLERA III
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                103727.58
OvertimePay                                                  0.0
OtherPay                                                 2283.68
Benefits                                                     NaN
TotalPay                                               106011.26
TotalPayBenefits                                       106011.26
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8254, dtype: object)
(8255, Id                                          8256
EmployeeName                       TYRONE BURNEY
JobTitle            GENERAL LABORER SUPERVISOR I
BasePay                                  62416.9
OvertimePay                             37363.41
OtherPay                                 6229.71
Benefits                                     NaN
TotalPay                               106010.02
TotalPayBenefits                       106010.02
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8255, dtype: object)
(8256, Id                                             8257
EmployeeName                         ANDREW WALLACE
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                     98577.4
OvertimePay                                     0.0
OtherPay                                    7429.12
Benefits                                        NaN
TotalPay                                  106006.52
TotalPayBenefits                          106006.52
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8256, dtype: object)
(8257, Id                                     8258
EmployeeName               FERNANDO JIMENEZ
JobTitle            WATER SERVICE INSPECTOR
BasePay                            89315.84
OvertimePay                          699.05
OtherPay                           15984.69
Benefits                                NaN
TotalPay                          105999.58
TotalPayBenefits                  105999.58
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8257, dtype: object)
(8258, Id                                                      8259
EmployeeName                                  DIANE JASINSKI
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             98600.16
OvertimePay                                              0.0
OtherPay                                             7395.08
Benefits                                                 NaN
TotalPay                                           105995.24
TotalPayBenefits                                   105995.24
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8258, dtype: object)
(8259, Id                                        8260
EmployeeName                 NANCY LOO-MANNING
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103719.7
OvertimePay                            1449.93
OtherPay                                 822.5
Benefits                                   NaN
TotalPay                             105992.13
TotalPayBenefits                     105992.13
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8259, dtype: object)
(8260, Id                                 8261
EmployeeName        ANA CLAUDIA PEREIRA
JobTitle               REGISTERED NURSE
BasePay                        99757.45
OvertimePay                     5204.87
OtherPay                         1028.6
Benefits                            NaN
TotalPay                      105990.92
TotalPayBenefits              105990.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8260, dtype: object)
(8261, Id                              8262
EmployeeName          PETER HAMILTON
JobTitle            POLICE OFFICER I
BasePay                     95746.67
OvertimePay                  3106.98
OtherPay                     7133.62
Benefits                         NaN
TotalPay                   105987.27
TotalPayBenefits           105987.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8261, dtype: object)
(8262, Id                                   8263
EmployeeName               MARTIN CAMPION
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          88288.02
OvertimePay                       9728.46
OtherPay                          7966.85
Benefits                              NaN
TotalPay                        105983.33
TotalPayBenefits                105983.33
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8262, dtype: object)
(8263, Id                                             8264
EmployeeName                          EUGENIA PEREZ
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                    98577.41
OvertimePay                                     0.0
OtherPay                                    7404.12
Benefits                                        NaN
TotalPay                                  105981.53
TotalPayBenefits                          105981.53
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8263, dtype: object)
(8264, Id                                8265
EmployeeName                 JOHN SIMS
JobTitle            BUILDING INSPECTOR
BasePay                       100048.2
OvertimePay                    1372.58
OtherPay                       4560.15
Benefits                           NaN
TotalPay                     105980.93
TotalPayBenefits             105980.93
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8264, dtype: object)
(8265, Id                            8266
EmployeeName         RICHARD BALMY
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay               13114.46
OtherPay                   6360.01
Benefits                       NaN
TotalPay                 105980.47
TotalPayBenefits         105980.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8265, dtype: object)
(8266, Id                           8267
EmployeeName         GARY GODFREY
JobTitle                  PLUMBER
BasePay                   89735.1
OvertimePay               15258.6
OtherPay                    980.0
Benefits                      NaN
TotalPay                 105973.7
TotalPayBenefits         105973.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8266, dtype: object)
(8267, Id                                           8268
EmployeeName                      BRENDA MITCHELL
JobTitle            SUPERVISING PARTS STOREKEEPER
BasePay                                   68550.3
OvertimePay                               36479.7
OtherPay                                   942.13
Benefits                                      NaN
TotalPay                                105972.13
TotalPayBenefits                        105972.13
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8267, dtype: object)
(8268, Id                           8269
EmployeeName           LISA PAGAN
JobTitle                MANAGER I
BasePay                 105969.69
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                105969.69
TotalPayBenefits        105969.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8268, dtype: object)
(8269, Id                                8270
EmployeeName                WAYNE WONG
JobTitle            PLUMBING INSPECTOR
BasePay                       101675.0
OvertimePay                    1244.48
OtherPay                       3050.17
Benefits                           NaN
TotalPay                     105969.65
TotalPayBenefits             105969.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8269, dtype: object)
(8270, Id                                                      8271
EmployeeName                              SILVIA CASTELLANOS
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.03
OvertimePay                                              0.0
OtherPay                                             5046.15
Benefits                                                 NaN
TotalPay                                           105969.18
TotalPayBenefits                                   105969.18
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8270, dtype: object)
(8271, Id                                                 8272
EmployeeName                               DEREK FLIESS
JobTitle            CITY SHOPS ASSISTANT SUPERINTENDENT
BasePay                                       105469.09
OvertimePay                                         0.0
OtherPay                                          500.0
Benefits                                            NaN
TotalPay                                      105969.09
TotalPayBenefits                              105969.09
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8271, dtype: object)
(8272, Id                                  8273
EmployeeName             TIMMOTHY FELTON
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        105967.16
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105967.16
TotalPayBenefits               105967.16
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8272, dtype: object)
(8273, Id                                  8274
EmployeeName              GEORGE BIBBINS
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        105967.13
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105967.13
TotalPayBenefits               105967.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8273, dtype: object)
(8274, Id                             8275
EmployeeName        THOMAS ANDERSON
JobTitle             SAFETY ANALYST
BasePay                    105967.1
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   105967.1
TotalPayBenefits           105967.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8274, dtype: object)
(8275, Id                                  8276
EmployeeName                     KIM LIN
JobTitle            INDUSTRIAL HYGIENIST
BasePay                         105967.1
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        105967.1
TotalPayBenefits                105967.1
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8275, dtype: object)
(8276, Id                            8277
EmployeeName            JEFF LEANO
JobTitle            SAFETY ANALYST
BasePay                  105967.08
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 105967.08
TotalPayBenefits         105967.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8276, dtype: object)
(8277, Id                                  8278
EmployeeName                ERIC GOLDMAN
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        105967.08
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105967.08
TotalPayBenefits               105967.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8277, dtype: object)
(8278, Id                            8279
EmployeeName           SHAWN HOLLE
JobTitle            SAFETY ANALYST
BasePay                  105967.06
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 105967.06
TotalPayBenefits         105967.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8278, dtype: object)
(8279, Id                                  8280
EmployeeName             PHILLIP CALHOUN
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        105967.05
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105967.05
TotalPayBenefits               105967.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8279, dtype: object)
(8280, Id                                  8281
EmployeeName            VIRGINIA ST JEAN
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        105966.71
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105966.71
TotalPayBenefits               105966.71
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8280, dtype: object)
(8281, Id                              8282
EmployeeName          MAHMOOD MUNSHI
JobTitle            TRANSIT OPERATOR
BasePay                      67010.7
OvertimePay                 36191.73
OtherPay                     2760.86
Benefits                         NaN
TotalPay                   105963.29
TotalPayBenefits           105963.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8281, dtype: object)
(8282, Id                                8283
EmployeeName           RUSSELL STANTON
JobTitle            TRANSIT SUPERVISOR
BasePay                       67456.93
OvertimePay                    34241.2
OtherPay                       4263.92
Benefits                           NaN
TotalPay                     105962.05
TotalPayBenefits             105962.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8282, dtype: object)
(8283, Id                            8284
EmployeeName          DANNY NGUYEN
JobTitle            DEPUTY SHERIFF
BasePay                    85526.5
OvertimePay               16238.97
OtherPay                   4196.17
Benefits                       NaN
TotalPay                 105961.64
TotalPayBenefits         105961.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8283, dtype: object)
(8284, Id                            8285
EmployeeName        JOHN BILLOVITS
JobTitle                PLANNER IV
BasePay                  105955.33
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 105955.33
TotalPayBenefits         105955.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8284, dtype: object)
(8285, Id                                 8286
EmployeeName                 WINNIE YUK
JobTitle            PUBLIC HEALTH NURSE
BasePay                       104601.01
OvertimePay                         0.0
OtherPay                         1350.0
Benefits                            NaN
TotalPay                      105951.01
TotalPayBenefits              105951.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8285, dtype: object)
(8286, Id                                  8287
EmployeeName                DANIEL FROSS
JobTitle            ELECTRICAL INSPECTOR
BasePay                          99234.8
OvertimePay                      6710.44
OtherPay                             0.0
Benefits                             NaN
TotalPay                       105945.24
TotalPayBenefits               105945.24
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8286, dtype: object)
(8287, Id                                             8288
EmployeeName                         NANNIE TURRELL
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   105937.56
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  105937.56
TotalPayBenefits                          105937.56
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8287, dtype: object)
(8288, Id                                             8289
EmployeeName                     KANCHANA GADDIPATI
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    105931.2
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   105931.2
TotalPayBenefits                           105931.2
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8288, dtype: object)
(8289, Id                              8290
EmployeeName           SANDON CHEUNG
JobTitle            POLICE OFFICER I
BasePay                    100342.45
OvertimePay                  1542.51
OtherPay                     4030.08
Benefits                         NaN
TotalPay                   105915.04
TotalPayBenefits           105915.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8289, dtype: object)
(8290, Id                                8291
EmployeeName             EDWARD GREENE
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                        0.0
OtherPay                       5044.03
Benefits                           NaN
TotalPay                     105905.63
TotalPayBenefits             105905.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8290, dtype: object)
(8291, Id                                               8292
EmployeeName                     FRANCIS CUMMINGS III
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      94395.71
OvertimePay                                  10693.71
OtherPay                                       804.68
Benefits                                          NaN
TotalPay                                     105894.1
TotalPayBenefits                             105894.1
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8291, dtype: object)
(8292, Id                               8293
EmployeeName        MELISSA BENZINGER
JobTitle             POLICE OFFICER I
BasePay                     103634.07
OvertimePay                    574.01
OtherPay                      1678.06
Benefits                          NaN
TotalPay                    105886.14
TotalPayBenefits            105886.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8292, dtype: object)
(8293, Id                              8294
EmployeeName            RUO HUA ZHOU
JobTitle            TRANSIT OPERATOR
BasePay                     67382.93
OvertimePay                 32618.64
OtherPay                      5882.4
Benefits                         NaN
TotalPay                   105883.97
TotalPayBenefits           105883.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8293, dtype: object)
(8294, Id                              8295
EmployeeName              ARTHUR JEW
JobTitle            TRANSIT OPERATOR
BasePay                     64462.23
OvertimePay                 39688.36
OtherPay                     1725.88
Benefits                         NaN
TotalPay                   105876.47
TotalPayBenefits           105876.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8294, dtype: object)
(8295, Id                                               8296
EmployeeName                                JESUS PUN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    632.77
OtherPay                                      6219.29
Benefits                                          NaN
TotalPay                                    105866.46
TotalPayBenefits                            105866.46
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8295, dtype: object)
(8296, Id                                            8297
EmployeeName                    GLORINA CRISOSTOMO
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  105725.45
OvertimePay                                    0.0
OtherPay                                    127.38
Benefits                                       NaN
TotalPay                                 105852.83
TotalPayBenefits                         105852.83
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 8296, dtype: object)
(8297, Id                                       8298
EmployeeName               ALLYSON VILLANUEVA
JobTitle            CLINICAL NURSE SPECIALIST
BasePay                             102750.19
OvertimePay                               0.0
OtherPay                              3093.79
Benefits                                  NaN
TotalPay                            105843.98
TotalPayBenefits                    105843.98
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8297, dtype: object)
(8298, Id                              8299
EmployeeName              KENNETH MA
JobTitle            TRANSIT OPERATOR
BasePay                     67412.48
OvertimePay                 32307.81
OtherPay                     6108.64
Benefits                         NaN
TotalPay                   105828.93
TotalPayBenefits           105828.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8298, dtype: object)
(8299, Id                              8300
EmployeeName          RICHARD TRUONG
JobTitle            TRANSIT OPERATOR
BasePay                     67581.32
OvertimePay                 36299.04
OtherPay                     1946.45
Benefits                         NaN
TotalPay                   105826.81
TotalPayBenefits           105826.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8299, dtype: object)
(8300, Id                             8301
EmployeeName        CURTIS MCMILLAN
JobTitle                   ENGINEER
BasePay                   105826.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  105826.01
TotalPayBenefits          105826.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8300, dtype: object)
(8301, Id                              8302
EmployeeName           ROSE BALTAZAR
JobTitle            REGISTERED NURSE
BasePay                     95157.31
OvertimePay                  5889.28
OtherPay                     4769.75
Benefits                         NaN
TotalPay                   105816.34
TotalPayBenefits           105816.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8301, dtype: object)
(8302, Id                                          8303
EmployeeName                      STEPHEN SOLNIT
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.24
OvertimePay                                  0.0
OtherPay                                 5775.01
Benefits                                     NaN
TotalPay                               105814.25
TotalPayBenefits                       105814.25
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8302, dtype: object)
(8303, Id                                  8304
EmployeeName                 RICHARD LEE
JobTitle            CAR AND AUTO PAINTER
BasePay                         73367.32
OvertimePay                     20767.45
OtherPay                        11666.32
Benefits                             NaN
TotalPay                       105801.09
TotalPayBenefits               105801.09
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8303, dtype: object)
(8304, Id                                       8305
EmployeeName                       MARK BYERS
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               91780.8
OvertimePay                           5428.22
OtherPay                              8591.08
Benefits                                  NaN
TotalPay                             105800.1
TotalPayBenefits                     105800.1
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8304, dtype: object)
(8305, Id                                8306
EmployeeName                 JOSEPH YU
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                     393.99
OtherPay                       4528.04
Benefits                           NaN
TotalPay                     105783.63
TotalPayBenefits             105783.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8305, dtype: object)
(8306, Id                                 8307
EmployeeName           MARTHA HAWTHORNE
JobTitle            PUBLIC HEALTH NURSE
BasePay                        100732.5
OvertimePay                         0.0
OtherPay                        5046.27
Benefits                            NaN
TotalPay                      105778.77
TotalPayBenefits              105778.77
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8306, dtype: object)
(8307, Id                                  8308
EmployeeName               JEREMY BOWLES
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          72963.8
OvertimePay                     20203.84
OtherPay                        12604.02
Benefits                             NaN
TotalPay                       105771.66
TotalPayBenefits               105771.66
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8307, dtype: object)
(8308, Id                                 8309
EmployeeName            ROGELIA PULMANO
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.01
OvertimePay                         0.0
OtherPay                       10181.73
Benefits                            NaN
TotalPay                      105757.74
TotalPayBenefits              105757.74
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8308, dtype: object)
(8309, Id                                                 8310
EmployeeName                            JOSEPH PETRELLA
JobTitle            CITY SHOPS ASSISTANT SUPERINTENDENT
BasePay                                       105255.61
OvertimePay                                         0.0
OtherPay                                          500.0
Benefits                                            NaN
TotalPay                                      105755.61
TotalPayBenefits                              105755.61
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8309, dtype: object)
(8310, Id                                               8311
EmployeeName                           WESLEY JOHNSON
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96684.8
OvertimePay                                   8445.91
OtherPay                                        624.0
Benefits                                          NaN
TotalPay                                    105754.71
TotalPayBenefits                            105754.71
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8310, dtype: object)
(8311, Id                              8312
EmployeeName            ROBERT RUECA
JobTitle            POLICE OFFICER I
BasePay                     98714.07
OvertimePay                  2568.75
OtherPay                     4466.37
Benefits                         NaN
TotalPay                   105749.19
TotalPayBenefits           105749.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8311, dtype: object)
(8312, Id                               8313
EmployeeName          NATALIYA KUZINA
JobTitle            DEPUTY DIRECTOR I
BasePay                     105742.78
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    105742.78
TotalPayBenefits            105742.78
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8312, dtype: object)
(8313, Id                                8314
EmployeeName               KEVIN WINCH
JobTitle            SHERIFF'S SERGEANT
BasePay                      104282.86
OvertimePay                      78.05
OtherPay                       1374.84
Benefits                           NaN
TotalPay                     105735.75
TotalPayBenefits             105735.75
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8313, dtype: object)
(8314, Id                                 8315
EmployeeName             WAIKIT AUYEUNG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71613.51
OvertimePay                    28121.11
OtherPay                         5998.6
Benefits                            NaN
TotalPay                      105733.22
TotalPayBenefits              105733.22
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8314, dtype: object)
(8315, Id                              8316
EmployeeName            IMRAN SHAKUR
JobTitle            POLICE OFFICER I
BasePay                     93386.26
OvertimePay                  3258.91
OtherPay                     9085.77
Benefits                         NaN
TotalPay                   105730.94
TotalPayBenefits           105730.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8315, dtype: object)
(8316, Id                                8317
EmployeeName                DAVID FONG
JobTitle            TRANSIT SUPERVISOR
BasePay                       89408.33
OvertimePay                    9359.64
OtherPay                       6957.25
Benefits                           NaN
TotalPay                     105725.22
TotalPayBenefits             105725.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8316, dtype: object)
(8317, Id                               8318
EmployeeName                  MAY DEA
JobTitle            HOUSING INSPECTOR
BasePay                     100697.03
OvertimePay                       0.0
OtherPay                      5027.46
Benefits                          NaN
TotalPay                    105724.49
TotalPayBenefits            105724.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8317, dtype: object)
(8318, Id                                8319
EmployeeName           RICARDO JIMENEZ
JobTitle            TRANSIT SUPERVISOR
BasePay                       84246.55
OvertimePay                   17556.42
OtherPay                       3913.56
Benefits                           NaN
TotalPay                     105716.53
TotalPayBenefits             105716.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8318, dtype: object)
(8319, Id                                       8320
EmployeeName                       JIMMY KIRK
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              91858.02
OvertimePay                           6335.09
OtherPay                              7511.35
Benefits                                  NaN
TotalPay                            105704.46
TotalPayBenefits                    105704.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8319, dtype: object)
(8320, Id                              8321
EmployeeName          DANIEL MCGUIRE
JobTitle            REGISTERED NURSE
BasePay                     94187.23
OvertimePay                  5740.97
OtherPay                     5771.37
Benefits                         NaN
TotalPay                   105699.57
TotalPayBenefits           105699.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8320, dtype: object)
(8321, Id                            8322
EmployeeName        CHARLES GATSON
JobTitle            DEPUTY SHERIFF
BasePay                   86485.14
OvertimePay                4364.19
OtherPay                  14845.21
Benefits                       NaN
TotalPay                 105694.54
TotalPayBenefits         105694.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8321, dtype: object)
(8322, Id                            8323
EmployeeName             PAULER IM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                7276.81
OtherPay                  11575.37
Benefits                       NaN
TotalPay                 105692.18
TotalPayBenefits         105692.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8322, dtype: object)
(8323, Id                                  8324
EmployeeName               KENNETH BURKE
JobTitle            ELECTRICAL INSPECTOR
BasePay                         94152.52
OvertimePay                      9646.24
OtherPay                         1882.55
Benefits                             NaN
TotalPay                       105681.31
TotalPayBenefits               105681.31
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8323, dtype: object)
(8324, Id                                8325
EmployeeName           ROLAND DAVANTES
JobTitle            PLUMBING INSPECTOR
BasePay                      101471.65
OvertimePay                     155.56
OtherPay                       4049.19
Benefits                           NaN
TotalPay                      105676.4
TotalPayBenefits              105676.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8324, dtype: object)
(8325, Id                                           8326
EmployeeName                           DENNIS DAY
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   85755.6
OvertimePay                              17998.59
OtherPay                                  1895.58
Benefits                                      NaN
TotalPay                                105649.77
TotalPayBenefits                        105649.77
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8325, dtype: object)
(8326, Id                              8327
EmployeeName        STACY YOUNGBLOOD
JobTitle            POLICE OFFICER I
BasePay                    100809.68
OvertimePay                  1633.08
OtherPay                     3203.79
Benefits                         NaN
TotalPay                   105646.55
TotalPayBenefits           105646.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8326, dtype: object)
(8327, Id                              8328
EmployeeName        MICHAEL PHILLIPS
JobTitle            POLICE OFFICER I
BasePay                     93855.93
OvertimePay                  7031.65
OtherPay                     4758.53
Benefits                         NaN
TotalPay                   105646.11
TotalPayBenefits           105646.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8327, dtype: object)
(8328, Id                                                       8329
EmployeeName                                    NATASHA MIHAL
JobTitle            PERFORMANCE ANALYST III - PROJECT MANAGER
BasePay                                             105644.57
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                            105644.57
TotalPayBenefits                                    105644.57
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 8328, dtype: object)
(8329, Id                                   8330
EmployeeName        NINFA ALVAREZ-PLEITES
JobTitle                 REGISTERED NURSE
BasePay                         100896.82
OvertimePay                        274.72
OtherPay                          4472.26
Benefits                              NaN
TotalPay                         105643.8
TotalPayBenefits                 105643.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8329, dtype: object)
(8330, Id                           8331
EmployeeName            HUGO GRAY
JobTitle                MANAGER I
BasePay                 105632.69
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                105632.69
TotalPayBenefits        105632.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8330, dtype: object)
(8331, Id                                                               8332
EmployeeName                                         KENNETH BOSSO-JR
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN ASSISTANT SU...
BasePay                                                     104845.83
OvertimePay                                                     606.6
OtherPay                                                        180.0
Benefits                                                          NaN
TotalPay                                                    105632.43
TotalPayBenefits                                            105632.43
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8331, dtype: object)
(8332, Id                                  8333
EmployeeName               BROOKS FENTON
JobTitle            PAINTER SUPERVISOR I
BasePay                          85116.2
OvertimePay                     20503.65
OtherPay                            12.0
Benefits                             NaN
TotalPay                       105631.85
TotalPayBenefits               105631.85
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8332, dtype: object)
(8333, Id                                           8334
EmployeeName                      RICHARD DERENZI
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  75141.63
OvertimePay                              29067.51
OtherPay                                   1416.0
Benefits                                      NaN
TotalPay                                105625.14
TotalPayBenefits                        105625.14
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8333, dtype: object)
(8334, Id                                8335
EmployeeName        RUVINSON BALDOVINO
JobTitle                DEPUTY SHERIFF
BasePay                       86840.02
OvertimePay                    5596.45
OtherPay                      13186.05
Benefits                           NaN
TotalPay                     105622.52
TotalPayBenefits             105622.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8334, dtype: object)
(8335, Id                                8336
EmployeeName              DUSTIN WHITE
JobTitle            TRANSIT PLANNER IV
BasePay                      105522.08
OvertimePay                        0.0
OtherPay                          95.0
Benefits                           NaN
TotalPay                     105617.08
TotalPayBenefits             105617.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8335, dtype: object)
(8336, Id                                        8337
EmployeeName                      MELVIN SMITH
JobTitle            COUNSELOR, LOG CABIN RANCH
BasePay                               62058.73
OvertimePay                           40848.53
OtherPay                               2708.11
Benefits                                   NaN
TotalPay                             105615.37
TotalPayBenefits                     105615.37
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8336, dtype: object)
(8337, Id                              8338
EmployeeName          MICHELLE BARRY
JobTitle            REGISTERED NURSE
BasePay                     97487.37
OvertimePay                  3812.53
OtherPay                     4315.41
Benefits                         NaN
TotalPay                   105615.31
TotalPayBenefits           105615.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8337, dtype: object)
(8338, Id                              8339
EmployeeName         MONIQUE DEROUEN
JobTitle            REGISTERED NURSE
BasePay                     96008.29
OvertimePay                  3872.13
OtherPay                      5730.4
Benefits                         NaN
TotalPay                   105610.82
TotalPayBenefits           105610.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8338, dtype: object)
(8339, Id                                              8340
EmployeeName                              DANIEL LEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                       120.0
Benefits                                         NaN
TotalPay                                    105609.0
TotalPayBenefits                            105609.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8339, dtype: object)
(8340, Id                                8341
EmployeeName        DOLOTRENNE VITALES
JobTitle              REGISTERED NURSE
BasePay                       101772.7
OvertimePay                        0.0
OtherPay                       3833.53
Benefits                           NaN
TotalPay                     105606.23
TotalPayBenefits             105606.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8340, dtype: object)
(8341, Id                              8342
EmployeeName         BRODERICK ELTON
JobTitle            POLICE OFFICER I
BasePay                    100952.56
OvertimePay                  1409.16
OtherPay                     3241.68
Benefits                         NaN
TotalPay                    105603.4
TotalPayBenefits            105603.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8341, dtype: object)
(8342, Id                            8343
EmployeeName         WILLIAM JAMES
JobTitle            DEPUTY SHERIFF
BasePay                    85972.9
OvertimePay               13656.27
OtherPay                   5972.65
Benefits                       NaN
TotalPay                 105601.82
TotalPayBenefits         105601.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8342, dtype: object)
(8343, Id                                              8344
EmployeeName                        SIMEON VILLALUNA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105444.81
OvertimePay                                      0.0
OtherPay                                      154.15
Benefits                                         NaN
TotalPay                                   105598.96
TotalPayBenefits                           105598.96
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8343, dtype: object)
(8344, Id                               8345
EmployeeName        GEORGE ANTONIOTTI
JobTitle               DEPUTY SHERIFF
BasePay                      86666.32
OvertimePay                   7975.84
OtherPay                     10951.59
Benefits                          NaN
TotalPay                    105593.75
TotalPayBenefits            105593.75
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8344, dtype: object)
(8345, Id                            8346
EmployeeName          SAMUEL VIGIL
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               12722.71
OtherPay                   6022.29
Benefits                       NaN
TotalPay                  105585.0
TotalPayBenefits          105585.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8345, dtype: object)
(8346, Id                                          8347
EmployeeName                  HANNAH STAROSELSKY
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.27
OvertimePay                                  0.0
OtherPay                                 5539.89
Benefits                                     NaN
TotalPay                               105579.16
TotalPayBenefits                       105579.16
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8346, dtype: object)
(8347, Id                             8348
EmployeeName        CARLTON TIAMSON
JobTitle             DEPUTY SHERIFF
BasePay                    86506.01
OvertimePay                 5984.87
OtherPay                   13069.85
Benefits                        NaN
TotalPay                  105560.73
TotalPayBenefits          105560.73
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8347, dtype: object)
(8348, Id                                               8349
EmployeeName                              ALTON CHINN
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.68
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    105554.68
TotalPayBenefits                            105554.68
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8348, dtype: object)
(8349, Id                                               8350
EmployeeName                             KEVIN NGUYEN
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105554.61
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    105554.61
TotalPayBenefits                            105554.61
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8349, dtype: object)
(8350, Id                                               8351
EmployeeName                                ANDY CHOW
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      105554.6
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     105554.6
TotalPayBenefits                             105554.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8350, dtype: object)
(8351, Id                              8352
EmployeeName          RODERICK MILLS
JobTitle            TRANSIT OPERATOR
BasePay                     66442.72
OvertimePay                 35936.35
OtherPay                     3174.29
Benefits                         NaN
TotalPay                   105553.36
TotalPayBenefits           105553.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8351, dtype: object)
(8352, Id                                        8353
EmployeeName                    CHRISTINA CHAN
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.04
OvertimePay                                0.0
OtherPay                                1065.0
Benefits                                   NaN
TotalPay                             105551.04
TotalPayBenefits                     105551.04
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8352, dtype: object)
(8353, Id                              8354
EmployeeName           ANITA ROBERTS
JobTitle            REGISTERED NURSE
BasePay                     94383.36
OvertimePay                  6709.56
OtherPay                     4440.78
Benefits                         NaN
TotalPay                    105533.7
TotalPayBenefits            105533.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8353, dtype: object)
(8354, Id                              8355
EmployeeName           ALENA CARROLL
JobTitle            REGISTERED NURSE
BasePay                     95486.88
OvertimePay                   5852.7
OtherPay                     4193.78
Benefits                         NaN
TotalPay                   105533.36
TotalPayBenefits           105533.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8354, dtype: object)
(8355, Id                              8356
EmployeeName             SHAONA CHEN
JobTitle            REGISTERED NURSE
BasePay                     98865.72
OvertimePay                  2897.03
OtherPay                      3767.4
Benefits                         NaN
TotalPay                   105530.15
TotalPayBenefits           105530.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8355, dtype: object)
(8356, Id                              8357
EmployeeName             AILEEN ALBA
JobTitle            REGISTERED NURSE
BasePay                    100661.62
OvertimePay                   646.32
OtherPay                     4219.83
Benefits                         NaN
TotalPay                   105527.77
TotalPayBenefits           105527.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8356, dtype: object)
(8357, Id                                       8358
EmployeeName                       JOHN ULLOM
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             105526.46
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            105526.46
TotalPayBenefits                    105526.46
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8357, dtype: object)
(8358, Id                               8359
EmployeeName        MAURICE VALENTINE
JobTitle               DEPUTY SHERIFF
BasePay                      86840.01
OvertimePay                  12324.52
OtherPay                      6354.41
Benefits                          NaN
TotalPay                    105518.94
TotalPayBenefits            105518.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8358, dtype: object)
(8359, Id                                              8360
EmployeeName                                MARK LUI
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                       26.44
Benefits                                         NaN
TotalPay                                   105515.44
TotalPayBenefits                           105515.44
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8359, dtype: object)
(8360, Id                              8361
EmployeeName                  DAO LE
JobTitle            REGISTERED NURSE
BasePay                     97358.17
OvertimePay                  4145.04
OtherPay                     3994.44
Benefits                         NaN
TotalPay                   105497.65
TotalPayBenefits           105497.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8360, dtype: object)
(8361, Id                           8362
EmployeeName           JOHN MCGEE
JobTitle              FIREFIGHTER
BasePay                 102924.14
OvertimePay                   0.0
OtherPay                  2566.27
Benefits                      NaN
TotalPay                105490.41
TotalPayBenefits        105490.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8361, dtype: object)
(8362, Id                                              8363
EmployeeName                              LEDA YOUNG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.24
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.24
TotalPayBenefits                           105489.24
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8362, dtype: object)
(8363, Id                                              8364
EmployeeName                          SHEILA MAXWELL
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.23
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.23
TotalPayBenefits                           105489.23
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8363, dtype: object)
(8364, Id                                              8365
EmployeeName                         LYDIA ZAVERUKHA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.16
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.16
TotalPayBenefits                           105489.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8364, dtype: object)
(8365, Id                                              8366
EmployeeName                                KALLY IP
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.06
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.06
TotalPayBenefits                           105489.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8365, dtype: object)
(8366, Id                                              8367
EmployeeName                          VANESSA CONRAD
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.06
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.06
TotalPayBenefits                           105489.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8366, dtype: object)
(8367, Id                                              8368
EmployeeName                           THERESE BURKE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.06
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.06
TotalPayBenefits                           105489.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8367, dtype: object)
(8368, Id                                              8369
EmployeeName                   KOFO EGBEYEMI-DOMINGO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.04
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.04
TotalPayBenefits                           105489.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8368, dtype: object)
(8369, Id                                              8370
EmployeeName                             MARILYN YEH
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.03
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.03
TotalPayBenefits                           105489.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8369, dtype: object)
(8370, Id                                              8371
EmployeeName                             HALA HIJAZI
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.03
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.03
TotalPayBenefits                           105489.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8370, dtype: object)
(8371, Id                                              8372
EmployeeName                          GEORGE ONYEMEM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.02
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.02
TotalPayBenefits                           105489.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8371, dtype: object)
(8372, Id                                              8373
EmployeeName                          LAWRENCE BROWN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.02
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.02
TotalPayBenefits                           105489.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8372, dtype: object)
(8373, Id                                              8374
EmployeeName                              ELAINE GEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.01
TotalPayBenefits                           105489.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8373, dtype: object)
(8374, Id                                              8375
EmployeeName                            BONITA MCGEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.01
TotalPayBenefits                           105489.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8374, dtype: object)
(8375, Id                                              8376
EmployeeName                             WALTON WONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105489.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105489.01
TotalPayBenefits                           105489.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8375, dtype: object)
(8376, Id                                              8377
EmployeeName                          LEIGH PHILLIPS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8376, dtype: object)
(8377, Id                                              8378
EmployeeName                              PAUSON YUN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8377, dtype: object)
(8378, Id                                              8379
EmployeeName                             LEV KUSHNER
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8378, dtype: object)
(8379, Id                                              8380
EmployeeName                       NORBERT DUNHAM JR
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8379, dtype: object)
(8380, Id                                              8381
EmployeeName                   LESLIE LEVITAS-MARTIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8380, dtype: object)
(8381, Id                                              8382
EmployeeName                           MAUREEN BARRY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8381, dtype: object)
(8382, Id                                              8383
EmployeeName                           SEAN MCFADDEN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8382, dtype: object)
(8383, Id                                              8384
EmployeeName                               ANNA WONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8383, dtype: object)
(8384, Id                                              8385
EmployeeName                               JULIE LEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8384, dtype: object)
(8385, Id                                              8386
EmployeeName                               DANA LANG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8385, dtype: object)
(8386, Id                                              8387
EmployeeName                             JOLIE GINES
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8386, dtype: object)
(8387, Id                                              8388
EmployeeName                         JEANNE CHISHOLM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8387, dtype: object)
(8388, Id                                              8389
EmployeeName                        MARY KING-GORWKY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8388, dtype: object)
(8389, Id                                              8390
EmployeeName                        FLORENCE ATANGAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8389, dtype: object)
(8390, Id                                              8391
EmployeeName                          LORENA MARQUEZ
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8390, dtype: object)
(8391, Id                                              8392
EmployeeName                         SALVADOR TANDOC
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8391, dtype: object)
(8392, Id                                              8393
EmployeeName                          MICHELE BORGES
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8392, dtype: object)
(8393, Id                                              8394
EmployeeName                             ROSA RANKIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8393, dtype: object)
(8394, Id                                              8395
EmployeeName                           HOPE KAMIMOTO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8394, dtype: object)
(8395, Id                                              8396
EmployeeName                              WINNIE XIE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8395, dtype: object)
(8396, Id                                              8397
EmployeeName                          BORIS DELEPINE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8396, dtype: object)
(8397, Id                                              8398
EmployeeName                            BOSE ONYEMEM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8397, dtype: object)
(8398, Id                                              8399
EmployeeName                            TERRI AUSTIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8398, dtype: object)
(8399, Id                                              8400
EmployeeName                             ELIAS GIRMA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8399, dtype: object)
(8400, Id                                              8401
EmployeeName                         GARRY BIERINGER
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8400, dtype: object)
(8401, Id                                              8402
EmployeeName                            MIKHAEL HART
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8401, dtype: object)
(8402, Id                                              8403
EmployeeName                          ANTHONY ABABON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8402, dtype: object)
(8403, Id                                              8404
EmployeeName                          IRENE THURSTON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8403, dtype: object)
(8404, Id                                              8405
EmployeeName                               LYNN KHAW
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8404, dtype: object)
(8405, Id                                              8406
EmployeeName                        CHARLES MORIMOTO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8405, dtype: object)
(8406, Id                                              8407
EmployeeName                         NORMAN MARTINEZ
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8406, dtype: object)
(8407, Id                                              8408
EmployeeName                         JOSHUA JENNINGS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8407, dtype: object)
(8408, Id                                              8409
EmployeeName                            OLGA RYERSON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8408, dtype: object)
(8409, Id                                              8410
EmployeeName                         SHEILA ARCELONA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8409, dtype: object)
(8410, Id                                              8411
EmployeeName                     MARIA IYOG-O'MALLEY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8410, dtype: object)
(8411, Id                                   8412
EmployeeName                RUSSELL NAKAI
JobTitle            MATERIALS COORDINATOR
BasePay                          105489.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         105489.0
TotalPayBenefits                 105489.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8411, dtype: object)
(8412, Id                                              8413
EmployeeName                                LILY LEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8412, dtype: object)
(8413, Id                                              8414
EmployeeName                            YVONNE EVANS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8413, dtype: object)
(8414, Id                                              8415
EmployeeName                            WILLIAM WONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8414, dtype: object)
(8415, Id                                              8416
EmployeeName                           DUANE EINHORN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8415, dtype: object)
(8416, Id                                              8417
EmployeeName                            ELEANOR WONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8416, dtype: object)
(8417, Id                                              8418
EmployeeName                          TYRONE NAVARRO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     105489.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    105489.0
TotalPayBenefits                            105489.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8417, dtype: object)
(8418, Id                                              8419
EmployeeName                         JOSEPH SALEM JR
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105488.86
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105488.86
TotalPayBenefits                           105488.86
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8418, dtype: object)
(8419, Id                                8420
EmployeeName                 ADWIN LAU
JobTitle            BUILDING INSPECTOR
BasePay                       100454.9
OvertimePay                        0.0
OtherPay                       5023.89
Benefits                           NaN
TotalPay                     105478.79
TotalPayBenefits             105478.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8419, dtype: object)
(8420, Id                                8421
EmployeeName            ANTHONY AMABLE
JobTitle            PLUMBING INSPECTOR
BasePay                       100454.9
OvertimePay                        0.0
OtherPay                       5023.87
Benefits                           NaN
TotalPay                     105478.77
TotalPayBenefits             105478.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8420, dtype: object)
(8421, Id                                   8422
EmployeeName               FELISHA THOMAS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95882.34
OvertimePay                        2299.3
OtherPay                          7294.48
Benefits                              NaN
TotalPay                        105476.12
TotalPayBenefits                105476.12
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8421, dtype: object)
(8422, Id                                8423
EmployeeName               GREGG OLSON
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                         990.0
Benefits                           NaN
TotalPay                     105476.04
TotalPayBenefits             105476.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8422, dtype: object)
(8423, Id                                        8424
EmployeeName                  LELAND VALENTINE
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                              103955.58
OvertimePay                            1319.59
OtherPay                                 200.0
Benefits                                   NaN
TotalPay                             105475.17
TotalPayBenefits                     105475.17
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8423, dtype: object)
(8424, Id                                              8425
EmployeeName                          CHRISTINA LANE
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73174.06
OvertimePay                                 29478.12
OtherPay                                     2816.78
Benefits                                         NaN
TotalPay                                   105468.96
TotalPayBenefits                           105468.96
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8424, dtype: object)
(8425, Id                              8426
EmployeeName            STANLEY CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     67381.45
OvertimePay                 35292.08
OtherPay                     2791.71
Benefits                         NaN
TotalPay                   105465.24
TotalPayBenefits           105465.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8425, dtype: object)
(8426, Id                                     8427
EmployeeName        CEDRIC ARMSTRONG-HARRIS
JobTitle                   TRANSIT OPERATOR
BasePay                            67307.68
OvertimePay                        34322.36
OtherPay                             3825.4
Benefits                                NaN
TotalPay                          105455.44
TotalPayBenefits                  105455.44
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8426, dtype: object)
(8427, Id                                             8428
EmployeeName                  CARINA GERNTKE-CORSIS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                   105452.72
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  105452.72
TotalPayBenefits                          105452.72
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8427, dtype: object)
(8428, Id                                                 8429
EmployeeName                                 SALLY AUNG
JobTitle            PRINCIPAL PERSONAL PROPERTY AUDITOR
BasePay                                       103969.01
OvertimePay                                         0.0
OtherPay                                         1480.0
Benefits                                            NaN
TotalPay                                      105449.01
TotalPayBenefits                              105449.01
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8428, dtype: object)
(8429, Id                               8430
EmployeeName        THEODORE POLOVINA
JobTitle            POLICE OFFICER II
BasePay                      95600.56
OvertimePay                   2235.58
OtherPay                      7609.03
Benefits                          NaN
TotalPay                    105445.17
TotalPayBenefits            105445.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8429, dtype: object)
(8430, Id                                               8431
EmployeeName                            KENNETH WHITE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       92534.4
OvertimePay                                       0.0
OtherPay                                     12907.17
Benefits                                          NaN
TotalPay                                    105441.57
TotalPayBenefits                            105441.57
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8430, dtype: object)
(8431, Id                              8432
EmployeeName            MICHAEL ROSS
JobTitle            POLICE OFFICER I
BasePay                     94156.25
OvertimePay                  4233.26
OtherPay                     7043.62
Benefits                         NaN
TotalPay                   105433.13
TotalPayBenefits           105433.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8431, dtype: object)
(8432, Id                           8433
EmployeeName           LAURA MOYE
JobTitle               MANAGER II
BasePay                 105429.85
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                105429.85
TotalPayBenefits        105429.85
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8432, dtype: object)
(8433, Id                                               8434
EmployeeName                            LARRY MERRITT
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80895.93
OvertimePay                                  16426.28
OtherPay                                      8098.93
Benefits                                          NaN
TotalPay                                    105421.14
TotalPayBenefits                            105421.14
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8433, dtype: object)
(8434, Id                                      8435
EmployeeName                     JAMES PERRY
JobTitle            TRACK MAINTENANCE WORKER
BasePay                             55824.09
OvertimePay                         42151.78
OtherPay                             7439.83
Benefits                                 NaN
TotalPay                            105415.7
TotalPayBenefits                    105415.7
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8434, dtype: object)
(8435, Id                              8436
EmployeeName               TONY WONG
JobTitle            TRANSIT OPERATOR
BasePay                     68500.86
OvertimePay                 33287.25
OtherPay                     3615.35
Benefits                         NaN
TotalPay                   105403.46
TotalPayBenefits           105403.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8435, dtype: object)
(8436, Id                                         8437
EmployeeName                      JENSEN RHODES
JobTitle            LIEUTENANT, FIRE DEPARTMENT
BasePay                                93066.59
OvertimePay                             1626.13
OtherPay                               10703.77
Benefits                                    NaN
TotalPay                              105396.49
TotalPayBenefits                      105396.49
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 8436, dtype: object)
(8437, Id                                8438
EmployeeName              PAUL ORSBURN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                        898.75
Benefits                           NaN
TotalPay                     105384.76
TotalPayBenefits             105384.76
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8437, dtype: object)
(8438, Id                              8439
EmployeeName               JANNY TAM
JobTitle            REGISTERED NURSE
BasePay                     100488.3
OvertimePay                  3571.42
OtherPay                      1325.0
Benefits                         NaN
TotalPay                   105384.72
TotalPayBenefits           105384.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8438, dtype: object)
(8439, Id                               8440
EmployeeName        VICTORIA APHAILEE
JobTitle             REGISTERED NURSE
BasePay                      84722.55
OvertimePay                   2421.88
OtherPay                     18234.19
Benefits                          NaN
TotalPay                    105378.62
TotalPayBenefits            105378.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8439, dtype: object)
(8440, Id                            8441
EmployeeName          EDGAR GUZMAN
JobTitle            DEPUTY SHERIFF
BasePay                   86631.25
OvertimePay                7631.68
OtherPay                  11115.53
Benefits                       NaN
TotalPay                 105378.46
TotalPayBenefits         105378.46
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8440, dtype: object)
(8441, Id                              8442
EmployeeName             MARY TAYLOR
JobTitle            REGISTERED NURSE
BasePay                      98534.7
OvertimePay                  2271.06
OtherPay                     4572.33
Benefits                         NaN
TotalPay                   105378.09
TotalPayBenefits           105378.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8441, dtype: object)
(8442, Id                                            8443
EmployeeName                         RONDA JOHNSON
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94320.83
OvertimePay                                5527.52
OtherPay                                   5526.01
Benefits                                       NaN
TotalPay                                 105374.36
TotalPayBenefits                         105374.36
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 8442, dtype: object)
(8443, Id                                                   8444
EmployeeName                                  ALICIA SAAM
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103176.03
OvertimePay                                           0.0
OtherPay                                           2195.0
Benefits                                              NaN
TotalPay                                        105371.03
TotalPayBenefits                                105371.03
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8443, dtype: object)
(8444, Id                                 8445
EmployeeName        TIFFANY TIRTADINATA
JobTitle               REGISTERED NURSE
BasePay                        95348.52
OvertimePay                     2897.03
OtherPay                        7125.47
Benefits                            NaN
TotalPay                      105371.02
TotalPayBenefits              105371.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8444, dtype: object)
(8445, Id                           8446
EmployeeName        ESMOND MONROY
JobTitle              FIREFIGHTER
BasePay                  57270.16
OvertimePay              18491.68
OtherPay                 29604.19
Benefits                      NaN
TotalPay                105366.03
TotalPayBenefits        105366.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8445, dtype: object)
(8446, Id                              8447
EmployeeName            JONATHAN LEE
JobTitle            POLICE OFFICER I
BasePay                     95159.22
OvertimePay                  5332.55
OtherPay                     4873.63
Benefits                         NaN
TotalPay                    105365.4
TotalPayBenefits            105365.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8446, dtype: object)
(8447, Id                                                8448
EmployeeName                        LEONARDO CABALLERO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77568.99
OvertimePay                                   21240.67
OtherPay                                       6550.55
Benefits                                           NaN
TotalPay                                     105360.21
TotalPayBenefits                             105360.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8447, dtype: object)
(8448, Id                                              8449
EmployeeName                             WILSON PHAM
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73245.13
OvertimePay                                 27383.44
OtherPay                                      4723.7
Benefits                                         NaN
TotalPay                                   105352.27
TotalPayBenefits                           105352.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8448, dtype: object)
(8449, Id                              8450
EmployeeName              EDWARD ZHU
JobTitle            TRANSIT OPERATOR
BasePay                     64273.59
OvertimePay                 39689.11
OtherPay                     1381.42
Benefits                         NaN
TotalPay                   105344.12
TotalPayBenefits           105344.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8449, dtype: object)
(8450, Id                               8451
EmployeeName        RONALD DELROSARIO
JobTitle                   MANAGER II
BasePay                     105334.33
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    105334.33
TotalPayBenefits            105334.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8450, dtype: object)
(8451, Id                                        8452
EmployeeName                       ROBERT EAST
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                83614.6
OvertimePay                             1529.7
OtherPay                               20186.5
Benefits                                   NaN
TotalPay                              105330.8
TotalPayBenefits                      105330.8
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8451, dtype: object)
(8452, Id                              8453
EmployeeName        CHRISTOPHER LONG
JobTitle            POLICE OFFICER I
BasePay                      93565.3
OvertimePay                  3756.38
OtherPay                     8007.76
Benefits                         NaN
TotalPay                   105329.44
TotalPayBenefits           105329.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8452, dtype: object)
(8453, Id                              8454
EmployeeName         MEGHAN MACAULAY
JobTitle            POLICE OFFICER I
BasePay                     94539.82
OvertimePay                  4598.35
OtherPay                      6187.8
Benefits                         NaN
TotalPay                   105325.97
TotalPayBenefits           105325.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8453, dtype: object)
(8454, Id                              8455
EmployeeName           JOAN MENDIOLA
JobTitle            REGISTERED NURSE
BasePay                    101945.45
OvertimePay                      0.0
OtherPay                     3367.28
Benefits                         NaN
TotalPay                   105312.73
TotalPayBenefits           105312.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8454, dtype: object)
(8455, Id                                               8456
EmployeeName                                CADY WONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       95839.2
OvertimePay                                       0.0
OtherPay                                      9460.62
Benefits                                          NaN
TotalPay                                    105299.82
TotalPayBenefits                            105299.82
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8455, dtype: object)
(8456, Id                                                   8457
EmployeeName                                TERRENCE HONG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.38
OvertimePay                                           0.0
OtherPay                                           2100.0
Benefits                                              NaN
TotalPay                                        105297.38
TotalPayBenefits                                105297.38
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8456, dtype: object)
(8457, Id                                                   8458
EmployeeName                               MOHANNED MALHI
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.43
OvertimePay                                           0.0
OtherPay                                           2095.0
Benefits                                              NaN
TotalPay                                        105292.43
TotalPayBenefits                                105292.43
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8457, dtype: object)
(8458, Id                              8459
EmployeeName           ANTONIO LANDI
JobTitle            POLICE OFFICER I
BasePay                     91637.38
OvertimePay                  6458.13
OtherPay                     7182.17
Benefits                         NaN
TotalPay                   105277.68
TotalPayBenefits           105277.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8458, dtype: object)
(8459, Id                                             8460
EmployeeName                             CELIA WANG
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                    98771.48
OvertimePay                                     0.0
OtherPay                                    6489.65
Benefits                                        NaN
TotalPay                                  105261.13
TotalPayBenefits                          105261.13
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8459, dtype: object)
(8460, Id                              8461
EmployeeName            MARK LACROIX
JobTitle            TRANSIT OPERATOR
BasePay                     68215.43
OvertimePay                 33556.07
OtherPay                     3482.27
Benefits                         NaN
TotalPay                   105253.77
TotalPayBenefits           105253.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8460, dtype: object)
(8461, Id                                 8462
EmployeeName            RATANA RASAVONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72490.4
OvertimePay                    20738.81
OtherPay                       12021.09
Benefits                            NaN
TotalPay                       105250.3
TotalPayBenefits               105250.3
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8461, dtype: object)
(8462, Id                                 8463
EmployeeName            ROBERT ERICKSON
JobTitle            AIRPORT ELECTRICIAN
BasePay                        96631.35
OvertimePay                     6481.22
OtherPay                         2130.0
Benefits                            NaN
TotalPay                      105242.57
TotalPayBenefits              105242.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8462, dtype: object)
(8463, Id                              8464
EmployeeName        LINDA SAN MIGUEL
JobTitle            REGISTERED NURSE
BasePay                    104337.77
OvertimePay                    648.6
OtherPay                       250.0
Benefits                         NaN
TotalPay                   105236.37
TotalPayBenefits           105236.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8463, dtype: object)
(8464, Id                                       8465
EmployeeName                      LYDIA PONCE
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64764.39
OvertimePay                          35049.89
OtherPay                              5421.22
Benefits                                  NaN
TotalPay                             105235.5
TotalPayBenefits                     105235.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8464, dtype: object)
(8465, Id                                               8466
EmployeeName                             ALBERT HUANG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       90072.0
OvertimePay                                  11137.25
OtherPay                                       4024.4
Benefits                                          NaN
TotalPay                                    105233.65
TotalPayBenefits                            105233.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8465, dtype: object)
(8466, Id                                 8467
EmployeeName        MICHELLE ESTANISLAO
JobTitle               REGISTERED NURSE
BasePay                        94471.76
OvertimePay                     5822.33
OtherPay                        4933.06
Benefits                            NaN
TotalPay                      105227.15
TotalPayBenefits              105227.15
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8466, dtype: object)
(8467, Id                                       8468
EmployeeName             DAVID CHUDZINSKI SR.
JobTitle            TRANSIT POWER LINE WORKER
BasePay                              85865.19
OvertimePay                          11767.41
OtherPay                              7593.31
Benefits                                  NaN
TotalPay                            105225.91
TotalPayBenefits                    105225.91
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8467, dtype: object)
(8468, Id                           8469
EmployeeName        ALBINO LUCERO
JobTitle              ELECTRICIAN
BasePay                   87122.4
OvertimePay              15940.31
OtherPay                   2160.0
Benefits                      NaN
TotalPay                105222.71
TotalPayBenefits        105222.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8468, dtype: object)
(8469, Id                                                               8470
EmployeeName                                           CHARLES LITTLE
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      85859.27
OvertimePay                                                    9049.1
OtherPay                                                      10309.4
Benefits                                                          NaN
TotalPay                                                    105217.77
TotalPayBenefits                                            105217.77
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8469, dtype: object)
(8470, Id                                8471
EmployeeName             JOHN HINCHION
JobTitle            BUILDING INSPECTOR
BasePay                      102303.44
OvertimePay                        0.0
OtherPay                        2909.2
Benefits                           NaN
TotalPay                     105212.64
TotalPayBenefits             105212.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8470, dtype: object)
(8471, Id                                               8472
EmployeeName                         PATROCINIO MENIL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       75215.0
OvertimePay                                  14989.56
OtherPay                                     15006.97
Benefits                                          NaN
TotalPay                                    105211.53
TotalPayBenefits                            105211.53
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8471, dtype: object)
(8472, Id                              8473
EmployeeName         SANDYLYN RAGUDO
JobTitle            REGISTERED NURSE
BasePay                     93301.29
OvertimePay                  5517.24
OtherPay                     6385.79
Benefits                         NaN
TotalPay                   105204.32
TotalPayBenefits           105204.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8472, dtype: object)
(8473, Id                            8474
EmployeeName        KEVIN NAKAGAWA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                9005.67
OtherPay                    9352.6
Benefits                       NaN
TotalPay                 105198.28
TotalPayBenefits         105198.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8473, dtype: object)
(8474, Id                              8475
EmployeeName        THOMAS DEWITT JR
JobTitle                 ELECTRICIAN
BasePay                     87122.56
OvertimePay                 17916.36
OtherPay                      157.88
Benefits                         NaN
TotalPay                    105196.8
TotalPayBenefits            105196.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8474, dtype: object)
(8475, Id                                                     8476
EmployeeName                                 LISA ELEKWACHI
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87185.95
OvertimePay                                         8895.26
OtherPay                                            9106.21
Benefits                                                NaN
TotalPay                                          105187.42
TotalPayBenefits                                  105187.42
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8475, dtype: object)
(8476, Id                                8477
EmployeeName               JAIME VALLE
JobTitle            BUILDING INSPECTOR
BasePay                      101624.16
OvertimePay                        0.0
OtherPay                       3556.22
Benefits                           NaN
TotalPay                     105180.38
TotalPayBenefits             105180.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8476, dtype: object)
(8477, Id                                        8478
EmployeeName                       DIRK KELLUM
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               104486.1
OvertimePay                                0.0
OtherPay                                 685.0
Benefits                                   NaN
TotalPay                              105171.1
TotalPayBenefits                      105171.1
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8477, dtype: object)
(8478, Id                                8479
EmployeeName                  JOHN YAM
JobTitle            BUILDING INSPECTOR
BasePay                       101268.3
OvertimePay                     351.16
OtherPay                       3543.34
Benefits                           NaN
TotalPay                      105162.8
TotalPayBenefits              105162.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8478, dtype: object)
(8479, Id                                8480
EmployeeName               CYNTHIA HUI
JobTitle            ASSOCIATE ENGINEER
BasePay                       105070.1
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      105160.1
TotalPayBenefits              105160.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8479, dtype: object)
(8480, Id                              8481
EmployeeName           JAMES JOHNSON
JobTitle            POLICE OFFICER I
BasePay                      93260.5
OvertimePay                  4665.05
OtherPay                     7201.86
Benefits                         NaN
TotalPay                   105127.41
TotalPayBenefits           105127.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8480, dtype: object)
(8481, Id                                       8482
EmployeeName                    KAREN HALLETT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             105126.22
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            105126.22
TotalPayBenefits                    105126.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8481, dtype: object)
(8482, Id                                       8483
EmployeeName                     PAUL BRENNAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             105126.13
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            105126.13
TotalPayBenefits                    105126.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8482, dtype: object)
(8483, Id                                   8484
EmployeeName                CORINNA CHUEY
JobTitle            IS ENGINEER - JOURNEY
BasePay                         101444.56
OvertimePay                           0.0
OtherPay                          3663.27
Benefits                              NaN
TotalPay                        105107.83
TotalPayBenefits                105107.83
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8483, dtype: object)
(8484, Id                                              8485
EmployeeName                           JEFFREY LEONG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      85269.0
OvertimePay                                      0.0
OtherPay                                    19833.44
Benefits                                         NaN
TotalPay                                   105102.44
TotalPayBenefits                           105102.44
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8484, dtype: object)
(8485, Id                               8486
EmployeeName         MEAGHAN MCMILTON
JobTitle            POLICE OFFICER II
BasePay                      96052.07
OvertimePay                   2278.67
OtherPay                      6770.39
Benefits                          NaN
TotalPay                    105101.13
TotalPayBenefits            105101.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8485, dtype: object)
(8486, Id                                               8487
EmployeeName                            WESLEY PATTON
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                     105099.13
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    105099.13
TotalPayBenefits                            105099.13
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8486, dtype: object)
(8487, Id                              8488
EmployeeName          DARRELL RAHMAN
JobTitle            TRANSIT OPERATOR
BasePay                     66961.69
OvertimePay                 35894.74
OtherPay                     2236.75
Benefits                         NaN
TotalPay                   105093.18
TotalPayBenefits           105093.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8487, dtype: object)
(8488, Id                                               8489
EmployeeName                              THOMAS REID
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96684.81
OvertimePay                                   2056.27
OtherPay                                      6349.81
Benefits                                          NaN
TotalPay                                    105090.89
TotalPayBenefits                            105090.89
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8488, dtype: object)
(8489, Id                                    8490
EmployeeName        JENNIFER BROWNE SNYDER
JobTitle                       MANAGER III
BasePay                           105085.6
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          105085.6
TotalPayBenefits                  105085.6
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8489, dtype: object)
(8490, Id                                               8491
EmployeeName                             JOSEPH MOORE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      86011.01
OvertimePay                                  10743.39
OtherPay                                      8323.19
Benefits                                          NaN
TotalPay                                    105077.59
TotalPayBenefits                            105077.59
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8490, dtype: object)
(8491, Id                              8492
EmployeeName           GAYLAND SMITH
JobTitle            TRANSIT OPERATOR
BasePay                     66395.21
OvertimePay                 37051.39
OtherPay                     1626.53
Benefits                         NaN
TotalPay                   105073.13
TotalPayBenefits           105073.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8491, dtype: object)
(8492, Id                              8493
EmployeeName          DEBORAH CUEVAS
JobTitle            REGISTERED NURSE
BasePay                     104626.7
OvertimePay                      0.0
OtherPay                       442.0
Benefits                         NaN
TotalPay                    105068.7
TotalPayBenefits            105068.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8492, dtype: object)
(8493, Id                              8494
EmployeeName             PAUL WILGUS
JobTitle            POLICE OFFICER I
BasePay                     96658.35
OvertimePay                  4871.54
OtherPay                     3537.94
Benefits                         NaN
TotalPay                   105067.83
TotalPayBenefits           105067.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8493, dtype: object)
(8494, Id                                   8495
EmployeeName           RONALD STO-DOMINGO
JobTitle            IS ENGINEER - JOURNEY
BasePay                         105062.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        105062.51
TotalPayBenefits                105062.51
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8494, dtype: object)
(8495, Id                            8496
EmployeeName        MICHAEL HANSON
JobTitle                MANAGER II
BasePay                  105059.31
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 105059.31
TotalPayBenefits         105059.31
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8495, dtype: object)
(8496, Id                                              8497
EmployeeName                            SUZANNE WANG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    105057.15
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   105057.15
TotalPayBenefits                           105057.15
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8496, dtype: object)
(8497, Id                             8498
EmployeeName            ROY TRIPPLE
JobTitle            UTILITY PLUMBER
BasePay                    83124.42
OvertimePay                11273.58
OtherPay                   10655.38
Benefits                        NaN
TotalPay                  105053.38
TotalPayBenefits          105053.38
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8497, dtype: object)
(8498, Id                                      8499
EmployeeName                   DAVID CAMERON
JobTitle            WATER OPERATIONS ANALYST
BasePay                            105045.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           105045.03
TotalPayBenefits                   105045.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8498, dtype: object)
(8499, Id                                 8500
EmployeeName                STEVEN SHEA
JobTitle            AIRPORT ELECTRICIAN
BasePay                        95275.86
OvertimePay                     6517.56
OtherPay                         3236.1
Benefits                            NaN
TotalPay                      105029.52
TotalPayBenefits              105029.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8499, dtype: object)
(8500, Id                                                  8501
EmployeeName                               KOA PICKERING
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                        104209.21
OvertimePay                                          0.0
OtherPay                                          818.77
Benefits                                             NaN
TotalPay                                       105027.98
TotalPayBenefits                               105027.98
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 8500, dtype: object)
(8501, Id                                      8502
EmployeeName                    HAROLD HAWES
JobTitle            PRINCIPAL CIVIL ENGINEER
BasePay                             95076.71
OvertimePay                              0.0
OtherPay                             9948.73
Benefits                                 NaN
TotalPay                           105025.44
TotalPayBenefits                   105025.44
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8501, dtype: object)
(8502, Id                                               8503
EmployeeName                             ANDRE BISHOP
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.02
OvertimePay                                  17678.26
OtherPay                                      7524.05
Benefits                                          NaN
TotalPay                                    105022.33
TotalPayBenefits                            105022.33
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8502, dtype: object)
(8503, Id                              8504
EmployeeName         GEORGANN BUSTIN
JobTitle            REGISTERED NURSE
BasePay                    104429.79
OvertimePay                      0.0
OtherPay                      591.84
Benefits                         NaN
TotalPay                   105021.63
TotalPayBenefits           105021.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8503, dtype: object)
(8504, Id                               8505
EmployeeName             LARA FUENTES
JobTitle            POLICE OFFICER II
BasePay                      95626.91
OvertimePay                   5298.42
OtherPay                      4093.88
Benefits                          NaN
TotalPay                    105019.21
TotalPayBenefits            105019.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8504, dtype: object)
(8505, Id                                                8506
EmployeeName                                KHALIL ALI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.39
OvertimePay                                   25911.18
OtherPay                                       1525.44
Benefits                                           NaN
TotalPay                                     105017.01
TotalPayBenefits                             105017.01
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8505, dtype: object)
(8506, Id                                    8507
EmployeeName               LOVELL COVERSON
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.08
OvertimePay                       12198.59
OtherPay                            2150.8
Benefits                               NaN
TotalPay                         105013.47
TotalPayBenefits                 105013.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8506, dtype: object)
(8507, Id                                 8508
EmployeeName                  KYIN FONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72198.1
OvertimePay                    18268.73
OtherPay                       14542.44
Benefits                            NaN
TotalPay                      105009.27
TotalPayBenefits              105009.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8507, dtype: object)
(8508, Id                                                        8509
EmployeeName                                     STEVE ROTONDO
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.05
OvertimePay                                           19213.66
OtherPay                                               5957.75
Benefits                                                   NaN
TotalPay                                             104991.46
TotalPayBenefits                                     104991.46
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 8508, dtype: object)
(8509, Id                              8510
EmployeeName              MARIO CHOI
JobTitle            REGISTERED NURSE
BasePay                     98322.85
OvertimePay                   4520.7
OtherPay                     2147.62
Benefits                         NaN
TotalPay                   104991.17
TotalPayBenefits           104991.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8509, dtype: object)
(8510, Id                            8511
EmployeeName           BRENDA SOSA
JobTitle            DEPUTY SHERIFF
BasePay                   84961.27
OvertimePay                7119.31
OtherPay                   12904.0
Benefits                       NaN
TotalPay                 104984.58
TotalPayBenefits         104984.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8510, dtype: object)
(8511, Id                                8512
EmployeeName                THOMAS ZEE
JobTitle            TRANSIT SUPERVISOR
BasePay                       73241.76
OvertimePay                   26669.07
OtherPay                       5071.77
Benefits                           NaN
TotalPay                      104982.6
TotalPayBenefits              104982.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8511, dtype: object)
(8512, Id                                8513
EmployeeName              KEVIN MCHUGH
JobTitle            BUILDING INSPECTOR
BasePay                       98624.75
OvertimePay                    1418.33
OtherPay                       4932.33
Benefits                           NaN
TotalPay                     104975.41
TotalPayBenefits             104975.41
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8512, dtype: object)
(8513, Id                                               8514
EmployeeName                           CRAIG LOEFFLER
JobTitle            HEATING AND VENTILATING INSPECTOR
BasePay                                      100861.6
OvertimePay                                   3614.55
OtherPay                                        496.8
Benefits                                          NaN
TotalPay                                    104972.95
TotalPayBenefits                            104972.95
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8513, dtype: object)
(8514, Id                                               8515
EmployeeName                            GERARD ROYBAL
JobTitle            MARITIME MARKETING REPRESENTATIVE
BasePay                                     104968.01
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    104968.01
TotalPayBenefits                            104968.01
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8514, dtype: object)
(8515, Id                                               8516
EmployeeName                           MICHAEL NERNEY
JobTitle            MARITIME MARKETING REPRESENTATIVE
BasePay                                      104968.0
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     104968.0
TotalPayBenefits                             104968.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8515, dtype: object)
(8516, Id                                        8517
EmployeeName                ROBERT DIEPENBROEK
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               81369.43
OvertimePay                           15519.43
OtherPay                               8068.59
Benefits                                   NaN
TotalPay                             104957.45
TotalPayBenefits                     104957.45
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8516, dtype: object)
(8517, Id                                                              8518
EmployeeName                                            THOMAS SMITH
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                      86056.0
OvertimePay                                                   9676.2
OtherPay                                                     9217.16
Benefits                                                         NaN
TotalPay                                                   104949.36
TotalPayBenefits                                           104949.36
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 8517, dtype: object)
(8518, Id                              8519
EmployeeName             OLIVER HACK
JobTitle            MAYORAL STAFF XV
BasePay                    103859.94
OvertimePay                      0.0
OtherPay                     1086.73
Benefits                         NaN
TotalPay                   104946.67
TotalPayBenefits           104946.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8518, dtype: object)
(8519, Id                              8520
EmployeeName              JNELL GRAY
JobTitle            REGISTERED NURSE
BasePay                    100511.24
OvertimePay                      0.0
OtherPay                     4426.09
Benefits                         NaN
TotalPay                   104937.33
TotalPayBenefits           104937.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8519, dtype: object)
(8520, Id                              8521
EmployeeName                KEN WONG
JobTitle            TRANSIT OPERATOR
BasePay                     67141.76
OvertimePay                 36175.21
OtherPay                     1616.58
Benefits                         NaN
TotalPay                   104933.55
TotalPayBenefits           104933.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8520, dtype: object)
(8521, Id                                       8522
EmployeeName                   BRIAN BUCKELEW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             104925.97
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            104925.97
TotalPayBenefits                    104925.97
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8521, dtype: object)
(8522, Id                              8523
EmployeeName         F GABRIEL PEREZ
JobTitle            POLICE OFFICER I
BasePay                     96537.55
OvertimePay                  2525.79
OtherPay                     5845.57
Benefits                         NaN
TotalPay                   104908.91
TotalPayBenefits           104908.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8522, dtype: object)
(8523, Id                                   8524
EmployeeName                  DWIGHT GUNN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.81
OvertimePay                       2414.15
OtherPay                          6610.84
Benefits                              NaN
TotalPay                         104906.8
TotalPayBenefits                 104906.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8523, dtype: object)
(8524, Id                                8525
EmployeeName        CHINELO ONWUAZOMBE
JobTitle              REGISTERED NURSE
BasePay                        94411.5
OvertimePay                    6568.13
OtherPay                        3925.1
Benefits                           NaN
TotalPay                     104904.73
TotalPayBenefits             104904.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8524, dtype: object)
(8525, Id                            8526
EmployeeName        DAVID CALDERON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                5209.24
OtherPay                  12855.23
Benefits                       NaN
TotalPay                 104904.47
TotalPayBenefits         104904.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8525, dtype: object)
(8526, Id                                       8527
EmployeeName                   RAKSHA GOSWAMI
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64764.39
OvertimePay                          34255.81
OtherPay                              5880.93
Benefits                                  NaN
TotalPay                            104901.13
TotalPayBenefits                    104901.13
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8526, dtype: object)
(8527, Id                                             8528
EmployeeName                            LISA GIBSON
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   104890.03
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  104890.03
TotalPayBenefits                          104890.03
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8527, dtype: object)
(8528, Id                              8529
EmployeeName        WILLIAM BENJAMIN
JobTitle            REGISTERED NURSE
BasePay                     95515.73
OvertimePay                   2925.3
OtherPay                     6444.77
Benefits                         NaN
TotalPay                    104885.8
TotalPayBenefits            104885.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8528, dtype: object)
(8529, Id                                     8530
EmployeeName                  JULES FRIEDEL
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.01
OvertimePay                         28090.4
OtherPay                              320.0
Benefits                                NaN
TotalPay                          104884.41
TotalPayBenefits                  104884.41
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8529, dtype: object)
(8530, Id                              8531
EmployeeName              ALEX HUANG
JobTitle            TRANSIT OPERATOR
BasePay                     65612.65
OvertimePay                 38625.09
OtherPay                      641.75
Benefits                         NaN
TotalPay                   104879.49
TotalPayBenefits           104879.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8530, dtype: object)
(8531, Id                                       8532
EmployeeName                   ROBERT SANCHEZ
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               92875.2
OvertimePay                          11238.43
OtherPay                                760.0
Benefits                                  NaN
TotalPay                            104873.63
TotalPayBenefits                    104873.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8531, dtype: object)
(8532, Id                                  8533
EmployeeName                JAMES LEHANE
JobTitle            PLUMBER SUPERVISOR I
BasePay                        101233.61
OvertimePay                          0.0
OtherPay                         3639.11
Benefits                             NaN
TotalPay                       104872.72
TotalPayBenefits               104872.72
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8532, dtype: object)
(8533, Id                                          8534
EmployeeName                       PHIL MAROVICH
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                  99762.6
OvertimePay                                  0.0
OtherPay                                 5098.01
Benefits                                     NaN
TotalPay                               104860.61
TotalPayBenefits                       104860.61
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8533, dtype: object)
(8534, Id                              8535
EmployeeName             JOHNNY CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     65656.91
OvertimePay                 37284.67
OtherPay                     1912.06
Benefits                         NaN
TotalPay                   104853.64
TotalPayBenefits           104853.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8534, dtype: object)
(8535, Id                                        8536
EmployeeName                 BONNIE RICHARDSON
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               103971.4
OvertimePay                                0.0
OtherPay                                874.01
Benefits                                   NaN
TotalPay                             104845.41
TotalPayBenefits                     104845.41
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8535, dtype: object)
(8536, Id                                     8537
EmployeeName                   MALEA CHAVEZ
JobTitle            COURT STAFF ATTORNEY II
BasePay                             87414.2
OvertimePay                             0.0
OtherPay                           17427.44
Benefits                                NaN
TotalPay                          104841.64
TotalPayBenefits                  104841.64
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8536, dtype: object)
(8537, Id                            8538
EmployeeName         GORDON ANALLA
JobTitle            SAFETY ANALYST
BasePay                  104746.55
OvertimePay                    0.0
OtherPay                      90.0
Benefits                       NaN
TotalPay                 104836.55
TotalPayBenefits         104836.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8537, dtype: object)
(8538, Id                             8539
EmployeeName        STEPHANIE QUOCK
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 6454.22
OtherPay                   11541.38
Benefits                        NaN
TotalPay                   104835.6
TotalPayBenefits           104835.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8538, dtype: object)
(8539, Id                                   8540
EmployeeName        SANTOS REYES SANDOVAL
JobTitle                 TRANSIT OPERATOR
BasePay                          65628.58
OvertimePay                       38034.6
OtherPay                          1170.62
Benefits                              NaN
TotalPay                         104833.8
TotalPayBenefits                 104833.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8539, dtype: object)
(8540, Id                                8541
EmployeeName                 WYMAN LEE
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                        322.24
Benefits                           NaN
TotalPay                     104808.24
TotalPayBenefits             104808.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8540, dtype: object)
(8541, Id                              8542
EmployeeName        ANDRE RICHARDSON
JobTitle            TRANSIT OPERATOR
BasePay                     64637.59
OvertimePay                 37428.63
OtherPay                     2731.81
Benefits                         NaN
TotalPay                   104798.03
TotalPayBenefits           104798.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8541, dtype: object)
(8542, Id                              8543
EmployeeName        RONALD MIRKOVICH
JobTitle             UTILITY PLUMBER
BasePay                      90461.7
OvertimePay                  3371.85
OtherPay                    10959.84
Benefits                         NaN
TotalPay                   104793.39
TotalPayBenefits           104793.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8542, dtype: object)
(8543, Id                              8544
EmployeeName               JUDE YUEN
JobTitle            REGISTERED NURSE
BasePay                     98084.54
OvertimePay                  1005.33
OtherPay                     5689.54
Benefits                         NaN
TotalPay                   104779.41
TotalPayBenefits           104779.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8543, dtype: object)
(8544, Id                                               8545
EmployeeName                            JAMES MALONEY
JobTitle            MARITIME MARKETING REPRESENTATIVE
BasePay                                      104775.0
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     104775.0
TotalPayBenefits                             104775.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8544, dtype: object)
(8545, Id                           8546
EmployeeName         CATHY SKATES
JobTitle            SPECIAL NURSE
BasePay                  92941.55
OvertimePay                8963.8
OtherPay                  2858.68
Benefits                      NaN
TotalPay                104764.03
TotalPayBenefits        104764.03
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8545, dtype: object)
(8546, Id                                                               8547
EmployeeName                                             TERRY LINDOW
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                       89854.6
OvertimePay                                                       0.0
OtherPay                                                     14903.85
Benefits                                                          NaN
TotalPay                                                    104758.45
TotalPayBenefits                                            104758.45
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8546, dtype: object)
(8547, Id                            8548
EmployeeName        JEFFERY MORENO
JobTitle               FIREFIGHTER
BasePay                    57428.1
OvertimePay               11275.34
OtherPay                  36049.63
Benefits                       NaN
TotalPay                 104753.07
TotalPayBenefits         104753.07
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8547, dtype: object)
(8548, Id                                8549
EmployeeName                RONALD YEE
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                        261.82
Benefits                           NaN
TotalPay                     104747.85
TotalPayBenefits             104747.85
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8548, dtype: object)
(8549, Id                                       8550
EmployeeName                      LATEEF GRAY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             104738.27
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            104738.27
TotalPayBenefits                    104738.27
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8549, dtype: object)
(8550, Id                                       8551
EmployeeName                       LISA ENDER
JobTitle            SENIOR PHYSICAL THERAPIST
BasePay                             103004.41
OvertimePay                               0.0
OtherPay                               1724.6
Benefits                                  NaN
TotalPay                            104729.01
TotalPayBenefits                    104729.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8550, dtype: object)
(8551, Id                                8552
EmployeeName               SIMON YEUNG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                        242.86
Benefits                           NaN
TotalPay                      104728.9
TotalPayBenefits              104728.9
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8551, dtype: object)
(8552, Id                                                   8553
EmployeeName                                  TIMOTHY ONG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.17
OvertimePay                                           0.0
OtherPay                                           1530.0
Benefits                                              NaN
TotalPay                                        104727.17
TotalPayBenefits                                104727.17
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8552, dtype: object)
(8553, Id                                                  8554
EmployeeName                                 JOHN DENNIS
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                        104486.05
OvertimePay                                          0.0
OtherPay                                          238.79
Benefits                                             NaN
TotalPay                                       104724.84
TotalPayBenefits                               104724.84
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 8553, dtype: object)
(8554, Id                                   8555
EmployeeName              PATRICK FREEMAN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.82
OvertimePay                       3689.94
OtherPay                          5152.86
Benefits                              NaN
TotalPay                        104724.62
TotalPayBenefits                104724.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8554, dtype: object)
(8555, Id                                  8556
EmployeeName                    AN HOANG
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                          9520.3
Benefits                             NaN
TotalPay                        104723.3
TotalPayBenefits                104723.3
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8555, dtype: object)
(8556, Id                              8557
EmployeeName        KEVIN CARLOMAGNO
JobTitle                     PLUMBER
BasePay                      88281.9
OvertimePay                 12784.55
OtherPay                      3648.7
Benefits                         NaN
TotalPay                   104715.15
TotalPayBenefits           104715.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8556, dtype: object)
(8557, Id                               8558
EmployeeName        CONNIE LOVE-MILES
JobTitle             REGISTERED NURSE
BasePay                     101867.47
OvertimePay                    2068.2
OtherPay                       769.92
Benefits                          NaN
TotalPay                    104705.59
TotalPayBenefits            104705.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8557, dtype: object)
(8558, Id                              8559
EmployeeName             DAVID EVANS
JobTitle            TRANSIT OPERATOR
BasePay                     67443.47
OvertimePay                 35813.27
OtherPay                      1433.1
Benefits                         NaN
TotalPay                   104689.84
TotalPayBenefits           104689.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8558, dtype: object)
(8559, Id                              8560
EmployeeName             LINDA TAING
JobTitle            REGISTERED NURSE
BasePay                     95390.28
OvertimePay                  4788.65
OtherPay                     4509.59
Benefits                         NaN
TotalPay                   104688.52
TotalPayBenefits           104688.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8559, dtype: object)
(8560, Id                            8561
EmployeeName         BRICEN GRAHAM
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6586.89
OtherPay                  11252.47
Benefits                       NaN
TotalPay                 104679.36
TotalPayBenefits         104679.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8560, dtype: object)
(8561, Id                                                    8562
EmployeeName                                 JANICE MADSEN
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           92298.13
OvertimePay                                        1504.92
OtherPay                                          10871.22
Benefits                                               NaN
TotalPay                                         104674.27
TotalPayBenefits                                 104674.27
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 8561, dtype: object)
(8562, Id                                               8563
EmployeeName                        CELSO BALLESTEROS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                   5246.65
OtherPay                                       422.92
Benefits                                          NaN
TotalPay                                    104669.57
TotalPayBenefits                            104669.57
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8562, dtype: object)
(8563, Id                                8564
EmployeeName                LISA CURRY
JobTitle            POLICE OFFICER III
BasePay                      103817.66
OvertimePay                        0.0
OtherPay                        846.33
Benefits                           NaN
TotalPay                     104663.99
TotalPayBenefits             104663.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8563, dtype: object)
(8564, Id                                 8565
EmployeeName           GREG ROMELFANGER
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.01
OvertimePay                         0.0
OtherPay                        9085.02
Benefits                            NaN
TotalPay                      104661.03
TotalPayBenefits              104661.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8564, dtype: object)
(8565, Id                                        8566
EmployeeName                     MICHAEL JAZUK
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               76274.99
OvertimePay                           14202.24
OtherPay                              14182.15
Benefits                                   NaN
TotalPay                             104659.38
TotalPayBenefits                     104659.38
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8565, dtype: object)
(8566, Id                              8567
EmployeeName         SAMUEL EVERSLEY
JobTitle            TRANSIT OPERATOR
BasePay                      63405.4
OvertimePay                 40149.62
OtherPay                     1098.83
Benefits                         NaN
TotalPay                   104653.85
TotalPayBenefits           104653.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8566, dtype: object)
(8567, Id                                           8568
EmployeeName                          JAMES ODOMS
JobTitle            TRANSIT OPERATIONS SPECIALIST
BasePay                                  91704.97
OvertimePay                               5416.47
OtherPay                                  7507.44
Benefits                                      NaN
TotalPay                                104628.88
TotalPayBenefits                        104628.88
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8567, dtype: object)
(8568, Id                            8569
EmployeeName          ROLAND ZANIE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                8361.22
OtherPay                   9425.13
Benefits                       NaN
TotalPay                 104626.35
TotalPayBenefits         104626.35
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8568, dtype: object)
(8569, Id                                                8570
EmployeeName                              VINCENT GONG
JobTitle            COURT COMPUTER SYSTEMS ENGINEER II
BasePay                                       103987.6
OvertimePay                                        0.0
OtherPay                                         624.0
Benefits                                           NaN
TotalPay                                      104611.6
TotalPayBenefits                              104611.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8569, dtype: object)
(8570, Id                                                 8571
EmployeeName                            WILLIAM KNOWLES
JobTitle            COURT COMPUTER APPLICATIONS ANALYST
BasePay                                        103987.6
OvertimePay                                         0.0
OtherPay                                          624.0
Benefits                                            NaN
TotalPay                                       104611.6
TotalPayBenefits                               104611.6
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8570, dtype: object)
(8571, Id                                            8572
EmployeeName                        MARO MOROHOSHI
JobTitle            SENIOR HUMAN RESOURCES ANALYST
BasePay                                   103987.6
OvertimePay                                    0.0
OtherPay                                     624.0
Benefits                                       NaN
TotalPay                                  104611.6
TotalPayBenefits                          104611.6
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 8571, dtype: object)
(8572, Id                                                8573
EmployeeName                               MATTHEW COX
JobTitle            COURT COMPUTER SYSTEMS ENGINEER II
BasePay                                       103987.6
OvertimePay                                        0.0
OtherPay                                         624.0
Benefits                                           NaN
TotalPay                                      104611.6
TotalPayBenefits                              104611.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8572, dtype: object)
(8573, Id                                                8574
EmployeeName                                 DUANE FEY
JobTitle            COURT COMPUTER SYSTEMS ENGINEER II
BasePay                                       103987.6
OvertimePay                                        0.0
OtherPay                                         624.0
Benefits                                           NaN
TotalPay                                      104611.6
TotalPayBenefits                              104611.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8573, dtype: object)
(8574, Id                            8575
EmployeeName        KIMBERLY SILVA
JobTitle             SPECIAL NURSE
BasePay                    99361.3
OvertimePay                3531.26
OtherPay                   1697.73
Benefits                       NaN
TotalPay                 104590.29
TotalPayBenefits         104590.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8574, dtype: object)
(8575, Id                                                8576
EmployeeName                          MICHAEL GOUDLOCK
JobTitle            COURT COMPUTER SYSTEMS ENGINEER II
BasePay                                      103981.46
OvertimePay                                        0.0
OtherPay                                         600.0
Benefits                                           NaN
TotalPay                                     104581.46
TotalPayBenefits                             104581.46
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8575, dtype: object)
(8576, Id                              8577
EmployeeName           KURT MACAULAY
JobTitle            POLICE OFFICER I
BasePay                     93439.54
OvertimePay                  3913.87
OtherPay                      7225.3
Benefits                         NaN
TotalPay                   104578.71
TotalPayBenefits           104578.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8576, dtype: object)
(8577, Id                                8578
EmployeeName         GERALDINE DE LEON
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                     104576.05
TotalPayBenefits             104576.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8577, dtype: object)
(8578, Id                                8579
EmployeeName              PHILIP LOUIE
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                     104576.05
TotalPayBenefits             104576.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8578, dtype: object)
(8579, Id                                8580
EmployeeName               RICHARD CHO
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      104576.0
TotalPayBenefits              104576.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8579, dtype: object)
(8580, Id                                8581
EmployeeName                TONY YOUNG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      104576.0
TotalPayBenefits              104576.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8580, dtype: object)
(8581, Id                                8582
EmployeeName               TABIN CHUNG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      104576.0
TotalPayBenefits              104576.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8581, dtype: object)
(8582, Id                                8583
EmployeeName               KIN WAH LAU
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.08
OvertimePay                        0.0
OtherPay                         78.05
Benefits                           NaN
TotalPay                     104564.13
TotalPayBenefits             104564.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8582, dtype: object)
(8583, Id                           8584
EmployeeName          LAURA BEGIN
JobTitle            SPECIAL NURSE
BasePay                  97732.83
OvertimePay               4050.19
OtherPay                  2778.02
Benefits                      NaN
TotalPay                104561.04
TotalPayBenefits        104561.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8583, dtype: object)
(8584, Id                                8585
EmployeeName            KENNETH CANEDO
JobTitle            POLICE OFFICER III
BasePay                       94376.37
OvertimePay                    3549.81
OtherPay                       6632.34
Benefits                           NaN
TotalPay                     104558.52
TotalPayBenefits             104558.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8584, dtype: object)
(8585, Id                                   8586
EmployeeName                  IRMA ACEVES
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                        556.67
OtherPay                          8118.23
Benefits                              NaN
TotalPay                         104556.7
TotalPayBenefits                 104556.7
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8585, dtype: object)
(8586, Id                                   8587
EmployeeName                   DAVID DEAR
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          95881.84
OvertimePay                        772.13
OtherPay                           7902.3
Benefits                              NaN
TotalPay                        104556.27
TotalPayBenefits                104556.27
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8586, dtype: object)
(8587, Id                           8588
EmployeeName        STARR TERRELL
JobTitle                MANAGER I
BasePay                 104551.44
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                104551.44
TotalPayBenefits        104551.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8587, dtype: object)
(8588, Id                                8589
EmployeeName               VICTOR SHIH
JobTitle            ASSOCIATE ENGINEER
BasePay                      104082.84
OvertimePay                        0.0
OtherPay                        468.32
Benefits                           NaN
TotalPay                     104551.16
TotalPayBenefits             104551.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8588, dtype: object)
(8589, Id                                               8590
EmployeeName                                WEN XIONG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                  10320.97
OtherPay                                     14407.67
Benefits                                          NaN
TotalPay                                    104548.64
TotalPayBenefits                            104548.64
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8589, dtype: object)
(8590, Id                           8591
EmployeeName         STANTON LOWE
JobTitle               PHARMACIST
BasePay                 100046.44
OvertimePay                   0.0
OtherPay                  4498.21
Benefits                      NaN
TotalPay                104544.65
TotalPayBenefits        104544.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8590, dtype: object)
(8591, Id                                   8592
EmployeeName                  MARK BENTON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          94032.97
OvertimePay                       1265.03
OtherPay                          9244.13
Benefits                              NaN
TotalPay                        104542.13
TotalPayBenefits                104542.13
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8591, dtype: object)
(8592, Id                                                          8593
EmployeeName                                      DAVIDE PUGLISI
JobTitle            MANAGER VI - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                104541.08
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               104541.08
TotalPayBenefits                                       104541.08
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8592, dtype: object)
(8593, Id                              8594
EmployeeName             CARLA SPAIN
JobTitle            POLICE OFFICER I
BasePay                    100813.61
OvertimePay                  2529.67
OtherPay                     1197.26
Benefits                         NaN
TotalPay                   104540.54
TotalPayBenefits           104540.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8593, dtype: object)
(8594, Id                                                               8595
EmployeeName                                         MICHAEL HENRY JR
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       93679.6
OvertimePay                                                   8208.38
OtherPay                                                      2640.03
Benefits                                                          NaN
TotalPay                                                    104528.01
TotalPayBenefits                                            104528.01
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8594, dtype: object)
(8595, Id                                8596
EmployeeName              GENEVIE FONG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                         40.06
Benefits                           NaN
TotalPay                     104526.07
TotalPayBenefits             104526.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8595, dtype: object)
(8596, Id                              8597
EmployeeName            SONYA SARCOS
JobTitle            POLICE OFFICER I
BasePay                     91886.62
OvertimePay                  1277.37
OtherPay                    11358.76
Benefits                         NaN
TotalPay                   104522.75
TotalPayBenefits           104522.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8596, dtype: object)
(8597, Id                                8598
EmployeeName               JAMES MARSH
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                         32.05
Benefits                           NaN
TotalPay                     104518.07
TotalPayBenefits             104518.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8597, dtype: object)
(8598, Id                                                     8599
EmployeeName                                 WAYNE PROPALIS
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87577.01
OvertimePay                                         5068.38
OtherPay                                           11867.62
Benefits                                                NaN
TotalPay                                          104513.01
TotalPayBenefits                                  104513.01
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8598, dtype: object)
(8599, Id                                8600
EmployeeName        KENNETH WASHINGTON
JobTitle                DEPUTY SHERIFF
BasePay                        86840.0
OvertimePay                   11647.41
OtherPay                       6022.28
Benefits                           NaN
TotalPay                     104509.69
TotalPayBenefits             104509.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8599, dtype: object)
(8600, Id                              8601
EmployeeName            ARMANDO QUAN
JobTitle            TRANSIT OPERATOR
BasePay                     62889.41
OvertimePay                  39172.5
OtherPay                     2446.81
Benefits                         NaN
TotalPay                   104508.72
TotalPayBenefits           104508.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8600, dtype: object)
(8601, Id                              8602
EmployeeName               LINDA WON
JobTitle            REGISTERED NURSE
BasePay                     84993.12
OvertimePay                  5220.61
OtherPay                    14294.77
Benefits                         NaN
TotalPay                    104508.5
TotalPayBenefits            104508.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8601, dtype: object)
(8602, Id                                8603
EmployeeName             JEFFREY YOUNG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                         15.11
Benefits                           NaN
TotalPay                     104501.11
TotalPayBenefits             104501.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8602, dtype: object)
(8603, Id                                8604
EmployeeName              KARL SHAFFER
JobTitle            UTILITY SPECIALIST
BasePay                      101736.54
OvertimePay                     620.79
OtherPay                       2137.65
Benefits                           NaN
TotalPay                     104494.98
TotalPayBenefits             104494.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8603, dtype: object)
(8604, Id                                                               8605
EmployeeName                                          TIMOTHY KENNEDY
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      84286.02
OvertimePay                                                   5423.22
OtherPay                                                     14778.18
Benefits                                                          NaN
TotalPay                                                    104487.42
TotalPayBenefits                                            104487.42
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8604, dtype: object)
(8605, Id                                                8606
EmployeeName                                 ANN KELLY
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                      104486.44
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                     104486.44
TotalPayBenefits                             104486.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8605, dtype: object)
(8606, Id                                                8607
EmployeeName                              ROBERT HALEY
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                      104486.44
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                     104486.44
TotalPayBenefits                             104486.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8606, dtype: object)
(8607, Id                                        8608
EmployeeName                     JOSEPH CODINA
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.37
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.37
TotalPayBenefits                     104486.37
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8607, dtype: object)
(8608, Id                                8609
EmployeeName            SHERBAN DUNCAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.11
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.11
TotalPayBenefits             104486.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8608, dtype: object)
(8609, Id                                8610
EmployeeName             ARTHUR HEYMAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.11
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.11
TotalPayBenefits             104486.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8609, dtype: object)
(8610, Id                                8611
EmployeeName                 JAMES LEE
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.1
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.1
TotalPayBenefits              104486.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8610, dtype: object)
(8611, Id                                8612
EmployeeName              JOHN HELMUTH
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.09
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.09
TotalPayBenefits             104486.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8611, dtype: object)
(8612, Id                                8613
EmployeeName              RYAN GABRIEL
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.08
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.08
TotalPayBenefits             104486.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8612, dtype: object)
(8613, Id                                        8614
EmployeeName                     FLORINDA KUAN
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.08
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.08
TotalPayBenefits                     104486.08
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8613, dtype: object)
(8614, Id                                8615
EmployeeName            ALBERT VELASCO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.08
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.08
TotalPayBenefits             104486.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8614, dtype: object)
(8615, Id                                        8616
EmployeeName                        FARA PEREZ
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.08
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.08
TotalPayBenefits                     104486.08
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8615, dtype: object)
(8616, Id                                                8617
EmployeeName                            FRED BROOMHEAD
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                      104486.08
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                     104486.08
TotalPayBenefits                             104486.08
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8616, dtype: object)
(8617, Id                                8618
EmployeeName          FAROKH PIRUZMAND
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.08
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.08
TotalPayBenefits             104486.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8617, dtype: object)
(8618, Id                                        8619
EmployeeName                          ALAN GIN
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.07
TotalPayBenefits                     104486.07
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8618, dtype: object)
(8619, Id                                        8620
EmployeeName                     CARLOS AVELLA
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.07
TotalPayBenefits                     104486.07
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8619, dtype: object)
(8620, Id                                8621
EmployeeName               JEANNIE MAK
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.07
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.07
TotalPayBenefits             104486.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8620, dtype: object)
(8621, Id                                        8622
EmployeeName                          PAUL GAN
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.07
TotalPayBenefits                     104486.07
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8621, dtype: object)
(8622, Id                                8623
EmployeeName                  ZHAN LIN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.06
TotalPayBenefits             104486.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8622, dtype: object)
(8623, Id                                8624
EmployeeName                DAVID PANG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.06
TotalPayBenefits             104486.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8623, dtype: object)
(8624, Id                                8625
EmployeeName                HELEN YANG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.06
TotalPayBenefits             104486.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8624, dtype: object)
(8625, Id                                8626
EmployeeName              DEBRA TEMPLE
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.06
TotalPayBenefits             104486.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8625, dtype: object)
(8626, Id                                8627
EmployeeName            CHERIE GUBISCH
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.05
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.05
TotalPayBenefits             104486.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8626, dtype: object)
(8627, Id                                                  8628
EmployeeName                                 EDWARD CHIN
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                        104486.05
OvertimePay                                          0.0
OtherPay                                             0.0
Benefits                                             NaN
TotalPay                                       104486.05
TotalPayBenefits                               104486.05
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 8627, dtype: object)
(8628, Id                                8629
EmployeeName            MELISSA MOEHLE
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.04
TotalPayBenefits             104486.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8628, dtype: object)
(8629, Id                                8630
EmployeeName                  JAMES NG
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.04
TotalPayBenefits             104486.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8629, dtype: object)
(8630, Id                                        8631
EmployeeName                      JOSE RECINOS
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.04
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.04
TotalPayBenefits                     104486.04
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8630, dtype: object)
(8631, Id                                8632
EmployeeName             RANJIT PARHAR
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.03
TotalPayBenefits             104486.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8631, dtype: object)
(8632, Id                                8633
EmployeeName             EBENEZER CRUZ
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.03
TotalPayBenefits             104486.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8632, dtype: object)
(8633, Id                                8634
EmployeeName             JAIME RAMIREZ
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.03
TotalPayBenefits             104486.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8633, dtype: object)
(8634, Id                                8635
EmployeeName                HAYDEN KAM
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8634, dtype: object)
(8635, Id                                8636
EmployeeName                 ALLEN LIM
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8635, dtype: object)
(8636, Id                                8637
EmployeeName                 DIANE YIN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8636, dtype: object)
(8637, Id                                8638
EmployeeName               NOREEN CHAN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8637, dtype: object)
(8638, Id                                8639
EmployeeName                CHUNG LINH
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8638, dtype: object)
(8639, Id                                8640
EmployeeName         RASSENDYLL DENNIS
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.02
TotalPayBenefits             104486.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8639, dtype: object)
(8640, Id                                8641
EmployeeName           ERNESTO RICARDO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.01
TotalPayBenefits             104486.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8640, dtype: object)
(8641, Id                                        8642
EmployeeName                      MITCHELL JOE
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                              104486.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             104486.01
TotalPayBenefits                     104486.01
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8641, dtype: object)
(8642, Id                                8643
EmployeeName                  JACK LIN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.01
TotalPayBenefits             104486.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8642, dtype: object)
(8643, Id                                8644
EmployeeName             MATTHEW GRECO
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.01
TotalPayBenefits             104486.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8643, dtype: object)
(8644, Id                                8645
EmployeeName                  JOHN WEN
JobTitle            ASSOCIATE ENGINEER
BasePay                      104486.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     104486.01
TotalPayBenefits             104486.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8644, dtype: object)
(8645, Id                                                8646
EmployeeName                             ROBERT HAYDEN
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                       104486.0
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      104486.0
TotalPayBenefits                              104486.0
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8645, dtype: object)
(8646, Id                                8647
EmployeeName                 KEN HUANG
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.0
TotalPayBenefits              104486.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8646, dtype: object)
(8647, Id                                8648
EmployeeName                   EDDY HO
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.0
TotalPayBenefits              104486.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8647, dtype: object)
(8648, Id                                8649
EmployeeName               RAYMOND TAN
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.0
TotalPayBenefits              104486.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8648, dtype: object)
(8649, Id                                8650
EmployeeName                PETER CHIN
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.0
TotalPayBenefits              104486.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8649, dtype: object)
(8650, Id                                8651
EmployeeName               JOSEPH ELEK
JobTitle            ASSOCIATE ENGINEER
BasePay                       104486.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      104486.0
TotalPayBenefits              104486.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8650, dtype: object)
(8651, Id                                        8652
EmployeeName                   JORGE GUTIERREZ
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               104486.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              104486.0
TotalPayBenefits                      104486.0
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8651, dtype: object)
(8652, Id                                  8653
EmployeeName        DONNA MARIE MARTINEZ
JobTitle                REGISTERED NURSE
BasePay                         98012.88
OvertimePay                      2024.97
OtherPay                         4436.49
Benefits                             NaN
TotalPay                       104474.34
TotalPayBenefits               104474.34
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8652, dtype: object)
(8653, Id                                               8654
EmployeeName                         JACOB ROSENSTEIN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                    3412.8
OtherPay                                       2052.0
Benefits                                          NaN
TotalPay                                     104464.8
TotalPayBenefits                             104464.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8653, dtype: object)
(8654, Id                                 8655
EmployeeName                    KAI LEE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72490.4
OvertimePay                    23180.13
OtherPay                         8785.9
Benefits                            NaN
TotalPay                      104456.43
TotalPayBenefits              104456.43
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8654, dtype: object)
(8655, Id                                                    8656
EmployeeName                                MADONNA VALDEZ
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           93251.43
OvertimePay                                        5650.39
OtherPay                                           5548.35
Benefits                                               NaN
TotalPay                                         104450.17
TotalPayBenefits                                 104450.17
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 8655, dtype: object)
(8656, Id                                                 8657
EmployeeName                            ANDREW GUILLORY
JobTitle            PRINCIPAL PERSONAL PROPERTY AUDITOR
BasePay                                       103969.04
OvertimePay                                         0.0
OtherPay                                          480.0
Benefits                                            NaN
TotalPay                                      104449.04
TotalPayBenefits                              104449.04
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8656, dtype: object)
(8657, Id                               8658
EmployeeName        JESSE OROPEZA III
JobTitle             POLICE OFFICER I
BasePay                      96502.93
OvertimePay                    3718.9
OtherPay                      4226.99
Benefits                          NaN
TotalPay                    104448.82
TotalPayBenefits            104448.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8657, dtype: object)
(8658, Id                              8659
EmployeeName           GUO QING PENG
JobTitle            TRANSIT OPERATOR
BasePay                     66427.68
OvertimePay                 37773.41
OtherPay                      210.61
Benefits                         NaN
TotalPay                    104411.7
TotalPayBenefits            104411.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8658, dtype: object)
(8659, Id                                                 8660
EmployeeName                                 LEE HUDSON
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        100871.4
OvertimePay                                         0.0
OtherPay                                         3533.5
Benefits                                            NaN
TotalPay                                       104404.9
TotalPayBenefits                               104404.9
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 8659, dtype: object)
(8660, Id                           8661
EmployeeName        SHARON MORROW
JobTitle            SPECIAL NURSE
BasePay                  84723.38
OvertimePay                2918.7
OtherPay                 16748.73
Benefits                      NaN
TotalPay                104390.81
TotalPayBenefits        104390.81
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8660, dtype: object)
(8661, Id                                                8662
EmployeeName                             CHARLES CECIL
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       84125.59
OvertimePay                                   11068.91
OtherPay                                       9194.89
Benefits                                           NaN
TotalPay                                     104389.39
TotalPayBenefits                             104389.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8661, dtype: object)
(8662, Id                              8663
EmployeeName          MARCO CHIGHINE
JobTitle            REGISTERED NURSE
BasePay                     94991.48
OvertimePay                   2925.3
OtherPay                     6472.34
Benefits                         NaN
TotalPay                   104389.12
TotalPayBenefits           104389.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8662, dtype: object)
(8663, Id                                            8664
EmployeeName                       JESSICA RECINOS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                    94307.2
OvertimePay                                4640.89
OtherPay                                   5437.65
Benefits                                       NaN
TotalPay                                 104385.74
TotalPayBenefits                         104385.74
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 8663, dtype: object)
(8664, Id                              8665
EmployeeName            GLENN BRAKEL
JobTitle            POLICE OFFICER I
BasePay                     93916.35
OvertimePay                  4481.73
OtherPay                     5982.97
Benefits                         NaN
TotalPay                   104381.05
TotalPayBenefits           104381.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8664, dtype: object)
(8665, Id                                                      8666
EmployeeName                                  LUIS ZARABANDA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90511.85
OvertimePay                                          5539.75
OtherPay                                             8325.75
Benefits                                                 NaN
TotalPay                                           104377.35
TotalPayBenefits                                   104377.35
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8665, dtype: object)
(8666, Id                               8667
EmployeeName           WESLEY VALARIS
JobTitle            TRANSIT MANAGER I
BasePay                     100900.02
OvertimePay                       0.0
OtherPay                       3475.7
Benefits                          NaN
TotalPay                    104375.72
TotalPayBenefits            104375.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8666, dtype: object)
(8667, Id                                   8668
EmployeeName         ANNETTE CRUZ-PADILLA
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           95881.8
OvertimePay                       1602.27
OtherPay                          6881.09
Benefits                              NaN
TotalPay                        104365.16
TotalPayBenefits                104365.16
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8667, dtype: object)
(8668, Id                              8669
EmployeeName                KWAN DER
JobTitle            TRANSIT OPERATOR
BasePay                     66289.82
OvertimePay                 33829.91
OtherPay                      4242.1
Benefits                         NaN
TotalPay                   104361.83
TotalPayBenefits           104361.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8668, dtype: object)
(8669, Id                              8670
EmployeeName        IGNACIO SANDOVAL
JobTitle            TRANSIT OPERATOR
BasePay                     66522.44
OvertimePay                 35770.74
OtherPay                     2068.02
Benefits                         NaN
TotalPay                    104361.2
TotalPayBenefits            104361.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8669, dtype: object)
(8670, Id                                    8671
EmployeeName                BENJAMIN LEONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.04
OvertimePay                        11918.2
OtherPay                           1778.41
Benefits                               NaN
TotalPay                         104360.65
TotalPayBenefits                 104360.65
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8670, dtype: object)
(8671, Id                              8672
EmployeeName           MAUREEN FOLEY
JobTitle            REGISTERED NURSE
BasePay                    104358.04
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   104358.04
TotalPayBenefits           104358.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8671, dtype: object)
(8672, Id                                               8673
EmployeeName                            HUGH REYNOLDS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    2872.8
OtherPay                                       2470.0
Benefits                                          NaN
TotalPay                                     104357.2
TotalPayBenefits                             104357.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8672, dtype: object)
(8673, Id                            8674
EmployeeName             WESLEY LI
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                4497.83
OtherPay                  13005.45
Benefits                       NaN
TotalPay                 104343.28
TotalPayBenefits         104343.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8673, dtype: object)
(8674, Id                                    8675
EmployeeName                  DENNIS OATES
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.02
OvertimePay                       13668.39
OtherPay                               0.0
Benefits                               NaN
TotalPay                         104332.41
TotalPayBenefits                 104332.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8674, dtype: object)
(8675, Id                                                      8676
EmployeeName                                     CIRO GARCIA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             92058.22
OvertimePay                                          5254.73
OtherPay                                             7016.82
Benefits                                                 NaN
TotalPay                                           104329.77
TotalPayBenefits                                   104329.77
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8675, dtype: object)
(8676, Id                                              8677
EmployeeName                     CORNELIUS MURPHY-JR
JobTitle            STEAMFITTER ASSISTANT SUPERVISOR
BasePay                                    101209.15
OvertimePay                                      0.0
OtherPay                                     3119.45
Benefits                                         NaN
TotalPay                                    104328.6
TotalPayBenefits                            104328.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8676, dtype: object)
(8677, Id                                        8678
EmployeeName                  KENNETH BLACKMON
JobTitle            COUNSELOR, LOG CABIN RANCH
BasePay                               65194.38
OvertimePay                           37737.85
OtherPay                               1369.97
Benefits                                   NaN
TotalPay                              104302.2
TotalPayBenefits                      104302.2
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8677, dtype: object)
(8678, Id                              8679
EmployeeName            MALKEET GILL
JobTitle            REGISTERED NURSE
BasePay                     97540.56
OvertimePay                  2839.47
OtherPay                     3919.96
Benefits                         NaN
TotalPay                   104299.99
TotalPayBenefits           104299.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8678, dtype: object)
(8679, Id                              8680
EmployeeName             MARIA PEREZ
JobTitle            REGISTERED NURSE
BasePay                     88287.62
OvertimePay                  8255.94
OtherPay                     7747.62
Benefits                         NaN
TotalPay                   104291.18
TotalPayBenefits           104291.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8679, dtype: object)
(8680, Id                           8681
EmployeeName        DENISE ELARMS
JobTitle              FIREFIGHTER
BasePay                 102833.74
OvertimePay                   0.0
OtherPay                  1447.36
Benefits                      NaN
TotalPay                 104281.1
TotalPayBenefits         104281.1
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8680, dtype: object)
(8681, Id                                               8682
EmployeeName                          STEPHEN BARRETT
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96033.6
OvertimePay                                       0.0
OtherPay                                       8235.9
Benefits                                          NaN
TotalPay                                     104269.5
TotalPayBenefits                             104269.5
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8681, dtype: object)
(8682, Id                                                        8683
EmployeeName                                      EMIL CAMOZZI
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79513.02
OvertimePay                                            7399.66
OtherPay                                               17349.4
Benefits                                                   NaN
TotalPay                                             104262.08
TotalPayBenefits                                     104262.08
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 8682, dtype: object)
(8683, Id                               8684
EmployeeName              SAQIB ASLAM
JobTitle            POLICE OFFICER II
BasePay                     101586.31
OvertimePay                   1630.57
OtherPay                      1038.29
Benefits                          NaN
TotalPay                    104255.17
TotalPayBenefits            104255.17
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8683, dtype: object)
(8684, Id                                       8685
EmployeeName                    JEANNE SEYLER
JobTitle            CAPTAIN, FIRE SUPPRESSION
BasePay                              95055.34
OvertimePay                               0.0
OtherPay                              9197.14
Benefits                                  NaN
TotalPay                            104252.48
TotalPayBenefits                    104252.48
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8684, dtype: object)
(8685, Id                                 8686
EmployeeName                DENNIS FONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         74828.8
OvertimePay                    27512.79
OtherPay                         1908.9
Benefits                            NaN
TotalPay                      104250.49
TotalPayBenefits              104250.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8685, dtype: object)
(8686, Id                                       8687
EmployeeName                       EMILY DAHM
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             104233.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            104233.52
TotalPayBenefits                    104233.52
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8686, dtype: object)
(8687, Id                              8688
EmployeeName              STEVEN LAM
JobTitle            TRANSIT OPERATOR
BasePay                     65504.04
OvertimePay                 33920.53
OtherPay                      4805.0
Benefits                         NaN
TotalPay                   104229.57
TotalPayBenefits           104229.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8687, dtype: object)
(8688, Id                                8689
EmployeeName             VICTOR HOLMES
JobTitle            TRANSIT SUPERVISOR
BasePay                        89078.1
OvertimePay                    9707.76
OtherPay                       5441.97
Benefits                           NaN
TotalPay                     104227.83
TotalPayBenefits             104227.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8688, dtype: object)
(8689, Id                                                           8690
EmployeeName                                         VINCENT TONG
JobTitle            SUPERVISING PROBATION OFFICER, JUVENILE COURT
BasePay                                                 104223.21
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                104223.21
TotalPayBenefits                                        104223.21
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 8689, dtype: object)
(8690, Id                                8691
EmployeeName                DANIEL LEE
JobTitle            ASSOCIATE ENGINEER
BasePay                       91894.13
OvertimePay                        0.0
OtherPay                      12327.61
Benefits                           NaN
TotalPay                     104221.74
TotalPayBenefits             104221.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8690, dtype: object)
(8691, Id                              8692
EmployeeName           JOSHUA NAZZAL
JobTitle            POLICE OFFICER I
BasePay                     91794.01
OvertimePay                  2505.27
OtherPay                      9919.0
Benefits                         NaN
TotalPay                   104218.28
TotalPayBenefits           104218.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8691, dtype: object)
(8692, Id                              8693
EmployeeName            BILLY GIBSON
JobTitle            TRANSIT OPERATOR
BasePay                     67366.08
OvertimePay                 30399.12
OtherPay                     6448.42
Benefits                         NaN
TotalPay                   104213.62
TotalPayBenefits           104213.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8692, dtype: object)
(8693, Id                                                     8694
EmployeeName                                   CATHY OSORIO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            75774.55
OvertimePay                                        17336.66
OtherPay                                           11096.89
Benefits                                                NaN
TotalPay                                           104208.1
TotalPayBenefits                                   104208.1
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8693, dtype: object)
(8694, Id                           8695
EmployeeName         ROBERT CABAJ
JobTitle             MANAGER VIII
BasePay                  76117.71
OvertimePay                   0.0
OtherPay                 28087.36
Benefits                      NaN
TotalPay                104205.07
TotalPayBenefits        104205.07
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8694, dtype: object)
(8695, Id                            8696
EmployeeName           KEVIN QUINN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay               11398.94
OtherPay                   6299.39
Benefits                       NaN
TotalPay                 104204.33
TotalPayBenefits         104204.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8695, dtype: object)
(8696, Id                           8697
EmployeeName         MARTHA COHEN
JobTitle                MANAGER I
BasePay                 104199.68
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                104199.68
TotalPayBenefits        104199.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8696, dtype: object)
(8697, Id                                               8698
EmployeeName                             WAYNE MULLEN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       98366.4
OvertimePay                                    5832.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     104198.4
TotalPayBenefits                             104198.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8697, dtype: object)
(8698, Id                              8699
EmployeeName            BAYARDO PENA
JobTitle            TRANSIT OPERATOR
BasePay                     66682.73
OvertimePay                  32329.0
OtherPay                     5184.97
Benefits                         NaN
TotalPay                    104196.7
TotalPayBenefits            104196.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8698, dtype: object)
(8699, Id                              8700
EmployeeName         GAYLICIA BUNTON
JobTitle            POLICE OFFICER I
BasePay                     94414.94
OvertimePay                  5525.33
OtherPay                     4252.69
Benefits                         NaN
TotalPay                   104192.96
TotalPayBenefits           104192.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8699, dtype: object)
(8700, Id                              8701
EmployeeName                PAUL CHU
JobTitle            TRANSIT OPERATOR
BasePay                     67205.52
OvertimePay                 33454.57
OtherPay                     3531.08
Benefits                         NaN
TotalPay                   104191.17
TotalPayBenefits           104191.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8700, dtype: object)
(8701, Id                              8702
EmployeeName                  WAI NG
JobTitle            TRANSIT OPERATOR
BasePay                     66046.27
OvertimePay                 34278.52
OtherPay                     3863.21
Benefits                         NaN
TotalPay                    104188.0
TotalPayBenefits            104188.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8701, dtype: object)
(8702, Id                                  8703
EmployeeName             JON SPANGENBERG
JobTitle            IS ENGINEER - SENIOR
BasePay                        102031.84
OvertimePay                          0.0
OtherPay                          2151.0
Benefits                             NaN
TotalPay                       104182.84
TotalPayBenefits               104182.84
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8702, dtype: object)
(8703, Id                              8704
EmployeeName         KAMAKANA ALVARO
JobTitle            POLICE OFFICER I
BasePay                     94479.46
OvertimePay                   3643.8
OtherPay                     6058.29
Benefits                         NaN
TotalPay                   104181.55
TotalPayBenefits           104181.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8703, dtype: object)
(8704, Id                                                      8705
EmployeeName                                   ANDRE ANDRICH
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             88490.57
OvertimePay                                          2905.65
OtherPay                                            12784.71
Benefits                                                 NaN
TotalPay                                           104180.93
TotalPayBenefits                                   104180.93
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8704, dtype: object)
(8705, Id                                8706
EmployeeName                  JAMES LI
JobTitle            BUILDING INSPECTOR
BasePay                      100658.25
OvertimePay                        0.0
OtherPay                       3522.01
Benefits                           NaN
TotalPay                     104180.26
TotalPayBenefits             104180.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8705, dtype: object)
(8706, Id                                   8707
EmployeeName        DONALD DULL-MACKENZIE
JobTitle                        MANAGER I
BasePay                         104176.62
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        104176.62
TotalPayBenefits                104176.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8706, dtype: object)
(8707, Id                              8708
EmployeeName             HONOREA LIM
JobTitle            REGISTERED NURSE
BasePay                     99011.43
OvertimePay                    975.1
OtherPay                     4171.49
Benefits                         NaN
TotalPay                   104158.02
TotalPayBenefits           104158.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8707, dtype: object)
(8708, Id                                                   8709
EmployeeName                                   JINYI TANG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.09
OvertimePay                                           0.0
OtherPay                                            960.0
Benefits                                              NaN
TotalPay                                        104157.09
TotalPayBenefits                                104157.09
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8708, dtype: object)
(8709, Id                                    8710
EmployeeName                    JANE KOSKI
JobTitle            CARPENTER SUPERVISOR I
BasePay                            95889.9
OvertimePay                         8195.5
OtherPay                              60.0
Benefits                               NaN
TotalPay                          104145.4
TotalPayBenefits                  104145.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8709, dtype: object)
(8710, Id                              8711
EmployeeName         SARAH EICHSTEDT
JobTitle            REGISTERED NURSE
BasePay                     94530.49
OvertimePay                  2896.01
OtherPay                     6710.57
Benefits                         NaN
TotalPay                   104137.07
TotalPayBenefits           104137.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8710, dtype: object)
(8711, Id                              8712
EmployeeName        RAMESH SHANGARAN
JobTitle            POLICE OFFICER I
BasePay                     94758.96
OvertimePay                  3296.71
OtherPay                     6076.64
Benefits                         NaN
TotalPay                   104132.31
TotalPayBenefits           104132.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8711, dtype: object)
(8712, Id                              8713
EmployeeName           DENNIS BOBILA
JobTitle            TRANSIT OPERATOR
BasePay                     64727.63
OvertimePay                 38035.24
OtherPay                     1369.32
Benefits                         NaN
TotalPay                   104132.19
TotalPayBenefits           104132.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8712, dtype: object)
(8713, Id                                8714
EmployeeName              GRANT BECKER
JobTitle            BUILDING INSPECTOR
BasePay                       102081.7
OvertimePay                        0.0
OtherPay                       2040.91
Benefits                           NaN
TotalPay                     104122.61
TotalPayBenefits             104122.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8713, dtype: object)
(8714, Id                                     8715
EmployeeName            SATURNINO DOMINGUEZ
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            76474.01
OvertimePay                        27567.69
OtherPay                               60.0
Benefits                                NaN
TotalPay                           104101.7
TotalPayBenefits                   104101.7
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8714, dtype: object)
(8715, Id                                                     8716
EmployeeName                                   CAROLYN PAGE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77569.96
OvertimePay                                         16191.0
OtherPay                                           10340.41
Benefits                                                NaN
TotalPay                                          104101.37
TotalPayBenefits                                  104101.37
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8715, dtype: object)
(8716, Id                              8717
EmployeeName             RHONDA FORD
JobTitle            TRANSIT OPERATOR
BasePay                     63855.59
OvertimePay                 37995.92
OtherPay                     2244.34
Benefits                         NaN
TotalPay                   104095.85
TotalPayBenefits           104095.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8716, dtype: object)
(8717, Id                                        8718
EmployeeName                    JEFFREY BISHOP
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                                95522.3
OvertimePay                            6535.78
OtherPay                               2036.12
Benefits                                   NaN
TotalPay                              104094.2
TotalPayBenefits                      104094.2
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8717, dtype: object)
(8718, Id                                        8719
EmployeeName                       MARTIN LOOK
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                91104.0
OvertimePay                            5859.06
OtherPay                               7129.68
Benefits                                   NaN
TotalPay                             104092.74
TotalPayBenefits                     104092.74
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8718, dtype: object)
(8719, Id                                8720
EmployeeName                    ZAN OU
JobTitle            TRANSIT SUPERVISOR
BasePay                       73806.16
OvertimePay                    24978.3
OtherPay                       5299.35
Benefits                           NaN
TotalPay                     104083.81
TotalPayBenefits             104083.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8719, dtype: object)
(8720, Id                                              8721
EmployeeName                                JENNY HU
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    104076.03
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   104076.03
TotalPayBenefits                           104076.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8720, dtype: object)
(8721, Id                              8722
EmployeeName           PATRICIA TANG
JobTitle            REGISTERED NURSE
BasePay                     92264.72
OvertimePay                  7239.85
OtherPay                     4571.42
Benefits                         NaN
TotalPay                   104075.99
TotalPayBenefits           104075.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8721, dtype: object)
(8722, Id                                                   8723
EmployeeName                                 UZZIEL PRADO
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103231.53
OvertimePay                                           0.0
OtherPay                                            840.0
Benefits                                              NaN
TotalPay                                        104071.53
TotalPayBenefits                                104071.53
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8722, dtype: object)
(8723, Id                             8724
EmployeeName        CORRINE MEHIGAN
JobTitle                MANAGER III
BasePay                   104065.35
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  104065.35
TotalPayBenefits          104065.35
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8723, dtype: object)
(8724, Id                              8725
EmployeeName                ALAN JOU
JobTitle            POLICE OFFICER I
BasePay                     98803.09
OvertimePay                   3220.7
OtherPay                     2025.03
Benefits                         NaN
TotalPay                   104048.82
TotalPayBenefits           104048.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8724, dtype: object)
(8725, Id                                              8726
EmployeeName                            MIKKY TOOMER
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.93
OvertimePay                                  2655.78
OtherPay                                     5738.35
Benefits                                         NaN
TotalPay                                   104048.06
TotalPayBenefits                           104048.06
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8725, dtype: object)
(8726, Id                                                      8727
EmployeeName                                 TOMIO TAKESHITA
JobTitle            SUPERVISING WASTEWATER CONTROL INSPECTOR
BasePay                                            103969.02
OvertimePay                                            75.11
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           104044.13
TotalPayBenefits                                   104044.13
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8726, dtype: object)
(8727, Id                                 8728
EmployeeName                   JOEY PON
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         71905.8
OvertimePay                    26568.83
OtherPay                        5569.12
Benefits                            NaN
TotalPay                      104043.75
TotalPayBenefits              104043.75
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8727, dtype: object)
(8728, Id                              8729
EmployeeName            JOSE ALVAREZ
JobTitle            TRANSIT OPERATOR
BasePay                      65731.6
OvertimePay                 34937.59
OtherPay                     3356.46
Benefits                         NaN
TotalPay                   104025.65
TotalPayBenefits           104025.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8728, dtype: object)
(8729, Id                                  8730
EmployeeName                  ANDRE DAYE
JobTitle            IS ADMINISTRATOR III
BasePay                         95202.84
OvertimePay                          0.0
OtherPay                          8822.3
Benefits                             NaN
TotalPay                       104025.14
TotalPayBenefits               104025.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8729, dtype: object)
(8730, Id                           8731
EmployeeName          MI YOUNG LI
JobTitle            SPECIAL NURSE
BasePay                  104015.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 104015.9
TotalPayBenefits         104015.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8730, dtype: object)
(8731, Id                                              8732
EmployeeName                          SUSAN PONTIOUS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     104014.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    104014.6
TotalPayBenefits                            104014.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8731, dtype: object)
(8732, Id                            8733
EmployeeName         LEWIS GILLIAN
JobTitle            COURT REPORTER
BasePay                   98592.21
OvertimePay                    0.0
OtherPay                   5422.17
Benefits                       NaN
TotalPay                 104014.38
TotalPayBenefits         104014.38
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8732, dtype: object)
(8733, Id                                8734
EmployeeName            LEINAALA WHITE
JobTitle            TRANSIT SUPERVISOR
BasePay                       86283.82
OvertimePay                   12646.15
OtherPay                       5076.73
Benefits                           NaN
TotalPay                      104006.7
TotalPayBenefits              104006.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8733, dtype: object)
(8734, Id                            8735
EmployeeName          TIFFANY COOK
JobTitle            DEPUTY SHERIFF
BasePay                   76910.49
OvertimePay               18455.91
OtherPay                   8638.31
Benefits                       NaN
TotalPay                 104004.71
TotalPayBenefits         104004.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8734, dtype: object)
(8735, Id                              8736
EmployeeName        MELENDE PARANPAN
JobTitle            REGISTERED NURSE
BasePay                     99869.85
OvertimePay                   2197.8
OtherPay                     1934.98
Benefits                         NaN
TotalPay                   104002.63
TotalPayBenefits           104002.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8735, dtype: object)
(8736, Id                                                   8737
EmployeeName                             SHELDON MARK LEW
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103545.47
OvertimePay                                           0.0
OtherPay                                            450.0
Benefits                                              NaN
TotalPay                                        103995.47
TotalPayBenefits                                103995.47
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8736, dtype: object)
(8737, Id                                 8738
EmployeeName        JOHN JOSEPH MANABAT
JobTitle               TRANSIT OPERATOR
BasePay                        70187.91
OvertimePay                    27182.47
OtherPay                        6619.76
Benefits                            NaN
TotalPay                      103990.14
TotalPayBenefits              103990.14
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8737, dtype: object)
(8738, Id                                8739
EmployeeName             MARCUS MARCIC
JobTitle            TRANSIT SUPERVISOR
BasePay                       83854.49
OvertimePay                   11873.38
OtherPay                        8257.0
Benefits                           NaN
TotalPay                     103984.87
TotalPayBenefits             103984.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8738, dtype: object)
(8739, Id                                  8740
EmployeeName               EDWARD YAMADA
JobTitle            IS ENGINEER - SENIOR
BasePay                        102793.15
OvertimePay                          0.0
OtherPay                         1185.75
Benefits                             NaN
TotalPay                        103978.9
TotalPayBenefits                103978.9
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8739, dtype: object)
(8740, Id                                       8741
EmployeeName                      AUSTIN YANG
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             103978.33
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            103978.33
TotalPayBenefits                    103978.33
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8740, dtype: object)
(8741, Id                                   8742
EmployeeName                    CHRIS SIU
JobTitle            IS ENGINEER - JOURNEY
BasePay                         103975.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        103975.51
TotalPayBenefits                103975.51
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8741, dtype: object)
(8742, Id                                 8743
EmployeeName                MARK TIPTON
JobTitle            SUPERVISING AUDITOR
BasePay                       103969.07
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      103969.07
TotalPayBenefits              103969.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8742, dtype: object)
(8743, Id                                 8744
EmployeeName           ANTONIO ESHABARR
JobTitle            SUPERVISING AUDITOR
BasePay                       103969.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      103969.04
TotalPayBenefits              103969.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8743, dtype: object)
(8744, Id                             8745
EmployeeName               BOB LONG
JobTitle            CLAIMS ADJUSTER
BasePay                    103969.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   103969.0
TotalPayBenefits           103969.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8744, dtype: object)
(8745, Id                             8746
EmployeeName        MAXINE ANDERSON
JobTitle            CLAIMS ADJUSTER
BasePay                   103968.99
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  103968.99
TotalPayBenefits          103968.99
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8745, dtype: object)
(8746, Id                               8747
EmployeeName        P BRADFORD OCZKUS
JobTitle                  STEAMFITTER
BasePay                      90098.42
OvertimePay                    9797.0
OtherPay                      4073.18
Benefits                          NaN
TotalPay                     103968.6
TotalPayBenefits             103968.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8746, dtype: object)
(8747, Id                              8748
EmployeeName               SHERI TAN
JobTitle            REGISTERED NURSE
BasePay                     99019.27
OvertimePay                      0.0
OtherPay                     4948.93
Benefits                         NaN
TotalPay                    103968.2
TotalPayBenefits            103968.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8747, dtype: object)
(8748, Id                                                8749
EmployeeName                               GARY WEIMER
JobTitle            SENIOR POWER GENERATION TECHNICIAN
BasePay                                       86582.71
OvertimePay                                   12725.92
OtherPay                                       4653.09
Benefits                                           NaN
TotalPay                                     103961.72
TotalPayBenefits                             103961.72
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8748, dtype: object)
(8749, Id                                               8750
EmployeeName                       ARNOLD RECHSTEINER
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      96104.26
OvertimePay                                   7353.79
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                    103958.05
TotalPayBenefits                            103958.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8749, dtype: object)
(8750, Id                           8751
EmployeeName         GARY GAZZANO
JobTitle                  PLUMBER
BasePay                  90280.05
OvertimePay                9866.3
OtherPay                  3809.65
Benefits                      NaN
TotalPay                 103956.0
TotalPayBenefits         103956.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8750, dtype: object)
(8751, Id                              8752
EmployeeName              ERIK MAHER
JobTitle            POLICE OFFICER I
BasePay                      96537.7
OvertimePay                  4469.27
OtherPay                     2948.19
Benefits                         NaN
TotalPay                   103955.16
TotalPayBenefits           103955.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8751, dtype: object)
(8752, Id                                             8753
EmployeeName                        TAMARA RATCLIFF
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    65751.93
OvertimePay                                36583.84
OtherPay                                    1614.97
Benefits                                        NaN
TotalPay                                  103950.74
TotalPayBenefits                          103950.74
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8752, dtype: object)
(8753, Id                               8754
EmployeeName               SUSAN LABO
JobTitle            TRANSIT MANAGER I
BasePay                     103948.07
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    103948.07
TotalPayBenefits            103948.07
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8753, dtype: object)
(8754, Id                            8755
EmployeeName        DAVE JOEY ALBA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                3700.01
OtherPay                   13405.5
Benefits                       NaN
TotalPay                 103945.52
TotalPayBenefits         103945.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8754, dtype: object)
(8755, Id                                   8756
EmployeeName               DOMINIC VARGAS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           87954.0
OvertimePay                       9905.11
OtherPay                          6080.84
Benefits                              NaN
TotalPay                        103939.95
TotalPayBenefits                103939.95
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8755, dtype: object)
(8756, Id                                8757
EmployeeName           MICHAEL QUINLAN
JobTitle            BUILDING INSPECTOR
BasePay                      101878.35
OvertimePay                        0.0
OtherPay                       2036.64
Benefits                           NaN
TotalPay                     103914.99
TotalPayBenefits             103914.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8756, dtype: object)
(8757, Id                                8758
EmployeeName                PATSY CAIN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   10923.06
OtherPay                        4907.5
Benefits                           NaN
TotalPay                     103892.56
TotalPayBenefits             103892.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8757, dtype: object)
(8758, Id                              8759
EmployeeName        CHRISTIAN BOWMAN
JobTitle            POLICE OFFICER I
BasePay                     99960.01
OvertimePay                   833.54
OtherPay                     3096.48
Benefits                         NaN
TotalPay                   103890.03
TotalPayBenefits           103890.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8758, dtype: object)
(8759, Id                              8760
EmployeeName           SARAH MIKULIN
JobTitle            REGISTERED NURSE
BasePay                     96283.71
OvertimePay                  3842.84
OtherPay                     3762.19
Benefits                         NaN
TotalPay                   103888.74
TotalPayBenefits           103888.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8759, dtype: object)
(8760, Id                            8761
EmployeeName            JANICE LEE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               10965.96
OtherPay                   6081.58
Benefits                       NaN
TotalPay                 103887.55
TotalPayBenefits         103887.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8760, dtype: object)
(8761, Id                              8762
EmployeeName         DERRICK JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     67859.65
OvertimePay                 29331.13
OtherPay                     6693.45
Benefits                         NaN
TotalPay                   103884.23
TotalPayBenefits           103884.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8761, dtype: object)
(8762, Id                                              8763
EmployeeName                            JIMMY POSADA
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.99
OvertimePay                                  2483.32
OtherPay                                     5738.28
Benefits                                         NaN
TotalPay                                   103875.59
TotalPayBenefits                           103875.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8762, dtype: object)
(8763, Id                                           8764
EmployeeName                         EZRA DANIELS
JobTitle            ELEVATOR AND CRANE TECHNICIAN
BasePay                                  100454.9
OvertimePay                               3404.81
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                103859.71
TotalPayBenefits                        103859.71
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8763, dtype: object)
(8764, Id                                                           8765
EmployeeName                                        JENNIFER KWOK
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 103859.52
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                103859.52
TotalPayBenefits                                        103859.52
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 8764, dtype: object)
(8765, Id                            8766
EmployeeName          DANIEL SAENZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                9196.33
OtherPay                   7822.26
Benefits                       NaN
TotalPay                  103858.6
TotalPayBenefits          103858.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8765, dtype: object)
(8766, Id                              8767
EmployeeName               JASON LAI
JobTitle            POLICE OFFICER I
BasePay                     85468.95
OvertimePay                  8677.06
OtherPay                     9702.88
Benefits                         NaN
TotalPay                   103848.89
TotalPayBenefits           103848.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8766, dtype: object)
(8767, Id                                8768
EmployeeName           JAMES OSULLIVAN
JobTitle            PLUMBING INSPECTOR
BasePay                      100658.25
OvertimePay                     155.56
OtherPay                       3019.53
Benefits                           NaN
TotalPay                     103833.34
TotalPayBenefits             103833.34
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8767, dtype: object)
(8768, Id                              8769
EmployeeName          WARREN FARINAS
JobTitle            POLICE OFFICER I
BasePay                    101132.42
OvertimePay                  1519.79
OtherPay                     1173.74
Benefits                         NaN
TotalPay                   103825.95
TotalPayBenefits           103825.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8768, dtype: object)
(8769, Id                                                   8770
EmployeeName                          MARIO ROBERT OBLENA
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.05
OvertimePay                                        148.39
OtherPay                                            480.0
Benefits                                              NaN
TotalPay                                        103825.44
TotalPayBenefits                                103825.44
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8769, dtype: object)
(8770, Id                              8771
EmployeeName              AUDREY NGO
JobTitle            REGISTERED NURSE
BasePay                     94261.22
OvertimePay                  4678.49
OtherPay                     4884.85
Benefits                         NaN
TotalPay                   103824.56
TotalPayBenefits           103824.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8770, dtype: object)
(8771, Id                              8772
EmployeeName          KRISTINA KIRBY
JobTitle            REGISTERED NURSE
BasePay                     99306.08
OvertimePay                    44.59
OtherPay                     4468.55
Benefits                         NaN
TotalPay                   103819.22
TotalPayBenefits           103819.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8771, dtype: object)
(8772, Id                                 8773
EmployeeName               ERNEST ARNDT
JobTitle            COURT SUPERVISOR II
BasePay                       103184.69
OvertimePay                         0.0
OtherPay                         632.63
Benefits                            NaN
TotalPay                      103817.32
TotalPayBenefits              103817.32
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8772, dtype: object)
(8773, Id                                        8774
EmployeeName                 ANASTASIA MAXWELL
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                               86275.02
OvertimePay                            17535.3
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                             103810.32
TotalPayBenefits                     103810.32
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8773, dtype: object)
(8774, Id                                      8775
EmployeeName                     GALEN CLARK
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                             97365.37
OvertimePay                          6097.68
OtherPay                              343.75
Benefits                                 NaN
TotalPay                            103806.8
TotalPayBenefits                    103806.8
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8774, dtype: object)
(8775, Id                                    8776
EmployeeName             GABRIEL FERNANDEZ
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.03
OvertimePay                       13122.51
OtherPay                               0.0
Benefits                               NaN
TotalPay                         103786.54
TotalPayBenefits                 103786.54
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8775, dtype: object)
(8776, Id                              8777
EmployeeName          KENNETH CACICH
JobTitle            REGISTERED NURSE
BasePay                     94844.21
OvertimePay                      0.0
OtherPay                      8929.6
Benefits                         NaN
TotalPay                   103773.81
TotalPayBenefits           103773.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8776, dtype: object)
(8777, Id                              8778
EmployeeName           KATRINA MEIER
JobTitle            REGISTERED NURSE
BasePay                     94966.87
OvertimePay                  4818.95
OtherPay                     3987.42
Benefits                         NaN
TotalPay                   103773.24
TotalPayBenefits           103773.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8777, dtype: object)
(8778, Id                                8779
EmployeeName          DONALD DICKERSON
JobTitle            TRANSIT SUPERVISOR
BasePay                       85557.31
OvertimePay                   12519.84
OtherPay                       5692.94
Benefits                           NaN
TotalPay                     103770.09
TotalPayBenefits             103770.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8778, dtype: object)
(8779, Id                                           8780
EmployeeName                        BRIAN ROBERTS
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  97455.03
OvertimePay                               2178.45
OtherPay                                  4128.71
Benefits                                      NaN
TotalPay                                103762.19
TotalPayBenefits                        103762.19
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8779, dtype: object)
(8780, Id                                 8781
EmployeeName            JOVILO CUSTODIO
JobTitle            STATIONARY ENGINEER
BasePay                        72410.01
OvertimePay                    24686.55
OtherPay                        6665.04
Benefits                            NaN
TotalPay                       103761.6
TotalPayBenefits               103761.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8780, dtype: object)
(8781, Id                                                   8782
EmployeeName                              AMELIA CASTELLI
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         102836.81
OvertimePay                                           0.0
OtherPay                                            920.0
Benefits                                              NaN
TotalPay                                        103756.81
TotalPayBenefits                                103756.81
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8781, dtype: object)
(8782, Id                              8783
EmployeeName              ANH PAYTON
JobTitle            REGISTERED NURSE
BasePay                     93438.94
OvertimePay                  4035.78
OtherPay                     6280.62
Benefits                         NaN
TotalPay                   103755.34
TotalPayBenefits           103755.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8782, dtype: object)
(8783, Id                                                        8784
EmployeeName                                       ODELL GIBBS
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                79820.0
OvertimePay                                           10228.67
OtherPay                                              13703.73
Benefits                                                   NaN
TotalPay                                              103752.4
TotalPayBenefits                                      103752.4
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 8783, dtype: object)
(8784, Id                                      8785
EmployeeName                   JESSE HOFFMAN
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                             92734.52
OvertimePay                          9997.14
OtherPay                              1020.0
Benefits                                 NaN
TotalPay                           103751.66
TotalPayBenefits                   103751.66
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8784, dtype: object)
(8785, Id                                              8786
EmployeeName                           JEFFREY BARRY
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     100978.0
OvertimePay                                      0.0
OtherPay                                     2772.21
Benefits                                         NaN
TotalPay                                   103750.21
TotalPayBenefits                           103750.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8785, dtype: object)
(8786, Id                                 8787
EmployeeName                   DANNY HO
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73075.0
OvertimePay                    20004.33
OtherPay                       10666.99
Benefits                            NaN
TotalPay                      103746.32
TotalPayBenefits              103746.32
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8786, dtype: object)
(8787, Id                             8788
EmployeeName        ZHONG XING GONG
JobTitle                  MANAGER I
BasePay                   103245.58
OvertimePay                     0.0
OtherPay                     496.97
Benefits                        NaN
TotalPay                  103742.55
TotalPayBenefits          103742.55
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8787, dtype: object)
(8788, Id                           8789
EmployeeName         SUSANA DAVID
JobTitle                MANAGER I
BasePay                 103742.42
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                103742.42
TotalPayBenefits        103742.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8788, dtype: object)
(8789, Id                              8790
EmployeeName               ERIC WONG
JobTitle            TRANSIT OPERATOR
BasePay                      58210.2
OvertimePay                 43042.02
OtherPay                      2481.7
Benefits                         NaN
TotalPay                   103733.92
TotalPayBenefits           103733.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8789, dtype: object)
(8790, Id                              8791
EmployeeName         KENNETH ANWUKAH
JobTitle            TRANSIT OPERATOR
BasePay                     61837.62
OvertimePay                 40794.97
OtherPay                     1100.21
Benefits                         NaN
TotalPay                    103732.8
TotalPayBenefits            103732.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8790, dtype: object)
(8791, Id                                          8792
EmployeeName                        SCOTT WIENER
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                102464.32
OvertimePay                                  0.0
OtherPay                                 1261.22
Benefits                                     NaN
TotalPay                               103725.54
TotalPayBenefits                       103725.54
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8791, dtype: object)
(8792, Id                                                     8793
EmployeeName                                   EILEEN DAVID
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77935.33
OvertimePay                                        15232.09
OtherPay                                           10546.08
Benefits                                                NaN
TotalPay                                           103713.5
TotalPayBenefits                                   103713.5
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8792, dtype: object)
(8793, Id                                                      8794
EmployeeName                                   HOWARD CONROY
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             88163.32
OvertimePay                                          7129.73
OtherPay                                             8413.53
Benefits                                                 NaN
TotalPay                                           103706.58
TotalPayBenefits                                   103706.58
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8793, dtype: object)
(8794, Id                            8795
EmployeeName        MICHAEL CELONA
JobTitle               FIREFIGHTER
BasePay                   51214.91
OvertimePay                9924.59
OtherPay                  42555.56
Benefits                       NaN
TotalPay                 103695.06
TotalPayBenefits         103695.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8794, dtype: object)
(8795, Id                            8796
EmployeeName         MIGNON DUNBAR
JobTitle            CRIMINALIST II
BasePay                   96316.43
OvertimePay                7374.61
OtherPay                       0.0
Benefits                       NaN
TotalPay                 103691.04
TotalPayBenefits         103691.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8795, dtype: object)
(8796, Id                               8797
EmployeeName               JUSTIN WOO
JobTitle            POLICE OFFICER II
BasePay                      97299.06
OvertimePay                   2384.91
OtherPay                      4005.11
Benefits                          NaN
TotalPay                    103689.08
TotalPayBenefits            103689.08
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8796, dtype: object)
(8797, Id                                                8798
EmployeeName                      SARAVUT CHANBANCHONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   23317.29
OtherPay                                       2790.17
Benefits                                           NaN
TotalPay                                     103687.86
TotalPayBenefits                             103687.86
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8797, dtype: object)
(8798, Id                               8799
EmployeeName                 GARY YIP
JobTitle            PARTS STOREKEEPER
BasePay                       57061.4
OvertimePay                  46000.71
OtherPay                        624.0
Benefits                          NaN
TotalPay                    103686.11
TotalPayBenefits            103686.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8798, dtype: object)
(8799, Id                                     8800
EmployeeName                MARSELO CADILLO
JobTitle            ELECTRIC MOTOR REPAIRER
BasePay                            72908.13
OvertimePay                        30717.05
OtherPay                               60.0
Benefits                                NaN
TotalPay                          103685.18
TotalPayBenefits                  103685.18
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8799, dtype: object)
(8800, Id                            8801
EmployeeName            SONIA WONG
JobTitle            COURT REPORTER
BasePay                   103682.8
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  103682.8
TotalPayBenefits          103682.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8800, dtype: object)
(8801, Id                              8802
EmployeeName        KRISTINE DAMALAS
JobTitle                   MANAGER I
BasePay                    103680.69
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   103680.69
TotalPayBenefits           103680.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8801, dtype: object)
(8802, Id                                8803
EmployeeName                 ROGER TAM
JobTitle            ASSOCIATE ENGINEER
BasePay                       103680.4
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      103680.4
TotalPayBenefits              103680.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8802, dtype: object)
(8803, Id                              8804
EmployeeName        ALOSIO TUIMAVAVE
JobTitle             UTILITY PLUMBER
BasePay                      91551.6
OvertimePay                   3576.2
OtherPay                     8551.51
Benefits                         NaN
TotalPay                   103679.31
TotalPayBenefits           103679.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8803, dtype: object)
(8804, Id                                                   8805
EmployeeName                                CHANNING WONG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.38
OvertimePay                                           0.0
OtherPay                                            480.0
Benefits                                              NaN
TotalPay                                        103677.38
TotalPayBenefits                                103677.38
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8804, dtype: object)
(8805, Id                                  8806
EmployeeName              MICHAEL HARRIS
JobTitle            INDUSTRIAL HYGIENIST
BasePay                        103675.57
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                       103675.57
TotalPayBenefits               103675.57
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8805, dtype: object)
(8806, Id                                 8807
EmployeeName            EDWARD SKIDMORE
JobTitle            STATIONARY ENGINEER
BasePay                        72410.04
OvertimePay                    25824.93
OtherPay                        5431.36
Benefits                            NaN
TotalPay                      103666.33
TotalPayBenefits              103666.33
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8806, dtype: object)
(8807, Id                              8808
EmployeeName             BRIAN SAXON
JobTitle            REGISTERED NURSE
BasePay                     92571.45
OvertimePay                   735.41
OtherPay                    10356.44
Benefits                         NaN
TotalPay                    103663.3
TotalPayBenefits            103663.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8807, dtype: object)
(8808, Id                                              8809
EmployeeName                            CHERYL MUNOZ
JobTitle            WATER CONSERVATION ADMINISTRATOR
BasePay                                    103660.27
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   103660.27
TotalPayBenefits                           103660.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8808, dtype: object)
(8809, Id                               8810
EmployeeName        PRESTON DONALDSON
JobTitle             TRANSIT OPERATOR
BasePay                      66596.82
OvertimePay                   32592.9
OtherPay                      4469.34
Benefits                          NaN
TotalPay                    103659.06
TotalPayBenefits            103659.06
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8809, dtype: object)
(8810, Id                                  8811
EmployeeName               STEVE GALILEO
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         74145.32
OvertimePay                     16565.75
OtherPay                        12947.79
Benefits                             NaN
TotalPay                       103658.86
TotalPayBenefits               103658.86
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8810, dtype: object)
(8811, Id                              8812
EmployeeName         BRIAN STANSBURY
JobTitle            POLICE OFFICER I
BasePay                     93826.48
OvertimePay                  5531.73
OtherPay                     4299.65
Benefits                         NaN
TotalPay                   103657.86
TotalPayBenefits           103657.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8811, dtype: object)
(8812, Id                              8813
EmployeeName          EDDIE NUBIE JR
JobTitle            TRANSIT OPERATOR
BasePay                     67614.66
OvertimePay                 31771.63
OtherPay                     4262.07
Benefits                         NaN
TotalPay                   103648.36
TotalPayBenefits           103648.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8812, dtype: object)
(8813, Id                                            8814
EmployeeName                            JOHN KLEIN
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   68043.09
OvertimePay                               32012.22
OtherPay                                   3590.07
Benefits                                       NaN
TotalPay                                 103645.38
TotalPayBenefits                         103645.38
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 8813, dtype: object)
(8814, Id                                     8815
EmployeeName               SAM CHI WAI CHOY
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           103639.72
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          103639.72
TotalPayBenefits                  103639.72
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8814, dtype: object)
(8815, Id                                                   8816
EmployeeName                                 RANDALL CHAN
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.01
OvertimePay                                           0.0
OtherPay                                            440.0
Benefits                                              NaN
TotalPay                                        103637.01
TotalPayBenefits                                103637.01
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8815, dtype: object)
(8816, Id                              8817
EmployeeName                JOHN SIU
JobTitle            TRANSIT OPERATOR
BasePay                     69092.45
OvertimePay                 30197.98
OtherPay                     4346.45
Benefits                         NaN
TotalPay                   103636.88
TotalPayBenefits           103636.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8816, dtype: object)
(8817, Id                              8818
EmployeeName         WILLIAM HERBERT
JobTitle            REGISTERED NURSE
BasePay                     84570.27
OvertimePay                  2165.37
OtherPay                    16893.64
Benefits                         NaN
TotalPay                   103629.28
TotalPayBenefits           103629.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8817, dtype: object)
(8818, Id                              8819
EmployeeName        MARILYN O'CONNOR
JobTitle            REGISTERED NURSE
BasePay                    101483.41
OvertimePay                      0.0
OtherPay                     2130.86
Benefits                         NaN
TotalPay                   103614.27
TotalPayBenefits           103614.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8818, dtype: object)
(8819, Id                           8820
EmployeeName        BENITO OLGUIN
JobTitle                ARCHITECT
BasePay                  103602.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 103602.8
TotalPayBenefits         103602.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8819, dtype: object)
(8820, Id                                 8821
EmployeeName             MICHAEL LEHANE
JobTitle            AIRPORT ELECTRICIAN
BasePay                        96825.03
OvertimePay                     4629.47
OtherPay                         2147.9
Benefits                            NaN
TotalPay                       103602.4
TotalPayBenefits               103602.4
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8820, dtype: object)
(8821, Id                            8822
EmployeeName            KIM WOLSKE
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                5404.91
OtherPay                  11348.27
Benefits                       NaN
TotalPay                 103593.18
TotalPayBenefits         103593.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8821, dtype: object)
(8822, Id                                    8823
EmployeeName                 THOMAS TACHIS
JobTitle            CARPENTER SUPERVISOR I
BasePay                           96082.49
OvertimePay                        7509.47
OtherPay                               0.0
Benefits                               NaN
TotalPay                         103591.96
TotalPayBenefits                 103591.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8822, dtype: object)
(8823, Id                            8824
EmployeeName        ASHAKI ASHANTI
JobTitle             SPECIAL NURSE
BasePay                   96006.32
OvertimePay                3243.03
OtherPay                   4340.45
Benefits                       NaN
TotalPay                  103589.8
TotalPayBenefits          103589.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8823, dtype: object)
(8824, Id                                  8825
EmployeeName                  VICTOR TOM
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         92227.52
OvertimePay                      7582.51
OtherPay                         3776.04
Benefits                             NaN
TotalPay                       103586.07
TotalPayBenefits               103586.07
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8824, dtype: object)
(8825, Id                               8826
EmployeeName        WILLIAM MARQUARDT
JobTitle            TRANSIT MANAGER I
BasePay                     103548.26
OvertimePay                       0.0
OtherPay                         35.0
Benefits                          NaN
TotalPay                    103583.26
TotalPayBenefits            103583.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8825, dtype: object)
(8826, Id                                     8827
EmployeeName                  RAJESH PRASAD
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                           103569.01
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                          103569.01
TotalPayBenefits                  103569.01
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 8826, dtype: object)
(8827, Id                              8828
EmployeeName          JENNIFER IRWIN
JobTitle            POLICE OFFICER I
BasePay                     85499.16
OvertimePay                  4101.15
OtherPay                    13958.34
Benefits                         NaN
TotalPay                   103558.65
TotalPayBenefits           103558.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8827, dtype: object)
(8828, Id                                                      8829
EmployeeName                                   JAMES ELLIOTT
JobTitle            TRANSIT CAR CLEANER ASSISTANT SUPERVISOR
BasePay                                             62186.65
OvertimePay                                         29007.58
OtherPay                                            12356.97
Benefits                                                 NaN
TotalPay                                            103551.2
TotalPayBenefits                                    103551.2
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8828, dtype: object)
(8829, Id                                      8830
EmployeeName                    DAVID BRODER
JobTitle            SHEET METAL SUPERVISOR I
BasePay                            100766.22
OvertimePay                            76.54
OtherPay                             2694.12
Benefits                                 NaN
TotalPay                           103536.88
TotalPayBenefits                   103536.88
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8829, dtype: object)
(8830, Id                                        8831
EmployeeName                  MICHAEL DEGUZMAN
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               95097.73
OvertimePay                                0.0
OtherPay                               8437.74
Benefits                                   NaN
TotalPay                             103535.47
TotalPayBenefits                     103535.47
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8830, dtype: object)
(8831, Id                            8832
EmployeeName        OSCAR GONZALEZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                4639.87
OtherPay                  12054.67
Benefits                       NaN
TotalPay                 103534.55
TotalPayBenefits         103534.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8831, dtype: object)
(8832, Id                                                      8833
EmployeeName                                  JOHNNY JOHNSON
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             87884.19
OvertimePay                                          9052.09
OtherPay                                             6596.93
Benefits                                                 NaN
TotalPay                                           103533.21
TotalPayBenefits                                   103533.21
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8832, dtype: object)
(8833, Id                                8834
EmployeeName        BENJAMIN MCCLOSKEY
JobTitle            MAYORAL STAFF XIII
BasePay                      103516.08
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     103516.08
TotalPayBenefits             103516.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8833, dtype: object)
(8834, Id                            8835
EmployeeName          NELSON LEUNG
JobTitle            DEPUTY SHERIFF
BasePay                   86506.06
OvertimePay                5665.67
OtherPay                  11343.56
Benefits                       NaN
TotalPay                 103515.29
TotalPayBenefits         103515.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8834, dtype: object)
(8835, Id                              8836
EmployeeName            SEAN CHATMAN
JobTitle            TRANSIT OPERATOR
BasePay                     65575.44
OvertimePay                 33219.31
OtherPay                     4715.19
Benefits                         NaN
TotalPay                   103509.94
TotalPayBenefits           103509.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8835, dtype: object)
(8836, Id                                             8837
EmployeeName                           SONJI WALKER
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                    98577.47
OvertimePay                                     0.0
OtherPay                                    4929.97
Benefits                                        NaN
TotalPay                                  103507.44
TotalPayBenefits                          103507.44
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8836, dtype: object)
(8837, Id                            8838
EmployeeName        DENISE COLEMAN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                6013.36
OtherPay                  10650.69
Benefits                       NaN
TotalPay                 103504.06
TotalPayBenefits         103504.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8837, dtype: object)
(8838, Id                                                8839
EmployeeName                               ARTHUR WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   17880.43
OtherPay                                       8039.32
Benefits                                           NaN
TotalPay                                     103500.16
TotalPayBenefits                             103500.16
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8838, dtype: object)
(8839, Id                                  8840
EmployeeName               GENE CHRUSZCZ
JobTitle            SEWER SERVICE WORKER
BasePay                          84964.9
OvertimePay                     18200.51
OtherPay                          334.04
Benefits                             NaN
TotalPay                       103499.45
TotalPayBenefits               103499.45
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8839, dtype: object)
(8840, Id                                8841
EmployeeName             MICHAEL SMITH
JobTitle            ASSOCIATE ENGINEER
BasePay                      103499.21
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     103499.21
TotalPayBenefits             103499.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8840, dtype: object)
(8841, Id                                                8842
EmployeeName                             JAMES FIORICA
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       85687.15
OvertimePay                                    6928.82
OtherPay                                      10852.28
Benefits                                           NaN
TotalPay                                     103468.25
TotalPayBenefits                             103468.25
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8841, dtype: object)
(8842, Id                                                               8843
EmployeeName                                         BLANCHE BLACHMAN
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                      103461.1
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     103461.1
TotalPayBenefits                                             103461.1
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8842, dtype: object)
(8843, Id                                                               8844
EmployeeName                                             RICHARD KUNG
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                      103461.0
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     103461.0
TotalPayBenefits                                             103461.0
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8843, dtype: object)
(8844, Id                                                               8845
EmployeeName                                            LAUREL TURNER
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                      103461.0
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     103461.0
TotalPayBenefits                                             103461.0
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8844, dtype: object)
(8845, Id                                                               8846
EmployeeName                                              SHAWN KELLY
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                     103460.99
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    103460.99
TotalPayBenefits                                            103460.99
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8845, dtype: object)
(8846, Id                                                               8847
EmployeeName                                              BARRON FONG
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                     103460.98
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    103460.98
TotalPayBenefits                                            103460.98
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8846, dtype: object)
(8847, Id                              8848
EmployeeName             KATE JOSHUA
JobTitle            POLICE OFFICER I
BasePay                     99897.47
OvertimePay                  1443.79
OtherPay                     2111.84
Benefits                         NaN
TotalPay                    103453.1
TotalPayBenefits            103453.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8847, dtype: object)
(8848, Id                                                     8849
EmployeeName                                       OREN RAE
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            88032.86
OvertimePay                                         8806.37
OtherPay                                             6613.4
Benefits                                                NaN
TotalPay                                          103452.63
TotalPayBenefits                                  103452.63
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8848, dtype: object)
(8849, Id                                           8850
EmployeeName                        EDSON SIMMONS
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.18
OvertimePay                                   0.0
OtherPay                                  3489.54
Benefits                                      NaN
TotalPay                                103450.72
TotalPayBenefits                        103450.72
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8849, dtype: object)
(8850, Id                                8851
EmployeeName             ANDRE BEASLEY
JobTitle            TRANSIT SUPERVISOR
BasePay                       73272.44
OvertimePay                   26794.85
OtherPay                       3379.57
Benefits                           NaN
TotalPay                     103446.86
TotalPayBenefits             103446.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8850, dtype: object)
(8851, Id                              8852
EmployeeName          GLENDA SABILLO
JobTitle            REGISTERED NURSE
BasePay                     94757.24
OvertimePay                  4021.32
OtherPay                     4664.24
Benefits                         NaN
TotalPay                    103442.8
TotalPayBenefits            103442.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8851, dtype: object)
(8852, Id                                  8853
EmployeeName        MARIAN CAMPION-HEALY
JobTitle               POLICE OFFICER II
BasePay                        101900.84
OvertimePay                       781.69
OtherPay                           756.6
Benefits                             NaN
TotalPay                       103439.13
TotalPayBenefits               103439.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8852, dtype: object)
(8853, Id                                              8854
EmployeeName                             MOLLY BRAUN
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.97
OvertimePay                                  2046.67
OtherPay                                     5738.27
Benefits                                         NaN
TotalPay                                   103438.91
TotalPayBenefits                           103438.91
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8853, dtype: object)
(8854, Id                                                   8855
EmployeeName                                     ERIC MAR
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.39
OvertimePay                                           0.0
OtherPay                                            240.0
Benefits                                              NaN
TotalPay                                        103437.39
TotalPayBenefits                                103437.39
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8854, dtype: object)
(8855, Id                                           8856
EmployeeName                      KAREN PITBLADDO
JobTitle            SENIOR OCCUPATIONAL THERAPIST
BasePay                                 103432.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                103432.96
TotalPayBenefits                        103432.96
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8855, dtype: object)
(8856, Id                                              8857
EmployeeName                              NIKE IROKO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    103416.78
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   103416.78
TotalPayBenefits                           103416.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8856, dtype: object)
(8857, Id                            8858
EmployeeName              JUN CHUA
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                9629.22
OtherPay                   7269.28
Benefits                       NaN
TotalPay                 103404.51
TotalPayBenefits         103404.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8857, dtype: object)
(8858, Id                                         8859
EmployeeName                  MICHAEL POLLATSEK
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                68483.97
OvertimePay                                 0.0
OtherPay                               34907.66
Benefits                                    NaN
TotalPay                              103391.63
TotalPayBenefits                      103391.63
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 8858, dtype: object)
(8859, Id                                        8860
EmployeeName                    FRANK CASTILLO
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               85147.41
OvertimePay                            7192.01
OtherPay                               11046.3
Benefits                                   NaN
TotalPay                             103385.72
TotalPayBenefits                     103385.72
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8859, dtype: object)
(8860, Id                               8861
EmployeeName        STEPHANIE MAYORGA
JobTitle                  MANAGER III
BasePay                     103376.34
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    103376.34
TotalPayBenefits            103376.34
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8860, dtype: object)
(8861, Id                              8862
EmployeeName         WILROLAN RAVELO
JobTitle            POLICE OFFICER I
BasePay                     85887.74
OvertimePay                  7743.26
OtherPay                     9740.27
Benefits                         NaN
TotalPay                   103371.27
TotalPayBenefits           103371.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8861, dtype: object)
(8862, Id                                    8863
EmployeeName                   ALFREDO TIO
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.06
OvertimePay                        8609.72
OtherPay                            4092.6
Benefits                               NaN
TotalPay                         103366.38
TotalPayBenefits                 103366.38
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8862, dtype: object)
(8863, Id                           8864
EmployeeName          CAROL SPEAR
JobTitle               MANAGER II
BasePay                 102408.17
OvertimePay                   0.0
OtherPay                   952.84
Benefits                      NaN
TotalPay                103361.01
TotalPayBenefits        103361.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8863, dtype: object)
(8864, Id                                        8865
EmployeeName                      MARY MCGINTY
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               97923.62
OvertimePay                            5234.61
OtherPay                                 200.0
Benefits                                   NaN
TotalPay                             103358.23
TotalPayBenefits                     103358.23
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8864, dtype: object)
(8865, Id                                    8866
EmployeeName               JOSEPH GALLARDO
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                       12517.56
OtherPay                            173.95
Benefits                               NaN
TotalPay                         103355.51
TotalPayBenefits                 103355.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 8865, dtype: object)
(8866, Id                             8867
EmployeeName        THOMAS PETERSEN
JobTitle                    PLUMBER
BasePay                    91551.62
OvertimePay                 4238.43
OtherPay                    7557.02
Benefits                        NaN
TotalPay                  103347.07
TotalPayBenefits          103347.07
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8866, dtype: object)
(8867, Id                                           8868
EmployeeName                        JOSE QUINTERO
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   84394.4
OvertimePay                               9667.62
OtherPay                                  9282.64
Benefits                                      NaN
TotalPay                                103344.66
TotalPayBenefits                        103344.66
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8867, dtype: object)
(8868, Id                              8869
EmployeeName           BRIAN KNEUKER
JobTitle            POLICE OFFICER I
BasePay                     86095.18
OvertimePay                  8140.91
OtherPay                     9102.13
Benefits                         NaN
TotalPay                   103338.22
TotalPayBenefits           103338.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8868, dtype: object)
(8869, Id                                      8870
EmployeeName                   DANIEL RAVINA
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            103336.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           103336.51
TotalPayBenefits                   103336.51
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8869, dtype: object)
(8870, Id                           8871
EmployeeName          STEPHEN KAY
JobTitle                ARCHITECT
BasePay                  103334.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 103334.0
TotalPayBenefits         103334.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8870, dtype: object)
(8871, Id                            8872
EmployeeName        MICHAEL HURLEY
JobTitle                   PLUMBER
BasePay                    90098.4
OvertimePay               12261.38
OtherPay                     970.0
Benefits                       NaN
TotalPay                 103329.78
TotalPayBenefits         103329.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8871, dtype: object)
(8872, Id                                   8873
EmployeeName        MARIA TERESA BAUTISTA
JobTitle                    SPECIAL NURSE
BasePay                          87985.63
OvertimePay                           0.0
OtherPay                         15334.73
Benefits                              NaN
TotalPay                        103320.36
TotalPayBenefits                103320.36
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8872, dtype: object)
(8873, Id                                  8874
EmployeeName                   GARY KATO
JobTitle            ELECTRICAL INSPECTOR
BasePay                         101268.3
OvertimePay                          0.0
OtherPay                         2024.44
Benefits                             NaN
TotalPay                       103292.74
TotalPayBenefits               103292.74
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8873, dtype: object)
(8874, Id                              8875
EmployeeName        ANTHONY ASSERETO
JobTitle            POLICE OFFICER I
BasePay                     91814.32
OvertimePay                  2212.25
OtherPay                     9265.84
Benefits                         NaN
TotalPay                   103292.41
TotalPayBenefits           103292.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8874, dtype: object)
(8875, Id                                          8876
EmployeeName                      JEFFREY BURTON
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 102461.0
OvertimePay                                  0.0
OtherPay                                   826.5
Benefits                                     NaN
TotalPay                                103287.5
TotalPayBenefits                        103287.5
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8875, dtype: object)
(8876, Id                                               8877
EmployeeName                              LIPING FONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                   2963.25
OtherPay                                      1307.28
Benefits                                          NaN
TotalPay                                    103284.93
TotalPayBenefits                            103284.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8876, dtype: object)
(8877, Id                                                     8878
EmployeeName                                  FATIISHA RAZO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77725.65
OvertimePay                                        15640.38
OtherPay                                            9909.04
Benefits                                                NaN
TotalPay                                          103275.07
TotalPayBenefits                                  103275.07
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 8877, dtype: object)
(8878, Id                           8879
EmployeeName          JENNY LOUIE
JobTitle              MANAGER III
BasePay                  98664.68
OvertimePay                   0.0
OtherPay                   4600.0
Benefits                      NaN
TotalPay                103264.68
TotalPayBenefits        103264.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8878, dtype: object)
(8879, Id                                           8880
EmployeeName                        VIRGIL DENNIS
JobTitle            SENIOR MAINTENANCE CONTROLLER
BasePay                                   98239.9
OvertimePay                               4356.25
OtherPay                                    660.0
Benefits                                      NaN
TotalPay                                103256.15
TotalPayBenefits                        103256.15
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 8879, dtype: object)
(8880, Id                                               8881
EmployeeName                             PHONG NGUYEN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       94478.4
OvertimePay                                       0.0
OtherPay                                      8776.42
Benefits                                          NaN
TotalPay                                    103254.82
TotalPayBenefits                            103254.82
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8880, dtype: object)
(8881, Id                            8882
EmployeeName        BASILIO ALVIAR
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay               10197.87
OtherPay                   6191.25
Benefits                       NaN
TotalPay                 103229.12
TotalPayBenefits         103229.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8881, dtype: object)
(8882, Id                              8883
EmployeeName              ADAM GREEN
JobTitle            POLICE OFFICER I
BasePay                     95618.95
OvertimePay                  4894.24
OtherPay                     2713.57
Benefits                         NaN
TotalPay                   103226.76
TotalPayBenefits           103226.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8882, dtype: object)
(8883, Id                                                8884
EmployeeName                           TIMOTHY HELLMAN
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       84085.36
OvertimePay                                    8352.64
OtherPay                                      10786.21
Benefits                                           NaN
TotalPay                                     103224.21
TotalPayBenefits                             103224.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8883, dtype: object)
(8884, Id                              8885
EmployeeName           CHARLES LEUNG
JobTitle            TRANSIT OPERATOR
BasePay                     64699.56
OvertimePay                 37072.88
OtherPay                     1444.93
Benefits                         NaN
TotalPay                   103217.37
TotalPayBenefits           103217.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8884, dtype: object)
(8885, Id                              8886
EmployeeName                SIMON MA
JobTitle            TRANSIT OPERATOR
BasePay                     66007.59
OvertimePay                 32188.55
OtherPay                     5020.56
Benefits                         NaN
TotalPay                    103216.7
TotalPayBenefits            103216.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8885, dtype: object)
(8886, Id                                8887
EmployeeName            LAURA MCCARTHY
JobTitle            NURSE PRACTITIONER
BasePay                       101712.0
OvertimePay                        0.0
OtherPay                        1500.0
Benefits                           NaN
TotalPay                      103212.0
TotalPayBenefits              103212.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8886, dtype: object)
(8887, Id                                       8888
EmployeeName                        KENNY LIN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58089.5
OvertimePay                          31637.72
OtherPay                             13483.03
Benefits                                  NaN
TotalPay                            103210.25
TotalPayBenefits                    103210.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8887, dtype: object)
(8888, Id                                 8889
EmployeeName         LAURENCE KORNFIELD
JobTitle            DEPUTY DIRECTOR III
BasePay                        70721.42
OvertimePay                         0.0
OtherPay                       32487.75
Benefits                            NaN
TotalPay                      103209.17
TotalPayBenefits              103209.17
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8888, dtype: object)
(8889, Id                              8890
EmployeeName                 DON LAI
JobTitle            TRANSIT OPERATOR
BasePay                     65871.52
OvertimePay                 32120.99
OtherPay                     5216.29
Benefits                         NaN
TotalPay                    103208.8
TotalPayBenefits            103208.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8889, dtype: object)
(8890, Id                              8891
EmployeeName          JENNIFER BERKE
JobTitle            REGISTERED NURSE
BasePay                     95728.11
OvertimePay                  3292.27
OtherPay                     4188.07
Benefits                         NaN
TotalPay                   103208.45
TotalPayBenefits           103208.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8890, dtype: object)
(8891, Id                                                               8892
EmployeeName                                              DOUGLAS LEE
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                      89802.59
OvertimePay                                                  11404.62
OtherPay                                                       1998.0
Benefits                                                          NaN
TotalPay                                                    103205.21
TotalPayBenefits                                            103205.21
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 8891, dtype: object)
(8892, Id                                      8893
EmployeeName        PATRICIA DOWLING-TUCKETT
JobTitle                      COURT REPORTER
BasePay                             97823.06
OvertimePay                              0.0
OtherPay                             5379.57
Benefits                                 NaN
TotalPay                           103202.63
TotalPayBenefits                   103202.63
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 8892, dtype: object)
(8893, Id                                                   8894
EmployeeName                                   ALBERT LEE
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.49
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.49
TotalPayBenefits                                103197.49
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8893, dtype: object)
(8894, Id                                                   8895
EmployeeName                                   PAMELA JIN
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.46
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.46
TotalPayBenefits                                103197.46
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8894, dtype: object)
(8895, Id                                                   8896
EmployeeName                                MELINDA TYLER
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.43
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.43
TotalPayBenefits                                103197.43
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8895, dtype: object)
(8896, Id                                                   8897
EmployeeName                                 IMELDA REYES
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.42
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.42
TotalPayBenefits                                103197.42
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8896, dtype: object)
(8897, Id                                                   8898
EmployeeName                                PAULA STEWART
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.41
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.41
TotalPayBenefits                                103197.41
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8897, dtype: object)
(8898, Id                                                   8899
EmployeeName                                 EDWARD WALSH
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.41
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.41
TotalPayBenefits                                103197.41
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8898, dtype: object)
(8899, Id                                                   8900
EmployeeName                              ELIZABETH LEONG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.41
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.41
TotalPayBenefits                                103197.41
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8899, dtype: object)
(8900, Id                                                   8901
EmployeeName                                 JOSEPH OSSAI
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                          103197.4
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         103197.4
TotalPayBenefits                                 103197.4
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8900, dtype: object)
(8901, Id                                                   8902
EmployeeName                             LAWRENCE KESSLER
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.39
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.39
TotalPayBenefits                                103197.39
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8901, dtype: object)
(8902, Id                                                   8903
EmployeeName                                NADER SHATARA
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.18
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.18
TotalPayBenefits                                103197.18
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8902, dtype: object)
(8903, Id                                                   8904
EmployeeName                                 JANINE YOUNG
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103197.06
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103197.06
TotalPayBenefits                                103197.06
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8903, dtype: object)
(8904, Id                                8905
EmployeeName              FARES AMMARI
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    7129.55
OtherPay                       8002.96
Benefits                           NaN
TotalPay                     103194.51
TotalPayBenefits             103194.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8904, dtype: object)
(8905, Id                              8906
EmployeeName             SUE RAMIREZ
JobTitle            REGISTERED NURSE
BasePay                     91077.42
OvertimePay                   2564.1
OtherPay                     9541.68
Benefits                         NaN
TotalPay                    103183.2
TotalPayBenefits            103183.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8905, dtype: object)
(8906, Id                                        8907
EmployeeName                      KARIM MORADI
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               95547.26
OvertimePay                            5576.84
OtherPay                               2055.71
Benefits                                   NaN
TotalPay                             103179.81
TotalPayBenefits                     103179.81
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8906, dtype: object)
(8907, Id                             8908
EmployeeName         JOSEPH ABAD-JR
JobTitle            CLAIMS ADJUSTER
BasePay                    103167.8
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   103167.8
TotalPayBenefits           103167.8
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8907, dtype: object)
(8908, Id                                              8909
EmployeeName                          SHALANA WILLIS
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72546.18
OvertimePay                                 27392.42
OtherPay                                     3224.11
Benefits                                         NaN
TotalPay                                   103162.71
TotalPayBenefits                           103162.71
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8908, dtype: object)
(8909, Id                           8910
EmployeeName         KEVIN COOPER
JobTitle                  GLAZIER
BasePay                  77615.44
OvertimePay              21028.04
OtherPay                  4513.05
Benefits                      NaN
TotalPay                103156.53
TotalPayBenefits        103156.53
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8909, dtype: object)
(8910, Id                                 8911
EmployeeName                 ALBERT MAI
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73075.0
OvertimePay                    20760.83
OtherPay                        9312.21
Benefits                            NaN
TotalPay                      103148.04
TotalPayBenefits              103148.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8910, dtype: object)
(8911, Id                                                   8912
EmployeeName                                     KAREN YU
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         103147.71
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        103147.71
TotalPayBenefits                                103147.71
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8911, dtype: object)
(8912, Id                                             8913
EmployeeName                          ROBERT TAYLOR
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    74927.08
OvertimePay                                25927.48
OtherPay                                    2291.54
Benefits                                        NaN
TotalPay                                   103146.1
TotalPayBenefits                           103146.1
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8912, dtype: object)
(8913, Id                                               8914
EmployeeName                             DAVID FRENCH
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96684.8
OvertimePay                                   4528.17
OtherPay                                      1931.51
Benefits                                          NaN
TotalPay                                    103144.48
TotalPayBenefits                            103144.48
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8913, dtype: object)
(8914, Id                            8915
EmployeeName          STANLEY CHOY
JobTitle            DEPUTY SHERIFF
BasePay                   86840.04
OvertimePay                5501.69
OtherPay                  10800.94
Benefits                       NaN
TotalPay                 103142.67
TotalPayBenefits         103142.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8914, dtype: object)
(8915, Id                              8916
EmployeeName          TIFFANY GUNTER
JobTitle            POLICE OFFICER I
BasePay                     91828.19
OvertimePay                  3360.73
OtherPay                     7950.26
Benefits                         NaN
TotalPay                   103139.18
TotalPayBenefits           103139.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8915, dtype: object)
(8916, Id                                              8917
EmployeeName                              SUSAN CHOW
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73102.89
OvertimePay                                 25908.09
OtherPay                                     4116.84
Benefits                                         NaN
TotalPay                                   103127.82
TotalPayBenefits                           103127.82
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8916, dtype: object)
(8917, Id                                                              8918
EmployeeName                                               RENE GUBE
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     96881.93
OvertimePay                                                  2546.92
OtherPay                                                      3694.6
Benefits                                                         NaN
TotalPay                                                   103123.45
TotalPayBenefits                                           103123.45
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 8917, dtype: object)
(8918, Id                             8919
EmployeeName        WILLIE CRAWFORD
JobTitle                  MANAGER I
BasePay                   103115.65
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                  103115.65
TotalPayBenefits          103115.65
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8918, dtype: object)
(8919, Id                           8920
EmployeeName            SHERI LEE
JobTitle                MANAGER I
BasePay                 103100.79
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                103100.79
TotalPayBenefits        103100.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 8919, dtype: object)
(8920, Id                                  8921
EmployeeName                ANDREW WAYNE
JobTitle            SEWER SERVICE WORKER
BasePay                          84247.1
OvertimePay                     14569.64
OtherPay                         4283.27
Benefits                             NaN
TotalPay                       103100.01
TotalPayBenefits               103100.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8920, dtype: object)
(8921, Id                                                          8922
EmployeeName                                    GUILLERMO YBARRA
JobTitle            BUILDINGS AND GROUNDS MAINTENANCE SUPERVISOR
BasePay                                                 91650.85
OvertimePay                                              3981.16
OtherPay                                                 7462.95
Benefits                                                     NaN
TotalPay                                               103094.96
TotalPayBenefits                                       103094.96
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 8921, dtype: object)
(8922, Id                                  8923
EmployeeName               JOHN SCANNELL
JobTitle            SEWER SERVICE WORKER
BasePay                         85992.66
OvertimePay                     16937.28
OtherPay                          158.48
Benefits                             NaN
TotalPay                       103088.42
TotalPayBenefits               103088.42
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8922, dtype: object)
(8923, Id                             8924
EmployeeName        RONALDO CALDITO
JobTitle             DEPUTY SHERIFF
BasePay                    86840.05
OvertimePay                 4756.96
OtherPay                   11490.77
Benefits                        NaN
TotalPay                  103087.78
TotalPayBenefits          103087.78
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8923, dtype: object)
(8924, Id                                8925
EmployeeName              JIMMY CHEUNG
JobTitle            BUILDING INSPECTOR
BasePay                      101064.95
OvertimePay                        0.0
OtherPay                       2020.41
Benefits                           NaN
TotalPay                     103085.36
TotalPayBenefits             103085.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8924, dtype: object)
(8925, Id                                               8926
EmployeeName                               JOSE LIMON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       81606.4
OvertimePay                                  13440.96
OtherPay                                      8025.26
Benefits                                          NaN
TotalPay                                    103072.62
TotalPayBenefits                            103072.62
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8925, dtype: object)
(8926, Id                               8927
EmployeeName             ALBERT LEONG
JobTitle            HOUSING INSPECTOR
BasePay                      100697.0
OvertimePay                    362.06
OtherPay                       2013.2
Benefits                          NaN
TotalPay                    103072.26
TotalPayBenefits            103072.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8926, dtype: object)
(8927, Id                              8928
EmployeeName        JESSENIA RAMIREZ
JobTitle            REGISTERED NURSE
BasePay                      97204.4
OvertimePay                  2213.64
OtherPay                     3651.04
Benefits                         NaN
TotalPay                   103069.08
TotalPayBenefits           103069.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8927, dtype: object)
(8928, Id                                             8929
EmployeeName                         VIKTORIYA WISE
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                   103063.45
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                  103063.45
TotalPayBenefits                          103063.45
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 8928, dtype: object)
(8929, Id                              8930
EmployeeName             VINCENT LEE
JobTitle            TRANSIT OPERATOR
BasePay                     65720.69
OvertimePay                 34493.41
OtherPay                     2842.53
Benefits                         NaN
TotalPay                   103056.63
TotalPayBenefits           103056.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8929, dtype: object)
(8930, Id                              8931
EmployeeName        CHRISTINE GREENE
JobTitle            REGISTERED NURSE
BasePay                    101779.51
OvertimePay                      0.0
OtherPay                      1275.0
Benefits                         NaN
TotalPay                   103054.51
TotalPayBenefits           103054.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8930, dtype: object)
(8931, Id                                               8932
EmployeeName                          CHRISTOPHER XIE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96811.2
OvertimePay                                   4191.75
OtherPay                                       2050.0
Benefits                                          NaN
TotalPay                                    103052.95
TotalPayBenefits                            103052.95
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8931, dtype: object)
(8932, Id                                                      8933
EmployeeName                                 BEVERLY SHEPARD
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              87858.8
OvertimePay                                          6546.03
OtherPay                                             8641.07
Benefits                                                 NaN
TotalPay                                            103045.9
TotalPayBenefits                                    103045.9
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8932, dtype: object)
(8933, Id                            8934
EmployeeName        LORETTA NAJERA
JobTitle            COURT REPORTER
BasePay                   93677.38
OvertimePay                    0.0
OtherPay                   9367.74
Benefits                       NaN
TotalPay                 103045.12
TotalPayBenefits         103045.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8933, dtype: object)
(8934, Id                            8935
EmployeeName              TONY LAU
JobTitle            DEPUTY SHERIFF
BasePay                   80236.77
OvertimePay               18145.66
OtherPay                   4662.06
Benefits                       NaN
TotalPay                 103044.49
TotalPayBenefits         103044.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8934, dtype: object)
(8935, Id                              8936
EmployeeName                 LAI CHU
JobTitle            TRANSIT OPERATOR
BasePay                     64829.15
OvertimePay                 34646.69
OtherPay                     3566.82
Benefits                         NaN
TotalPay                   103042.66
TotalPayBenefits           103042.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8935, dtype: object)
(8936, Id                            8937
EmployeeName           DAVID FORDE
JobTitle            DEPUTY SHERIFF
BasePay                   86631.25
OvertimePay                4412.33
OtherPay                   11987.6
Benefits                       NaN
TotalPay                 103031.18
TotalPayBenefits         103031.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8936, dtype: object)
(8937, Id                              8938
EmployeeName        THOMAS BOOKER JR
JobTitle            TRANSIT OPERATOR
BasePay                      66370.7
OvertimePay                 33801.43
OtherPay                     2852.13
Benefits                         NaN
TotalPay                   103024.26
TotalPayBenefits           103024.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8937, dtype: object)
(8938, Id                                                8939
EmployeeName                           CAMERON MULLINS
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       84106.35
OvertimePay                                    13426.0
OtherPay                                       5490.22
Benefits                                           NaN
TotalPay                                     103022.57
TotalPayBenefits                             103022.57
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8938, dtype: object)
(8939, Id                            8940
EmployeeName        ROBERT JOHNSON
JobTitle                  ENGINEER
BasePay                  103008.41
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                 103008.41
TotalPayBenefits         103008.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8939, dtype: object)
(8940, Id                              8941
EmployeeName        SANTIAGO MONTOYA
JobTitle            TRANSIT OPERATOR
BasePay                     67767.27
OvertimePay                 33176.69
OtherPay                     2055.33
Benefits                         NaN
TotalPay                   102999.29
TotalPayBenefits           102999.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8940, dtype: object)
(8941, Id                                       8942
EmployeeName                      KELLY BURKE
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             102994.43
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            102994.43
TotalPayBenefits                    102994.43
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8941, dtype: object)
(8942, Id                                       8943
EmployeeName                     SANDIP PATEL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             102994.41
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            102994.41
TotalPayBenefits                    102994.41
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8942, dtype: object)
(8943, Id                              8944
EmployeeName          EITHNE CUMMINS
JobTitle            POLICE OFFICER I
BasePay                      96117.3
OvertimePay                   736.99
OtherPay                      6138.8
Benefits                         NaN
TotalPay                   102993.09
TotalPayBenefits           102993.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8943, dtype: object)
(8944, Id                                   8945
EmployeeName             ALEXANDER AQUINO
JobTitle            IS ENGINEER - JOURNEY
BasePay                          102990.4
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         102990.4
TotalPayBenefits                 102990.4
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8944, dtype: object)
(8945, Id                                       8946
EmployeeName              SUPRIYA SUNDARRAJAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             102984.31
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            102984.31
TotalPayBenefits                    102984.31
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8945, dtype: object)
(8946, Id                               8947
EmployeeName        VANDANA SUNDSTROM
JobTitle                    MANAGER I
BasePay                     102981.99
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    102981.99
TotalPayBenefits            102981.99
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8946, dtype: object)
(8947, Id                               8948
EmployeeName              MARY HOWARD
JobTitle            MAYORAL STAFF XVI
BasePay                     102240.83
OvertimePay                       0.0
OtherPay                        731.1
Benefits                          NaN
TotalPay                    102971.93
TotalPayBenefits            102971.93
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8947, dtype: object)
(8948, Id                              8949
EmployeeName             PAULA AVERY
JobTitle            REGISTERED NURSE
BasePay                     99066.03
OvertimePay                      0.0
OtherPay                     3891.67
Benefits                         NaN
TotalPay                    102957.7
TotalPayBenefits            102957.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8948, dtype: object)
(8949, Id                                               8950
EmployeeName                         LIAM FITZPATRICK
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.02
OvertimePay                                  15144.29
OtherPay                                      7972.79
Benefits                                          NaN
TotalPay                                     102937.1
TotalPayBenefits                             102937.1
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 8949, dtype: object)
(8950, Id                                 8951
EmployeeName                KEVIN ROCHE
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.04
OvertimePay                      185.24
OtherPay                        7168.23
Benefits                            NaN
TotalPay                      102929.51
TotalPayBenefits              102929.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8950, dtype: object)
(8951, Id                                       8952
EmployeeName                  JOHN ROLANDELLI
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              91858.01
OvertimePay                           3941.59
OtherPay                              7129.23
Benefits                                  NaN
TotalPay                            102928.83
TotalPayBenefits                    102928.83
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8951, dtype: object)
(8952, Id                                                   8953
EmployeeName                                   JEFF NALLE
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         102901.43
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        102901.43
TotalPayBenefits                                102901.43
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 8952, dtype: object)
(8953, Id                            8954
EmployeeName           MELVIN SONG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 5223.0
OtherPay                  10834.17
Benefits                       NaN
TotalPay                 102897.17
TotalPayBenefits         102897.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8953, dtype: object)
(8954, Id                              8955
EmployeeName              JIMMY CHIU
JobTitle            TRANSIT OPERATOR
BasePay                     64533.37
OvertimePay                 37904.53
OtherPay                      457.05
Benefits                         NaN
TotalPay                   102894.95
TotalPayBenefits           102894.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8954, dtype: object)
(8955, Id                                   8956
EmployeeName            CHARLES MELBOURNE
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           96252.0
OvertimePay                           0.0
OtherPay                          6633.01
Benefits                              NaN
TotalPay                        102885.01
TotalPayBenefits                102885.01
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8955, dtype: object)
(8956, Id                                                       8957
EmployeeName                                      DANIEL BORG
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                              86993.44
OvertimePay                                          15386.73
OtherPay                                                500.0
Benefits                                                  NaN
TotalPay                                            102880.17
TotalPayBenefits                                    102880.17
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 8956, dtype: object)
(8957, Id                              8958
EmployeeName             PIUS CHEUNG
JobTitle            TRANSIT OPERATOR
BasePay                     64975.88
OvertimePay                 37576.26
OtherPay                      328.03
Benefits                         NaN
TotalPay                   102880.17
TotalPayBenefits           102880.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8957, dtype: object)
(8958, Id                                              8959
EmployeeName                          JASON GALLEGOS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    102879.44
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   102879.44
TotalPayBenefits                           102879.44
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8958, dtype: object)
(8959, Id                                          8960
EmployeeName                          DIANA CHAN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                  99122.5
OvertimePay                              3756.49
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               102878.99
TotalPayBenefits                       102878.99
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8959, dtype: object)
(8960, Id                                   8961
EmployeeName        CHRISTOPHER SCHROEDER
JobTitle               BUILDING INSPECTOR
BasePay                          100861.6
OvertimePay                           0.0
OtherPay                          2016.29
Benefits                              NaN
TotalPay                        102877.89
TotalPayBenefits                102877.89
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 8960, dtype: object)
(8961, Id                             8962
EmployeeName          DANIEL WATSON
JobTitle            UTILITY PLUMBER
BasePay                    89771.88
OvertimePay                 1873.25
OtherPay                   11232.42
Benefits                        NaN
TotalPay                  102877.55
TotalPayBenefits          102877.55
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8961, dtype: object)
(8962, Id                                                8963
EmployeeName                                DENNIS DEA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.68
OvertimePay                                   21414.04
OtherPay                                       3882.65
Benefits                                           NaN
TotalPay                                     102877.37
TotalPayBenefits                             102877.37
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8962, dtype: object)
(8963, Id                                              8964
EmployeeName                   FRANCILE BAKER-MACKEY
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                      73458.0
OvertimePay                                 23219.55
OtherPay                                     6194.33
Benefits                                         NaN
TotalPay                                   102871.88
TotalPayBenefits                           102871.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 8963, dtype: object)
(8964, Id                             8965
EmployeeName        ISAIAS ZARAGOZA
JobTitle             DEPUTY SHERIFF
BasePay                    86506.04
OvertimePay                11263.45
OtherPay                    5100.21
Benefits                        NaN
TotalPay                   102869.7
TotalPayBenefits           102869.7
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8964, dtype: object)
(8965, Id                                         8966
EmployeeName                    ROBERT KERRIGAN
JobTitle            FISCAL SERVICES COORDINATOR
BasePay                                102835.2
OvertimePay                                 0.0
OtherPay                                  27.52
Benefits                                    NaN
TotalPay                              102862.72
TotalPayBenefits                      102862.72
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 8965, dtype: object)
(8966, Id                                                      8967
EmployeeName                                   RICK FRAGUERO
JobTitle            WATER AND POWER MAINTENANCE SUPERVISOR I
BasePay                                              91345.7
OvertimePay                                          3283.59
OtherPay                                             8232.31
Benefits                                                 NaN
TotalPay                                            102861.6
TotalPayBenefits                                    102861.6
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 8966, dtype: object)
(8967, Id                            8968
EmployeeName         LEONARD LAMUG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6165.47
OtherPay                    9853.7
Benefits                       NaN
TotalPay                 102859.17
TotalPayBenefits         102859.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8967, dtype: object)
(8968, Id                                 8969
EmployeeName        ANGELIQUE ANDREOZZI
JobTitle            COURT SUPERVISOR II
BasePay                       102835.26
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.26
TotalPayBenefits              102835.26
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8968, dtype: object)
(8969, Id                                 8970
EmployeeName            GIA ESPINOCILLA
JobTitle            COURT SUPERVISOR II
BasePay                       102835.25
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.25
TotalPayBenefits              102835.25
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8969, dtype: object)
(8970, Id                                 8971
EmployeeName            JEANETTE SANTOS
JobTitle            COURT SUPERVISOR II
BasePay                       102835.24
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.24
TotalPayBenefits              102835.24
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8970, dtype: object)
(8971, Id                                 8972
EmployeeName             ANTHONY GAVERO
JobTitle            COURT SUPERVISOR II
BasePay                       102835.23
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.23
TotalPayBenefits              102835.23
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8971, dtype: object)
(8972, Id                                 8973
EmployeeName                  NORA SHEA
JobTitle            COURT SUPERVISOR II
BasePay                       102835.23
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.23
TotalPayBenefits              102835.23
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8972, dtype: object)
(8973, Id                                 8974
EmployeeName                  DONNA LOK
JobTitle            COURT SUPERVISOR II
BasePay                       102835.22
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.22
TotalPayBenefits              102835.22
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8973, dtype: object)
(8974, Id                                 8975
EmployeeName               RANI EDWARDS
JobTitle            COURT SUPERVISOR II
BasePay                       102835.22
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.22
TotalPayBenefits              102835.22
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8974, dtype: object)
(8975, Id                                 8976
EmployeeName             MARIA GONZALEZ
JobTitle            COURT SUPERVISOR II
BasePay                       102835.21
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.21
TotalPayBenefits              102835.21
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8975, dtype: object)
(8976, Id                                 8977
EmployeeName          JENNIFER NGO-CHAN
JobTitle            COURT SUPERVISOR II
BasePay                       102835.21
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.21
TotalPayBenefits              102835.21
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8976, dtype: object)
(8977, Id                                 8978
EmployeeName              MAURA RAMIREZ
JobTitle            COURT SUPERVISOR II
BasePay                       102835.21
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102835.21
TotalPayBenefits              102835.21
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8977, dtype: object)
(8978, Id                                 8979
EmployeeName                YVETTE KING
JobTitle            COURT SUPERVISOR II
BasePay                        102835.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       102835.2
TotalPayBenefits               102835.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8978, dtype: object)
(8979, Id                                 8980
EmployeeName             SHANNON MARTIN
JobTitle            COURT SUPERVISOR II
BasePay                        102835.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       102835.2
TotalPayBenefits               102835.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8979, dtype: object)
(8980, Id                                 8981
EmployeeName              TELICIA LEWIS
JobTitle            COURT SUPERVISOR II
BasePay                        102835.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       102835.2
TotalPayBenefits               102835.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8980, dtype: object)
(8981, Id                                 8982
EmployeeName          ANAMARIA BIRDSONG
JobTitle            COURT SUPERVISOR II
BasePay                        102835.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       102835.2
TotalPayBenefits               102835.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8981, dtype: object)
(8982, Id                                         8983
EmployeeName                         DONALD LEE
JobTitle            FISCAL SERVICES COORDINATOR
BasePay                                102835.2
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               102835.2
TotalPayBenefits                       102835.2
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 8982, dtype: object)
(8983, Id                            8984
EmployeeName          SERGIO GOMEZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay               10819.09
OtherPay                   5158.49
Benefits                       NaN
TotalPay                 102817.59
TotalPayBenefits         102817.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8983, dtype: object)
(8984, Id                              8985
EmployeeName          DAPHNE LA ZARE
JobTitle            REGISTERED NURSE
BasePay                     101234.8
OvertimePay                   644.53
OtherPay                      924.27
Benefits                         NaN
TotalPay                    102803.6
TotalPayBenefits            102803.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8984, dtype: object)
(8985, Id                                8986
EmployeeName           WELLINGTON WONG
JobTitle            BUILDING INSPECTOR
BasePay                       102488.4
OvertimePay                        0.0
OtherPay                        314.37
Benefits                           NaN
TotalPay                     102802.77
TotalPayBenefits             102802.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 8985, dtype: object)
(8986, Id                               8987
EmployeeName             NICOLE JONES
JobTitle            POLICE OFFICER II
BasePay                      100040.0
OvertimePay                    457.25
OtherPay                      2296.47
Benefits                          NaN
TotalPay                    102793.72
TotalPayBenefits            102793.72
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8986, dtype: object)
(8987, Id                                  8988
EmployeeName             AZUNCION MONTEZ
JobTitle            CAR AND AUTO PAINTER
BasePay                         73952.05
OvertimePay                     17048.83
OtherPay                        11785.87
Benefits                             NaN
TotalPay                       102786.75
TotalPayBenefits               102786.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8987, dtype: object)
(8988, Id                              8989
EmployeeName         WILLIAM JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     66653.81
OvertimePay                 31911.25
OtherPay                     4216.87
Benefits                         NaN
TotalPay                   102781.93
TotalPayBenefits           102781.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 8988, dtype: object)
(8989, Id                                       8990
EmployeeName                       CONNIE CHU
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             102772.11
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            102772.11
TotalPayBenefits                    102772.11
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 8989, dtype: object)
(8990, Id                               8991
EmployeeName        ADORABLE MANGGANA
JobTitle             TRANSIT OPERATOR
BasePay                      67003.91
OvertimePay                  33462.28
OtherPay                      2296.29
Benefits                          NaN
TotalPay                    102762.48
TotalPayBenefits            102762.48
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 8990, dtype: object)
(8991, Id                             8992
EmployeeName        MICHAEL BOUVIER
JobTitle             DEPUTY SHERIFF
BasePay                    85343.74
OvertimePay                 8405.99
OtherPay                    9007.03
Benefits                        NaN
TotalPay                  102756.76
TotalPayBenefits          102756.76
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 8991, dtype: object)
(8992, Id                                                              8993
EmployeeName                                           ALLAN MATHIEU
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                      98015.0
OvertimePay                                                      0.0
OtherPay                                                     4738.04
Benefits                                                         NaN
TotalPay                                                   102753.04
TotalPayBenefits                                           102753.04
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 8992, dtype: object)
(8993, Id                            8994
EmployeeName        VALERIE MCGREW
JobTitle             COURT MANAGER
BasePay                   63546.02
OvertimePay                    0.0
OtherPay                   39203.8
Benefits                       NaN
TotalPay                 102749.82
TotalPayBenefits         102749.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 8993, dtype: object)
(8994, Id                                  8995
EmployeeName                 COLLIN WING
JobTitle            ELECTRICAL INSPECTOR
BasePay                         100048.2
OvertimePay                      1081.81
OtherPay                         1617.88
Benefits                             NaN
TotalPay                       102747.89
TotalPayBenefits               102747.89
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 8994, dtype: object)
(8995, Id                                 8996
EmployeeName               JOSEPH DAVIS
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.03
OvertimePay                         0.0
OtherPay                         7168.2
Benefits                            NaN
TotalPay                      102744.23
TotalPayBenefits              102744.23
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8995, dtype: object)
(8996, Id                                 8997
EmployeeName                JAMES BARRY
JobTitle            MAINTENANCE PLANNER
BasePay                         95576.0
OvertimePay                         0.0
OtherPay                        7168.22
Benefits                            NaN
TotalPay                      102744.22
TotalPayBenefits              102744.22
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 8996, dtype: object)
(8997, Id                                        8998
EmployeeName                      MICHAEL CHUE
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               96375.46
OvertimePay                            4305.81
OtherPay                               2062.79
Benefits                                   NaN
TotalPay                             102744.06
TotalPayBenefits                     102744.06
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 8997, dtype: object)
(8998, Id                                                8999
EmployeeName                          JOSELITO VIERNES
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77656.99
OvertimePay                                   16911.92
OtherPay                                       8173.24
Benefits                                           NaN
TotalPay                                     102742.15
TotalPayBenefits                             102742.15
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 8998, dtype: object)
(8999, Id                                          9000
EmployeeName                           JOHN LEON
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.22
OvertimePay                              2693.57
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               102732.79
TotalPayBenefits                       102732.79
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 8999, dtype: object)
(9000, Id                            9001
EmployeeName          JUAN GARRIDO
JobTitle            DEPUTY SHERIFF
BasePay                   86172.01
OvertimePay                14669.5
OtherPay                   1887.77
Benefits                       NaN
TotalPay                 102729.28
TotalPayBenefits         102729.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9000, dtype: object)
(9001, Id                               9002
EmployeeName        CRAIG CHERRINGTON
JobTitle               DEPUTY SHERIFF
BasePay                       86840.0
OvertimePay                   3431.93
OtherPay                     12446.21
Benefits                          NaN
TotalPay                    102718.14
TotalPayBenefits            102718.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9001, dtype: object)
(9002, Id                                 9003
EmployeeName            ANDRE NORMAN SR
JobTitle            TRANSIT CAR CLEANER
BasePay                        55735.74
OvertimePay                    38670.84
OtherPay                        8311.04
Benefits                            NaN
TotalPay                      102717.62
TotalPayBenefits              102717.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9002, dtype: object)
(9003, Id                             9004
EmployeeName        JAMES PETROVITS
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 3476.15
OtherPay                   12399.15
Benefits                        NaN
TotalPay                   102715.3
TotalPayBenefits           102715.3
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9003, dtype: object)
(9004, Id                                  9005
EmployeeName                  BRIAN CHOW
JobTitle            PLUMBER SUPERVISOR I
BasePay                        101029.48
OvertimePay                      1683.83
OtherPay                             0.0
Benefits                             NaN
TotalPay                       102713.31
TotalPayBenefits               102713.31
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9004, dtype: object)
(9005, Id                               9006
EmployeeName          ISABEL OLIVARES
JobTitle            HOUSING INSPECTOR
BasePay                      100697.2
OvertimePay                       0.0
OtherPay                       2013.4
Benefits                          NaN
TotalPay                     102710.6
TotalPayBenefits             102710.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9005, dtype: object)
(9006, Id                               9007
EmployeeName         STEPHEN MUNGOVAN
JobTitle            HOUSING INSPECTOR
BasePay                     100697.01
OvertimePay                       0.0
OtherPay                      2013.25
Benefits                          NaN
TotalPay                    102710.26
TotalPayBenefits            102710.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9006, dtype: object)
(9007, Id                           9008
EmployeeName            ERIK WARD
JobTitle                MANAGER I
BasePay                 102704.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                102704.12
TotalPayBenefits        102704.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9007, dtype: object)
(9008, Id                              9009
EmployeeName            JOHNNY HOANG
JobTitle            TRANSIT OPERATOR
BasePay                     68231.33
OvertimePay                 29917.78
OtherPay                     4553.27
Benefits                         NaN
TotalPay                   102702.38
TotalPayBenefits           102702.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9008, dtype: object)
(9009, Id                                9010
EmployeeName             MURAT BOZKURT
JobTitle            ASSOCIATE ENGINEER
BasePay                        97429.0
OvertimePay                        0.0
OtherPay                        5271.2
Benefits                           NaN
TotalPay                      102700.2
TotalPayBenefits              102700.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9009, dtype: object)
(9010, Id                                9011
EmployeeName               JOE GINORIO
JobTitle            TRANSIT SUPERVISOR
BasePay                       90094.21
OvertimePay                    8847.15
OtherPay                       3757.52
Benefits                           NaN
TotalPay                     102698.88
TotalPayBenefits             102698.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9010, dtype: object)
(9011, Id                                           9012
EmployeeName                         ALLEN HARMAN
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90470.52
OvertimePay                               9705.53
OtherPay                                  2517.22
Benefits                                      NaN
TotalPay                                102693.27
TotalPayBenefits                        102693.27
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9011, dtype: object)
(9012, Id                                 9013
EmployeeName               EDMON GILLIS
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72234.63
OvertimePay                    13661.71
OtherPay                       16787.45
Benefits                            NaN
TotalPay                      102683.79
TotalPayBenefits              102683.79
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9012, dtype: object)
(9013, Id                                9014
EmployeeName            AUGUSTO CANLAS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   10986.55
OtherPay                       3612.43
Benefits                           NaN
TotalPay                     102660.98
TotalPayBenefits             102660.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9013, dtype: object)
(9014, Id                                               9015
EmployeeName                             RUSSELL VOGL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   8548.05
OtherPay                                     14292.56
Benefits                                          NaN
TotalPay                                    102660.62
TotalPayBenefits                            102660.62
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9014, dtype: object)
(9015, Id                                 9016
EmployeeName                 LOIS DOBBS
JobTitle            COURT SUPERVISOR II
BasePay                       102656.44
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102656.44
TotalPayBenefits              102656.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9015, dtype: object)
(9016, Id                                              9017
EmployeeName                         ALISA HOLLANDER
JobTitle            SECRETARY TO THE PRESIDING JUDGE
BasePay                                     67631.84
OvertimePay                                      0.0
OtherPay                                    35024.28
Benefits                                         NaN
TotalPay                                   102656.12
TotalPayBenefits                           102656.12
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9016, dtype: object)
(9017, Id                                 9018
EmployeeName               GEORGE LEONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72417.34
OvertimePay                    21274.46
OtherPay                        8962.17
Benefits                            NaN
TotalPay                      102653.97
TotalPayBenefits              102653.97
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9017, dtype: object)
(9018, Id                                                     9019
EmployeeName                              PATRIZIA MARCUCCI
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78163.59
OvertimePay                                        14441.91
OtherPay                                           10037.35
Benefits                                                NaN
TotalPay                                          102642.85
TotalPayBenefits                                  102642.85
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9018, dtype: object)
(9019, Id                            9020
EmployeeName        MANCONIA GREEN
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               10165.31
OtherPay                   5965.26
Benefits                       NaN
TotalPay                 102636.58
TotalPayBenefits         102636.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9019, dtype: object)
(9020, Id                                                   9021
EmployeeName                                MARY FRESCHET
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         102613.92
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        102613.92
TotalPayBenefits                                102613.92
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9020, dtype: object)
(9021, Id                              9022
EmployeeName          CARMEN MCNULTY
JobTitle            REGISTERED NURSE
BasePay                     90086.05
OvertimePay                  2760.02
OtherPay                     9750.42
Benefits                         NaN
TotalPay                   102596.49
TotalPayBenefits           102596.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9021, dtype: object)
(9022, Id                                                9023
EmployeeName                                JEFFREY NG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   23098.07
OtherPay                                        1915.0
Benefits                                           NaN
TotalPay                                     102593.47
TotalPayBenefits                             102593.47
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9022, dtype: object)
(9023, Id                                                        9024
EmployeeName                                     MICHAEL SLANE
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                79864.5
OvertimePay                                            4944.76
OtherPay                                              17781.09
Benefits                                                   NaN
TotalPay                                             102590.35
TotalPayBenefits                                     102590.35
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9023, dtype: object)
(9024, Id                                       9025
EmployeeName                     JAMES CONGER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             102589.74
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            102589.74
TotalPayBenefits                    102589.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9024, dtype: object)
(9025, Id                                 9026
EmployeeName                DOLSON KWAN
JobTitle            SUPERVISING CHEMIST
BasePay                       102582.12
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102582.12
TotalPayBenefits              102582.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9025, dtype: object)
(9026, Id                              9027
EmployeeName        CHRISTINE ROCERO
JobTitle            REGISTERED NURSE
BasePay                    100440.88
OvertimePay                      0.0
OtherPay                     2129.62
Benefits                         NaN
TotalPay                    102570.5
TotalPayBenefits            102570.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9026, dtype: object)
(9027, Id                            9028
EmployeeName        EDDIE THOMPSON
JobTitle            DEPUTY SHERIFF
BasePay                   86003.35
OvertimePay               12340.37
OtherPay                   4220.16
Benefits                       NaN
TotalPay                 102563.88
TotalPayBenefits         102563.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9027, dtype: object)
(9028, Id                                9029
EmployeeName           EDWARD DONNELLY
JobTitle            BUILDING INSPECTOR
BasePay                       100861.6
OvertimePay                     762.55
OtherPay                        930.94
Benefits                           NaN
TotalPay                     102555.09
TotalPayBenefits             102555.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9028, dtype: object)
(9029, Id                            9030
EmployeeName         ADRIAN LARKIN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                7193.43
OtherPay                   8508.55
Benefits                       NaN
TotalPay                 102541.98
TotalPayBenefits         102541.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9029, dtype: object)
(9030, Id                              9031
EmployeeName              JESSE CRUZ
JobTitle            POLICE OFFICER I
BasePay                     85468.95
OvertimePay                   6066.5
OtherPay                    11003.37
Benefits                         NaN
TotalPay                   102538.82
TotalPayBenefits           102538.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9030, dtype: object)
(9031, Id                            9032
EmployeeName          LINDA HENSON
JobTitle            SAFETY ANALYST
BasePay                   102538.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  102538.5
TotalPayBenefits          102538.5
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9031, dtype: object)
(9032, Id                                  9033
EmployeeName                AL SANGIMINO
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         73702.28
OvertimePay                     22708.93
OtherPay                         6126.15
Benefits                             NaN
TotalPay                       102537.36
TotalPayBenefits               102537.36
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9032, dtype: object)
(9033, Id                                   9034
EmployeeName        NADINE KHOURY-QUESADA
JobTitle                 REGISTERED NURSE
BasePay                          101587.2
OvertimePay                           0.0
OtherPay                            950.0
Benefits                              NaN
TotalPay                         102537.2
TotalPayBenefits                 102537.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9033, dtype: object)
(9034, Id                               9035
EmployeeName        BERNARD BROUGHTON
JobTitle             TRANSIT OPERATOR
BasePay                      65888.64
OvertimePay                  34705.27
OtherPay                      1941.12
Benefits                          NaN
TotalPay                    102535.03
TotalPayBenefits            102535.03
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9034, dtype: object)
(9035, Id                                  9036
EmployeeName            MICHAEL TOMPKINS
JobTitle            ELECTRICAL INSPECTOR
BasePay                        100048.21
OvertimePay                      2479.83
OtherPay                             0.0
Benefits                             NaN
TotalPay                       102528.04
TotalPayBenefits               102528.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9035, dtype: object)
(9036, Id                            9037
EmployeeName        JEFFREY STATEN
JobTitle                   PLUMBER
BasePay                    89916.8
OvertimePay                11580.2
OtherPay                    1030.0
Benefits                       NaN
TotalPay                  102527.0
TotalPayBenefits          102527.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9036, dtype: object)
(9037, Id                            9038
EmployeeName          NADER DAJANI
JobTitle            DEPUTY SHERIFF
BasePay                   86402.46
OvertimePay                9015.35
OtherPay                   7108.49
Benefits                       NaN
TotalPay                  102526.3
TotalPayBenefits          102526.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9037, dtype: object)
(9038, Id                                              9039
EmployeeName                          DANIEL COLEMAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    102521.15
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   102521.15
TotalPayBenefits                           102521.15
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9038, dtype: object)
(9039, Id                              9040
EmployeeName               GLEN CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     67811.56
OvertimePay                 33789.76
OtherPay                      914.56
Benefits                         NaN
TotalPay                   102515.88
TotalPayBenefits           102515.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9039, dtype: object)
(9040, Id                                             9041
EmployeeName                           BRANDI BENAS
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                     73255.9
OvertimePay                                23634.46
OtherPay                                    5619.12
Benefits                                        NaN
TotalPay                                  102509.48
TotalPayBenefits                          102509.48
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 9040, dtype: object)
(9041, Id                              9042
EmployeeName            TIMOTHY JACK
JobTitle            TRANSIT OPERATOR
BasePay                     64384.59
OvertimePay                 35800.46
OtherPay                      2321.9
Benefits                         NaN
TotalPay                   102506.95
TotalPayBenefits           102506.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9041, dtype: object)
(9042, Id                              9043
EmployeeName        STEPHANIE FELDER
JobTitle            HEALTH WORKER IV
BasePay                     67378.66
OvertimePay                 23448.52
OtherPay                    11673.91
Benefits                         NaN
TotalPay                   102501.09
TotalPayBenefits           102501.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9042, dtype: object)
(9043, Id                                   9044
EmployeeName                    SIMOUN SY
JobTitle            IS ENGINEER - JOURNEY
BasePay                         102495.62
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        102495.62
TotalPayBenefits                102495.62
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9043, dtype: object)
(9044, Id                                9045
EmployeeName                KIRK MEANS
JobTitle            BUILDING INSPECTOR
BasePay                        97608.0
OvertimePay                        0.0
OtherPay                       4881.58
Benefits                           NaN
TotalPay                     102489.58
TotalPayBenefits             102489.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9044, dtype: object)
(9045, Id                              9046
EmployeeName                JAMES HO
JobTitle            TRANSIT OPERATOR
BasePay                     65962.46
OvertimePay                 35184.97
OtherPay                      1333.2
Benefits                         NaN
TotalPay                   102480.63
TotalPayBenefits           102480.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9045, dtype: object)
(9046, Id                            9047
EmployeeName         NORMAN BUSTOS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                8436.85
OtherPay                   7522.67
Benefits                       NaN
TotalPay                 102465.52
TotalPayBenefits         102465.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9046, dtype: object)
(9047, Id                                   9048
EmployeeName               JENNIFER SUNGA
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          87954.02
OvertimePay                       5014.84
OtherPay                          9495.08
Benefits                              NaN
TotalPay                        102463.94
TotalPayBenefits                102463.94
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9047, dtype: object)
(9048, Id                                           9049
EmployeeName                        DALIA ROSENDO
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.08
TotalPayBenefits                        102461.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9048, dtype: object)
(9049, Id                                           9050
EmployeeName                         JAMES ARAGON
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.05
TotalPayBenefits                        102461.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9049, dtype: object)
(9050, Id                                           9051
EmployeeName                          SCOTT MINTY
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.03
TotalPayBenefits                        102461.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9050, dtype: object)
(9051, Id                                           9052
EmployeeName                   GERALDINE SILVERIO
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.03
TotalPayBenefits                        102461.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9051, dtype: object)
(9052, Id                                           9053
EmployeeName                      STEPHANIE ROSSI
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.01
TotalPayBenefits                        102461.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9052, dtype: object)
(9053, Id                                           9054
EmployeeName                    CHARLENE SCANNELL
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.01
TotalPayBenefits                        102461.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9053, dtype: object)
(9054, Id                                           9055
EmployeeName                            DAVID JUE
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.01
TotalPayBenefits                        102461.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9054, dtype: object)
(9055, Id                                           9056
EmployeeName                      TRACY YAMAGUCHI
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                 102461.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                102461.01
TotalPayBenefits                        102461.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9055, dtype: object)
(9056, Id                                           9057
EmployeeName                       NATALIE TOLEDO
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  102461.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 102461.0
TotalPayBenefits                         102461.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9056, dtype: object)
(9057, Id                                           9058
EmployeeName                     CARLOS HERNANDEZ
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  102461.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 102461.0
TotalPayBenefits                         102461.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9057, dtype: object)
(9058, Id                                           9059
EmployeeName                        ADRIAN HARRIS
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  102461.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 102461.0
TotalPayBenefits                         102461.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9058, dtype: object)
(9059, Id                            9060
EmployeeName        GREGG SHIMAURA
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                4459.77
OtherPay                  11488.65
Benefits                       NaN
TotalPay                 102454.42
TotalPayBenefits         102454.42
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9059, dtype: object)
(9060, Id                                9061
EmployeeName              BRETT HOWARD
JobTitle            BUILDING INSPECTOR
BasePay                        98650.7
OvertimePay                     1105.7
OtherPay                        2692.8
Benefits                           NaN
TotalPay                      102449.2
TotalPayBenefits              102449.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9060, dtype: object)
(9061, Id                              9062
EmployeeName             ALTA MONROE
JobTitle            REGISTERED NURSE
BasePay                     70290.25
OvertimePay                 30508.94
OtherPay                     1643.27
Benefits                         NaN
TotalPay                   102442.46
TotalPayBenefits           102442.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9061, dtype: object)
(9062, Id                                9063
EmployeeName              ROBERT POWER
JobTitle            BUILDING INSPECTOR
BasePay                      102285.05
OvertimePay                     152.51
OtherPay                           0.0
Benefits                           NaN
TotalPay                     102437.56
TotalPayBenefits             102437.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9062, dtype: object)
(9063, Id                                                               9064
EmployeeName                                                  PAUL KO
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      82170.43
OvertimePay                                                   8004.43
OtherPay                                                     12257.16
Benefits                                                          NaN
TotalPay                                                    102432.02
TotalPayBenefits                                            102432.02
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 9063, dtype: object)
(9064, Id                                9065
EmployeeName                JOHN PRETE
JobTitle            ASSOCIATE ENGINEER
BasePay                       100803.8
OvertimePay                        0.0
OtherPay                        1626.7
Benefits                           NaN
TotalPay                      102430.5
TotalPayBenefits              102430.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9064, dtype: object)
(9065, Id                            9066
EmployeeName        DAVID ADDLEMAN
JobTitle                   PLUMBER
BasePay                   92142.01
OvertimePay                  74.93
OtherPay                  10204.15
Benefits                       NaN
TotalPay                 102421.09
TotalPayBenefits         102421.09
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9065, dtype: object)
(9066, Id                              9067
EmployeeName             ELMER LOPEZ
JobTitle            TRANSIT OPERATOR
BasePay                     66940.45
OvertimePay                 35428.25
OtherPay                       43.31
Benefits                         NaN
TotalPay                   102412.01
TotalPayBenefits           102412.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9066, dtype: object)
(9067, Id                                       9068
EmployeeName                     RAUL VELASCO
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.59
OvertimePay                               0.0
OtherPay                                990.0
Benefits                                  NaN
TotalPay                            102408.59
TotalPayBenefits                    102408.59
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9067, dtype: object)
(9068, Id                                                     9069
EmployeeName                                ANASTACIA BYRNE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77720.08
OvertimePay                                        15455.57
OtherPay                                            9227.06
Benefits                                                NaN
TotalPay                                          102402.71
TotalPayBenefits                                  102402.71
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9068, dtype: object)
(9069, Id                                               9070
EmployeeName                           MIKE MCGLINCHY
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    2311.2
OtherPay                                       1075.5
Benefits                                          NaN
TotalPay                                     102401.1
TotalPayBenefits                             102401.1
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9069, dtype: object)
(9070, Id                             9071
EmployeeName         ROBERT SARI JR
JobTitle            UTILITY PLUMBER
BasePay                     86130.8
OvertimePay                14908.53
OtherPay                     1358.3
Benefits                        NaN
TotalPay                  102397.63
TotalPayBenefits          102397.63
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9070, dtype: object)
(9071, Id                            9072
EmployeeName          JUAN GUITRON
JobTitle            DEPUTY SHERIFF
BasePay                   86313.49
OvertimePay                7398.28
OtherPay                   8684.99
Benefits                       NaN
TotalPay                 102396.76
TotalPayBenefits         102396.76
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9071, dtype: object)
(9072, Id                               9073
EmployeeName        CHRISTINA FOUSHEE
JobTitle                NURSE MANAGER
BasePay                      96454.03
OvertimePay                       0.0
OtherPay                      5923.91
Benefits                          NaN
TotalPay                    102377.94
TotalPayBenefits            102377.94
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9072, dtype: object)
(9073, Id                                       9074
EmployeeName                    CESAR MURILLO
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              93667.21
OvertimePay                           2816.33
OtherPay                              5888.12
Benefits                                  NaN
TotalPay                            102371.66
TotalPayBenefits                    102371.66
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9073, dtype: object)
(9074, Id                            9075
EmployeeName           JOHNNY FUNG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                3222.41
OtherPay                  12304.79
Benefits                       NaN
TotalPay                  102367.2
TotalPayBenefits          102367.2
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9074, dtype: object)
(9075, Id                            9076
EmployeeName        MARIA MAVRIDIS
JobTitle             SPECIAL NURSE
BasePay                   99233.51
OvertimePay                    0.0
OtherPay                   3129.86
Benefits                       NaN
TotalPay                 102363.37
TotalPayBenefits         102363.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9075, dtype: object)
(9076, Id                                           9077
EmployeeName                           CARL SPIRZ
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  85245.16
OvertimePay                              15280.85
OtherPay                                  1834.35
Benefits                                      NaN
TotalPay                                102360.36
TotalPayBenefits                        102360.36
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9076, dtype: object)
(9077, Id                                              9078
EmployeeName                             DIANE KENNY
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.96
OvertimePay                                   965.74
OtherPay                                      5738.3
Benefits                                         NaN
TotalPay                                    102358.0
TotalPayBenefits                            102358.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9077, dtype: object)
(9078, Id                                               9079
EmployeeName                             JONATHAN LEW
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96033.6
OvertimePay                                   6324.07
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    102357.67
TotalPayBenefits                            102357.67
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9078, dtype: object)
(9079, Id                                              9080
EmployeeName                          HENRY MCKENZIE
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                      88837.0
OvertimePay                                  8180.01
OtherPay                                     5330.21
Benefits                                         NaN
TotalPay                                   102347.22
TotalPayBenefits                           102347.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9079, dtype: object)
(9080, Id                              9081
EmployeeName            RENE CHANDON
JobTitle            REGISTERED NURSE
BasePay                    101711.84
OvertimePay                      0.0
OtherPay                      629.17
Benefits                         NaN
TotalPay                   102341.01
TotalPayBenefits           102341.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9080, dtype: object)
(9081, Id                               9082
EmployeeName        ERNESTO VELASQUEZ
JobTitle             TRANSIT OPERATOR
BasePay                      64262.38
OvertimePay                  35324.37
OtherPay                      2751.46
Benefits                          NaN
TotalPay                    102338.21
TotalPayBenefits            102338.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9081, dtype: object)
(9082, Id                                9083
EmployeeName          SALVADOR GARNICA
JobTitle            TRANSIT SUPERVISOR
BasePay                       67755.24
OvertimePay                   30716.43
OtherPay                       3862.93
Benefits                           NaN
TotalPay                      102334.6
TotalPayBenefits              102334.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9082, dtype: object)
(9083, Id                           9084
EmployeeName             LING HSU
JobTitle                MANAGER I
BasePay                 102318.14
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                102318.14
TotalPayBenefits        102318.14
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9083, dtype: object)
(9084, Id                            9085
EmployeeName           ALVIS WOODS
JobTitle            DEPUTY SHERIFF
BasePay                   86840.04
OvertimePay                9488.94
OtherPay                   5985.32
Benefits                       NaN
TotalPay                  102314.3
TotalPayBenefits          102314.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9084, dtype: object)
(9085, Id                                              9086
EmployeeName                               PING SHOU
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    102307.27
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   102307.27
TotalPayBenefits                           102307.27
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9085, dtype: object)
(9086, Id                            9087
EmployeeName         DOUGLAS JONES
JobTitle            DEPUTY SHERIFF
BasePay                   79492.03
OvertimePay                15186.9
OtherPay                   7625.22
Benefits                       NaN
TotalPay                 102304.15
TotalPayBenefits         102304.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9086, dtype: object)
(9087, Id                              9088
EmployeeName        NICHOLAS NARANJO
JobTitle              DEPUTY SHERIFF
BasePay                     86506.04
OvertimePay                 11092.67
OtherPay                     4703.94
Benefits                         NaN
TotalPay                   102302.65
TotalPayBenefits           102302.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9087, dtype: object)
(9088, Id                                       9089
EmployeeName                     GEORGE SUTER
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              101418.6
OvertimePay                               0.0
OtherPay                                875.0
Benefits                                  NaN
TotalPay                             102293.6
TotalPayBenefits                     102293.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9088, dtype: object)
(9089, Id                                9090
EmployeeName             JOSEPH HICKEY
JobTitle            TRANSIT SUPERVISOR
BasePay                       85591.62
OvertimePay                   13480.58
OtherPay                       3220.53
Benefits                           NaN
TotalPay                     102292.73
TotalPayBenefits             102292.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9089, dtype: object)
(9090, Id                                9091
EmployeeName        WILLIAM TUIASOSOPO
JobTitle                DEPUTY SHERIFF
BasePay                       86840.01
OvertimePay                    9181.38
OtherPay                       6263.79
Benefits                           NaN
TotalPay                     102285.18
TotalPayBenefits             102285.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9090, dtype: object)
(9091, Id                                   9092
EmployeeName              TERRY MARQUARDT
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.02
OvertimePay                         88.51
OtherPay                          5940.33
Benefits                              NaN
TotalPay                        102280.86
TotalPayBenefits                102280.86
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9091, dtype: object)
(9092, Id                                          9093
EmployeeName                     MANISHA MAHAJAN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100038.57
OvertimePay                                  0.0
OtherPay                                  2240.0
Benefits                                     NaN
TotalPay                               102278.57
TotalPayBenefits                       102278.57
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9092, dtype: object)
(9093, Id                                 9094
EmployeeName               JOEL PRATHER
JobTitle            MAINTENANCE PLANNER
BasePay                        96232.51
OvertimePay                      2494.8
OtherPay                        3548.34
Benefits                            NaN
TotalPay                      102275.65
TotalPayBenefits              102275.65
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9093, dtype: object)
(9094, Id                                 9095
EmployeeName             REBECCA MORROW
JobTitle            PUBLIC HEALTH NURSE
BasePay                        98219.39
OvertimePay                         0.0
OtherPay                        4053.99
Benefits                            NaN
TotalPay                      102273.38
TotalPayBenefits              102273.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9094, dtype: object)
(9095, Id                                                               9096
EmployeeName                                             CAROL STUART
JobTitle            SENIOR CLAIMS INVESTIGATOR,CITY ATTORNEY'S OFFICE
BasePay                                                     102271.12
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                    102271.12
TotalPayBenefits                                            102271.12
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 9095, dtype: object)
(9096, Id                                                          9097
EmployeeName                                         LANN WILDER
JobTitle            EMERGENCY MEDICAL SERVICES AGENCY SPECIALIST
BasePay                                                101395.98
OvertimePay                                                  0.0
OtherPay                                                  864.66
Benefits                                                     NaN
TotalPay                                               102260.64
TotalPayBenefits                                       102260.64
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 9096, dtype: object)
(9097, Id                                9098
EmployeeName              KEITH MATHER
JobTitle            BUILDING INSPECTOR
BasePay                      100251.55
OvertimePay                        0.0
OtherPay                       2004.15
Benefits                           NaN
TotalPay                      102255.7
TotalPayBenefits              102255.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9097, dtype: object)
(9098, Id                                                9099
EmployeeName                                 DAVID HOE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        70901.3
OvertimePay                                   27209.87
OtherPay                                       4130.95
Benefits                                           NaN
TotalPay                                     102242.12
TotalPayBenefits                             102242.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9098, dtype: object)
(9099, Id                                              9100
EmployeeName                           OLLIE BLANTON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     102231.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    102231.6
TotalPayBenefits                            102231.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9099, dtype: object)
(9100, Id                              9101
EmployeeName          VANESSA REMHOF
JobTitle            REGISTERED NURSE
BasePay                    100563.03
OvertimePay                      0.0
OtherPay                     1665.65
Benefits                         NaN
TotalPay                   102228.68
TotalPayBenefits           102228.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9100, dtype: object)
(9101, Id                              9102
EmployeeName               WAYNE LAI
JobTitle            REGISTERED NURSE
BasePay                      93722.6
OvertimePay                  7025.44
OtherPay                     1479.66
Benefits                         NaN
TotalPay                    102227.7
TotalPayBenefits            102227.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9101, dtype: object)
(9102, Id                                            9103
EmployeeName                        TERESA GUILLEN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94517.07
OvertimePay                                3119.06
OtherPay                                   4589.56
Benefits                                       NaN
TotalPay                                 102225.69
TotalPayBenefits                         102225.69
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9102, dtype: object)
(9103, Id                                    9104
EmployeeName        ANGEL DEWITT-HERNANDEZ
JobTitle                  REGISTERED NURSE
BasePay                           88563.24
OvertimePay                        3615.52
OtherPay                          10035.89
Benefits                               NaN
TotalPay                         102214.65
TotalPayBenefits                 102214.65
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9103, dtype: object)
(9104, Id                                              9105
EmployeeName                            KENNETH SAPP
JobTitle            AUTOMOTIVE MECHANIC SUPERVISOR I
BasePay                                     96346.95
OvertimePay                                  5205.66
OtherPay                                       660.0
Benefits                                         NaN
TotalPay                                   102212.61
TotalPayBenefits                           102212.61
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9104, dtype: object)
(9105, Id                            9106
EmployeeName         KENNETH LOMBA
JobTitle            DEPUTY SHERIFF
BasePay                   74670.13
OvertimePay               19363.39
OtherPay                   8175.48
Benefits                       NaN
TotalPay                  102209.0
TotalPayBenefits          102209.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9105, dtype: object)
(9106, Id                                9107
EmployeeName                 GREG HILL
JobTitle            PLUMBING INSPECTOR
BasePay                       97324.83
OvertimePay                        0.0
OtherPay                       4867.31
Benefits                           NaN
TotalPay                     102192.14
TotalPayBenefits             102192.14
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9106, dtype: object)
(9107, Id                                 9108
EmployeeName        MARIA ALIAKRINSKAIA
JobTitle               REGISTERED NURSE
BasePay                        88446.26
OvertimePay                     1067.85
OtherPay                       12669.17
Benefits                            NaN
TotalPay                      102183.28
TotalPayBenefits              102183.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9107, dtype: object)
(9108, Id                                 9109
EmployeeName             PAIGE ALDERETE
JobTitle            SUPERVISING AUDITOR
BasePay                       102174.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      102174.36
TotalPayBenefits              102174.36
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9108, dtype: object)
(9109, Id                                      9110
EmployeeName                      KEVIN QUAN
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                              99150.0
OvertimePay                          3011.66
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           102161.66
TotalPayBenefits                   102161.66
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9109, dtype: object)
(9110, Id                              9111
EmployeeName             YOSSEF AZIM
JobTitle            POLICE OFFICER I
BasePay                     86057.94
OvertimePay                  6518.33
OtherPay                     9580.93
Benefits                         NaN
TotalPay                    102157.2
TotalPayBenefits            102157.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9110, dtype: object)
(9111, Id                                      9112
EmployeeName               EARNEST DOZIER-JR
JobTitle            POWER PLANT SUPERVISOR I
BasePay                             88446.84
OvertimePay                          7956.06
OtherPay                             5742.73
Benefits                                 NaN
TotalPay                           102145.63
TotalPayBenefits                   102145.63
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9111, dtype: object)
(9112, Id                               9113
EmployeeName               JOSE LOPEZ
JobTitle            HOUSING INSPECTOR
BasePay                     100697.31
OvertimePay                    325.86
OtherPay                      1117.44
Benefits                          NaN
TotalPay                    102140.61
TotalPayBenefits            102140.61
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9112, dtype: object)
(9113, Id                              9114
EmployeeName            DANIEL ADAMS
JobTitle            MAYORAL STAFF XV
BasePay                    100509.88
OvertimePay                      0.0
OtherPay                     1627.98
Benefits                         NaN
TotalPay                   102137.86
TotalPayBenefits           102137.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9113, dtype: object)
(9114, Id                            9115
EmployeeName         JORGE CARMONA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay                8396.76
OtherPay                    6895.4
Benefits                       NaN
TotalPay                 102132.18
TotalPayBenefits         102132.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9114, dtype: object)
(9115, Id                                          9116
EmployeeName                   DESMOND FERNANDES
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                               2088.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                102127.2
TotalPayBenefits                        102127.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9115, dtype: object)
(9116, Id                                 9117
EmployeeName        GORDON HALVERSON JR
JobTitle                UTILITY PLUMBER
BasePay                        86828.72
OvertimePay                     7765.44
OtherPay                        7528.28
Benefits                            NaN
TotalPay                      102122.44
TotalPayBenefits              102122.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9116, dtype: object)
(9117, Id                                         9118
EmployeeName                       IRENE AQUINO
JobTitle            ARCHITECTURAL ADMINISTRATOR
BasePay                                102121.3
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               102121.3
TotalPayBenefits                       102121.3
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9117, dtype: object)
(9118, Id                                                     9119
EmployeeName                                DEBORA ZAMBRANO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78162.43
OvertimePay                                         17563.1
OtherPay                                            6392.43
Benefits                                                NaN
TotalPay                                          102117.96
TotalPayBenefits                                  102117.96
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9118, dtype: object)
(9119, Id                                    9120
EmployeeName                 THOMAS TAYLOR
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           98807.44
OvertimePay                            0.0
OtherPay                           3302.32
Benefits                               NaN
TotalPay                         102109.76
TotalPayBenefits                 102109.76
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9119, dtype: object)
(9120, Id                            9121
EmployeeName         RAYMOND ESPIL
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                9283.53
OtherPay                   5985.29
Benefits                       NaN
TotalPay                 102108.82
TotalPayBenefits         102108.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9120, dtype: object)
(9121, Id                                         9122
EmployeeName                        RICHARD GEE
JobTitle            ARCHITECTURAL ADMINISTRATOR
BasePay                               102106.76
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              102106.76
TotalPayBenefits                      102106.76
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9121, dtype: object)
(9122, Id                                9123
EmployeeName        MICHAEL MARAVIGLIA
JobTitle                   ELECTRICIAN
BasePay                       89331.62
OvertimePay                    6125.75
OtherPay                        6642.9
Benefits                           NaN
TotalPay                     102100.27
TotalPayBenefits             102100.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9122, dtype: object)
(9123, Id                                                     9124
EmployeeName                                     HOWARD COE
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            86994.86
OvertimePay                                         8647.56
OtherPay                                            6441.17
Benefits                                                NaN
TotalPay                                          102083.59
TotalPayBenefits                                  102083.59
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9123, dtype: object)
(9124, Id                                          9125
EmployeeName                     SAFIRA DE SOUZA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100038.58
OvertimePay                                  0.0
OtherPay                                  2030.0
Benefits                                     NaN
TotalPay                               102068.58
TotalPayBenefits                       102068.58
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9124, dtype: object)
(9125, Id                              9126
EmployeeName            KEVIN CALVIO
JobTitle            TRANSIT OPERATOR
BasePay                     65563.32
OvertimePay                 34453.27
OtherPay                     2044.64
Benefits                         NaN
TotalPay                   102061.23
TotalPayBenefits           102061.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9125, dtype: object)
(9126, Id                                              9127
EmployeeName                           KURIAN JOSEPH
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    102059.04
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   102059.04
TotalPayBenefits                           102059.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9126, dtype: object)
(9127, Id                                9128
EmployeeName              VIVIAN HUANG
JobTitle            BUILDING INSPECTOR
BasePay                       97189.11
OvertimePay                        0.0
OtherPay                       4860.57
Benefits                           NaN
TotalPay                     102049.68
TotalPayBenefits             102049.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9127, dtype: object)
(9128, Id                              9129
EmployeeName          KATHLEEN MYLAN
JobTitle            REGISTERED NURSE
BasePay                     88958.53
OvertimePay                  2076.38
OtherPay                    11014.49
Benefits                         NaN
TotalPay                    102049.4
TotalPayBenefits            102049.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9128, dtype: object)
(9129, Id                                               9130
EmployeeName                           ROBERT SPENCER
JobTitle            PRINCIPAL REAL PROPERTY APPRAISER
BasePay                                      99945.17
OvertimePay                                       0.0
OtherPay                                       2100.0
Benefits                                          NaN
TotalPay                                    102045.17
TotalPayBenefits                            102045.17
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9129, dtype: object)
(9130, Id                            9131
EmployeeName        DAVID BRUZZONE
JobTitle               FIREFIGHTER
BasePay                   58156.25
OvertimePay               21709.08
OtherPay                  22147.53
Benefits                       NaN
TotalPay                 102012.86
TotalPayBenefits         102012.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9130, dtype: object)
(9131, Id                           9132
EmployeeName          GARY LOWMAN
JobTitle                  PLUMBER
BasePay                   91551.6
OvertimePay               8344.56
OtherPay                   2100.0
Benefits                      NaN
TotalPay                101996.16
TotalPayBenefits        101996.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9131, dtype: object)
(9132, Id                                              9133
EmployeeName                          DAVID DIFRANCO
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                      95654.0
OvertimePay                                   603.58
OtherPay                                     5738.25
Benefits                                         NaN
TotalPay                                   101995.83
TotalPayBenefits                           101995.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9132, dtype: object)
(9133, Id                             9134
EmployeeName        HARRY JUBAR III
JobTitle             DEPUTY SHERIFF
BasePay                    86838.76
OvertimePay                 4777.75
OtherPay                   10378.33
Benefits                        NaN
TotalPay                  101994.84
TotalPayBenefits          101994.84
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9133, dtype: object)
(9134, Id                                               9135
EmployeeName                           JACOB PULICKAL
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96423.04
OvertimePay                                   5484.07
OtherPay                                         85.0
Benefits                                          NaN
TotalPay                                    101992.11
TotalPayBenefits                            101992.11
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9134, dtype: object)
(9135, Id                            9136
EmployeeName        RONALD MALABED
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay               10775.78
OtherPay                   4372.86
Benefits                       NaN
TotalPay                 101988.66
TotalPayBenefits         101988.66
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9135, dtype: object)
(9136, Id                                            9137
EmployeeName                       SUSAN TENSFELDT
JobTitle            SENIOR WATER SERVICE INSPECTOR
BasePay                                  101987.61
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                 101987.61
TotalPayBenefits                         101987.61
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9136, dtype: object)
(9137, Id                                               9138
EmployeeName                   ANTONE PARASCANDOLO JR
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       95839.2
OvertimePay                                    5686.2
OtherPay                                        460.0
Benefits                                          NaN
TotalPay                                     101985.4
TotalPayBenefits                             101985.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9137, dtype: object)
(9138, Id                                               9139
EmployeeName                           ANTHONY LAMELL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      86894.56
OvertimePay                                   8570.51
OtherPay                                      6517.22
Benefits                                          NaN
TotalPay                                    101982.29
TotalPayBenefits                            101982.29
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9138, dtype: object)
(9139, Id                                              9140
EmployeeName                            AYANA MALONE
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     62692.69
OvertimePay                                 38193.44
OtherPay                                     1093.08
Benefits                                         NaN
TotalPay                                   101979.21
TotalPayBenefits                           101979.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9139, dtype: object)
(9140, Id                            9141
EmployeeName        ROLAND DOWDELL
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                4166.85
OtherPay                  10965.03
Benefits                       NaN
TotalPay                 101971.89
TotalPayBenefits         101971.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9140, dtype: object)
(9141, Id                            9142
EmployeeName         BROOKE BIXLER
JobTitle            SAFETY ANALYST
BasePay                   101965.8
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  101965.8
TotalPayBenefits          101965.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9141, dtype: object)
(9142, Id                                              9143
EmployeeName                               FRANK LEE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    101963.97
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   101963.97
TotalPayBenefits                           101963.97
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9142, dtype: object)
(9143, Id                                                              9144
EmployeeName                                             JOHN NERONA
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     99794.34
OvertimePay                                                  1792.71
OtherPay                                                       370.0
Benefits                                                         NaN
TotalPay                                                   101957.05
TotalPayBenefits                                           101957.05
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9143, dtype: object)
(9144, Id                                9145
EmployeeName        FARIBORZ FARAHMAND
JobTitle              SURVEY ASSOCIATE
BasePay                       84949.41
OvertimePay                    15748.1
OtherPay                       1257.17
Benefits                           NaN
TotalPay                     101954.68
TotalPayBenefits             101954.68
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9144, dtype: object)
(9145, Id                              9146
EmployeeName         LISA TORRE-IGWE
JobTitle            REGISTERED NURSE
BasePay                     101562.8
OvertimePay                      0.0
OtherPay                       372.1
Benefits                         NaN
TotalPay                    101934.9
TotalPayBenefits            101934.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9145, dtype: object)
(9146, Id                                                9147
EmployeeName                         TOMASINTAK RUMPAK
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   15317.87
OtherPay                                       9033.04
Benefits                                           NaN
TotalPay                                     101931.31
TotalPayBenefits                             101931.31
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9146, dtype: object)
(9147, Id                              9148
EmployeeName                JERRY WU
JobTitle            TRANSIT OPERATOR
BasePay                      66728.2
OvertimePay                  30171.5
OtherPay                     5030.83
Benefits                         NaN
TotalPay                   101930.53
TotalPayBenefits           101930.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9147, dtype: object)
(9148, Id                                 9149
EmployeeName          LEONID VAYNSHTEYN
JobTitle            MAINTENANCE PLANNER
BasePay                        94404.67
OvertimePay                      444.57
OtherPay                        7080.35
Benefits                            NaN
TotalPay                      101929.59
TotalPayBenefits              101929.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9148, dtype: object)
(9149, Id                            9150
EmployeeName            JOYCE LONG
JobTitle            COURT REPORTER
BasePay                    81950.4
OvertimePay                    0.0
OtherPay                  19967.12
Benefits                       NaN
TotalPay                 101917.52
TotalPayBenefits         101917.52
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9149, dtype: object)
(9150, Id                              9151
EmployeeName               REX TUBAO
JobTitle            TRANSIT OPERATOR
BasePay                      66064.3
OvertimePay                 34581.89
OtherPay                     1265.23
Benefits                         NaN
TotalPay                   101911.42
TotalPayBenefits           101911.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9150, dtype: object)
(9151, Id                           9152
EmployeeName        JOSEPH LOWMAN
JobTitle                  PLUMBER
BasePay                  90643.35
OvertimePay              10354.05
OtherPay                    910.0
Benefits                      NaN
TotalPay                 101907.4
TotalPayBenefits         101907.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9151, dtype: object)
(9152, Id                                                    9153
EmployeeName                                 WILLIAM SILAS
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                            93056.6
OvertimePay                                        3263.63
OtherPay                                           5576.24
Benefits                                               NaN
TotalPay                                         101896.47
TotalPayBenefits                                 101896.47
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 9152, dtype: object)
(9153, Id                               9154
EmployeeName        CHARLES PANGASNAN
JobTitle               DEPUTY SHERIFF
BasePay                       86506.0
OvertimePay                   8778.79
OtherPay                      6609.62
Benefits                          NaN
TotalPay                    101894.41
TotalPayBenefits            101894.41
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9153, dtype: object)
(9154, Id                                   9155
EmployeeName                  ANTHONY LIM
JobTitle            IS ENGINEER - JOURNEY
BasePay                           95166.8
OvertimePay                           0.0
OtherPay                           6718.9
Benefits                              NaN
TotalPay                         101885.7
TotalPayBenefits                 101885.7
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9154, dtype: object)
(9155, Id                              9156
EmployeeName           ISRAEL CASTRO
JobTitle            TRANSIT OPERATOR
BasePay                      66069.9
OvertimePay                 31940.46
OtherPay                     3861.47
Benefits                         NaN
TotalPay                   101871.83
TotalPayBenefits           101871.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9155, dtype: object)
(9156, Id                                 9157
EmployeeName        MICHELLE PANLASIGUI
JobTitle                  SPECIAL NURSE
BasePay                        99020.54
OvertimePay                         0.0
OtherPay                        2844.71
Benefits                            NaN
TotalPay                      101865.25
TotalPayBenefits              101865.25
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9156, dtype: object)
(9157, Id                                9158
EmployeeName             JOHNNIE CLARK
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    7414.69
OtherPay                        6383.0
Benefits                           NaN
TotalPay                     101859.69
TotalPayBenefits             101859.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9157, dtype: object)
(9158, Id                                      9159
EmployeeName                         TINA KO
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            100816.19
OvertimePay                              0.0
OtherPay                              1035.0
Benefits                                 NaN
TotalPay                           101851.19
TotalPayBenefits                   101851.19
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9158, dtype: object)
(9159, Id                                                              9160
EmployeeName                                            STEVEN BUDAI
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                      98015.0
OvertimePay                                                  2695.74
OtherPay                                                      1125.0
Benefits                                                         NaN
TotalPay                                                   101835.74
TotalPayBenefits                                           101835.74
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9159, dtype: object)
(9160, Id                                  9161
EmployeeName                  DON NEVELS
JobTitle            SEWER SERVICE WORKER
BasePay                         85821.37
OvertimePay                     15791.69
OtherPay                          205.56
Benefits                             NaN
TotalPay                       101818.62
TotalPayBenefits               101818.62
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9160, dtype: object)
(9161, Id                               9162
EmployeeName             HATEM MANSUR
JobTitle            HOUSING INSPECTOR
BasePay                     100697.03
OvertimePay                       0.0
OtherPay                      1117.44
Benefits                          NaN
TotalPay                    101814.47
TotalPayBenefits            101814.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9161, dtype: object)
(9162, Id                                                            9163
EmployeeName                                      SAMMY BAGGAO JR.
JobTitle            AUTOMOTIVE SERVICE WORKER ASSISTANT SUPERVISOR
BasePay                                                    66739.2
OvertimePay                                               25783.95
OtherPay                                                   9289.96
Benefits                                                       NaN
TotalPay                                                 101813.11
TotalPayBenefits                                         101813.11
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 9162, dtype: object)
(9163, Id                              9164
EmployeeName           KELLY BRANDON
JobTitle            REGISTERED NURSE
BasePay                     82688.67
OvertimePay                  3644.82
OtherPay                    15478.72
Benefits                         NaN
TotalPay                   101812.21
TotalPayBenefits           101812.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9163, dtype: object)
(9164, Id                                9165
EmployeeName           MAURICE GROWNEY
JobTitle            ASSOCIATE ENGINEER
BasePay                      101721.24
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                     101811.24
TotalPayBenefits             101811.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9164, dtype: object)
(9165, Id                                       9166
EmployeeName                   OLIVIA ESTARES
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101809.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101809.04
TotalPayBenefits                    101809.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9165, dtype: object)
(9166, Id                                              9167
EmployeeName                     JOSEPH HAGGARTY III
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.98
OvertimePay                                   413.89
OtherPay                                     5738.34
Benefits                                         NaN
TotalPay                                   101806.21
TotalPayBenefits                           101806.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9166, dtype: object)
(9167, Id                                 9168
EmployeeName               BRIAN CAULEY
JobTitle            CLAIMS INVESTIGATOR
BasePay                         94293.0
OvertimePay                     3672.27
OtherPay                         3833.6
Benefits                            NaN
TotalPay                      101798.87
TotalPayBenefits              101798.87
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9167, dtype: object)
(9168, Id                              9169
EmployeeName               SUNNY LAM
JobTitle            TRANSIT OPERATOR
BasePay                     65193.16
OvertimePay                 36497.29
OtherPay                      106.29
Benefits                         NaN
TotalPay                   101796.74
TotalPayBenefits           101796.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9168, dtype: object)
(9169, Id                            9170
EmployeeName        PAUL MCCLELLAN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                9458.12
OtherPay                   5491.83
Benefits                       NaN
TotalPay                 101789.96
TotalPayBenefits         101789.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9169, dtype: object)
(9170, Id                            9171
EmployeeName         ROBERT KAWANO
JobTitle            LINE INSPECTOR
BasePay                  100861.62
OvertimePay                 915.04
OtherPay                       0.0
Benefits                       NaN
TotalPay                 101776.66
TotalPayBenefits         101776.66
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9170, dtype: object)
(9171, Id                              9172
EmployeeName         COREY CABALLERO
JobTitle            REGISTERED NURSE
BasePay                      88702.8
OvertimePay                  4275.43
OtherPay                     8792.63
Benefits                         NaN
TotalPay                   101770.86
TotalPayBenefits           101770.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9171, dtype: object)
(9172, Id                                9173
EmployeeName             CHANNIN SMITH
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   10395.13
OtherPay                        3308.0
Benefits                           NaN
TotalPay                     101765.13
TotalPayBenefits             101765.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9172, dtype: object)
(9173, Id                                               9174
EmployeeName                              GORDON TING
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79910.57
OvertimePay                                  14614.31
OtherPay                                      7234.84
Benefits                                          NaN
TotalPay                                    101759.72
TotalPayBenefits                            101759.72
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9173, dtype: object)
(9174, Id                                9175
EmployeeName                MATTHEW HO
JobTitle            ASSOCIATE ENGINEER
BasePay                      101759.62
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     101759.62
TotalPayBenefits             101759.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9174, dtype: object)
(9175, Id                                                     9176
EmployeeName                               KELLIE CRUMBLISS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77224.49
OvertimePay                                        21411.22
OtherPay                                            3105.39
Benefits                                                NaN
TotalPay                                           101741.1
TotalPayBenefits                                   101741.1
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9175, dtype: object)
(9176, Id                                 9177
EmployeeName                TONY LUCERO
JobTitle            STATIONARY ENGINEER
BasePay                        72410.04
OvertimePay                    16553.42
OtherPay                       12776.18
Benefits                            NaN
TotalPay                      101739.64
TotalPayBenefits              101739.64
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9176, dtype: object)
(9177, Id                              9178
EmployeeName          THERESA CAHILL
JobTitle            REGISTERED NURSE
BasePay                    101489.52
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   101739.52
TotalPayBenefits           101739.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9177, dtype: object)
(9178, Id                                           9179
EmployeeName                          JAY EDWARDS
JobTitle            SENIOR PROPERTY MANAGER, PORT
BasePay                                  98899.05
OvertimePay                                   0.0
OtherPay                                   2840.0
Benefits                                      NaN
TotalPay                                101739.05
TotalPayBenefits                        101739.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9178, dtype: object)
(9179, Id                                               9180
EmployeeName                               DAVID CHAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       92923.2
OvertimePay                                       0.0
OtherPay                                      8813.74
Benefits                                          NaN
TotalPay                                    101736.94
TotalPayBenefits                            101736.94
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9179, dtype: object)
(9180, Id                            9181
EmployeeName         SAU KWAN FUNG
JobTitle            DEPUTY SHERIFF
BasePay                   77093.11
OvertimePay               20192.39
OtherPay                   4445.94
Benefits                       NaN
TotalPay                 101731.44
TotalPayBenefits         101731.44
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9180, dtype: object)
(9181, Id                              9182
EmployeeName            STEVEN GOMEZ
JobTitle            POLICE OFFICER I
BasePay                     94020.82
OvertimePay                  1646.47
OtherPay                      6061.8
Benefits                         NaN
TotalPay                   101729.09
TotalPayBenefits           101729.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9181, dtype: object)
(9182, Id                                9183
EmployeeName             ERIC WILLIAMS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                   10767.23
OtherPay                       2895.99
Benefits                           NaN
TotalPay                     101725.22
TotalPayBenefits             101725.22
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9182, dtype: object)
(9183, Id                           9184
EmployeeName           GARY COZZI
JobTitle               MANAGER II
BasePay                  101725.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 101725.0
TotalPayBenefits         101725.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9183, dtype: object)
(9184, Id                            9185
EmployeeName          JASON ROBLES
JobTitle            DEPUTY SHERIFF
BasePay                   81339.29
OvertimePay               12202.57
OtherPay                   8180.61
Benefits                       NaN
TotalPay                 101722.47
TotalPayBenefits         101722.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9184, dtype: object)
(9185, Id                            9186
EmployeeName          NICOLE SMITH
JobTitle            DEPUTY SHERIFF
BasePay                   85987.61
OvertimePay               14957.77
OtherPay                     774.9
Benefits                       NaN
TotalPay                 101720.28
TotalPayBenefits         101720.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9185, dtype: object)
(9186, Id                                      9187
EmployeeName                      WELSON TSO
JobTitle            SHEET METAL SUPERVISOR I
BasePay                            101029.51
OvertimePay                           688.84
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101718.35
TotalPayBenefits                   101718.35
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9186, dtype: object)
(9187, Id                                 9188
EmployeeName                  THANG TON
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72928.86
OvertimePay                    25678.57
OtherPay                        3107.23
Benefits                            NaN
TotalPay                      101714.66
TotalPayBenefits              101714.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9187, dtype: object)
(9188, Id                               9189
EmployeeName             RONALD DICKS
JobTitle            HOUSING INSPECTOR
BasePay                      100697.1
OvertimePay                   1016.81
OtherPay                          0.0
Benefits                          NaN
TotalPay                    101713.91
TotalPayBenefits            101713.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9188, dtype: object)
(9189, Id                                                      9190
EmployeeName                                       ALAN KEEL
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              90376.0
OvertimePay                                          3573.23
OtherPay                                             7760.62
Benefits                                                 NaN
TotalPay                                           101709.85
TotalPayBenefits                                   101709.85
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9189, dtype: object)
(9190, Id                                                     9191
EmployeeName                               CAROL BUFFINGTON
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            85318.84
OvertimePay                                         8637.05
OtherPay                                            7740.71
Benefits                                                NaN
TotalPay                                           101696.6
TotalPayBenefits                                   101696.6
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9190, dtype: object)
(9191, Id                                                       9192
EmployeeName                                     KEVIN GORDON
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                               87345.6
OvertimePay                                          13834.86
OtherPay                                                500.0
Benefits                                                  NaN
TotalPay                                            101680.46
TotalPayBenefits                                    101680.46
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 9191, dtype: object)
(9192, Id                                       9193
EmployeeName             DAVID SERRANO SEWELL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             101666.24
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101666.24
TotalPayBenefits                    101666.24
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9192, dtype: object)
(9193, Id                                           9194
EmployeeName                      ELPIDIO TALUSAN
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   84734.7
OvertimePay                               8457.55
OtherPay                                  8473.47
Benefits                                      NaN
TotalPay                                101665.72
TotalPayBenefits                        101665.72
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9193, dtype: object)
(9194, Id                                                      9195
EmployeeName                                      JIANMIN MA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              91853.5
OvertimePay                                          2802.53
OtherPay                                             7001.46
Benefits                                                 NaN
TotalPay                                           101657.49
TotalPayBenefits                                   101657.49
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9194, dtype: object)
(9195, Id                                9196
EmployeeName           MELVIN BAUTISTA
JobTitle            POLICE OFFICER III
BasePay                       56042.83
OvertimePay                   25329.59
OtherPay                      20277.53
Benefits                           NaN
TotalPay                     101649.95
TotalPayBenefits             101649.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9195, dtype: object)
(9196, Id                            9197
EmployeeName        DEBRA PHILLIPS
JobTitle             SPECIAL NURSE
BasePay                  101611.74
OvertimePay                    0.0
OtherPay                     34.86
Benefits                       NaN
TotalPay                  101646.6
TotalPayBenefits          101646.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9196, dtype: object)
(9197, Id                                               9198
EmployeeName                             CURTIS JAMES
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      97824.74
OvertimePay                                    1509.3
OtherPay                                       2310.0
Benefits                                          NaN
TotalPay                                    101644.04
TotalPayBenefits                            101644.04
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9197, dtype: object)
(9198, Id                              9199
EmployeeName        ALMA ROSA GARCIA
JobTitle            REGISTERED NURSE
BasePay                     93679.43
OvertimePay                  3812.53
OtherPay                     4148.29
Benefits                         NaN
TotalPay                   101640.25
TotalPayBenefits           101640.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9198, dtype: object)
(9199, Id                                      9200
EmployeeName                STEPHEN APPERSON
JobTitle            WATER OPERATIONS ANALYST
BasePay                            101640.05
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101640.05
TotalPayBenefits                   101640.05
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9199, dtype: object)
(9200, Id                           9201
EmployeeName        JENNIFER CHIU
JobTitle            SPECIAL NURSE
BasePay                  98289.31
OvertimePay                586.67
OtherPay                  2763.93
Benefits                      NaN
TotalPay                101639.91
TotalPayBenefits        101639.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9200, dtype: object)
(9201, Id                                9202
EmployeeName                 TINA KING
JobTitle            NURSE PRACTITIONER
BasePay                       95953.26
OvertimePay                    3302.32
OtherPay                       2379.85
Benefits                           NaN
TotalPay                     101635.43
TotalPayBenefits             101635.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9201, dtype: object)
(9202, Id                                                       9203
EmployeeName                                  JONATHAN YOLLES
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST I
BasePay                                              101634.0
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             101634.0
TotalPayBenefits                                     101634.0
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 9202, dtype: object)
(9203, Id                            9204
EmployeeName            KINGMAN HO
JobTitle            DEPUTY SHERIFF
BasePay                    85150.8
OvertimePay                4580.04
OtherPay                  11868.89
Benefits                       NaN
TotalPay                 101599.73
TotalPayBenefits         101599.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9203, dtype: object)
(9204, Id                                  9205
EmployeeName          FREDERICK GONZALES
JobTitle            SEWER SERVICE WORKER
BasePay                         81107.82
OvertimePay                     20287.53
OtherPay                          200.52
Benefits                             NaN
TotalPay                       101595.87
TotalPayBenefits               101595.87
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9204, dtype: object)
(9205, Id                                 9206
EmployeeName        JAMES MC MILLIAN JR
JobTitle               TRANSIT OPERATOR
BasePay                        67301.15
OvertimePay                    32768.48
OtherPay                        1521.87
Benefits                            NaN
TotalPay                       101591.5
TotalPayBenefits               101591.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9205, dtype: object)
(9206, Id                                      9207
EmployeeName             NANETTE HENDRICKSON
JobTitle            AIRPORT ECONOMIC PLANNER
BasePay                            101590.74
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101590.74
TotalPayBenefits                   101590.74
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9206, dtype: object)
(9207, Id                                    9208
EmployeeName               JOHN MORRISETTE
JobTitle            MAINTENANCE CONTROLLER
BasePay                           88886.73
OvertimePay                        2492.92
OtherPay                          10210.92
Benefits                               NaN
TotalPay                         101590.57
TotalPayBenefits                 101590.57
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9207, dtype: object)
(9208, Id                                               9209
EmployeeName                  JACQUELINE ORTIZ-FORMAN
JobTitle            CHIEF VICTIM/WITNESS INVESTIGATOR
BasePay                                     100548.34
OvertimePay                                       0.0
OtherPay                                       1040.0
Benefits                                          NaN
TotalPay                                    101588.34
TotalPayBenefits                            101588.34
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9208, dtype: object)
(9209, Id                                           9210
EmployeeName                      ROSS BAUMGARTEN
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  84394.43
OvertimePay                              15269.85
OtherPay                                   1919.3
Benefits                                      NaN
TotalPay                                101583.58
TotalPayBenefits                        101583.58
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9209, dtype: object)
(9210, Id                           9211
EmployeeName           JOHN CERNA
JobTitle                  PLUMBER
BasePay                  90597.94
OvertimePay               6282.83
OtherPay                   4697.6
Benefits                      NaN
TotalPay                101578.37
TotalPayBenefits        101578.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9210, dtype: object)
(9211, Id                               9212
EmployeeName                DANNY MAK
JobTitle            HOUSING INSPECTOR
BasePay                     100697.05
OvertimePay                       0.0
OtherPay                        880.0
Benefits                          NaN
TotalPay                    101577.05
TotalPayBenefits            101577.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9211, dtype: object)
(9212, Id                                       9213
EmployeeName                 CESAR CANO RODAS
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58563.7
OvertimePay                          31058.17
OtherPay                              11953.2
Benefits                                  NaN
TotalPay                            101575.07
TotalPayBenefits                    101575.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9212, dtype: object)
(9213, Id                                9214
EmployeeName            BERNARD CURRAN
JobTitle            BUILDING INSPECTOR
BasePay                       101268.3
OvertimePay                     305.02
OtherPay                           0.0
Benefits                           NaN
TotalPay                     101573.32
TotalPayBenefits             101573.32
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9213, dtype: object)
(9214, Id                                        9215
EmployeeName                  FERDINAND LUMBAD
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.84
OvertimePay                            1715.01
OtherPay                               2724.97
Benefits                                   NaN
TotalPay                             101570.82
TotalPayBenefits                     101570.82
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9214, dtype: object)
(9215, Id                                    9216
EmployeeName              DANIEL HELMINIAK
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.02
OvertimePay                        9437.33
OtherPay                           1463.42
Benefits                               NaN
TotalPay                         101564.77
TotalPayBenefits                 101564.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9215, dtype: object)
(9216, Id                                                    9217
EmployeeName                                    MARIA LUNA
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           93774.09
OvertimePay                                        2487.76
OtherPay                                           5298.38
Benefits                                               NaN
TotalPay                                         101560.23
TotalPayBenefits                                 101560.23
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 9216, dtype: object)
(9217, Id                                                          9218
EmployeeName                                     JONATHAN REWERS
JobTitle            MANAGER IV - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                101556.96
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                               101556.96
TotalPayBenefits                                       101556.96
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 9217, dtype: object)
(9218, Id                                       9219
EmployeeName                   RODOLFO MILLAN
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64795.2
OvertimePay                          31766.31
OtherPay                              4994.96
Benefits                                  NaN
TotalPay                            101556.47
TotalPayBenefits                    101556.47
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9218, dtype: object)
(9219, Id                                                   9220
EmployeeName                               COREY CHRISMAN
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                         101533.38
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                        101533.38
TotalPayBenefits                                101533.38
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9219, dtype: object)
(9220, Id                                9221
EmployeeName            JOHN OSULLIVAN
JobTitle            BUILDING INSPECTOR
BasePay                      100048.22
OvertimePay                     266.89
OtherPay                        1200.0
Benefits                           NaN
TotalPay                     101515.11
TotalPayBenefits             101515.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9220, dtype: object)
(9221, Id                           9222
EmployeeName        DOUGLAS YAKEL
JobTitle               MANAGER II
BasePay                  95740.92
OvertimePay                   0.0
OtherPay                  5768.75
Benefits                      NaN
TotalPay                101509.67
TotalPayBenefits        101509.67
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9221, dtype: object)
(9222, Id                                               9223
EmployeeName                                DAVID KIM
JobTitle            MEDIA/SECURITY SYSTEMS SPECIALIST
BasePay                                       87961.6
OvertimePay                                       0.0
OtherPay                                     13542.53
Benefits                                          NaN
TotalPay                                    101504.13
TotalPayBenefits                            101504.13
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9222, dtype: object)
(9223, Id                                              9224
EmployeeName                       SIOBAHN MCAULIFFE
JobTitle            SERGEANT III (POLICE DEPARTMENT)
BasePay                                     96465.58
OvertimePay                                   1907.6
OtherPay                                     3126.42
Benefits                                         NaN
TotalPay                                    101499.6
TotalPayBenefits                            101499.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9223, dtype: object)
(9224, Id                                                     9225
EmployeeName                                FLORINDA PICAZO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76653.34
OvertimePay                                        14821.61
OtherPay                                           10021.32
Benefits                                                NaN
TotalPay                                          101496.27
TotalPayBenefits                                  101496.27
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9224, dtype: object)
(9225, Id                               9226
EmployeeName             ANNE TAUPIER
JobTitle            MAYORAL STAFF XIV
BasePay                     100433.12
OvertimePay                       0.0
OtherPay                      1050.17
Benefits                          NaN
TotalPay                    101483.29
TotalPayBenefits            101483.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9225, dtype: object)
(9226, Id                              9227
EmployeeName             JOSE CASTRO
JobTitle            TRANSIT OPERATOR
BasePay                     67278.45
OvertimePay                 29425.91
OtherPay                     4771.31
Benefits                         NaN
TotalPay                   101475.67
TotalPayBenefits           101475.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9226, dtype: object)
(9227, Id                               9228
EmployeeName        STEPHEN ROBIDEAUX
JobTitle             REGISTERED NURSE
BasePay                      95016.56
OvertimePay                   1499.47
OtherPay                       4957.6
Benefits                          NaN
TotalPay                    101473.63
TotalPayBenefits            101473.63
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9227, dtype: object)
(9228, Id                                9229
EmployeeName            LUCIEN BURGERT
JobTitle            ASSISTANT ENGINEER
BasePay                      100161.02
OvertimePay                        0.0
OtherPay                       1312.58
Benefits                           NaN
TotalPay                      101473.6
TotalPayBenefits              101473.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9228, dtype: object)
(9229, Id                                               9230
EmployeeName                           ROBERT STANTON
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                       0.0
OtherPay                                       2446.0
Benefits                                          NaN
TotalPay                                     101460.4
TotalPayBenefits                             101460.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9229, dtype: object)
(9230, Id                                               9231
EmployeeName                          GERALD MULLIGAN
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      83462.13
OvertimePay                                   2430.36
OtherPay                                     15560.62
Benefits                                          NaN
TotalPay                                    101453.11
TotalPayBenefits                            101453.11
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9230, dtype: object)
(9231, Id                            9232
EmployeeName           LINDA ABUAN
JobTitle            CRIMINALIST II
BasePay                  101418.04
OvertimePay                    0.0
OtherPay                      31.1
Benefits                       NaN
TotalPay                 101449.14
TotalPayBenefits         101449.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9231, dtype: object)
(9232, Id                            9233
EmployeeName           TASHA SMITH
JobTitle            CRIMINALIST II
BasePay                  101418.01
OvertimePay                    0.0
OtherPay                      31.1
Benefits                       NaN
TotalPay                 101449.11
TotalPayBenefits         101449.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9232, dtype: object)
(9233, Id                                              9234
EmployeeName                         DOUGLASS HAYNES
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     71165.34
OvertimePay                                 25519.45
OtherPay                                     4764.14
Benefits                                         NaN
TotalPay                                   101448.93
TotalPayBenefits                           101448.93
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9233, dtype: object)
(9234, Id                                   9235
EmployeeName                   SCOTT ROTH
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          87598.82
OvertimePay                        333.35
OtherPay                         13504.04
Benefits                              NaN
TotalPay                        101436.21
TotalPayBenefits                101436.21
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9234, dtype: object)
(9235, Id                                    9236
EmployeeName        CARMEN ZAMORA-SALMERON
JobTitle                    DEPUTY SHERIFF
BasePay                           86506.04
OvertimePay                        9745.74
OtherPay                            5182.3
Benefits                               NaN
TotalPay                         101434.08
TotalPayBenefits                 101434.08
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9235, dtype: object)
(9236, Id                                    9237
EmployeeName               PATRICK WHITWAM
JobTitle            ELECTRICAL LINE WORKER
BasePay                            82013.4
OvertimePay                       17110.78
OtherPay                           2309.59
Benefits                               NaN
TotalPay                         101433.77
TotalPayBenefits                 101433.77
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9236, dtype: object)
(9237, Id                                               9238
EmployeeName                                 GARY LEE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80642.16
OvertimePay                                  12852.22
OtherPay                                      7937.51
Benefits                                          NaN
TotalPay                                    101431.89
TotalPayBenefits                            101431.89
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9237, dtype: object)
(9238, Id                                         9239
EmployeeName                  GWENDOLYN ROTHMAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                96598.65
OvertimePay                                 0.0
OtherPay                                4830.22
Benefits                                    NaN
TotalPay                              101428.87
TotalPayBenefits                      101428.87
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9238, dtype: object)
(9239, Id                                  9240
EmployeeName                ANGEL ZUNIGA
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         74237.72
OvertimePay                     25054.58
OtherPay                         2126.91
Benefits                             NaN
TotalPay                       101419.21
TotalPayBenefits               101419.21
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9239, dtype: object)
(9240, Id                                       9241
EmployeeName                      ELAINE HUNG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              101418.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             101418.6
TotalPayBenefits                     101418.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9240, dtype: object)
(9241, Id                                       9242
EmployeeName                  JIAN MING HUANG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.15
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.15
TotalPayBenefits                    101418.15
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9241, dtype: object)
(9242, Id                                       9243
EmployeeName                       GARY BATES
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.09
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.09
TotalPayBenefits                    101418.09
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9242, dtype: object)
(9243, Id                                       9244
EmployeeName                    ELIZABETH WOO
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.06
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.06
TotalPayBenefits                    101418.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9243, dtype: object)
(9244, Id                                       9245
EmployeeName                         CHI CHAU
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.05
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.05
TotalPayBenefits                    101418.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9244, dtype: object)
(9245, Id                                       9246
EmployeeName                        DAVID KIM
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.04
TotalPayBenefits                    101418.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9245, dtype: object)
(9246, Id                                       9247
EmployeeName                     BAO JUAN TAN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.04
TotalPayBenefits                    101418.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9246, dtype: object)
(9247, Id                                       9248
EmployeeName                      MYLAN LUONG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.04
TotalPayBenefits                    101418.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9247, dtype: object)
(9248, Id                                       9249
EmployeeName                  MIGUEL QUINONEZ
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.04
TotalPayBenefits                    101418.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9248, dtype: object)
(9249, Id                                       9250
EmployeeName                        MABEL LEW
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.04
TotalPayBenefits                    101418.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9249, dtype: object)
(9250, Id                                       9251
EmployeeName                       ANNIE HUIE
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.03
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.03
TotalPayBenefits                    101418.03
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9250, dtype: object)
(9251, Id                                       9252
EmployeeName                   STEPHEN LUCICH
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.03
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.03
TotalPayBenefits                    101418.03
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9251, dtype: object)
(9252, Id                                       9253
EmployeeName                SEGUNDINA ANCHETA
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.01
TotalPayBenefits                    101418.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9252, dtype: object)
(9253, Id                                       9254
EmployeeName                         JANE SUN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                             101418.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101418.01
TotalPayBenefits                    101418.01
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9253, dtype: object)
(9254, Id                                       9255
EmployeeName                      TERESA CHAN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              101418.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             101418.0
TotalPayBenefits                     101418.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9254, dtype: object)
(9255, Id                                       9256
EmployeeName                      DAVID ANABU
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              101418.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             101418.0
TotalPayBenefits                     101418.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9255, dtype: object)
(9256, Id                                       9257
EmployeeName                 MYRNA BOONGALING
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              101418.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             101418.0
TotalPayBenefits                     101418.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9256, dtype: object)
(9257, Id                              9258
EmployeeName         JONATHAN BENTON
JobTitle            TRANSIT OPERATOR
BasePay                     67392.38
OvertimePay                 28629.67
OtherPay                      5384.8
Benefits                         NaN
TotalPay                   101406.85
TotalPayBenefits           101406.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9257, dtype: object)
(9258, Id                             9259
EmployeeName        CRYSTAL COLLINS
JobTitle             DEPUTY SHERIFF
BasePay                    86506.01
OvertimePay                14124.86
OtherPay                     774.88
Benefits                        NaN
TotalPay                  101405.75
TotalPayBenefits          101405.75
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9258, dtype: object)
(9259, Id                           9260
EmployeeName         BELINDA CHAN
JobTitle               PHARMACIST
BasePay                  99857.56
OvertimePay                788.55
OtherPay                   752.41
Benefits                      NaN
TotalPay                101398.52
TotalPayBenefits        101398.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9259, dtype: object)
(9260, Id                                9261
EmployeeName                 LAURA YEE
JobTitle            ASSOCIATE ENGINEER
BasePay                      101395.99
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     101395.99
TotalPayBenefits             101395.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9260, dtype: object)
(9261, Id                                9262
EmployeeName              ELENA CAHILL
JobTitle            POLICE OFFICER III
BasePay                       94842.56
OvertimePay                    1952.89
OtherPay                       4599.57
Benefits                           NaN
TotalPay                     101395.02
TotalPayBenefits             101395.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9261, dtype: object)
(9262, Id                                              9263
EmployeeName                             PRESTON LEE
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                      95654.0
OvertimePay                                      0.0
OtherPay                                     5738.28
Benefits                                         NaN
TotalPay                                   101392.28
TotalPayBenefits                           101392.28
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9262, dtype: object)
(9263, Id                                              9264
EmployeeName                                JANE YIM
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.97
OvertimePay                                      0.0
OtherPay                                     5738.28
Benefits                                         NaN
TotalPay                                   101392.25
TotalPayBenefits                           101392.25
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9263, dtype: object)
(9264, Id                                              9265
EmployeeName                               DARCI MIX
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     95653.97
OvertimePay                                      0.0
OtherPay                                     5738.27
Benefits                                         NaN
TotalPay                                   101392.24
TotalPayBenefits                           101392.24
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9264, dtype: object)
(9265, Id                              9266
EmployeeName          GERALD WEBSTER
JobTitle            TRANSIT OPERATOR
BasePay                     66759.78
OvertimePay                 31724.58
OtherPay                     2903.26
Benefits                         NaN
TotalPay                   101387.62
TotalPayBenefits           101387.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9265, dtype: object)
(9266, Id                             9267
EmployeeName          MICHAEL ISOLA
JobTitle            UTILITY PLUMBER
BasePay                    85404.25
OvertimePay                 8948.74
OtherPay                    7023.02
Benefits                        NaN
TotalPay                  101376.01
TotalPayBenefits          101376.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9266, dtype: object)
(9267, Id                                                     9268
EmployeeName                                    NADIA GREEN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77641.41
OvertimePay                                        16334.39
OtherPay                                            7399.58
Benefits                                                NaN
TotalPay                                          101375.38
TotalPayBenefits                                  101375.38
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9267, dtype: object)
(9268, Id                                                 9269
EmployeeName                         HECTOR BALLESTEROS
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                         99837.9
OvertimePay                                         0.0
OtherPay                                        1532.18
Benefits                                            NaN
TotalPay                                      101370.08
TotalPayBenefits                              101370.08
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9268, dtype: object)
(9269, Id                            9270
EmployeeName         GREGORY JONES
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                7278.32
OtherPay                    7251.0
Benefits                       NaN
TotalPay                 101369.33
TotalPayBenefits         101369.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9269, dtype: object)
(9270, Id                                              9271
EmployeeName                         CHANDRA JOHNSON
JobTitle            WATER CONSERVATION ADMINISTRATOR
BasePay                                     101368.2
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    101368.2
TotalPayBenefits                            101368.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9270, dtype: object)
(9271, Id                            9272
EmployeeName          JEFFREY SATO
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 8545.4
OtherPay                    5978.6
Benefits                       NaN
TotalPay                  101364.0
TotalPayBenefits          101364.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9271, dtype: object)
(9272, Id                                             9273
EmployeeName                            EVA POLLITT
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    73008.21
OvertimePay                                23981.23
OtherPay                                    4372.03
Benefits                                        NaN
TotalPay                                  101361.47
TotalPayBenefits                          101361.47
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 9272, dtype: object)
(9273, Id                                9274
EmployeeName               HERBERT YEE
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    6063.53
OtherPay                       7229.71
Benefits                           NaN
TotalPay                     101355.24
TotalPayBenefits             101355.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9273, dtype: object)
(9274, Id                                               9275
EmployeeName                                 TONG WOO
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96422.4
OvertimePay                                    3280.5
OtherPay                                       1650.7
Benefits                                          NaN
TotalPay                                     101353.6
TotalPayBenefits                             101353.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9274, dtype: object)
(9275, Id                            9276
EmployeeName        JOHN MASTERSON
JobTitle                   PLUMBER
BasePay                   89008.57
OvertimePay               12159.22
OtherPay                    168.75
Benefits                       NaN
TotalPay                 101336.54
TotalPayBenefits         101336.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9275, dtype: object)
(9276, Id                               9277
EmployeeName          WALLACE JOHNSON
JobTitle            TRANSIT MANAGER I
BasePay                      101274.0
OvertimePay                       0.0
OtherPay                         61.0
Benefits                          NaN
TotalPay                     101335.0
TotalPayBenefits             101335.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9276, dtype: object)
(9277, Id                             9278
EmployeeName        JACULINE BARNES
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 7270.87
OtherPay                    7221.75
Benefits                        NaN
TotalPay                  101332.62
TotalPayBenefits          101332.62
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9277, dtype: object)
(9278, Id                                   9279
EmployeeName                 ALISA ZEHNER
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          88156.37
OvertimePay                       4218.57
OtherPay                          8945.88
Benefits                              NaN
TotalPay                        101320.82
TotalPayBenefits                101320.82
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9278, dtype: object)
(9279, Id                            9280
EmployeeName        LISA TRUEBLOOD
JobTitle             SPECIAL NURSE
BasePay                   98100.75
OvertimePay                    0.0
OtherPay                   3215.38
Benefits                       NaN
TotalPay                 101316.13
TotalPayBenefits         101316.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9279, dtype: object)
(9280, Id                                        9281
EmployeeName                       ROBERT ROSE
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               81087.03
OvertimePay                            7227.09
OtherPay                              12996.84
Benefits                                   NaN
TotalPay                             101310.96
TotalPayBenefits                     101310.96
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9280, dtype: object)
(9281, Id                            9282
EmployeeName        RENEE BRUNEMAN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                7111.19
OtherPay                   7357.92
Benefits                       NaN
TotalPay                 101309.11
TotalPayBenefits         101309.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9281, dtype: object)
(9282, Id                                          9283
EmployeeName                      VAUGHN LAFORCE
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.23
OvertimePay                                  0.0
OtherPay                                 1269.74
Benefits                                     NaN
TotalPay                               101308.97
TotalPayBenefits                       101308.97
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9282, dtype: object)
(9283, Id                              9284
EmployeeName           RAFAEL GUZMAN
JobTitle            TRANSIT OPERATOR
BasePay                     67396.52
OvertimePay                 29220.28
OtherPay                     4689.62
Benefits                         NaN
TotalPay                   101306.42
TotalPayBenefits           101306.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9283, dtype: object)
(9284, Id                                              9285
EmployeeName                        JAY DE LOS REYES
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    101304.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   101304.01
TotalPayBenefits                           101304.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9284, dtype: object)
(9285, Id                            9286
EmployeeName          STEPHEN FONG
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                2856.17
OtherPay                  11937.74
Benefits                       NaN
TotalPay                 101299.92
TotalPayBenefits         101299.92
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9285, dtype: object)
(9286, Id                                                              9287
EmployeeName                                        MAVERICK MADISON
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                    100734.33
OvertimePay                                                   557.68
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   101292.01
TotalPayBenefits                                           101292.01
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9286, dtype: object)
(9287, Id                              9288
EmployeeName          ANNETTE OVERBY
JobTitle            REGISTERED NURSE
BasePay                    101031.76
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                   101281.76
TotalPayBenefits           101281.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9287, dtype: object)
(9288, Id                              9289
EmployeeName         SANTOS BELLORIN
JobTitle            TRANSIT OPERATOR
BasePay                     66056.62
OvertimePay                 35008.67
OtherPay                      213.93
Benefits                         NaN
TotalPay                   101279.22
TotalPayBenefits           101279.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9288, dtype: object)
(9289, Id                                   9290
EmployeeName                   CHRIS TRAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         101238.25
OvertimePay                           0.0
OtherPay                            32.24
Benefits                              NaN
TotalPay                        101270.49
TotalPayBenefits                101270.49
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9289, dtype: object)
(9290, Id                              9291
EmployeeName           ENDIA COSTLEY
JobTitle            REGISTERED NURSE
BasePay                     81455.85
OvertimePay                   4450.5
OtherPay                    15364.04
Benefits                         NaN
TotalPay                   101270.39
TotalPayBenefits           101270.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9290, dtype: object)
(9291, Id                           9292
EmployeeName        DENISE SASAKI
JobTitle               PHARMACIST
BasePay                  93115.03
OvertimePay               2779.28
OtherPay                  5373.15
Benefits                      NaN
TotalPay                101267.46
TotalPayBenefits        101267.46
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9291, dtype: object)
(9292, Id                              9293
EmployeeName             DAVID RUBIN
JobTitle            REGISTERED NURSE
BasePay                     89526.18
OvertimePay                  2076.02
OtherPay                     9641.46
Benefits                         NaN
TotalPay                   101243.66
TotalPayBenefits           101243.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9292, dtype: object)
(9293, Id                             9294
EmployeeName           PAUL BOUSCAL
JobTitle            UTILITY PLUMBER
BasePay                    87578.01
OvertimePay                 5176.97
OtherPay                    8481.35
Benefits                        NaN
TotalPay                  101236.33
TotalPayBenefits          101236.33
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9293, dtype: object)
(9294, Id                             9295
EmployeeName        JAMES EASTERDAY
JobTitle            GENERAL LABORER
BasePay                    57271.37
OvertimePay                37662.71
OtherPay                    6297.84
Benefits                        NaN
TotalPay                  101231.92
TotalPayBenefits          101231.92
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9294, dtype: object)
(9295, Id                                            9296
EmployeeName                     NICOLAS STATHAKOS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.35
OvertimePay                                2573.24
OtherPay                                   4353.48
Benefits                                       NaN
TotalPay                                 101226.07
TotalPayBenefits                         101226.07
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9295, dtype: object)
(9296, Id                              9297
EmployeeName        WILLIAM FLETCHER
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                  7208.25
OtherPay                     7177.36
Benefits                         NaN
TotalPay                   101225.61
TotalPayBenefits           101225.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9296, dtype: object)
(9297, Id                            9298
EmployeeName        GREGORY BAILEY
JobTitle                   PLUMBER
BasePay                    89735.1
OvertimePay                1573.56
OtherPay                   9913.48
Benefits                       NaN
TotalPay                 101222.14
TotalPayBenefits         101222.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9297, dtype: object)
(9298, Id                                9299
EmployeeName                ALMON WONG
JobTitle            TRANSIT SUPERVISOR
BasePay                       73922.29
OvertimePay                    22205.2
OtherPay                       5062.06
Benefits                           NaN
TotalPay                     101189.55
TotalPayBenefits             101189.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9298, dtype: object)
(9299, Id                                       9300
EmployeeName                      IAN STEWARD
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             101182.48
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101182.48
TotalPayBenefits                    101182.48
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9299, dtype: object)
(9300, Id                                       9301
EmployeeName                      MARY PLOMIN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             101182.48
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101182.48
TotalPayBenefits                    101182.48
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9300, dtype: object)
(9301, Id                                       9302
EmployeeName                    NICOLE CROSBY
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              101172.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             101172.4
TotalPayBenefits                     101172.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9301, dtype: object)
(9302, Id                                      9303
EmployeeName                      LISA SMITH
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             86045.22
OvertimePay                         15125.73
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101170.95
TotalPayBenefits                   101170.95
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9302, dtype: object)
(9303, Id                                 9304
EmployeeName         ANTHONY JACKSON JR
JobTitle            TRANSIT CAR CLEANER
BasePay                        56334.05
OvertimePay                    37011.08
OtherPay                        7825.15
Benefits                            NaN
TotalPay                      101170.28
TotalPayBenefits              101170.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9303, dtype: object)
(9304, Id                                  9305
EmployeeName        ROBERT COMADURAN III
JobTitle                       CARPENTER
BasePay                          76899.6
OvertimePay                     21012.52
OtherPay                         3257.27
Benefits                             NaN
TotalPay                       101169.39
TotalPayBenefits               101169.39
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9304, dtype: object)
(9305, Id                               9306
EmployeeName          PATRICK MCMANUS
JobTitle            HOUSING INSPECTOR
BasePay                     100697.05
OvertimePay                       0.0
OtherPay                       463.21
Benefits                          NaN
TotalPay                    101160.26
TotalPayBenefits            101160.26
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9305, dtype: object)
(9306, Id                                 9307
EmployeeName         JOSE ANTONIO MITRA
JobTitle            PARK PATROL OFFICER
BasePay                         53876.9
OvertimePay                    26594.67
OtherPay                       20682.88
Benefits                            NaN
TotalPay                      101154.45
TotalPayBenefits              101154.45
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9306, dtype: object)
(9307, Id                              9308
EmployeeName                  LU LAM
JobTitle            TRANSIT OPERATOR
BasePay                     63978.99
OvertimePay                 36972.93
OtherPay                      200.91
Benefits                         NaN
TotalPay                   101152.83
TotalPayBenefits           101152.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9307, dtype: object)
(9308, Id                                                              9309
EmployeeName                                         KHALED SHEHADEH
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     85362.16
OvertimePay                                                 12195.95
OtherPay                                                      3592.7
Benefits                                                         NaN
TotalPay                                                   101150.81
TotalPayBenefits                                           101150.81
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9308, dtype: object)
(9309, Id                                      9310
EmployeeName                   ROBERT FRANKO
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                              99546.6
OvertimePay                          1338.52
OtherPay                               257.4
Benefits                                 NaN
TotalPay                           101142.52
TotalPayBenefits                   101142.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9309, dtype: object)
(9310, Id                                               9311
EmployeeName                           MANUEL ROSALES
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   7028.38
OtherPay                                     14288.71
Benefits                                          NaN
TotalPay                                    101137.09
TotalPayBenefits                            101137.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9310, dtype: object)
(9311, Id                                      9312
EmployeeName                   BRIGID O'DOWD
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                            101133.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101133.02
TotalPayBenefits                   101133.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9311, dtype: object)
(9312, Id                                               9313
EmployeeName                                 YU HUANG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                       0.0
OtherPay                                       2116.0
Benefits                                          NaN
TotalPay                                     101130.4
TotalPayBenefits                             101130.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9312, dtype: object)
(9313, Id                                    9314
EmployeeName                    ASHLEY WER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           99940.17
OvertimePay                         232.33
OtherPay                            945.92
Benefits                               NaN
TotalPay                         101118.42
TotalPayBenefits                 101118.42
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9313, dtype: object)
(9314, Id                                           9315
EmployeeName                       DARREN SCIFORD
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.08
OvertimePay                                1155.3
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                101116.38
TotalPayBenefits                        101116.38
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9314, dtype: object)
(9315, Id                                    9316
EmployeeName                 ARNOLD GALANG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.03
OvertimePay                        9583.24
OtherPay                            868.23
Benefits                               NaN
TotalPay                          101115.5
TotalPayBenefits                  101115.5
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9315, dtype: object)
(9316, Id                              9317
EmployeeName            MARCUS TERRY
JobTitle            TRANSIT OPERATOR
BasePay                     67584.27
OvertimePay                 28072.57
OtherPay                     5456.03
Benefits                         NaN
TotalPay                   101112.87
TotalPayBenefits           101112.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9316, dtype: object)
(9317, Id                                    9318
EmployeeName                    DANIEL LAM
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.21
OvertimePay                            0.0
OtherPay                            1140.0
Benefits                               NaN
TotalPay                         101101.21
TotalPayBenefits                 101101.21
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9317, dtype: object)
(9318, Id                              9319
EmployeeName            METIA REILLY
JobTitle            REGISTERED NURSE
BasePay                     91999.74
OvertimePay                  6266.84
OtherPay                     2831.87
Benefits                         NaN
TotalPay                   101098.45
TotalPayBenefits           101098.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9318, dtype: object)
(9319, Id                                          9320
EmployeeName                            ERIC JUE
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                              1035.62
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               101074.82
TotalPayBenefits                       101074.82
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9319, dtype: object)
(9320, Id                                       9321
EmployeeName                    BOBBIE FOSCHI
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              99012.57
OvertimePay                             78.52
OtherPay                              1977.97
Benefits                                  NaN
TotalPay                            101069.06
TotalPayBenefits                    101069.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9320, dtype: object)
(9321, Id                                9322
EmployeeName            CRAIG KUWABARA
JobTitle            POLICE OFFICER III
BasePay                       54787.93
OvertimePay                   13012.89
OtherPay                      33262.35
Benefits                           NaN
TotalPay                     101063.17
TotalPayBenefits             101063.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9321, dtype: object)
(9322, Id                              9323
EmployeeName         MARK MARGREITER
JobTitle            POLICE OFFICER I
BasePay                     86244.18
OvertimePay                   8883.1
OtherPay                     5922.06
Benefits                         NaN
TotalPay                   101049.34
TotalPayBenefits           101049.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9322, dtype: object)
(9323, Id                                       9324
EmployeeName                   ALEXANDRA AMES
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              98645.64
OvertimePay                           1439.57
OtherPay                               962.46
Benefits                                  NaN
TotalPay                            101047.67
TotalPayBenefits                    101047.67
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9323, dtype: object)
(9324, Id                              9325
EmployeeName            THOMAS RAMOS
JobTitle            TRANSIT OPERATOR
BasePay                     66134.54
OvertimePay                 32949.31
OtherPay                      1963.3
Benefits                         NaN
TotalPay                   101047.15
TotalPayBenefits           101047.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9324, dtype: object)
(9325, Id                                9326
EmployeeName           MICHAEL GUNNELL
JobTitle            BUILDING INSPECTOR
BasePay                      100836.18
OvertimePay                        0.0
OtherPay                        210.51
Benefits                           NaN
TotalPay                     101046.69
TotalPayBenefits             101046.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9325, dtype: object)
(9326, Id                                 9327
EmployeeName        PATRICIA GRANDBERRY
JobTitle            PUBLIC HEALTH NURSE
BasePay                         96215.2
OvertimePay                         0.0
OtherPay                        4822.97
Benefits                            NaN
TotalPay                      101038.17
TotalPayBenefits              101038.17
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9326, dtype: object)
(9327, Id                                        9328
EmployeeName                         KO KO ZIN
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82056.09
OvertimePay                           12785.96
OtherPay                               6194.46
Benefits                                   NaN
TotalPay                             101036.51
TotalPayBenefits                     101036.51
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9327, dtype: object)
(9328, Id                                       9329
EmployeeName                      COREY ALLEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                             101036.18
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                            101036.18
TotalPayBenefits                    101036.18
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9328, dtype: object)
(9329, Id                                                              9330
EmployeeName                                           TIMOTHY MOSES
JobTitle            EXECUTIVE DIRECTOR, SOUTHEAST COMMUNITY FACILITY
BasePay                                                    101033.76
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   101033.76
TotalPayBenefits                                           101033.76
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9329, dtype: object)
(9330, Id                                      9331
EmployeeName                 SEBASTIAN AMBRA
JobTitle            SHEET METAL SUPERVISOR I
BasePay                            101029.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101029.52
TotalPayBenefits                   101029.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9330, dtype: object)
(9331, Id                                      9332
EmployeeName                 OSWALDO CAAMANO
JobTitle            SHEET METAL SUPERVISOR I
BasePay                            101029.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                           101029.51
TotalPayBenefits                   101029.51
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9331, dtype: object)
(9332, Id                              9333
EmployeeName              DESIREE UY
JobTitle            REGISTERED NURSE
BasePay                     96666.13
OvertimePay                   3088.8
OtherPay                     1273.93
Benefits                         NaN
TotalPay                   101028.86
TotalPayBenefits           101028.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9332, dtype: object)
(9333, Id                              9334
EmployeeName         EDWARD WILLIAMS
JobTitle            TRANSIT OPERATOR
BasePay                     67520.52
OvertimePay                 28243.58
OtherPay                     5257.95
Benefits                         NaN
TotalPay                   101022.05
TotalPayBenefits           101022.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9333, dtype: object)
(9334, Id                                        9335
EmployeeName                       MALCOLM KEW
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               87682.76
OvertimePay                            6473.53
OtherPay                               6862.34
Benefits                                   NaN
TotalPay                             101018.63
TotalPayBenefits                     101018.63
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9334, dtype: object)
(9335, Id                               9336
EmployeeName        ANTONIO MARQUARDT
JobTitle             TRANSIT OPERATOR
BasePay                      64317.01
OvertimePay                  33080.42
OtherPay                      3616.88
Benefits                          NaN
TotalPay                    101014.31
TotalPayBenefits            101014.31
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9335, dtype: object)
(9336, Id                           9337
EmployeeName         MEGAN KENNEL
JobTitle            SPECIAL NURSE
BasePay                   84738.6
OvertimePay               4699.33
OtherPay                 11565.09
Benefits                      NaN
TotalPay                101003.02
TotalPayBenefits        101003.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9336, dtype: object)
(9337, Id                            9338
EmployeeName        FELICIANO PILI
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                6801.74
OtherPay                   7695.27
Benefits                       NaN
TotalPay                 101003.01
TotalPayBenefits         101003.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9337, dtype: object)
(9338, Id                             9339
EmployeeName        DIVINIO ANTONIO
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 8164.42
OtherPay                    5985.29
Benefits                        NaN
TotalPay                  100989.71
TotalPayBenefits          100989.71
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9338, dtype: object)
(9339, Id                                  9340
EmployeeName            JEFFREY MOLINARI
JobTitle            ELECTRICAL INSPECTOR
BasePay                         94156.13
OvertimePay                      4945.29
OtherPay                         1882.27
Benefits                             NaN
TotalPay                       100983.69
TotalPayBenefits               100983.69
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9339, dtype: object)
(9340, Id                                              9341
EmployeeName                         EUNSHIN OKUMOTO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    100979.76
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   100979.76
TotalPayBenefits                           100979.76
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9340, dtype: object)
(9341, Id                                                     9342
EmployeeName                                 FLORIAN TAYLOR
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87745.63
OvertimePay                                         8481.25
OtherPay                                            4751.72
Benefits                                                NaN
TotalPay                                           100978.6
TotalPayBenefits                                   100978.6
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9341, dtype: object)
(9342, Id                                9343
EmployeeName            PAULETTE DAVIS
JobTitle            TRANSIT SUPERVISOR
BasePay                        91922.5
OvertimePay                    6261.33
OtherPay                       2774.17
Benefits                           NaN
TotalPay                      100958.0
TotalPayBenefits              100958.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9342, dtype: object)
(9343, Id                              9344
EmployeeName        DENNIS CARTER-JR
JobTitle              DEPUTY SHERIFF
BasePay                     86619.14
OvertimePay                  7953.61
OtherPay                     6376.16
Benefits                         NaN
TotalPay                   100948.91
TotalPayBenefits           100948.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9343, dtype: object)
(9344, Id                                          9345
EmployeeName                   MAURICIO MARTINEZ
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                               891.02
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100930.23
TotalPayBenefits                       100930.23
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9344, dtype: object)
(9345, Id                                                      9346
EmployeeName                                  MARIANA VALDEZ
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.03
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           100923.03
TotalPayBenefits                                   100923.03
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9345, dtype: object)
(9346, Id                                                      9347
EmployeeName                                    SUSAN WILTON
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                            100923.01
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                           100923.01
TotalPayBenefits                                   100923.01
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9346, dtype: object)
(9347, Id                                        9348
EmployeeName                     ROBERT RENEAR
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               83098.07
OvertimePay                            3967.18
OtherPay                              13855.85
Benefits                                   NaN
TotalPay                              100921.1
TotalPayBenefits                      100921.1
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9347, dtype: object)
(9348, Id                                9349
EmployeeName              CARMEN LOPEZ
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.05
OvertimePay                        0.0
OtherPay                         960.0
Benefits                           NaN
TotalPay                     100921.05
TotalPayBenefits             100921.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9348, dtype: object)
(9349, Id                                9350
EmployeeName          JOSEPH CABALLERO
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.03
OvertimePay                        0.0
OtherPay                         960.0
Benefits                           NaN
TotalPay                     100921.03
TotalPayBenefits             100921.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9349, dtype: object)
(9350, Id                                                9351
EmployeeName                                  PEIN KYI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   21303.78
OtherPay                                        2031.5
Benefits                                           NaN
TotalPay                                     100915.68
TotalPayBenefits                             100915.68
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9350, dtype: object)
(9351, Id                             9352
EmployeeName        KEVIN MCDONNELL
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 5326.93
OtherPay                    8743.44
Benefits                        NaN
TotalPay                  100910.37
TotalPayBenefits          100910.37
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9351, dtype: object)
(9352, Id                                               9353
EmployeeName                          JULANDA GRIFFIN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                  13164.96
OtherPay                                      7924.12
Benefits                                          NaN
TotalPay                                    100909.09
TotalPayBenefits                            100909.09
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9352, dtype: object)
(9353, Id                                9354
EmployeeName        KIMBERLY SYLVESTER
JobTitle                CRIMINALIST II
BasePay                        84501.4
OvertimePay                    8698.77
OtherPay                       7703.14
Benefits                           NaN
TotalPay                     100903.31
TotalPayBenefits             100903.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9353, dtype: object)
(9354, Id                                           9355
EmployeeName                       BLESILDA SIMON
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                  99961.04
OvertimePay                                   0.0
OtherPay                                   909.81
Benefits                                      NaN
TotalPay                                100870.85
TotalPayBenefits                        100870.85
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9354, dtype: object)
(9355, Id                                        9356
EmployeeName                      ALTAF BHATTI
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                77630.1
OvertimePay                           16572.83
OtherPay                               6654.85
Benefits                                   NaN
TotalPay                             100857.78
TotalPayBenefits                     100857.78
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9355, dtype: object)
(9356, Id                              9357
EmployeeName          KATHRYN BARTEL
JobTitle            POLICE OFFICER I
BasePay                     91637.38
OvertimePay                  3530.23
OtherPay                     5689.45
Benefits                         NaN
TotalPay                   100857.06
TotalPayBenefits           100857.06
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9356, dtype: object)
(9357, Id                                         9358
EmployeeName                   JOHN ROBINSON-JR
JobTitle            SENIOR POWER HOUSE OPERATOR
BasePay                                80286.86
OvertimePay                            13481.41
OtherPay                                7077.82
Benefits                                    NaN
TotalPay                              100846.09
TotalPayBenefits                      100846.09
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9357, dtype: object)
(9358, Id                                                9359
EmployeeName                               RORY ONEILL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.76
OvertimePay                                   16016.87
OtherPay                                       7243.64
Benefits                                           NaN
TotalPay                                     100841.27
TotalPayBenefits                             100841.27
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9358, dtype: object)
(9359, Id                                                     9360
EmployeeName                         JOSU GARMENDIA IRASTOR
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77592.61
OvertimePay                                         17025.4
OtherPay                                            6220.92
Benefits                                                NaN
TotalPay                                          100838.93
TotalPayBenefits                                  100838.93
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9359, dtype: object)
(9360, Id                            9361
EmployeeName            WAYNE CHAN
JobTitle            DEPUTY SHERIFF
BasePay                   86485.14
OvertimePay                 6863.7
OtherPay                   7489.92
Benefits                       NaN
TotalPay                 100838.76
TotalPayBenefits         100838.76
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9360, dtype: object)
(9361, Id                            9362
EmployeeName            MICHAEL NG
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                2706.42
OtherPay                  11289.53
Benefits                       NaN
TotalPay                 100835.96
TotalPayBenefits         100835.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9361, dtype: object)
(9362, Id                                9363
EmployeeName            RICHARD BERMAN
JobTitle            UTILITY SPECIALIST
BasePay                      100007.65
OvertimePay                        0.0
OtherPay                        821.88
Benefits                           NaN
TotalPay                     100829.53
TotalPayBenefits             100829.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9362, dtype: object)
(9363, Id                                               9364
EmployeeName                               HENRY CHAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96422.4
OvertimePay                                   2879.55
OtherPay                                       1513.1
Benefits                                          NaN
TotalPay                                    100815.05
TotalPayBenefits                            100815.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9363, dtype: object)
(9364, Id                                 9365
EmployeeName               KENNETH CHAN
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72490.4
OvertimePay                    24388.92
OtherPay                         3935.2
Benefits                            NaN
TotalPay                      100814.52
TotalPayBenefits              100814.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9364, dtype: object)
(9365, Id                              9366
EmployeeName        GREGORY PETERSON
JobTitle            TRANSIT OPERATOR
BasePay                     69046.68
OvertimePay                 24885.66
OtherPay                     6873.48
Benefits                         NaN
TotalPay                   100805.82
TotalPayBenefits           100805.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9365, dtype: object)
(9366, Id                                     9367
EmployeeName                    EUGENE CHEN
JobTitle            PARKING CONTROL OFFICER
BasePay                            55051.15
OvertimePay                        40290.16
OtherPay                            5449.02
Benefits                                NaN
TotalPay                          100790.33
TotalPayBenefits                  100790.33
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 9366, dtype: object)
(9367, Id                              9368
EmployeeName                   SI DU
JobTitle            TRANSIT OPERATOR
BasePay                     68154.58
OvertimePay                  27597.9
OtherPay                     5022.04
Benefits                         NaN
TotalPay                   100774.52
TotalPayBenefits           100774.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9367, dtype: object)
(9368, Id                                  9369
EmployeeName                 JEREMY WONG
JobTitle            IS ADMINISTRATOR III
BasePay                         96831.74
OvertimePay                          0.0
OtherPay                          3934.5
Benefits                             NaN
TotalPay                       100766.24
TotalPayBenefits               100766.24
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9368, dtype: object)
(9369, Id                            9370
EmployeeName          LISA JANSSEN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 2453.7
OtherPay                   11465.4
Benefits                       NaN
TotalPay                  100759.1
TotalPayBenefits          100759.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9369, dtype: object)
(9370, Id                                               9371
EmployeeName                          SHOME VASUDEVAN
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96688.0
OvertimePay                                   4069.93
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                    100757.93
TotalPayBenefits                            100757.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9370, dtype: object)
(9371, Id                                      9372
EmployeeName                MARIA AGNES CHAN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95202.79
OvertimePay                              0.0
OtherPay                             5544.12
Benefits                                 NaN
TotalPay                           100746.91
TotalPayBenefits                   100746.91
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9371, dtype: object)
(9372, Id                                                              9373
EmployeeName                                           STEVEN ARDREY
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                    100734.36
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                   100734.36
TotalPayBenefits                                           100734.36
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9372, dtype: object)
(9373, Id                               9374
EmployeeName            SHAWN HINTZEN
JobTitle            POLICE OFFICER II
BasePay                       98380.9
OvertimePay                       0.0
OtherPay                      2335.37
Benefits                          NaN
TotalPay                    100716.27
TotalPayBenefits            100716.27
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9373, dtype: object)
(9374, Id                               9375
EmployeeName                ALEX FONG
JobTitle            HOUSING INSPECTOR
BasePay                     100697.49
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    100697.49
TotalPayBenefits            100697.49
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9374, dtype: object)
(9375, Id                                 9376
EmployeeName        HARRY DER VARTANIAN
JobTitle              HOUSING INSPECTOR
BasePay                       100697.16
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                      100697.16
TotalPayBenefits              100697.16
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9375, dtype: object)
(9376, Id                               9377
EmployeeName            DAVID HERRING
JobTitle            HOUSING INSPECTOR
BasePay                     100697.09
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    100697.09
TotalPayBenefits            100697.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9376, dtype: object)
(9377, Id                               9378
EmployeeName             ANTHONY LEPE
JobTitle            HOUSING INSPECTOR
BasePay                     100697.09
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    100697.09
TotalPayBenefits            100697.09
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9377, dtype: object)
(9378, Id                               9379
EmployeeName        JAMES SANBONMATSU
JobTitle            HOUSING INSPECTOR
BasePay                     100697.05
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    100697.05
TotalPayBenefits            100697.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9378, dtype: object)
(9379, Id                               9380
EmployeeName          SERGIO SALVETTI
JobTitle            HOUSING INSPECTOR
BasePay                     100697.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                    100697.01
TotalPayBenefits            100697.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9379, dtype: object)
(9380, Id                               9381
EmployeeName             JAMES GALVIS
JobTitle            HOUSING INSPECTOR
BasePay                      100697.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     100697.0
TotalPayBenefits             100697.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9380, dtype: object)
(9381, Id                                9382
EmployeeName               WUTHEA SENG
JobTitle            ASSOCIATE ENGINEER
BasePay                       99129.06
OvertimePay                        0.0
OtherPay                       1557.63
Benefits                           NaN
TotalPay                     100686.69
TotalPayBenefits             100686.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9381, dtype: object)
(9382, Id                                          9383
EmployeeName                          THOMAS YEE
JobTitle            INSTITUTIONAL POLICE OFFICER
BasePay                                  63121.9
OvertimePay                             33778.23
OtherPay                                 3773.55
Benefits                                     NaN
TotalPay                               100673.68
TotalPayBenefits                       100673.68
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9382, dtype: object)
(9383, Id                              9384
EmployeeName            ESTHER RAMOS
JobTitle            REGISTERED NURSE
BasePay                     90082.66
OvertimePay                  6125.51
OtherPay                     4455.83
Benefits                         NaN
TotalPay                    100664.0
TotalPayBenefits            100664.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9383, dtype: object)
(9384, Id                                 9385
EmployeeName             MARTIN SANCHEZ
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.04
OvertimePay                     1723.12
OtherPay                         3364.0
Benefits                            NaN
TotalPay                      100663.16
TotalPayBenefits              100663.16
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9384, dtype: object)
(9385, Id                            9386
EmployeeName        ISIDRO MADAMBA
JobTitle            DEPUTY SHERIFF
BasePay                   84999.26
OvertimePay                3690.07
OtherPay                  11972.61
Benefits                       NaN
TotalPay                 100661.94
TotalPayBenefits         100661.94
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9385, dtype: object)
(9386, Id                                       9387
EmployeeName                   MARJORIE RUBIO
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64702.84
OvertimePay                          29669.54
OtherPay                              6283.16
Benefits                                  NaN
TotalPay                            100655.54
TotalPayBenefits                    100655.54
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9386, dtype: object)
(9387, Id                                  9388
EmployeeName          DAVID RAUENBUEHLER
JobTitle            PLUMBER SUPERVISOR I
BasePay                        100417.21
OvertimePay                        229.6
OtherPay                             0.0
Benefits                             NaN
TotalPay                       100646.81
TotalPayBenefits               100646.81
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9387, dtype: object)
(9388, Id                              9389
EmployeeName          DUNCAN GILLIES
JobTitle            POLICE OFFICER I
BasePay                     97422.94
OvertimePay                   495.72
OtherPay                     2726.17
Benefits                         NaN
TotalPay                   100644.83
TotalPayBenefits           100644.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9388, dtype: object)
(9389, Id                                    9390
EmployeeName               LORENZO LIWANAG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                        8861.04
OtherPay                           1117.76
Benefits                               NaN
TotalPay                         100642.81
TotalPayBenefits                 100642.81
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9389, dtype: object)
(9390, Id                                                      9391
EmployeeName                                      KIM HOLMAN
JobTitle            ASSOCIATE AFFIRMATIVE ACTION COORDINATOR
BasePay                                             100631.4
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            100631.4
TotalPayBenefits                                    100631.4
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9390, dtype: object)
(9391, Id                            9392
EmployeeName          PATTY HUBBLE
JobTitle            COURT REPORTER
BasePay                    81722.4
OvertimePay                    0.0
OtherPay                   18896.3
Benefits                       NaN
TotalPay                  100618.7
TotalPayBenefits          100618.7
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9391, dtype: object)
(9392, Id                            9393
EmployeeName         JEFF CARRANZA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                5440.25
OtherPay                   8334.16
Benefits                       NaN
TotalPay                 100614.42
TotalPayBenefits         100614.42
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9392, dtype: object)
(9393, Id                                 9394
EmployeeName              LISA LEIGHTON
JobTitle            PUBLIC HEALTH NURSE
BasePay                        96546.87
OvertimePay                         0.0
OtherPay                        4066.25
Benefits                            NaN
TotalPay                      100613.12
TotalPayBenefits              100613.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9393, dtype: object)
(9394, Id                                               9395
EmployeeName                           NICOLE PHILIPS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       98452.8
OvertimePay                                    1166.4
OtherPay                                       991.64
Benefits                                          NaN
TotalPay                                    100610.84
TotalPayBenefits                            100610.84
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9394, dtype: object)
(9395, Id                             9396
EmployeeName        JOSEPH PERICICH
JobTitle             DEPUTY SHERIFF
BasePay                    86786.14
OvertimePay                  3405.0
OtherPay                   10408.59
Benefits                        NaN
TotalPay                  100599.73
TotalPayBenefits          100599.73
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9395, dtype: object)
(9396, Id                                 9397
EmployeeName                   SUE WONG
JobTitle            PHARMACY TECHNICIAN
BasePay                         70906.1
OvertimePay                    29424.03
OtherPay                         263.18
Benefits                            NaN
TotalPay                      100593.31
TotalPayBenefits              100593.31
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9396, dtype: object)
(9397, Id                                              9398
EmployeeName                         SAHISTHA SHAIKH
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    100579.43
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   100579.43
TotalPayBenefits                           100579.43
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9397, dtype: object)
(9398, Id                              9399
EmployeeName             ROY PUCKETT
JobTitle            TRANSIT OPERATOR
BasePay                     68768.01
OvertimePay                 28287.41
OtherPay                      3523.4
Benefits                         NaN
TotalPay                   100578.82
TotalPayBenefits           100578.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9398, dtype: object)
(9399, Id                                              9400
EmployeeName                       LORETTA LIEBERMAN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    100571.99
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   100571.99
TotalPayBenefits                           100571.99
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9399, dtype: object)
(9400, Id                                               9401
EmployeeName                         OTONIEL GRANADOS
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      70276.63
OvertimePay                                  29631.68
OtherPay                                        660.0
Benefits                                          NaN
TotalPay                                    100568.31
TotalPayBenefits                            100568.31
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9400, dtype: object)
(9401, Id                              9402
EmployeeName        STEPHEN STANFORD
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                  3232.43
OtherPay                    10494.05
Benefits                         NaN
TotalPay                   100566.48
TotalPayBenefits           100566.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9401, dtype: object)
(9402, Id                                                     9403
EmployeeName                                    DANA GRANBY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77545.89
OvertimePay                                        16259.96
OtherPay                                            6754.55
Benefits                                                NaN
TotalPay                                           100560.4
TotalPayBenefits                                   100560.4
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9402, dtype: object)
(9403, Id                                               9404
EmployeeName                               RYAN SCOTT
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      77671.01
OvertimePay                                  18737.31
OtherPay                                      4151.22
Benefits                                          NaN
TotalPay                                    100559.54
TotalPayBenefits                            100559.54
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9403, dtype: object)
(9404, Id                               9405
EmployeeName        MARJORIE DE GROOT
JobTitle                  AUDIOLOGIST
BasePay                     100456.11
OvertimePay                       0.0
OtherPay                        100.0
Benefits                          NaN
TotalPay                    100556.11
TotalPayBenefits            100556.11
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9404, dtype: object)
(9405, Id                                                              9406
EmployeeName                                       THEODORE MITCHELL
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     99148.06
OvertimePay                                                   438.43
OtherPay                                                      969.23
Benefits                                                         NaN
TotalPay                                                   100555.72
TotalPayBenefits                                           100555.72
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9405, dtype: object)
(9406, Id                           9407
EmployeeName           ALBERT ENG
JobTitle               MANAGER II
BasePay                   92366.8
OvertimePay                   0.0
OtherPay                  8184.99
Benefits                      NaN
TotalPay                100551.79
TotalPayBenefits        100551.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9406, dtype: object)
(9407, Id                                                         9408
EmployeeName                                        JAN'L SUTOW
JobTitle            ASSISTANT ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                                82591.97
OvertimePay                                            12465.45
OtherPay                                                5492.33
Benefits                                                    NaN
TotalPay                                              100549.75
TotalPayBenefits                                      100549.75
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 9407, dtype: object)
(9408, Id                           9409
EmployeeName         TIMOTHY FRYE
JobTitle               PLANNER IV
BasePay                 100544.31
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                100544.31
TotalPayBenefits        100544.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9408, dtype: object)
(9409, Id                                9410
EmployeeName            CHINDY MAXWELL
JobTitle            ELIGIBILITY WORKER
BasePay                       55471.99
OvertimePay                   40552.01
OtherPay                       4518.77
Benefits                           NaN
TotalPay                     100542.77
TotalPayBenefits             100542.77
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9409, dtype: object)
(9410, Id                           9411
EmployeeName        MARIEL LONTOC
JobTitle            SPECIAL NURSE
BasePay                  97203.59
OvertimePay                697.05
OtherPay                   2624.8
Benefits                      NaN
TotalPay                100525.44
TotalPayBenefits        100525.44
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9410, dtype: object)
(9411, Id                                                      9412
EmployeeName                                 NATHANIEL BANKS
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              90376.0
OvertimePay                                          2778.15
OtherPay                                             7369.53
Benefits                                                 NaN
TotalPay                                           100523.68
TotalPayBenefits                                   100523.68
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9411, dtype: object)
(9412, Id                                                 9413
EmployeeName                           LORRAINE BANFORD
JobTitle            ASSISTANT SUPERINTENDENT RECREATION
BasePay                                        100515.4
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       100515.4
TotalPayBenefits                               100515.4
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9412, dtype: object)
(9413, Id                                          9414
EmployeeName                     IMELDA BAUTISTA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.23
OvertimePay                                  0.0
OtherPay                                  471.98
Benefits                                     NaN
TotalPay                               100511.21
TotalPayBenefits                       100511.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9413, dtype: object)
(9414, Id                                            9415
EmployeeName                     CYNTHIA RASMUSSEN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.61
OvertimePay                                2048.44
OtherPay                                   4160.95
Benefits                                       NaN
TotalPay                                  100506.0
TotalPayBenefits                          100506.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9414, dtype: object)
(9415, Id                           9416
EmployeeName        RICHARD RIVAS
JobTitle              ELECTRICIAN
BasePay                   89741.5
OvertimePay               4643.71
OtherPay                  6119.37
Benefits                      NaN
TotalPay                100504.58
TotalPayBenefits        100504.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9415, dtype: object)
(9416, Id                                       9417
EmployeeName                    AMOR BAUTISTA
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              93465.41
OvertimePay                               0.0
OtherPay                              7030.33
Benefits                                  NaN
TotalPay                            100495.74
TotalPayBenefits                    100495.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9416, dtype: object)
(9417, Id                              9418
EmployeeName           JULIA ANGALET
JobTitle            POLICE OFFICER I
BasePay                     90825.83
OvertimePay                   3625.7
OtherPay                     6043.15
Benefits                         NaN
TotalPay                   100494.68
TotalPayBenefits           100494.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9417, dtype: object)
(9418, Id                           9419
EmployeeName         JUAN MURILLO
JobTitle                LOCKSMITH
BasePay                   77702.6
OvertimePay              19664.64
OtherPay                  3109.35
Benefits                      NaN
TotalPay                100476.59
TotalPayBenefits        100476.59
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9418, dtype: object)
(9419, Id                                          9420
EmployeeName                           SANG TRAN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                432.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100471.21
TotalPayBenefits                       100471.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9419, dtype: object)
(9420, Id                                        9421
EmployeeName                         AMBER LEE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83883.68
OvertimePay                           15191.65
OtherPay                               1382.17
Benefits                                   NaN
TotalPay                              100457.5
TotalPayBenefits                      100457.5
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9420, dtype: object)
(9421, Id                           9422
EmployeeName         DAVE CHIPLEY
JobTitle              ELECTRICIAN
BasePay                  86068.54
OvertimePay                658.67
OtherPay                 13726.61
Benefits                      NaN
TotalPay                100453.82
TotalPayBenefits        100453.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9421, dtype: object)
(9422, Id                                9423
EmployeeName               FABIAN HERD
JobTitle            TRANSIT SUPERVISOR
BasePay                       86640.86
OvertimePay                    9928.25
OtherPay                       3884.32
Benefits                           NaN
TotalPay                     100453.43
TotalPayBenefits             100453.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9422, dtype: object)
(9423, Id                                   9424
EmployeeName            ROBERTO ALVARENGA
JobTitle            MAINTENANCE MACHINIST
BasePay                           77313.6
OvertimePay                      22632.75
OtherPay                            500.0
Benefits                              NaN
TotalPay                        100446.35
TotalPayBenefits                100446.35
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9423, dtype: object)
(9424, Id                                          9425
EmployeeName                       BEVERLEY CHAN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                  404.55
Benefits                                     NaN
TotalPay                               100443.75
TotalPayBenefits                       100443.75
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9424, dtype: object)
(9425, Id                                         9426
EmployeeName                         MALINDA YU
JobTitle            ARCHITECTURAL ADMINISTRATOR
BasePay                               100441.54
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                              100441.54
TotalPayBenefits                      100441.54
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9425, dtype: object)
(9426, Id                              9427
EmployeeName           SAMUEL CORPUZ
JobTitle            TRANSIT OPERATOR
BasePay                     67485.99
OvertimePay                 27237.81
OtherPay                     5711.18
Benefits                         NaN
TotalPay                   100434.98
TotalPayBenefits           100434.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9426, dtype: object)
(9427, Id                              9428
EmployeeName           BINGGANG ZHOU
JobTitle            TRANSIT OPERATOR
BasePay                     65420.16
OvertimePay                 31971.98
OtherPay                     3030.73
Benefits                         NaN
TotalPay                   100422.87
TotalPayBenefits           100422.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9427, dtype: object)
(9428, Id                                9429
EmployeeName                 DALE MARR
JobTitle            SHEET METAL WORKER
BasePay                       83813.52
OvertimePay                     171.23
OtherPay                      16422.92
Benefits                           NaN
TotalPay                     100407.67
TotalPayBenefits             100407.67
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9428, dtype: object)
(9429, Id                                        9430
EmployeeName                  BENJAMIN SANTANA
JobTitle            ASPHALT PLANT SUPERVISOR I
BasePay                               85956.61
OvertimePay                           10311.35
OtherPay                               4135.93
Benefits                                   NaN
TotalPay                             100403.89
TotalPayBenefits                     100403.89
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9429, dtype: object)
(9430, Id                                    9431
EmployeeName               PATRICIA PUTNEY
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.01
OvertimePay                            0.0
OtherPay                             440.0
Benefits                               NaN
TotalPay                         100401.01
TotalPayBenefits                 100401.01
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9430, dtype: object)
(9431, Id                              9432
EmployeeName             GARY OUYANG
JobTitle            TRANSIT OPERATOR
BasePay                     67552.09
OvertimePay                 26892.51
OtherPay                      5954.9
Benefits                         NaN
TotalPay                    100399.5
TotalPayBenefits            100399.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9431, dtype: object)
(9432, Id                                              9433
EmployeeName                          ROBIN COURTNEY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     98940.31
OvertimePay                                      0.0
OtherPay                                      1459.1
Benefits                                         NaN
TotalPay                                   100399.41
TotalPayBenefits                           100399.41
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9432, dtype: object)
(9433, Id                           9434
EmployeeName          CARLA SHORT
JobTitle                MANAGER I
BasePay                 100393.23
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                100393.23
TotalPayBenefits        100393.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9433, dtype: object)
(9434, Id                                9435
EmployeeName              HEATH MADDOX
JobTitle            TRANSIT PLANNER IV
BasePay                      100272.49
OvertimePay                        0.0
OtherPay                         120.0
Benefits                           NaN
TotalPay                     100392.49
TotalPayBenefits             100392.49
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9434, dtype: object)
(9435, Id                                  9436
EmployeeName              DANIEL FELMLEY
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          74588.5
OvertimePay                     24425.77
OtherPay                         1375.07
Benefits                             NaN
TotalPay                       100389.34
TotalPayBenefits               100389.34
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9435, dtype: object)
(9436, Id                             9437
EmployeeName          JAMES CROWLEY
JobTitle            UTILITY PLUMBER
BasePay                    87770.04
OvertimePay                12525.22
OtherPay                      86.16
Benefits                        NaN
TotalPay                  100381.42
TotalPayBenefits          100381.42
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9436, dtype: object)
(9437, Id                                  9438
EmployeeName                  SALLY YUAN
JobTitle            SENIOR ACCOUNT CLERK
BasePay                         61280.55
OvertimePay                     37969.69
OtherPay                         1129.57
Benefits                             NaN
TotalPay                       100379.81
TotalPayBenefits               100379.81
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9437, dtype: object)
(9438, Id                            9439
EmployeeName           KENNETH TAN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6603.18
OtherPay                   6929.79
Benefits                       NaN
TotalPay                 100372.97
TotalPayBenefits         100372.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9438, dtype: object)
(9439, Id                                  9440
EmployeeName               LEIGH KIMBERG
JobTitle            PHYSICIAN SPECIALIST
BasePay                         96985.21
OvertimePay                          0.0
OtherPay                          3373.0
Benefits                             NaN
TotalPay                       100358.21
TotalPayBenefits               100358.21
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9439, dtype: object)
(9440, Id                                9441
EmployeeName              MELINDA GEAN
JobTitle            COURT INVESTIGATOR
BasePay                       98576.92
OvertimePay                        0.0
OtherPay                        1775.0
Benefits                           NaN
TotalPay                     100351.92
TotalPayBenefits             100351.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9440, dtype: object)
(9441, Id                                  9442
EmployeeName                 CARSON CHIN
JobTitle            IS ENGINEER - SENIOR
BasePay                          99656.6
OvertimePay                          0.0
OtherPay                          693.18
Benefits                             NaN
TotalPay                       100349.78
TotalPayBenefits               100349.78
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9441, dtype: object)
(9442, Id                                  9443
EmployeeName                  WILSON MAH
JobTitle            ELECTRICAL INSPECTOR
BasePay                         100048.2
OvertimePay                          0.0
OtherPay                           287.5
Benefits                             NaN
TotalPay                        100335.7
TotalPayBenefits                100335.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9442, dtype: object)
(9443, Id                                   9444
EmployeeName                   BLAKE RYAN
JobTitle            IS ENGINEER - JOURNEY
BasePay                         100330.72
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                        100330.72
TotalPayBenefits                100330.72
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9443, dtype: object)
(9444, Id                                               9445
EmployeeName                                THOMAS NG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                    1123.2
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                     100317.6
TotalPayBenefits                             100317.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9444, dtype: object)
(9445, Id                            9446
EmployeeName          FABIAN PEREZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                8021.01
OtherPay                   5445.87
Benefits                       NaN
TotalPay                 100306.89
TotalPayBenefits         100306.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9445, dtype: object)
(9446, Id                                9447
EmployeeName           DORIT BETSCHART
JobTitle            NURSE PRACTITIONER
BasePay                      100051.04
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                     100301.04
TotalPayBenefits             100301.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9446, dtype: object)
(9447, Id                              9448
EmployeeName              KEVIN SHEW
JobTitle            TRANSIT OPERATOR
BasePay                     66884.65
OvertimePay                 28383.55
OtherPay                     5026.55
Benefits                         NaN
TotalPay                   100294.75
TotalPayBenefits           100294.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9447, dtype: object)
(9448, Id                                                   9449
EmployeeName                               STEVEN ZUVELLA
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          77792.36
OvertimePay                                      22218.47
OtherPay                                           272.61
Benefits                                              NaN
TotalPay                                        100283.44
TotalPayBenefits                                100283.44
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9448, dtype: object)
(9449, Id                                  9450
EmployeeName                  DALTON HOM
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          75327.0
OvertimePay                     20692.82
OtherPay                         4259.91
Benefits                             NaN
TotalPay                       100279.73
TotalPayBenefits               100279.73
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9449, dtype: object)
(9450, Id                              9451
EmployeeName         RASUUL MUHAMMAD
JobTitle            TRANSIT OPERATOR
BasePay                     66031.78
OvertimePay                 29041.26
OtherPay                      5205.5
Benefits                         NaN
TotalPay                   100278.54
TotalPayBenefits           100278.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9450, dtype: object)
(9451, Id                                                          9452
EmployeeName                                        MARY MAGOCSY
JobTitle            EMERGENCY MEDICAL SERVICES AGENCY SPECIALIST
BasePay                                                  96684.8
OvertimePay                                                  0.0
OtherPay                                                 3590.72
Benefits                                                     NaN
TotalPay                                               100275.52
TotalPayBenefits                                       100275.52
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 9451, dtype: object)
(9452, Id                              9453
EmployeeName          INEE DE CASTRO
JobTitle            REGISTERED NURSE
BasePay                     91872.76
OvertimePay                   1784.7
OtherPay                      6615.8
Benefits                         NaN
TotalPay                   100273.26
TotalPayBenefits           100273.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9452, dtype: object)
(9453, Id                                      9454
EmployeeName                    JOSEPH CORIC
JobTitle            SHEET METAL SUPERVISOR I
BasePay                             99870.58
OvertimePay                            298.1
OtherPay                               100.0
Benefits                                 NaN
TotalPay                           100268.68
TotalPayBenefits                   100268.68
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9453, dtype: object)
(9454, Id                                              9455
EmployeeName                             GORDON CHEW
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72259.45
OvertimePay                                 22699.96
OtherPay                                     5305.25
Benefits                                         NaN
TotalPay                                   100264.66
TotalPayBenefits                           100264.66
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9454, dtype: object)
(9455, Id                                 9456
EmployeeName              ROLANDO LOPEZ
JobTitle            STATIONARY ENGINEER
BasePay                         83212.0
OvertimePay                    10307.22
OtherPay                        6743.93
Benefits                            NaN
TotalPay                      100263.15
TotalPayBenefits              100263.15
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9455, dtype: object)
(9456, Id                                            9457
EmployeeName                         SARA STRATTON
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.35
OvertimePay                                1806.41
OtherPay                                   4155.73
Benefits                                       NaN
TotalPay                                 100261.49
TotalPayBenefits                         100261.49
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9456, dtype: object)
(9457, Id                              9458
EmployeeName          GREGORY TURNER
JobTitle            TRANSIT OPERATOR
BasePay                     65550.33
OvertimePay                 33008.72
OtherPay                     1691.78
Benefits                         NaN
TotalPay                   100250.83
TotalPayBenefits           100250.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9457, dtype: object)
(9458, Id                               9459
EmployeeName             JAMES JACOBS
JobTitle            STAGE ELECTRICIAN
BasePay                       82311.6
OvertimePay                  17691.98
OtherPay                        230.0
Benefits                          NaN
TotalPay                    100233.58
TotalPayBenefits            100233.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9458, dtype: object)
(9459, Id                                 9460
EmployeeName          GERALDINE BERKVAM
JobTitle            PUBLIC HEALTH NURSE
BasePay                         68376.0
OvertimePay                         0.0
OtherPay                       31853.53
Benefits                            NaN
TotalPay                      100229.53
TotalPayBenefits              100229.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9459, dtype: object)
(9460, Id                                9461
EmployeeName                LAURA LENT
JobTitle            DEPUTY DIRECTOR II
BasePay                       100219.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      100219.8
TotalPayBenefits              100219.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9460, dtype: object)
(9461, Id                            9462
EmployeeName         RUBEN SANCHEZ
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                1115.83
OtherPay                  12261.82
Benefits                       NaN
TotalPay                 100217.65
TotalPayBenefits         100217.65
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9461, dtype: object)
(9462, Id                                                      9463
EmployeeName                                     EBBIE BROWN
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90680.03
OvertimePay                                          1224.15
OtherPay                                              8300.5
Benefits                                                 NaN
TotalPay                                           100204.68
TotalPayBenefits                                   100204.68
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9462, dtype: object)
(9463, Id                              9464
EmployeeName                WEE CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     61825.82
OvertimePay                 33108.02
OtherPay                     5255.29
Benefits                         NaN
TotalPay                   100189.13
TotalPayBenefits           100189.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9463, dtype: object)
(9464, Id                              9465
EmployeeName          CLAUDIA OVANDO
JobTitle            TRANSIT OPERATOR
BasePay                     65970.41
OvertimePay                 29900.39
OtherPay                     4311.58
Benefits                         NaN
TotalPay                   100182.38
TotalPayBenefits           100182.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9464, dtype: object)
(9465, Id                              9466
EmployeeName         RIGOBERTO LOPEZ
JobTitle            TRANSIT OPERATOR
BasePay                     67539.38
OvertimePay                 29882.93
OtherPay                     2748.48
Benefits                         NaN
TotalPay                   100170.79
TotalPayBenefits           100170.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9465, dtype: object)
(9466, Id                                9467
EmployeeName          MICHAEL LAWRANCE
JobTitle            TRANSIT PLANNER IV
BasePay                      100168.08
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                     100168.08
TotalPayBenefits             100168.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9466, dtype: object)
(9467, Id                            9468
EmployeeName         CLAUDIA GOMEZ
JobTitle            DEPUTY SHERIFF
BasePay                   73864.06
OvertimePay               20894.12
OtherPay                   5409.56
Benefits                       NaN
TotalPay                 100167.74
TotalPayBenefits         100167.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9467, dtype: object)
(9468, Id                           9469
EmployeeName        HARRISH SINGH
JobTitle              STEAMFITTER
BasePay                  90643.37
OvertimePay               5415.42
OtherPay                   4104.7
Benefits                      NaN
TotalPay                100163.49
TotalPayBenefits        100163.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9468, dtype: object)
(9469, Id                              9470
EmployeeName           DAVID OKEEFFE
JobTitle            POLICE OFFICER I
BasePay                     91796.62
OvertimePay                  1466.93
OtherPay                     6898.97
Benefits                         NaN
TotalPay                   100162.52
TotalPayBenefits           100162.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9469, dtype: object)
(9470, Id                             9471
EmployeeName        RAFAEL GONZALEZ
JobTitle             DEPUTY SHERIFF
BasePay                    86506.01
OvertimePay                 3194.57
OtherPay                   10451.78
Benefits                        NaN
TotalPay                  100152.36
TotalPayBenefits          100152.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9470, dtype: object)
(9471, Id                                        9472
EmployeeName                      MICHAEL FORD
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                               86447.55
OvertimePay                           13685.29
OtherPay                                  13.5
Benefits                                   NaN
TotalPay                             100146.34
TotalPayBenefits                     100146.34
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9471, dtype: object)
(9472, Id                                       9473
EmployeeName                    JOHN SCOTT II
JobTitle            TRANSIT POWER LINE WORKER
BasePay                               85260.7
OvertimePay                            7436.5
OtherPay                              7446.83
Benefits                                  NaN
TotalPay                            100144.03
TotalPayBenefits                    100144.03
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9472, dtype: object)
(9473, Id                           9474
EmployeeName         BIJAN KARIMI
JobTitle               MANAGER IV
BasePay                 100140.73
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                100140.73
TotalPayBenefits        100140.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9473, dtype: object)
(9474, Id                                9475
EmployeeName            LAWRENCE BROWN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    5955.95
OtherPay                       6119.75
Benefits                           NaN
TotalPay                      100137.7
TotalPayBenefits              100137.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9474, dtype: object)
(9475, Id                              9476
EmployeeName           LINDSEY ADAMS
JobTitle            SECURITY ANALYST
BasePay                    100135.14
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                   100135.14
TotalPayBenefits           100135.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9475, dtype: object)
(9476, Id                              9477
EmployeeName              JARED VADO
JobTitle            TRANSIT OPERATOR
BasePay                     58132.28
OvertimePay                 38484.04
OtherPay                     3510.92
Benefits                         NaN
TotalPay                   100127.24
TotalPayBenefits           100127.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9476, dtype: object)
(9477, Id                                                      9478
EmployeeName                                    ROBERT HARDY
JobTitle            TRANSIT CAR CLEANER ASSISTANT SUPERVISOR
BasePay                                             61273.43
OvertimePay                                         28036.38
OtherPay                                            10799.57
Benefits                                                 NaN
TotalPay                                           100109.38
TotalPayBenefits                                   100109.38
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9477, dtype: object)
(9478, Id                               9479
EmployeeName           MATTHEW ORTEGA
JobTitle            POLICE OFFICER II
BasePay                      92372.49
OvertimePay                   2412.67
OtherPay                      5314.77
Benefits                          NaN
TotalPay                    100099.93
TotalPayBenefits            100099.93
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9478, dtype: object)
(9479, Id                                              9480
EmployeeName                               KEVIN GIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                    100087.23
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                   100087.23
TotalPayBenefits                           100087.23
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9479, dtype: object)
(9480, Id                                        9481
EmployeeName                  MATTHEW COSTELLO
JobTitle            UTILITY PLUMBER APPRENTICE
BasePay                                84549.5
OvertimePay                            2119.11
OtherPay                              13415.77
Benefits                                   NaN
TotalPay                             100084.38
TotalPayBenefits                     100084.38
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9480, dtype: object)
(9481, Id                             9482
EmployeeName        JANE ELLEN GAMA
JobTitle              SPECIAL NURSE
BasePay                    95820.37
OvertimePay                     0.0
OtherPay                    4259.74
Benefits                        NaN
TotalPay                  100080.11
TotalPayBenefits          100080.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9481, dtype: object)
(9482, Id                              9483
EmployeeName            DEBORAH NEIL
JobTitle            POLICE OFFICER I
BasePay                     57758.42
OvertimePay                 20926.91
OtherPay                    21394.15
Benefits                         NaN
TotalPay                   100079.48
TotalPayBenefits           100079.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9482, dtype: object)
(9483, Id                                   9484
EmployeeName               JEREMY DEJESUS
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96252.04
OvertimePay                       1203.61
OtherPay                          2622.02
Benefits                              NaN
TotalPay                        100077.67
TotalPayBenefits                100077.67
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9483, dtype: object)
(9484, Id                                               9485
EmployeeName                           ARMANDO LUMBAD
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99000.0
OvertimePay                                       0.0
OtherPay                                       1075.5
Benefits                                          NaN
TotalPay                                     100075.5
TotalPayBenefits                             100075.5
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9484, dtype: object)
(9485, Id                                            9486
EmployeeName                          ANGELA RAMOS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.04
OvertimePay                                    0.0
OtherPay                                   5742.54
Benefits                                       NaN
TotalPay                                 100063.58
TotalPayBenefits                         100063.58
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9485, dtype: object)
(9486, Id                                  9487
EmployeeName        RICHARD VELASCO-CHUA
JobTitle                TRANSIT OPERATOR
BasePay                         66810.54
OvertimePay                     30948.52
OtherPay                          2304.5
Benefits                             NaN
TotalPay                       100063.56
TotalPayBenefits               100063.56
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9486, dtype: object)
(9487, Id                                9488
EmployeeName          JOSEPHINE ANGCAY
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.05
OvertimePay                        0.0
OtherPay                         100.0
Benefits                           NaN
TotalPay                     100061.05
TotalPayBenefits             100061.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9487, dtype: object)
(9488, Id                                9489
EmployeeName            SANDRA SPRAGUE
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.05
OvertimePay                        0.0
OtherPay                         100.0
Benefits                           NaN
TotalPay                     100061.05
TotalPayBenefits             100061.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9488, dtype: object)
(9489, Id                                    9490
EmployeeName                    DORIS KONG
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.02
OvertimePay                            0.0
OtherPay                             100.0
Benefits                               NaN
TotalPay                         100061.02
TotalPayBenefits                 100061.02
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9489, dtype: object)
(9490, Id                                9491
EmployeeName           DARLENE HARTLEY
JobTitle            BUILDING INSPECTOR
BasePay                       100054.3
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      100054.3
TotalPayBenefits              100054.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9490, dtype: object)
(9491, Id                                    9492
EmployeeName                 JAMES PHILSON
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.09
OvertimePay                        8140.56
OtherPay                           1241.59
Benefits                               NaN
TotalPay                         100046.24
TotalPayBenefits                 100046.24
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9491, dtype: object)
(9492, Id                                               9493
EmployeeName                             ERIC YOUNGER
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      96033.62
OvertimePay                                    1166.4
OtherPay                                      2844.51
Benefits                                          NaN
TotalPay                                    100044.53
TotalPayBenefits                            100044.53
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9492, dtype: object)
(9493, Id                                          9494
EmployeeName                      ELEANOR MUNGER
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.35
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.35
TotalPayBenefits                       100039.35
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9493, dtype: object)
(9494, Id                                          9495
EmployeeName                        JON HEPWORTH
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.24
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.24
TotalPayBenefits                       100039.24
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9494, dtype: object)
(9495, Id                                          9496
EmployeeName                         REGINA PERA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.24
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.24
TotalPayBenefits                       100039.24
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9495, dtype: object)
(9496, Id                                          9497
EmployeeName                      CATHERINE CRUZ
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.23
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.23
TotalPayBenefits                       100039.23
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9496, dtype: object)
(9497, Id                                          9498
EmployeeName                        SUZANNE WONG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.22
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.22
TotalPayBenefits                       100039.22
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9497, dtype: object)
(9498, Id                                          9499
EmployeeName                        ANTHONY WONG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.22
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.22
TotalPayBenefits                       100039.22
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9498, dtype: object)
(9499, Id                                          9500
EmployeeName                     GUSTAVO VALLEJO
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.22
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.22
TotalPayBenefits                       100039.22
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9499, dtype: object)
(9500, Id                                          9501
EmployeeName                    ESTIFANOS TSEGAY
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9500, dtype: object)
(9501, Id                                          9502
EmployeeName                           JUDI SOTO
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9501, dtype: object)
(9502, Id                                          9503
EmployeeName                     BALGOPAL KHADGI
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9502, dtype: object)
(9503, Id                                          9504
EmployeeName                         XING YE ZHU
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9503, dtype: object)
(9504, Id                                          9505
EmployeeName                    KIMBERLY VOELKER
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9504, dtype: object)
(9505, Id                                          9506
EmployeeName                     DONALD YAMAMOTO
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9505, dtype: object)
(9506, Id                                          9507
EmployeeName                 PATIENCE HUTCHINSON
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9506, dtype: object)
(9507, Id                                          9508
EmployeeName                       KELVIN NGUYEN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100039.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100039.21
TotalPayBenefits                       100039.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9507, dtype: object)
(9508, Id                                          9509
EmployeeName                           FELIX YAN
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9508, dtype: object)
(9509, Id                                          9510
EmployeeName                            AMY TSAO
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9509, dtype: object)
(9510, Id                                          9511
EmployeeName                         CARSON DANG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9510, dtype: object)
(9511, Id                                          9512
EmployeeName                    OLUSOLA ODERINDE
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9511, dtype: object)
(9512, Id                                          9513
EmployeeName                          JACK OWENS
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9512, dtype: object)
(9513, Id                                          9514
EmployeeName                      SYLVIA HERRERA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9513, dtype: object)
(9514, Id                                          9515
EmployeeName                        JOY DIFRANZA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9514, dtype: object)
(9515, Id                                          9516
EmployeeName                    DIRK SCHWARZHOFF
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 100039.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                100039.2
TotalPayBenefits                        100039.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9515, dtype: object)
(9516, Id                                          9517
EmployeeName           BERNADETTE CASINO ANGRAND
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                100038.62
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                               100038.62
TotalPayBenefits                       100038.62
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9516, dtype: object)
(9517, Id                                        9518
EmployeeName                KENNETH HANGARTNER
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82746.91
OvertimePay                            4513.85
OtherPay                              12774.59
Benefits                                   NaN
TotalPay                             100035.35
TotalPayBenefits                     100035.35
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9517, dtype: object)
(9518, Id                            9519
EmployeeName        RONALD WALLACE
JobTitle               STEAMFITTER
BasePay                   91483.28
OvertimePay                 4307.8
OtherPay                   4238.16
Benefits                       NaN
TotalPay                 100029.24
TotalPayBenefits         100029.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9518, dtype: object)
(9519, Id                              9520
EmployeeName          ROSITA SERRANO
JobTitle            REGISTERED NURSE
BasePay                     87066.45
OvertimePay                   3567.3
OtherPay                     9393.66
Benefits                         NaN
TotalPay                   100027.41
TotalPayBenefits           100027.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9519, dtype: object)
(9520, Id                                   9521
EmployeeName        SLOBODAN CEVRLJAKOVIC
JobTitle             AUTOMOTIVE MACHINIST
BasePay                          72982.26
OvertimePay                      22996.96
OtherPay                          4044.09
Benefits                              NaN
TotalPay                        100023.31
TotalPayBenefits                100023.31
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9520, dtype: object)
(9521, Id                                            9522
EmployeeName                            EDITH CHAN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.62
OvertimePay                                1047.58
OtherPay                                   4678.78
Benefits                                       NaN
TotalPay                                 100022.98
TotalPayBenefits                         100022.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9521, dtype: object)
(9522, Id                              9523
EmployeeName          KIMBERLY CATES
JobTitle            REGISTERED NURSE
BasePay                     90524.78
OvertimePay                      0.0
OtherPay                     9495.26
Benefits                         NaN
TotalPay                   100020.04
TotalPayBenefits           100020.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9522, dtype: object)
(9523, Id                             9524
EmployeeName        RAYMOND JACKSON
JobTitle                    PLUMBER
BasePay                     90098.4
OvertimePay                 5350.04
OtherPay                    4566.82
Benefits                        NaN
TotalPay                  100015.26
TotalPayBenefits          100015.26
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9523, dtype: object)
(9524, Id                              9525
EmployeeName            ERIKA KIEFER
JobTitle            REGISTERED NURSE
BasePay                     85256.59
OvertimePay                   1198.2
OtherPay                    13528.56
Benefits                         NaN
TotalPay                    99983.35
TotalPayBenefits            99983.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9524, dtype: object)
(9525, Id                                               9526
EmployeeName                           GREGORY DORAIS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      97490.96
OvertimePay                                    2311.2
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                     99982.16
TotalPayBenefits                             99982.16
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9525, dtype: object)
(9526, Id                                  9527
EmployeeName              GRACE ENRIQUEZ
JobTitle            IS ADMINISTRATOR III
BasePay                          99962.7
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         99962.7
TotalPayBenefits                 99962.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9526, dtype: object)
(9527, Id                                9528
EmployeeName            RONALD SHEREDY
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.59
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      99961.59
TotalPayBenefits              99961.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9527, dtype: object)
(9528, Id                                    9529
EmployeeName                  MARY GODFREY
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.33
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          99961.33
TotalPayBenefits                  99961.33
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9528, dtype: object)
(9529, Id                                9530
EmployeeName                 DANA BLUM
JobTitle            PHYSICAL THERAPIST
BasePay                       99961.28
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      99961.28
TotalPayBenefits              99961.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9529, dtype: object)
(9530, Id                                    9531
EmployeeName               SUZANNE BIKAKIS
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.06
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          99961.06
TotalPayBenefits                  99961.06
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9530, dtype: object)
(9531, Id                                    9532
EmployeeName                 BRUCE CLIFTON
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          99961.04
TotalPayBenefits                  99961.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9531, dtype: object)
(9532, Id                                    9533
EmployeeName                  BRUCE STAUDT
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           99961.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          99961.03
TotalPayBenefits                  99961.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9532, dtype: object)
(9533, Id                                9534
EmployeeName            DANIEL DRUMMER
JobTitle            PHYSICAL THERAPIST
BasePay                        99961.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       99961.0
TotalPayBenefits               99961.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9533, dtype: object)
(9534, Id                                          9535
EmployeeName                  PATCHARIN REYNOLDS
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 99959.74
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                99959.74
TotalPayBenefits                        99959.74
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9534, dtype: object)
(9535, Id                                                9536
EmployeeName                        ARVIN CAMPOSAGRADO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77697.69
OvertimePay                                   13765.74
OtherPay                                       8494.12
Benefits                                           NaN
TotalPay                                      99957.55
TotalPayBenefits                              99957.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9535, dtype: object)
(9536, Id                                                               9537
EmployeeName                                             SUNIL SEHGAL
JobTitle            SENIOR STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                      90376.02
OvertimePay                                                   2802.55
OtherPay                                                      6778.27
Benefits                                                          NaN
TotalPay                                                     99956.84
TotalPayBenefits                                             99956.84
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 9536, dtype: object)
(9537, Id                                                   9538
EmployeeName                                 SAMSON DUQUE
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                           99954.2
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                          99954.2
TotalPayBenefits                                  99954.2
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9537, dtype: object)
(9538, Id                                               9539
EmployeeName                           RANDY CIPRIANI
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                  12362.86
OtherPay                                       7769.6
Benefits                                          NaN
TotalPay                                     99952.46
TotalPayBenefits                             99952.46
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9538, dtype: object)
(9539, Id                                        9540
EmployeeName                 GEORGE CUMBERLAND
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               85072.01
OvertimePay                           13568.99
OtherPay                               1310.99
Benefits                                   NaN
TotalPay                              99951.99
TotalPayBenefits                      99951.99
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9539, dtype: object)
(9540, Id                                    9541
EmployeeName                  RINA MENDOZA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85517.02
OvertimePay                        6733.33
OtherPay                           7679.65
Benefits                               NaN
TotalPay                           99930.0
TotalPayBenefits                   99930.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9540, dtype: object)
(9541, Id                                9542
EmployeeName          NORMAN GUTIERREZ
JobTitle            BUILDING INSPECTOR
BasePay                        97608.0
OvertimePay                        0.0
OtherPay                       2300.25
Benefits                           NaN
TotalPay                      99908.25
TotalPayBenefits              99908.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9541, dtype: object)
(9542, Id                                                   9543
EmployeeName                                   CONNIE YEE
JobTitle            PRINCIPAL PAYROLL AND PERSONNEL CLERK
BasePay                                          71777.22
OvertimePay                                      28123.67
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         99900.89
TotalPayBenefits                                 99900.89
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9542, dtype: object)
(9543, Id                            9544
EmployeeName        CLEORIS ROGERS
JobTitle            DEPUTY SHERIFF
BasePay                   84840.59
OvertimePay                8926.27
OtherPay                   6132.42
Benefits                       NaN
TotalPay                  99899.28
TotalPayBenefits          99899.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9543, dtype: object)
(9544, Id                            9545
EmployeeName        LOUIS FERRIGNO
JobTitle            DEPUTY SHERIFF
BasePay                   75631.63
OvertimePay               19789.95
OtherPay                   4470.16
Benefits                       NaN
TotalPay                  99891.74
TotalPayBenefits          99891.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9544, dtype: object)
(9545, Id                                9546
EmployeeName        BATISTE COLLINS JR
JobTitle              TRANSIT OPERATOR
BasePay                       66009.95
OvertimePay                   32054.52
OtherPay                       1821.65
Benefits                           NaN
TotalPay                      99886.12
TotalPayBenefits              99886.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9545, dtype: object)
(9546, Id                                  9547
EmployeeName               REGIDOR RUARO
JobTitle            PAINTER SUPERVISOR I
BasePay                         82409.04
OvertimePay                      9868.23
OtherPay                         7597.91
Benefits                             NaN
TotalPay                        99875.18
TotalPayBenefits                99875.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9546, dtype: object)
(9547, Id                                 9548
EmployeeName                 PAUL AXIAQ
JobTitle            AIRPORT ELECTRICIAN
BasePay                        94501.25
OvertimePay                     3509.89
OtherPay                         1863.0
Benefits                            NaN
TotalPay                       99874.14
TotalPayBenefits               99874.14
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9547, dtype: object)
(9548, Id                                9549
EmployeeName               LEVIS OWENS
JobTitle            NURSE PRACTITIONER
BasePay                       99615.99
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      99865.99
TotalPayBenefits              99865.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9548, dtype: object)
(9549, Id                                               9550
EmployeeName                             JOSEPH MCGEE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       83470.2
OvertimePay                                   8200.54
OtherPay                                      8187.67
Benefits                                          NaN
TotalPay                                     99858.41
TotalPayBenefits                             99858.41
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9549, dtype: object)
(9550, Id                             9551
EmployeeName        WILLIAM TOPOIAN
JobTitle                    PLUMBER
BasePay                    90098.43
OvertimePay                 1106.91
OtherPay                    8645.43
Benefits                        NaN
TotalPay                   99850.77
TotalPayBenefits           99850.77
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9550, dtype: object)
(9551, Id                              9552
EmployeeName          CHRISTINE LEHN
JobTitle            REGISTERED NURSE
BasePay                     90114.69
OvertimePay                   3900.4
OtherPay                     5828.19
Benefits                         NaN
TotalPay                    99843.28
TotalPayBenefits            99843.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9551, dtype: object)
(9552, Id                                  9553
EmployeeName              CRAIG CHANDLER
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                         4637.16
Benefits                             NaN
TotalPay                        99840.17
TotalPayBenefits                99840.17
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9552, dtype: object)
(9553, Id                                9554
EmployeeName        BERNADETTE CURRIER
JobTitle            PHYSICAL THERAPIST
BasePay                       99834.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      99834.44
TotalPayBenefits              99834.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9553, dtype: object)
(9554, Id                           9555
EmployeeName          DAISY HUANG
JobTitle            SPECIAL NURSE
BasePay                  88242.75
OvertimePay               1297.54
OtherPay                  10293.4
Benefits                      NaN
TotalPay                 99833.69
TotalPayBenefits         99833.69
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9554, dtype: object)
(9555, Id                                    9556
EmployeeName                LESLEY SUDDUTH
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85698.96
OvertimePay                         264.29
OtherPay                          13848.97
Benefits                               NaN
TotalPay                          99812.22
TotalPayBenefits                  99812.22
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9555, dtype: object)
(9556, Id                              9557
EmployeeName              DAVID CHAU
JobTitle            TRANSIT OPERATOR
BasePay                     65502.24
OvertimePay                 31338.43
OtherPay                     2967.05
Benefits                         NaN
TotalPay                    99807.72
TotalPayBenefits            99807.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9556, dtype: object)
(9557, Id                              9558
EmployeeName           DIANA HARTMAN
JobTitle            REGISTERED NURSE
BasePay                      99044.2
OvertimePay                   258.53
OtherPay                       500.0
Benefits                         NaN
TotalPay                    99802.73
TotalPayBenefits            99802.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9557, dtype: object)
(9558, Id                                                        9559
EmployeeName                                         JEANNE LU
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.01
OvertimePay                                                0.0
OtherPay                                                2184.0
Benefits                                                   NaN
TotalPay                                              99802.01
TotalPayBenefits                                      99802.01
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9558, dtype: object)
(9559, Id                                          9560
EmployeeName                      SCOTT POLISTER
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 99655.22
OvertimePay                               144.49
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                99799.71
TotalPayBenefits                        99799.71
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9559, dtype: object)
(9560, Id                                       9561
EmployeeName                        KENT CHIN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58741.6
OvertimePay                           28732.3
OtherPay                             12320.43
Benefits                                  NaN
TotalPay                             99794.33
TotalPayBenefits                     99794.33
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9560, dtype: object)
(9561, Id                                  9562
EmployeeName                 GILMAN WONG
JobTitle            CAR AND AUTO PAINTER
BasePay                         67730.74
OvertimePay                      20893.5
OtherPay                        11160.47
Benefits                             NaN
TotalPay                        99784.71
TotalPayBenefits                99784.71
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9561, dtype: object)
(9562, Id                           9563
EmployeeName        STEVEN CURRIE
JobTitle                MANAGER I
BasePay                  99779.22
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 99779.22
TotalPayBenefits         99779.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9562, dtype: object)
(9563, Id                                  9564
EmployeeName             MICHAEL MACARIO
JobTitle            TRAFFIC SIGN MANAGER
BasePay                         99415.01
OvertimePay                          0.0
OtherPay                           360.0
Benefits                             NaN
TotalPay                        99775.01
TotalPayBenefits                99775.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9563, dtype: object)
(9564, Id                            9565
EmployeeName         JAMES NAGUINA
JobTitle            DEPUTY SHERIFF
BasePay                   83045.35
OvertimePay                9820.95
OtherPay                   6907.48
Benefits                       NaN
TotalPay                  99773.78
TotalPayBenefits          99773.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9564, dtype: object)
(9565, Id                            9566
EmployeeName              IAN YSIP
JobTitle            DEPUTY SHERIFF
BasePay                   81522.53
OvertimePay                9692.55
OtherPay                   8555.19
Benefits                       NaN
TotalPay                  99770.27
TotalPayBenefits          99770.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9565, dtype: object)
(9566, Id                                  9567
EmployeeName           REYMILAN BERNARDO
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                         4548.23
Benefits                             NaN
TotalPay                        99751.24
TotalPayBenefits                99751.24
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9566, dtype: object)
(9567, Id                            9568
EmployeeName           JAMIL JONES
JobTitle            DEPUTY SHERIFF
BasePay                   85166.24
OvertimePay                3144.43
OtherPay                  11436.92
Benefits                       NaN
TotalPay                  99747.59
TotalPayBenefits          99747.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9567, dtype: object)
(9568, Id                                                9569
EmployeeName                            RENATO SOLOMON
JobTitle            ELECTRIC MOTOR REPAIR SUPERVISOR I
BasePay                                        99014.4
OvertimePay                                     549.86
OtherPay                                         180.0
Benefits                                           NaN
TotalPay                                      99744.26
TotalPayBenefits                              99744.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9568, dtype: object)
(9569, Id                              9570
EmployeeName               JOHN YANG
JobTitle            TRANSIT OPERATOR
BasePay                     67481.54
OvertimePay                 29063.47
OtherPay                     3194.56
Benefits                         NaN
TotalPay                    99739.57
TotalPayBenefits            99739.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9569, dtype: object)
(9570, Id                            9571
EmployeeName             ERIC WONG
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                1425.05
OtherPay                  11458.69
Benefits                       NaN
TotalPay                  99723.75
TotalPayBenefits          99723.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9570, dtype: object)
(9571, Id                                      9572
EmployeeName             JUSTINE HINDERLITER
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             99713.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            99713.01
TotalPayBenefits                    99713.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9571, dtype: object)
(9572, Id                           9573
EmployeeName        AILEEN FAENZI
JobTitle              STEAMFITTER
BasePay                  89735.14
OvertimePay               5848.46
OtherPay                  4123.26
Benefits                      NaN
TotalPay                 99706.86
TotalPayBenefits         99706.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9572, dtype: object)
(9573, Id                              9574
EmployeeName          EMILDA REINOSA
JobTitle            REGISTERED NURSE
BasePay                     96346.46
OvertimePay                      0.0
OtherPay                     3347.42
Benefits                         NaN
TotalPay                    99693.88
TotalPayBenefits            99693.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9573, dtype: object)
(9574, Id                                    9575
EmployeeName                   RYAN WATSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79949.61
OvertimePay                        7690.02
OtherPay                          12051.28
Benefits                               NaN
TotalPay                          99690.91
TotalPayBenefits                  99690.91
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9574, dtype: object)
(9575, Id                              9576
EmployeeName          TREVOR LINDSAY
JobTitle            REGISTERED NURSE
BasePay                      97894.8
OvertimePay                  1516.68
OtherPay                      272.98
Benefits                         NaN
TotalPay                    99684.46
TotalPayBenefits            99684.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9575, dtype: object)
(9576, Id                                  9577
EmployeeName        SANDRA MACLIN-GIBSON
JobTitle                  DEPUTY SHERIFF
BasePay                         71715.67
OvertimePay                     18378.12
OtherPay                         9588.58
Benefits                             NaN
TotalPay                        99682.37
TotalPayBenefits                99682.37
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9576, dtype: object)
(9577, Id                                9578
EmployeeName           GREGORY SALCEDO
JobTitle            POLICE OFFICER III
BasePay                       89146.21
OvertimePay                    1315.07
OtherPay                       9214.07
Benefits                           NaN
TotalPay                      99675.35
TotalPayBenefits              99675.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9577, dtype: object)
(9578, Id                            9579
EmployeeName         NGAWANG BISTA
JobTitle            DEPUTY SHERIFF
BasePay                   71343.02
OvertimePay               22947.46
OtherPay                   5376.88
Benefits                       NaN
TotalPay                  99667.36
TotalPayBenefits          99667.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9578, dtype: object)
(9579, Id                              9580
EmployeeName           DONALD JORDAN
JobTitle            TRANSIT OPERATOR
BasePay                     65089.24
OvertimePay                 34539.32
OtherPay                        34.9
Benefits                         NaN
TotalPay                    99663.46
TotalPayBenefits            99663.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9579, dtype: object)
(9580, Id                            9581
EmployeeName         HLA KHIN WONG
JobTitle            DEPUTY SHERIFF
BasePay                   80833.66
OvertimePay               17604.37
OtherPay                   1218.66
Benefits                       NaN
TotalPay                  99656.69
TotalPayBenefits          99656.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9580, dtype: object)
(9581, Id                                                9582
EmployeeName                             RENE QUIAMBAO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   14184.74
OtherPay                                        7902.0
Benefits                                           NaN
TotalPay                                      99655.74
TotalPayBenefits                              99655.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9581, dtype: object)
(9582, Id                                                          9583
EmployeeName                                         LOME ASERON
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 99655.09
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                99655.09
TotalPayBenefits                                        99655.09
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 9582, dtype: object)
(9583, Id                           9584
EmployeeName            PAUL BOUC
JobTitle                  PLUMBER
BasePay                   90098.4
OvertimePay                136.23
OtherPay                   9416.2
Benefits                      NaN
TotalPay                 99650.83
TotalPayBenefits         99650.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9583, dtype: object)
(9584, Id                                               9585
EmployeeName                            RENATO SANTOS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                     213.3
OtherPay                                        414.0
Benefits                                          NaN
TotalPay                                      99641.7
TotalPayBenefits                              99641.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9584, dtype: object)
(9585, Id                                            9586
EmployeeName                        HELGA ZIMMERER
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.59
OvertimePay                                    0.0
OtherPay                                   5339.38
Benefits                                       NaN
TotalPay                                  99635.97
TotalPayBenefits                          99635.97
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9585, dtype: object)
(9586, Id                                            9587
EmployeeName                      SUSAN STOLLERMAN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.63
OvertimePay                                    0.0
OtherPay                                   5339.33
Benefits                                       NaN
TotalPay                                  99635.96
TotalPayBenefits                          99635.96
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9586, dtype: object)
(9587, Id                            9588
EmployeeName           WILLIAM JOE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                6783.54
OtherPay                   5985.31
Benefits                       NaN
TotalPay                  99608.86
TotalPayBenefits          99608.86
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9587, dtype: object)
(9588, Id                                         9589
EmployeeName                          THAO TRAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                98358.47
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                                    NaN
TotalPay                               99608.47
TotalPayBenefits                       99608.47
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9588, dtype: object)
(9589, Id                                          9590
EmployeeName                      LILLIBETH CUSI
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 99607.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                99607.21
TotalPayBenefits                        99607.21
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9589, dtype: object)
(9590, Id                                       9591
EmployeeName                         HUNG LEE
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64829.31
OvertimePay                          28470.43
OtherPay                              6302.32
Benefits                                  NaN
TotalPay                             99602.06
TotalPayBenefits                     99602.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9590, dtype: object)
(9591, Id                              9592
EmployeeName        RICARDO MARTINEZ
JobTitle            TRANSIT OPERATOR
BasePay                     65668.43
OvertimePay                 29422.75
OtherPay                     4497.87
Benefits                         NaN
TotalPay                    99589.05
TotalPayBenefits            99589.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9591, dtype: object)
(9592, Id                            9593
EmployeeName        STEPHEN XAVIER
JobTitle            DEPUTY SHERIFF
BasePay                   72223.76
OvertimePay               17397.36
OtherPay                   9966.89
Benefits                       NaN
TotalPay                  99588.01
TotalPayBenefits          99588.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9592, dtype: object)
(9593, Id                           9594
EmployeeName            DAVID ONG
JobTitle                MANAGER I
BasePay                  99575.73
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 99575.73
TotalPayBenefits         99575.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9593, dtype: object)
(9594, Id                                9595
EmployeeName           WILLIE WILLIAMS
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    3466.48
OtherPay                       8044.23
Benefits                           NaN
TotalPay                      99572.71
TotalPayBenefits              99572.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9594, dtype: object)
(9595, Id                             9596
EmployeeName        BEVERLY DETIEGE
JobTitle             DEPUTY SHERIFF
BasePay                    86840.03
OvertimePay                 2910.01
OtherPay                    9816.17
Benefits                        NaN
TotalPay                   99566.21
TotalPayBenefits           99566.21
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9595, dtype: object)
(9596, Id                                                9597
EmployeeName                                 KENNY LEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   14600.74
OtherPay                                       7379.46
Benefits                                           NaN
TotalPay                                       99560.6
TotalPayBenefits                               99560.6
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9596, dtype: object)
(9597, Id                                 9598
EmployeeName             JAMES CAMPBELL
JobTitle            TRANSIT PLANNER III
BasePay                        97306.89
OvertimePay                         0.0
OtherPay                        2249.67
Benefits                            NaN
TotalPay                       99556.56
TotalPayBenefits               99556.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9597, dtype: object)
(9598, Id                                           9599
EmployeeName                      VIRGINIA MORGAN
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   83580.7
OvertimePay                              14599.82
OtherPay                                  1366.03
Benefits                                      NaN
TotalPay                                 99546.55
TotalPayBenefits                         99546.55
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9598, dtype: object)
(9599, Id                              9600
EmployeeName           RITA CONNOLLY
JobTitle            REGISTERED NURSE
BasePay                     89095.75
OvertimePay                  1057.71
OtherPay                     9391.09
Benefits                         NaN
TotalPay                    99544.55
TotalPayBenefits            99544.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9599, dtype: object)
(9600, Id                                             9601
EmployeeName                         LORRIE TANIOKA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                     99544.3
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                    99544.3
TotalPayBenefits                            99544.3
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 9600, dtype: object)
(9601, Id                                                        9602
EmployeeName                                      JUSTIN JAMES
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                79820.0
OvertimePay                                             7595.2
OtherPay                                              12123.03
Benefits                                                   NaN
TotalPay                                              99538.23
TotalPayBenefits                                      99538.23
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9601, dtype: object)
(9602, Id                                              9603
EmployeeName                             EILEEN ROSS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     99534.03
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    99534.03
TotalPayBenefits                            99534.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9602, dtype: object)
(9603, Id                                               9604
EmployeeName                          KHALID OUTLIOUA
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99532.8
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                      99532.8
TotalPayBenefits                              99532.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9603, dtype: object)
(9604, Id                            9605
EmployeeName             ALEX WONG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6287.92
OtherPay                   6398.77
Benefits                       NaN
TotalPay                  99526.69
TotalPayBenefits          99526.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9604, dtype: object)
(9605, Id                              9606
EmployeeName         JESSICA OROURKE
JobTitle            REGISTERED NURSE
BasePay                     81909.01
OvertimePay                  1582.77
OtherPay                    16033.02
Benefits                         NaN
TotalPay                     99524.8
TotalPayBenefits             99524.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9605, dtype: object)
(9606, Id                                          9607
EmployeeName                       NORMAN NELSON
JobTitle            UTILITY PLUMBER SUPERVISOR I
BasePay                                 80059.79
OvertimePay                             14899.54
OtherPay                                  4562.8
Benefits                                     NaN
TotalPay                                99522.13
TotalPayBenefits                        99522.13
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9606, dtype: object)
(9607, Id                                   9608
EmployeeName              THOMAS BLEECKER
JobTitle            RESEARCH PSYCHOLOGIST
BasePay                           99521.4
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          99521.4
TotalPayBenefits                  99521.4
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9607, dtype: object)
(9608, Id                             9609
EmployeeName        ROBERT VILLEGAS
JobTitle             DEPUTY SHERIFF
BasePay                    84499.86
OvertimePay                 4625.94
OtherPay                   10392.47
Benefits                        NaN
TotalPay                   99518.27
TotalPayBenefits           99518.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9608, dtype: object)
(9609, Id                                               9610
EmployeeName                         ANTHONY PASTRANO
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      96686.71
OvertimePay                                    2329.8
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                     99516.51
TotalPayBenefits                             99516.51
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9609, dtype: object)
(9610, Id                                 9611
EmployeeName           MICHELLE BARBARY
JobTitle            PUBLIC HEALTH NURSE
BasePay                        99146.22
OvertimePay                         0.0
OtherPay                          369.8
Benefits                            NaN
TotalPay                       99516.02
TotalPayBenefits               99516.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9610, dtype: object)
(9611, Id                              9612
EmployeeName            WINSTON CHIN
JobTitle            TRANSIT OPERATOR
BasePay                     68287.14
OvertimePay                 29431.27
OtherPay                     1790.98
Benefits                         NaN
TotalPay                    99509.39
TotalPayBenefits            99509.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9611, dtype: object)
(9612, Id                              9613
EmployeeName              BILLY CHAN
JobTitle            TRANSIT OPERATOR
BasePay                      62206.7
OvertimePay                  33147.6
OtherPay                     4152.65
Benefits                         NaN
TotalPay                    99506.95
TotalPayBenefits            99506.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9612, dtype: object)
(9613, Id                              9614
EmployeeName          SUSAN DOMENICI
JobTitle            REGISTERED NURSE
BasePay                     93343.05
OvertimePay                   2204.1
OtherPay                     3953.12
Benefits                         NaN
TotalPay                    99500.27
TotalPayBenefits            99500.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9613, dtype: object)
(9614, Id                                            9615
EmployeeName                            LINDA CHIN
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   98083.96
OvertimePay                                    0.0
OtherPay                                    1410.0
Benefits                                       NaN
TotalPay                                  99493.96
TotalPayBenefits                          99493.96
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9614, dtype: object)
(9615, Id                                9616
EmployeeName             VINCENT LEDDY
JobTitle            PHYSICAL THERAPIST
BasePay                       99480.19
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      99480.19
TotalPayBenefits              99480.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9615, dtype: object)
(9616, Id                                 9617
EmployeeName               DARREN EATON
JobTitle            MAINTENANCE PLANNER
BasePay                        94397.06
OvertimePay                         0.0
OtherPay                         5078.6
Benefits                            NaN
TotalPay                       99475.66
TotalPayBenefits               99475.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9616, dtype: object)
(9617, Id                                9618
EmployeeName              ROBERT PARKS
JobTitle            TRANSIT SUPERVISOR
BasePay                       86590.44
OvertimePay                     9046.2
OtherPay                       3831.31
Benefits                           NaN
TotalPay                      99467.95
TotalPayBenefits              99467.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9617, dtype: object)
(9618, Id                           9619
EmployeeName           SALLY PINA
JobTitle            COURT MANAGER
BasePay                  93503.41
OvertimePay                   0.0
OtherPay                  5952.67
Benefits                      NaN
TotalPay                 99456.08
TotalPayBenefits         99456.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9618, dtype: object)
(9619, Id                                            9620
EmployeeName                 JOHN JOSEPH HALPIN JR
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                    99441.6
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   99441.6
TotalPayBenefits                           99441.6
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9619, dtype: object)
(9620, Id                                                     9621
EmployeeName                                  MARIA NEILSON
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87441.67
OvertimePay                                         4685.36
OtherPay                                            7307.19
Benefits                                                NaN
TotalPay                                           99434.22
TotalPayBenefits                                   99434.22
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9620, dtype: object)
(9621, Id                                   9622
EmployeeName               CHRISTINA PALI
JobTitle            REGULATORY SPECIALIST
BasePay                          94758.06
OvertimePay                           0.0
OtherPay                          4665.14
Benefits                              NaN
TotalPay                          99423.2
TotalPayBenefits                  99423.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9621, dtype: object)
(9622, Id                                   9623
EmployeeName        SHAUNA GILLESPIE-FORD
JobTitle               COURT INVESTIGATOR
BasePay                          98770.95
OvertimePay                           0.0
OtherPay                            651.0
Benefits                              NaN
TotalPay                         99421.95
TotalPayBenefits                 99421.95
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9622, dtype: object)
(9623, Id                           9624
EmployeeName             JIM BELL
JobTitle                  PLUMBER
BasePay                  90280.08
OvertimePay               6696.08
OtherPay                  2438.62
Benefits                      NaN
TotalPay                 99414.78
TotalPayBenefits         99414.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9623, dtype: object)
(9624, Id                                                9625
EmployeeName                             SAU YUEN CHIN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.38
OvertimePay                                   15289.92
OtherPay                                       6541.06
Benefits                                           NaN
TotalPay                                      99411.36
TotalPayBenefits                              99411.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9624, dtype: object)
(9625, Id                                   9626
EmployeeName        LAURIE CHAPRACK-DICKS
JobTitle                 REGISTERED NURSE
BasePay                          85389.09
OvertimePay                       7533.92
OtherPay                          6481.62
Benefits                              NaN
TotalPay                         99404.63
TotalPayBenefits                 99404.63
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9625, dtype: object)
(9626, Id                            9627
EmployeeName          MIGUEL PRADO
JobTitle            DEPUTY SHERIFF
BasePay                   84453.59
OvertimePay                7898.42
OtherPay                   7037.34
Benefits                       NaN
TotalPay                  99389.35
TotalPayBenefits          99389.35
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9626, dtype: object)
(9627, Id                                          9628
EmployeeName                       GORDON LOW-JR
JobTitle            INSTITUTIONAL POLICE OFFICER
BasePay                                 63135.62
OvertimePay                              31522.6
OtherPay                                 4711.59
Benefits                                     NaN
TotalPay                                99369.81
TotalPayBenefits                        99369.81
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9627, dtype: object)
(9628, Id                              9629
EmployeeName              JOHNNY LAU
JobTitle            TRANSIT OPERATOR
BasePay                     68096.44
OvertimePay                 29517.17
OtherPay                     1741.24
Benefits                         NaN
TotalPay                    99354.85
TotalPayBenefits            99354.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9628, dtype: object)
(9629, Id                                9630
EmployeeName                 NATHAN AU
JobTitle            ASSOCIATE ENGINEER
BasePay                        99354.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       99354.6
TotalPayBenefits               99354.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9629, dtype: object)
(9630, Id                                 9631
EmployeeName              GEORGE THOMAS
JobTitle            STATIONARY ENGINEER
BasePay                        72410.01
OvertimePay                    18998.63
OtherPay                        7938.29
Benefits                            NaN
TotalPay                       99346.93
TotalPayBenefits               99346.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9630, dtype: object)
(9631, Id                                               9632
EmployeeName                         JOHN ALBRIGHT-JR
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      84280.94
OvertimePay                                   6706.12
OtherPay                                      8355.11
Benefits                                          NaN
TotalPay                                     99342.17
TotalPayBenefits                             99342.17
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9631, dtype: object)
(9632, Id                              9633
EmployeeName              ANH NGUYEN
JobTitle            POLICE OFFICER I
BasePay                     85499.18
OvertimePay                  5864.89
OtherPay                     7975.82
Benefits                         NaN
TotalPay                    99339.89
TotalPayBenefits            99339.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9632, dtype: object)
(9633, Id                              9634
EmployeeName              DAVID BIHR
JobTitle            REGISTERED NURSE
BasePay                     94150.35
OvertimePay                  3936.64
OtherPay                     1250.58
Benefits                         NaN
TotalPay                    99337.57
TotalPayBenefits            99337.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9633, dtype: object)
(9634, Id                                9635
EmployeeName             WILLIAM DOWNS
JobTitle            TRANSIT SUPERVISOR
BasePay                       74830.11
OvertimePay                   18224.16
OtherPay                       6273.69
Benefits                           NaN
TotalPay                      99327.96
TotalPayBenefits              99327.96
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9634, dtype: object)
(9635, Id                            9636
EmployeeName            MICHAEL LI
JobTitle            DEPUTY SHERIFF
BasePay                    78367.0
OvertimePay               17701.55
OtherPay                   3252.04
Benefits                       NaN
TotalPay                  99320.59
TotalPayBenefits          99320.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9635, dtype: object)
(9636, Id                                    9637
EmployeeName                STEPHEN MARTIN
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                        7601.53
OtherPay                            1045.0
Benefits                               NaN
TotalPay                          99310.54
TotalPayBenefits                  99310.54
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9636, dtype: object)
(9637, Id                                   9638
EmployeeName            JOSEPH LEONARDINI
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          80034.76
OvertimePay                      17137.47
OtherPay                          2128.65
Benefits                              NaN
TotalPay                         99300.88
TotalPayBenefits                 99300.88
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9637, dtype: object)
(9638, Id                                                9639
EmployeeName                                   ERIC WU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       79354.13
OvertimePay                                   17834.26
OtherPay                                        2085.0
Benefits                                           NaN
TotalPay                                      99273.39
TotalPayBenefits                              99273.39
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9638, dtype: object)
(9639, Id                                                           9640
EmployeeName                                          GARY LEVENE
JobTitle            SUPERVISING PROBATION OFFICER, JUVENILE COURT
BasePay                                                  99267.33
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                 99267.33
TotalPayBenefits                                         99267.33
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 9639, dtype: object)
(9640, Id                                                 9641
EmployeeName                                ARTURO FARO
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        99267.03
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       99267.03
TotalPayBenefits                               99267.03
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9640, dtype: object)
(9641, Id                                                 9642
EmployeeName                              SERGIO CALIZO
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        99267.02
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       99267.02
TotalPayBenefits                               99267.02
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9641, dtype: object)
(9642, Id                                                 9643
EmployeeName                                   RAY YANG
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        99267.01
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       99267.01
TotalPayBenefits                               99267.01
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9642, dtype: object)
(9643, Id                                                 9644
EmployeeName                                 ANDRE WOOD
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        99267.01
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       99267.01
TotalPayBenefits                               99267.01
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9643, dtype: object)
(9644, Id                                                           9645
EmployeeName                                       MAGNUS MARDAHL
JobTitle            SUPERVISING PROBATION OFFICER, JUVENILE COURT
BasePay                                                   99266.8
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                  99266.8
TotalPayBenefits                                          99266.8
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 9644, dtype: object)
(9645, Id                             9646
EmployeeName        EDGARDO ESTARES
JobTitle              SPECIAL NURSE
BasePay                    82716.68
OvertimePay                 5175.58
OtherPay                   11373.32
Benefits                        NaN
TotalPay                   99265.58
TotalPayBenefits           99265.58
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9645, dtype: object)
(9646, Id                                               9647
EmployeeName                            FERNANDO LEAL
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                      70.2
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                      99264.6
TotalPayBenefits                              99264.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9646, dtype: object)
(9647, Id                                      9648
EmployeeName                  JONATHAN MYERS
JobTitle            ELECTRICIAN SUPERVISOR I
BasePay                             98356.85
OvertimePay                           446.17
OtherPay                              444.75
Benefits                                 NaN
TotalPay                            99247.77
TotalPayBenefits                    99247.77
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9647, dtype: object)
(9648, Id                              9649
EmployeeName        BENJAMIN ANTARAN
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                   314.38
OtherPay                    12088.08
Benefits                         NaN
TotalPay                    99242.46
TotalPayBenefits            99242.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9648, dtype: object)
(9649, Id                                9650
EmployeeName         TIMOTHY OSULLIVAN
JobTitle            BUILDING INSPECTOR
BasePay                       98141.83
OvertimePay                        0.0
OtherPay                        1100.0
Benefits                           NaN
TotalPay                      99241.83
TotalPayBenefits              99241.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9649, dtype: object)
(9650, Id                                                9651
EmployeeName                             GILBERT JIANG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   14079.59
OtherPay                                       7579.32
Benefits                                           NaN
TotalPay                                      99239.31
TotalPayBenefits                              99239.31
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9650, dtype: object)
(9651, Id                                 9652
EmployeeName        ERICA TERRY DERRYCK
JobTitle                     MANAGER II
BasePay                        87145.66
OvertimePay                         0.0
OtherPay                       12093.52
Benefits                            NaN
TotalPay                       99239.18
TotalPayBenefits               99239.18
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9651, dtype: object)
(9652, Id                                 9653
EmployeeName              JAMES CARLSON
JobTitle            MAINTENANCE PLANNER
BasePay                         95576.0
OvertimePay                     3653.01
OtherPay                            0.0
Benefits                            NaN
TotalPay                       99229.01
TotalPayBenefits               99229.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9652, dtype: object)
(9653, Id                                9654
EmployeeName        JURNATION REYMUNDO
JobTitle                DEPUTY SHERIFF
BasePay                       86229.62
OvertimePay                    2768.06
OtherPay                      10223.68
Benefits                           NaN
TotalPay                      99221.36
TotalPayBenefits              99221.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9653, dtype: object)
(9654, Id                                        9655
EmployeeName                    NIKON DANRIDGE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                           10211.43
OtherPay                               5104.09
Benefits                                   NaN
TotalPay                               99218.1
TotalPayBenefits                       99218.1
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9654, dtype: object)
(9655, Id                            9656
EmployeeName         RHONDA GAINES
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6181.74
OtherPay                   6185.06
Benefits                       NaN
TotalPay                   99206.8
TotalPayBenefits           99206.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9655, dtype: object)
(9656, Id                                               9657
EmployeeName                             JEFFREY WONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                       0.0
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                      99194.4
TotalPayBenefits                              99194.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9656, dtype: object)
(9657, Id                                               9658
EmployeeName                               JASON FONG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                       0.0
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                      99194.4
TotalPayBenefits                              99194.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9657, dtype: object)
(9658, Id                                               9659
EmployeeName                                DAVID GEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       99014.4
OvertimePay                                       0.0
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                      99194.4
TotalPayBenefits                              99194.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9658, dtype: object)
(9659, Id                                 9660
EmployeeName              SEAN SULLIVAN
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    21371.85
OtherPay                        5409.97
Benefits                            NaN
TotalPay                       99191.82
TotalPayBenefits               99191.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9659, dtype: object)
(9660, Id                                9661
EmployeeName               JEANINE LIM
JobTitle            COURT INVESTIGATOR
BasePay                       98577.48
OvertimePay                        0.0
OtherPay                         600.0
Benefits                           NaN
TotalPay                      99177.48
TotalPayBenefits              99177.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9660, dtype: object)
(9661, Id                           9662
EmployeeName            KEN HJELM
JobTitle              STEAMFITTER
BasePay                  89008.52
OvertimePay               5415.42
OtherPay                  4753.39
Benefits                      NaN
TotalPay                 99177.33
TotalPayBenefits         99177.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9661, dtype: object)
(9662, Id                                   9663
EmployeeName                      JEAN TO
JobTitle            IS ENGINEER - JOURNEY
BasePay                          95497.43
OvertimePay                           0.0
OtherPay                          3669.57
Benefits                              NaN
TotalPay                          99167.0
TotalPayBenefits                  99167.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9662, dtype: object)
(9663, Id                                 9664
EmployeeName                MARTIN WONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72198.1
OvertimePay                    20004.43
OtherPay                         6953.5
Benefits                            NaN
TotalPay                       99156.03
TotalPayBenefits               99156.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9663, dtype: object)
(9664, Id                              9665
EmployeeName           TIMOTHY KNEIS
JobTitle            PROBATE EXAMINER
BasePay                      98577.4
OvertimePay                      0.0
OtherPay                       576.0
Benefits                         NaN
TotalPay                     99153.4
TotalPayBenefits             99153.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9664, dtype: object)
(9665, Id                                               9666
EmployeeName                              JOSE MEDINA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                  13392.12
OtherPay                                      5934.84
Benefits                                          NaN
TotalPay                                     99146.97
TotalPayBenefits                             99146.97
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9665, dtype: object)
(9666, Id                                               9667
EmployeeName                          JAMES TRUESDELL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       84103.3
OvertimePay                                   4084.08
OtherPay                                     10950.44
Benefits                                          NaN
TotalPay                                     99137.82
TotalPayBenefits                             99137.82
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9666, dtype: object)
(9667, Id                            9668
EmployeeName           REY YANGUAS
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6563.16
OtherPay                   5721.72
Benefits                       NaN
TotalPay                  99124.88
TotalPayBenefits          99124.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9667, dtype: object)
(9668, Id                                             9669
EmployeeName                            CARYN LEWIS
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    98909.13
OvertimePay                                     0.0
OtherPay                                      211.2
Benefits                                        NaN
TotalPay                                   99120.33
TotalPayBenefits                           99120.33
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 9668, dtype: object)
(9669, Id                                                    9670
EmployeeName                                  RODOLFO CAVA
JobTitle            HOSPITAL ELIGIBILITY WORKER SUPERVISOR
BasePay                                            80648.5
OvertimePay                                       12527.18
OtherPay                                           5944.27
Benefits                                               NaN
TotalPay                                          99119.95
TotalPayBenefits                                  99119.95
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 9669, dtype: object)
(9670, Id                              9671
EmployeeName            PHUNG NGUYEN
JobTitle            REGISTERED NURSE
BasePay                     91145.13
OvertimePay                  3930.63
OtherPay                     4043.08
Benefits                         NaN
TotalPay                    99118.84
TotalPayBenefits            99118.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9670, dtype: object)
(9671, Id                                  9672
EmployeeName        MARY ALICE STEVENSON
JobTitle                  SAFETY ANALYST
BasePay                          99117.8
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         99117.8
TotalPayBenefits                 99117.8
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9671, dtype: object)
(9672, Id                                                      9673
EmployeeName                           MARIE ROSEMO GONZALEZ
JobTitle            COURT ASSISTANT - SENIOR, SUPERIOR COURT
BasePay                                             99115.21
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            99115.21
TotalPayBenefits                                    99115.21
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9672, dtype: object)
(9673, Id                                  9674
EmployeeName                DAWN JACKSON
JobTitle            IS ENGINEER - SENIOR
BasePay                          97136.7
OvertimePay                          0.0
OtherPay                         1978.23
Benefits                             NaN
TotalPay                        99114.93
TotalPayBenefits                99114.93
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9673, dtype: object)
(9674, Id                            9675
EmployeeName         CANDACE YOUNT
JobTitle            COURT REPORTER
BasePay                   90084.93
OvertimePay                    0.0
OtherPay                   9008.49
Benefits                       NaN
TotalPay                  99093.42
TotalPayBenefits          99093.42
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9674, dtype: object)
(9675, Id                           9676
EmployeeName           MIKEL JAYE
JobTitle            SPECIAL NURSE
BasePay                  94198.59
OvertimePay               2316.36
OtherPay                  2567.73
Benefits                      NaN
TotalPay                 99082.68
TotalPayBenefits         99082.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9675, dtype: object)
(9676, Id                           9677
EmployeeName          JUNISE HILL
JobTitle                MANAGER I
BasePay                  99076.31
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 99076.31
TotalPayBenefits         99076.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9676, dtype: object)
(9677, Id                               9678
EmployeeName        CHRISTOPHER SMITH
JobTitle             POLICE OFFICER I
BasePay                      94483.22
OvertimePay                   1213.38
OtherPay                      3378.99
Benefits                          NaN
TotalPay                     99075.59
TotalPayBenefits             99075.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9677, dtype: object)
(9678, Id                                   9679
EmployeeName                DOUGLAS NOVAK
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          88942.89
OvertimePay                        2090.7
OtherPay                          8039.62
Benefits                              NaN
TotalPay                         99073.21
TotalPayBenefits                 99073.21
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9678, dtype: object)
(9679, Id                            9680
EmployeeName        ANTHONY VOIGHT
JobTitle               FIREFIGHTER
BasePay                   78460.38
OvertimePay                13605.2
OtherPay                   7007.15
Benefits                       NaN
TotalPay                  99072.73
TotalPayBenefits          99072.73
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9679, dtype: object)
(9680, Id                            9681
EmployeeName        THOMAS ATENCIO
JobTitle             CABLE SPLICER
BasePay                   93103.05
OvertimePay                 5736.3
OtherPay                    226.62
Benefits                       NaN
TotalPay                  99065.97
TotalPayBenefits          99065.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9680, dtype: object)
(9681, Id                                               9682
EmployeeName                      LUIS MARTIN CAMACHO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      86782.91
OvertimePay                                   5132.24
OtherPay                                      7143.21
Benefits                                          NaN
TotalPay                                     99058.36
TotalPayBenefits                             99058.36
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9681, dtype: object)
(9682, Id                                 9683
EmployeeName               JOHN ESTRADA
JobTitle            AIRPORT ELECTRICIAN
BasePay                        92758.41
OvertimePay                     5101.49
OtherPay                         1190.0
Benefits                            NaN
TotalPay                        99049.9
TotalPayBenefits                99049.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9682, dtype: object)
(9683, Id                            9684
EmployeeName        DAVID ROBINETT
JobTitle               MANAGER III
BasePay                   97107.61
OvertimePay                    0.0
OtherPay                   1941.77
Benefits                       NaN
TotalPay                  99049.38
TotalPayBenefits          99049.38
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9683, dtype: object)
(9684, Id                                            9685
EmployeeName                         PAMELA CONNIE
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.05
OvertimePay                                    0.0
OtherPay                                   4716.62
Benefits                                       NaN
TotalPay                                  99037.67
TotalPayBenefits                          99037.67
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9684, dtype: object)
(9685, Id                                9686
EmployeeName        VICTORIA VAN ESSEN
JobTitle                 SPECIAL NURSE
BasePay                       92345.71
OvertimePay                    1218.99
OtherPay                       5469.46
Benefits                           NaN
TotalPay                      99034.16
TotalPayBenefits              99034.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9685, dtype: object)
(9686, Id                                        9687
EmployeeName                  JAMES DIFABIO JR
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                                96855.4
OvertimePay                                0.0
OtherPay                               2169.32
Benefits                                   NaN
TotalPay                              99024.72
TotalPayBenefits                      99024.72
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9686, dtype: object)
(9687, Id                              9688
EmployeeName           LAINE WALLACE
JobTitle            REGISTERED NURSE
BasePay                     88875.15
OvertimePay                  2283.66
OtherPay                     7859.96
Benefits                         NaN
TotalPay                    99018.77
TotalPayBenefits            99018.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9687, dtype: object)
(9688, Id                              9689
EmployeeName        YESENIA RENTERIA
JobTitle            REGISTERED NURSE
BasePay                     85268.04
OvertimePay                  9327.45
OtherPay                     4421.18
Benefits                         NaN
TotalPay                    99016.67
TotalPayBenefits            99016.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9688, dtype: object)
(9689, Id                                            9690
EmployeeName                           BRIAN REEMS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.34
OvertimePay                                    0.0
OtherPay                                   4715.54
Benefits                                       NaN
TotalPay                                  99014.88
TotalPayBenefits                          99014.88
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9689, dtype: object)
(9690, Id                                            9691
EmployeeName                            KAREN KATZ
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.59
OvertimePay                                    0.0
OtherPay                                   4715.33
Benefits                                       NaN
TotalPay                                  99011.92
TotalPayBenefits                          99011.92
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9690, dtype: object)
(9691, Id                              9692
EmployeeName             MIGUEL DIAZ
JobTitle            TRANSIT OPERATOR
BasePay                     67139.42
OvertimePay                 26748.96
OtherPay                     5123.45
Benefits                         NaN
TotalPay                    99011.83
TotalPayBenefits            99011.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9691, dtype: object)
(9692, Id                              9693
EmployeeName        HELEN TROWBRIDGE
JobTitle            PROBATE EXAMINER
BasePay                      98577.4
OvertimePay                      0.0
OtherPay                       432.0
Benefits                         NaN
TotalPay                     99009.4
TotalPayBenefits             99009.4
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9692, dtype: object)
(9693, Id                                        9694
EmployeeName                        MARK NADDY
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82056.02
OvertimePay                            9882.41
OtherPay                                7070.0
Benefits                                   NaN
TotalPay                              99008.43
TotalPayBenefits                      99008.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9693, dtype: object)
(9694, Id                                9695
EmployeeName               TEENCHEE LE
JobTitle            ASSOCIATE ENGINEER
BasePay                       95213.51
OvertimePay                        0.0
OtherPay                       3787.67
Benefits                           NaN
TotalPay                      99001.18
TotalPayBenefits              99001.18
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9694, dtype: object)
(9695, Id                               9696
EmployeeName        CHRISTIAN MARQUEZ
JobTitle             REGISTERED NURSE
BasePay                      92799.39
OvertimePay                       0.0
OtherPay                      6190.89
Benefits                          NaN
TotalPay                     98990.28
TotalPayBenefits             98990.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9695, dtype: object)
(9696, Id                                  9697
EmployeeName                 VINCENT LEE
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                          3783.4
Benefits                             NaN
TotalPay                        98986.41
TotalPayBenefits                98986.41
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9696, dtype: object)
(9697, Id                               9698
EmployeeName        CHARLES NAVIGANTE
JobTitle                   MANAGER II
BasePay                      96231.88
OvertimePay                       0.0
OtherPay                       2753.3
Benefits                          NaN
TotalPay                     98985.18
TotalPayBenefits             98985.18
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9697, dtype: object)
(9698, Id                                            9699
EmployeeName                           SUSANA FONG
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.04
OvertimePay                                 953.84
OtherPay                                   3708.97
Benefits                                       NaN
TotalPay                                  98983.85
TotalPayBenefits                          98983.85
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9698, dtype: object)
(9699, Id                              9700
EmployeeName        STEPHEN GIESEKER
JobTitle                 FIREFIGHTER
BasePay                      56220.0
OvertimePay                 15814.66
OtherPay                    26936.48
Benefits                         NaN
TotalPay                    98971.14
TotalPayBenefits            98971.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9699, dtype: object)
(9700, Id                                       9701
EmployeeName                    LAUREN MONSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              98963.95
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98963.95
TotalPayBenefits                     98963.95
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9700, dtype: object)
(9701, Id                                             9702
EmployeeName                            ROGER REVEL
JobTitle            MUNICIPAL STADIUM GROUNDSKEEPER
BasePay                                     66797.6
OvertimePay                                31468.93
OtherPay                                     667.72
Benefits                                        NaN
TotalPay                                   98934.25
TotalPayBenefits                           98934.25
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 9701, dtype: object)
(9702, Id                           9703
EmployeeName           SANDY CHAN
JobTitle              MANAGER III
BasePay                  98921.06
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 98921.06
TotalPayBenefits         98921.06
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9702, dtype: object)
(9703, Id                                         9704
EmployeeName                         JUDY BLAIR
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 94205.1
OvertimePay                                 0.0
OtherPay                                4710.39
Benefits                                    NaN
TotalPay                               98915.49
TotalPayBenefits                       98915.49
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9703, dtype: object)
(9704, Id                           9705
EmployeeName         JOHN MARONEY
JobTitle               BRICKLAYER
BasePay                  86690.08
OvertimePay               7754.56
OtherPay                  4463.65
Benefits                      NaN
TotalPay                 98908.29
TotalPayBenefits         98908.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9704, dtype: object)
(9705, Id                                       9706
EmployeeName                       MARIA SHIH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              98906.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98906.62
TotalPayBenefits                     98906.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9705, dtype: object)
(9706, Id                                        9707
EmployeeName                    ALBERT LARCINA
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82056.03
OvertimePay                            3044.61
OtherPay                              13802.95
Benefits                                   NaN
TotalPay                              98903.59
TotalPayBenefits                      98903.59
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9706, dtype: object)
(9707, Id                              9708
EmployeeName           PARAMJIT KAUR
JobTitle            POLICE OFFICER I
BasePay                     85049.68
OvertimePay                  4515.54
OtherPay                     9333.45
Benefits                         NaN
TotalPay                    98898.67
TotalPayBenefits            98898.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9707, dtype: object)
(9708, Id                            9709
EmployeeName        ELIZABETH RYAN
JobTitle             CABLE SPLICER
BasePay                   94188.95
OvertimePay                4709.45
OtherPay                       0.0
Benefits                       NaN
TotalPay                   98898.4
TotalPayBenefits           98898.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9708, dtype: object)
(9709, Id                                    9710
EmployeeName               NANNETTE LIPTON
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           98789.43
OvertimePay                            0.0
OtherPay                             100.0
Benefits                               NaN
TotalPay                          98889.43
TotalPayBenefits                  98889.43
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9709, dtype: object)
(9710, Id                                       9711
EmployeeName                MARGARETTE ALVIAR
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              98888.42
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98888.42
TotalPayBenefits                     98888.42
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9710, dtype: object)
(9711, Id                                       9712
EmployeeName                        ZHEN YUAN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               98888.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              98888.4
TotalPayBenefits                      98888.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9711, dtype: object)
(9712, Id                                         9713
EmployeeName                      MASARU FISHER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 85989.3
OvertimePay                                 0.0
OtherPay                               12898.68
Benefits                                    NaN
TotalPay                               98887.98
TotalPayBenefits                       98887.98
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9712, dtype: object)
(9713, Id                                        9714
EmployeeName                 CLAUDIA SEPULVEDA
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83883.68
OvertimePay                            11058.1
OtherPay                               3945.52
Benefits                                   NaN
TotalPay                               98887.3
TotalPayBenefits                       98887.3
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9713, dtype: object)
(9714, Id                                              9715
EmployeeName                            KEVIN GALVIN
JobTitle            WATER CONSERVATION ADMINISTRATOR
BasePay                                      98878.5
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                     98878.5
TotalPayBenefits                             98878.5
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9714, dtype: object)
(9715, Id                            9716
EmployeeName        JULIO PALENCIA
JobTitle            DEPUTY SHERIFF
BasePay                   86800.34
OvertimePay                2757.41
OtherPay                   9301.49
Benefits                       NaN
TotalPay                  98859.24
TotalPayBenefits          98859.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9715, dtype: object)
(9716, Id                                               9717
EmployeeName                            ALEX CORBILLA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                  11104.94
OtherPay                                      7920.48
Benefits                                          NaN
TotalPay                                     98845.42
TotalPayBenefits                             98845.42
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9716, dtype: object)
(9717, Id                                                   9718
EmployeeName                                STEVEN AUGUST
JobTitle            HEAVY EQUIPMENT OPERATIONS SUPERVISOR
BasePay                                           97120.8
OvertimePay                                           0.0
OtherPay                                          1698.41
Benefits                                              NaN
TotalPay                                         98819.21
TotalPayBenefits                                 98819.21
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9717, dtype: object)
(9718, Id                              9719
EmployeeName            DAVID VIZCAY
JobTitle            POLICE OFFICER I
BasePay                     85216.31
OvertimePay                  4192.97
OtherPay                     9404.61
Benefits                         NaN
TotalPay                    98813.89
TotalPayBenefits            98813.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9718, dtype: object)
(9719, Id                                                      9720
EmployeeName                                    JOSE CERDENA
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90376.03
OvertimePay                                          1681.52
OtherPay                                             6752.15
Benefits                                                 NaN
TotalPay                                             98809.7
TotalPayBenefits                                     98809.7
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9719, dtype: object)
(9720, Id                                  9721
EmployeeName        STEPHANIE KRISTOVICH
JobTitle                REGISTERED NURSE
BasePay                          82498.2
OvertimePay                      8318.21
OtherPay                          7993.2
Benefits                             NaN
TotalPay                        98809.61
TotalPayBenefits                98809.61
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9720, dtype: object)
(9721, Id                              9722
EmployeeName        ROBERT CAVAGNARO
JobTitle                     PLUMBER
BasePay                     86647.06
OvertimePay                 11273.65
OtherPay                       886.0
Benefits                         NaN
TotalPay                    98806.71
TotalPayBenefits            98806.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9721, dtype: object)
(9722, Id                                                9723
EmployeeName                           GLENN SYLVESTER
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                       29604.01
OvertimePay                                   35041.31
OtherPay                                      34158.44
Benefits                                           NaN
TotalPay                                      98803.76
TotalPayBenefits                              98803.76
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9722, dtype: object)
(9723, Id                                9724
EmployeeName             CYNTHIA JONES
JobTitle            COURT INVESTIGATOR
BasePay                       98189.33
OvertimePay                        0.0
OtherPay                         600.0
Benefits                           NaN
TotalPay                      98789.33
TotalPayBenefits              98789.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9723, dtype: object)
(9724, Id                              9725
EmployeeName              GLORIA WOO
JobTitle            MAYORAL STAFF XV
BasePay                     97765.54
OvertimePay                      0.0
OtherPay                     1022.39
Benefits                         NaN
TotalPay                    98787.93
TotalPayBenefits            98787.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9724, dtype: object)
(9725, Id                            9726
EmployeeName        WAYNE WOOLFOLK
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                5933.72
OtherPay                   6007.16
Benefits                       NaN
TotalPay                  98780.89
TotalPayBenefits          98780.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9725, dtype: object)
(9726, Id                            9727
EmployeeName          MARK RAMIREZ
JobTitle            DEPUTY SHERIFF
BasePay                   84499.85
OvertimePay                4226.22
OtherPay                  10053.55
Benefits                       NaN
TotalPay                  98779.62
TotalPayBenefits          98779.62
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9726, dtype: object)
(9727, Id                                          9728
EmployeeName                MARIA ALEXIS EUSEBIO
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 94605.86
OvertimePay                              4172.52
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                98778.38
TotalPayBenefits                        98778.38
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9727, dtype: object)
(9728, Id                              9729
EmployeeName         ALTHEA CRAWFORD
JobTitle            TRANSIT OPERATOR
BasePay                     66187.68
OvertimePay                  30834.1
OtherPay                     1755.11
Benefits                         NaN
TotalPay                    98776.89
TotalPayBenefits            98776.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9728, dtype: object)
(9729, Id                              9730
EmployeeName           TRUDY VERZOSA
JobTitle            PROBATE EXAMINER
BasePay                     98771.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    98771.51
TotalPayBenefits            98771.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9729, dtype: object)
(9730, Id                           9731
EmployeeName        SHEENA ESTOMO
JobTitle            SPECIAL NURSE
BasePay                  96261.44
OvertimePay               1674.96
OtherPay                   827.58
Benefits                      NaN
TotalPay                 98763.98
TotalPayBenefits         98763.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9730, dtype: object)
(9731, Id                            9732
EmployeeName            FRED ALLEN
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                7675.01
OtherPay                   4248.49
Benefits                       NaN
TotalPay                  98763.51
TotalPayBenefits          98763.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9731, dtype: object)
(9732, Id                                   9733
EmployeeName           BARTHOLOMEW MURPHY
JobTitle            MATERIALS COORDINATOR
BasePay                          98763.28
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         98763.28
TotalPayBenefits                 98763.28
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9732, dtype: object)
(9733, Id                                   9734
EmployeeName        CHRISTOPHER VON TOBEL
JobTitle                    CABLE SPLICER
BasePay                          93480.75
OvertimePay                       5275.99
OtherPay                              0.0
Benefits                              NaN
TotalPay                         98756.74
TotalPayBenefits                 98756.74
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9733, dtype: object)
(9734, Id                                        9735
EmployeeName                   PHILIP ZARAGOZA
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                           13719.47
OtherPay                               1146.75
Benefits                                   NaN
TotalPay                              98747.54
TotalPayBenefits                      98747.54
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9734, dtype: object)
(9735, Id                                   9736
EmployeeName        CHRISTOPHER BOUTILIER
JobTitle                      FIREFIGHTER
BasePay                           75652.4
OvertimePay                      17213.48
OtherPay                          5879.33
Benefits                              NaN
TotalPay                         98745.21
TotalPayBenefits                 98745.21
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9735, dtype: object)
(9736, Id                                9737
EmployeeName               CRAIG ALLEN
JobTitle            TRANSIT SUPERVISOR
BasePay                       89078.13
OvertimePay                    8993.17
OtherPay                        643.91
Benefits                           NaN
TotalPay                      98715.21
TotalPayBenefits              98715.21
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9736, dtype: object)
(9737, Id                           9738
EmployeeName         JOSEPH WALSH
JobTitle               MANAGER II
BasePay                  94631.97
OvertimePay                   0.0
OtherPay                  4079.04
Benefits                      NaN
TotalPay                 98711.01
TotalPayBenefits         98711.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9737, dtype: object)
(9738, Id                                    9739
EmployeeName                     EDDIE LAU
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           89959.03
OvertimePay                        8748.82
OtherPay                               0.0
Benefits                               NaN
TotalPay                          98707.85
TotalPayBenefits                  98707.85
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9738, dtype: object)
(9739, Id                                               9740
EmployeeName                               PAUL HOWAY
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      95910.11
OvertimePay                                   2293.37
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                     98703.48
TotalPayBenefits                             98703.48
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9739, dtype: object)
(9740, Id                                                9741
EmployeeName                                 ALBERT NG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   19132.86
OtherPay                                        1975.0
Benefits                                           NaN
TotalPay                                      98688.26
TotalPayBenefits                              98688.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9740, dtype: object)
(9741, Id                              9742
EmployeeName           TIMOTHY ORTIZ
JobTitle            POLICE OFFICER I
BasePay                      84699.3
OvertimePay                  4327.98
OtherPay                     9651.06
Benefits                         NaN
TotalPay                    98678.34
TotalPayBenefits            98678.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9741, dtype: object)
(9742, Id                               9743
EmployeeName        BROOKE PLEASANTON
JobTitle             REGISTERED NURSE
BasePay                      83524.66
OvertimePay                   3299.99
OtherPay                     11840.95
Benefits                          NaN
TotalPay                      98665.6
TotalPayBenefits              98665.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9742, dtype: object)
(9743, Id                              9744
EmployeeName               PETER LEE
JobTitle            TRANSIT OPERATOR
BasePay                     67958.84
OvertimePay                 28990.71
OtherPay                     1711.12
Benefits                         NaN
TotalPay                    98660.67
TotalPayBenefits            98660.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9743, dtype: object)
(9744, Id                              9745
EmployeeName            DAVID GUNTER
JobTitle            TRANSIT OPERATOR
BasePay                     65988.74
OvertimePay                 26325.53
OtherPay                     6342.43
Benefits                         NaN
TotalPay                     98656.7
TotalPayBenefits             98656.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9744, dtype: object)
(9745, Id                             9746
EmployeeName        MICHAEL ROBERTS
JobTitle             DEPUTY SHERIFF
BasePay                     86673.0
OvertimePay                 4910.31
OtherPay                    7069.78
Benefits                        NaN
TotalPay                   98653.09
TotalPayBenefits           98653.09
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9745, dtype: object)
(9746, Id                           9747
EmployeeName         JASON HINSON
JobTitle                MANAGER I
BasePay                  98653.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 98653.02
TotalPayBenefits         98653.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9746, dtype: object)
(9747, Id                               9748
EmployeeName        STEVE MEUANGKHOTH
JobTitle             TRANSIT OPERATOR
BasePay                       68070.5
OvertimePay                  27499.67
OtherPay                      3082.85
Benefits                          NaN
TotalPay                     98653.02
TotalPayBenefits             98653.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9747, dtype: object)
(9748, Id                            9749
EmployeeName         KENNETH SIMON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                    0.0
OtherPay                  11807.13
Benefits                       NaN
TotalPay                  98647.13
TotalPayBenefits          98647.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9748, dtype: object)
(9749, Id                                9750
EmployeeName        DENNIS BERRIOS III
JobTitle                  TRUCK DRIVER
BasePay                       70042.17
OvertimePay                   18237.29
OtherPay                      10364.28
Benefits                           NaN
TotalPay                      98643.74
TotalPayBenefits              98643.74
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9749, dtype: object)
(9750, Id                                                         9751
EmployeeName                                       LORENA KEHOE
JobTitle            MANAGER I - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                98642.72
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               98642.72
TotalPayBenefits                                       98642.72
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 9750, dtype: object)
(9751, Id                              9752
EmployeeName            TERRILL KING
JobTitle            TRANSIT OPERATOR
BasePay                     65409.82
OvertimePay                 30931.92
OtherPay                     2295.29
Benefits                         NaN
TotalPay                    98637.03
TotalPayBenefits            98637.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9751, dtype: object)
(9752, Id                                    9753
EmployeeName                 PETRA JOHNSON
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            90622.2
OvertimePay                            0.0
OtherPay                           8010.36
Benefits                               NaN
TotalPay                          98632.56
TotalPayBenefits                  98632.56
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9752, dtype: object)
(9753, Id                            9754
EmployeeName            DAVID CHAN
JobTitle            DEPUTY SHERIFF
BasePay                    86339.0
OvertimePay                4067.25
OtherPay                   8214.03
Benefits                       NaN
TotalPay                  98620.28
TotalPayBenefits          98620.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9753, dtype: object)
(9754, Id                                              9755
EmployeeName                              JAMIE DEAN
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     94758.05
OvertimePay                                      0.0
OtherPay                                     3858.11
Benefits                                         NaN
TotalPay                                    98616.16
TotalPayBenefits                            98616.16
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9754, dtype: object)
(9755, Id                                                              9756
EmployeeName                                          HABIBUR RAHMAN
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     98015.01
OvertimePay                                                      0.0
OtherPay                                                      599.92
Benefits                                                         NaN
TotalPay                                                    98614.93
TotalPayBenefits                                            98614.93
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9755, dtype: object)
(9756, Id                                       9757
EmployeeName                            LI WU
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               98609.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              98609.6
TotalPayBenefits                      98609.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9756, dtype: object)
(9757, Id                              9758
EmployeeName           DORIS JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     67052.33
OvertimePay                 25779.07
OtherPay                     5765.93
Benefits                         NaN
TotalPay                    98597.33
TotalPayBenefits            98597.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9757, dtype: object)
(9758, Id                                               9759
EmployeeName                               ERIC INGLE
JobTitle            ASSISTANT FORENSIC TOXICOLOGIST I
BasePay                                      96106.63
OvertimePay                                       0.0
OtherPay                                      2488.84
Benefits                                          NaN
TotalPay                                     98595.47
TotalPayBenefits                             98595.47
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9758, dtype: object)
(9759, Id                                       9760
EmployeeName                   JENNIFER FROST
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              98590.53
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98590.53
TotalPayBenefits                     98590.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9759, dtype: object)
(9760, Id                                       9761
EmployeeName                TINNETTA THOMPSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                               98590.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              98590.5
TotalPayBenefits                      98590.5
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9760, dtype: object)
(9761, Id                                               9762
EmployeeName                          WILLIAM GLATZEL
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96616.8
OvertimePay                                      72.9
OtherPay                                       1900.0
Benefits                                          NaN
TotalPay                                      98589.7
TotalPayBenefits                              98589.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9761, dtype: object)
(9762, Id                              9763
EmployeeName        PETRONILA TORRES
JobTitle                   MANAGER I
BasePay                     98583.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    98583.05
TotalPayBenefits            98583.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9762, dtype: object)
(9763, Id                           9764
EmployeeName           STEVEN WOO
JobTitle                MANAGER I
BasePay                  98583.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 98583.02
TotalPayBenefits         98583.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9763, dtype: object)
(9764, Id                           9765
EmployeeName            LISA DIEP
JobTitle                MANAGER I
BasePay                  98583.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 98583.01
TotalPayBenefits         98583.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9764, dtype: object)
(9765, Id                                9766
EmployeeName        VIRGINIA SARMIENTO
JobTitle                     MANAGER I
BasePay                       98582.99
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      98582.99
TotalPayBenefits              98582.99
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9765, dtype: object)
(9766, Id                                9767
EmployeeName            MOLLY GLOCKLER
JobTitle            COURT INVESTIGATOR
BasePay                       98576.95
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      98576.95
TotalPayBenefits              98576.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9766, dtype: object)
(9767, Id                             9768
EmployeeName        MERWAN HASTINGS
JobTitle                ELECTRICIAN
BasePay                    87298.05
OvertimePay                 7904.19
OtherPay                    3371.42
Benefits                        NaN
TotalPay                   98573.66
TotalPayBenefits           98573.66
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9767, dtype: object)
(9768, Id                            9769
EmployeeName           KEVIN OSHEA
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 684.18
OtherPay                  11381.46
Benefits                       NaN
TotalPay                  98571.64
TotalPayBenefits          98571.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9768, dtype: object)
(9769, Id                                 9770
EmployeeName            RICARLITO IGNAO
JobTitle            STATIONARY ENGINEER
BasePay                        76154.98
OvertimePay                     1630.54
OtherPay                       20782.92
Benefits                            NaN
TotalPay                       98568.44
TotalPayBenefits               98568.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9769, dtype: object)
(9770, Id                                                     9771
EmployeeName                                  ZOILA LECHUGA
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78016.11
OvertimePay                                         14033.8
OtherPay                                            6516.12
Benefits                                                NaN
TotalPay                                           98566.03
TotalPayBenefits                                   98566.03
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9770, dtype: object)
(9771, Id                                9772
EmployeeName           EDWARD THOMPSON
JobTitle            TRANSIT SUPERVISOR
BasePay                        92937.6
OvertimePay                     972.36
OtherPay                       4641.63
Benefits                           NaN
TotalPay                      98551.59
TotalPayBenefits              98551.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9771, dtype: object)
(9772, Id                                 9773
EmployeeName        FERNANDO DELA TORRE
JobTitle                    ELECTRICIAN
BasePay                        87473.73
OvertimePay                     9402.79
OtherPay                         1671.0
Benefits                            NaN
TotalPay                       98547.52
TotalPayBenefits               98547.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9772, dtype: object)
(9773, Id                                       9774
EmployeeName                      MEGAN BURNS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              98547.35
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98547.35
TotalPayBenefits                     98547.35
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9773, dtype: object)
(9774, Id                                              9775
EmployeeName                        TIMOTHY JOHNSTON
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     94758.04
OvertimePay                                      0.0
OtherPay                                      3781.4
Benefits                                         NaN
TotalPay                                    98539.44
TotalPayBenefits                            98539.44
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9774, dtype: object)
(9775, Id                                               9776
EmployeeName                           CECILIA MEDINA
JobTitle            ASSISTANT FORENSIC TOXICOLOGIST I
BasePay                                      98531.99
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     98531.99
TotalPayBenefits                             98531.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9775, dtype: object)
(9776, Id                                               9777
EmployeeName                        CHINYERE WILLIAMS
JobTitle            ASSISTANT FORENSIC TOXICOLOGIST I
BasePay                                      98531.99
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     98531.99
TotalPayBenefits                             98531.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9776, dtype: object)
(9777, Id                                               9778
EmployeeName                       PAVLOS KARAMANIDIS
JobTitle            ASSISTANT FORENSIC TOXICOLOGIST I
BasePay                                      98531.98
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     98531.98
TotalPayBenefits                             98531.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9777, dtype: object)
(9778, Id                                               9779
EmployeeName                        GLENDA EASTERLING
JobTitle            ASSISTANT FORENSIC TOXICOLOGIST I
BasePay                                      98531.95
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     98531.95
TotalPayBenefits                             98531.95
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9778, dtype: object)
(9779, Id                                    9780
EmployeeName                 GERARDO ZAFFA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           87943.59
OvertimePay                         1756.8
OtherPay                           8830.32
Benefits                               NaN
TotalPay                          98530.71
TotalPayBenefits                  98530.71
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9779, dtype: object)
(9780, Id                                  9781
EmployeeName               ROBIN ANTHONY
JobTitle            INDUSTRIAL HYGIENIST
BasePay                         98069.18
OvertimePay                          0.0
OtherPay                           455.0
Benefits                             NaN
TotalPay                        98524.18
TotalPayBenefits                98524.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9780, dtype: object)
(9781, Id                            9782
EmployeeName        DAVID CLEMENTS
JobTitle             SPECIAL NURSE
BasePay                   83881.48
OvertimePay                6445.51
OtherPay                   8189.76
Benefits                       NaN
TotalPay                  98516.75
TotalPayBenefits          98516.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9781, dtype: object)
(9782, Id                                 9783
EmployeeName                  PETE CHOW
JobTitle            STATIONARY ENGINEER
BasePay                        80660.13
OvertimePay                    11217.26
OtherPay                        6638.12
Benefits                            NaN
TotalPay                       98515.51
TotalPayBenefits               98515.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9782, dtype: object)
(9783, Id                              9784
EmployeeName             BRET JEPSEN
JobTitle            SECURITY ANALYST
BasePay                     98499.31
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    98499.31
TotalPayBenefits            98499.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9783, dtype: object)
(9784, Id                                                9785
EmployeeName                             MARK WESTLUND
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                       80450.19
OvertimePay                                        0.0
OtherPay                                       18027.0
Benefits                                           NaN
TotalPay                                      98477.19
TotalPayBenefits                              98477.19
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9784, dtype: object)
(9785, Id                              9786
EmployeeName        CARLOS GUTIERREZ
JobTitle            TRANSIT OPERATOR
BasePay                     67000.97
OvertimePay                 26240.48
OtherPay                     5232.62
Benefits                         NaN
TotalPay                    98474.07
TotalPayBenefits            98474.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9785, dtype: object)
(9786, Id                                9787
EmployeeName            OBIAJULU NZEWI
JobTitle            UTILITY SPECIALIST
BasePay                       98464.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      98464.44
TotalPayBenefits              98464.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9786, dtype: object)
(9787, Id                              9788
EmployeeName          SARAH CHRISTIE
JobTitle            REGISTERED NURSE
BasePay                     90287.69
OvertimePay                      0.0
OtherPay                     8170.33
Benefits                         NaN
TotalPay                    98458.02
TotalPayBenefits            98458.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9787, dtype: object)
(9788, Id                                     9789
EmployeeName                     TONY BOTTS
JobTitle            SENIOR STREET INSPECTOR
BasePay                             75044.0
OvertimePay                         23359.0
OtherPay                               50.0
Benefits                                NaN
TotalPay                            98453.0
TotalPayBenefits                    98453.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 9788, dtype: object)
(9789, Id                              9790
EmployeeName         ELIZABETH MORSE
JobTitle            POLICE OFFICER I
BasePay                     90467.16
OvertimePay                  2252.19
OtherPay                     5716.28
Benefits                         NaN
TotalPay                    98435.63
TotalPayBenefits            98435.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9789, dtype: object)
(9790, Id                                9791
EmployeeName             CLIFFORD WONG
JobTitle            UTILITY SPECIALIST
BasePay                       98434.27
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      98434.27
TotalPayBenefits              98434.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9790, dtype: object)
(9791, Id                                           9792
EmployeeName                        NEAL HILLYARD
JobTitle            ELEVATOR AND CRANE TECHNICIAN
BasePay                                  96397.57
OvertimePay                               2032.22
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 98429.79
TotalPayBenefits                         98429.79
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9791, dtype: object)
(9792, Id                                       9793
EmployeeName                   PAULITA BENSON
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              98425.61
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98425.61
TotalPayBenefits                     98425.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9792, dtype: object)
(9793, Id                              9794
EmployeeName           MICHAEL GREEN
JobTitle            TRANSIT OPERATOR
BasePay                     65436.38
OvertimePay                 31371.98
OtherPay                     1614.72
Benefits                         NaN
TotalPay                    98423.08
TotalPayBenefits            98423.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9793, dtype: object)
(9794, Id                                           9795
EmployeeName                       SHANNON WILSON
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90360.49
OvertimePay                               6996.45
OtherPay                                  1058.52
Benefits                                      NaN
TotalPay                                 98415.46
TotalPayBenefits                         98415.46
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9794, dtype: object)
(9795, Id                               9796
EmployeeName        MARISSA DE GUZMAN
JobTitle             REGISTERED NURSE
BasePay                      90651.49
OvertimePay                   1922.08
OtherPay                      5839.87
Benefits                          NaN
TotalPay                     98413.44
TotalPayBenefits             98413.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9795, dtype: object)
(9796, Id                                       9797
EmployeeName                    ALLAN NASAIRE
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              58326.61
OvertimePay                          31258.37
OtherPay                              8805.83
Benefits                                  NaN
TotalPay                             98390.81
TotalPayBenefits                     98390.81
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9796, dtype: object)
(9797, Id                                               9798
EmployeeName                         ARTHUR GUTIERREZ
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                  10644.78
OtherPay                                      7916.53
Benefits                                          NaN
TotalPay                                     98381.31
TotalPayBenefits                             98381.31
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9797, dtype: object)
(9798, Id                              9799
EmployeeName               ZALDY LIM
JobTitle            TRANSIT OPERATOR
BasePay                     65782.67
OvertimePay                 29739.23
OtherPay                     2858.49
Benefits                         NaN
TotalPay                    98380.39
TotalPayBenefits            98380.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9798, dtype: object)
(9799, Id                              9800
EmployeeName           PAMELA MEYERS
JobTitle            PROBATE EXAMINER
BasePay                     97801.24
OvertimePay                      0.0
OtherPay                       576.0
Benefits                         NaN
TotalPay                    98377.24
TotalPayBenefits            98377.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9799, dtype: object)
(9800, Id                                   9801
EmployeeName                  PAMELA REED
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          96060.44
OvertimePay                       1388.25
OtherPay                           910.32
Benefits                              NaN
TotalPay                         98359.01
TotalPayBenefits                 98359.01
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9800, dtype: object)
(9801, Id                              9802
EmployeeName                EVA CHIN
JobTitle            TRANSIT OPERATOR
BasePay                     64646.14
OvertimePay                 30428.26
OtherPay                      3283.5
Benefits                         NaN
TotalPay                     98357.9
TotalPayBenefits             98357.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9801, dtype: object)
(9802, Id                            9803
EmployeeName          JASON TILTON
JobTitle            DEPUTY SHERIFF
BasePay                    83209.0
OvertimePay                7258.36
OtherPay                   7882.05
Benefits                       NaN
TotalPay                  98349.41
TotalPayBenefits          98349.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9802, dtype: object)
(9803, Id                                                              9804
EmployeeName                                           STUART MARCUM
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     97637.31
OvertimePay                                                   566.55
OtherPay                                                       140.0
Benefits                                                         NaN
TotalPay                                                    98343.86
TotalPayBenefits                                            98343.86
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9803, dtype: object)
(9804, Id                             9805
EmployeeName        TEQUISHA CURLEY
JobTitle             DEPUTY SHERIFF
BasePay                    84585.53
OvertimePay                 7913.57
OtherPay                    5832.83
Benefits                        NaN
TotalPay                   98331.93
TotalPayBenefits           98331.93
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9804, dtype: object)
(9805, Id                                                      9806
EmployeeName                                    ANTONIO LAMA
JobTitle            FARE INSPECTIONS SUPERVISOR/INVESTIGATOR
BasePay                                             69787.99
OvertimePay                                         20837.54
OtherPay                                              7705.5
Benefits                                                 NaN
TotalPay                                            98331.03
TotalPayBenefits                                    98331.03
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9805, dtype: object)
(9806, Id                              9807
EmployeeName            LINDA GACULA
JobTitle            REGISTERED NURSE
BasePay                      71306.4
OvertimePay                  5906.59
OtherPay                    21114.77
Benefits                         NaN
TotalPay                    98327.76
TotalPayBenefits            98327.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9806, dtype: object)
(9807, Id                                              9808
EmployeeName                              AMANDA COX
JobTitle            WATER CONSERVATION ADMINISTRATOR
BasePay                                     98324.08
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    98324.08
TotalPayBenefits                            98324.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9807, dtype: object)
(9808, Id                              9809
EmployeeName           JUSTIN OCRETO
JobTitle            POLICE OFFICER I
BasePay                     95249.34
OvertimePay                  2032.08
OtherPay                     1037.77
Benefits                         NaN
TotalPay                    98319.19
TotalPayBenefits            98319.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9808, dtype: object)
(9809, Id                                                   9810
EmployeeName                              SULULAGI PALEGA
JobTitle            EMPLOYMENT AND TRAINING SPECIALIST VI
BasePay                                          98305.36
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         98305.36
TotalPayBenefits                                 98305.36
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9809, dtype: object)
(9810, Id                                              9811
EmployeeName                       MITCHELL BURCH JR
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     72479.32
OvertimePay                                 22418.99
OtherPay                                     3398.47
Benefits                                         NaN
TotalPay                                    98296.78
TotalPayBenefits                            98296.78
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9810, dtype: object)
(9811, Id                                               9812
EmployeeName                            TERESA CONTRO
JobTitle            PRINCIPAL REAL PROPERTY APPRAISER
BasePay                                      96287.42
OvertimePay                                       0.0
OtherPay                                       2000.0
Benefits                                          NaN
TotalPay                                     98287.42
TotalPayBenefits                             98287.42
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9811, dtype: object)
(9812, Id                            9813
EmployeeName             LINDA BUI
JobTitle            DEPUTY SHERIFF
BasePay                   80534.32
OvertimePay                9432.58
OtherPay                   8317.98
Benefits                       NaN
TotalPay                  98284.88
TotalPayBenefits          98284.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9812, dtype: object)
(9813, Id                                    9814
EmployeeName                 WILLIE ROLDAN
JobTitle            CARPENTER SUPERVISOR I
BasePay                           97292.81
OvertimePay                           72.2
OtherPay                            916.75
Benefits                               NaN
TotalPay                          98281.76
TotalPayBenefits                  98281.76
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9813, dtype: object)
(9814, Id                                9815
EmployeeName               LISA GARCIA
JobTitle            POLICE OFFICER III
BasePay                       96627.39
OvertimePay                     834.52
OtherPay                        819.53
Benefits                           NaN
TotalPay                      98281.44
TotalPayBenefits              98281.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9814, dtype: object)
(9815, Id                                              9816
EmployeeName                           CARRIE DOVZAK
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     94758.02
OvertimePay                                      0.0
OtherPay                                     3520.36
Benefits                                         NaN
TotalPay                                    98278.38
TotalPayBenefits                            98278.38
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9815, dtype: object)
(9816, Id                                                    9817
EmployeeName                                      ANNA SOP
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           93685.27
OvertimePay                                         172.04
OtherPay                                           4416.92
Benefits                                               NaN
TotalPay                                          98274.23
TotalPayBenefits                                  98274.23
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 9816, dtype: object)
(9817, Id                              9818
EmployeeName         JUSTIN QUINTERO
JobTitle            POLICE OFFICER I
BasePay                     97445.66
OvertimePay                      0.0
OtherPay                      819.49
Benefits                         NaN
TotalPay                    98265.15
TotalPayBenefits            98265.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9817, dtype: object)
(9818, Id                                              9819
EmployeeName                           ROJANA TURNER
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     98248.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    98248.01
TotalPayBenefits                            98248.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9818, dtype: object)
(9819, Id                                                        9820
EmployeeName                                       JOHN HARRIS
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.01
OvertimePay                                                0.0
OtherPay                                                 624.0
Benefits                                                   NaN
TotalPay                                              98242.01
TotalPayBenefits                                      98242.01
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9819, dtype: object)
(9820, Id                                                        9821
EmployeeName                                       HARRY BAKER
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97617.85
OvertimePay                                                0.0
OtherPay                                                 624.0
Benefits                                                   NaN
TotalPay                                              98241.85
TotalPayBenefits                                      98241.85
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9820, dtype: object)
(9821, Id                                9822
EmployeeName                EDWARD TOM
JobTitle            ASSOCIATE ENGINEER
BasePay                       96430.01
OvertimePay                        0.0
OtherPay                       1810.54
Benefits                           NaN
TotalPay                      98240.55
TotalPayBenefits              98240.55
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9821, dtype: object)
(9822, Id                                9823
EmployeeName            MICHAEL JURADO
JobTitle            PLUMBING INSPECTOR
BasePay                       94332.03
OvertimePay                        0.0
OtherPay                       3907.78
Benefits                           NaN
TotalPay                      98239.81
TotalPayBenefits              98239.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9822, dtype: object)
(9823, Id                                 9824
EmployeeName        ANNE MARIE DONNELLY
JobTitle                      MANAGER I
BasePay                         98239.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        98239.6
TotalPayBenefits                98239.6
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9823, dtype: object)
(9824, Id                            9825
EmployeeName         DOUGLAS HANDA
JobTitle            DEPUTY SHERIFF
BasePay                   83663.27
OvertimePay                9216.68
OtherPay                   5358.06
Benefits                       NaN
TotalPay                  98238.01
TotalPayBenefits          98238.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9824, dtype: object)
(9825, Id                              9826
EmployeeName             HOU WEN MAI
JobTitle            TRANSIT OPERATOR
BasePay                     63648.96
OvertimePay                  34553.6
OtherPay                       34.62
Benefits                         NaN
TotalPay                    98237.18
TotalPayBenefits            98237.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9825, dtype: object)
(9826, Id                                 9827
EmployeeName             WILLIAM GAWLEY
JobTitle            STATIONARY ENGINEER
BasePay                        72131.68
OvertimePay                     12794.7
OtherPay                       13298.46
Benefits                            NaN
TotalPay                       98224.84
TotalPayBenefits               98224.84
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9826, dtype: object)
(9827, Id                            9828
EmployeeName            RONNIE WAN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                3552.23
OtherPay                   8166.01
Benefits                       NaN
TotalPay                  98224.24
TotalPayBenefits          98224.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9827, dtype: object)
(9828, Id                           9829
EmployeeName           ADAM VARAT
JobTitle               PLANNER IV
BasePay                  98222.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 98222.02
TotalPayBenefits         98222.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9828, dtype: object)
(9829, Id                                       9830
EmployeeName                JANET BINALINBING
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              98218.63
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             98218.63
TotalPayBenefits                     98218.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9829, dtype: object)
(9830, Id                                 9831
EmployeeName           ERNEST AMERAL SR
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72270.97
OvertimePay                    10007.69
OtherPay                       15925.15
Benefits                            NaN
TotalPay                       98203.81
TotalPayBenefits               98203.81
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9830, dtype: object)
(9831, Id                                   9832
EmployeeName                  MERCY AMBAT
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          87761.68
OvertimePay                       6986.77
OtherPay                          3450.65
Benefits                              NaN
TotalPay                          98199.1
TotalPayBenefits                  98199.1
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9831, dtype: object)
(9832, Id                              9833
EmployeeName        JOSEPH TOMLINSON
JobTitle            POLICE OFFICER I
BasePay                     90147.19
OvertimePay                  2978.46
OtherPay                     5058.32
Benefits                         NaN
TotalPay                    98183.97
TotalPayBenefits            98183.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9832, dtype: object)
(9833, Id                              9834
EmployeeName             JAMES WHITE
JobTitle            TRANSIT OPERATOR
BasePay                      68246.4
OvertimePay                  28138.4
OtherPay                     1792.09
Benefits                         NaN
TotalPay                    98176.89
TotalPayBenefits            98176.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9833, dtype: object)
(9834, Id                                           9835
EmployeeName                            ALAN WONG
JobTitle            SENIOR CONSTRUCTION INSPECTOR
BasePay                                   94591.0
OvertimePay                                   0.0
OtherPay                                   3580.0
Benefits                                      NaN
TotalPay                                  98171.0
TotalPayBenefits                          98171.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9834, dtype: object)
(9835, Id                                                9836
EmployeeName                               CALVIN WONG
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   18780.05
OtherPay                                       1808.81
Benefits                                           NaN
TotalPay                                      98169.26
TotalPayBenefits                              98169.26
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9835, dtype: object)
(9836, Id                                  9837
EmployeeName                 LEONARD HOM
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          73259.2
OvertimePay                     16032.17
OtherPay                         8871.32
Benefits                             NaN
TotalPay                        98162.69
TotalPayBenefits                98162.69
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9836, dtype: object)
(9837, Id                                     9838
EmployeeName                      BETSY LEE
JobTitle            COURT STAFF ATTORNEY II
BasePay                             83986.8
OvertimePay                             0.0
OtherPay                           14175.08
Benefits                                NaN
TotalPay                           98161.88
TotalPayBenefits                   98161.88
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 9837, dtype: object)
(9838, Id                                               9839
EmployeeName                            JOSE GRANADOS
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       74029.0
OvertimePay                                  21353.79
OtherPay                                      2777.98
Benefits                                          NaN
TotalPay                                     98160.77
TotalPayBenefits                             98160.77
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9838, dtype: object)
(9839, Id                                9840
EmployeeName            BARRON JOHNSON
JobTitle            TRANSIT SUPERVISOR
BasePay                       90102.66
OvertimePay                    5020.28
OtherPay                        3033.5
Benefits                           NaN
TotalPay                      98156.44
TotalPayBenefits              98156.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9839, dtype: object)
(9840, Id                           9841
EmployeeName        JESSICA MANZI
JobTitle                 ENGINEER
BasePay                   90888.0
OvertimePay                   0.0
OtherPay                  7268.21
Benefits                      NaN
TotalPay                 98156.21
TotalPayBenefits         98156.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9840, dtype: object)
(9841, Id                                9842
EmployeeName            JOHN HAVERKAMP
JobTitle            POLICE OFFICER III
BasePay                       35512.21
OvertimePay                    17592.5
OtherPay                      45050.45
Benefits                           NaN
TotalPay                      98155.16
TotalPayBenefits              98155.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9841, dtype: object)
(9842, Id                                    9843
EmployeeName        VICTOR RIVERA CALDERON
JobTitle                  TRANSIT OPERATOR
BasePay                           65747.82
OvertimePay                       31785.77
OtherPay                            618.33
Benefits                               NaN
TotalPay                          98151.92
TotalPayBenefits                  98151.92
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9842, dtype: object)
(9843, Id                              9844
EmployeeName               ARIS CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     65851.45
OvertimePay                 30086.87
OtherPay                     2212.62
Benefits                         NaN
TotalPay                    98150.94
TotalPayBenefits            98150.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9843, dtype: object)
(9844, Id                                    9845
EmployeeName                  MATTHEW BEAN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           82925.69
OvertimePay                        6678.29
OtherPay                           8542.82
Benefits                               NaN
TotalPay                           98146.8
TotalPayBenefits                   98146.8
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9844, dtype: object)
(9845, Id                                                     9846
EmployeeName                               STEPHANIE CHACON
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77614.66
OvertimePay                                        11291.46
OtherPay                                            9229.17
Benefits                                                NaN
TotalPay                                           98135.29
TotalPayBenefits                                   98135.29
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9845, dtype: object)
(9846, Id                              9847
EmployeeName             DEREK BYRNE
JobTitle            POLICE OFFICER I
BasePay                     96428.07
OvertimePay                   204.53
OtherPay                     1489.87
Benefits                         NaN
TotalPay                    98122.47
TotalPayBenefits            98122.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9846, dtype: object)
(9847, Id                                 9848
EmployeeName            EKERETTE ESSIEN
JobTitle            PHARMACY TECHNICIAN
BasePay                        70643.78
OvertimePay                     21741.1
OtherPay                        5701.79
Benefits                            NaN
TotalPay                       98086.67
TotalPayBenefits               98086.67
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9847, dtype: object)
(9848, Id                                   9849
EmployeeName                    JEAN LELU
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          92918.89
OvertimePay                       2526.72
OtherPay                          2640.54
Benefits                              NaN
TotalPay                         98086.15
TotalPayBenefits                 98086.15
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9848, dtype: object)
(9849, Id                           9850
EmployeeName          RICK BURGER
JobTitle              PIPE WELDER
BasePay                  89916.75
OvertimePay               6096.52
OtherPay                   2070.0
Benefits                      NaN
TotalPay                 98083.27
TotalPayBenefits         98083.27
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9849, dtype: object)
(9850, Id                              9851
EmployeeName            ERIC SHAFFER
JobTitle            REGISTERED NURSE
BasePay                     92149.82
OvertimePay                  1069.72
OtherPay                     4858.68
Benefits                         NaN
TotalPay                    98078.22
TotalPayBenefits            98078.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9850, dtype: object)
(9851, Id                              9852
EmployeeName           LEO BERNSTEIN
JobTitle            POLICE OFFICER I
BasePay                     84009.21
OvertimePay                  3027.23
OtherPay                    11030.81
Benefits                         NaN
TotalPay                    98067.25
TotalPayBenefits            98067.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9851, dtype: object)
(9852, Id                                 9853
EmployeeName                  TAMI QUAN
JobTitle            AIRPORT ELECTRICIAN
BasePay                        96050.44
OvertimePay                       90.77
OtherPay                         1920.0
Benefits                            NaN
TotalPay                       98061.21
TotalPayBenefits               98061.21
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9852, dtype: object)
(9853, Id                                                     9854
EmployeeName                                   JOANNE DAVIS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78145.57
OvertimePay                                         12005.5
OtherPay                                            7907.78
Benefits                                                NaN
TotalPay                                           98058.85
TotalPayBenefits                                   98058.85
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9853, dtype: object)
(9854, Id                                               9855
EmployeeName                      FRANCISCO BARTOLOME
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   9931.39
OtherPay                                      8303.67
Benefits                                          NaN
TotalPay                                     98055.06
TotalPayBenefits                             98055.06
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9854, dtype: object)
(9855, Id                            9856
EmployeeName           CEDRIC LOVE
JobTitle            DEPUTY SHERIFF
BasePay                   86352.78
OvertimePay                5837.87
OtherPay                   5861.02
Benefits                       NaN
TotalPay                  98051.67
TotalPayBenefits          98051.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9855, dtype: object)
(9856, Id                           9857
EmployeeName        ERIC ANDERSEN
JobTitle                MANAGER I
BasePay                  96549.94
OvertimePay                   0.0
OtherPay                   1500.0
Benefits                      NaN
TotalPay                 98049.94
TotalPayBenefits         98049.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9856, dtype: object)
(9857, Id                                 9858
EmployeeName              WILLIAM ZOLAN
JobTitle            SUPERVISING CHEMIST
BasePay                        96944.72
OvertimePay                         0.0
OtherPay                         1105.0
Benefits                            NaN
TotalPay                       98049.72
TotalPayBenefits               98049.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9857, dtype: object)
(9858, Id                               9859
EmployeeName            GREGORY WATTS
JobTitle            POLICE OFFICER II
BasePay                      97229.17
OvertimePay                       0.0
OtherPay                       819.97
Benefits                          NaN
TotalPay                     98049.14
TotalPayBenefits             98049.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9858, dtype: object)
(9859, Id                            9860
EmployeeName          JOSEPH OFRIL
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                5368.28
OtherPay                   5839.81
Benefits                       NaN
TotalPay                  98048.09
TotalPayBenefits          98048.09
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9859, dtype: object)
(9860, Id                                                           9861
EmployeeName                                       BREE MAWHORTER
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  98032.37
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                 98032.37
TotalPayBenefits                                         98032.37
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 9860, dtype: object)
(9861, Id                                                              9862
EmployeeName                                             KAREN STERN
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     98015.02
OvertimePay                                                      0.0
OtherPay                                                         0.0
Benefits                                                         NaN
TotalPay                                                    98015.02
TotalPayBenefits                                            98015.02
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 9861, dtype: object)
(9862, Id                                     9863
EmployeeName                WAYNE KAPPELMAN
JobTitle            PARK SECTION SUPERVISOR
BasePay                            76001.38
OvertimePay                        18331.61
OtherPay                            3664.05
Benefits                                NaN
TotalPay                           97997.04
TotalPayBenefits                   97997.04
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 9862, dtype: object)
(9863, Id                                    9864
EmployeeName             RHAYMOND VIZCARRA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           82924.38
OvertimePay                       14508.12
OtherPay                            562.91
Benefits                               NaN
TotalPay                          97995.41
TotalPayBenefits                  97995.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9863, dtype: object)
(9864, Id                             9865
EmployeeName            CLYDE WOODS
JobTitle            UTILITY PLUMBER
BasePay                    88825.96
OvertimePay                  544.94
OtherPay                    8617.72
Benefits                        NaN
TotalPay                   97988.62
TotalPayBenefits           97988.62
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9864, dtype: object)
(9865, Id                                 9866
EmployeeName                STEVEN LIND
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        74499.96
OvertimePay                    11222.15
OtherPay                       12264.78
Benefits                            NaN
TotalPay                       97986.89
TotalPayBenefits               97986.89
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9865, dtype: object)
(9866, Id                                                        9867
EmployeeName                                   RICHARD O'NEILL
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79647.32
OvertimePay                                             6404.5
OtherPay                                              11923.72
Benefits                                                   NaN
TotalPay                                              97975.54
TotalPayBenefits                                      97975.54
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9866, dtype: object)
(9867, Id                                              9868
EmployeeName                       MARY JANE WINSLOW
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     97973.81
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    97973.81
TotalPayBenefits                            97973.81
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9867, dtype: object)
(9868, Id                                9869
EmployeeName            ANDRE MCDANIEL
JobTitle            TRANSIT SUPERVISOR
BasePay                       73776.65
OvertimePay                   20047.31
OtherPay                        4136.1
Benefits                           NaN
TotalPay                      97960.06
TotalPayBenefits              97960.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9868, dtype: object)
(9869, Id                                 9870
EmployeeName        CLARENCE GRIFFIN SR
JobTitle               TRANSIT OPERATOR
BasePay                        67713.88
OvertimePay                    25923.23
OtherPay                        4319.71
Benefits                            NaN
TotalPay                       97956.82
TotalPayBenefits               97956.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9869, dtype: object)
(9870, Id                                                          9871
EmployeeName                                  BETH LENISE BARNER
JobTitle            MANAGER II - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                 97952.02
OvertimePay                                                  0.0
OtherPay                                                     0.0
Benefits                                                     NaN
TotalPay                                                97952.02
TotalPayBenefits                                        97952.02
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 9870, dtype: object)
(9871, Id                                    9872
EmployeeName                 CARLOS GRANDE
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.04
OvertimePay                        5535.35
OtherPay                           1750.52
Benefits                               NaN
TotalPay                          97949.91
TotalPayBenefits                  97949.91
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9871, dtype: object)
(9872, Id                              9873
EmployeeName           JULIUS HOWARD
JobTitle            TRANSIT OPERATOR
BasePay                     64677.43
OvertimePay                 31971.35
OtherPay                     1297.16
Benefits                         NaN
TotalPay                    97945.94
TotalPayBenefits            97945.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9872, dtype: object)
(9873, Id                            9874
EmployeeName           DOUGAN CHAN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                5471.23
OtherPay                   5965.24
Benefits                       NaN
TotalPay                  97942.47
TotalPayBenefits          97942.47
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9873, dtype: object)
(9874, Id                                            9875
EmployeeName                      MATTHEW GOLDBERG
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                   97926.47
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  97926.47
TotalPayBenefits                          97926.47
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9874, dtype: object)
(9875, Id                                9876
EmployeeName        VIRGINIA SINIGAYAN
JobTitle              REGISTERED NURSE
BasePay                       83827.03
OvertimePay                    2275.02
OtherPay                      11819.01
Benefits                           NaN
TotalPay                      97921.06
TotalPayBenefits              97921.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9875, dtype: object)
(9876, Id                              9877
EmployeeName            WILSON CHUNG
JobTitle            TRANSIT OPERATOR
BasePay                     66359.19
OvertimePay                 27843.56
OtherPay                     3718.29
Benefits                         NaN
TotalPay                    97921.04
TotalPayBenefits            97921.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9876, dtype: object)
(9877, Id                                            9878
EmployeeName                            CALVIN TOM
JobTitle            ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                   96366.44
OvertimePay                                    0.0
OtherPay                                    1550.0
Benefits                                       NaN
TotalPay                                  97916.44
TotalPayBenefits                          97916.44
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9877, dtype: object)
(9878, Id                              9879
EmployeeName          FREDERICK WARD
JobTitle            TRANSIT OPERATOR
BasePay                     65899.85
OvertimePay                 31779.26
OtherPay                      236.46
Benefits                         NaN
TotalPay                    97915.57
TotalPayBenefits            97915.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9878, dtype: object)
(9879, Id                              9880
EmployeeName            RANITA NOVAK
JobTitle            REGISTERED NURSE
BasePay                     80155.62
OvertimePay                    85.43
OtherPay                    17669.64
Benefits                         NaN
TotalPay                    97910.69
TotalPayBenefits            97910.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9879, dtype: object)
(9880, Id                                                   9881
EmployeeName                                   JACK SMITH
JobTitle            HEAVY EQUIPMENT OPERATIONS SUPERVISOR
BasePay                                           97910.4
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                          97910.4
TotalPayBenefits                                  97910.4
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9880, dtype: object)
(9881, Id                                                   9882
EmployeeName                                 PAUL MARTINI
JobTitle            HEAVY EQUIPMENT OPERATIONS SUPERVISOR
BasePay                                           97910.4
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                          97910.4
TotalPayBenefits                                  97910.4
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 9881, dtype: object)
(9882, Id                               9883
EmployeeName            REBEKAH KRELL
JobTitle            DEPUTY DIRECTOR I
BasePay                      96924.26
OvertimePay                       0.0
OtherPay                       983.18
Benefits                          NaN
TotalPay                     97907.44
TotalPayBenefits             97907.44
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9882, dtype: object)
(9883, Id                                 9884
EmployeeName                 BRUCE DIAZ
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72344.23
OvertimePay                      6752.2
OtherPay                       18810.69
Benefits                            NaN
TotalPay                       97907.12
TotalPayBenefits               97907.12
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9883, dtype: object)
(9884, Id                                               9885
EmployeeName                            EUGENE ASHTON
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96684.83
OvertimePay                                     594.0
OtherPay                                        624.0
Benefits                                          NaN
TotalPay                                     97902.83
TotalPayBenefits                             97902.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9884, dtype: object)
(9885, Id                                               9886
EmployeeName                         DARIO SAN FELIPE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   10156.7
OtherPay                                      7924.13
Benefits                                          NaN
TotalPay                                     97900.83
TotalPayBenefits                             97900.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9885, dtype: object)
(9886, Id                             9887
EmployeeName        RONALD CAPITULO
JobTitle             DEPUTY SHERIFF
BasePay                    82779.39
OvertimePay                 3665.81
OtherPay                   11454.67
Benefits                        NaN
TotalPay                   97899.87
TotalPayBenefits           97899.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9886, dtype: object)
(9887, Id                                          9888
EmployeeName                          MIU FUN NG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 97891.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97891.45
TotalPayBenefits                        97891.45
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9887, dtype: object)
(9888, Id                            9889
EmployeeName               LEO LAM
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                    0.0
OtherPay                  11367.24
Benefits                       NaN
TotalPay                  97873.24
TotalPayBenefits          97873.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9888, dtype: object)
(9889, Id                              9890
EmployeeName                 YAN ZOU
JobTitle            REGISTERED NURSE
BasePay                     82877.22
OvertimePay                  2333.25
OtherPay                    12661.33
Benefits                         NaN
TotalPay                     97871.8
TotalPayBenefits             97871.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9889, dtype: object)
(9890, Id                                9891
EmployeeName               TIMOTHY LEE
JobTitle            ASSOCIATE ENGINEER
BasePay                       95647.28
OvertimePay                        0.0
OtherPay                       2221.36
Benefits                           NaN
TotalPay                      97868.64
TotalPayBenefits              97868.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9890, dtype: object)
(9891, Id                           9892
EmployeeName          PAUL GREENE
JobTitle              MANAGER III
BasePay                  97847.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 97847.65
TotalPayBenefits         97847.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9891, dtype: object)
(9892, Id                                       9893
EmployeeName                       ROSE CHUNG
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              94285.12
OvertimePay                            1344.9
OtherPay                              2213.61
Benefits                                  NaN
TotalPay                             97843.63
TotalPayBenefits                     97843.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9892, dtype: object)
(9893, Id                               9894
EmployeeName        MARIANO MARADIAGA
JobTitle             TRANSIT OPERATOR
BasePay                      65415.42
OvertimePay                   30874.1
OtherPay                      1552.91
Benefits                          NaN
TotalPay                     97842.43
TotalPayBenefits             97842.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9893, dtype: object)
(9894, Id                           9895
EmployeeName          JOHN JORDAN
JobTitle                CARPENTER
BasePay                  78150.02
OvertimePay                114.91
OtherPay                  19542.0
Benefits                      NaN
TotalPay                 97806.93
TotalPayBenefits         97806.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9894, dtype: object)
(9895, Id                                    9896
EmployeeName                  JARED COOPER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79949.64
OvertimePay                        5335.66
OtherPay                          12498.24
Benefits                               NaN
TotalPay                          97783.54
TotalPayBenefits                  97783.54
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9895, dtype: object)
(9896, Id                                                 9897
EmployeeName                                BETSY CHENG
JobTitle            PRINCIPAL FARE COLLECTIONS RECEIVER
BasePay                                         81371.0
OvertimePay                                     8845.04
OtherPay                                        7566.59
Benefits                                            NaN
TotalPay                                       97782.63
TotalPayBenefits                               97782.63
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 9896, dtype: object)
(9897, Id                                                9898
EmployeeName                        CRISTOBAL MADRIGAL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   18082.67
OtherPay                                       2117.34
Benefits                                           NaN
TotalPay                                      97780.42
TotalPayBenefits                              97780.42
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9897, dtype: object)
(9898, Id                                  9899
EmployeeName           ANGELA MILLER WOO
JobTitle            PHYSICIAN SPECIALIST
BasePay                         93959.49
OvertimePay                          0.0
OtherPay                          3815.0
Benefits                             NaN
TotalPay                        97774.49
TotalPayBenefits                97774.49
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9898, dtype: object)
(9899, Id                                               9900
EmployeeName                             JOHN HOFFMAN
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      95147.22
OvertimePay                                   1871.94
OtherPay                                        755.0
Benefits                                          NaN
TotalPay                                     97774.16
TotalPayBenefits                             97774.16
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9899, dtype: object)
(9900, Id                                9901
EmployeeName        ROBERTO VALLADARES
JobTitle                   ELECTRICIAN
BasePay                       87649.46
OvertimePay                    8464.15
OtherPay                        1660.0
Benefits                           NaN
TotalPay                      97773.61
TotalPayBenefits              97773.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9900, dtype: object)
(9901, Id                              9902
EmployeeName         LONNIE MOORE JR
JobTitle            TRANSIT OPERATOR
BasePay                     66166.76
OvertimePay                 25845.13
OtherPay                      5759.8
Benefits                         NaN
TotalPay                    97771.69
TotalPayBenefits            97771.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9901, dtype: object)
(9902, Id                                                9903
EmployeeName                              MICHAEL STEZ
JobTitle            MAINTENANCE MACHINIST SUPERVISOR I
BasePay                                       97269.17
OvertimePay                                        0.0
OtherPay                                         500.0
Benefits                                           NaN
TotalPay                                      97769.17
TotalPayBenefits                              97769.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9902, dtype: object)
(9903, Id                             9904
EmployeeName        JAMES GIAMBRUNO
JobTitle                    PLUMBER
BasePay                     88645.2
OvertimePay                     0.0
OtherPay                    9123.71
Benefits                        NaN
TotalPay                   97768.91
TotalPayBenefits           97768.91
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9903, dtype: object)
(9904, Id                                            9905
EmployeeName                           CARRIE WONG
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.63
OvertimePay                                 793.56
OtherPay                                   2654.07
Benefits                                       NaN
TotalPay                                  97744.26
TotalPayBenefits                          97744.26
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9904, dtype: object)
(9905, Id                             9906
EmployeeName        PATRICK CORTESE
JobTitle             DEPUTY SHERIFF
BasePay                    86840.01
OvertimePay                 1634.85
OtherPay                    9265.49
Benefits                        NaN
TotalPay                   97740.35
TotalPayBenefits           97740.35
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9905, dtype: object)
(9906, Id                              9907
EmployeeName              LELA RUSSO
JobTitle            REGISTERED NURSE
BasePay                     83933.46
OvertimePay                  2264.76
OtherPay                    11541.39
Benefits                         NaN
TotalPay                    97739.61
TotalPayBenefits            97739.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9906, dtype: object)
(9907, Id                                    9908
EmployeeName                  DONN VASQUEZ
JobTitle            AIRPORT SAFETY OFFICER
BasePay                            76990.6
OvertimePay                       15010.86
OtherPay                           5732.22
Benefits                               NaN
TotalPay                          97733.68
TotalPayBenefits                  97733.68
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9907, dtype: object)
(9908, Id                           9909
EmployeeName         JERRY BARTOK
JobTitle              STEAMFITTER
BasePay                   90825.0
OvertimePay               3196.13
OtherPay                   3695.0
Benefits                      NaN
TotalPay                 97716.13
TotalPayBenefits         97716.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9908, dtype: object)
(9909, Id                              9910
EmployeeName          MANUEL LEZCANO
JobTitle            TRANSIT OPERATOR
BasePay                     65697.06
OvertimePay                 28221.26
OtherPay                     3793.55
Benefits                         NaN
TotalPay                    97711.87
TotalPayBenefits            97711.87
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9909, dtype: object)
(9910, Id                             9911
EmployeeName        CATHERINE ABELA
JobTitle                MANAGER III
BasePay                    97709.99
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   97709.99
TotalPayBenefits           97709.99
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9910, dtype: object)
(9911, Id                              9912
EmployeeName         JOSEPH REYES JR
JobTitle            POLICE OFFICER I
BasePay                     85484.06
OvertimePay                  5533.64
OtherPay                     6679.64
Benefits                         NaN
TotalPay                    97697.34
TotalPayBenefits            97697.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9911, dtype: object)
(9912, Id                                                        9913
EmployeeName                                      JOHN RAMIREZ
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               85141.75
OvertimePay                                            6141.38
OtherPay                                               6407.29
Benefits                                                   NaN
TotalPay                                              97690.42
TotalPayBenefits                                      97690.42
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9912, dtype: object)
(9913, Id                                        9914
EmployeeName                    JAMES WAGGONER
JobTitle            TRAFFIC SIGNAL ELECTRICIAN
BasePay                               97130.81
OvertimePay                              137.7
OtherPay                                 420.0
Benefits                                   NaN
TotalPay                              97688.51
TotalPayBenefits                      97688.51
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9913, dtype: object)
(9914, Id                                        9915
EmployeeName                  PATRICIA MONAHAN
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               76742.24
OvertimePay                           14545.72
OtherPay                               6395.45
Benefits                                   NaN
TotalPay                              97683.41
TotalPayBenefits                      97683.41
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9914, dtype: object)
(9915, Id                           9916
EmployeeName          KELLY ALVES
JobTitle                MANAGER I
BasePay                  97664.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 97664.12
TotalPayBenefits         97664.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9915, dtype: object)
(9916, Id                                9917
EmployeeName                 NATHAN NG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    3873.87
OtherPay                       5727.92
Benefits                           NaN
TotalPay                      97663.79
TotalPayBenefits              97663.79
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9916, dtype: object)
(9917, Id                                                        9918
EmployeeName                                   LAZAR TRILESSKY
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.04
OvertimePay                                            4531.86
OtherPay                                              13280.05
Benefits                                                   NaN
TotalPay                                              97631.95
TotalPayBenefits                                      97631.95
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9917, dtype: object)
(9918, Id                                              9919
EmployeeName                            AMELITA DOON
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     65571.59
OvertimePay                                 28022.72
OtherPay                                     4031.34
Benefits                                         NaN
TotalPay                                    97625.65
TotalPayBenefits                            97625.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 9918, dtype: object)
(9919, Id                                9920
EmployeeName             LOUIS DOUGLAS
JobTitle            ASSOCIATE ENGINEER
BasePay                       97625.05
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      97625.05
TotalPayBenefits              97625.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9919, dtype: object)
(9920, Id                                9921
EmployeeName                THOMAS WON
JobTitle            ASSOCIATE ENGINEER
BasePay                       97625.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      97625.02
TotalPayBenefits              97625.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9920, dtype: object)
(9921, Id                                                        9922
EmployeeName                                     JOAN MCNAMARA
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.16
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.16
TotalPayBenefits                                      97618.16
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9921, dtype: object)
(9922, Id                                                        9923
EmployeeName                                   MICHAEL MCLOONE
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.08
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.08
TotalPayBenefits                                      97618.08
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9922, dtype: object)
(9923, Id                                                        9924
EmployeeName                                        DERIK AOKI
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.05
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.05
TotalPayBenefits                                      97618.05
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9923, dtype: object)
(9924, Id                                                        9925
EmployeeName                                FLORENTINA BUGARIN
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.03
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.03
TotalPayBenefits                                      97618.03
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9924, dtype: object)
(9925, Id                                                        9926
EmployeeName                                   MIRANTI WIDJAJA
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.03
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.03
TotalPayBenefits                                      97618.03
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9925, dtype: object)
(9926, Id                                                        9927
EmployeeName                               KEARSTIN DISCHINGER
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.02
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.02
TotalPayBenefits                                      97618.02
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9926, dtype: object)
(9927, Id                                                        9928
EmployeeName                              CLAUDINE DEL ROSARIO
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.02
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.02
TotalPayBenefits                                      97618.02
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9927, dtype: object)
(9928, Id                                                        9929
EmployeeName                                    MARVELIN RANCE
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97618.01
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97618.01
TotalPayBenefits                                      97618.01
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9928, dtype: object)
(9929, Id                                       9930
EmployeeName                   CHRISTINE DENG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              97617.15
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97617.15
TotalPayBenefits                     97617.15
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9929, dtype: object)
(9930, Id                              9931
EmployeeName            JAMES WILSON
JobTitle            TRANSIT OPERATOR
BasePay                     65871.23
OvertimePay                 30773.58
OtherPay                      951.56
Benefits                         NaN
TotalPay                    97596.37
TotalPayBenefits            97596.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9930, dtype: object)
(9931, Id                               9932
EmployeeName        NICHELLE FLENTROY
JobTitle              CLAIMS ADJUSTER
BasePay                       97175.8
OvertimePay                    415.54
OtherPay                          0.0
Benefits                          NaN
TotalPay                     97591.34
TotalPayBenefits             97591.34
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9931, dtype: object)
(9932, Id                             9933
EmployeeName        GILBERT ARRIAGA
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                 5697.01
OtherPay                     5050.1
Benefits                        NaN
TotalPay                   97587.11
TotalPayBenefits           97587.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9932, dtype: object)
(9933, Id                                            9934
EmployeeName                         LUIS CALDERON
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    97584.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   97584.0
TotalPayBenefits                           97584.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 9933, dtype: object)
(9934, Id                                      9935
EmployeeName                    VIVIAN GREEN
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             48538.16
OvertimePay                              0.0
OtherPay                            49035.12
Benefits                                 NaN
TotalPay                            97573.28
TotalPayBenefits                    97573.28
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 9934, dtype: object)
(9935, Id                              9936
EmployeeName           VERNON ABRAMS
JobTitle            TRANSIT OPERATOR
BasePay                     65906.94
OvertimePay                 26648.62
OtherPay                     5016.78
Benefits                         NaN
TotalPay                    97572.34
TotalPayBenefits            97572.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9935, dtype: object)
(9936, Id                                   9937
EmployeeName                   PETER DEAN
JobTitle            REGULATORY SPECIALIST
BasePay                          94758.03
OvertimePay                           0.0
OtherPay                           2806.2
Benefits                              NaN
TotalPay                         97564.23
TotalPayBenefits                 97564.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9936, dtype: object)
(9937, Id                                           9938
EmployeeName                     ESPERANZA ZAPIEN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  95682.72
OvertimePay                                   0.0
OtherPay                                  1878.97
Benefits                                      NaN
TotalPay                                 97561.69
TotalPayBenefits                         97561.69
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9937, dtype: object)
(9938, Id                                9939
EmployeeName           RAYMOND BERRIOS
JobTitle            BUILDING INSPECTOR
BasePay                       97559.57
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      97559.57
TotalPayBenefits              97559.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9938, dtype: object)
(9939, Id                            9940
EmployeeName        FERNANDO PEREZ
JobTitle            DEPUTY SHERIFF
BasePay                   86351.13
OvertimePay                4313.62
OtherPay                   6882.74
Benefits                       NaN
TotalPay                  97547.49
TotalPayBenefits          97547.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9939, dtype: object)
(9940, Id                                       9941
EmployeeName                    THEODORE WONG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              97530.24
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97530.24
TotalPayBenefits                     97530.24
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9940, dtype: object)
(9941, Id                                               9942
EmployeeName                             HUGH JOHNSON
JobTitle            AUTOMOTIVE MACHINIST SUPERVISOR I
BasePay                                      96298.42
OvertimePay                                       0.0
OtherPay                                      1229.45
Benefits                                          NaN
TotalPay                                     97527.87
TotalPayBenefits                             97527.87
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9941, dtype: object)
(9942, Id                              9943
EmployeeName           JUDITH RENEAU
JobTitle            TRANSIT OPERATOR
BasePay                     67677.25
OvertimePay                 27849.87
OtherPay                      1996.1
Benefits                         NaN
TotalPay                    97523.22
TotalPayBenefits            97523.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9942, dtype: object)
(9943, Id                              9944
EmployeeName          CRAIG PERRY JR
JobTitle            POLICE OFFICER I
BasePay                     85201.21
OvertimePay                  6400.82
OtherPay                     5913.33
Benefits                         NaN
TotalPay                    97515.36
TotalPayBenefits            97515.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9943, dtype: object)
(9944, Id                                        9945
EmployeeName                   GUSTAVO GARRARD
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                           10889.68
OtherPay                               2741.19
Benefits                                   NaN
TotalPay                              97512.19
TotalPayBenefits                      97512.19
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9944, dtype: object)
(9945, Id                                 9946
EmployeeName        FELIX CATAPUSAN III
JobTitle             PHYSICAL THERAPIST
BasePay                         97014.7
OvertimePay                         0.0
OtherPay                          480.0
Benefits                            NaN
TotalPay                        97494.7
TotalPayBenefits                97494.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9945, dtype: object)
(9946, Id                               9947
EmployeeName            MARK MCKINNEY
JobTitle            POLICE OFFICER II
BasePay                      95016.91
OvertimePay                       0.0
OtherPay                      2473.96
Benefits                          NaN
TotalPay                     97490.87
TotalPayBenefits             97490.87
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9946, dtype: object)
(9947, Id                                 9948
EmployeeName           ASHELEY EPPERSON
JobTitle            PUBLIC HEALTH NURSE
BasePay                        97177.54
OvertimePay                         0.0
OtherPay                         310.44
Benefits                            NaN
TotalPay                       97487.98
TotalPayBenefits               97487.98
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9947, dtype: object)
(9948, Id                            9949
EmployeeName         ORLANDO ARIAS
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay               10176.69
OtherPay                    799.84
Benefits                       NaN
TotalPay                  97482.54
TotalPayBenefits          97482.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9948, dtype: object)
(9949, Id                                  9950
EmployeeName               YAO-MING PENG
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          73554.6
OvertimePay                     22459.32
OtherPay                          1464.8
Benefits                             NaN
TotalPay                        97478.72
TotalPayBenefits                97478.72
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9949, dtype: object)
(9950, Id                           9951
EmployeeName            GREG KATO
JobTitle                MANAGER I
BasePay                  97475.78
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 97475.78
TotalPayBenefits         97475.78
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9950, dtype: object)
(9951, Id                                                      9952
EmployeeName                                  CHARLES LARKIN
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             90376.01
OvertimePay                                              0.0
OtherPay                                              7088.8
Benefits                                                 NaN
TotalPay                                            97464.81
TotalPayBenefits                                    97464.81
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 9951, dtype: object)
(9952, Id                                                     9953
EmployeeName                               BELINDA ROBINSON
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78021.41
OvertimePay                                         9615.34
OtherPay                                             9827.3
Benefits                                                NaN
TotalPay                                           97464.05
TotalPayBenefits                                   97464.05
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 9952, dtype: object)
(9953, Id                                 9954
EmployeeName            SCOTT SCHOFIELD
JobTitle            STATIONARY ENGINEER
BasePay                        71714.26
OvertimePay                    10976.48
OtherPay                       14767.75
Benefits                            NaN
TotalPay                       97458.49
TotalPayBenefits               97458.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9953, dtype: object)
(9954, Id                            9955
EmployeeName          ALAN ANDREWS
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                6281.32
OtherPay                   4335.84
Benefits                       NaN
TotalPay                  97457.16
TotalPayBenefits          97457.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9954, dtype: object)
(9955, Id                                                9956
EmployeeName                                 WAYNE HOM
JobTitle            INSPECTOR III, (POLICE DEPARTMENT)
BasePay                                         7401.0
OvertimePay                                   26628.24
OtherPay                                      63412.97
Benefits                                           NaN
TotalPay                                      97442.21
TotalPayBenefits                              97442.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9955, dtype: object)
(9956, Id                              9957
EmployeeName            WILLIE PRYOR
JobTitle            TRANSIT OPERATOR
BasePay                     66430.35
OvertimePay                 29833.81
OtherPay                     1173.09
Benefits                         NaN
TotalPay                    97437.25
TotalPayBenefits            97437.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9956, dtype: object)
(9957, Id                                       9958
EmployeeName                     ASHA JAMESON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              97430.93
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97430.93
TotalPayBenefits                     97430.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9957, dtype: object)
(9958, Id                                                        9959
EmployeeName                                   EUGENE FLANNERY
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               97428.13
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              97428.13
TotalPayBenefits                                      97428.13
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9958, dtype: object)
(9959, Id                              9960
EmployeeName              SAMUEL XIE
JobTitle            TRANSIT OPERATOR
BasePay                     66108.84
OvertimePay                 25979.46
OtherPay                     5328.82
Benefits                         NaN
TotalPay                    97417.12
TotalPayBenefits            97417.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9959, dtype: object)
(9960, Id                                               9961
EmployeeName                           SERGIO BARAJAS
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79666.5
OvertimePay                                   9843.87
OtherPay                                      7904.58
Benefits                                          NaN
TotalPay                                     97414.95
TotalPayBenefits                             97414.95
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9960, dtype: object)
(9961, Id                               9962
EmployeeName        VELDA JUSTIN-CARR
JobTitle             TRAIN CONTROLLER
BasePay                      78638.36
OvertimePay                  12876.92
OtherPay                       5898.0
Benefits                          NaN
TotalPay                     97413.28
TotalPayBenefits             97413.28
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 9961, dtype: object)
(9962, Id                                                       9963
EmployeeName                                 MARCELLA CROSLEY
JobTitle            MARRIAGE, FAMILY & CHILD COUNSELOR (MFCC)
BasePay                                              79901.02
OvertimePay                                           8606.11
OtherPay                                              8905.95
Benefits                                                  NaN
TotalPay                                             97413.08
TotalPayBenefits                                     97413.08
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 9962, dtype: object)
(9963, Id                                       9964
EmployeeName                    SARAH HAWKINS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              97411.83
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97411.83
TotalPayBenefits                     97411.83
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 9963, dtype: object)
(9964, Id                            9965
EmployeeName         WALTER JACOBS
JobTitle            DEPUTY SHERIFF
BasePay                   86172.02
OvertimePay                4349.93
OtherPay                   6884.94
Benefits                       NaN
TotalPay                  97406.89
TotalPayBenefits          97406.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9964, dtype: object)
(9965, Id                                                9966
EmployeeName                            CATANIA GALVAN
JobTitle            COORDINATOR OF CITIZEN INVOLVEMENT
BasePay                                       96369.84
OvertimePay                                        0.0
OtherPay                                       1033.49
Benefits                                           NaN
TotalPay                                      97403.33
TotalPayBenefits                              97403.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 9965, dtype: object)
(9966, Id                                   9967
EmployeeName                  RANDALL TOM
JobTitle            MAINTENANCE MACHINIST
BasePay                          76174.98
OvertimePay                      20567.25
OtherPay                            660.0
Benefits                              NaN
TotalPay                         97402.23
TotalPayBenefits                 97402.23
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 9966, dtype: object)
(9967, Id                                               9968
EmployeeName                            JOSEPH SHASKY
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      82797.05
OvertimePay                                   6806.77
OtherPay                                      7780.15
Benefits                                          NaN
TotalPay                                     97383.97
TotalPayBenefits                             97383.97
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9967, dtype: object)
(9968, Id                                9969
EmployeeName           FRANCISCA TAPIA
JobTitle            TRANSIT SUPERVISOR
BasePay                        91981.6
OvertimePay                    3363.57
OtherPay                        2035.4
Benefits                           NaN
TotalPay                      97380.57
TotalPayBenefits              97380.57
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9968, dtype: object)
(9969, Id                                        9970
EmployeeName                        HUAYUN NIU
JobTitle            DIAGNOSTIC IMAGING TECH II
BasePay                               95181.59
OvertimePay                            1156.42
OtherPay                                1040.0
Benefits                                   NaN
TotalPay                              97378.01
TotalPayBenefits                      97378.01
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 9969, dtype: object)
(9970, Id                                               9971
EmployeeName                            RUSSELL BROWN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   9727.02
OtherPay                                      7826.68
Benefits                                          NaN
TotalPay                                      97373.7
TotalPayBenefits                              97373.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9970, dtype: object)
(9971, Id                              9972
EmployeeName                FRED LAM
JobTitle            TRANSIT OPERATOR
BasePay                     67326.56
OvertimePay                 26300.57
OtherPay                     3743.86
Benefits                         NaN
TotalPay                    97370.99
TotalPayBenefits            97370.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9971, dtype: object)
(9972, Id                             9973
EmployeeName        MICHAEL SPENCER
JobTitle              CABLE SPLICER
BasePay                     95180.4
OvertimePay                 2124.56
OtherPay                       49.5
Benefits                        NaN
TotalPay                   97354.46
TotalPayBenefits           97354.46
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 9972, dtype: object)
(9973, Id                            9974
EmployeeName        DIANA QUINTERO
JobTitle            DEPUTY SHERIFF
BasePay                   80831.17
OvertimePay               11652.84
OtherPay                   4866.89
Benefits                       NaN
TotalPay                   97350.9
TotalPayBenefits           97350.9
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9973, dtype: object)
(9974, Id                            9975
EmployeeName              ALAN TAM
JobTitle            DEPUTY SHERIFF
BasePay                   85987.59
OvertimePay                 4459.5
OtherPay                   6902.79
Benefits                       NaN
TotalPay                  97349.88
TotalPayBenefits          97349.88
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 9974, dtype: object)
(9975, Id                                9976
EmployeeName             EMILIO OROZCO
JobTitle            NURSE PRACTITIONER
BasePay                       97093.05
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           NaN
TotalPay                      97343.05
TotalPayBenefits              97343.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9975, dtype: object)
(9976, Id                                    9977
EmployeeName                  DWAYNE AKERS
JobTitle            CARPENTER SUPERVISOR I
BasePay                           95889.92
OvertimePay                        1444.12
OtherPay                               0.0
Benefits                               NaN
TotalPay                          97334.04
TotalPayBenefits                  97334.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 9976, dtype: object)
(9977, Id                              9978
EmployeeName              PEOLA LANE
JobTitle            TRANSIT OPERATOR
BasePay                     68379.25
OvertimePay                 27634.02
OtherPay                     1303.32
Benefits                         NaN
TotalPay                    97316.59
TotalPayBenefits            97316.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9977, dtype: object)
(9978, Id                           9979
EmployeeName        ARNOLD FRELIX
JobTitle            CABLE SPLICER
BasePay                   91781.1
OvertimePay               3399.29
OtherPay                  2135.47
Benefits                      NaN
TotalPay                 97315.86
TotalPayBenefits         97315.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 9978, dtype: object)
(9979, Id                                         9980
EmployeeName                     PATRICIA MYUNG
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 97312.5
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                                97312.5
TotalPayBenefits                        97312.5
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 9979, dtype: object)
(9980, Id                                               9981
EmployeeName                           THOMAS HOFFMAN
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      96685.65
OvertimePay                                       0.0
OtherPay                                        624.0
Benefits                                          NaN
TotalPay                                     97309.65
TotalPayBenefits                             97309.65
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9980, dtype: object)
(9981, Id                                               9982
EmployeeName                                 BING YEE
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96684.8
OvertimePay                                       0.0
OtherPay                                        624.0
Benefits                                          NaN
TotalPay                                      97308.8
TotalPayBenefits                              97308.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 9981, dtype: object)
(9982, Id                                 9983
EmployeeName             PEDRO SANDOVAL
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         73367.3
OvertimePay                    12404.49
OtherPay                        11535.9
Benefits                            NaN
TotalPay                       97307.69
TotalPayBenefits               97307.69
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 9982, dtype: object)
(9983, Id                                           9984
EmployeeName                        SHANE BALANON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                592.83
OtherPay                                  5591.29
Benefits                                      NaN
TotalPay                                 97302.13
TotalPayBenefits                         97302.13
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 9983, dtype: object)
(9984, Id                              9985
EmployeeName         ANGELA GRIFFITH
JobTitle            TRANSIT OPERATOR
BasePay                     65126.13
OvertimePay                  31932.4
OtherPay                      241.51
Benefits                         NaN
TotalPay                    97300.04
TotalPayBenefits            97300.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9984, dtype: object)
(9985, Id                                                           9986
EmployeeName                                         ROGER GAINEY
JobTitle            SUPERVISING PROBATION OFFICER, JUVENILE COURT
BasePay                                                  97292.78
OvertimePay                                                   0.0
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                 97292.78
TotalPayBenefits                                         97292.78
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 9985, dtype: object)
(9986, Id                              9987
EmployeeName          JENNIFER ELTON
JobTitle            REGISTERED NURSE
BasePay                     95102.96
OvertimePay                   377.61
OtherPay                     1802.78
Benefits                         NaN
TotalPay                    97283.35
TotalPayBenefits            97283.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9986, dtype: object)
(9987, Id                              9988
EmployeeName                ALLAN LI
JobTitle            TRANSIT OPERATOR
BasePay                     64515.06
OvertimePay                 32690.55
OtherPay                       74.62
Benefits                         NaN
TotalPay                    97280.23
TotalPayBenefits            97280.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9987, dtype: object)
(9988, Id                              9989
EmployeeName             LLEWELYN LU
JobTitle            REGISTERED NURSE
BasePay                     91534.45
OvertimePay                  1839.08
OtherPay                      3900.2
Benefits                         NaN
TotalPay                    97273.73
TotalPayBenefits            97273.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 9988, dtype: object)
(9989, Id                                                        9990
EmployeeName                                   ALFREDO FAJARDO
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                                97270.0
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                               97270.0
TotalPayBenefits                                       97270.0
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 9989, dtype: object)
(9990, Id                                9991
EmployeeName                 OSCAR GEE
JobTitle            ASSISTANT ENGINEER
BasePay                        90582.0
OvertimePay                        0.0
OtherPay                        6678.6
Benefits                           NaN
TotalPay                       97260.6
TotalPayBenefits               97260.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 9990, dtype: object)
(9991, Id                                  9992
EmployeeName        HANNAH LYN DICKERSON
JobTitle                REGISTERED NURSE
BasePay                         81264.24
OvertimePay                      3302.76
OtherPay                        12684.55
Benefits                             NaN
TotalPay                        97251.55
TotalPayBenefits                97251.55
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 9991, dtype: object)
(9992, Id                                          9993
EmployeeName                         JOHN AVALOS
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9992, dtype: object)
(9993, Id                                          9994
EmployeeName                        DAVID CAMPOS
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9993, dtype: object)
(9994, Id                                          9995
EmployeeName                          DAVID CHIU
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9994, dtype: object)
(9995, Id                                          9996
EmployeeName                          CARMEN CHU
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9995, dtype: object)
(9996, Id                                          9997
EmployeeName                       SEAN ELSBERND
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9996, dtype: object)
(9997, Id                                          9998
EmployeeName                            ERIC MAR
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9997, dtype: object)
(9998, Id                                          9999
EmployeeName                      ROSS MIRKARIMI
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 97237.44
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97237.44
TotalPayBenefits                        97237.44
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9998, dtype: object)
(9999, Id                                         10000
EmployeeName                          LESLIE YEE
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 93409.04
OvertimePay                              3827.78
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                97236.82
TotalPayBenefits                        97236.82
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 9999, dtype: object)
(10000, Id                                   10001
EmployeeName                WILLIAM CHIONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90602.87
OvertimePay                        5244.14
OtherPay                           1387.07
Benefits                               NaN
TotalPay                          97234.08
TotalPayBenefits                  97234.08
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10000, dtype: object)
(10001, Id                               10002
EmployeeName            ROBERT GREGSON
JobTitle            SHEET METAL WORKER
BasePay                        89863.8
OvertimePay                    5342.56
OtherPay                        2020.0
Benefits                           NaN
TotalPay                      97226.36
TotalPayBenefits              97226.36
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10001, dtype: object)
(10002, Id                             10003
EmployeeName         KENNETH LUNARDI
JobTitle            TRANSIT OPERATOR
BasePay                     68748.81
OvertimePay                 24808.08
OtherPay                     3668.53
Benefits                         NaN
TotalPay                    97225.42
TotalPayBenefits            97225.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10002, dtype: object)
(10003, Id                                 10004
EmployeeName                  KAY YATABE
JobTitle            PHYSICIAN SPECIALIST
BasePay                         97148.77
OvertimePay                          0.0
OtherPay                            72.0
Benefits                             NaN
TotalPay                        97220.77
TotalPayBenefits                97220.77
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10003, dtype: object)
(10004, Id                           10005
EmployeeName        DAVID CLARKSON
JobTitle               ELECTRICIAN
BasePay                    86771.1
OvertimePay                6323.37
OtherPay                   4116.55
Benefits                       NaN
TotalPay                  97211.02
TotalPayBenefits          97211.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10004, dtype: object)
(10005, Id                                                   10006
EmployeeName                                 ROBERT PINEDA
JobTitle            HOSPITAL ELIGIBILITY WORKER SUPERVISOR
BasePay                                           80666.62
OvertimePay                                       12216.35
OtherPay                                           4325.09
Benefits                                               NaN
TotalPay                                          97208.06
TotalPayBenefits                                  97208.06
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 10005, dtype: object)
(10006, Id                                     10007
EmployeeName                    NETANILI NIU
JobTitle            TREE TOPPER SUPERVISOR I
BasePay                             80679.47
OvertimePay                         11337.88
OtherPay                             5181.89
Benefits                                 NaN
TotalPay                            97199.24
TotalPayBenefits                    97199.24
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10006, dtype: object)
(10007, Id                                                    10008
EmployeeName                                 ALYSA TRUJILLO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78145.59
OvertimePay                                        10757.68
OtherPay                                            8292.02
Benefits                                                NaN
TotalPay                                           97195.29
TotalPayBenefits                                   97195.29
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10007, dtype: object)
(10008, Id                             10009
EmployeeName         SARAH VALLARINO
JobTitle            POLICE OFFICER I
BasePay                     90445.54
OvertimePay                   496.88
OtherPay                     6250.13
Benefits                         NaN
TotalPay                    97192.55
TotalPayBenefits            97192.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10008, dtype: object)
(10009, Id                             10010
EmployeeName        JONATHAN PIGFORD
JobTitle            POLICE OFFICER I
BasePay                     86132.45
OvertimePay                  3681.23
OtherPay                     7373.14
Benefits                         NaN
TotalPay                    97186.82
TotalPayBenefits            97186.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10009, dtype: object)
(10010, Id                                              10011
EmployeeName                                KEITH LEE
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      87418.43
OvertimePay                                   9259.66
OtherPay                                       505.89
Benefits                                          NaN
TotalPay                                     97183.98
TotalPayBenefits                             97183.98
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10010, dtype: object)
(10011, Id                           10012
EmployeeName         ROBERT GARCIA
JobTitle            DEPUTY SHERIFF
BasePay                   86798.25
OvertimePay                3591.62
OtherPay                   6790.68
Benefits                       NaN
TotalPay                  97180.55
TotalPayBenefits          97180.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10011, dtype: object)
(10012, Id                                              10013
EmployeeName                          ALFREDO RAMIREZ
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79064.04
OvertimePay                                  10504.67
OtherPay                                      7610.73
Benefits                                          NaN
TotalPay                                     97179.44
TotalPayBenefits                             97179.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10012, dtype: object)
(10013, Id                            10014
EmployeeName        KENNETH TOLIBAS
JobTitle              CABLE SPLICER
BasePay                     92914.2
OvertimePay                  4142.9
OtherPay                      100.0
Benefits                        NaN
TotalPay                    97157.1
TotalPayBenefits            97157.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10013, dtype: object)
(10014, Id                             10015
EmployeeName        FREDERICK ALONZO
JobTitle              DEPUTY SHERIFF
BasePay                     86756.51
OvertimePay                  2234.48
OtherPay                     8163.54
Benefits                         NaN
TotalPay                    97154.53
TotalPayBenefits            97154.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10014, dtype: object)
(10015, Id                                                    10016
EmployeeName                               CHANTILLY GARVEY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77810.66
OvertimePay                                          9044.8
OtherPay                                           10278.63
Benefits                                                NaN
TotalPay                                           97134.09
TotalPayBenefits                                   97134.09
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10015, dtype: object)
(10016, Id                                   10017
EmployeeName                 PAUL DESCHLER
JobTitle            CARPENTER SUPERVISOR I
BasePay                           96082.47
OvertimePay                         649.85
OtherPay                             400.0
Benefits                               NaN
TotalPay                          97132.32
TotalPayBenefits                  97132.32
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10016, dtype: object)
(10017, Id                             10018
EmployeeName         GEORGE GATEWOOD
JobTitle            TRANSIT OPERATOR
BasePay                     61527.93
OvertimePay                 31915.69
OtherPay                     3671.73
Benefits                         NaN
TotalPay                    97115.35
TotalPayBenefits            97115.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10017, dtype: object)
(10018, Id                             10019
EmployeeName            GARY MAESTAS
JobTitle            TRANSIT OPERATOR
BasePay                     66923.02
OvertimePay                 28667.72
OtherPay                     1523.36
Benefits                         NaN
TotalPay                     97114.1
TotalPayBenefits             97114.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10018, dtype: object)
(10019, Id                                           10020
EmployeeName                        JANICE WALCOTT
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.33
OvertimePay                                    0.0
OtherPay                                   2798.42
Benefits                                       NaN
TotalPay                                  97097.75
TotalPayBenefits                          97097.75
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10019, dtype: object)
(10020, Id                                                    10021
EmployeeName                                    LYNN FEENEY
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            74954.71
OvertimePay                                        15583.35
OtherPay                                            6554.67
Benefits                                                NaN
TotalPay                                           97092.73
TotalPayBenefits                                   97092.73
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10020, dtype: object)
(10021, Id                                       10022
EmployeeName                   PAUL DE FREITAS
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                               97086.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              97086.07
TotalPayBenefits                      97086.07
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10021, dtype: object)
(10022, Id                            10023
EmployeeName           JOHN FEMENIA
JobTitle            UTILITY PLUMBER
BasePay                    89152.49
OvertimePay                     0.0
OtherPay                    7919.78
Benefits                        NaN
TotalPay                   97072.27
TotalPayBenefits           97072.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10022, dtype: object)
(10023, Id                                                          10024
EmployeeName                                         FRED COLLIER
JobTitle            SUPERVISING PROBATION OFFICER, JUVENILE COURT
BasePay                                                   92270.0
OvertimePay                                               4793.25
OtherPay                                                      0.0
Benefits                                                      NaN
TotalPay                                                 97063.25
TotalPayBenefits                                         97063.25
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 10023, dtype: object)
(10024, Id                              10025
EmployeeName        ARKADIY YUSHPRAKH
JobTitle                  ELECTRICIAN
BasePay                      87122.41
OvertimePay                   6092.82
OtherPay                      3843.98
Benefits                          NaN
TotalPay                     97059.21
TotalPayBenefits             97059.21
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10024, dtype: object)
(10025, Id                                      10026
EmployeeName                      MICHAEL GAY
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                              76832.37
OvertimePay                          20225.21
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97057.58
TotalPayBenefits                     97057.58
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10025, dtype: object)
(10026, Id                                 10027
EmployeeName               YUAN SHEK HSU
JobTitle            OPERATING ROOM NURSE
BasePay                         69458.42
OvertimePay                      4407.81
OtherPay                        23188.79
Benefits                             NaN
TotalPay                        97055.02
TotalPayBenefits                97055.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10026, dtype: object)
(10027, Id                                      10028
EmployeeName                     JAMES BARNES
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58800.8
OvertimePay                          24420.95
OtherPay                             13830.62
Benefits                                  NaN
TotalPay                             97052.37
TotalPayBenefits                     97052.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10027, dtype: object)
(10028, Id                               10029
EmployeeName             FERGAL CLANCY
JobTitle            BUILDING INSPECTOR
BasePay                       94529.22
OvertimePay                        0.0
OtherPay                        2502.6
Benefits                           NaN
TotalPay                      97031.82
TotalPayBenefits              97031.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10028, dtype: object)
(10029, Id                             10030
EmployeeName           TERRY SAMPSON
JobTitle            TRANSIT OPERATOR
BasePay                     66017.94
OvertimePay                 26136.66
OtherPay                     4862.78
Benefits                         NaN
TotalPay                    97017.38
TotalPayBenefits            97017.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10029, dtype: object)
(10030, Id                          10031
EmployeeName           EDWARD TOM
JobTitle                CARPENTER
BasePay                   78150.0
OvertimePay              16645.94
OtherPay                   2220.0
Benefits                      NaN
TotalPay                 97015.94
TotalPayBenefits         97015.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10030, dtype: object)
(10031, Id                             10032
EmployeeName            IRWIN BROOKS
JobTitle            TRANSIT OPERATOR
BasePay                     66125.39
OvertimePay                 28322.24
OtherPay                     2563.83
Benefits                         NaN
TotalPay                    97011.46
TotalPayBenefits            97011.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10031, dtype: object)
(10032, Id                                      10033
EmployeeName                 JANET RICHARDSON
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              97001.97
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             97001.97
TotalPayBenefits                     97001.97
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10032, dtype: object)
(10033, Id                              10034
EmployeeName        DAVID BASCONCILLO
JobTitle               DEPUTY SHERIFF
BasePay                      77341.74
OvertimePay                  14419.51
OtherPay                      5234.93
Benefits                          NaN
TotalPay                     96996.18
TotalPayBenefits             96996.18
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10033, dtype: object)
(10034, Id                          10035
EmployeeName           MARY EVANS
JobTitle            SPECIAL NURSE
BasePay                  81037.84
OvertimePay               4617.79
OtherPay                 11338.97
Benefits                      NaN
TotalPay                  96994.6
TotalPayBenefits          96994.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10034, dtype: object)
(10035, Id                           10036
EmployeeName         DONALD GARCIA
JobTitle            DEPUTY SHERIFF
BasePay                   86506.05
OvertimePay                2991.64
OtherPay                   7494.76
Benefits                       NaN
TotalPay                  96992.45
TotalPayBenefits          96992.45
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10035, dtype: object)
(10036, Id                                       10037
EmployeeName                       JOHN FOECKE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                           10769.15
OtherPay                               2315.02
Benefits                                   NaN
TotalPay                              96986.75
TotalPayBenefits                      96986.75
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10036, dtype: object)
(10037, Id                          10038
EmployeeName          ROBERT HAYS
JobTitle               MANAGER II
BasePay                  96980.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 96980.65
TotalPayBenefits         96980.65
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10037, dtype: object)
(10038, Id                                                       10039
EmployeeName                                        WALTER LEE
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.08
OvertimePay                                           10715.71
OtherPay                                               6442.39
Benefits                                                   NaN
TotalPay                                              96978.18
TotalPayBenefits                                      96978.18
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10038, dtype: object)
(10039, Id                                10040
EmployeeName              ANTHONY FLYNN
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    15755.88
OtherPay                        8803.01
Benefits                            NaN
TotalPay                       96968.89
TotalPayBenefits               96968.89
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10039, dtype: object)
(10040, Id                             10041
EmployeeName           JASON JOHNSON
JobTitle            POLICE OFFICER I
BasePay                      94308.0
OvertimePay                  1501.23
OtherPay                     1158.21
Benefits                         NaN
TotalPay                    96967.44
TotalPayBenefits            96967.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10040, dtype: object)
(10041, Id                             10042
EmployeeName        RONTONETTE SCOTT
JobTitle                   MANAGER I
BasePay                     96965.35
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    96965.35
TotalPayBenefits            96965.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10041, dtype: object)
(10042, Id                                              10043
EmployeeName                             RICHARD HART
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96684.8
OvertimePay                                    271.35
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     96956.15
TotalPayBenefits                             96956.15
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10042, dtype: object)
(10043, Id                             10044
EmployeeName           LESLIE BAILEY
JobTitle            REGISTERED NURSE
BasePay                      95019.9
OvertimePay                      0.0
OtherPay                     1925.55
Benefits                         NaN
TotalPay                    96945.45
TotalPayBenefits            96945.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10043, dtype: object)
(10044, Id                               10045
EmployeeName                SUSAN LOWE
JobTitle            TRANSIT SUPERVISOR
BasePay                       87697.47
OvertimePay                    7492.45
OtherPay                        1753.0
Benefits                           NaN
TotalPay                      96942.92
TotalPayBenefits              96942.92
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10044, dtype: object)
(10045, Id                                      10046
EmployeeName               THEODORA BARRANTES
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64764.89
OvertimePay                          30028.87
OtherPay                              2142.49
Benefits                                  NaN
TotalPay                             96936.25
TotalPayBenefits                     96936.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10045, dtype: object)
(10046, Id                                                      10047
EmployeeName                                   RANDLE MCCLURE
JobTitle            PERFORMANCE ANALYST III - PROJECT MANAGER
BasePay                                              96928.48
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             96928.48
TotalPayBenefits                                     96928.48
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10046, dtype: object)
(10047, Id                           10048
EmployeeName         JAMES PERALTA
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                2956.56
OtherPay                   7462.52
Benefits                       NaN
TotalPay                  96925.08
TotalPayBenefits          96925.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10047, dtype: object)
(10048, Id                               10049
EmployeeName                 ENOCH CHU
JobTitle            ASSOCIATE ENGINEER
BasePay                       92020.07
OvertimePay                        0.0
OtherPay                       4904.13
Benefits                           NaN
TotalPay                       96924.2
TotalPayBenefits               96924.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10048, dtype: object)
(10049, Id                                10050
EmployeeName             CHRIS ANDERSON
JobTitle            STATIONARY ENGINEER
BasePay                        72797.28
OvertimePay                     9856.57
OtherPay                       14264.29
Benefits                            NaN
TotalPay                       96918.14
TotalPayBenefits               96918.14
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10049, dtype: object)
(10050, Id                                         10051
EmployeeName                     JULIE ABUSHARKH
JobTitle            COURT INTERPRETER SUPERVISOR
BasePay                                 96913.66
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                96913.66
TotalPayBenefits                        96913.66
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10050, dtype: object)
(10051, Id                           10052
EmployeeName          KENNETH CHIN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 399.39
OtherPay                   9664.69
Benefits                       NaN
TotalPay                  96904.08
TotalPayBenefits          96904.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10051, dtype: object)
(10052, Id                             10053
EmployeeName        DANIEL MCCORMICK
JobTitle                     PLUMBER
BasePay                      87555.3
OvertimePay                      0.0
OtherPay                     9346.15
Benefits                         NaN
TotalPay                    96901.45
TotalPayBenefits            96901.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10052, dtype: object)
(10053, Id                               10054
EmployeeName               JAMES JONES
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    5541.04
OtherPay                       3295.48
Benefits                           NaN
TotalPay                      96898.52
TotalPayBenefits              96898.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10053, dtype: object)
(10054, Id                           10055
EmployeeName            DAVID WONG
JobTitle            DEPUTY SHERIFF
BasePay                   86284.35
OvertimePay                4007.05
OtherPay                   6604.97
Benefits                       NaN
TotalPay                  96896.37
TotalPayBenefits          96896.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10054, dtype: object)
(10055, Id                                              10056
EmployeeName                            WILLIAM HUANG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                    5318.2
OtherPay                                     11746.36
Benefits                                          NaN
TotalPay                                     96884.57
TotalPayBenefits                             96884.57
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10055, dtype: object)
(10056, Id                                      10057
EmployeeName                  KIM-LIEN NGUYEN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              96879.99
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96879.99
TotalPayBenefits                     96879.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10056, dtype: object)
(10057, Id                                      10058
EmployeeName                 ROGER BOUCHER-JR
JobTitle            TRANSIT POWER LINE WORKER
BasePay                              82334.37
OvertimePay                          13334.62
OtherPay                              1207.75
Benefits                                  NaN
TotalPay                             96876.74
TotalPayBenefits                     96876.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10057, dtype: object)
(10058, Id                               10059
EmployeeName             OMAR DAPIAOEN
JobTitle            ASSOCIATE ENGINEER
BasePay                        96873.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       96873.0
TotalPayBenefits               96873.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10058, dtype: object)
(10059, Id                                   10060
EmployeeName                 JOHN GROSHONG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            85715.1
OvertimePay                        2540.64
OtherPay                           8610.98
Benefits                               NaN
TotalPay                          96866.72
TotalPayBenefits                  96866.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10059, dtype: object)
(10060, Id                           10061
EmployeeName        ELIAS SANTIAGO
JobTitle            DEPUTY SHERIFF
BasePay                   86506.02
OvertimePay                7045.33
OtherPay                   3311.34
Benefits                       NaN
TotalPay                  96862.69
TotalPayBenefits          96862.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10060, dtype: object)
(10061, Id                                         10062
EmployeeName                       NORIKO TABATA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 96850.84
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                96850.84
TotalPayBenefits                        96850.84
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10061, dtype: object)
(10062, Id                                10063
EmployeeName        MARIA ESTELA MESIAS
JobTitle            PHARMACY TECHNICIAN
BasePay                        70707.09
OvertimePay                     21053.9
OtherPay                        5080.65
Benefits                            NaN
TotalPay                       96841.64
TotalPayBenefits               96841.64
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10062, dtype: object)
(10063, Id                                   10064
EmployeeName                DANIEL VERHAGE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            64960.0
OvertimePay                        1007.54
OtherPay                           30871.4
Benefits                               NaN
TotalPay                          96838.94
TotalPayBenefits                  96838.94
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10063, dtype: object)
(10064, Id                                10065
EmployeeName              RODNEY SITTON
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71467.37
OvertimePay                     5708.08
OtherPay                       19662.75
Benefits                            NaN
TotalPay                        96838.2
TotalPayBenefits                96838.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10064, dtype: object)
(10065, Id                           10066
EmployeeName        APRIL WILLIAMS
JobTitle            DEPUTY SHERIFF
BasePay                   86809.52
OvertimePay                 4008.0
OtherPay                   6017.78
Benefits                       NaN
TotalPay                   96835.3
TotalPayBenefits           96835.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10065, dtype: object)
(10066, Id                               10067
EmployeeName           REDEENA CLEAVER
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    6223.61
OtherPay                       2519.99
Benefits                           NaN
TotalPay                       96805.6
TotalPayBenefits               96805.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10066, dtype: object)
(10067, Id                                   10068
EmployeeName             JENNIFER ISHIKAWA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           88419.52
OvertimePay                         851.16
OtherPay                           7529.88
Benefits                               NaN
TotalPay                          96800.56
TotalPayBenefits                  96800.56
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10067, dtype: object)
(10068, Id                                 10069
EmployeeName        WINFRED FLEWELLEN JR
JobTitle                 UTILITY PLUMBER
BasePay                         90280.09
OvertimePay                      1144.38
OtherPay                          5372.4
Benefits                             NaN
TotalPay                        96796.87
TotalPayBenefits                96796.87
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10068, dtype: object)
(10069, Id                                   10070
EmployeeName                     TSZLAP KO
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79949.62
OvertimePay                       10413.72
OtherPay                           6427.25
Benefits                               NaN
TotalPay                          96790.59
TotalPayBenefits                  96790.59
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10069, dtype: object)
(10070, Id                              10071
EmployeeName        REYNOLD CRISTOBAL
JobTitle               DEPUTY SHERIFF
BasePay                      86840.03
OvertimePay                   2644.53
OtherPay                      7305.08
Benefits                          NaN
TotalPay                     96789.64
TotalPayBenefits             96789.64
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10070, dtype: object)
(10071, Id                                      10072
EmployeeName                       SUSIE CHOY
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               96788.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              96788.0
TotalPayBenefits                      96788.0
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10071, dtype: object)
(10072, Id                                                        10073
EmployeeName                                      CINDY SHAMBAN
JobTitle            MANAGER I - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                96335.15
OvertimePay                                                 0.0
OtherPay                                                 435.88
Benefits                                                    NaN
TotalPay                                               96771.03
TotalPayBenefits                                       96771.03
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 10072, dtype: object)
(10073, Id                                10074
EmployeeName          MEGAN TRAN-NGUYEN
JobTitle            SUPERVISING CHEMIST
BasePay                        96759.54
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       96759.54
TotalPayBenefits               96759.54
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10073, dtype: object)
(10074, Id                           10075
EmployeeName         ERICH CAMACHO
JobTitle            DEPUTY SHERIFF
BasePay                   82322.67
OvertimePay                 3098.4
OtherPay                  11325.68
Benefits                       NaN
TotalPay                  96746.75
TotalPayBenefits          96746.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10074, dtype: object)
(10075, Id                                   10076
EmployeeName                   LARRY OLSON
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                        6080.91
OtherPay                               0.0
Benefits                               NaN
TotalPay                          96744.92
TotalPayBenefits                  96744.92
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10075, dtype: object)
(10076, Id                               10077
EmployeeName                  GARY ONG
JobTitle            ASSOCIATE ENGINEER
BasePay                        58003.2
OvertimePay                        0.0
OtherPay                      38735.69
Benefits                           NaN
TotalPay                      96738.89
TotalPayBenefits              96738.89
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10076, dtype: object)
(10077, Id                                      10078
EmployeeName                  GREGORY CLEAVER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96735.23
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96735.23
TotalPayBenefits                     96735.23
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10077, dtype: object)
(10078, Id                                 10079
EmployeeName           ADRIENNE TRUSTMAN
JobTitle            PHYSICIAN SPECIALIST
BasePay                          93964.5
OvertimePay                          0.0
OtherPay                          2754.0
Benefits                             NaN
TotalPay                         96718.5
TotalPayBenefits                 96718.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10078, dtype: object)
(10079, Id                             10080
EmployeeName          ELBERT GUIN JR
JobTitle            POLICE OFFICER I
BasePay                     95522.78
OvertimePay                    365.1
OtherPay                      822.21
Benefits                         NaN
TotalPay                    96710.09
TotalPayBenefits            96710.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10079, dtype: object)
(10080, Id                          10081
EmployeeName         SCOTT SIMONS
JobTitle              STEAMFITTER
BasePay                   90280.1
OvertimePay               1872.56
OtherPay                  4553.39
Benefits                      NaN
TotalPay                 96706.05
TotalPayBenefits         96706.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10080, dtype: object)
(10081, Id                           10082
EmployeeName          STEPHEN CHAN
JobTitle            DEPUTY SHERIFF
BasePay                   85623.11
OvertimePay                6813.44
OtherPay                   4267.06
Benefits                       NaN
TotalPay                  96703.61
TotalPayBenefits          96703.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10081, dtype: object)
(10082, Id                                10083
EmployeeName              MICHAEL GOVEA
JobTitle            STATIONARY ENGINEER
BasePay                        72827.38
OvertimePay                     1253.24
OtherPay                       22619.63
Benefits                            NaN
TotalPay                       96700.25
TotalPayBenefits               96700.25
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10082, dtype: object)
(10083, Id                           10084
EmployeeName         RONALD ROSADO
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                3845.83
OtherPay                   6344.02
Benefits                       NaN
TotalPay                  96695.85
TotalPayBenefits          96695.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10083, dtype: object)
(10084, Id                                           10085
EmployeeName                       JOSEPHINE PEREZ
JobTitle            SURGICAL PROCEDURES TECHNICIAN
BasePay                                    65727.8
OvertimePay                               30141.82
OtherPay                                     821.6
Benefits                                       NaN
TotalPay                                  96691.22
TotalPayBenefits                          96691.22
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10084, dtype: object)
(10085, Id                           10086
EmployeeName           JEFFREY LEE
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                4218.71
OtherPay                   5965.24
Benefits                       NaN
TotalPay                  96689.95
TotalPayBenefits          96689.95
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10085, dtype: object)
(10086, Id                                           10087
EmployeeName                          ARDIS GRAHAM
JobTitle            CONTRACT COMPLIANCE OFFICER II
BasePay                                    96686.1
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   96686.1
TotalPayBenefits                           96686.1
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10086, dtype: object)
(10087, Id                                              10088
EmployeeName                             ALVARO VIDAL
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                       96684.8
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                      96684.8
TotalPayBenefits                              96684.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10087, dtype: object)
(10088, Id                                      10089
EmployeeName                ARIEL BOYCE-SMITH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96677.49
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96677.49
TotalPayBenefits                     96677.49
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10088, dtype: object)
(10089, Id                           10090
EmployeeName         DENNIS HUGHES
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                5076.38
OtherPay                   5094.53
Benefits                       NaN
TotalPay                  96676.91
TotalPayBenefits          96676.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10089, dtype: object)
(10090, Id                                               10091
EmployeeName                           SUZANNE GAUTIER
JobTitle            COORDINATOR OF CITIZEN INVOLVEMENT
BasePay                                       96369.84
OvertimePay                                        0.0
OtherPay                                        302.72
Benefits                                           NaN
TotalPay                                      96672.56
TotalPayBenefits                              96672.56
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10090, dtype: object)
(10091, Id                                 10092
EmployeeName               MARK PHILLIPS
JobTitle            SEWER SERVICE WORKER
BasePay                         81319.13
OvertimePay                     11662.29
OtherPay                         3680.66
Benefits                             NaN
TotalPay                        96662.08
TotalPayBenefits                96662.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10091, dtype: object)
(10092, Id                          10093
EmployeeName        DENIS BRABANT
JobTitle              ELECTRICIAN
BasePay                  85365.91
OvertimePay               7838.34
OtherPay                  3446.55
Benefits                      NaN
TotalPay                  96650.8
TotalPayBenefits          96650.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10092, dtype: object)
(10093, Id                                  10094
EmployeeName               VICTOR BECERRA
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          91872.07
OvertimePay                       3077.74
OtherPay                          1689.41
Benefits                              NaN
TotalPay                         96639.22
TotalPayBenefits                 96639.22
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10093, dtype: object)
(10094, Id                                   10095
EmployeeName                   RYAN TOWNER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79167.14
OvertimePay                        5687.14
OtherPay                          11757.59
Benefits                               NaN
TotalPay                          96611.87
TotalPayBenefits                  96611.87
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10094, dtype: object)
(10095, Id                               10096
EmployeeName             MICHAEL MOTTA
JobTitle            ASSOCIATE ENGINEER
BasePay                       92020.04
OvertimePay                        0.0
OtherPay                       4591.65
Benefits                           NaN
TotalPay                      96611.69
TotalPayBenefits              96611.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10095, dtype: object)
(10096, Id                                              10097
EmployeeName                         PATRICK FLUHARTY
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79937.43
OvertimePay                                    8991.7
OtherPay                                      7668.23
Benefits                                          NaN
TotalPay                                     96597.36
TotalPayBenefits                             96597.36
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10096, dtype: object)
(10097, Id                           10098
EmployeeName           BILL YOUNAN
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                4174.74
OtherPay                   5566.37
Benefits                       NaN
TotalPay                  96581.11
TotalPayBenefits          96581.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10097, dtype: object)
(10098, Id                           10099
EmployeeName        ROBERT STENGEL
JobTitle               PLANNER III
BasePay                   94711.83
OvertimePay                    0.0
OtherPay                   1868.88
Benefits                       NaN
TotalPay                  96580.71
TotalPayBenefits          96580.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10098, dtype: object)
(10099, Id                                               10100
EmployeeName                         WALTER POTSELUEFF
JobTitle            MAINTENANCE MACHINIST SUPERVISOR I
BasePay                                       93580.31
OvertimePay                                     218.42
OtherPay                                        2781.5
Benefits                                           NaN
TotalPay                                      96580.23
TotalPayBenefits                              96580.23
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10099, dtype: object)
(10100, Id                                              10101
EmployeeName                            DEBRA BORTHNE
JobTitle            PARKING ENFORCEMENT ADMINISTRATOR
BasePay                                      85124.31
OvertimePay                                   7051.73
OtherPay                                      4399.96
Benefits                                          NaN
TotalPay                                      96576.0
TotalPayBenefits                              96576.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10100, dtype: object)
(10101, Id                             10102
EmployeeName            HENRY CHEUNG
JobTitle            TRANSIT OPERATOR
BasePay                     67539.11
OvertimePay                  24046.9
OtherPay                     4983.46
Benefits                         NaN
TotalPay                    96569.47
TotalPayBenefits            96569.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10101, dtype: object)
(10102, Id                             10103
EmployeeName          JAMES QUALTERS
JobTitle            TRANSIT OPERATOR
BasePay                     65813.67
OvertimePay                 27795.79
OtherPay                     2958.81
Benefits                         NaN
TotalPay                    96568.27
TotalPayBenefits            96568.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10102, dtype: object)
(10103, Id                          10104
EmployeeName          MARTIN GOLD
JobTitle                   WELDER
BasePay                  66301.22
OvertimePay              23584.48
OtherPay                  6682.23
Benefits                      NaN
TotalPay                 96567.93
TotalPayBenefits         96567.93
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10103, dtype: object)
(10104, Id                           10105
EmployeeName           GLENN YOUNG
JobTitle            DEPUTY SHERIFF
BasePay                   79062.01
OvertimePay                3820.99
OtherPay                  13677.77
Benefits                       NaN
TotalPay                  96560.77
TotalPayBenefits          96560.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10104, dtype: object)
(10105, Id                             10106
EmployeeName            VICTOR RAMOS
JobTitle            TRANSIT OPERATOR
BasePay                     65098.96
OvertimePay                 30318.15
OtherPay                      1137.3
Benefits                         NaN
TotalPay                    96554.41
TotalPayBenefits            96554.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10105, dtype: object)
(10106, Id                                    10107
EmployeeName                  ARABI NAJDAWI
JobTitle            PARKING CONTROL OFFICER
BasePay                             55105.5
OvertimePay                         34821.5
OtherPay                            6625.68
Benefits                                NaN
TotalPay                           96552.68
TotalPayBenefits                   96552.68
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10106, dtype: object)
(10107, Id                                               10108
EmployeeName                              MARK POWNING
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR II
BasePay                                       84125.12
OvertimePay                                    6709.35
OtherPay                                       5716.66
Benefits                                           NaN
TotalPay                                      96551.13
TotalPayBenefits                              96551.13
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10107, dtype: object)
(10108, Id                                                          10109
EmployeeName                                         SOHAIL WARSI
JobTitle            MANAGER III - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                  81169.47
OvertimePay                                                   0.0
OtherPay                                                  15376.6
Benefits                                                      NaN
TotalPay                                                 96546.07
TotalPayBenefits                                         96546.07
Year                                                         2011
Notes                                                         NaN
Agency                                              San Francisco
Status                                                        NaN
Name: 10108, dtype: object)
(10109, Id                                                       10110
EmployeeName                                    JESSIE BIGFORD
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79436.28
OvertimePay                                            3894.08
OtherPay                                               13190.2
Benefits                                                   NaN
TotalPay                                              96520.56
TotalPayBenefits                                      96520.56
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10109, dtype: object)
(10110, Id                                      10111
EmployeeName               HERMAN HOLLAND III
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96518.89
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96518.89
TotalPayBenefits                     96518.89
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10110, dtype: object)
(10111, Id                                      10112
EmployeeName                   ARIANA DOWNING
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96518.88
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96518.88
TotalPayBenefits                     96518.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10111, dtype: object)
(10112, Id                                      10113
EmployeeName            PRITHIKA BALAKRISHNAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96518.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96518.87
TotalPayBenefits                     96518.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10112, dtype: object)
(10113, Id                                 10114
EmployeeName            MARCO DEL GROSSO
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.04
OvertimePay                          0.0
OtherPay                         1311.12
Benefits                             NaN
TotalPay                        96514.16
TotalPayBenefits                96514.16
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10113, dtype: object)
(10114, Id                          10115
EmployeeName        ROBERT MESCHI
JobTitle             TRUCK DRIVER
BasePay                   72004.4
OvertimePay              22626.95
OtherPay                  1879.88
Benefits                      NaN
TotalPay                 96511.23
TotalPayBenefits         96511.23
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10114, dtype: object)
(10115, Id                            10116
EmployeeName        JENNIFER KEETON
JobTitle             DEPUTY SHERIFF
BasePay                    76794.14
OvertimePay                 9852.65
OtherPay                     9857.4
Benefits                        NaN
TotalPay                   96504.19
TotalPayBenefits           96504.19
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10115, dtype: object)
(10116, Id                                10117
EmployeeName            EDMUND ENRIQUEZ
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73115.21
OvertimePay                    12780.91
OtherPay                       10601.31
Benefits                            NaN
TotalPay                       96497.43
TotalPayBenefits               96497.43
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10116, dtype: object)
(10117, Id                                             10118
EmployeeName                                SUNG KIM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     96496.07
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    96496.07
TotalPayBenefits                            96496.07
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10117, dtype: object)
(10118, Id                                10119
EmployeeName        TALITOELAU FAATOAFE
JobTitle               TRANSIT OPERATOR
BasePay                        66246.14
OvertimePay                    26629.21
OtherPay                         3612.0
Benefits                            NaN
TotalPay                       96487.35
TotalPayBenefits               96487.35
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10118, dtype: object)
(10119, Id                                     10120
EmployeeName                       NINA HUEY
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             96486.81
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            96486.81
TotalPayBenefits                    96486.81
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10119, dtype: object)
(10120, Id                           10121
EmployeeName        DAVID SULLIVAN
JobTitle               PLANNER III
BasePay                    94758.0
OvertimePay                    0.0
OtherPay                   1716.92
Benefits                       NaN
TotalPay                  96474.92
TotalPayBenefits          96474.92
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10120, dtype: object)
(10121, Id                                                 10122
EmployeeName                                BRIAN GATTER
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                          96474.0
OvertimePay                                          0.0
OtherPay                                             0.0
Benefits                                             NaN
TotalPay                                         96474.0
TotalPayBenefits                                 96474.0
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 10121, dtype: object)
(10122, Id                                10123
EmployeeName        KELLY ROSS-MANASHIL
JobTitle             NURSE PRACTITIONER
BasePay                        89768.78
OvertimePay                         0.0
OtherPay                         6700.8
Benefits                            NaN
TotalPay                       96469.58
TotalPayBenefits               96469.58
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10122, dtype: object)
(10123, Id                                               10124
EmployeeName                               GARY TISELL
JobTitle            MAINTENANCE MACHINIST SUPERVISOR I
BasePay                                       95133.51
OvertimePay                                     655.26
OtherPay                                         660.0
Benefits                                           NaN
TotalPay                                      96448.77
TotalPayBenefits                              96448.77
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10123, dtype: object)
(10124, Id                                                    10125
EmployeeName                          MARGARITA EVANGELISTA
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77710.18
OvertimePay                                        12703.52
OtherPay                                            6026.59
Benefits                                                NaN
TotalPay                                           96440.29
TotalPayBenefits                                   96440.29
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10124, dtype: object)
(10125, Id                                              10126
EmployeeName                          MICHAEL KENNEDY
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       96422.4
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                      96422.4
TotalPayBenefits                              96422.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10125, dtype: object)
(10126, Id                           10127
EmployeeName         BRYAN VEERMAN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                3073.65
OtherPay                    6830.3
Benefits                       NaN
TotalPay                  96409.95
TotalPayBenefits          96409.95
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10126, dtype: object)
(10127, Id                          10128
EmployeeName        JAMES WHEELER
JobTitle                MANAGER I
BasePay                  96408.92
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 96408.92
TotalPayBenefits         96408.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10127, dtype: object)
(10128, Id                             10129
EmployeeName              JACK LEONG
JobTitle            TRANSIT OPERATOR
BasePay                     66979.67
OvertimePay                 24668.97
OtherPay                     4757.77
Benefits                         NaN
TotalPay                    96406.41
TotalPayBenefits            96406.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10128, dtype: object)
(10129, Id                                   10130
EmployeeName                THOMAS FARNHAM
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        3997.51
OtherPay                           1728.28
Benefits                               NaN
TotalPay                          96389.79
TotalPayBenefits                  96389.79
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10129, dtype: object)
(10130, Id                             10131
EmployeeName             DEREK MOORE
JobTitle            TRANSIT OPERATOR
BasePay                      65049.1
OvertimePay                 28513.98
OtherPay                     2817.11
Benefits                         NaN
TotalPay                    96380.19
TotalPayBenefits            96380.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10130, dtype: object)
(10131, Id                                                       10132
EmployeeName                                    MELVIN WALLACE
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.01
OvertimePay                                            1485.15
OtherPay                                              15071.71
Benefits                                                   NaN
TotalPay                                              96376.87
TotalPayBenefits                                      96376.87
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10131, dtype: object)
(10132, Id                                              10133
EmployeeName                              JANET ODOMS
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       80015.4
OvertimePay                                   8460.56
OtherPay                                      7892.83
Benefits                                          NaN
TotalPay                                     96368.79
TotalPayBenefits                             96368.79
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10132, dtype: object)
(10133, Id                                   10134
EmployeeName                   MARC SANTOS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           86906.54
OvertimePay                        1106.81
OtherPay                           8353.74
Benefits                               NaN
TotalPay                          96367.09
TotalPayBenefits                  96367.09
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10133, dtype: object)
(10134, Id                                                        10135
EmployeeName                                MOHMADHANIF MANSURI
JobTitle            MANAGER I - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                96365.32
OvertimePay                                                 0.0
OtherPay                                                    0.0
Benefits                                                    NaN
TotalPay                                               96365.32
TotalPayBenefits                                       96365.32
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 10134, dtype: object)
(10135, Id                              10136
EmployeeName        MICHELE DICKSTEIN
JobTitle             REGISTERED NURSE
BasePay                      94898.56
OvertimePay                       0.0
OtherPay                       1450.0
Benefits                          NaN
TotalPay                     96348.56
TotalPayBenefits             96348.56
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10135, dtype: object)
(10136, Id                                            10137
EmployeeName                             JOHN ZERBE
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    67725.05
OvertimePay                                20936.62
OtherPay                                    7685.67
Benefits                                        NaN
TotalPay                                   96347.34
TotalPayBenefits                           96347.34
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10136, dtype: object)
(10137, Id                                           10138
EmployeeName                       MAGDALENE LOUIE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   95203.06
OvertimePay                                    0.0
OtherPay                                    1140.0
Benefits                                       NaN
TotalPay                                  96343.06
TotalPayBenefits                          96343.06
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10137, dtype: object)
(10138, Id                            10139
EmployeeName        JEFFREY SMEJKAL
JobTitle                  MANAGER I
BasePay                    96045.23
OvertimePay                     0.0
OtherPay                     284.03
Benefits                        NaN
TotalPay                   96329.26
TotalPayBenefits           96329.26
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10138, dtype: object)
(10139, Id                           10140
EmployeeName         LESLIE ALEXIS
JobTitle            DEPUTY SHERIFF
BasePay                   85239.33
OvertimePay                5026.29
OtherPay                   6062.86
Benefits                       NaN
TotalPay                  96328.48
TotalPayBenefits          96328.48
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10139, dtype: object)
(10140, Id                                     10141
EmployeeName                  CYNTHIA MALTEZ
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                              1125.0
Benefits                                 NaN
TotalPay                             96328.0
TotalPayBenefits                     96328.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10140, dtype: object)
(10141, Id                                                    10142
EmployeeName                                  KIM DOUGHERTY
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87338.52
OvertimePay                                         4182.91
OtherPay                                            4795.92
Benefits                                                NaN
TotalPay                                           96317.35
TotalPayBenefits                                   96317.35
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10141, dtype: object)
(10142, Id                             10143
EmployeeName          CARLOS FAJARDO
JobTitle            TRANSIT OPERATOR
BasePay                     66754.16
OvertimePay                  29096.2
OtherPay                      465.85
Benefits                         NaN
TotalPay                    96316.21
TotalPayBenefits            96316.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10142, dtype: object)
(10143, Id                                               10144
EmployeeName                             JOHN NICKLESS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                    9835.82
OtherPay                                       8899.07
Benefits                                           NaN
TotalPay                                       96315.3
TotalPayBenefits                               96315.3
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10143, dtype: object)
(10144, Id                                          10145
EmployeeName                          GARY GORMAN
JobTitle            IS ADMINISTRATOR - SUPERVISOR
BasePay                                  96310.86
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 96310.86
TotalPayBenefits                         96310.86
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10144, dtype: object)
(10145, Id                           10146
EmployeeName        DONALD JACKSON
JobTitle            DEPUTY SHERIFF
BasePay                   86710.99
OvertimePay                4736.12
OtherPay                    4849.6
Benefits                       NaN
TotalPay                  96296.71
TotalPayBenefits          96296.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10145, dtype: object)
(10146, Id                                     10147
EmployeeName                      PATTY WONG
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                              1085.0
Benefits                                 NaN
TotalPay                            96288.02
TotalPayBenefits                    96288.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10146, dtype: object)
(10147, Id                                 10148
EmployeeName                  JAMES LONG
JobTitle            PAINTER SUPERVISOR I
BasePay                         86494.67
OvertimePay                       7688.9
OtherPay                         2099.75
Benefits                             NaN
TotalPay                        96283.32
TotalPayBenefits                96283.32
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10147, dtype: object)
(10148, Id                           10149
EmployeeName          DENEILLE DAY
JobTitle            DEPUTY SHERIFF
BasePay                   81408.35
OvertimePay                3826.44
OtherPay                  11041.97
Benefits                       NaN
TotalPay                  96276.76
TotalPayBenefits          96276.76
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10148, dtype: object)
(10149, Id                             10150
EmployeeName            DOUGLAS BUCK
JobTitle            SURVEY ASSOCIATE
BasePay                      87191.0
OvertimePay                      0.0
OtherPay                     9085.02
Benefits                         NaN
TotalPay                    96276.02
TotalPayBenefits            96276.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10149, dtype: object)
(10150, Id                                   10151
EmployeeName                  JASON ROHWER
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            83172.2
OvertimePay                        9934.77
OtherPay                           3165.04
Benefits                               NaN
TotalPay                          96272.01
TotalPayBenefits                  96272.01
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10150, dtype: object)
(10151, Id                                10152
EmployeeName           MICHELE MOZELSIO
JobTitle            PHYSICIAN ASSISTANT
BasePay                        87288.64
OvertimePay                     8799.45
OtherPay                          175.0
Benefits                            NaN
TotalPay                       96263.09
TotalPayBenefits               96263.09
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10151, dtype: object)
(10152, Id                            10153
EmployeeName        CATHERINE MOORE
JobTitle             DEPUTY SHERIFF
BasePay                    86506.02
OvertimePay                 5469.68
OtherPay                    4284.83
Benefits                        NaN
TotalPay                   96260.53
TotalPayBenefits           96260.53
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10152, dtype: object)
(10153, Id                                                      10154
EmployeeName                                  ROBERT NEATHERY
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                              95275.85
OvertimePay                                            708.02
OtherPay                                                270.0
Benefits                                                  NaN
TotalPay                                             96253.87
TotalPayBenefits                                     96253.87
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10153, dtype: object)
(10154, Id                                                10155
EmployeeName                               ALAN PRINGLE
JobTitle            MEDICAL EXAMINER'S INVESTIGATOR III
BasePay                                         48440.0
OvertimePay                                     3281.66
OtherPay                                       44523.09
Benefits                                            NaN
TotalPay                                       96244.75
TotalPayBenefits                               96244.75
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10154, dtype: object)
(10155, Id                                     10156
EmployeeName                  STEPHANIE CHAN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95602.7
OvertimePay                              0.0
OtherPay                               640.0
Benefits                                 NaN
TotalPay                             96242.7
TotalPayBenefits                     96242.7
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10155, dtype: object)
(10156, Id                           10157
EmployeeName         PAMELA WALKER
JobTitle            DEPUTY SHERIFF
BasePay                   85819.63
OvertimePay                1214.96
OtherPay                   9201.46
Benefits                       NaN
TotalPay                  96236.05
TotalPayBenefits          96236.05
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10156, dtype: object)
(10157, Id                                               10158
EmployeeName                                   TOAN DO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77275.7
OvertimePay                                   17598.53
OtherPay                                        1355.0
Benefits                                           NaN
TotalPay                                      96229.23
TotalPayBenefits                              96229.23
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10157, dtype: object)
(10158, Id                                           10159
EmployeeName                        SERETHA BREWER
JobTitle            ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                   96227.49
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  96227.49
TotalPayBenefits                          96227.49
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10158, dtype: object)
(10159, Id                             10160
EmployeeName         CHARLES PUCKETT
JobTitle            TRANSIT OPERATOR
BasePay                     65317.12
OvertimePay                 27981.04
OtherPay                     2927.94
Benefits                         NaN
TotalPay                     96226.1
TotalPayBenefits             96226.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10159, dtype: object)
(10160, Id                                                10161
EmployeeName                               IRENE SHARPE
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                        59953.25
OvertimePay                                    30121.98
OtherPay                                         6140.9
Benefits                                            NaN
TotalPay                                       96216.13
TotalPayBenefits                               96216.13
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10160, dtype: object)
(10161, Id                                               10162
EmployeeName                              MARCELO YSIP
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.68
OvertimePay                                   16423.79
OtherPay                                       2202.65
Benefits                                           NaN
TotalPay                                      96207.12
TotalPayBenefits                              96207.12
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10161, dtype: object)
(10162, Id                                      10163
EmployeeName              LAILAH SALEM MORRIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96204.44
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96204.44
TotalPayBenefits                     96204.44
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10162, dtype: object)
(10163, Id                             10164
EmployeeName        SHELIA WESTFIELD
JobTitle              DEPUTY SHERIFF
BasePay                     86811.61
OvertimePay                      0.0
OtherPay                     9387.74
Benefits                         NaN
TotalPay                    96199.35
TotalPayBenefits            96199.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10163, dtype: object)
(10164, Id                                10165
EmployeeName        RAIMUNDO MCCLANAHAN
JobTitle               TRANSIT OPERATOR
BasePay                         67202.0
OvertimePay                    27072.41
OtherPay                        1924.27
Benefits                            NaN
TotalPay                       96198.68
TotalPayBenefits               96198.68
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10164, dtype: object)
(10165, Id                                       10166
EmployeeName                      NELSON VALLE
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               78108.63
OvertimePay                            9518.91
OtherPay                               8545.44
Benefits                                   NaN
TotalPay                              96172.98
TotalPayBenefits                      96172.98
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10165, dtype: object)
(10166, Id                              10167
EmployeeName        BERNARD ARTIFICIO
JobTitle               DEPUTY SHERIFF
BasePay                       86506.0
OvertimePay                       0.0
OtherPay                      9666.69
Benefits                          NaN
TotalPay                     96172.69
TotalPayBenefits             96172.69
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10166, dtype: object)
(10167, Id                              10168
EmployeeName        PROSPERO SUNGA JR
JobTitle             TRANSIT OPERATOR
BasePay                      65917.02
OvertimePay                  28495.76
OtherPay                      1759.35
Benefits                          NaN
TotalPay                     96172.13
TotalPayBenefits             96172.13
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10167, dtype: object)
(10168, Id                           10169
EmployeeName         BRETT GINGERY
JobTitle            DEPUTY SHERIFF
BasePay                   76922.42
OvertimePay                16137.1
OtherPay                   3110.71
Benefits                       NaN
TotalPay                  96170.23
TotalPayBenefits          96170.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10168, dtype: object)
(10169, Id                          10170
EmployeeName          AMY RAMIREZ
JobTitle              PLANNER III
BasePay                  94758.02
OvertimePay                   0.0
OtherPay                  1410.75
Benefits                      NaN
TotalPay                 96168.77
TotalPayBenefits         96168.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10169, dtype: object)
(10170, Id                                      10171
EmployeeName                   DUNCAN CARLING
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96166.24
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96166.24
TotalPayBenefits                     96166.24
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10170, dtype: object)
(10171, Id                               10172
EmployeeName             STEVEN CORBIN
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    1714.67
OtherPay                        6386.6
Benefits                           NaN
TotalPay                      96163.27
TotalPayBenefits              96163.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10171, dtype: object)
(10172, Id                           10173
EmployeeName        BRIAN CALLAWAY
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                3728.11
OtherPay                   5584.56
Benefits                       NaN
TotalPay                  96152.68
TotalPayBenefits          96152.68
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10172, dtype: object)
(10173, Id                             10174
EmployeeName           JOSE MEMBRENO
JobTitle            TRANSIT OPERATOR
BasePay                     64118.91
OvertimePay                 27223.46
OtherPay                     4806.25
Benefits                         NaN
TotalPay                    96148.62
TotalPayBenefits            96148.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10173, dtype: object)
(10174, Id                                      10175
EmployeeName                     ALEX BASTIAN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96147.25
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96147.25
TotalPayBenefits                     96147.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10174, dtype: object)
(10175, Id                                      10176
EmployeeName                     LINDSEY CHOW
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              96147.25
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             96147.25
TotalPayBenefits                     96147.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10175, dtype: object)
(10176, Id                                              10177
EmployeeName                             DAVID SILVEN
JobTitle            SUPERVISING CLINICAL PSYCHOLOGIST
BasePay                                      94360.37
OvertimePay                                       0.0
OtherPay                                      1786.49
Benefits                                          NaN
TotalPay                                     96146.86
TotalPayBenefits                             96146.86
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10176, dtype: object)
(10177, Id                                        10178
EmployeeName                         JOANN PHAN
JobTitle            PATIENT ACCOUNTS SUPERVISOR
BasePay                                75005.63
OvertimePay                            21130.92
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               96136.55
TotalPayBenefits                       96136.55
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 10177, dtype: object)
(10178, Id                                      10179
EmployeeName                    ARTURO MARTIN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               57852.4
OvertimePay                          26772.39
OtherPay                             11505.09
Benefits                                  NaN
TotalPay                             96129.88
TotalPayBenefits                     96129.88
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10178, dtype: object)
(10179, Id                             10180
EmployeeName          LESLEY SHERRON
JobTitle            TRANSIT OPERATOR
BasePay                     67040.23
OvertimePay                 22145.77
OtherPay                     6943.45
Benefits                         NaN
TotalPay                    96129.45
TotalPayBenefits            96129.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10179, dtype: object)
(10180, Id                                10181
EmployeeName                DAVID QUOCK
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.04
OvertimePay                       551.4
OtherPay                            0.0
Benefits                            NaN
TotalPay                       96127.44
TotalPayBenefits               96127.44
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10180, dtype: object)
(10181, Id                                10182
EmployeeName             KEVIN NAVARRET
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.02
OvertimePay                       551.4
OtherPay                            0.0
Benefits                            NaN
TotalPay                       96127.42
TotalPayBenefits               96127.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10181, dtype: object)
(10182, Id                          10183
EmployeeName            STEVE CHU
JobTitle                  PLUMBER
BasePay                   91551.6
OvertimePay                   0.0
OtherPay                  4571.26
Benefits                      NaN
TotalPay                 96122.86
TotalPayBenefits         96122.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10182, dtype: object)
(10183, Id                           10184
EmployeeName         VICTOR MAJANO
JobTitle            DEPUTY SHERIFF
BasePay                    86506.1
OvertimePay                 4272.3
OtherPay                   5335.17
Benefits                       NaN
TotalPay                  96113.57
TotalPayBenefits          96113.57
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10183, dtype: object)
(10184, Id                           10185
EmployeeName          LELA PAULSON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 4809.6
OtherPay                   4463.77
Benefits                       NaN
TotalPay                  96113.37
TotalPayBenefits          96113.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10184, dtype: object)
(10185, Id                                         10186
EmployeeName                         ROBERT QUAN
JobTitle            STREET INSPECTION SUPERVISOR
BasePay                                  95683.0
OvertimePay                               415.01
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                96098.01
TotalPayBenefits                        96098.01
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10185, dtype: object)
(10186, Id                              10187
EmployeeName        RAPHROGER GONZAGA
JobTitle             REGISTERED NURSE
BasePay                      89104.95
OvertimePay                   1607.18
OtherPay                      5368.33
Benefits                          NaN
TotalPay                     96080.46
TotalPayBenefits             96080.46
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10186, dtype: object)
(10187, Id                                                       10188
EmployeeName                                         JOHN WEST
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               75885.05
OvertimePay                                           13421.21
OtherPay                                               6767.84
Benefits                                                   NaN
TotalPay                                               96074.1
TotalPayBenefits                                       96074.1
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10187, dtype: object)
(10188, Id                                       10189
EmployeeName                   MICHAEL KHALFIN
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82056.01
OvertimePay                            1242.71
OtherPay                              12764.31
Benefits                                   NaN
TotalPay                              96063.03
TotalPayBenefits                      96063.03
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10188, dtype: object)
(10189, Id                           10190
EmployeeName        WILLIAM TARBOX
JobTitle              TRUCK DRIVER
BasePay                   73037.26
OvertimePay               20914.93
OtherPay                    2110.0
Benefits                       NaN
TotalPay                  96062.19
TotalPayBenefits          96062.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10189, dtype: object)
(10190, Id                             10191
EmployeeName            EDDY MORALES
JobTitle            TRANSIT OPERATOR
BasePay                     65495.72
OvertimePay                 27601.58
OtherPay                      2962.5
Benefits                         NaN
TotalPay                     96059.8
TotalPayBenefits             96059.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10190, dtype: object)
(10191, Id                                10192
EmployeeName          RENATO POLICARPIO
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    22140.96
OtherPay                        1507.21
Benefits                            NaN
TotalPay                       96058.17
TotalPayBenefits               96058.17
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10191, dtype: object)
(10192, Id                                           10193
EmployeeName                         MAMDOUH AWWAD
JobTitle            ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                   96041.58
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  96041.58
TotalPayBenefits                          96041.58
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10192, dtype: object)
(10193, Id                            10194
EmployeeName        RASHAAN SANDERS
JobTitle             DEPUTY SHERIFF
BasePay                    84747.84
OvertimePay                 9283.61
OtherPay                    2009.29
Benefits                        NaN
TotalPay                   96040.74
TotalPayBenefits           96040.74
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10193, dtype: object)
(10194, Id                                     10195
EmployeeName                    ENG ENG CHAN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              76938.0
OvertimePay                              0.0
OtherPay                            19099.88
Benefits                                 NaN
TotalPay                            96037.88
TotalPayBenefits                    96037.88
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10194, dtype: object)
(10195, Id                                             10196
EmployeeName                            DAVID FLORES
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     96032.83
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    96032.83
TotalPayBenefits                            96032.83
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10195, dtype: object)
(10196, Id                          10197
EmployeeName            KEVIN DAY
JobTitle              FIREFIGHTER
BasePay                  78306.36
OvertimePay               6204.68
OtherPay                 11521.35
Benefits                      NaN
TotalPay                 96032.39
TotalPayBenefits         96032.39
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10196, dtype: object)
(10197, Id                               10198
EmployeeName              RODNEY PHANN
JobTitle            ASSOCIATE ENGINEER
BasePay                       90597.18
OvertimePay                        0.0
OtherPay                       5423.32
Benefits                           NaN
TotalPay                       96020.5
TotalPayBenefits               96020.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10197, dtype: object)
(10198, Id                                   10199
EmployeeName                   KENNETH LEE
JobTitle            MAINTENANCE CONTROLLER
BasePay                           82762.16
OvertimePay                            0.0
OtherPay                          13254.33
Benefits                               NaN
TotalPay                          96016.49
TotalPayBenefits                  96016.49
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10198, dtype: object)
(10199, Id                               10200
EmployeeName               DARRYL DUNN
JobTitle            UTILITY SPECIALIST
BasePay                       96010.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      96010.51
TotalPayBenefits              96010.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10199, dtype: object)
(10200, Id                                             10201
EmployeeName                         URSULA CASTILLO
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     66264.23
OvertimePay                                 28269.48
OtherPay                                     1461.19
Benefits                                         NaN
TotalPay                                     95994.9
TotalPayBenefits                             95994.9
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10200, dtype: object)
(10201, Id                          10202
EmployeeName         DAVID BERINI
JobTitle              STEAMFITTER
BasePay                  89021.18
OvertimePay               3168.42
OtherPay                  3786.57
Benefits                      NaN
TotalPay                 95976.17
TotalPayBenefits         95976.17
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10201, dtype: object)
(10202, Id                                              10203
EmployeeName                             JESUS GARCIA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   8365.58
OtherPay                                      7786.86
Benefits                                          NaN
TotalPay                                     95972.44
TotalPayBenefits                             95972.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10202, dtype: object)
(10203, Id                                              10204
EmployeeName                              ANGELA FUNG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.04
OvertimePay                                   8092.35
OtherPay                                      8058.94
Benefits                                          NaN
TotalPay                                     95971.33
TotalPayBenefits                             95971.33
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10203, dtype: object)
(10204, Id                                         10205
EmployeeName                        DARRYL BROWN
JobTitle            COMMUNICATIONS DISPATCHER II
BasePay                                 56532.68
OvertimePay                             36676.59
OtherPay                                 2753.36
Benefits                                     NaN
TotalPay                                95962.63
TotalPayBenefits                        95962.63
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10204, dtype: object)
(10205, Id                                                10206
EmployeeName                                JASMINE KAW
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE I
BasePay                                        89806.05
OvertimePay                                     3414.03
OtherPay                                        2739.26
Benefits                                            NaN
TotalPay                                       95959.34
TotalPayBenefits                               95959.34
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10205, dtype: object)
(10206, Id                              10207
EmployeeName        MARK LUSTENBERGER
JobTitle             POLICE OFFICER I
BasePay                      86318.68
OvertimePay                   1949.84
OtherPay                      7684.39
Benefits                          NaN
TotalPay                     95952.91
TotalPayBenefits             95952.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10206, dtype: object)
(10207, Id                                 10208
EmployeeName              STEVEN SHIGLEY
JobTitle            POWER HOUSE OPERATOR
BasePay                          71062.8
OvertimePay                     18724.71
OtherPay                         6163.92
Benefits                             NaN
TotalPay                        95951.43
TotalPayBenefits                95951.43
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10207, dtype: object)
(10208, Id                                             10209
EmployeeName                          TAYLOR EMERSON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     95938.58
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    95938.58
TotalPayBenefits                            95938.58
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10208, dtype: object)
(10209, Id                              10210
EmployeeName        SUPREMIE WYSINGER
JobTitle               DEPUTY SHERIFF
BasePay                       86840.0
OvertimePay                       0.0
OtherPay                      9094.82
Benefits                          NaN
TotalPay                     95934.82
TotalPayBenefits             95934.82
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10209, dtype: object)
(10210, Id                              10211
EmployeeName        EBENEZER ESPINOZA
JobTitle               DEPUTY SHERIFF
BasePay                      86506.01
OvertimePay                   7787.12
OtherPay                      1639.94
Benefits                          NaN
TotalPay                     95933.07
TotalPayBenefits             95933.07
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10210, dtype: object)
(10211, Id                              10212
EmployeeName        RICHARD DEMARTINI
JobTitle                      PLUMBER
BasePay                      90643.37
OvertimePay                    382.14
OtherPay                      4901.79
Benefits                          NaN
TotalPay                      95927.3
TotalPayBenefits              95927.3
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10211, dtype: object)
(10212, Id                           10213
EmployeeName        MARITES JUNIER
JobTitle             SPECIAL NURSE
BasePay                   95915.53
OvertimePay                    0.0
OtherPay                     11.62
Benefits                       NaN
TotalPay                  95927.15
TotalPayBenefits          95927.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10212, dtype: object)
(10213, Id                                                10214
EmployeeName                                    SAN SWE
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                        60178.45
OvertimePay                                    30169.85
OtherPay                                        5578.01
Benefits                                            NaN
TotalPay                                       95926.31
TotalPayBenefits                               95926.31
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10213, dtype: object)
(10214, Id                               10215
EmployeeName             KENNETH KWONG
JobTitle            ASSOCIATE ENGINEER
BasePay                       95832.29
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      95922.29
TotalPayBenefits              95922.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10214, dtype: object)
(10215, Id                                      10216
EmployeeName                       OMID TALAI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95919.25
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95919.25
TotalPayBenefits                     95919.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10215, dtype: object)
(10216, Id                                     10217
EmployeeName                 MISHA MIJATOVIC
JobTitle            TRACK MAINTENANCE WORKER
BasePay                             57859.25
OvertimePay                         32080.26
OtherPay                             5975.33
Benefits                                 NaN
TotalPay                            95914.84
TotalPayBenefits                    95914.84
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10216, dtype: object)
(10217, Id                                  10218
EmployeeName                  BRIAN LOUIE
JobTitle            SENIOR MICROBIOLOGIST
BasePay                           95909.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          95909.0
TotalPayBenefits                  95909.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10217, dtype: object)
(10218, Id                                  10219
EmployeeName                   ANNA BABST
JobTitle            SENIOR MICROBIOLOGIST
BasePay                          95908.97
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         95908.97
TotalPayBenefits                 95908.97
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10218, dtype: object)
(10219, Id                          10220
EmployeeName         TIMOTHY BELL
JobTitle              ELECTRICIAN
BasePay                   87825.0
OvertimePay               6257.49
OtherPay                  1824.25
Benefits                      NaN
TotalPay                 95906.74
TotalPayBenefits         95906.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10219, dtype: object)
(10220, Id                                                           10221
EmployeeName                                       ROLANDO MENDOZA
JobTitle            AUTOMOTIVE SERVICE WORKER ASSISTANT SUPERVISOR
BasePay                                                    67782.0
OvertimePay                                               18128.16
OtherPay                                                   9979.71
Benefits                                                       NaN
TotalPay                                                  95889.87
TotalPayBenefits                                          95889.87
Year                                                          2011
Notes                                                          NaN
Agency                                               San Francisco
Status                                                         NaN
Name: 10220, dtype: object)
(10221, Id                                                    10222
EmployeeName                                   BENNETT CHAN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77831.2
OvertimePay                                         6073.96
OtherPay                                           11976.95
Benefits                                                NaN
TotalPay                                           95882.11
TotalPayBenefits                                   95882.11
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10221, dtype: object)
(10222, Id                            10223
EmployeeName        JEREMIAH LEHANE
JobTitle                    PLUMBER
BasePay                    91177.42
OvertimePay                     0.0
OtherPay                    4701.25
Benefits                        NaN
TotalPay                   95878.67
TotalPayBenefits           95878.67
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10222, dtype: object)
(10223, Id                          10224
EmployeeName           PAUL ELDER
JobTitle            CABLE SPLICER
BasePay                   92914.2
OvertimePay               2726.53
OtherPay                   226.62
Benefits                      NaN
TotalPay                 95867.35
TotalPayBenefits         95867.35
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10223, dtype: object)
(10224, Id                                         10225
EmployeeName                         NANCY LYNCH
JobTitle            STREET INSPECTION SUPERVISOR
BasePay                                 95683.01
OvertimePay                                183.4
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                95866.41
TotalPayBenefits                        95866.41
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10224, dtype: object)
(10225, Id                                             10226
EmployeeName                              KARIN SHAW
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     90414.01
OvertimePay                                   919.54
OtherPay                                     4526.21
Benefits                                         NaN
TotalPay                                    95859.76
TotalPayBenefits                            95859.76
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10225, dtype: object)
(10226, Id                           10227
EmployeeName           JAVIER ALVA
JobTitle            DEPUTY SHERIFF
BasePay                   84782.98
OvertimePay                4158.49
OtherPay                   6918.07
Benefits                       NaN
TotalPay                  95859.54
TotalPayBenefits          95859.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10226, dtype: object)
(10227, Id                              10228
EmployeeName        ANTHONY ROBERTSON
JobTitle             TRANSIT OPERATOR
BasePay                      64732.35
OvertimePay                  30412.48
OtherPay                       702.19
Benefits                          NaN
TotalPay                     95847.02
TotalPayBenefits             95847.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10227, dtype: object)
(10228, Id                             10229
EmployeeName              STEVEN LEE
JobTitle            TRANSIT OPERATOR
BasePay                     69248.97
OvertimePay                  21787.9
OtherPay                     4808.27
Benefits                         NaN
TotalPay                    95845.14
TotalPayBenefits            95845.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10228, dtype: object)
(10229, Id                               10230
EmployeeName               LIBORIO YAP
JobTitle            ASSOCIATE ENGINEER
BasePay                       95838.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95838.51
TotalPayBenefits              95838.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10229, dtype: object)
(10230, Id                               10231
EmployeeName          ESNEIDER CUELLAR
JobTitle            ASSOCIATE ENGINEER
BasePay                       95369.02
OvertimePay                        0.0
OtherPay                        443.02
Benefits                           NaN
TotalPay                      95812.04
TotalPayBenefits              95812.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10230, dtype: object)
(10231, Id                                              10232
EmployeeName                            MICHAEL SISON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.03
OvertimePay                                   8241.88
OtherPay                                      7747.39
Benefits                                          NaN
TotalPay                                      95809.3
TotalPayBenefits                              95809.3
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10231, dtype: object)
(10232, Id                               10233
EmployeeName          DANNY CHI HO HUI
JobTitle            TRANSIT SUPERVISOR
BasePay                       73857.89
OvertimePay                   16871.93
OtherPay                       5060.21
Benefits                           NaN
TotalPay                      95790.03
TotalPayBenefits              95790.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10232, dtype: object)
(10233, Id                             10234
EmployeeName          LAUREN CUTTLER
JobTitle            REGISTERED NURSE
BasePay                      90253.7
OvertimePay                   2674.2
OtherPay                     2860.55
Benefits                         NaN
TotalPay                    95788.45
TotalPayBenefits            95788.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10233, dtype: object)
(10234, Id                                              10235
EmployeeName                     ARTURO CASTRO ROBLES
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      88353.48
OvertimePay                                     757.6
OtherPay                                      6667.63
Benefits                                          NaN
TotalPay                                     95778.71
TotalPayBenefits                             95778.71
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10234, dtype: object)
(10235, Id                             10236
EmployeeName        FORREST HEREFORD
JobTitle            TRANSIT OPERATOR
BasePay                     62051.32
OvertimePay                  30850.9
OtherPay                     2876.38
Benefits                         NaN
TotalPay                     95778.6
TotalPayBenefits             95778.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10235, dtype: object)
(10236, Id                               10237
EmployeeName        RICHARD NEPOMUCENO
JobTitle              REGISTERED NURSE
BasePay                       69963.92
OvertimePay                   18162.43
OtherPay                       7650.23
Benefits                           NaN
TotalPay                      95776.58
TotalPayBenefits              95776.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10236, dtype: object)
(10237, Id                                               10238
EmployeeName                                KARRI VING
JobTitle            COORDINATOR OF CITIZEN INVOLVEMENT
BasePay                                       95771.36
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      95771.36
TotalPayBenefits                              95771.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10237, dtype: object)
(10238, Id                             10239
EmployeeName          ANN NEUSTADTER
JobTitle            REGISTERED NURSE
BasePay                     90457.62
OvertimePay                  2005.65
OtherPay                     3306.52
Benefits                         NaN
TotalPay                    95769.79
TotalPayBenefits            95769.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10238, dtype: object)
(10239, Id                                10240
EmployeeName             STEPHEN NEWMAN
JobTitle            MAINTENANCE PLANNER
BasePay                         95576.0
OvertimePay                         0.0
OtherPay                          180.0
Benefits                            NaN
TotalPay                        95756.0
TotalPayBenefits                95756.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10239, dtype: object)
(10240, Id                                       10241
EmployeeName                   FEDERICO MILLER
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                            7145.39
OtherPay                               6550.55
Benefits                                   NaN
TotalPay                              95751.94
TotalPayBenefits                      95751.94
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10240, dtype: object)
(10241, Id                             10242
EmployeeName          AKLILU TEFFERA
JobTitle            TRANSIT OPERATOR
BasePay                     67296.18
OvertimePay                 21343.49
OtherPay                     7103.56
Benefits                         NaN
TotalPay                    95743.23
TotalPayBenefits            95743.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10241, dtype: object)
(10242, Id                                   10243
EmployeeName            NICHOLAS ALEXANDER
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83590.63
OvertimePay                        4122.77
OtherPay                           8028.46
Benefits                               NaN
TotalPay                          95741.86
TotalPayBenefits                  95741.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10242, dtype: object)
(10243, Id                                10244
EmployeeName             MARY ANN VIRAY
JobTitle            PHARMACY TECHNICIAN
BasePay                        70558.95
OvertimePay                    18416.78
OtherPay                         6763.8
Benefits                            NaN
TotalPay                       95739.53
TotalPayBenefits               95739.53
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10243, dtype: object)
(10244, Id                               10245
EmployeeName                FELIX TONG
JobTitle            ASSOCIATE ENGINEER
BasePay                       95369.02
OvertimePay                        0.0
OtherPay                        369.79
Benefits                           NaN
TotalPay                      95738.81
TotalPayBenefits              95738.81
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10244, dtype: object)
(10245, Id                                10246
EmployeeName              ANDREA PALMER
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.01
OvertimePay                      137.85
OtherPay                            0.0
Benefits                            NaN
TotalPay                       95713.86
TotalPayBenefits               95713.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10245, dtype: object)
(10246, Id                                                 10247
EmployeeName                            ELIZABETH HIRSCH
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                         95029.29
OvertimePay                                          0.0
OtherPay                                          680.17
Benefits                                             NaN
TotalPay                                        95709.46
TotalPayBenefits                                95709.46
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 10246, dtype: object)
(10247, Id                           10248
EmployeeName        RICHARD AGTUAL
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                1718.47
OtherPay                   7148.13
Benefits                       NaN
TotalPay                  95706.61
TotalPayBenefits          95706.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10247, dtype: object)
(10248, Id                           10249
EmployeeName           WILTON WONG
JobTitle            DEPUTY SHERIFF
BasePay                   86506.03
OvertimePay                2459.59
OtherPay                   6728.61
Benefits                       NaN
TotalPay                  95694.23
TotalPayBenefits          95694.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10248, dtype: object)
(10249, Id                                       10250
EmployeeName                    EDWIN CALDWELL
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83883.68
OvertimePay                            7921.25
OtherPay                               3888.37
Benefits                                   NaN
TotalPay                               95693.3
TotalPayBenefits                       95693.3
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10249, dtype: object)
(10250, Id                                      10251
EmployeeName                JENNIFER RUGGIERO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                               95454.9
OvertimePay                               0.0
OtherPay                               238.09
Benefits                                  NaN
TotalPay                             95692.99
TotalPayBenefits                     95692.99
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10250, dtype: object)
(10251, Id                             10252
EmployeeName         MARIA PEREGRINA
JobTitle            POLICE OFFICER I
BasePay                      85499.2
OvertimePay                   6367.1
OtherPay                     3818.38
Benefits                         NaN
TotalPay                    95684.68
TotalPayBenefits            95684.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10251, dtype: object)
(10252, Id                                          10253
EmployeeName                      NICHOLAS KINSEY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  94877.41
OvertimePay                                   0.0
OtherPay                                   805.59
Benefits                                      NaN
TotalPay                                  95683.0
TotalPayBenefits                          95683.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10252, dtype: object)
(10253, Id                                    10254
EmployeeName                    ROBERT WONG
JobTitle            IS ENGINEER - ASSISTANT
BasePay                            95666.61
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           95666.61
TotalPayBenefits                   95666.61
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10253, dtype: object)
(10254, Id                           10255
EmployeeName        JEFFREY MILLER
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                5315.31
OtherPay                   3510.83
Benefits                       NaN
TotalPay                  95666.14
TotalPayBenefits          95666.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10254, dtype: object)
(10255, Id                              10256
EmployeeName        VANESSIE MATTISON
JobTitle               DEPUTY SHERIFF
BasePay                      77290.53
OvertimePay                   8559.98
OtherPay                      9804.78
Benefits                          NaN
TotalPay                     95655.29
TotalPayBenefits             95655.29
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10255, dtype: object)
(10256, Id                             10257
EmployeeName            MARK COLEMAN
JobTitle            SECURITY ANALYST
BasePay                      95029.2
OvertimePay                      0.0
OtherPay                       624.0
Benefits                         NaN
TotalPay                     95653.2
TotalPayBenefits             95653.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10256, dtype: object)
(10257, Id                                10258
EmployeeName             PETER CHORNEAU
JobTitle            MAINTENANCE PLANNER
BasePay                         95576.0
OvertimePay                       68.92
OtherPay                            0.0
Benefits                            NaN
TotalPay                       95644.92
TotalPayBenefits               95644.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10257, dtype: object)
(10258, Id                                10259
EmployeeName                 NICK AGEEV
JobTitle            MAINTENANCE PLANNER
BasePay                         95635.4
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        95635.4
TotalPayBenefits                95635.4
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10258, dtype: object)
(10259, Id                             10260
EmployeeName             CAROL RANEY
JobTitle            REGISTERED NURSE
BasePay                     90527.38
OvertimePay                  2271.06
OtherPay                      2820.2
Benefits                         NaN
TotalPay                    95618.64
TotalPayBenefits            95618.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10259, dtype: object)
(10260, Id                           10261
EmployeeName        JUNE WEINTRAUB
JobTitle                 MANAGER I
BasePay                   95617.37
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  95617.37
TotalPayBenefits          95617.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10260, dtype: object)
(10261, Id                             10262
EmployeeName        CARLA GREENBLATT
JobTitle            REGISTERED NURSE
BasePay                     86157.48
OvertimePay                  5029.44
OtherPay                     4423.89
Benefits                         NaN
TotalPay                    95610.81
TotalPayBenefits            95610.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10261, dtype: object)
(10262, Id                                            10263
EmployeeName                             KAREN FRYE
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                    92318.47
OvertimePay                                     0.0
OtherPay                                    3276.62
Benefits                                        NaN
TotalPay                                   95595.09
TotalPayBenefits                           95595.09
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10262, dtype: object)
(10263, Id                                 10264
EmployeeName                ANNE TREVINO
JobTitle            PHYSICIAN SPECIALIST
BasePay                         95595.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95595.01
TotalPayBenefits                95595.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10263, dtype: object)
(10264, Id                               10265
EmployeeName           ELIZABETH EAGON
JobTitle            UTILITY SPECIALIST
BasePay                       93159.95
OvertimePay                        0.0
OtherPay                       2432.17
Benefits                           NaN
TotalPay                      95592.12
TotalPayBenefits              95592.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10264, dtype: object)
(10265, Id                             10266
EmployeeName        HECTOR RODRIGUEZ
JobTitle                TRUCK DRIVER
BasePay                      72594.6
OvertimePay                 22962.48
OtherPay                        34.0
Benefits                         NaN
TotalPay                    95591.08
TotalPayBenefits            95591.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10265, dtype: object)
(10266, Id                                   10267
EmployeeName                   GLEN HARVEY
JobTitle            ELECTRICAL LINE HELPER
BasePay                           73541.59
OvertimePay                       16579.78
OtherPay                           5467.91
Benefits                               NaN
TotalPay                          95589.28
TotalPayBenefits                  95589.28
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10266, dtype: object)
(10267, Id                                              10268
EmployeeName                       ERNESTO MANINGDING
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79383.68
OvertimePay                                   2152.85
OtherPay                                     14046.53
Benefits                                          NaN
TotalPay                                     95583.06
TotalPayBenefits                             95583.06
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10267, dtype: object)
(10268, Id                             10269
EmployeeName           SEAMUS HODGIN
JobTitle            POLICE OFFICER I
BasePay                     93026.73
OvertimePay                   988.01
OtherPay                     1565.74
Benefits                         NaN
TotalPay                    95580.48
TotalPayBenefits            95580.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10268, dtype: object)
(10269, Id                                 10270
EmployeeName               DAVID MORALES
JobTitle            IS ENGINEER - SENIOR
BasePay                         95578.04
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95578.04
TotalPayBenefits                95578.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10269, dtype: object)
(10270, Id                                          10271
EmployeeName                           DOROTHY LI
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   95577.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  95577.4
TotalPayBenefits                          95577.4
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10270, dtype: object)
(10271, Id                                           10272
EmployeeName                 JESSICA MATEU-NEWSOME
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.64
OvertimePay                                    0.0
OtherPay                                    1280.0
Benefits                                       NaN
TotalPay                                  95576.64
TotalPayBenefits                          95576.64
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10271, dtype: object)
(10272, Id                                10273
EmployeeName               MICHAEL FONG
JobTitle            MAINTENANCE PLANNER
BasePay                        95576.03
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       95576.03
TotalPayBenefits               95576.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10272, dtype: object)
(10273, Id                                10274
EmployeeName          GUILLERMO LEON JR
JobTitle            MAINTENANCE PLANNER
BasePay                         95576.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        95576.0
TotalPayBenefits                95576.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10273, dtype: object)
(10274, Id                               10275
EmployeeName            NANCY AU YEUNG
JobTitle            ASSOCIATE ENGINEER
BasePay                       93496.01
OvertimePay                        0.0
OtherPay                       2076.42
Benefits                           NaN
TotalPay                      95572.43
TotalPayBenefits              95572.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10274, dtype: object)
(10275, Id                                            10276
EmployeeName                        ALFRED FLECK JR
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    75210.88
OvertimePay                                16419.28
OtherPay                                    3940.66
Benefits                                        NaN
TotalPay                                   95570.82
TotalPayBenefits                           95570.82
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10275, dtype: object)
(10276, Id                                     10277
EmployeeName                  MELISSA TUCKER
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.07
OvertimePay                              0.0
OtherPay                               364.8
Benefits                                 NaN
TotalPay                            95567.87
TotalPayBenefits                    95567.87
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10276, dtype: object)
(10277, Id                                            10278
EmployeeName                      JACQUELINE HASLAM
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                     95566.8
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                    95566.8
TotalPayBenefits                            95566.8
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10277, dtype: object)
(10278, Id                                      10279
EmployeeName                       GRACE CHAU
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              95566.09
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95566.09
TotalPayBenefits                     95566.09
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10278, dtype: object)
(10279, Id                                   10280
EmployeeName                  KAREN HAMMEL
JobTitle            OCCUPATIONAL THERAPIST
BasePay                            95565.4
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                           95565.4
TotalPayBenefits                   95565.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10279, dtype: object)
(10280, Id                                   10281
EmployeeName                   SUSANNE LOW
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90663.76
OvertimePay                        3066.07
OtherPay                            1823.4
Benefits                               NaN
TotalPay                          95553.23
TotalPayBenefits                  95553.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10280, dtype: object)
(10281, Id                                             10282
EmployeeName                          CYNTHIA SCULLY
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      95544.6
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                     95544.6
TotalPayBenefits                             95544.6
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10281, dtype: object)
(10282, Id                            10283
EmployeeName        MICHAEL BRENNAN
JobTitle                STEAMFITTER
BasePay                    90825.06
OvertimePay                     0.0
OtherPay                    4714.74
Benefits                        NaN
TotalPay                    95539.8
TotalPayBenefits            95539.8
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10282, dtype: object)
(10283, Id                                          10284
EmployeeName                          BRIAN HORNE
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90476.23
OvertimePay                               3880.06
OtherPay                                  1176.88
Benefits                                      NaN
TotalPay                                 95533.17
TotalPayBenefits                         95533.17
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10283, dtype: object)
(10284, Id                             10285
EmployeeName              JOHN VIRAY
JobTitle            REGISTERED NURSE
BasePay                     85421.22
OvertimePay                  6217.56
OtherPay                     3890.32
Benefits                         NaN
TotalPay                     95529.1
TotalPayBenefits             95529.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10284, dtype: object)
(10285, Id                             10286
EmployeeName         PHILLIP HAYMOND
JobTitle            POLICE OFFICER I
BasePay                     85626.07
OvertimePay                  2192.43
OtherPay                     7710.32
Benefits                         NaN
TotalPay                    95528.82
TotalPayBenefits            95528.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10285, dtype: object)
(10286, Id                                            10287
EmployeeName                           NELSON AYALA
JobTitle            ASSISTANT MATERIALS COORDINATOR
BasePay                                    90328.84
OvertimePay                                 4869.87
OtherPay                                     328.91
Benefits                                        NaN
TotalPay                                   95527.62
TotalPayBenefits                           95527.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10286, dtype: object)
(10287, Id                                10288
EmployeeName             MICHAEL CHENEY
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        63806.62
OvertimePay                     13067.7
OtherPay                       18646.49
Benefits                            NaN
TotalPay                       95520.81
TotalPayBenefits               95520.81
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10287, dtype: object)
(10288, Id                                              10289
EmployeeName                         BEATRICE HOLLAND
JobTitle            PARKING ENFORCEMENT ADMINISTRATOR
BasePay                                      85082.86
OvertimePay                                   5317.11
OtherPay                                      5119.42
Benefits                                          NaN
TotalPay                                     95519.39
TotalPayBenefits                             95519.39
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10288, dtype: object)
(10289, Id                                      10290
EmployeeName                   ROBERTO THUMAS
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              59275.06
OvertimePay                          25043.14
OtherPay                             11198.16
Benefits                                  NaN
TotalPay                             95516.36
TotalPayBenefits                     95516.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10289, dtype: object)
(10290, Id                                             10291
EmployeeName                             ALLAN LUCAS
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     95512.53
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    95512.53
TotalPayBenefits                            95512.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10290, dtype: object)
(10291, Id                                              10292
EmployeeName                       BERDJ NIGOGHOSSIAN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      88726.64
OvertimePay                                    123.76
OtherPay                                      6654.62
Benefits                                          NaN
TotalPay                                     95505.02
TotalPayBenefits                             95505.02
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10291, dtype: object)
(10292, Id                                10293
EmployeeName            DAVID SMALLWOOD
JobTitle            STATIONARY ENGINEER
BasePay                        71714.26
OvertimePay                     8992.15
OtherPay                       14789.97
Benefits                            NaN
TotalPay                       95496.38
TotalPayBenefits               95496.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10292, dtype: object)
(10293, Id                             10294
EmployeeName         LOUIE BENAVIDEZ
JobTitle            POLICE OFFICER I
BasePay                     85238.43
OvertimePay                  4803.47
OtherPay                     5435.53
Benefits                         NaN
TotalPay                    95477.43
TotalPayBenefits            95477.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10293, dtype: object)
(10294, Id                                       10295
EmployeeName                 RONILDA FRANCISCO
JobTitle            DIAGNOSTIC IMAGING TECH IV
BasePay                                95275.6
OvertimePay                                0.0
OtherPay                                 200.0
Benefits                                   NaN
TotalPay                               95475.6
TotalPayBenefits                       95475.6
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10294, dtype: object)
(10295, Id                           10296
EmployeeName           CARL MORRIS
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                7709.77
OtherPay                    918.41
Benefits                       NaN
TotalPay                  95468.19
TotalPayBenefits          95468.19
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10295, dtype: object)
(10296, Id                               10297
EmployeeName                JASON CHIN
JobTitle            ASSOCIATE ENGINEER
BasePay                       92020.01
OvertimePay                        0.0
OtherPay                       3433.87
Benefits                           NaN
TotalPay                      95453.88
TotalPayBenefits              95453.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10296, dtype: object)
(10297, Id                               10298
EmployeeName             GEORGE TAYLOR
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                     4604.2
OtherPay                        2785.0
Benefits                           NaN
TotalPay                       95451.2
TotalPayBenefits               95451.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10297, dtype: object)
(10298, Id                               10299
EmployeeName              RICHARD RHEE
JobTitle            ASSOCIATE ENGINEER
BasePay                       95429.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95429.02
TotalPayBenefits              95429.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10298, dtype: object)
(10299, Id                             10300
EmployeeName         DECLAN FLANNERY
JobTitle            POLICE OFFICER I
BasePay                     85297.81
OvertimePay                  3568.89
OtherPay                     6559.88
Benefits                         NaN
TotalPay                    95426.58
TotalPayBenefits            95426.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10299, dtype: object)
(10300, Id                                     10301
EmployeeName                 ROBERT STAFFORD
JobTitle            TREE TOPPER SUPERVISOR I
BasePay                             81170.41
OvertimePay                          7561.84
OtherPay                             6689.73
Benefits                                 NaN
TotalPay                            95421.98
TotalPayBenefits                    95421.98
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10300, dtype: object)
(10301, Id                                       10302
EmployeeName                    RENEE WILLIAMS
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                           10682.97
OtherPay                                 824.5
Benefits                                   NaN
TotalPay                              95410.05
TotalPayBenefits                      95410.05
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10301, dtype: object)
(10302, Id                             10303
EmployeeName           ERRIS EDGERLY
JobTitle            TRANSIT OPERATOR
BasePay                      66603.9
OvertimePay                 28763.91
OtherPay                       37.05
Benefits                         NaN
TotalPay                    95404.86
TotalPayBenefits            95404.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10302, dtype: object)
(10303, Id                                   10304
EmployeeName                 MICHAEL HORTA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79869.79
OvertimePay                        7148.58
OtherPay                           8385.18
Benefits                               NaN
TotalPay                          95403.55
TotalPayBenefits                  95403.55
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10303, dtype: object)
(10304, Id                                               10305
EmployeeName                             ALFRED NAIDAS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.41
OvertimePay                                   10608.37
OtherPay                                       7209.32
Benefits                                           NaN
TotalPay                                       95398.1
TotalPayBenefits                               95398.1
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10304, dtype: object)
(10305, Id                                   10306
EmployeeName                  HOWARD KWONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        1237.31
OtherPay                           3496.07
Benefits                               NaN
TotalPay                          95397.38
TotalPayBenefits                  95397.38
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10305, dtype: object)
(10306, Id                                              10307
EmployeeName                             RICHARD MUFF
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       80043.3
OvertimePay                                   7415.77
OtherPay                                      7936.26
Benefits                                          NaN
TotalPay                                     95395.33
TotalPayBenefits                             95395.33
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10306, dtype: object)
(10307, Id                                     10308
EmployeeName                    SUZETTE LOVE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95385.69
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95385.69
TotalPayBenefits                    95385.69
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10307, dtype: object)
(10308, Id                                              10309
EmployeeName                               ROGER LINN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   7659.57
OtherPay                                      7904.61
Benefits                                          NaN
TotalPay                                     95384.18
TotalPayBenefits                             95384.18
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10308, dtype: object)
(10309, Id                                                10310
EmployeeName                               VICTORIA LAU
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                        94503.05
OvertimePay                                         0.0
OtherPay                                         878.24
Benefits                                            NaN
TotalPay                                       95381.29
TotalPayBenefits                               95381.29
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10309, dtype: object)
(10310, Id                             10311
EmployeeName                BILL LAU
JobTitle            TRANSIT OPERATOR
BasePay                     64884.66
OvertimePay                 29277.96
OtherPay                      1215.4
Benefits                         NaN
TotalPay                    95378.02
TotalPayBenefits            95378.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10310, dtype: object)
(10311, Id                                              10312
EmployeeName                              STEVE SABIN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   7746.84
OtherPay                                      7807.19
Benefits                                          NaN
TotalPay                                     95374.04
TotalPayBenefits                             95374.04
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10311, dtype: object)
(10312, Id                               10313
EmployeeName               PETER LUONG
JobTitle            ASSOCIATE ENGINEER
BasePay                       94267.11
OvertimePay                        0.0
OtherPay                       1102.45
Benefits                           NaN
TotalPay                      95369.56
TotalPayBenefits              95369.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10312, dtype: object)
(10313, Id                                 10314
EmployeeName             WILLIAM SPITZIG
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                          165.06
Benefits                             NaN
TotalPay                        95368.07
TotalPayBenefits                95368.07
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10313, dtype: object)
(10314, Id                           10315
EmployeeName        MARKO VILLARES
JobTitle                 MANAGER I
BasePay                   83188.41
OvertimePay                    0.0
OtherPay                  12179.23
Benefits                       NaN
TotalPay                  95367.64
TotalPayBenefits          95367.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10314, dtype: object)
(10315, Id                          10316
EmployeeName         ALAN MAGRINI
JobTitle              PIPE WELDER
BasePay                   90098.4
OvertimePay               3235.61
OtherPay                   2030.0
Benefits                      NaN
TotalPay                 95364.01
TotalPayBenefits         95364.01
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10315, dtype: object)
(10316, Id                                           10317
EmployeeName                   MARIO NAVARRO-SUNOL
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.01
OvertimePay                                    0.0
OtherPay                                    1040.0
Benefits                                       NaN
TotalPay                                  95361.01
TotalPayBenefits                          95361.01
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10316, dtype: object)
(10317, Id                                              10318
EmployeeName                         RODRIGO VIZCARRA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79870.76
OvertimePay                                   7930.65
OtherPay                                      7555.19
Benefits                                          NaN
TotalPay                                      95356.6
TotalPayBenefits                              95356.6
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10317, dtype: object)
(10318, Id                            10319
EmployeeName        MATTHEW RIVETTE
JobTitle             DEPUTY SHERIFF
BasePay                     72812.0
OvertimePay                  4706.3
OtherPay                   17836.64
Benefits                        NaN
TotalPay                   95354.94
TotalPayBenefits           95354.94
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10318, dtype: object)
(10319, Id                             10320
EmployeeName         DONALD MARSHALL
JobTitle            TRANSIT OPERATOR
BasePay                     60718.79
OvertimePay                 31724.56
OtherPay                      2907.8
Benefits                         NaN
TotalPay                    95351.15
TotalPayBenefits            95351.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10319, dtype: object)
(10320, Id                                                    10321
EmployeeName                                    JAMAL NUMAN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            73921.34
OvertimePay                                        14456.95
OtherPay                                            6970.73
Benefits                                                NaN
TotalPay                                           95349.02
TotalPayBenefits                                   95349.02
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10320, dtype: object)
(10321, Id                               10322
EmployeeName                PAMELA LOW
JobTitle            BUILDING INSPECTOR
BasePay                       95345.73
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95345.73
TotalPayBenefits              95345.73
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10321, dtype: object)
(10322, Id                                               10323
EmployeeName                               STEPHEN LEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    17207.9
OtherPay                                         545.1
Benefits                                           NaN
TotalPay                                       95333.4
TotalPayBenefits                               95333.4
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10322, dtype: object)
(10323, Id                                               10324
EmployeeName                           MITCHELL OLIVER
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   16354.59
OtherPay                                        1398.1
Benefits                                           NaN
TotalPay                                      95333.09
TotalPayBenefits                              95333.09
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10323, dtype: object)
(10324, Id                                             10325
EmployeeName                        CHRISTOPHER KERN
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                      94758.0
OvertimePay                                      0.0
OtherPay                                      550.25
Benefits                                         NaN
TotalPay                                    95308.25
TotalPayBenefits                            95308.25
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10324, dtype: object)
(10325, Id                               10326
EmployeeName               DENNIS KWAN
JobTitle            SHEET METAL WORKER
BasePay                       91014.49
OvertimePay                    2123.31
OtherPay                       2162.39
Benefits                           NaN
TotalPay                      95300.19
TotalPayBenefits              95300.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10325, dtype: object)
(10326, Id                             10327
EmployeeName         JOSEFINA TOLOSA
JobTitle            REGISTERED NURSE
BasePay                     90155.49
OvertimePay                      0.0
OtherPay                     5143.26
Benefits                         NaN
TotalPay                    95298.75
TotalPayBenefits            95298.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10326, dtype: object)
(10327, Id                                              10328
EmployeeName                         JONATHAN STAPLES
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      72085.53
OvertimePay                                  15847.48
OtherPay                                      7364.82
Benefits                                          NaN
TotalPay                                     95297.83
TotalPayBenefits                             95297.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10327, dtype: object)
(10328, Id                                                     10329
EmployeeName                                 ANDREW PHILLIPS
JobTitle            TRANSIT CAR CLEANER ASSISTANT SUPERVISOR
BasePay                                             60750.22
OvertimePay                                         25860.87
OtherPay                                             8683.25
Benefits                                                 NaN
TotalPay                                            95294.34
TotalPayBenefits                                    95294.34
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10328, dtype: object)
(10329, Id                             10330
EmployeeName          DINA PELVITSKI
JobTitle            REGISTERED NURSE
BasePay                     90775.18
OvertimePay                  2005.65
OtherPay                     2509.45
Benefits                         NaN
TotalPay                    95290.28
TotalPayBenefits            95290.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10329, dtype: object)
(10330, Id                                               10331
EmployeeName                           LINDA BERNSTEIN
JobTitle            WORKER'S COMPENSATION SUPERVISOR I
BasePay                                       95284.63
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      95284.63
TotalPayBenefits                              95284.63
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10330, dtype: object)
(10331, Id                                                              10332
EmployeeName                                       CHRISTINE MAGOFFIN
JobTitle            ASSISTANT TO THE DIRECTOR, PUBLIC AFFAIRS     ...
BasePay                                                      91398.95
OvertimePay                                                       0.0
OtherPay                                                       3884.4
Benefits                                                          NaN
TotalPay                                                     95283.35
TotalPayBenefits                                             95283.35
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 10331, dtype: object)
(10332, Id                                         10333
EmployeeName                  JUVENAL VILLARREAL
JobTitle            CEMENT FINISHER SUPERVISOR I
BasePay                                 88535.01
OvertimePay                              6099.82
OtherPay                                  647.85
Benefits                                     NaN
TotalPay                                95282.68
TotalPayBenefits                        95282.68
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10332, dtype: object)
(10333, Id                           10334
EmployeeName          JUAN RAMIREZ
JobTitle            DEPUTY SHERIFF
BasePay                   74125.22
OvertimePay               21144.59
OtherPay                       0.0
Benefits                       NaN
TotalPay                  95269.81
TotalPayBenefits          95269.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10333, dtype: object)
(10334, Id                                                     10335
EmployeeName                                        TOM WURM
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             85933.28
OvertimePay                                              0.0
OtherPay                                             9332.88
Benefits                                                 NaN
TotalPay                                            95266.16
TotalPayBenefits                                    95266.16
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10334, dtype: object)
(10335, Id                                                      10336
EmployeeName                                CHRISTOPHER ROACH
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.09
OvertimePay                                            337.22
OtherPay                                               1090.0
Benefits                                                  NaN
TotalPay                                             95264.31
TotalPayBenefits                                     95264.31
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10335, dtype: object)
(10336, Id                                 10337
EmployeeName                 XIAOXIA ZHU
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.02
OvertimePay                          0.0
OtherPay                           44.02
Benefits                             NaN
TotalPay                        95247.04
TotalPayBenefits                95247.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10336, dtype: object)
(10337, Id                                      10338
EmployeeName                     ILANA JACOBS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95242.98
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95242.98
TotalPayBenefits                     95242.98
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10337, dtype: object)
(10338, Id                                      10339
EmployeeName               BRIGITTA VAN EWIJK
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              63969.85
OvertimePay                          25141.18
OtherPay                              6130.37
Benefits                                  NaN
TotalPay                              95241.4
TotalPayBenefits                      95241.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10338, dtype: object)
(10339, Id                                 10340
EmployeeName               WILLIAM SZETO
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          72816.1
OvertimePay                     18812.04
OtherPay                         3608.91
Benefits                             NaN
TotalPay                        95237.05
TotalPayBenefits                95237.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10339, dtype: object)
(10340, Id                                                   10341
EmployeeName                                  JUDITH DISPO
JobTitle            HOSPITAL ELIGIBILITY WORKER SUPERVISOR
BasePay                                           80666.61
OvertimePay                                       14443.45
OtherPay                                             125.0
Benefits                                               NaN
TotalPay                                          95235.06
TotalPayBenefits                                  95235.06
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 10340, dtype: object)
(10341, Id                              10342
EmployeeName        RICARDO HERNANDEZ
JobTitle               DEPUTY SHERIFF
BasePay                      86506.01
OvertimePay                   4486.65
OtherPay                      4235.13
Benefits                          NaN
TotalPay                     95227.79
TotalPayBenefits             95227.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10341, dtype: object)
(10342, Id                                 10343
EmployeeName           RICHARD ALCANTARA
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.02
OvertimePay                          0.0
OtherPay                            24.0
Benefits                             NaN
TotalPay                        95227.02
TotalPayBenefits                95227.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10342, dtype: object)
(10343, Id                               10344
EmployeeName        KRISTIAN KABASARES
JobTitle                DEPUTY SHERIFF
BasePay                        86506.0
OvertimePay                    1889.18
OtherPay                       6830.34
Benefits                           NaN
TotalPay                      95225.52
TotalPayBenefits              95225.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10343, dtype: object)
(10344, Id                                      10345
EmployeeName                 MARISA RODRIGUEZ
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95223.98
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95223.98
TotalPayBenefits                     95223.98
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10344, dtype: object)
(10345, Id                                     10346
EmployeeName                     LEDA ROZIER
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.12
OvertimePay                              0.0
OtherPay                                 4.0
Benefits                                 NaN
TotalPay                            95207.12
TotalPayBenefits                    95207.12
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10345, dtype: object)
(10346, Id                                     10347
EmployeeName                     DENA SILMON
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 4.0
Benefits                                 NaN
TotalPay                             95207.0
TotalPayBenefits                     95207.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10346, dtype: object)
(10347, Id                                     10348
EmployeeName                     CRYSTAL LUI
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.4
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.4
TotalPayBenefits                     95203.4
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10347, dtype: object)
(10348, Id                                     10349
EmployeeName                 GILDA CASSANEGO
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.39
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.39
TotalPayBenefits                    95203.39
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10348, dtype: object)
(10349, Id                                  10350
EmployeeName        LULU MABELITINI-HWANG
JobTitle             IS ADMINISTRATOR III
BasePay                           95203.2
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          95203.2
TotalPayBenefits                  95203.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10349, dtype: object)
(10350, Id                                 10351
EmployeeName                 RICCI CHEEK
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.16
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.16
TotalPayBenefits                95203.16
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10350, dtype: object)
(10351, Id                                     10352
EmployeeName                    LILLIAN CHOW
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.14
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.14
TotalPayBenefits                    95203.14
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10351, dtype: object)
(10352, Id                                     10353
EmployeeName                  KATHERINE DERE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.08
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.08
TotalPayBenefits                    95203.08
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10352, dtype: object)
(10353, Id                                     10354
EmployeeName                     GINA GARCIA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.08
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.08
TotalPayBenefits                    95203.08
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10353, dtype: object)
(10354, Id                                 10355
EmployeeName          EMILIANA DELA CRUZ
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.08
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.08
TotalPayBenefits                95203.08
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10354, dtype: object)
(10355, Id                                 10356
EmployeeName               LESLIE DALTON
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.07
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.07
TotalPayBenefits                95203.07
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10355, dtype: object)
(10356, Id                                 10357
EmployeeName              ERASMO VAZQUEZ
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.07
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.07
TotalPayBenefits                95203.07
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10356, dtype: object)
(10357, Id                                     10358
EmployeeName               ANNE MARIE MONROE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.06
TotalPayBenefits                    95203.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10357, dtype: object)
(10358, Id                                     10359
EmployeeName             TAMARA LOWERY-JONES
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.06
TotalPayBenefits                    95203.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10358, dtype: object)
(10359, Id                                     10360
EmployeeName                 GUILLERMO TAPIA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.06
TotalPayBenefits                    95203.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10359, dtype: object)
(10360, Id                                 10361
EmployeeName                  JIMMY CHAN
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.05
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.05
TotalPayBenefits                95203.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10360, dtype: object)
(10361, Id                                     10362
EmployeeName                  MARITES BOBILA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.05
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.05
TotalPayBenefits                    95203.05
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10361, dtype: object)
(10362, Id                                     10363
EmployeeName                  ANGELITA IGNAO
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.05
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.05
TotalPayBenefits                    95203.05
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10362, dtype: object)
(10363, Id                                     10364
EmployeeName                 ROSIE ESPINUEVA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10363, dtype: object)
(10364, Id                                     10365
EmployeeName                    CAROL ROBERT
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10364, dtype: object)
(10365, Id                                     10366
EmployeeName              LAWRENCE DOMINGUEZ
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10365, dtype: object)
(10366, Id                                     10367
EmployeeName                 TITUS WHITEHEAD
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10366, dtype: object)
(10367, Id                                     10368
EmployeeName                    THOMAS BURNS
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10367, dtype: object)
(10368, Id                                     10369
EmployeeName                   AMELIA AQUINO
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.04
TotalPayBenefits                    95203.04
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10368, dtype: object)
(10369, Id                                     10370
EmployeeName                  SING SING WONG
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10369, dtype: object)
(10370, Id                                     10371
EmployeeName                  GERALD REDMOND
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10370, dtype: object)
(10371, Id                                     10372
EmployeeName                 MARIO SANTACRUZ
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10371, dtype: object)
(10372, Id                                     10373
EmployeeName                RICHARD MARSHALL
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10372, dtype: object)
(10373, Id                                     10374
EmployeeName                   JILL OBROCHTA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10373, dtype: object)
(10374, Id                                     10375
EmployeeName                MELISSA CAYABYAB
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10374, dtype: object)
(10375, Id                                     10376
EmployeeName                   LILLIAN LOUIE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10375, dtype: object)
(10376, Id                                     10377
EmployeeName                  KRISTIN KOGURE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10376, dtype: object)
(10377, Id                                 10378
EmployeeName                SECOND TSANG
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.03
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.03
TotalPayBenefits                95203.03
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10377, dtype: object)
(10378, Id                                     10379
EmployeeName                    LUZ MORGANTI
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.03
TotalPayBenefits                    95203.03
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10378, dtype: object)
(10379, Id                                     10380
EmployeeName                    SUZANNE WONG
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.02
TotalPayBenefits                    95203.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10379, dtype: object)
(10380, Id                                     10381
EmployeeName                  VERONICA DAVIS
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.02
TotalPayBenefits                    95203.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10380, dtype: object)
(10381, Id                                     10382
EmployeeName                   GEORGE SUNCIN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.02
TotalPayBenefits                    95203.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10381, dtype: object)
(10382, Id                                     10383
EmployeeName                    ANNA BIASBAS
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.02
TotalPayBenefits                    95203.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10382, dtype: object)
(10383, Id                                     10384
EmployeeName                    JAMES PEAVEY
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.02
TotalPayBenefits                    95203.02
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10383, dtype: object)
(10384, Id                                 10385
EmployeeName                ENOCH LUDLOW
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.02
TotalPayBenefits                95203.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10384, dtype: object)
(10385, Id                                 10386
EmployeeName                 LUZ QUIOCHO
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.02
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.02
TotalPayBenefits                95203.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10385, dtype: object)
(10386, Id                                10387
EmployeeName                 JASON HILL
JobTitle            IS TRAINER - SENIOR
BasePay                        95203.01
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       95203.01
TotalPayBenefits               95203.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10386, dtype: object)
(10387, Id                                 10388
EmployeeName            JOSEPH RODRIGUEZ
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10387, dtype: object)
(10388, Id                                 10389
EmployeeName                 JAMES LEWIS
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10388, dtype: object)
(10389, Id                                 10390
EmployeeName             CHRISTOPHER KIM
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10389, dtype: object)
(10390, Id                                     10391
EmployeeName                 DIANE ZAGORITES
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10390, dtype: object)
(10391, Id                                     10392
EmployeeName                 PARVEEN BOPARAI
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10391, dtype: object)
(10392, Id                                 10393
EmployeeName              MARC STEVENSON
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10392, dtype: object)
(10393, Id                                     10394
EmployeeName                  JOSEPH CRIMOLI
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10393, dtype: object)
(10394, Id                                     10395
EmployeeName                     SARU COWNAN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10394, dtype: object)
(10395, Id                                     10396
EmployeeName                  CYNTHIA HAMADA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10395, dtype: object)
(10396, Id                                 10397
EmployeeName             VICTOR GONZALEZ
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10396, dtype: object)
(10397, Id                                     10398
EmployeeName                    THU-YEN PHAN
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10397, dtype: object)
(10398, Id                                     10399
EmployeeName               PRINCESS CAMPBELL
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10398, dtype: object)
(10399, Id                                     10400
EmployeeName                      ANGELA SZU
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             95203.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            95203.01
TotalPayBenefits                    95203.01
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10399, dtype: object)
(10400, Id                                 10401
EmployeeName                 PHILLIP MAR
JobTitle            IS ADMINISTRATOR III
BasePay                         95203.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95203.01
TotalPayBenefits                95203.01
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10400, dtype: object)
(10401, Id                                     10402
EmployeeName                  MARTHA JOHNSON
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10401, dtype: object)
(10402, Id                                 10403
EmployeeName                  RENE MANZO
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10402, dtype: object)
(10403, Id                                 10404
EmployeeName                  PAULINE AW
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10403, dtype: object)
(10404, Id                                 10405
EmployeeName                 RICHARD BUI
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10404, dtype: object)
(10405, Id                                 10406
EmployeeName              EDWARD SANCHEZ
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10405, dtype: object)
(10406, Id                                 10407
EmployeeName                 XIHUI ZHANG
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10406, dtype: object)
(10407, Id                                 10408
EmployeeName           PATRICK ALIMORONG
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10407, dtype: object)
(10408, Id                                 10409
EmployeeName                 QUYNH PHUNG
JobTitle            IS ADMINISTRATOR III
BasePay                          95203.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         95203.0
TotalPayBenefits                 95203.0
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10408, dtype: object)
(10409, Id                                     10410
EmployeeName                   MYRNA BRIONES
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10409, dtype: object)
(10410, Id                                     10411
EmployeeName                   JAYE ERICKSON
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10410, dtype: object)
(10411, Id                                     10412
EmployeeName                SAMUEL KINGHORNE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10411, dtype: object)
(10412, Id                                     10413
EmployeeName              RICHARD HODGKINSON
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10412, dtype: object)
(10413, Id                                     10414
EmployeeName              DELJUANNA WILLIAMS
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95203.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95203.0
TotalPayBenefits                     95203.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10413, dtype: object)
(10414, Id                                     10415
EmployeeName                   LISA NAKAMURA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              95202.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             95202.9
TotalPayBenefits                     95202.9
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10414, dtype: object)
(10415, Id                                 10416
EmployeeName                  BO-MING NG
JobTitle            IS ADMINISTRATOR III
BasePay                         95202.82
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95202.82
TotalPayBenefits                95202.82
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10415, dtype: object)
(10416, Id                             10417
EmployeeName        ORLANDO MARTINEZ
JobTitle              DEPUTY SHERIFF
BasePay                     83998.96
OvertimePay                  5101.24
OtherPay                     6097.87
Benefits                         NaN
TotalPay                    95198.07
TotalPayBenefits            95198.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10416, dtype: object)
(10417, Id                           10418
EmployeeName             WENDY PUN
JobTitle            COURT REPORTER
BasePay                   81106.48
OvertimePay                    0.0
OtherPay                  14079.66
Benefits                       NaN
TotalPay                  95186.14
TotalPayBenefits          95186.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10417, dtype: object)
(10418, Id                             10419
EmployeeName         GUILLERMO RIVAS
JobTitle            TRANSIT OPERATOR
BasePay                     65810.11
OvertimePay                 27007.71
OtherPay                     2366.06
Benefits                         NaN
TotalPay                    95183.88
TotalPayBenefits            95183.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10418, dtype: object)
(10419, Id                                  10420
EmployeeName                   LEAH RAUCH
JobTitle            SENIOR MICROBIOLOGIST
BasePay                          95178.64
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         95178.64
TotalPayBenefits                 95178.64
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10419, dtype: object)
(10420, Id                               10421
EmployeeName               ERIK MORRIS
JobTitle            TRANSIT SUPERVISOR
BasePay                        67607.5
OvertimePay                   23754.71
OtherPay                       3813.83
Benefits                           NaN
TotalPay                      95176.04
TotalPayBenefits              95176.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10420, dtype: object)
(10421, Id                                                     10422
EmployeeName                                    ANA CASTILLO
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             80066.93
OvertimePay                                         12850.74
OtherPay                                             2237.91
Benefits                                                 NaN
TotalPay                                            95155.58
TotalPayBenefits                                    95155.58
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10421, dtype: object)
(10422, Id                             10423
EmployeeName                LOI TRAN
JobTitle            TRANSIT OPERATOR
BasePay                     64892.33
OvertimePay                 25884.08
OtherPay                     4373.79
Benefits                         NaN
TotalPay                     95150.2
TotalPayBenefits             95150.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10422, dtype: object)
(10423, Id                                 10424
EmployeeName                 KRISTI TUNG
JobTitle            IS ENGINEER - SENIOR
BasePay                         95146.63
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        95146.63
TotalPayBenefits                95146.63
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10423, dtype: object)
(10424, Id                           10425
EmployeeName         JEROME JAVIER
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                2257.63
OtherPay                   6044.78
Benefits                       NaN
TotalPay                  95142.41
TotalPayBenefits          95142.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10424, dtype: object)
(10425, Id                             10426
EmployeeName         JOHNNY MCDOWELL
JobTitle            TRANSIT OPERATOR
BasePay                     65189.32
OvertimePay                 29775.68
OtherPay                      176.17
Benefits                         NaN
TotalPay                    95141.17
TotalPayBenefits            95141.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10425, dtype: object)
(10426, Id                           10427
EmployeeName        JOSE DELATORRE
JobTitle            DEPUTY SHERIFF
BasePay                   82596.37
OvertimePay               12058.14
OtherPay                    484.74
Benefits                       NaN
TotalPay                  95139.25
TotalPayBenefits          95139.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10426, dtype: object)
(10427, Id                                               10428
EmployeeName                               JAMES ELKIN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77569.0
OvertimePay                                   12089.45
OtherPay                                       5457.99
Benefits                                           NaN
TotalPay                                      95116.44
TotalPayBenefits                              95116.44
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10427, dtype: object)
(10428, Id                                   10429
EmployeeName                  RICHARD KING
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.04
OvertimePay                        4445.96
OtherPay                               0.0
Benefits                               NaN
TotalPay                           95110.0
TotalPayBenefits                   95110.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10428, dtype: object)
(10429, Id                             10430
EmployeeName        GABRIEL CEBALLOS
JobTitle            TRANSIT OPERATOR
BasePay                     66938.94
OvertimePay                  24455.4
OtherPay                     3705.45
Benefits                         NaN
TotalPay                    95099.79
TotalPayBenefits            95099.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10429, dtype: object)
(10430, Id                               10431
EmployeeName                KATE TORAN
JobTitle            TRANSIT PLANNER IV
BasePay                       95035.03
OvertimePay                        0.0
OtherPay                          61.0
Benefits                           NaN
TotalPay                      95096.03
TotalPayBenefits              95096.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10430, dtype: object)
(10431, Id                          10432
EmployeeName         MEGHAN BROWN
JobTitle            SPECIAL NURSE
BasePay                  88166.48
OvertimePay                104.56
OtherPay                   6822.2
Benefits                      NaN
TotalPay                 95093.24
TotalPayBenefits         95093.24
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10431, dtype: object)
(10432, Id                           10433
EmployeeName         CECIEL YAMBAO
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                5691.98
OtherPay                   2553.38
Benefits                       NaN
TotalPay                  95085.37
TotalPayBenefits          95085.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10432, dtype: object)
(10433, Id                             10434
EmployeeName            FRANK PORCHE
JobTitle            TRANSIT OPERATOR
BasePay                     66361.56
OvertimePay                 23712.73
OtherPay                     5005.68
Benefits                         NaN
TotalPay                    95079.97
TotalPayBenefits            95079.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10433, dtype: object)
(10434, Id                                 10435
EmployeeName        JULIANA HENRY GARCIA
JobTitle                POLICE OFFICER I
BasePay                         85514.31
OvertimePay                      3498.44
OtherPay                         6065.43
Benefits                             NaN
TotalPay                        95078.18
TotalPayBenefits                95078.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10434, dtype: object)
(10435, Id                             10436
EmployeeName        WILFREDO PADAOAN
JobTitle            TRANSIT OPERATOR
BasePay                     66308.72
OvertimePay                 26304.38
OtherPay                     2465.01
Benefits                         NaN
TotalPay                    95078.11
TotalPayBenefits            95078.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10435, dtype: object)
(10436, Id                                 10437
EmployeeName                 JUAN GARCIA
JobTitle            PAINTER SUPERVISOR I
BasePay                         85633.56
OvertimePay                      8981.16
OtherPay                          462.76
Benefits                             NaN
TotalPay                        95077.48
TotalPayBenefits                95077.48
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10436, dtype: object)
(10437, Id                               10438
EmployeeName            SEANA MCDEVITT
JobTitle            SPEECH PATHOLOGIST
BasePay                       95076.05
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95076.05
TotalPayBenefits              95076.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10437, dtype: object)
(10438, Id                          10439
EmployeeName            JIMMY YAN
JobTitle              FIREFIGHTER
BasePay                  76324.55
OvertimePay               9509.65
OtherPay                  9239.25
Benefits                      NaN
TotalPay                 95073.45
TotalPayBenefits         95073.45
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10438, dtype: object)
(10439, Id                               10440
EmployeeName              SUNITA JONES
JobTitle            UTILITY SPECIALIST
BasePay                       95073.23
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95073.23
TotalPayBenefits              95073.23
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10439, dtype: object)
(10440, Id                           10441
EmployeeName           JASON HEARN
JobTitle            DEPUTY SHERIFF
BasePay                   78947.68
OvertimePay               10456.82
OtherPay                   5668.25
Benefits                       NaN
TotalPay                  95072.75
TotalPayBenefits          95072.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10440, dtype: object)
(10441, Id                                             10442
EmployeeName                            CHESTER HUIE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      95072.2
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                     95072.2
TotalPayBenefits                             95072.2
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10441, dtype: object)
(10442, Id                             10443
EmployeeName           CHARLES JONES
JobTitle            TRANSIT OPERATOR
BasePay                     64532.19
OvertimePay                 26502.55
OtherPay                     4036.74
Benefits                         NaN
TotalPay                    95071.48
TotalPayBenefits            95071.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10442, dtype: object)
(10443, Id                          10444
EmployeeName        LAURA ADLEMAN
JobTitle              PLANNER III
BasePay                  94985.91
OvertimePay                   0.0
OtherPay                    82.05
Benefits                      NaN
TotalPay                 95067.96
TotalPayBenefits         95067.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10443, dtype: object)
(10444, Id                                       10445
EmployeeName                       KATHRYN GUO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.64
OvertimePay                             8523.8
OtherPay                               2639.42
Benefits                                   NaN
TotalPay                              95065.86
TotalPayBenefits                      95065.86
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10444, dtype: object)
(10445, Id                             10446
EmployeeName            SHERMAN HOOL
JobTitle            REGISTERED NURSE
BasePay                     90117.91
OvertimePay                  2328.71
OtherPay                     2613.07
Benefits                         NaN
TotalPay                    95059.69
TotalPayBenefits            95059.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10445, dtype: object)
(10446, Id                              10447
EmployeeName            JUNE WILLIAMS
JobTitle            NURSING ASSISTANT
BasePay                      60184.16
OvertimePay                  29575.08
OtherPay                      5295.91
Benefits                          NaN
TotalPay                     95055.15
TotalPayBenefits             95055.15
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10446, dtype: object)
(10447, Id                                      10448
EmployeeName                   KEVIN MITCHELL
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95054.73
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95054.73
TotalPayBenefits                     95054.73
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10447, dtype: object)
(10448, Id                                      10449
EmployeeName                      SCOTT GRANT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95054.73
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95054.73
TotalPayBenefits                     95054.73
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10448, dtype: object)
(10449, Id                                      10450
EmployeeName                      AMY SHEARER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95042.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95042.87
TotalPayBenefits                     95042.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10449, dtype: object)
(10450, Id                           10451
EmployeeName        JACK PATTERSON
JobTitle               ELECTRICIAN
BasePay                   85717.23
OvertimePay                6004.41
OtherPay                   3319.47
Benefits                       NaN
TotalPay                  95041.11
TotalPayBenefits          95041.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10450, dtype: object)
(10451, Id                             10452
EmployeeName             JOE POLLARD
JobTitle            TRANSIT OPERATOR
BasePay                     57535.65
OvertimePay                 35003.26
OtherPay                     2501.07
Benefits                         NaN
TotalPay                    95039.98
TotalPayBenefits            95039.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10451, dtype: object)
(10452, Id                               10453
EmployeeName               EFREN PEREZ
JobTitle            SHEET METAL WORKER
BasePay                       90777.05
OvertimePay                     342.47
OtherPay                       3916.49
Benefits                           NaN
TotalPay                      95036.01
TotalPayBenefits              95036.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10452, dtype: object)
(10453, Id                             10454
EmployeeName              DANIEL HAN
JobTitle            SECURITY ANALYST
BasePay                      95029.2
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     95029.2
TotalPayBenefits             95029.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10453, dtype: object)
(10454, Id                             10455
EmployeeName            TETYANA KEMP
JobTitle            SECURITY ANALYST
BasePay                      95029.2
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     95029.2
TotalPayBenefits             95029.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10454, dtype: object)
(10455, Id                             10456
EmployeeName                MEI WONG
JobTitle            SECURITY ANALYST
BasePay                     95029.19
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    95029.19
TotalPayBenefits            95029.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10455, dtype: object)
(10456, Id                                                       10457
EmployeeName                                      BARRY CARTER
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                75885.8
OvertimePay                                            2764.82
OtherPay                                              16374.99
Benefits                                                   NaN
TotalPay                                              95025.61
TotalPayBenefits                                      95025.61
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10456, dtype: object)
(10457, Id                               10458
EmployeeName          BENJAMIN MELLOTT
JobTitle            PHYSICAL THERAPIST
BasePay                       95025.48
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      95025.48
TotalPayBenefits              95025.48
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10457, dtype: object)
(10458, Id                             10459
EmployeeName          ALFRED SANCHEZ
JobTitle            TRANSIT OPERATOR
BasePay                     65766.71
OvertimePay                 26344.45
OtherPay                     2912.66
Benefits                         NaN
TotalPay                    95023.82
TotalPayBenefits            95023.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10458, dtype: object)
(10459, Id                                      10460
EmployeeName                    HILLARY BLOUT
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              95022.72
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             95022.72
TotalPayBenefits                     95022.72
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10459, dtype: object)
(10460, Id                                 10461
EmployeeName        ALEXANDER BOITCHENKO
JobTitle             STATIONARY ENGINEER
BasePay                          72447.1
OvertimePay                      3321.17
OtherPay                        19250.54
Benefits                             NaN
TotalPay                        95018.81
TotalPayBenefits                95018.81
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10460, dtype: object)
(10461, Id                           10462
EmployeeName        DELMAR JOHNSON
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                2545.11
OtherPay                   5965.24
Benefits                       NaN
TotalPay                  95016.36
TotalPayBenefits          95016.36
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10461, dtype: object)
(10462, Id                               10463
EmployeeName             ANNETTE ESPIL
JobTitle            NURSE PRACTITIONER
BasePay                       89539.87
OvertimePay                    4056.34
OtherPay                       1414.43
Benefits                           NaN
TotalPay                      95010.64
TotalPayBenefits              95010.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10462, dtype: object)
(10463, Id                                             10464
EmployeeName                          LORNA LEVEXIER
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     69164.17
OvertimePay                                 23589.22
OtherPay                                      2254.8
Benefits                                         NaN
TotalPay                                    95008.19
TotalPayBenefits                            95008.19
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10463, dtype: object)
(10464, Id                                                       10465
EmployeeName                                  PATRICK MITCHELL
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               95002.01
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              95002.01
TotalPayBenefits                                      95002.01
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10464, dtype: object)
(10465, Id                                      10466
EmployeeName                 EMMANUEL VALLERO
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58089.5
OvertimePay                          26651.64
OtherPay                             10258.84
Benefits                                  NaN
TotalPay                             94999.98
TotalPayBenefits                     94999.98
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10465, dtype: object)
(10466, Id                              10467
EmployeeName        ANTONIO BERONILLA
JobTitle             TRANSIT OPERATOR
BasePay                      65917.59
OvertimePay                  27753.84
OtherPay                       1321.0
Benefits                          NaN
TotalPay                     94992.43
TotalPayBenefits             94992.43
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10466, dtype: object)
(10467, Id                                      10468
EmployeeName                 BRENDA TOLENTINO
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64809.9
OvertimePay                          24706.89
OtherPay                              5475.46
Benefits                                  NaN
TotalPay                             94992.25
TotalPayBenefits                     94992.25
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10467, dtype: object)
(10468, Id                                               10469
EmployeeName                           OTMAR VAN THOLL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   16655.89
OtherPay                                         755.0
Benefits                                           NaN
TotalPay                                      94991.29
TotalPayBenefits                              94991.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10468, dtype: object)
(10469, Id                          10470
EmployeeName         LAURIE TOWNS
JobTitle            SPECIAL NURSE
BasePay                  79588.65
OvertimePay               4231.12
OtherPay                 11166.36
Benefits                      NaN
TotalPay                 94986.13
TotalPayBenefits         94986.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10469, dtype: object)
(10470, Id                                                10471
EmployeeName                             CYNTHIA GUSMAN
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        93079.08
OvertimePay                                         0.0
OtherPay                                        1905.67
Benefits                                            NaN
TotalPay                                       94984.75
TotalPayBenefits                               94984.75
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10470, dtype: object)
(10471, Id                                      10472
EmployeeName                   MICHAEL MAFFEI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                               94975.8
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              94975.8
TotalPayBenefits                      94975.8
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10471, dtype: object)
(10472, Id                                                     10473
EmployeeName                                 BRIAN VANDERMEY
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                              82256.0
OvertimePay                                          4630.27
OtherPay                                              8089.4
Benefits                                                 NaN
TotalPay                                            94975.67
TotalPayBenefits                                    94975.67
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10472, dtype: object)
(10473, Id                          10474
EmployeeName         STEVE HANLEY
JobTitle                CARPENTER
BasePay                   77993.7
OvertimePay              14770.34
OtherPay                   2200.0
Benefits                      NaN
TotalPay                 94964.04
TotalPayBenefits         94964.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10473, dtype: object)
(10474, Id                             10475
EmployeeName          ELIZABETH SAJO
JobTitle            REGISTERED NURSE
BasePay                     94711.81
OvertimePay                      0.0
OtherPay                       250.0
Benefits                         NaN
TotalPay                    94961.81
TotalPayBenefits            94961.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10474, dtype: object)
(10475, Id                                      10476
EmployeeName             CLAUDETTE WASHINGTON
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              58000.59
OvertimePay                          23278.84
OtherPay                             13680.76
Benefits                                  NaN
TotalPay                             94960.19
TotalPayBenefits                     94960.19
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10475, dtype: object)
(10476, Id                                      10477
EmployeeName                     LESLEY SADHU
JobTitle            COURT TRAINING SPECIALIST
BasePay                               94335.6
OvertimePay                               0.0
OtherPay                                624.0
Benefits                                  NaN
TotalPay                              94959.6
TotalPayBenefits                      94959.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10476, dtype: object)
(10477, Id                               10478
EmployeeName            NOHEMY REVILLA
JobTitle            ASSOCIATE ENGINEER
BasePay                        94955.4
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       94955.4
TotalPayBenefits               94955.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10477, dtype: object)
(10478, Id                                                     10479
EmployeeName                                      MARK LAUER
JobTitle            SENIOR STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                             88346.04
OvertimePay                                              0.0
OtherPay                                             6608.84
Benefits                                                 NaN
TotalPay                                            94954.88
TotalPayBenefits                                    94954.88
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10478, dtype: object)
(10479, Id                                               10480
EmployeeName                          RICHARD SUBIJANO
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77697.72
OvertimePay                                    9196.16
OtherPay                                       8055.45
Benefits                                           NaN
TotalPay                                      94949.33
TotalPayBenefits                              94949.33
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10479, dtype: object)
(10480, Id                          10481
EmployeeName        OLIVER O'MARA
JobTitle              PIPE WELDER
BasePay                   89735.1
OvertimePay                3780.6
OtherPay                   1430.0
Benefits                      NaN
TotalPay                  94945.7
TotalPayBenefits          94945.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10480, dtype: object)
(10481, Id                             10482
EmployeeName           WILLIAM MOORE
JobTitle            TRANSIT OPERATOR
BasePay                     65557.49
OvertimePay                 25938.97
OtherPay                     3447.84
Benefits                         NaN
TotalPay                     94944.3
TotalPayBenefits             94944.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10481, dtype: object)
(10482, Id                                10483
EmployeeName               MICHAEL BEIL
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73308.84
OvertimePay                    16321.39
OtherPay                        5313.73
Benefits                            NaN
TotalPay                       94943.96
TotalPayBenefits               94943.96
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10482, dtype: object)
(10483, Id                             10484
EmployeeName           ROGER CAPILOS
JobTitle            TRANSIT OPERATOR
BasePay                     67160.35
OvertimePay                 27598.55
OtherPay                      183.76
Benefits                         NaN
TotalPay                    94942.66
TotalPayBenefits            94942.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10483, dtype: object)
(10484, Id                              10485
EmployeeName        ALEXANDER PORTNOV
JobTitle               DEPUTY SHERIFF
BasePay                      86840.04
OvertimePay                   2918.33
OtherPay                      5183.58
Benefits                          NaN
TotalPay                     94941.95
TotalPayBenefits             94941.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10484, dtype: object)
(10485, Id                                                  10486
EmployeeName                                   JANE SMITH
JobTitle            CAPTAIN, EMERGENCYCY MEDICAL SERVICES
BasePay                                           74592.0
OvertimePay                                       1538.59
OtherPay                                         18804.68
Benefits                                              NaN
TotalPay                                         94935.27
TotalPayBenefits                                 94935.27
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 10485, dtype: object)
(10486, Id                             10487
EmployeeName           CYNTHIA BROWN
JobTitle            REGISTERED NURSE
BasePay                     94269.67
OvertimePay                   387.79
OtherPay                      272.98
Benefits                         NaN
TotalPay                    94930.44
TotalPayBenefits            94930.44
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10486, dtype: object)
(10487, Id                                     10488
EmployeeName                     JACSON FUNG
JobTitle            ENGINEERING ASSOCIATE II
BasePay                             85940.06
OvertimePay                          7982.27
OtherPay                              1005.0
Benefits                                 NaN
TotalPay                            94927.33
TotalPayBenefits                    94927.33
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10487, dtype: object)
(10488, Id                                10489
EmployeeName                 KIM WALTON
JobTitle            TRANSIT PLANNER III
BasePay                        94803.63
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                       94923.63
TotalPayBenefits               94923.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10488, dtype: object)
(10489, Id                             10490
EmployeeName        BOBBY CACANINDIN
JobTitle                 PIPE WELDER
BasePay                     89916.77
OvertimePay                  5006.68
OtherPay                         0.0
Benefits                         NaN
TotalPay                    94923.45
TotalPayBenefits            94923.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10489, dtype: object)
(10490, Id                                           10491
EmployeeName                     CATHERINE COUSART
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.35
OvertimePay                                    0.0
OtherPay                                     624.0
Benefits                                       NaN
TotalPay                                  94923.35
TotalPayBenefits                          94923.35
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10490, dtype: object)
(10491, Id                                           10492
EmployeeName                          EILEEN CAVAN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94296.64
OvertimePay                                    0.0
OtherPay                                     624.0
Benefits                                       NaN
TotalPay                                  94920.64
TotalPayBenefits                          94920.64
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10491, dtype: object)
(10492, Id                          10493
EmployeeName         KIN-MAN HUNG
JobTitle                CARPENTER
BasePay                   77837.4
OvertimePay              14711.73
OtherPay                   2370.0
Benefits                      NaN
TotalPay                 94919.13
TotalPayBenefits         94919.13
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10492, dtype: object)
(10493, Id                                           10494
EmployeeName                               LUIS BU
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94286.06
OvertimePay                                    0.0
OtherPay                                     624.0
Benefits                                       NaN
TotalPay                                  94910.06
TotalPayBenefits                          94910.06
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10493, dtype: object)
(10494, Id                           10495
EmployeeName             CLIVE CHU
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 239.54
OtherPay                   8162.43
Benefits                       NaN
TotalPay                  94907.97
TotalPayBenefits          94907.97
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10494, dtype: object)
(10495, Id                                  10496
EmployeeName                  ROBERT WARD
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          80325.68
OvertimePay                       5067.31
OtherPay                          9512.38
Benefits                              NaN
TotalPay                         94905.37
TotalPayBenefits                 94905.37
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10495, dtype: object)
(10496, Id                                  10497
EmployeeName                   RAVI MEHTA
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92472.92
OvertimePay                        162.19
OtherPay                           2258.8
Benefits                              NaN
TotalPay                         94893.91
TotalPayBenefits                 94893.91
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10496, dtype: object)
(10497, Id                                10498
EmployeeName                LARRY COATE
JobTitle            IS BUSINESS ANALYST
BasePay                        86428.58
OvertimePay                         0.0
OtherPay                        8456.38
Benefits                            NaN
TotalPay                       94884.96
TotalPayBenefits               94884.96
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10497, dtype: object)
(10498, Id                             10499
EmployeeName         CARMENCITA DIAZ
JobTitle            REGISTERED NURSE
BasePay                     92120.73
OvertimePay                      0.0
OtherPay                     2763.32
Benefits                         NaN
TotalPay                    94884.05
TotalPayBenefits            94884.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10498, dtype: object)
(10499, Id                                                       10500
EmployeeName                                           RON ASH
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                78745.5
OvertimePay                                            5224.99
OtherPay                                              10908.85
Benefits                                                   NaN
TotalPay                                              94879.34
TotalPayBenefits                                      94879.34
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10499, dtype: object)
(10500, Id                                              10501
EmployeeName                            LETICIA BROWN
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.03
OvertimePay                                   7193.41
OtherPay                                      7865.68
Benefits                                          NaN
TotalPay                                     94879.12
TotalPayBenefits                             94879.12
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10500, dtype: object)
(10501, Id                                10502
EmployeeName                RANA AHMADI
JobTitle            TRANSIT PLANNER III
BasePay                        94758.07
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                       94878.07
TotalPayBenefits               94878.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10501, dtype: object)
(10502, Id                                10503
EmployeeName                ADAM GUBSER
JobTitle            TRANSIT PLANNER III
BasePay                        94758.05
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                       94878.05
TotalPayBenefits               94878.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10502, dtype: object)
(10503, Id                                10504
EmployeeName                 KEVIN KECK
JobTitle            TRANSIT PLANNER III
BasePay                        94758.01
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                       94878.01
TotalPayBenefits               94878.01
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10503, dtype: object)
(10504, Id                                10505
EmployeeName         CHARLES RIVASPLATA
JobTitle            TRANSIT PLANNER III
BasePay                         94757.5
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                        94877.5
TotalPayBenefits                94877.5
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10504, dtype: object)
(10505, Id                                              10506
EmployeeName                               WYMAN FONG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79696.95
OvertimePay                                   7280.98
OtherPay                                       7897.3
Benefits                                          NaN
TotalPay                                     94875.23
TotalPayBenefits                             94875.23
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10505, dtype: object)
(10506, Id                             10507
EmployeeName              DONALD JUE
JobTitle            TRANSIT OPERATOR
BasePay                     66554.89
OvertimePay                  23661.2
OtherPay                     4647.62
Benefits                         NaN
TotalPay                    94863.71
TotalPayBenefits            94863.71
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10506, dtype: object)
(10507, Id                             10508
EmployeeName        KENNETH HARRISON
JobTitle              DEPUTY SHERIFF
BasePay                      86506.0
OvertimePay                  7574.85
OtherPay                      774.89
Benefits                         NaN
TotalPay                    94855.74
TotalPayBenefits            94855.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10507, dtype: object)
(10508, Id                                         10509
EmployeeName                      JENNIFER LEUNG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                  94848.9
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                 94848.9
TotalPayBenefits                         94848.9
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10508, dtype: object)
(10509, Id                           10510
EmployeeName         JOSE ESPINOZA
JobTitle            DEPUTY SHERIFF
BasePay                   86840.09
OvertimePay                2634.05
OtherPay                   5366.48
Benefits                       NaN
TotalPay                  94840.62
TotalPayBenefits          94840.62
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10509, dtype: object)
(10510, Id                                     10511
EmployeeName                    CRISS ROMERO
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             94836.26
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            94836.26
TotalPayBenefits                    94836.26
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10510, dtype: object)
(10511, Id                              10512
EmployeeName        STEPHEN GALLAGHER
JobTitle               DEPUTY SHERIFF
BasePay                      82095.55
OvertimePay                   6117.65
OtherPay                      6621.75
Benefits                          NaN
TotalPay                     94834.95
TotalPayBenefits             94834.95
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10511, dtype: object)
(10512, Id                             10513
EmployeeName        ROBIN DELOSREYES
JobTitle              DEPUTY SHERIFF
BasePay                     78277.84
OvertimePay                 11505.11
OtherPay                     5048.37
Benefits                         NaN
TotalPay                    94831.32
TotalPayBenefits            94831.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10512, dtype: object)
(10513, Id                               10514
EmployeeName                 ANNE JAHN
JobTitle            TRANSIT SUPERVISOR
BasePay                       88062.01
OvertimePay                    5410.77
OtherPay                       1356.78
Benefits                           NaN
TotalPay                      94829.56
TotalPayBenefits              94829.56
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10513, dtype: object)
(10514, Id                                                    10515
EmployeeName                          LAURA OREILLY-JACKSON
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77934.79
OvertimePay                                         7299.07
OtherPay                                             9595.4
Benefits                                                NaN
TotalPay                                           94829.26
TotalPayBenefits                                   94829.26
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10514, dtype: object)
(10515, Id                                       10516
EmployeeName                     ROXANA ALEGRE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                            7118.72
OtherPay                               3805.91
Benefits                                   NaN
TotalPay                              94827.21
TotalPayBenefits                      94827.21
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10515, dtype: object)
(10516, Id                           10517
EmployeeName          WILLIAM CHOW
JobTitle            DEPUTY SHERIFF
BasePay                   84324.57
OvertimePay                  250.5
OtherPay                  10251.02
Benefits                       NaN
TotalPay                  94826.09
TotalPayBenefits          94826.09
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10516, dtype: object)
(10517, Id                                              10518
EmployeeName                         RICHARD FERRARIO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   7470.11
OtherPay                                      7534.65
Benefits                                          NaN
TotalPay                                     94824.76
TotalPayBenefits                             94824.76
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10517, dtype: object)
(10518, Id                                10519
EmployeeName               ROSS MAXWELL
JobTitle            TRANSIT PLANNER III
BasePay                         94758.1
OvertimePay                         0.0
OtherPay                           61.0
Benefits                            NaN
TotalPay                        94819.1
TotalPayBenefits                94819.1
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10518, dtype: object)
(10519, Id                                10520
EmployeeName                 JAMES LOWE
JobTitle            TRANSIT PLANNER III
BasePay                        94757.65
OvertimePay                         0.0
OtherPay                           61.0
Benefits                            NaN
TotalPay                       94818.65
TotalPayBenefits               94818.65
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10519, dtype: object)
(10520, Id                                     10521
EmployeeName                    JUBILEE TSUI
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             82163.69
OvertimePay                         11429.74
OtherPay                              1225.0
Benefits                                 NaN
TotalPay                            94818.43
TotalPayBenefits                    94818.43
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10520, dtype: object)
(10521, Id                             10522
EmployeeName              CHIN YEUNG
JobTitle            TRANSIT OPERATOR
BasePay                     64890.28
OvertimePay                 28752.95
OtherPay                     1173.67
Benefits                         NaN
TotalPay                     94816.9
TotalPayBenefits             94816.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10521, dtype: object)
(10522, Id                                      10523
EmployeeName                    ROBERT FOWLER
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64794.19
OvertimePay                          23649.48
OtherPay                              6368.39
Benefits                                  NaN
TotalPay                             94812.06
TotalPayBenefits                     94812.06
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10522, dtype: object)
(10523, Id                                                    10524
EmployeeName                                  ANNETTE GOLEY
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87863.02
OvertimePay                                         3433.28
OtherPay                                            3514.56
Benefits                                                NaN
TotalPay                                           94810.86
TotalPayBenefits                                   94810.86
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10523, dtype: object)
(10524, Id                               10525
EmployeeName                DAVID TONG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.49
OvertimePay                        0.0
OtherPay                       4989.55
Benefits                           NaN
TotalPay                      94796.04
TotalPayBenefits              94796.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10524, dtype: object)
(10525, Id                                              10526
EmployeeName                            EDWARD HANSON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      82541.57
OvertimePay                                   4668.87
OtherPay                                      7580.77
Benefits                                          NaN
TotalPay                                     94791.21
TotalPayBenefits                             94791.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10525, dtype: object)
(10526, Id                          10527
EmployeeName            TAO FU LU
JobTitle            CABLE SPLICER
BasePay                   93669.6
OvertimePay                601.96
OtherPay                    500.0
Benefits                      NaN
TotalPay                 94771.56
TotalPayBenefits         94771.56
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10526, dtype: object)
(10527, Id                               10528
EmployeeName              JOHNNIE WONG
JobTitle            TRANSIT SUPERVISOR
BasePay                       73599.53
OvertimePay                   17167.06
OtherPay                       4004.91
Benefits                           NaN
TotalPay                       94771.5
TotalPayBenefits               94771.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10527, dtype: object)
(10528, Id                                    10529
EmployeeName                  DAVID GALINDO
JobTitle            WATER SERVICE INSPECTOR
BasePay                            94127.77
OvertimePay                           550.2
OtherPay                               91.7
Benefits                                NaN
TotalPay                           94769.67
TotalPayBenefits                   94769.67
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10528, dtype: object)
(10529, Id                                       10530
EmployeeName                   DENNIS DECASTRO
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               81745.29
OvertimePay                             177.52
OtherPay                               12843.0
Benefits                                   NaN
TotalPay                              94765.81
TotalPayBenefits                      94765.81
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10529, dtype: object)
(10530, Id                                               10531
EmployeeName                             DANIEL CRITES
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       75785.72
OvertimePay                                   11462.96
OtherPay                                       7514.97
Benefits                                           NaN
TotalPay                                      94763.65
TotalPayBenefits                              94763.65
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10530, dtype: object)
(10531, Id                          10532
EmployeeName         RACHNA AHUJA
JobTitle              PLANNER III
BasePay                  94758.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.12
TotalPayBenefits         94758.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10531, dtype: object)
(10532, Id                          10533
EmployeeName          MARY CHEUNG
JobTitle              PLANNER III
BasePay                  94758.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.12
TotalPayBenefits         94758.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10532, dtype: object)
(10533, Id                             10534
EmployeeName        JOHNNY JARAMILLO
JobTitle                 PLANNER III
BasePay                      94758.1
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     94758.1
TotalPayBenefits             94758.1
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10533, dtype: object)
(10534, Id                                             10535
EmployeeName                            RANDALL DEAN
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     94758.09
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    94758.09
TotalPayBenefits                            94758.09
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10534, dtype: object)
(10535, Id                          10536
EmployeeName            MARK PAEZ
JobTitle              PLANNER III
BasePay                  94758.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.08
TotalPayBenefits         94758.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10535, dtype: object)
(10536, Id                          10537
EmployeeName        NEIL HRUSHOWY
JobTitle              PLANNER III
BasePay                  94758.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.08
TotalPayBenefits         94758.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10536, dtype: object)
(10537, Id                               10538
EmployeeName        CYNTHIA SERVETNICK
JobTitle                   PLANNER III
BasePay                       94758.07
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      94758.07
TotalPayBenefits              94758.07
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10537, dtype: object)
(10538, Id                             10539
EmployeeName        RICHARD CRAWFORD
JobTitle                 PLANNER III
BasePay                     94758.06
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    94758.06
TotalPayBenefits            94758.06
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10538, dtype: object)
(10539, Id                          10540
EmployeeName        TARA SULLIVAN
JobTitle              PLANNER III
BasePay                  94758.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.05
TotalPayBenefits         94758.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10539, dtype: object)
(10540, Id                            10541
EmployeeName        JONATHAN PURVIS
JobTitle                PLANNER III
BasePay                    94758.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   94758.05
TotalPayBenefits           94758.05
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10540, dtype: object)
(10541, Id                          10542
EmployeeName        MICHAEL SMITH
JobTitle              PLANNER III
BasePay                  94758.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.05
TotalPayBenefits         94758.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10541, dtype: object)
(10542, Id                          10543
EmployeeName        KANYA DORLAND
JobTitle              PLANNER III
BasePay                  94758.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.04
TotalPayBenefits         94758.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10542, dtype: object)
(10543, Id                           10544
EmployeeName        GLENN CABREROS
JobTitle               PLANNER III
BasePay                   94758.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  94758.02
TotalPayBenefits          94758.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10543, dtype: object)
(10544, Id                          10545
EmployeeName           KATE MCGEE
JobTitle              PLANNER III
BasePay                  94758.02
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94758.02
TotalPayBenefits         94758.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10544, dtype: object)
(10545, Id                                  10546
EmployeeName                ROBERT BEGLEY
JobTitle            REGULATORY SPECIALIST
BasePay                          94758.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         94758.01
TotalPayBenefits                 94758.01
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10545, dtype: object)
(10546, Id                                  10547
EmployeeName                 CARMEN YNAMI
JobTitle            REGULATORY SPECIALIST
BasePay                           94758.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          94758.0
TotalPayBenefits                  94758.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10546, dtype: object)
(10547, Id                                             10548
EmployeeName                         MICHAEL JACINTO
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     94757.89
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    94757.89
TotalPayBenefits                            94757.89
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10547, dtype: object)
(10548, Id                          10549
EmployeeName               BEN FU
JobTitle              PLANNER III
BasePay                  94757.74
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94757.74
TotalPayBenefits         94757.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10548, dtype: object)
(10549, Id                          10550
EmployeeName        MATHEW SNYDER
JobTitle              PLANNER III
BasePay                   94757.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                  94757.7
TotalPayBenefits          94757.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10549, dtype: object)
(10550, Id                              10551
EmployeeName        NICHOLAS CORRETTE
JobTitle                  PLANNER III
BasePay                      94757.62
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     94757.62
TotalPayBenefits             94757.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10550, dtype: object)
(10551, Id                          10552
EmployeeName          KATE CONNER
JobTitle              PLANNER III
BasePay                  94757.58
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94757.58
TotalPayBenefits         94757.58
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10551, dtype: object)
(10552, Id                            10553
EmployeeName        KEVIN BRUSATORI
JobTitle                PLANNER III
BasePay                    94757.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                   94757.52
TotalPayBenefits           94757.52
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10552, dtype: object)
(10553, Id                                                10554
EmployeeName                            VALORIA RUSSELL
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60206.6
OvertimePay                                    28755.92
OtherPay                                        5792.99
Benefits                                            NaN
TotalPay                                       94755.51
TotalPayBenefits                               94755.51
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10553, dtype: object)
(10554, Id                          10555
EmployeeName         TROY ACEVEDO
JobTitle              ELECTRICIAN
BasePay                  86771.11
OvertimePay               5961.11
OtherPay                   2010.0
Benefits                      NaN
TotalPay                 94742.22
TotalPayBenefits         94742.22
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10554, dtype: object)
(10555, Id                           10556
EmployeeName          PHILLIP BURT
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                  31.94
OtherPay                   8189.05
Benefits                       NaN
TotalPay                  94726.99
TotalPayBenefits          94726.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10555, dtype: object)
(10556, Id                                   10557
EmployeeName             JOSEPH DEL GRANDE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            79949.6
OvertimePay                        3075.37
OtherPay                          11693.35
Benefits                               NaN
TotalPay                          94718.32
TotalPayBenefits                  94718.32
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10556, dtype: object)
(10557, Id                                 10558
EmployeeName                KEVIN KELLER
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         73997.56
OvertimePay                     19053.33
OtherPay                          1664.7
Benefits                             NaN
TotalPay                        94715.59
TotalPayBenefits                94715.59
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10557, dtype: object)
(10558, Id                                      10559
EmployeeName                   BRENDA DEGONIA
JobTitle            COURT TRAINING SPECIALIST
BasePay                               94091.4
OvertimePay                               0.0
OtherPay                                624.0
Benefits                                  NaN
TotalPay                              94715.4
TotalPayBenefits                      94715.4
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10558, dtype: object)
(10559, Id                           10560
EmployeeName         ANNE ODONNELL
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                2445.02
OtherPay                   5426.65
Benefits                       NaN
TotalPay                  94711.67
TotalPayBenefits          94711.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10559, dtype: object)
(10560, Id                           10561
EmployeeName          STANLEY WONG
JobTitle            DEPUTY SHERIFF
BasePay                    86589.5
OvertimePay                 877.71
OtherPay                   7242.83
Benefits                       NaN
TotalPay                  94710.04
TotalPayBenefits          94710.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10560, dtype: object)
(10561, Id                          10562
EmployeeName         DALE NORDBYE
JobTitle                   WELDER
BasePay                  61543.27
OvertimePay              32586.49
OtherPay                   578.97
Benefits                      NaN
TotalPay                 94708.73
TotalPayBenefits         94708.73
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10561, dtype: object)
(10562, Id                           10563
EmployeeName        DAMIAN FLEMING
JobTitle                  GARDENER
BasePay                    19992.3
OvertimePay                   91.9
OtherPay                  74621.61
Benefits                       NaN
TotalPay                  94705.81
TotalPayBenefits          94705.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10562, dtype: object)
(10563, Id                          10564
EmployeeName            TEE PHANG
JobTitle                 ENGINEER
BasePay                  91703.94
OvertimePay                   0.0
OtherPay                  3001.14
Benefits                      NaN
TotalPay                 94705.08
TotalPayBenefits         94705.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10563, dtype: object)
(10564, Id                                                  10565
EmployeeName                                STEVE RAMELLA
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          74859.75
OvertimePay                                      10095.48
OtherPay                                          9743.54
Benefits                                              NaN
TotalPay                                         94698.77
TotalPayBenefits                                 94698.77
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 10564, dtype: object)
(10565, Id                                              10566
EmployeeName                           PETER NAUGHTON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       80226.0
OvertimePay                                   6658.16
OtherPay                                      7801.69
Benefits                                          NaN
TotalPay                                     94685.85
TotalPayBenefits                             94685.85
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10565, dtype: object)
(10566, Id                                      10567
EmployeeName                 ROSALINDA CONCHA
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64659.3
OvertimePay                          27451.77
OtherPay                              2565.97
Benefits                                  NaN
TotalPay                             94677.04
TotalPayBenefits                     94677.04
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10566, dtype: object)
(10567, Id                                          10568
EmployeeName                       FRISHTAH AFIFI
JobTitle            AIRPORT PROPERTY SPECIALIST I
BasePay                                  93697.43
OvertimePay                                   0.0
OtherPay                                    970.0
Benefits                                      NaN
TotalPay                                 94667.43
TotalPayBenefits                         94667.43
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10567, dtype: object)
(10568, Id                           10569
EmployeeName          JAMES MULLAN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 2195.8
OtherPay                   5965.24
Benefits                       NaN
TotalPay                  94667.04
TotalPayBenefits          94667.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10568, dtype: object)
(10569, Id                           10570
EmployeeName            JOHN ARITA
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 1837.0
OtherPay                   5985.29
Benefits                       NaN
TotalPay                  94662.29
TotalPayBenefits          94662.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10569, dtype: object)
(10570, Id                               10571
EmployeeName            CAROLYN DOWNEY
JobTitle            NURSE PRACTITIONER
BasePay                        92041.2
OvertimePay                        0.0
OtherPay                       2618.41
Benefits                           NaN
TotalPay                      94659.61
TotalPayBenefits              94659.61
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10570, dtype: object)
(10571, Id                                              10572
EmployeeName                                NORMAN NG
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      93952.99
OvertimePay                                     706.3
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     94659.29
TotalPayBenefits                             94659.29
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10571, dtype: object)
(10572, Id                                                    10573
EmployeeName                                       MEGAN WU
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77723.04
OvertimePay                                        12159.18
OtherPay                                            4768.83
Benefits                                                NaN
TotalPay                                           94651.05
TotalPayBenefits                                   94651.05
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10572, dtype: object)
(10573, Id                                                10574
EmployeeName                            AVELINA PACHECO
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60206.6
OvertimePay                                     28255.4
OtherPay                                        6178.23
Benefits                                            NaN
TotalPay                                       94640.23
TotalPayBenefits                               94640.23
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10573, dtype: object)
(10574, Id                                          10575
EmployeeName                     CESARIO ATON-III
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  84054.11
OvertimePay                               8252.22
OtherPay                                  2331.45
Benefits                                      NaN
TotalPay                                 94637.78
TotalPayBenefits                         94637.78
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10574, dtype: object)
(10575, Id                               10576
EmployeeName                RONALD YEE
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                    3422.98
OtherPay                       3148.28
Benefits                           NaN
TotalPay                      94633.26
TotalPayBenefits              94633.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10575, dtype: object)
(10576, Id                                 10577
EmployeeName        PATRICK LEDBETTER SR
JobTitle                TRANSIT OPERATOR
BasePay                          66106.8
OvertimePay                     26680.92
OtherPay                         1841.86
Benefits                             NaN
TotalPay                        94629.58
TotalPayBenefits                94629.58
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10576, dtype: object)
(10577, Id                                      10578
EmployeeName                       MYRON FRYE
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               59037.9
OvertimePay                          21857.01
OtherPay                              13726.7
Benefits                                  NaN
TotalPay                             94621.61
TotalPayBenefits                     94621.61
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10577, dtype: object)
(10578, Id                           10579
EmployeeName           ERMA WEAVER
JobTitle            DEPUTY SHERIFF
BasePay                   85876.01
OvertimePay                5282.51
OtherPay                   3459.88
Benefits                       NaN
TotalPay                   94618.4
TotalPayBenefits           94618.4
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10578, dtype: object)
(10579, Id                           10580
EmployeeName            BEN FOSTER
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                2982.22
OtherPay                   4795.37
Benefits                       NaN
TotalPay                   94617.6
TotalPayBenefits           94617.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10579, dtype: object)
(10580, Id                               10581
EmployeeName             MOHSIN SHAIKH
JobTitle            ASSOCIATE ENGINEER
BasePay                       91651.11
OvertimePay                    2966.06
OtherPay                           0.0
Benefits                           NaN
TotalPay                      94617.17
TotalPayBenefits              94617.17
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10580, dtype: object)
(10581, Id                               10582
EmployeeName          RICHARD JEFFERIS
JobTitle            TRANSIT SUPERVISOR
BasePay                        90213.0
OvertimePay                     846.75
OtherPay                       3555.85
Benefits                           NaN
TotalPay                       94615.6
TotalPayBenefits               94615.6
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10581, dtype: object)
(10582, Id                               10583
EmployeeName        JAMES SUTHERLIN JR
JobTitle                   ELECTRICIAN
BasePay                       86419.82
OvertimePay                    7311.43
OtherPay                         882.0
Benefits                           NaN
TotalPay                      94613.25
TotalPayBenefits              94613.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10582, dtype: object)
(10583, Id                          10584
EmployeeName        ROBERT POTTER
JobTitle              FIREFIGHTER
BasePay                  78460.39
OvertimePay               5170.55
OtherPay                 10974.78
Benefits                      NaN
TotalPay                 94605.72
TotalPayBenefits         94605.72
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10583, dtype: object)
(10584, Id                              10585
EmployeeName        TIMOTHY BLANCHARD
JobTitle                  PIPE WELDER
BasePay                       88645.2
OvertimePay                   5960.31
OtherPay                          0.0
Benefits                          NaN
TotalPay                     94605.51
TotalPayBenefits             94605.51
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10584, dtype: object)
(10585, Id                           10586
EmployeeName          MARTIN LOGUE
JobTitle            DEPUTY SHERIFF
BasePay                   79640.38
OvertimePay               10705.24
OtherPay                   4257.07
Benefits                       NaN
TotalPay                  94602.69
TotalPayBenefits          94602.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10585, dtype: object)
(10586, Id                                              10587
EmployeeName                 FRANKLIN OSC CARBALLO JR
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      74901.88
OvertimePay                                   18988.4
OtherPay                                        712.0
Benefits                                          NaN
TotalPay                                     94602.28
TotalPayBenefits                             94602.28
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10586, dtype: object)
(10587, Id                                           10588
EmployeeName                        IMELDA QUESADA
JobTitle            BOARD/COMMISSION SECRETARY III
BasePay                                   94600.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94600.02
TotalPayBenefits                          94600.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10587, dtype: object)
(10588, Id                                10589
EmployeeName               WILLIAM BLAS
JobTitle            STATIONARY ENGINEER
BasePay                        71992.76
OvertimePay                     7749.32
OtherPay                       14854.48
Benefits                            NaN
TotalPay                       94596.56
TotalPayBenefits               94596.56
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10588, dtype: object)
(10589, Id                                                    10590
EmployeeName                                 JOSEPH SALCEDO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            72133.02
OvertimePay                                        16779.38
OtherPay                                            5681.33
Benefits                                                NaN
TotalPay                                           94593.73
TotalPayBenefits                                   94593.73
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10589, dtype: object)
(10590, Id                          10591
EmployeeName              JACK YU
JobTitle                  PLUMBER
BasePay                  89735.15
OvertimePay                138.94
OtherPay                  4702.06
Benefits                      NaN
TotalPay                 94576.15
TotalPayBenefits         94576.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10590, dtype: object)
(10591, Id                             10592
EmployeeName        CYNTHIA SPELLMAN
JobTitle            REGISTERED NURSE
BasePay                     86960.55
OvertimePay                  3225.76
OtherPay                     4384.11
Benefits                         NaN
TotalPay                    94570.42
TotalPayBenefits            94570.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10591, dtype: object)
(10592, Id                                              10593
EmployeeName                          DOLORES DANIELS
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   6916.69
OtherPay                                      7826.73
Benefits                                          NaN
TotalPay                                     94563.43
TotalPayBenefits                             94563.43
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10592, dtype: object)
(10593, Id                                                       10594
EmployeeName                                      DANIEL SMITH
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.04
OvertimePay                                            8786.98
OtherPay                                               5949.16
Benefits                                                   NaN
TotalPay                                              94556.18
TotalPayBenefits                                      94556.18
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10593, dtype: object)
(10594, Id                                              10595
EmployeeName                             WILLIAM WONG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      87959.06
OvertimePay                                       0.0
OtherPay                                      6597.02
Benefits                                          NaN
TotalPay                                     94556.08
TotalPayBenefits                             94556.08
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10594, dtype: object)
(10595, Id                             10596
EmployeeName             AMADA RAMOS
JobTitle            REGISTERED NURSE
BasePay                     79312.32
OvertimePay                  4414.69
OtherPay                    10823.48
Benefits                         NaN
TotalPay                    94550.49
TotalPayBenefits            94550.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10595, dtype: object)
(10596, Id                                          10597
EmployeeName                          CRAIG HERSH
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   83713.8
OvertimePay                               7493.43
OtherPay                                   3341.8
Benefits                                      NaN
TotalPay                                 94549.03
TotalPayBenefits                         94549.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10596, dtype: object)
(10597, Id                             10598
EmployeeName          GLADYS ZARAZUA
JobTitle            REGISTERED NURSE
BasePay                     90277.69
OvertimePay                      0.0
OtherPay                     4267.05
Benefits                         NaN
TotalPay                    94544.74
TotalPayBenefits            94544.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10597, dtype: object)
(10598, Id                            10599
EmployeeName        MICHAEL MONTOYA
JobTitle                PIPE WELDER
BasePay                    89190.15
OvertimePay                 3950.89
OtherPay                     1398.0
Benefits                        NaN
TotalPay                   94539.04
TotalPayBenefits           94539.04
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10598, dtype: object)
(10599, Id                             10600
EmployeeName           RUTH HAMILTON
JobTitle            REGISTERED NURSE
BasePay                      86882.9
OvertimePay                   694.11
OtherPay                     6955.83
Benefits                         NaN
TotalPay                    94532.84
TotalPayBenefits            94532.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10599, dtype: object)
(10600, Id                                            10601
EmployeeName                            BARRY YOUNG
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    74924.38
OvertimePay                                16426.52
OtherPay                                    3179.57
Benefits                                        NaN
TotalPay                                   94530.47
TotalPayBenefits                           94530.47
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10600, dtype: object)
(10601, Id                             10602
EmployeeName            MARK SPENCER
JobTitle            TRANSIT OPERATOR
BasePay                     67087.15
OvertimePay                 26271.84
OtherPay                     1171.25
Benefits                         NaN
TotalPay                    94530.24
TotalPayBenefits            94530.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10601, dtype: object)
(10602, Id                             10603
EmployeeName               PHILIP LO
JobTitle            TRANSIT OPERATOR
BasePay                     65896.32
OvertimePay                 25616.38
OtherPay                     3016.88
Benefits                         NaN
TotalPay                    94529.58
TotalPayBenefits            94529.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10602, dtype: object)
(10603, Id                                      10604
EmployeeName                      LILI NGUYEN
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              94528.32
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             94528.32
TotalPayBenefits                     94528.32
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10603, dtype: object)
(10604, Id                           10605
EmployeeName           OMAR DELEON
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                1104.25
OtherPay                   6577.34
Benefits                       NaN
TotalPay                   94521.6
TotalPayBenefits           94521.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10604, dtype: object)
(10605, Id                                10606
EmployeeName            SHU-JIUAN HWANG
JobTitle            BENEFITS SUPERVISOR
BasePay                        93895.63
OvertimePay                         0.0
OtherPay                          624.0
Benefits                            NaN
TotalPay                       94519.63
TotalPayBenefits               94519.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10605, dtype: object)
(10606, Id                                10607
EmployeeName                 ALYCE WONG
JobTitle            BENEFITS SUPERVISOR
BasePay                        93895.62
OvertimePay                         0.0
OtherPay                          624.0
Benefits                            NaN
TotalPay                       94519.62
TotalPayBenefits               94519.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10606, dtype: object)
(10607, Id                                      10608
EmployeeName                   LINDSAY HOOPES
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              94518.62
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             94518.62
TotalPayBenefits                     94518.62
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10607, dtype: object)
(10608, Id                              10609
EmployeeName        VAWANDA FERDINAND
JobTitle             TRANSIT OPERATOR
BasePay                      66362.72
OvertimePay                  25976.45
OtherPay                      2176.93
Benefits                          NaN
TotalPay                      94516.1
TotalPayBenefits              94516.1
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10608, dtype: object)
(10609, Id                                      10610
EmployeeName                     DELIA CARLOS
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64780.5
OvertimePay                          23074.22
OtherPay                              6657.33
Benefits                                  NaN
TotalPay                             94512.05
TotalPayBenefits                     94512.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10609, dtype: object)
(10610, Id                               10611
EmployeeName          RICHARD VETTERLI
JobTitle            DEPUTY DIRECTOR II
BasePay                       93361.18
OvertimePay                    1077.67
OtherPay                         72.48
Benefits                           NaN
TotalPay                      94511.33
TotalPayBenefits              94511.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10610, dtype: object)
(10611, Id                                                    10612
EmployeeName                            GLADYS QUEVEDO-JACO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76260.37
OvertimePay                                        13114.98
OtherPay                                            5114.93
Benefits                                                NaN
TotalPay                                           94490.28
TotalPayBenefits                                   94490.28
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10611, dtype: object)
(10612, Id                                10613
EmployeeName        SHELLEY CALTAGIRONE
JobTitle                    PLANNER III
BasePay                        94484.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       94484.04
TotalPayBenefits               94484.04
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10612, dtype: object)
(10613, Id                             10614
EmployeeName        ELISABETH DOIRON
JobTitle            REGISTERED NURSE
BasePay                     86070.85
OvertimePay                   6749.2
OtherPay                      1662.5
Benefits                         NaN
TotalPay                    94482.55
TotalPayBenefits            94482.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10613, dtype: object)
(10614, Id                                             10615
EmployeeName                             JEAN MEDLAR
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     94468.04
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    94468.04
TotalPayBenefits                            94468.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10614, dtype: object)
(10615, Id                             10616
EmployeeName          ANDREW SIMMONS
JobTitle            TRANSIT OPERATOR
BasePay                     66140.73
OvertimePay                 25643.43
OtherPay                     2675.67
Benefits                         NaN
TotalPay                    94459.83
TotalPayBenefits            94459.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10615, dtype: object)
(10616, Id                                          10617
EmployeeName                            SARAH LUU
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   93399.9
OvertimePay                                   0.0
OtherPay                                  1052.57
Benefits                                      NaN
TotalPay                                 94452.47
TotalPayBenefits                         94452.47
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10616, dtype: object)
(10617, Id                             10618
EmployeeName           AMANDA ECKELS
JobTitle            REGISTERED NURSE
BasePay                     77613.49
OvertimePay                  5190.95
OtherPay                    11629.87
Benefits                         NaN
TotalPay                    94434.31
TotalPayBenefits            94434.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10617, dtype: object)
(10618, Id                           10619
EmployeeName        EDWARD BIANCHI
JobTitle            DEPUTY SHERIFF
BasePay                   84710.75
OvertimePay                3546.03
OtherPay                   6169.52
Benefits                       NaN
TotalPay                   94426.3
TotalPayBenefits           94426.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10618, dtype: object)
(10619, Id                                                    10620
EmployeeName                                JAMIE DI SANGRO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77623.68
OvertimePay                                         6630.88
OtherPay                                           10169.25
Benefits                                                NaN
TotalPay                                           94423.81
TotalPayBenefits                                   94423.81
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10619, dtype: object)
(10620, Id                           10621
EmployeeName             PAULA SHI
JobTitle            COURT REPORTER
BasePay                   83284.74
OvertimePay                    0.0
OtherPay                  11133.17
Benefits                       NaN
TotalPay                  94417.91
TotalPayBenefits          94417.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10620, dtype: object)
(10621, Id                                                    10622
EmployeeName                                      ANDREA NG
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78167.78
OvertimePay                                         6587.81
OtherPay                                            9653.68
Benefits                                                NaN
TotalPay                                           94409.27
TotalPayBenefits                                   94409.27
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10621, dtype: object)
(10622, Id                             10623
EmployeeName              WALTER LEI
JobTitle            TRANSIT OPERATOR
BasePay                      67164.2
OvertimePay                 24248.42
OtherPay                     2995.87
Benefits                         NaN
TotalPay                    94408.49
TotalPayBenefits            94408.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10622, dtype: object)
(10623, Id                                              10624
EmployeeName                              ANDRE MOORE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79710.99
OvertimePay                                   1980.16
OtherPay                                     12716.51
Benefits                                          NaN
TotalPay                                     94407.66
TotalPayBenefits                             94407.66
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10623, dtype: object)
(10624, Id                                              10625
EmployeeName                             DONALD CRAIG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   6698.36
OtherPay                                      7885.16
Benefits                                          NaN
TotalPay                                     94403.52
TotalPayBenefits                             94403.52
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10624, dtype: object)
(10625, Id                                                     10626
EmployeeName                                MARGARET PROVOST
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             80322.01
OvertimePay                                          6755.39
OtherPay                                             7324.65
Benefits                                                 NaN
TotalPay                                            94402.05
TotalPayBenefits                                    94402.05
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10625, dtype: object)
(10626, Id                           10627
EmployeeName             EDWARD TO
JobTitle            DEPUTY SHERIFF
BasePay                   79402.79
OvertimePay                7888.61
OtherPay                   7101.13
Benefits                       NaN
TotalPay                  94392.53
TotalPayBenefits          94392.53
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10626, dtype: object)
(10627, Id                                    10628
EmployeeName                    KENNETH LAU
JobTitle            IS ENGINEER - PRINCIPAL
BasePay                             93285.0
OvertimePay                             0.0
OtherPay                             1102.0
Benefits                                NaN
TotalPay                            94387.0
TotalPayBenefits                    94387.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10627, dtype: object)
(10628, Id                                                    10629
EmployeeName                                  EDGAR VELASCO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77943.54
OvertimePay                                         11739.8
OtherPay                                            4701.37
Benefits                                                NaN
TotalPay                                           94384.71
TotalPayBenefits                                   94384.71
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10628, dtype: object)
(10629, Id                          10630
EmployeeName         EFREN CAMPOS
JobTitle             TRUCK DRIVER
BasePay                  74955.42
OvertimePay              13763.15
OtherPay                   5665.2
Benefits                      NaN
TotalPay                 94383.77
TotalPayBenefits         94383.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10629, dtype: object)
(10630, Id                             10631
EmployeeName         MICHAEL TERRELL
JobTitle            TRANSIT OPERATOR
BasePay                      57232.5
OvertimePay                 35410.17
OtherPay                     1737.18
Benefits                         NaN
TotalPay                    94379.85
TotalPayBenefits            94379.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10630, dtype: object)
(10631, Id                             10632
EmployeeName        RICARDO CUARESMA
JobTitle            TRANSIT OPERATOR
BasePay                     65805.39
OvertimePay                 27006.26
OtherPay                      1552.7
Benefits                         NaN
TotalPay                    94364.35
TotalPayBenefits            94364.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10631, dtype: object)
(10632, Id                             10633
EmployeeName        ANABEL SIMONELLI
JobTitle            MAYORAL STAFF XV
BasePay                     93831.51
OvertimePay                      0.0
OtherPay                      528.92
Benefits                         NaN
TotalPay                    94360.43
TotalPayBenefits            94360.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10632, dtype: object)
(10633, Id                             10634
EmployeeName           TIMOTHY BANKS
JobTitle            TRANSIT OPERATOR
BasePay                     66008.19
OvertimePay                 26109.31
OtherPay                     2242.71
Benefits                         NaN
TotalPay                    94360.21
TotalPayBenefits            94360.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10633, dtype: object)
(10634, Id                                10635
EmployeeName               JOSE ESCOBAR
JobTitle            STATIONARY ENGINEER
BasePay                         72410.1
OvertimePay                     6161.94
OtherPay                       15783.01
Benefits                            NaN
TotalPay                       94355.05
TotalPayBenefits               94355.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10634, dtype: object)
(10635, Id                           10636
EmployeeName          MICHAEL CHIU
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 861.11
OtherPay                   6980.72
Benefits                       NaN
TotalPay                  94347.83
TotalPayBenefits          94347.83
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10635, dtype: object)
(10636, Id                                              10637
EmployeeName                             JAMES FAAITA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   3279.64
OtherPay                                     11245.19
Benefits                                          NaN
TotalPay                                     94344.83
TotalPayBenefits                             94344.83
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10636, dtype: object)
(10637, Id                             10638
EmployeeName            LELANI ANDES
JobTitle            REGISTERED NURSE
BasePay                     90094.54
OvertimePay                   2197.8
OtherPay                     2051.28
Benefits                         NaN
TotalPay                    94343.62
TotalPayBenefits            94343.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10637, dtype: object)
(10638, Id                                                  10639
EmployeeName                             JOHN CASTELLI JR
JobTitle            SENIOR ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                          94341.25
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         94341.25
TotalPayBenefits                                 94341.25
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 10638, dtype: object)
(10639, Id                                10640
EmployeeName               JULIO OROZCO
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    28802.13
OtherPay                         9656.5
Benefits                            NaN
TotalPay                       94338.63
TotalPayBenefits               94338.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10639, dtype: object)
(10640, Id                                             10641
EmployeeName                          MEGHAN WALLACE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     94336.01
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    94336.01
TotalPayBenefits                            94336.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10640, dtype: object)
(10641, Id                                      10642
EmployeeName                     ORIN JOHNSON
JobTitle            COURT TRAINING SPECIALIST
BasePay                               94335.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              94335.6
TotalPayBenefits                      94335.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10641, dtype: object)
(10642, Id                                      10643
EmployeeName                        STEVEN LI
JobTitle            COURT TRAINING SPECIALIST
BasePay                               94335.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              94335.6
TotalPayBenefits                      94335.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10642, dtype: object)
(10643, Id                             10644
EmployeeName                SEUNG WU
JobTitle            REGISTERED NURSE
BasePay                      68376.0
OvertimePay                  1648.35
OtherPay                    24309.55
Benefits                         NaN
TotalPay                     94333.9
TotalPayBenefits             94333.9
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10643, dtype: object)
(10644, Id                                      10645
EmployeeName                    EDUARDO SUNGA
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58800.8
OvertimePay                           24216.2
OtherPay                             11308.93
Benefits                                  NaN
TotalPay                             94325.93
TotalPayBenefits                     94325.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10644, dtype: object)
(10645, Id                                                    10646
EmployeeName                                   KENNETH HART
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77460.31
OvertimePay                                        13296.06
OtherPay                                            3566.17
Benefits                                                NaN
TotalPay                                           94322.54
TotalPayBenefits                                   94322.54
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10645, dtype: object)
(10646, Id                                  10647
EmployeeName            CATHERINE STEFANI
JobTitle            LEGISLATIVE ASSISTANT
BasePay                           90245.0
OvertimePay                           0.0
OtherPay                          4077.37
Benefits                              NaN
TotalPay                         94322.37
TotalPayBenefits                 94322.37
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10646, dtype: object)
(10647, Id                                           10648
EmployeeName                      KIMBERLY O'YOUNG
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.04
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94321.04
TotalPayBenefits                          94321.04
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10647, dtype: object)
(10648, Id                                           10649
EmployeeName                          SUSAN ARDING
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94321.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94321.03
TotalPayBenefits                          94321.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10648, dtype: object)
(10649, Id                                                10650
EmployeeName                           ADELINE GUERRERO
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        94047.01
OvertimePay                                         0.0
OtherPay                                          273.7
Benefits                                            NaN
TotalPay                                       94320.71
TotalPayBenefits                               94320.71
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10649, dtype: object)
(10650, Id                           10651
EmployeeName         GLORIA MARTIN
JobTitle            DEPUTY SHERIFF
BasePay                   85987.61
OvertimePay                1093.07
OtherPay                   7236.45
Benefits                       NaN
TotalPay                  94317.13
TotalPayBenefits          94317.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10650, dtype: object)
(10651, Id                                           10652
EmployeeName                       THOMAS MCGEORGE
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                    94307.2
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   94307.2
TotalPayBenefits                           94307.2
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10651, dtype: object)
(10652, Id                                           10653
EmployeeName                       PATRICIA RUDDEN
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.35
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94299.35
TotalPayBenefits                          94299.35
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10652, dtype: object)
(10653, Id                                           10654
EmployeeName                        ROSA HERNANDEZ
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.35
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94299.35
TotalPayBenefits                          94299.35
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10653, dtype: object)
(10654, Id                                           10655
EmployeeName                          PUNEET KUMTA
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94299.33
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94299.33
TotalPayBenefits                          94299.33
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10654, dtype: object)
(10655, Id                                 10656
EmployeeName        RUTH MENDEZ-MARTINEZ
JobTitle              ASSISTANT ENGINEER
BasePay                         89806.01
OvertimePay                          0.0
OtherPay                         4490.69
Benefits                             NaN
TotalPay                         94296.7
TotalPayBenefits                 94296.7
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10655, dtype: object)
(10656, Id                            10657
EmployeeName        ROBERT RUIGOMEZ
JobTitle                  CARPENTER
BasePay                     77837.5
OvertimePay                14594.54
OtherPay                     1861.5
Benefits                        NaN
TotalPay                   94293.54
TotalPayBenefits           94293.54
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10656, dtype: object)
(10657, Id                           10658
EmployeeName         DAVID DAGUMAN
JobTitle            DEPUTY SHERIFF
BasePay                   85998.34
OvertimePay                2017.47
OtherPay                   6277.22
Benefits                       NaN
TotalPay                  94293.03
TotalPayBenefits          94293.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10657, dtype: object)
(10658, Id                                                     10659
EmployeeName                                   CHERYL WALLER
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             80185.34
OvertimePay                                          9385.14
OtherPay                                              4722.5
Benefits                                                 NaN
TotalPay                                            94292.98
TotalPayBenefits                                    94292.98
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 10658, dtype: object)
(10659, Id                                           10660
EmployeeName                            AISHA LUSK
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   94291.78
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94291.78
TotalPayBenefits                          94291.78
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10659, dtype: object)
(10660, Id                                            10661
EmployeeName                          CHARLES LEWIS
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    74734.08
OvertimePay                                15690.29
OtherPay                                    3865.95
Benefits                                        NaN
TotalPay                                   94290.32
TotalPayBenefits                           94290.32
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10660, dtype: object)
(10661, Id                                                    10662
EmployeeName                                CHARLIE CAPARAS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            72294.32
OvertimePay                                        19304.65
OtherPay                                             2689.7
Benefits                                                NaN
TotalPay                                           94288.67
TotalPayBenefits                                   94288.67
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10661, dtype: object)
(10662, Id                           10663
EmployeeName           MARIE JONES
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                1814.26
OtherPay                   5965.25
Benefits                       NaN
TotalPay                  94285.51
TotalPayBenefits          94285.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10662, dtype: object)
(10663, Id                              10664
EmployeeName        AGUSTIN SALIGUMBA
JobTitle                SPECIAL NURSE
BasePay                      82871.67
OvertimePay                       0.0
OtherPay                     11411.55
Benefits                          NaN
TotalPay                     94283.22
TotalPayBenefits             94283.22
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10663, dtype: object)
(10664, Id                           10665
EmployeeName          RICHARD WONG
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                2535.06
OtherPay                    4906.5
Benefits                       NaN
TotalPay                  94281.56
TotalPayBenefits          94281.56
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10664, dtype: object)
(10665, Id                           10666
EmployeeName         SOTERO SANTOS
JobTitle            DEPUTY SHERIFF
BasePay                   85623.08
OvertimePay                2928.74
OtherPay                   5722.19
Benefits                       NaN
TotalPay                  94274.01
TotalPayBenefits          94274.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10665, dtype: object)
(10666, Id                                 10667
EmployeeName                     ANN KIM
JobTitle            PHYSICIAN SPECIALIST
BasePay                         92081.14
OvertimePay                          0.0
OtherPay                          2187.0
Benefits                             NaN
TotalPay                        94268.14
TotalPayBenefits                94268.14
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10666, dtype: object)
(10667, Id                                                   10668
EmployeeName                                  JUDITH HOGAN
JobTitle            POLICE COMMUNICATIONS SHIFT SUPERVISOR
BasePay                                           84654.79
OvertimePay                                        2891.21
OtherPay                                           6721.15
Benefits                                               NaN
TotalPay                                          94267.15
TotalPayBenefits                                  94267.15
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 10667, dtype: object)
(10668, Id                          10669
EmployeeName        SHELDON MCRAY
JobTitle             CEMENT MASON
BasePay                   68547.2
OvertimePay              23424.79
OtherPay                   2290.0
Benefits                      NaN
TotalPay                 94261.99
TotalPayBenefits         94261.99
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10668, dtype: object)
(10669, Id                                              10670
EmployeeName                              OSCAR GOMEZ
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   6727.53
OtherPay                                      7709.91
Benefits                                          NaN
TotalPay                                     94257.44
TotalPayBenefits                             94257.44
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10669, dtype: object)
(10670, Id                                             10671
EmployeeName                          OKSANA KUZMINA
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     94257.41
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    94257.41
TotalPayBenefits                            94257.41
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10670, dtype: object)
(10671, Id                             10672
EmployeeName            LEONARD OATS
JobTitle            TRANSIT OPERATOR
BasePay                     67059.98
OvertimePay                 24499.88
OtherPay                     2687.26
Benefits                         NaN
TotalPay                    94247.12
TotalPayBenefits            94247.12
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10671, dtype: object)
(10672, Id                               10673
EmployeeName                   JACK WU
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                       4438.65
Benefits                           NaN
TotalPay                      94244.65
TotalPayBenefits              94244.65
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10672, dtype: object)
(10673, Id                           10674
EmployeeName           JUNO BUTLER
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                5821.62
OtherPay                   1581.28
Benefits                       NaN
TotalPay                   94242.9
TotalPayBenefits           94242.9
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10673, dtype: object)
(10674, Id                                10675
EmployeeName        RICARDO PEDROCHE JR
JobTitle               TRANSIT OPERATOR
BasePay                        65216.17
OvertimePay                    27421.65
OtherPay                        1598.69
Benefits                            NaN
TotalPay                       94236.51
TotalPayBenefits               94236.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10674, dtype: object)
(10675, Id                               10676
EmployeeName            RAJENDRA DESAI
JobTitle            ASSISTANT ENGINEER
BasePay                       89952.84
OvertimePay                        0.0
OtherPay                       4282.03
Benefits                           NaN
TotalPay                      94234.87
TotalPayBenefits              94234.87
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10675, dtype: object)
(10676, Id                           10677
EmployeeName           AARON LYNCH
JobTitle            DEPUTY SHERIFF
BasePay                   76442.18
OvertimePay                9020.27
OtherPay                   8766.15
Benefits                       NaN
TotalPay                   94228.6
TotalPayBenefits           94228.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10676, dtype: object)
(10677, Id                             10678
EmployeeName        STEPHEN GOULDING
JobTitle              DEPUTY SHERIFF
BasePay                      86506.0
OvertimePay                  3214.31
OtherPay                     4502.32
Benefits                         NaN
TotalPay                    94222.63
TotalPayBenefits            94222.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10677, dtype: object)
(10678, Id                               10679
EmployeeName              STEVEN GREEN
JobTitle            SHEET METAL WORKER
BasePay                       91690.34
OvertimePay                     616.43
OtherPay                        1912.5
Benefits                           NaN
TotalPay                      94219.27
TotalPayBenefits              94219.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10678, dtype: object)
(10679, Id                                      10680
EmployeeName                      HARVEY FONG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               94196.8
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              94196.8
TotalPayBenefits                      94196.8
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10679, dtype: object)
(10680, Id                                              10681
EmployeeName                           KARINE EZIKYAN
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      94193.21
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     94193.21
TotalPayBenefits                             94193.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10680, dtype: object)
(10681, Id                          10682
EmployeeName           NOE PASION
JobTitle            CABLE SPLICER
BasePay                  94183.74
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94183.74
TotalPayBenefits         94183.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10681, dtype: object)
(10682, Id                                    10683
EmployeeName                     EUGENE LEE
JobTitle            IS ENGINEER - ASSISTANT
BasePay                            86878.42
OvertimePay                             0.0
OtherPay                             7294.2
Benefits                                NaN
TotalPay                           94172.62
TotalPayBenefits                   94172.62
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10682, dtype: object)
(10683, Id                               10684
EmployeeName        HELEN SOREP-MATLEY
JobTitle                COURT REPORTER
BasePay                       77461.01
OvertimePay                        0.0
OtherPay                      16705.52
Benefits                           NaN
TotalPay                      94166.53
TotalPayBenefits              94166.53
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10683, dtype: object)
(10684, Id                                             10685
EmployeeName                         JOSHUA NOSSITER
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      94081.4
OvertimePay                                      0.0
OtherPay                                       78.88
Benefits                                         NaN
TotalPay                                    94160.28
TotalPayBenefits                            94160.28
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10684, dtype: object)
(10685, Id                             10686
EmployeeName             PERRY POOLE
JobTitle            TRANSIT OPERATOR
BasePay                     65767.02
OvertimePay                 25776.77
OtherPay                     2614.38
Benefits                         NaN
TotalPay                    94158.17
TotalPayBenefits            94158.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10685, dtype: object)
(10686, Id                           10687
EmployeeName        MICHAEL RIDEAU
JobTitle            DEPUTY SHERIFF
BasePay                   81572.85
OvertimePay                8190.15
OtherPay                   4392.09
Benefits                       NaN
TotalPay                  94155.09
TotalPayBenefits          94155.09
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10686, dtype: object)
(10687, Id                                           10688
EmployeeName                  MARLO SIMMONS-BRIGGS
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   93627.77
OvertimePay                                    0.0
OtherPay                                     525.0
Benefits                                       NaN
TotalPay                                  94152.77
TotalPayBenefits                          94152.77
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10687, dtype: object)
(10688, Id                            10689
EmployeeName        KENNETH CAMARRA
JobTitle             DEPUTY SHERIFF
BasePay                    86171.17
OvertimePay                 2283.64
OtherPay                     5687.3
Benefits                        NaN
TotalPay                   94142.11
TotalPayBenefits           94142.11
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10688, dtype: object)
(10689, Id                           10690
EmployeeName         SUSAN CROZIER
JobTitle            COURT REPORTER
BasePay                   89233.65
OvertimePay                    0.0
OtherPay                   4907.19
Benefits                       NaN
TotalPay                  94140.84
TotalPayBenefits          94140.84
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10689, dtype: object)
(10690, Id                               10691
EmployeeName              DAVID POWELL
JobTitle            SHEET METAL WORKER
BasePay                       91142.35
OvertimePay                    1027.41
OtherPay                        1968.4
Benefits                           NaN
TotalPay                      94138.16
TotalPayBenefits              94138.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10690, dtype: object)
(10691, Id                          10692
EmployeeName        RAY LANDSTROM
JobTitle              ELECTRICIAN
BasePay                  86595.46
OvertimePay               5763.56
OtherPay                   1760.0
Benefits                      NaN
TotalPay                 94119.02
TotalPayBenefits         94119.02
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10691, dtype: object)
(10692, Id                             10693
EmployeeName         TEODORO BRIONES
JobTitle            TRANSIT OPERATOR
BasePay                     64417.96
OvertimePay                 26266.87
OtherPay                     3421.65
Benefits                         NaN
TotalPay                    94106.48
TotalPayBenefits            94106.48
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10692, dtype: object)
(10693, Id                                                              10694
EmployeeName                                           ROBERT PLATZER
JobTitle            ELECTRICAL TRANSIT MECHANIC, ASSISTANT SUPERVISOR
BasePay                                                       89815.6
OvertimePay                                                   3870.08
OtherPay                                                       417.62
Benefits                                                          NaN
TotalPay                                                      94103.3
TotalPayBenefits                                              94103.3
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 10693, dtype: object)
(10694, Id                           10695
EmployeeName           LANA SLOCUM
JobTitle            DEPUTY SHERIFF
BasePay                   82649.15
OvertimePay                5581.14
OtherPay                   5871.71
Benefits                       NaN
TotalPay                   94102.0
TotalPayBenefits           94102.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10694, dtype: object)
(10695, Id                               10696
EmployeeName                  SANDY NG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.48
OvertimePay                        0.0
OtherPay                        4295.1
Benefits                           NaN
TotalPay                      94101.58
TotalPayBenefits              94101.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10695, dtype: object)
(10696, Id                                          10697
EmployeeName                        MICHAEL KIELY
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   84734.7
OvertimePay                               7661.89
OtherPay                                  1695.68
Benefits                                      NaN
TotalPay                                 94092.27
TotalPayBenefits                         94092.27
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10696, dtype: object)
(10697, Id                                  10698
EmployeeName        SALVADOR GOROSTIZA JR
JobTitle                   DEPUTY SHERIFF
BasePay                           86840.0
OvertimePay                           0.0
OtherPay                          7250.13
Benefits                              NaN
TotalPay                         94090.13
TotalPayBenefits                 94090.13
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10697, dtype: object)
(10698, Id                                         10699
EmployeeName                       REBECCA MAYER
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 94084.67
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                94084.67
TotalPayBenefits                        94084.67
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10698, dtype: object)
(10699, Id                                  10700
EmployeeName                 MARY PACHECO
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92493.79
OvertimePay                           0.0
OtherPay                           1590.0
Benefits                              NaN
TotalPay                         94083.79
TotalPayBenefits                 94083.79
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10699, dtype: object)
(10700, Id                                          10701
EmployeeName                           DIANA CHOW
JobTitle            AIRPORT PROPERTY SPECIALIST I
BasePay                                   94078.6
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  94078.6
TotalPayBenefits                          94078.6
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10700, dtype: object)
(10701, Id                                          10702
EmployeeName                    MATTHEW MCCORMICK
JobTitle            AIRPORT PROPERTY SPECIALIST I
BasePay                                   94078.6
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  94078.6
TotalPayBenefits                          94078.6
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10701, dtype: object)
(10702, Id                                          10703
EmployeeName                          TOMASI TOKI
JobTitle            AIRPORT PROPERTY SPECIALIST I
BasePay                                  94078.58
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 94078.58
TotalPayBenefits                         94078.58
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10702, dtype: object)
(10703, Id                                          10704
EmployeeName                   SHARON MARIE PEREZ
JobTitle            AIRPORT PROPERTY SPECIALIST I
BasePay                                  94078.16
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 94078.16
TotalPayBenefits                         94078.16
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10703, dtype: object)
(10704, Id                                10705
EmployeeName        MARTHA ARROYO-NEVES
JobTitle                  LIBRARIAN III
BasePay                        92370.97
OvertimePay                         0.0
OtherPay                         1707.1
Benefits                            NaN
TotalPay                       94078.07
TotalPayBenefits               94078.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10704, dtype: object)
(10705, Id                                  10706
EmployeeName            PETER SUMMERVILLE
JobTitle            REAL PROPERTY OFFICER
BasePay                          94078.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         94078.01
TotalPayBenefits                 94078.01
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10705, dtype: object)
(10706, Id                                           10707
EmployeeName                             VICKY LEE
JobTitle            ASSISTANT RENTAL MANAGER, PORT
BasePay                                   94078.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  94078.01
TotalPayBenefits                          94078.01
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10706, dtype: object)
(10707, Id                                           10708
EmployeeName                            JOYCE CHAN
JobTitle            ASSISTANT RENTAL MANAGER, PORT
BasePay                                    94078.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   94078.0
TotalPayBenefits                           94078.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10707, dtype: object)
(10708, Id                                           10709
EmployeeName                         MONICO CORRAL
JobTitle            ASSISTANT RENTAL MANAGER, PORT
BasePay                                    94078.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   94078.0
TotalPayBenefits                           94078.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10708, dtype: object)
(10709, Id                            10710
EmployeeName        ANNELIE NILSSON
JobTitle              SPECIAL NURSE
BasePay                    88544.08
OvertimePay                 2475.66
OtherPay                    3055.88
Benefits                        NaN
TotalPay                   94075.62
TotalPayBenefits           94075.62
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10709, dtype: object)
(10710, Id                                           10711
EmployeeName                             VAN LUONG
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   93943.93
OvertimePay                                    0.0
OtherPay                                     120.0
Benefits                                       NaN
TotalPay                                  94063.93
TotalPayBenefits                          94063.93
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10710, dtype: object)
(10711, Id                             10712
EmployeeName          DANILO CELESTE
JobTitle            TRANSIT OPERATOR
BasePay                     66722.83
OvertimePay                 25236.69
OtherPay                     2099.89
Benefits                         NaN
TotalPay                    94059.41
TotalPayBenefits            94059.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10711, dtype: object)
(10712, Id                                          10713
EmployeeName                         SHAWN MIYAKI
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90111.89
OvertimePay                               3169.84
OtherPay                                    777.0
Benefits                                      NaN
TotalPay                                 94058.73
TotalPayBenefits                         94058.73
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10712, dtype: object)
(10713, Id                                     10714
EmployeeName                   HENSON GAWLIU
JobTitle            ENGINEERING ASSOCIATE II
BasePay                             85940.03
OvertimePay                          5158.85
OtherPay                             2948.78
Benefits                                 NaN
TotalPay                            94047.66
TotalPayBenefits                    94047.66
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10713, dtype: object)
(10714, Id                                                10715
EmployeeName                           GABRIEL CALVILLO
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        94047.06
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       94047.06
TotalPayBenefits                               94047.06
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10714, dtype: object)
(10715, Id                                        10716
EmployeeName                           MA SABAI
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                94041.25
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               94041.25
TotalPayBenefits                       94041.25
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 10715, dtype: object)
(10716, Id                              10717
EmployeeName            NOIDA CAPAPAS
JobTitle            NURSING ASSISTANT
BasePay                      59841.12
OvertimePay                  28806.73
OtherPay                      5392.29
Benefits                          NaN
TotalPay                     94040.14
TotalPayBenefits             94040.14
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10716, dtype: object)
(10717, Id                                  10718
EmployeeName                  MYRNA STONE
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92493.81
OvertimePay                           0.0
OtherPay                           1544.0
Benefits                              NaN
TotalPay                         94037.81
TotalPayBenefits                 94037.81
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10717, dtype: object)
(10718, Id                          10719
EmployeeName          THOMAS WANG
JobTitle              PLANNER III
BasePay                  94027.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 94027.54
TotalPayBenefits         94027.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10718, dtype: object)
(10719, Id                           10720
EmployeeName        ROBERT RUSSELL
JobTitle             CABLE SPLICER
BasePay                   94023.69
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  94023.69
TotalPayBenefits          94023.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10719, dtype: object)
(10720, Id                           10721
EmployeeName          TIMOTHY MAYO
JobTitle            DEPUTY SHERIFF
BasePay                   81377.95
OvertimePay                3575.84
OtherPay                    9068.1
Benefits                       NaN
TotalPay                  94021.89
TotalPayBenefits          94021.89
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10720, dtype: object)
(10721, Id                             10722
EmployeeName               ANNA SHIF
JobTitle            REGISTERED NURSE
BasePay                     91689.76
OvertimePay                    406.8
OtherPay                     1911.38
Benefits                         NaN
TotalPay                    94007.94
TotalPayBenefits            94007.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10721, dtype: object)
(10722, Id                              10723
EmployeeName        SHANNON MACFARLAN
JobTitle             REGISTERED NURSE
BasePay                      87401.39
OvertimePay                   2984.02
OtherPay                      3619.05
Benefits                          NaN
TotalPay                     94004.46
TotalPayBenefits             94004.46
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10722, dtype: object)
(10723, Id                           10724
EmployeeName           JOHNSON BUI
JobTitle            DEPUTY SHERIFF
BasePay                    80831.2
OvertimePay                4041.09
OtherPay                   9132.16
Benefits                       NaN
TotalPay                  94004.45
TotalPayBenefits          94004.45
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10723, dtype: object)
(10724, Id                                        10725
EmployeeName                   ANGELITO BARRERA
JobTitle            SENIOR POWER HOUSE OPERATOR
BasePay                                 80302.0
OvertimePay                             9472.41
OtherPay                                 4226.8
Benefits                                    NaN
TotalPay                               94001.21
TotalPayBenefits                       94001.21
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 10724, dtype: object)
(10725, Id                                                10726
EmployeeName                             DANIEL MAGUIRE
JobTitle            ORNAMENTAL IRON WORKER SUPERVISOR I
BasePay                                         93436.0
OvertimePay                                       564.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                        94000.0
TotalPayBenefits                                94000.0
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10725, dtype: object)
(10726, Id                                               10727
EmployeeName                          PETRONIO ANCHETA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        76029.6
OvertimePay                                   17534.25
OtherPay                                         435.0
Benefits                                           NaN
TotalPay                                      93998.85
TotalPayBenefits                              93998.85
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10726, dtype: object)
(10727, Id                                                      10728
EmployeeName                                        ERIC LACH
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93995.99
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93995.99
TotalPayBenefits                                     93995.99
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10727, dtype: object)
(10728, Id                                              10729
EmployeeName                            MARLON BROSAS
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      83132.71
OvertimePay                                   4238.79
OtherPay                                      6619.18
Benefits                                          NaN
TotalPay                                     93990.68
TotalPayBenefits                             93990.68
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10728, dtype: object)
(10729, Id                                     10730
EmployeeName                       VICKY LEI
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              92858.0
OvertimePay                              0.0
OtherPay                              1130.0
Benefits                                 NaN
TotalPay                             93988.0
TotalPayBenefits                     93988.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10729, dtype: object)
(10730, Id                          10731
EmployeeName        JILL RAYCROFT
JobTitle              PLANNER III
BasePay                  91360.94
OvertimePay                   0.0
OtherPay                  2624.92
Benefits                      NaN
TotalPay                 93985.86
TotalPayBenefits         93985.86
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10730, dtype: object)
(10731, Id                                              10732
EmployeeName                           CHARLES BENDER
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79941.85
OvertimePay                                   6144.93
OtherPay                                      7896.33
Benefits                                          NaN
TotalPay                                     93983.11
TotalPayBenefits                             93983.11
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10731, dtype: object)
(10732, Id                                              10733
EmployeeName                           CELSO PATRICIO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   6194.78
OtherPay                                      7963.98
Benefits                                          NaN
TotalPay                                     93978.76
TotalPayBenefits                             93978.76
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10732, dtype: object)
(10733, Id                                 10734
EmployeeName               VALERI SHILOV
JobTitle            IS ADMINISTRATOR III
BasePay                         93978.12
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        93978.12
TotalPayBenefits                93978.12
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10733, dtype: object)
(10734, Id                                   10735
EmployeeName                 JONATHAN FUNG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83664.56
OvertimePay                        3950.29
OtherPay                           6361.55
Benefits                               NaN
TotalPay                           93976.4
TotalPayBenefits                   93976.4
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10734, dtype: object)
(10735, Id                               10736
EmployeeName         PAMELA HORENSTEIN
JobTitle            SPEECH PATHOLOGIST
BasePay                       93864.63
OvertimePay                        0.0
OtherPay                         100.0
Benefits                           NaN
TotalPay                      93964.63
TotalPayBenefits              93964.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10735, dtype: object)
(10736, Id                                   10737
EmployeeName                 KEVIN JOHNSON
JobTitle            CARPENTER SUPERVISOR I
BasePay                           93964.41
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          93964.41
TotalPayBenefits                  93964.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10736, dtype: object)
(10737, Id                                10738
EmployeeName              ENRIQUE DULAY
JobTitle            STATIONARY ENGINEER
BasePay                        71714.28
OvertimePay                     7530.03
OtherPay                       14713.28
Benefits                            NaN
TotalPay                       93957.59
TotalPayBenefits               93957.59
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10737, dtype: object)
(10738, Id                                              10739
EmployeeName                           CHERYL KIRKSEY
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      87402.12
OvertimePay                                       0.0
OtherPay                                      6555.19
Benefits                                          NaN
TotalPay                                     93957.31
TotalPayBenefits                             93957.31
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10738, dtype: object)
(10739, Id                          10740
EmployeeName        LAUREN DELONG
JobTitle            SPECIAL NURSE
BasePay                   90621.2
OvertimePay                   0.0
OtherPay                  3329.63
Benefits                      NaN
TotalPay                 93950.83
TotalPayBenefits         93950.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10739, dtype: object)
(10740, Id                           10741
EmployeeName        CHARLES FOLGER
JobTitle            DEPUTY SHERIFF
BasePay                   83769.72
OvertimePay                8731.62
OtherPay                   1449.48
Benefits                       NaN
TotalPay                  93950.82
TotalPayBenefits          93950.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10740, dtype: object)
(10741, Id                                10742
EmployeeName              JESUS SANTOYO
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                    15928.11
OtherPay                         5611.4
Benefits                            NaN
TotalPay                       93949.51
TotalPayBenefits               93949.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10741, dtype: object)
(10742, Id                             10743
EmployeeName        GERARDO GONZALEZ
JobTitle            TRANSIT OPERATOR
BasePay                     64389.63
OvertimePay                 27084.41
OtherPay                     2467.29
Benefits                         NaN
TotalPay                    93941.33
TotalPayBenefits            93941.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10742, dtype: object)
(10743, Id                                      10744
EmployeeName                 MARICAR GRATUITO
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               93931.3
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              93931.3
TotalPayBenefits                      93931.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10743, dtype: object)
(10744, Id                               10745
EmployeeName               HARLAND LEE
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                     2572.0
OtherPay                        3294.0
Benefits                           NaN
TotalPay                       93928.0
TotalPayBenefits               93928.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10744, dtype: object)
(10745, Id                          10746
EmployeeName          GREGORY LOW
JobTitle              STEAMFITTER
BasePay                  89371.81
OvertimePay                   0.0
OtherPay                  4556.19
Benefits                      NaN
TotalPay                  93928.0
TotalPayBenefits          93928.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10745, dtype: object)
(10746, Id                                             10747
EmployeeName                            BRETT BECKER
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     90041.67
OvertimePay                                      0.0
OtherPay                                     3883.08
Benefits                                         NaN
TotalPay                                    93924.75
TotalPayBenefits                            93924.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10746, dtype: object)
(10747, Id                                   10748
EmployeeName              ENRIQUE ENRIQUEZ
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           76990.47
OvertimePay                       10252.28
OtherPay                           6659.44
Benefits                               NaN
TotalPay                          93902.19
TotalPayBenefits                  93902.19
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10747, dtype: object)
(10748, Id                               10749
EmployeeName             WYATT VALARIS
JobTitle            TRANSIT SUPERVISOR
BasePay                       87977.32
OvertimePay                     3483.7
OtherPay                        2437.1
Benefits                           NaN
TotalPay                      93898.12
TotalPayBenefits              93898.12
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10748, dtype: object)
(10749, Id                                10750
EmployeeName              LINDA COCHRAN
JobTitle            BENEFITS SUPERVISOR
BasePay                        93895.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       93895.62
TotalPayBenefits               93895.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10749, dtype: object)
(10750, Id                                               10751
EmployeeName                             PETER NEGRONE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    8725.13
OtherPay                                       7588.49
Benefits                                           NaN
TotalPay                                      93894.02
TotalPayBenefits                              93894.02
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10750, dtype: object)
(10751, Id                           10752
EmployeeName        PETER PETRUCCI
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                 761.52
OtherPay                   6291.68
Benefits                       NaN
TotalPay                  93893.21
TotalPayBenefits          93893.21
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10751, dtype: object)
(10752, Id                           10753
EmployeeName        GARY SILVESTRI
JobTitle             FUSION WELDER
BasePay                   88987.85
OvertimePay                 872.85
OtherPay                   4027.32
Benefits                       NaN
TotalPay                  93888.02
TotalPayBenefits          93888.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10752, dtype: object)
(10753, Id                                             10754
EmployeeName                           JESSICA RANGE
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     93887.68
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    93887.68
TotalPayBenefits                            93887.68
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10753, dtype: object)
(10754, Id                                10755
EmployeeName               JOHN BUCK-JR
JobTitle            STATIONARY ENGINEER
BasePay                        72410.01
OvertimePay                     2165.78
OtherPay                       19311.32
Benefits                            NaN
TotalPay                       93887.11
TotalPayBenefits               93887.11
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10754, dtype: object)
(10755, Id                             10756
EmployeeName            JULIO MOLINA
JobTitle            TRANSIT OPERATOR
BasePay                      68186.5
OvertimePay                 22003.17
OtherPay                     3690.63
Benefits                         NaN
TotalPay                     93880.3
TotalPayBenefits             93880.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10755, dtype: object)
(10756, Id                                                   10757
EmployeeName                                JOHN MCCLELLEN
JobTitle            SUPERVISING WELFARE FRAUD INVESTIGATOR
BasePay                                           93878.75
OvertimePay                                            0.0
OtherPay                                               0.0
Benefits                                               NaN
TotalPay                                          93878.75
TotalPayBenefits                                  93878.75
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 10756, dtype: object)
(10757, Id                                      10758
EmployeeName                    BRADLEY RUSSI
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              93878.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             93878.64
TotalPayBenefits                     93878.64
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10757, dtype: object)
(10758, Id                                                10759
EmployeeName                            BETTE AGPALASIN
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60193.0
OvertimePay                                    28437.91
OtherPay                                         5243.9
Benefits                                            NaN
TotalPay                                       93874.81
TotalPayBenefits                               93874.81
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10758, dtype: object)
(10759, Id                                            10760
EmployeeName                        LUIS RECINOS JR
JobTitle            SENIOR COUNSELOR, JUVENILE HALL
BasePay                                    74623.33
OvertimePay                                15713.17
OtherPay                                    3532.23
Benefits                                        NaN
TotalPay                                   93868.73
TotalPayBenefits                           93868.73
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10759, dtype: object)
(10760, Id                                  10761
EmployeeName                    TONI JUNG
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           92473.4
OvertimePay                           0.0
OtherPay                          1390.69
Benefits                              NaN
TotalPay                         93864.09
TotalPayBenefits                 93864.09
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10760, dtype: object)
(10761, Id                             10762
EmployeeName          ARCHIE HUFF JR
JobTitle            TRANSIT OPERATOR
BasePay                     66120.68
OvertimePay                 25471.38
OtherPay                     2269.21
Benefits                         NaN
TotalPay                    93861.27
TotalPayBenefits            93861.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10761, dtype: object)
(10762, Id                                           10763
EmployeeName                             ELSA LAMB
JobTitle            ASSISTANT RENTAL MANAGER, PORT
BasePay                                   93861.11
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  93861.11
TotalPayBenefits                          93861.11
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10762, dtype: object)
(10763, Id                               10764
EmployeeName               MIKE BRODER
JobTitle            SHEET METAL WORKER
BasePay                        91325.0
OvertimePay                     513.69
OtherPay                        2016.5
Benefits                           NaN
TotalPay                      93855.19
TotalPayBenefits              93855.19
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10763, dtype: object)
(10764, Id                             10765
EmployeeName            STEPHEN WONG
JobTitle            TRANSIT OPERATOR
BasePay                     68411.12
OvertimePay                 24250.35
OtherPay                     1193.41
Benefits                         NaN
TotalPay                    93854.88
TotalPayBenefits            93854.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10764, dtype: object)
(10765, Id                                                      10766
EmployeeName                                  CHRISTINE SILVA
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.13
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.13
TotalPayBenefits                                     93837.13
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10765, dtype: object)
(10766, Id                                                      10767
EmployeeName                                 RUMELLA GALLOFIN
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.11
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.11
TotalPayBenefits                                     93837.11
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10766, dtype: object)
(10767, Id                                                      10768
EmployeeName                                 ANTHONY LACATENA
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                               93837.1
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                              93837.1
TotalPayBenefits                                      93837.1
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10767, dtype: object)
(10768, Id                                                      10769
EmployeeName                                       SONNY KOYA
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.08
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.08
TotalPayBenefits                                     93837.08
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10768, dtype: object)
(10769, Id                                                      10770
EmployeeName                                 ELIZABETH MCMATH
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.08
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.08
TotalPayBenefits                                     93837.08
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10769, dtype: object)
(10770, Id                                                      10771
EmployeeName                               CAROLINA REYES OUK
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.07
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.07
TotalPayBenefits                                     93837.07
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10770, dtype: object)
(10771, Id                                                      10772
EmployeeName                                     LESLI POWERS
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.04
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.04
TotalPayBenefits                                     93837.04
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10771, dtype: object)
(10772, Id                                                      10773
EmployeeName                                 CATHERINE VALDEZ
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.03
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.03
TotalPayBenefits                                     93837.03
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10772, dtype: object)
(10773, Id                                                      10774
EmployeeName                                     WILLIAM GAGE
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.02
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.02
TotalPayBenefits                                     93837.02
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10773, dtype: object)
(10774, Id                                                      10775
EmployeeName                                     TARA COLLINS
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.01
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.01
TotalPayBenefits                                     93837.01
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10774, dtype: object)
(10775, Id                                                      10776
EmployeeName                                  BRENDAN PATRICK
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93837.01
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93837.01
TotalPayBenefits                                     93837.01
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10775, dtype: object)
(10776, Id                                                      10777
EmployeeName                                SHAYNE GILBERTSON
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                               93837.0
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                              93837.0
TotalPayBenefits                                      93837.0
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10776, dtype: object)
(10777, Id                                   10778
EmployeeName                    SEAN GARDE
JobTitle            ELECTRICAL LINE HELPER
BasePay                           72394.51
OvertimePay                       21440.23
OtherPay                               0.0
Benefits                               NaN
TotalPay                          93834.74
TotalPayBenefits                  93834.74
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10777, dtype: object)
(10778, Id                             10779
EmployeeName               JOSE MEZA
JobTitle            TRANSIT OPERATOR
BasePay                     66479.04
OvertimePay                 26008.65
OtherPay                     1342.14
Benefits                         NaN
TotalPay                    93829.83
TotalPayBenefits            93829.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10778, dtype: object)
(10779, Id                              10780
EmployeeName          LEONITA WHEARTY
JobTitle            NURSING ASSISTANT
BasePay                      60199.13
OvertimePay                  28329.48
OtherPay                      5297.06
Benefits                          NaN
TotalPay                     93825.67
TotalPayBenefits             93825.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10779, dtype: object)
(10780, Id                           10781
EmployeeName          TOI CHUNG SU
JobTitle            DEPUTY SHERIFF
BasePay                   86506.08
OvertimePay                1347.69
OtherPay                   5965.27
Benefits                       NaN
TotalPay                  93819.04
TotalPayBenefits          93819.04
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10780, dtype: object)
(10781, Id                                 10782
EmployeeName               PAULA MICHAEL
JobTitle            TRAINING COORDINATOR
BasePay                          93815.8
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         93815.8
TotalPayBenefits                 93815.8
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10781, dtype: object)
(10782, Id                               10783
EmployeeName                RYAN LOUIE
JobTitle            ASSISTANT ENGINEER
BasePay                       79817.02
OvertimePay                        0.0
OtherPay                       13997.5
Benefits                           NaN
TotalPay                      93814.52
TotalPayBenefits              93814.52
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10782, dtype: object)
(10783, Id                           10784
EmployeeName           DIEGO PEREZ
JobTitle            DEPUTY SHERIFF
BasePay                    84499.1
OvertimePay                 5002.3
OtherPay                   4303.03
Benefits                       NaN
TotalPay                  93804.43
TotalPayBenefits          93804.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10783, dtype: object)
(10784, Id                               10785
EmployeeName              ROLAND PEREZ
JobTitle            SHEET METAL WORKER
BasePay                       91690.31
OvertimePay                        0.0
OtherPay                        2110.0
Benefits                           NaN
TotalPay                      93800.31
TotalPayBenefits              93800.31
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10784, dtype: object)
(10785, Id                                                    10786
EmployeeName                                    DAVID SOLIS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78022.03
OvertimePay                                         6926.29
OtherPay                                            8842.06
Benefits                                                NaN
TotalPay                                           93790.38
TotalPayBenefits                                   93790.38
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10785, dtype: object)
(10786, Id                            10787
EmployeeName        GEORGE COVIELLO
JobTitle             DEPUTY SHERIFF
BasePay                    86840.01
OvertimePay                 1636.78
OtherPay                    5300.77
Benefits                        NaN
TotalPay                   93777.56
TotalPayBenefits           93777.56
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10786, dtype: object)
(10787, Id                             10788
EmployeeName           POLLY BRIGHAM
JobTitle            TRANSIT OPERATOR
BasePay                     65066.51
OvertimePay                 26104.08
OtherPay                     2601.52
Benefits                         NaN
TotalPay                    93772.11
TotalPayBenefits            93772.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10787, dtype: object)
(10788, Id                                             10789
EmployeeName                             JOSEPH THAM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     93762.88
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    93762.88
TotalPayBenefits                            93762.88
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10788, dtype: object)
(10789, Id                                  10790
EmployeeName         VILMA ENTRENAS-YEPEZ
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92495.34
OvertimePay                           0.0
OtherPay                          1262.56
Benefits                              NaN
TotalPay                          93757.9
TotalPayBenefits                  93757.9
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10789, dtype: object)
(10790, Id                                10791
EmployeeName               LAWRENCE TOM
JobTitle            STATIONARY ENGINEER
BasePay                        72411.04
OvertimePay                     10877.5
OtherPay                        10467.1
Benefits                            NaN
TotalPay                       93755.64
TotalPayBenefits               93755.64
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10790, dtype: object)
(10791, Id                                                      10792
EmployeeName                             KRISTIN ANN ORRANTIA
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93738.45
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93738.45
TotalPayBenefits                                     93738.45
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10791, dtype: object)
(10792, Id                           10793
EmployeeName                TY TEK
JobTitle            DEPUTY SHERIFF
BasePay                    86629.4
OvertimePay                 2867.6
OtherPay                   4240.16
Benefits                       NaN
TotalPay                  93737.16
TotalPayBenefits          93737.16
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10792, dtype: object)
(10793, Id                               10794
EmployeeName          CHRISTINA BAILEY
JobTitle            BUILDING INSPECTOR
BasePay                       89270.66
OvertimePay                        0.0
OtherPay                       4464.44
Benefits                           NaN
TotalPay                       93735.1
TotalPayBenefits               93735.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10793, dtype: object)
(10794, Id                          10795
EmployeeName         JUDY LIZARDO
JobTitle            SPECIAL NURSE
BasePay                  79331.35
OvertimePay                1253.7
OtherPay                 13149.92
Benefits                      NaN
TotalPay                 93734.97
TotalPayBenefits         93734.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10794, dtype: object)
(10795, Id                                          10796
EmployeeName                    ARMANDO SOLORZANO
JobTitle            ASPHALT FINISHER SUPERVISOR I
BasePay                                   81170.4
OvertimePay                               6542.91
OtherPay                                  6018.84
Benefits                                      NaN
TotalPay                                 93732.15
TotalPayBenefits                         93732.15
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10795, dtype: object)
(10796, Id                           10797
EmployeeName          MICHAEL LOOS
JobTitle            DEPUTY SHERIFF
BasePay                   82549.37
OvertimePay                  784.7
OtherPay                  10396.94
Benefits                       NaN
TotalPay                  93731.01
TotalPayBenefits          93731.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10796, dtype: object)
(10797, Id                                        10798
EmployeeName                        WINSLEY YEE
JobTitle            SENIOR POWER HOUSE OPERATOR
BasePay                                 80302.0
OvertimePay                            13005.59
OtherPay                                 422.75
Benefits                                    NaN
TotalPay                               93730.34
TotalPayBenefits                       93730.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 10797, dtype: object)
(10798, Id                              10799
EmployeeName           LYDIA DELACRUZ
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  28631.79
OtherPay                       4891.2
Benefits                          NaN
TotalPay                     93729.59
TotalPayBenefits             93729.59
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10798, dtype: object)
(10799, Id                                 10800
EmployeeName        SILVIA SOBAL-HERRERA
JobTitle                REGISTERED NURSE
BasePay                         93058.27
OvertimePay                          0.0
OtherPay                          665.14
Benefits                             NaN
TotalPay                        93723.41
TotalPayBenefits                93723.41
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10799, dtype: object)
(10800, Id                             10801
EmployeeName         SAMUEL ESPINOSA
JobTitle            TRANSIT OPERATOR
BasePay                     66442.14
OvertimePay                  21361.7
OtherPay                     5917.31
Benefits                         NaN
TotalPay                    93721.15
TotalPayBenefits            93721.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10800, dtype: object)
(10801, Id                                                10802
EmployeeName                              LINAFLOR HUAB
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60206.6
OvertimePay                                    27161.13
OtherPay                                         6349.5
Benefits                                            NaN
TotalPay                                       93717.23
TotalPayBenefits                               93717.23
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10801, dtype: object)
(10802, Id                                         10803
EmployeeName                         PETER TRINH
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 93709.42
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                93709.42
TotalPayBenefits                        93709.42
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10802, dtype: object)
(10803, Id                                   10804
EmployeeName        OLGA YAKIMOVICH-MAURER
JobTitle             CLINICAL PSYCHOLOGIST
BasePay                           92217.86
OvertimePay                            0.0
OtherPay                            1480.0
Benefits                               NaN
TotalPay                          93697.86
TotalPayBenefits                  93697.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10803, dtype: object)
(10804, Id                             10805
EmployeeName        CLIFFORD SCHLINK
JobTitle              DEPUTY SHERIFF
BasePay                      86840.0
OvertimePay                  2799.95
OtherPay                     4056.01
Benefits                         NaN
TotalPay                    93695.96
TotalPayBenefits            93695.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10804, dtype: object)
(10805, Id                                10806
EmployeeName            DANIEL PROVENCE
JobTitle            TRANSIT PLANNER III
BasePay                        93574.79
OvertimePay                         0.0
OtherPay                          120.0
Benefits                            NaN
TotalPay                       93694.79
TotalPayBenefits               93694.79
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10805, dtype: object)
(10806, Id                                10807
EmployeeName                    KWE LEE
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72198.1
OvertimePay                     6017.76
OtherPay                       15475.29
Benefits                            NaN
TotalPay                       93691.15
TotalPayBenefits               93691.15
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10806, dtype: object)
(10807, Id                                10808
EmployeeName             MIGUEL CARO JR
JobTitle            STATIONARY ENGINEER
BasePay                        72420.69
OvertimePay                     2665.79
OtherPay                       18596.26
Benefits                            NaN
TotalPay                       93682.74
TotalPayBenefits               93682.74
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10807, dtype: object)
(10808, Id                             10809
EmployeeName           JOANNE MORRIS
JobTitle            REGISTERED NURSE
BasePay                     91672.69
OvertimePay                      0.0
OtherPay                     2007.84
Benefits                         NaN
TotalPay                    93680.53
TotalPayBenefits            93680.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10808, dtype: object)
(10809, Id                          10810
EmployeeName        LAYLA WELBORN
JobTitle            SPECIAL NURSE
BasePay                  80683.54
OvertimePay               8809.03
OtherPay                  4184.31
Benefits                      NaN
TotalPay                 93676.88
TotalPayBenefits         93676.88
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10809, dtype: object)
(10810, Id                             10811
EmployeeName                 LE BANH
JobTitle            TRANSIT OPERATOR
BasePay                      67349.3
OvertimePay                 23507.62
OtherPay                     2818.47
Benefits                         NaN
TotalPay                    93675.39
TotalPayBenefits            93675.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10810, dtype: object)
(10811, Id                                              10812
EmployeeName                            OSCAR ROSALES
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      73659.61
OvertimePay                                  17455.66
OtherPay                                       2558.5
Benefits                                          NaN
TotalPay                                     93673.77
TotalPayBenefits                             93673.77
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10811, dtype: object)
(10812, Id                                                10813
EmployeeName                            KEITH DEMARTINI
JobTitle            PRINCIPAL ADMINISTRATIVE ANAYLST II
BasePay                                         93670.7
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                        93670.7
TotalPayBenefits                                93670.7
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10812, dtype: object)
(10813, Id                                                       10814
EmployeeName                           SONIA DELGADO-SCHAUMBER
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               93670.05
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              93670.05
TotalPayBenefits                                      93670.05
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10813, dtype: object)
(10814, Id                             10815
EmployeeName             ALBERT CHAN
JobTitle            TRANSIT OPERATOR
BasePay                     68271.47
OvertimePay                 22636.44
OtherPay                     2761.02
Benefits                         NaN
TotalPay                    93668.93
TotalPayBenefits            93668.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10814, dtype: object)
(10815, Id                                               10816
EmployeeName                          SUSHMA DHULIPALA
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                       93662.36
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      93662.36
TotalPayBenefits                              93662.36
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10815, dtype: object)
(10816, Id                                10817
EmployeeName                 KINGMAN MA
JobTitle            STATIONARY ENGINEER
BasePay                         72484.2
OvertimePay                    10369.09
OtherPay                       10795.25
Benefits                            NaN
TotalPay                       93648.54
TotalPayBenefits               93648.54
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10816, dtype: object)
(10817, Id                                                    10818
EmployeeName                                   JIM DIMODICA
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87407.95
OvertimePay                                          2356.1
OtherPay                                            3884.27
Benefits                                                NaN
TotalPay                                           93648.32
TotalPayBenefits                                   93648.32
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10817, dtype: object)
(10818, Id                            10819
EmployeeName        RICHARD MORALES
JobTitle                    PAINTER
BasePay                     70125.6
OvertimePay                20099.82
OtherPay                    3419.75
Benefits                        NaN
TotalPay                   93645.17
TotalPayBenefits           93645.17
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10818, dtype: object)
(10819, Id                           10820
EmployeeName         ROBERT RODRIN
JobTitle            DEPUTY SHERIFF
BasePay                   82814.61
OvertimePay                1669.67
OtherPay                   9148.46
Benefits                       NaN
TotalPay                  93632.74
TotalPayBenefits          93632.74
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10819, dtype: object)
(10820, Id                           10821
EmployeeName         CURTIS TAYLOR
JobTitle            DEPUTY SHERIFF
BasePay                   74182.49
OvertimePay               11709.07
OtherPay                   7741.04
Benefits                       NaN
TotalPay                   93632.6
TotalPayBenefits           93632.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10820, dtype: object)
(10821, Id                            10822
EmployeeName        HELEN VOZENILEK
JobTitle                ELECTRICIAN
BasePay                    87261.19
OvertimePay                 5055.77
OtherPay                     1310.7
Benefits                        NaN
TotalPay                   93627.66
TotalPayBenefits           93627.66
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10821, dtype: object)
(10822, Id                                 10823
EmployeeName        ALAN DELLA  MAGGIORA
JobTitle                     ELECTRICIAN
BasePay                          89394.0
OvertimePay                       4053.6
OtherPay                           180.0
Benefits                             NaN
TotalPay                         93627.6
TotalPayBenefits                 93627.6
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10822, dtype: object)
(10823, Id                                          10824
EmployeeName                       RANDY RADOVICH
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   84394.4
OvertimePay                               7212.73
OtherPay                                  2001.16
Benefits                                      NaN
TotalPay                                 93608.29
TotalPayBenefits                         93608.29
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10823, dtype: object)
(10824, Id                          10825
EmployeeName         DANA KETCHAM
JobTitle                MANAGER I
BasePay                  93585.91
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 93585.91
TotalPayBenefits         93585.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10824, dtype: object)
(10825, Id                           10826
EmployeeName        JUSTIN CABULOY
JobTitle            DEPUTY SHERIFF
BasePay                   85436.61
OvertimePay                2993.54
OtherPay                    5154.2
Benefits                       NaN
TotalPay                  93584.35
TotalPayBenefits          93584.35
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10825, dtype: object)
(10826, Id                                      10827
EmployeeName                         YING YAN
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               93577.3
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              93577.3
TotalPayBenefits                      93577.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10826, dtype: object)
(10827, Id                              10828
EmployeeName        BARRY CHAMBERLAIN
JobTitle             TRANSIT OPERATOR
BasePay                      66717.56
OvertimePay                   21105.6
OtherPay                      5753.16
Benefits                          NaN
TotalPay                     93576.32
TotalPayBenefits             93576.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10827, dtype: object)
(10828, Id                             10829
EmployeeName          OSCAR COLLAZOS
JobTitle            TRANSIT OPERATOR
BasePay                     63353.48
OvertimePay                 29109.74
OtherPay                     1112.11
Benefits                         NaN
TotalPay                    93575.33
TotalPayBenefits            93575.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10828, dtype: object)
(10829, Id                                                    10830
EmployeeName                                    SUSAN LEACH
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78162.42
OvertimePay                                        11657.44
OtherPay                                            3745.57
Benefits                                                NaN
TotalPay                                           93565.43
TotalPayBenefits                                   93565.43
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10829, dtype: object)
(10830, Id                                                 10831
EmployeeName                              MICHAEL RIVERA
JobTitle            WIRE ROPE CABLE MAINTENANCE MECHANIC
BasePay                                          74932.0
OvertimePay                                      5459.67
OtherPay                                        13171.83
Benefits                                             NaN
TotalPay                                         93563.5
TotalPayBenefits                                 93563.5
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 10830, dtype: object)
(10831, Id                                         10832
EmployeeName                       DANIEL FICKER
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 93551.93
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                93551.93
TotalPayBenefits                        93551.93
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10831, dtype: object)
(10832, Id                                   10833
EmployeeName                     PETER ONG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            75690.3
OvertimePay                       12933.26
OtherPay                           4924.62
Benefits                               NaN
TotalPay                          93548.18
TotalPayBenefits                  93548.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10832, dtype: object)
(10833, Id                             10834
EmployeeName          ARTHUR JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     62691.32
OvertimePay                  28515.7
OtherPay                     2328.96
Benefits                         NaN
TotalPay                    93535.98
TotalPayBenefits            93535.98
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10833, dtype: object)
(10834, Id                                                    10835
EmployeeName                                JOSEPH SAN JUAN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            71389.83
OvertimePay                                        18603.22
OtherPay                                            3534.02
Benefits                                                NaN
TotalPay                                           93527.07
TotalPayBenefits                                   93527.07
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10834, dtype: object)
(10835, Id                               10836
EmployeeName        JENJEROME FERNANDO
JobTitle                DEPUTY SHERIFF
BasePay                       85982.46
OvertimePay                    1964.61
OtherPay                       5576.47
Benefits                           NaN
TotalPay                      93523.54
TotalPayBenefits              93523.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10835, dtype: object)
(10836, Id                             10837
EmployeeName        MIKE AGELOPOULOS
JobTitle             UTILITY PLUMBER
BasePay                      84091.7
OvertimePay                  3126.61
OtherPay                     6301.72
Benefits                         NaN
TotalPay                    93520.03
TotalPayBenefits            93520.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10836, dtype: object)
(10837, Id                             10838
EmployeeName           JENIFER REYES
JobTitle            REGISTERED NURSE
BasePay                     88569.92
OvertimePay                   1950.2
OtherPay                     2999.31
Benefits                         NaN
TotalPay                    93519.43
TotalPayBenefits            93519.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10837, dtype: object)
(10838, Id                             10839
EmployeeName         KAREN HENDERSON
JobTitle            MAYORAL STAFF XV
BasePay                      93514.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     93514.0
TotalPayBenefits             93514.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10838, dtype: object)
(10839, Id                             10840
EmployeeName        THEODORE SUJISHI
JobTitle               CABLE SPLICER
BasePay                     93480.75
OvertimePay                      0.0
OtherPay                       33.05
Benefits                         NaN
TotalPay                     93513.8
TotalPayBenefits             93513.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10839, dtype: object)
(10840, Id                              10841
EmployeeName        TEOFILO CHUSON JR
JobTitle             TRANSIT OPERATOR
BasePay                      64729.08
OvertimePay                  27607.98
OtherPay                      1175.36
Benefits                          NaN
TotalPay                     93512.42
TotalPayBenefits             93512.42
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10840, dtype: object)
(10841, Id                                     10842
EmployeeName                     MIRNA PALMA
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              93511.3
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             93511.3
TotalPayBenefits                     93511.3
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10841, dtype: object)
(10842, Id                                     10843
EmployeeName                       JENNA LEE
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             93506.59
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            93506.59
TotalPayBenefits                    93506.59
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10842, dtype: object)
(10843, Id                                              10844
EmployeeName                                 PETER WU
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      71759.65
OvertimePay                                  21237.56
OtherPay                                        500.0
Benefits                                          NaN
TotalPay                                     93497.21
TotalPayBenefits                             93497.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10843, dtype: object)
(10844, Id                                      10845
EmployeeName                  VIOLETA CUYUGAN
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64780.5
OvertimePay                          28464.13
OtherPay                                250.0
Benefits                                  NaN
TotalPay                             93494.63
TotalPayBenefits                     93494.63
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10844, dtype: object)
(10845, Id                                              10846
EmployeeName                            JOSE CORRALES
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      82423.48
OvertimePay                                    4517.2
OtherPay                                      6552.75
Benefits                                          NaN
TotalPay                                     93493.43
TotalPayBenefits                             93493.43
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10845, dtype: object)
(10846, Id                                   10847
EmployeeName               EMILIANO LASTRA
JobTitle            ELECTRICAL LINE HELPER
BasePay                            71527.5
OvertimePay                       21964.02
OtherPay                               0.0
Benefits                               NaN
TotalPay                          93491.52
TotalPayBenefits                  93491.52
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10846, dtype: object)
(10847, Id                               10848
EmployeeName          DENNIS CARLIN JR
JobTitle            BUILDING INSPECTOR
BasePay                       92572.53
OvertimePay                     915.06
OtherPay                           0.0
Benefits                           NaN
TotalPay                      93487.59
TotalPayBenefits              93487.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10847, dtype: object)
(10848, Id                                                             10849
EmployeeName                                            ROGER WERNER
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     91618.91
OvertimePay                                                   956.05
OtherPay                                                       900.1
Benefits                                                         NaN
TotalPay                                                    93475.06
TotalPayBenefits                                            93475.06
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 10848, dtype: object)
(10849, Id                                10850
EmployeeName              KYLE ANDERSON
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    29714.65
OtherPay                        7874.29
Benefits                            NaN
TotalPay                       93468.94
TotalPayBenefits               93468.94
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10849, dtype: object)
(10850, Id                             10851
EmployeeName         MARGARET MILLER
JobTitle            REGISTERED NURSE
BasePay                      88171.5
OvertimePay                  2681.21
OtherPay                     2615.98
Benefits                         NaN
TotalPay                    93468.69
TotalPayBenefits            93468.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10850, dtype: object)
(10851, Id                          10852
EmployeeName        NANCIE PARKER
JobTitle               MANAGER II
BasePay                  91933.89
OvertimePay                   0.0
OtherPay                  1532.52
Benefits                      NaN
TotalPay                 93466.41
TotalPayBenefits         93466.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10851, dtype: object)
(10852, Id                              10853
EmployeeName        STEVEN STROHMEYER
JobTitle                  ELECTRICIAN
BasePay                      87825.02
OvertimePay                   3458.07
OtherPay                      2172.75
Benefits                          NaN
TotalPay                     93455.84
TotalPayBenefits             93455.84
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10852, dtype: object)
(10853, Id                            10854
EmployeeName             SEAN CAVAN
JobTitle            UTILITY PLUMBER
BasePay                    89735.12
OvertimePay                     0.0
OtherPay                    3718.42
Benefits                        NaN
TotalPay                   93453.54
TotalPayBenefits           93453.54
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10853, dtype: object)
(10854, Id                             10855
EmployeeName        KATERINA CAZANIS
JobTitle            REGISTERED NURSE
BasePay                     86357.08
OvertimePay                      0.0
OtherPay                     7094.17
Benefits                         NaN
TotalPay                    93451.25
TotalPayBenefits            93451.25
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10854, dtype: object)
(10855, Id                                           10856
EmployeeName                      MICHAEL WOODRUFF
JobTitle            SENIOR PARKING CONTROL OFFICER
BasePay                                    65711.9
OvertimePay                               25645.23
OtherPay                                   2094.04
Benefits                                       NaN
TotalPay                                  93451.17
TotalPayBenefits                          93451.17
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10855, dtype: object)
(10856, Id                                10857
EmployeeName             DARRELL VICTOR
JobTitle            MAINTENANCE PLANNER
BasePay                        92897.12
OvertimePay                       551.4
OtherPay                            0.0
Benefits                            NaN
TotalPay                       93448.52
TotalPayBenefits               93448.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10856, dtype: object)
(10857, Id                                          10858
EmployeeName                         CRAIG LEMOGE
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   87116.8
OvertimePay                               6316.84
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 93433.64
TotalPayBenefits                         93433.64
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10857, dtype: object)
(10858, Id                          10859
EmployeeName        NEIL DENATALE
JobTitle              ELECTRICIAN
BasePay                  87298.06
OvertimePay               3556.89
OtherPay                   2570.0
Benefits                      NaN
TotalPay                 93424.95
TotalPayBenefits         93424.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10858, dtype: object)
(10859, Id                             10860
EmployeeName        MARY JANE CABUAG
JobTitle            REGISTERED NURSE
BasePay                     82087.22
OvertimePay                  6141.64
OtherPay                     5186.75
Benefits                         NaN
TotalPay                    93415.61
TotalPayBenefits            93415.61
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10859, dtype: object)
(10860, Id                                                10861
EmployeeName                              ARLENE MONROY
JobTitle            COURT COMPUTER APPLICATIONS ANALYST
BasePay                                         92837.6
OvertimePay                                         0.0
OtherPay                                          576.0
Benefits                                            NaN
TotalPay                                        93413.6
TotalPayBenefits                                93413.6
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10860, dtype: object)
(10861, Id                                              10862
EmployeeName                         CHRISTOPHER NEAL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79589.77
OvertimePay                                   6839.11
OtherPay                                      6982.34
Benefits                                          NaN
TotalPay                                     93411.22
TotalPayBenefits                             93411.22
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10861, dtype: object)
(10862, Id                          10863
EmployeeName         SPIRO VESTAL
JobTitle            SPECIAL NURSE
BasePay                  72686.91
OvertimePay               6141.04
OtherPay                 14580.48
Benefits                      NaN
TotalPay                 93408.43
TotalPayBenefits         93408.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10862, dtype: object)
(10863, Id                                         10864
EmployeeName                            MENG PEI
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                  93403.8
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                 93403.8
TotalPayBenefits                         93403.8
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10863, dtype: object)
(10864, Id                                  10865
EmployeeName              CHRISTIAN LOSNO
JobTitle            MATERIALS COORDINATOR
BasePay                          93398.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         93398.41
TotalPayBenefits                 93398.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10864, dtype: object)
(10865, Id                                10866
EmployeeName                CARL NATVIG
JobTitle            TRANSIT PLANNER III
BasePay                        93307.51
OvertimePay                         0.0
OtherPay                           90.0
Benefits                            NaN
TotalPay                       93397.51
TotalPayBenefits               93397.51
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10865, dtype: object)
(10866, Id                                     10867
EmployeeName                  BEVERLY BECKER
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             76751.59
OvertimePay                         13732.62
OtherPay                             2912.47
Benefits                                 NaN
TotalPay                            93396.68
TotalPayBenefits                    93396.68
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10866, dtype: object)
(10867, Id                          10868
EmployeeName          KENNETH YEE
JobTitle            FUSION WELDER
BasePay                   88808.8
OvertimePay                850.48
OtherPay                  3722.46
Benefits                      NaN
TotalPay                 93381.74
TotalPayBenefits         93381.74
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10867, dtype: object)
(10868, Id                                       10869
EmployeeName                        ERIN MOODY
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.33
OvertimePay                            7430.17
OtherPay                                2065.2
Benefits                                   NaN
TotalPay                               93376.7
TotalPayBenefits                       93376.7
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10868, dtype: object)
(10869, Id                                   10870
EmployeeName                 LAURA HOWLETT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           85614.81
OvertimePay                        2252.07
OtherPay                           5506.75
Benefits                               NaN
TotalPay                          93373.63
TotalPayBenefits                  93373.63
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10869, dtype: object)
(10870, Id                            10871
EmployeeName           PATRICK BELL
JobTitle            UTILITY PLUMBER
BasePay                    90098.47
OvertimePay                     0.0
OtherPay                    3269.99
Benefits                        NaN
TotalPay                   93368.46
TotalPayBenefits           93368.46
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10870, dtype: object)
(10871, Id                                           10872
EmployeeName                       DANIEL PHILLIPS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   88920.63
OvertimePay                                    0.0
OtherPay                                   4446.54
Benefits                                       NaN
TotalPay                                  93367.17
TotalPayBenefits                          93367.17
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10871, dtype: object)
(10872, Id                               10873
EmployeeName        RONALD CRIVELLO JR
JobTitle               UTILITY PLUMBER
BasePay                       91914.94
OvertimePay                        0.0
OtherPay                       1449.08
Benefits                           NaN
TotalPay                      93364.02
TotalPayBenefits              93364.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10872, dtype: object)
(10873, Id                            10874
EmployeeName        RAMON VELASQUEZ
JobTitle             DEPUTY SHERIFF
BasePay                    84050.29
OvertimePay                 4465.84
OtherPay                    4838.93
Benefits                        NaN
TotalPay                   93355.06
TotalPayBenefits           93355.06
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10873, dtype: object)
(10874, Id                                10875
EmployeeName          STEFAN STRASSFELD
JobTitle            PUBLIC HEALTH NURSE
BasePay                        91904.69
OvertimePay                         0.0
OtherPay                         1450.0
Benefits                            NaN
TotalPay                       93354.69
TotalPayBenefits               93354.69
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10874, dtype: object)
(10875, Id                          10876
EmployeeName        ANDREW LARSEN
JobTitle            CABLE SPLICER
BasePay                   93280.1
OvertimePay                 70.82
OtherPay                      0.0
Benefits                      NaN
TotalPay                 93350.92
TotalPayBenefits         93350.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10875, dtype: object)
(10876, Id                             10877
EmployeeName           DARLENE FROHM
JobTitle            SENIOR PURCHASER
BasePay                     93346.11
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    93346.11
TotalPayBenefits            93346.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10876, dtype: object)
(10877, Id                             10878
EmployeeName            PAUL HOOTMAN
JobTitle            SENIOR PURCHASER
BasePay                     93346.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    93346.05
TotalPayBenefits            93346.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10877, dtype: object)
(10878, Id                             10879
EmployeeName           DAISY AGUALLO
JobTitle            SENIOR PURCHASER
BasePay                     93346.01
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    93346.01
TotalPayBenefits            93346.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10878, dtype: object)
(10879, Id                             10880
EmployeeName             RAYMOND LOW
JobTitle            SENIOR PURCHASER
BasePay                      93346.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     93346.0
TotalPayBenefits             93346.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10879, dtype: object)
(10880, Id                             10881
EmployeeName         HOWARD TEVELSON
JobTitle            SENIOR PURCHASER
BasePay                      93346.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                     93346.0
TotalPayBenefits             93346.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10880, dtype: object)
(10881, Id                          10882
EmployeeName         DANIEL MANLY
JobTitle              ELECTRICIAN
BasePay                  86946.77
OvertimePay               4050.88
OtherPay                   2347.5
Benefits                      NaN
TotalPay                 93345.15
TotalPayBenefits         93345.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10881, dtype: object)
(10882, Id                                       10883
EmployeeName                    AVO SARKISSIAN
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                85558.2
OvertimePay                            1366.96
OtherPay                               6417.11
Benefits                                   NaN
TotalPay                              93342.27
TotalPayBenefits                      93342.27
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10882, dtype: object)
(10883, Id                            10884
EmployeeName           DAVID LINNEY
JobTitle            GENERAL LABORER
BasePay                    56568.81
OvertimePay                33140.48
OtherPay                    3626.64
Benefits                        NaN
TotalPay                   93335.93
TotalPayBenefits           93335.93
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10883, dtype: object)
(10884, Id                              10885
EmployeeName              LITA CHAVEZ
JobTitle            NURSING ASSISTANT
BasePay                      60206.61
OvertimePay                  28158.73
OtherPay                      4963.28
Benefits                          NaN
TotalPay                     93328.62
TotalPayBenefits             93328.62
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10884, dtype: object)
(10885, Id                           10886
EmployeeName        MARRIALEE SALM
JobTitle             SPECIAL NURSE
BasePay                   76404.11
OvertimePay                4988.24
OtherPay                  11933.55
Benefits                       NaN
TotalPay                   93325.9
TotalPayBenefits           93325.9
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10885, dtype: object)
(10886, Id                                               10887
EmployeeName                                  JOHN GEE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    6444.37
OtherPay                                       9299.32
Benefits                                           NaN
TotalPay                                      93324.09
TotalPayBenefits                              93324.09
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10886, dtype: object)
(10887, Id                                                      10888
EmployeeName                                     DWIGHT MOORE
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              93320.12
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             93320.12
TotalPayBenefits                                     93320.12
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10887, dtype: object)
(10888, Id                           10889
EmployeeName            ALBERT LEW
JobTitle            DEPUTY SHERIFF
BasePay                   81522.53
OvertimePay                3528.51
OtherPay                   8264.98
Benefits                       NaN
TotalPay                  93316.02
TotalPayBenefits          93316.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10888, dtype: object)
(10889, Id                                              10890
EmployeeName                               BRIAN KWAN
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       73038.5
OvertimePay                                   5798.49
OtherPay                                     14472.93
Benefits                                          NaN
TotalPay                                     93309.92
TotalPayBenefits                             93309.92
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10889, dtype: object)
(10890, Id                                    10891
EmployeeName                   JANE KINZLER
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            92260.18
OvertimePay                             0.0
OtherPay                            1048.62
Benefits                                NaN
TotalPay                            93308.8
TotalPayBenefits                    93308.8
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 10890, dtype: object)
(10891, Id                                      10892
EmployeeName                     SANDY LANGAS
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               57615.3
OvertimePay                          20215.37
OtherPay                              15471.7
Benefits                                  NaN
TotalPay                             93302.37
TotalPayBenefits                     93302.37
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10891, dtype: object)
(10892, Id                           10893
EmployeeName        SARAH PHILLIPS
JobTitle                PLANNER IV
BasePay                    93301.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                   93301.0
TotalPayBenefits           93301.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10892, dtype: object)
(10893, Id                                               10894
EmployeeName                          GEORGIO ZOGRAFOS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77569.35
OvertimePay                                    7872.47
OtherPay                                       7857.91
Benefits                                           NaN
TotalPay                                      93299.73
TotalPayBenefits                              93299.73
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10893, dtype: object)
(10894, Id                                       10895
EmployeeName                     JEROME WALKER
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                            7631.49
OtherPay                               1780.79
Benefits                                   NaN
TotalPay                               93293.6
TotalPayBenefits                       93293.6
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10894, dtype: object)
(10895, Id                             10896
EmployeeName            MELCHOR DUMA
JobTitle            TRANSIT OPERATOR
BasePay                     65044.35
OvertimePay                 25685.67
OtherPay                     2563.48
Benefits                         NaN
TotalPay                     93293.5
TotalPayBenefits             93293.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10895, dtype: object)
(10896, Id                                                    10897
EmployeeName                                   ASHLEY AHERN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77843.96
OvertimePay                                         7219.58
OtherPay                                            8229.31
Benefits                                                NaN
TotalPay                                           93292.85
TotalPayBenefits                                   93292.85
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10896, dtype: object)
(10897, Id                            10898
EmployeeName           RICHARD NAVE
JobTitle            UTILITY PLUMBER
BasePay                    90280.06
OvertimePay                  851.46
OtherPay                     2160.0
Benefits                        NaN
TotalPay                   93291.52
TotalPayBenefits           93291.52
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10897, dtype: object)
(10898, Id                           10899
EmployeeName         LAILAH SAMSON
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                 894.29
OtherPay                   5555.14
Benefits                       NaN
TotalPay                  93289.43
TotalPayBenefits          93289.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10898, dtype: object)
(10899, Id                                       10900
EmployeeName                  GEORGINA MORALES
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83702.35
OvertimePay                            3887.09
OtherPay                               5688.29
Benefits                                   NaN
TotalPay                              93277.73
TotalPayBenefits                      93277.73
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10899, dtype: object)
(10900, Id                                          10901
EmployeeName                      ROBERTO MERCADO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  93273.99
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 93273.99
TotalPayBenefits                         93273.99
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10900, dtype: object)
(10901, Id                                         10902
EmployeeName                         ANNIE CHENG
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                  93263.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                 93263.2
TotalPayBenefits                         93263.2
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10901, dtype: object)
(10902, Id                                   10903
EmployeeName                 YAKOV OKUPNIK
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        2598.44
OtherPay                               0.0
Benefits                               NaN
TotalPay                          93262.44
TotalPayBenefits                  93262.44
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10902, dtype: object)
(10903, Id                                10904
EmployeeName                   MAX BRUK
JobTitle            STATIONARY ENGINEER
BasePay                        72410.67
OvertimePay                      9830.5
OtherPay                       11019.53
Benefits                            NaN
TotalPay                        93260.7
TotalPayBenefits                93260.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10903, dtype: object)
(10904, Id                                10905
EmployeeName             MIKHAIL SLININ
JobTitle            STATIONARY ENGINEER
BasePay                         75934.5
OvertimePay                     5069.83
OtherPay                        12249.5
Benefits                            NaN
TotalPay                       93253.83
TotalPayBenefits               93253.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10904, dtype: object)
(10905, Id                                   10906
EmployeeName                JOHN FELICIANO
JobTitle            MAINTENANCE CONTROLLER
BasePay                            85232.4
OvertimePay                        6742.44
OtherPay                           1255.47
Benefits                               NaN
TotalPay                          93230.31
TotalPayBenefits                  93230.31
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10905, dtype: object)
(10906, Id                               10907
EmployeeName           MARGARET SLATER
JobTitle            TRANSIT SUPERVISOR
BasePay                       63151.92
OvertimePay                   27371.67
OtherPay                       2705.04
Benefits                           NaN
TotalPay                      93228.63
TotalPayBenefits              93228.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10906, dtype: object)
(10907, Id                                 10908
EmployeeName               DAVID SHAO HE
JobTitle            IS ADMINISTRATOR III
BasePay                          92383.0
OvertimePay                          0.0
OtherPay                          837.91
Benefits                             NaN
TotalPay                        93220.91
TotalPayBenefits                93220.91
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10907, dtype: object)
(10908, Id                                   10909
EmployeeName                  MICHAEL WONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.02
OvertimePay                         2553.7
OtherPay                               0.0
Benefits                               NaN
TotalPay                          93217.72
TotalPayBenefits                  93217.72
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10908, dtype: object)
(10909, Id                           10910
EmployeeName           ALAN VIERRA
JobTitle            DEPUTY SHERIFF
BasePay                   85557.04
OvertimePay                1189.88
OtherPay                   6470.21
Benefits                       NaN
TotalPay                  93217.13
TotalPayBenefits          93217.13
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10909, dtype: object)
(10910, Id                                 10911
EmployeeName                  JOHN TYNAN
JobTitle            PAINTER SUPERVISOR I
BasePay                         86494.78
OvertimePay                      6299.72
OtherPay                           420.0
Benefits                             NaN
TotalPay                         93214.5
TotalPayBenefits                 93214.5
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10910, dtype: object)
(10911, Id                                               10912
EmployeeName                           CHARLES SHEEHAN
JobTitle            COORDINATOR OF CITIZEN INVOLVEMENT
BasePay                                        92297.6
OvertimePay                                        0.0
OtherPay                                        904.95
Benefits                                           NaN
TotalPay                                      93202.55
TotalPayBenefits                              93202.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10911, dtype: object)
(10912, Id                                              10913
EmployeeName                          YVETTE BRADSHAW
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   5464.18
OtherPay                                      7914.45
Benefits                                          NaN
TotalPay                                     93198.64
TotalPayBenefits                             93198.64
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10912, dtype: object)
(10913, Id                             10914
EmployeeName                SHU CHEN
JobTitle            TRANSIT OPERATOR
BasePay                     65782.67
OvertimePay                 25178.84
OtherPay                     2232.01
Benefits                         NaN
TotalPay                    93193.52
TotalPayBenefits            93193.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10913, dtype: object)
(10914, Id                                              10915
EmployeeName                           DALTON JOHNSON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   6028.43
OtherPay                                      7342.58
Benefits                                          NaN
TotalPay                                     93191.02
TotalPayBenefits                             93191.02
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10914, dtype: object)
(10915, Id                                               10916
EmployeeName                           CHRISTOPHER LAI
JobTitle            FOOD SERVICE MANAGER ADMINISTRATOR
BasePay                                       81176.65
OvertimePay                                        0.0
OtherPay                                      12013.19
Benefits                                           NaN
TotalPay                                      93189.84
TotalPayBenefits                              93189.84
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10915, dtype: object)
(10916, Id                                10917
EmployeeName            JACK WITTENMYER
JobTitle            STATIONARY ENGINEER
BasePay                        72410.07
OvertimePay                     9686.59
OtherPay                       11091.96
Benefits                            NaN
TotalPay                       93188.62
TotalPayBenefits               93188.62
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10916, dtype: object)
(10917, Id                                                    10918
EmployeeName                                 TERESA CASTORA
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            87833.13
OvertimePay                                         1827.59
OtherPay                                            3524.03
Benefits                                                NaN
TotalPay                                           93184.75
TotalPayBenefits                                   93184.75
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10917, dtype: object)
(10918, Id                                              10919
EmployeeName                                BOON TEOH
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                       85431.2
OvertimePay                                   7752.92
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     93184.12
TotalPayBenefits                             93184.12
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10918, dtype: object)
(10919, Id                                                    10920
EmployeeName                                      RON DAVIS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78124.68
OvertimePay                                         6832.25
OtherPay                                            8220.16
Benefits                                                NaN
TotalPay                                           93177.09
TotalPayBenefits                                   93177.09
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10919, dtype: object)
(10920, Id                          10921
EmployeeName         INDER NARULA
JobTitle            SPECIAL NURSE
BasePay                  80843.55
OvertimePay              10065.54
OtherPay                  2265.12
Benefits                      NaN
TotalPay                 93174.21
TotalPayBenefits         93174.21
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10920, dtype: object)
(10921, Id                          10922
EmployeeName           AMBER FANK
JobTitle            SPECIAL NURSE
BasePay                  89117.27
OvertimePay               1295.49
OtherPay                  2754.64
Benefits                      NaN
TotalPay                  93167.4
TotalPayBenefits          93167.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10921, dtype: object)
(10922, Id                                10923
EmployeeName              RANDY WINSTON
JobTitle            STATIONARY ENGINEER
BasePay                        76150.15
OvertimePay                     3615.75
OtherPay                       13391.01
Benefits                            NaN
TotalPay                       93156.91
TotalPayBenefits               93156.91
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10922, dtype: object)
(10923, Id                                           10924
EmployeeName                       GREGORY SEDLOCK
JobTitle            SENIOR PARKING CONTROL OFFICER
BasePay                                    65841.0
OvertimePay                                25597.5
OtherPay                                    1716.9
Benefits                                       NaN
TotalPay                                   93155.4
TotalPayBenefits                           93155.4
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10923, dtype: object)
(10924, Id                                          10925
EmployeeName                     TAMRA WINCHESTER
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  91980.05
OvertimePay                                   0.0
OtherPay                                   1169.0
Benefits                                      NaN
TotalPay                                 93149.05
TotalPayBenefits                         93149.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 10924, dtype: object)
(10925, Id                                           10926
EmployeeName                           JOHN TINLOY
JobTitle            MEDICAL SOCIAL WORK SUPERVISOR
BasePay                                    93149.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   93149.0
TotalPayBenefits                           93149.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10925, dtype: object)
(10926, Id                                           10927
EmployeeName                         MAUREEN ONEIL
JobTitle            MEDICAL SOCIAL WORK SUPERVISOR
BasePay                                    93149.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   93149.0
TotalPayBenefits                           93149.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10926, dtype: object)
(10927, Id                                           10928
EmployeeName                          JANET GILLEN
JobTitle            MEDICAL SOCIAL WORK SUPERVISOR
BasePay                                   93148.99
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  93148.99
TotalPayBenefits                          93148.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10927, dtype: object)
(10928, Id                             10929
EmployeeName             ERIC LAWSON
JobTitle            TRANSIT OPERATOR
BasePay                     67137.64
OvertimePay                 23084.18
OtherPay                     2923.35
Benefits                         NaN
TotalPay                    93145.17
TotalPayBenefits            93145.17
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10928, dtype: object)
(10929, Id                                        10930
EmployeeName                     LENNART MOLLER
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                88697.11
OvertimePay                                 0.0
OtherPay                                4435.14
Benefits                                    NaN
TotalPay                               93132.25
TotalPayBenefits                       93132.25
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 10929, dtype: object)
(10930, Id                                                    10931
EmployeeName                              KAYLEIGH HILLCOAT
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77390.82
OvertimePay                                         7516.77
OtherPay                                            8214.45
Benefits                                                NaN
TotalPay                                           93122.04
TotalPayBenefits                                   93122.04
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10930, dtype: object)
(10931, Id                                   10932
EmployeeName               JENNIFER GREENE
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           82404.83
OvertimePay                        1924.19
OtherPay                           8791.19
Benefits                               NaN
TotalPay                          93120.21
TotalPayBenefits                  93120.21
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10931, dtype: object)
(10932, Id                                10933
EmployeeName                  GARY HALL
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        73202.92
OvertimePay                    10942.08
OtherPay                        8973.46
Benefits                            NaN
TotalPay                       93118.46
TotalPayBenefits               93118.46
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10932, dtype: object)
(10933, Id                                  10934
EmployeeName                MELISSA BLOOM
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92493.84
OvertimePay                           0.0
OtherPay                           624.02
Benefits                              NaN
TotalPay                         93117.86
TotalPayBenefits                 93117.86
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10933, dtype: object)
(10934, Id                             10935
EmployeeName          CHARLES HURLEY
JobTitle            REGISTERED NURSE
BasePay                      74946.4
OvertimePay                  6083.96
OtherPay                    12086.18
Benefits                         NaN
TotalPay                    93116.54
TotalPayBenefits            93116.54
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10934, dtype: object)
(10935, Id                             10936
EmployeeName          WILLIAM POWELL
JobTitle            TRANSIT OPERATOR
BasePay                     67460.59
OvertimePay                 21647.07
OtherPay                     4002.16
Benefits                         NaN
TotalPay                    93109.82
TotalPayBenefits            93109.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10935, dtype: object)
(10936, Id                                                10937
EmployeeName                        GREGORIO GAYAGOY JR
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                        60086.85
OvertimePay                                    27935.75
OtherPay                                         5085.5
Benefits                                            NaN
TotalPay                                        93108.1
TotalPayBenefits                                93108.1
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10936, dtype: object)
(10937, Id                               10938
EmployeeName         DONALD LA FRANCHI
JobTitle            SHEET METAL WORKER
BasePay                       86745.97
OvertimePay                    6301.53
OtherPay                          60.0
Benefits                           NaN
TotalPay                       93107.5
TotalPayBenefits               93107.5
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10937, dtype: object)
(10938, Id                                         10939
EmployeeName                         KEITH GROUT
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 85363.44
OvertimePay                                  0.0
OtherPay                                 7743.62
Benefits                                     NaN
TotalPay                                93107.06
TotalPayBenefits                        93107.06
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 10938, dtype: object)
(10939, Id                                      10940
EmployeeName              PERLARIEN RAMSEY-II
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58800.8
OvertimePay                          23491.92
OtherPay                             10812.97
Benefits                                  NaN
TotalPay                             93105.69
TotalPayBenefits                     93105.69
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10939, dtype: object)
(10940, Id                                                    10941
EmployeeName                                      LORI ROSS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77614.66
OvertimePay                                         5940.92
OtherPay                                            9537.75
Benefits                                                NaN
TotalPay                                           93093.33
TotalPayBenefits                                   93093.33
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10940, dtype: object)
(10941, Id                                  10942
EmployeeName                   DON WILSON
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           88069.3
OvertimePay                           0.0
OtherPay                          5023.44
Benefits                              NaN
TotalPay                         93092.74
TotalPayBenefits                 93092.74
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10941, dtype: object)
(10942, Id                                       10943
EmployeeName                   RONALD ANDERSON
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82056.04
OvertimePay                             4734.0
OtherPay                                6301.4
Benefits                                   NaN
TotalPay                              93091.44
TotalPayBenefits                      93091.44
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10942, dtype: object)
(10943, Id                                               10944
EmployeeName                                DAVID BULL
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        76982.4
OvertimePay                                    6844.57
OtherPay                                       9253.24
Benefits                                           NaN
TotalPay                                      93080.21
TotalPayBenefits                              93080.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10943, dtype: object)
(10944, Id                                              10945
EmployeeName                      WILLIAM WATKINS III
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       93069.0
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                      93069.0
TotalPayBenefits                              93069.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10944, dtype: object)
(10945, Id                               10946
EmployeeName                 ARLEN UNG
JobTitle            ASSOCIATE ENGINEER
BasePay                       93059.64
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      93059.64
TotalPayBenefits              93059.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10945, dtype: object)
(10946, Id                             10947
EmployeeName             JEAN AUJERO
JobTitle            REGISTERED NURSE
BasePay                     84115.31
OvertimePay                  5026.65
OtherPay                     3900.51
Benefits                         NaN
TotalPay                    93042.47
TotalPayBenefits            93042.47
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10946, dtype: object)
(10947, Id                                      10948
EmployeeName                 NESTOR LAURENCIO
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58563.7
OvertimePay                          20386.74
OtherPay                             14090.09
Benefits                                  NaN
TotalPay                             93040.53
TotalPayBenefits                     93040.53
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10947, dtype: object)
(10948, Id                           10949
EmployeeName        RICARDO BACANI
JobTitle            DEPUTY SHERIFF
BasePay                    80405.5
OvertimePay                6949.79
OtherPay                   5684.31
Benefits                       NaN
TotalPay                   93039.6
TotalPayBenefits           93039.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10948, dtype: object)
(10949, Id                                              10950
EmployeeName                          DENNIS HERRADOR
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      84159.13
OvertimePay                                   2234.91
OtherPay                                      6645.42
Benefits                                          NaN
TotalPay                                     93039.46
TotalPayBenefits                             93039.46
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10949, dtype: object)
(10950, Id                                             10951
EmployeeName                             RICHARD LUM
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73387.38
OvertimePay                                 16525.18
OtherPay                                     3126.37
Benefits                                         NaN
TotalPay                                    93038.93
TotalPayBenefits                            93038.93
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10950, dtype: object)
(10951, Id                                     10952
EmployeeName                  MICHAEL CERLES
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              93033.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             93033.0
TotalPayBenefits                     93033.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10951, dtype: object)
(10952, Id                                 10953
EmployeeName               JANE WATANABE
JobTitle            POWER HOUSE OPERATOR
BasePay                          71062.8
OvertimePay                     13336.69
OtherPay                         8628.78
Benefits                             NaN
TotalPay                        93028.27
TotalPayBenefits                93028.27
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10952, dtype: object)
(10953, Id                           10954
EmployeeName        ARNOLD DOMINGO
JobTitle            DEPUTY SHERIFF
BasePay                   84924.51
OvertimePay                1096.58
OtherPay                   6992.74
Benefits                       NaN
TotalPay                  93013.83
TotalPayBenefits          93013.83
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10953, dtype: object)
(10954, Id                                  10955
EmployeeName                 RAUL MONCAYO
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           91039.1
OvertimePay                           0.0
OtherPay                           1974.1
Benefits                              NaN
TotalPay                          93013.2
TotalPayBenefits                  93013.2
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 10954, dtype: object)
(10955, Id                                10956
EmployeeName        ARKADIY SHIMANOVICH
JobTitle            STATIONARY ENGINEER
BasePay                        71992.83
OvertimePay                     6005.22
OtherPay                       14995.52
Benefits                            NaN
TotalPay                       92993.57
TotalPayBenefits               92993.57
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10955, dtype: object)
(10956, Id                                     10957
EmployeeName           EZEQUIEL JAIME CANELO
JobTitle            TRACK MAINTENANCE WORKER
BasePay                              53607.0
OvertimePay                         35531.96
OtherPay                             3845.38
Benefits                                 NaN
TotalPay                            92984.34
TotalPayBenefits                    92984.34
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 10956, dtype: object)
(10957, Id                             10958
EmployeeName           GORDON MILLER
JobTitle            TRANSIT OPERATOR
BasePay                     64603.91
OvertimePay                 23101.74
OtherPay                     5278.43
Benefits                         NaN
TotalPay                    92984.08
TotalPayBenefits            92984.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10957, dtype: object)
(10958, Id                                      10959
EmployeeName                       LAUNCE YEN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               57893.9
OvertimePay                          24148.72
OtherPay                             10938.93
Benefits                                  NaN
TotalPay                             92981.55
TotalPayBenefits                     92981.55
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10958, dtype: object)
(10959, Id                                                       10960
EmployeeName                                      CHANDRA EGAN
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               92977.96
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              92977.96
TotalPayBenefits                                      92977.96
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 10959, dtype: object)
(10960, Id                              10961
EmployeeName         LUZVIMINDA SOJOR
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  27559.56
OtherPay                      5209.86
Benefits                          NaN
TotalPay                     92976.02
TotalPayBenefits             92976.02
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10960, dtype: object)
(10961, Id                                             10962
EmployeeName                             DEBRA DWYER
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     92965.79
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    92965.79
TotalPayBenefits                            92965.79
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10961, dtype: object)
(10962, Id                                                    10963
EmployeeName                                   JANET ATCHAN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            74660.07
OvertimePay                                         9818.17
OtherPay                                            8485.69
Benefits                                                NaN
TotalPay                                           92963.93
TotalPayBenefits                                   92963.93
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10962, dtype: object)
(10963, Id                                   10964
EmployeeName               EDGARDO VERGARA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           84056.98
OvertimePay                        3742.97
OtherPay                           5163.33
Benefits                               NaN
TotalPay                          92963.28
TotalPayBenefits                  92963.28
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 10963, dtype: object)
(10964, Id                                             10965
EmployeeName                         BRETT BOLLINGER
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     92959.15
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    92959.15
TotalPayBenefits                            92959.15
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 10964, dtype: object)
(10965, Id                                            10966
EmployeeName                      KENNETH MCCORMICK
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    92954.93
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   92954.93
TotalPayBenefits                           92954.93
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 10965, dtype: object)
(10966, Id                                               10967
EmployeeName                            GEORGE ALMUETE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77624.4
OvertimePay                                    6516.11
OtherPay                                       8809.04
Benefits                                           NaN
TotalPay                                      92949.55
TotalPayBenefits                              92949.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10966, dtype: object)
(10967, Id                           10968
EmployeeName        JOSEPH CRITTLE
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                2207.55
OtherPay                   4235.12
Benefits                       NaN
TotalPay                  92948.67
TotalPayBenefits          92948.67
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10967, dtype: object)
(10968, Id                                           10969
EmployeeName                        WOLFGANG STUWE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   92941.62
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  92941.62
TotalPayBenefits                          92941.62
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 10968, dtype: object)
(10969, Id                                 10970
EmployeeName               KENNETH MOREY
JobTitle            AUTOMOTIVE MACHINIST
BasePay                         73406.87
OvertimePay                     12752.96
OtherPay                         6776.45
Benefits                             NaN
TotalPay                        92936.28
TotalPayBenefits                92936.28
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 10969, dtype: object)
(10970, Id                          10971
EmployeeName          AZADEH TAEB
JobTitle              PLANNER III
BasePay                  92931.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 92931.51
TotalPayBenefits         92931.51
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10970, dtype: object)
(10971, Id                               10972
EmployeeName           JAMES MAGINNISS
JobTitle            POLICE OFFICER III
BasePay                       84964.04
OvertimePay                    1496.08
OtherPay                       6470.57
Benefits                           NaN
TotalPay                      92930.69
TotalPayBenefits              92930.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10971, dtype: object)
(10972, Id                           10973
EmployeeName         GEORGE DOWNES
JobTitle            DEPUTY SHERIFF
BasePay                   86840.08
OvertimePay                 438.38
OtherPay                   5651.35
Benefits                       NaN
TotalPay                  92929.81
TotalPayBenefits          92929.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10972, dtype: object)
(10973, Id                                               10974
EmployeeName                              FRANK GARCIA
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                   14706.54
OtherPay                                         635.0
Benefits                                           NaN
TotalPay                                      92921.94
TotalPayBenefits                              92921.94
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10973, dtype: object)
(10974, Id                                10975
EmployeeName             ELISA SULLIVAN
JobTitle            SUPERVISING AUDITOR
BasePay                         92920.9
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        92920.9
TotalPayBenefits                92920.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10974, dtype: object)
(10975, Id                                                             10976
EmployeeName                                           KENNETH BRUCE
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     86229.71
OvertimePay                                                  4275.69
OtherPay                                                     2408.83
Benefits                                                         NaN
TotalPay                                                    92914.23
TotalPayBenefits                                            92914.23
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 10975, dtype: object)
(10976, Id                                       10977
EmployeeName                       DAVID BAKER
JobTitle            WATERSHED FORESTER MANAGER
BasePay                                92900.4
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                               92900.4
TotalPayBenefits                       92900.4
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10976, dtype: object)
(10977, Id                             10978
EmployeeName          OLIVERIO VALLE
JobTitle            TRANSIT OPERATOR
BasePay                     68109.73
OvertimePay                 23581.15
OtherPay                     1188.35
Benefits                         NaN
TotalPay                    92879.23
TotalPayBenefits            92879.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10977, dtype: object)
(10978, Id                                                            10979
EmployeeName                                          JAMES KOHMANN
JobTitle            HEAVY EQUIPMENT OPERATIONS ASSISTANT SUPERVISOR
BasePay                                                     92872.0
OvertimePay                                                     0.0
OtherPay                                                        0.0
Benefits                                                        NaN
TotalPay                                                    92872.0
TotalPayBenefits                                            92872.0
Year                                                           2011
Notes                                                           NaN
Agency                                                San Francisco
Status                                                          NaN
Name: 10978, dtype: object)
(10979, Id                                                    10980
EmployeeName                               JEFFREY MOSBAUGH
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            70949.05
OvertimePay                                        11957.61
OtherPay                                            9962.24
Benefits                                                NaN
TotalPay                                            92868.9
TotalPayBenefits                                    92868.9
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 10979, dtype: object)
(10980, Id                              10981
EmployeeName        RUNJOHNYA BURGESS
JobTitle             REGISTERED NURSE
BasePay                      80289.85
OvertimePay                   5596.05
OtherPay                      6982.77
Benefits                          NaN
TotalPay                     92868.67
TotalPayBenefits             92868.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 10980, dtype: object)
(10981, Id                             10982
EmployeeName              PETER CHAU
JobTitle            TRANSIT OPERATOR
BasePay                     64507.98
OvertimePay                 24489.62
OtherPay                      3868.2
Benefits                         NaN
TotalPay                     92865.8
TotalPayBenefits             92865.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10981, dtype: object)
(10982, Id                             10983
EmployeeName        JOANNE FERNANDEZ
JobTitle            REGISTERED NURSE
BasePay                     86221.29
OvertimePay                  2926.35
OtherPay                     3713.24
Benefits                         NaN
TotalPay                    92860.88
TotalPayBenefits            92860.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 10982, dtype: object)
(10983, Id                                       10984
EmployeeName                    THOMAS FRANCIS
JobTitle            WATERSHED FORESTER MANAGER
BasePay                               92854.69
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              92854.69
TotalPayBenefits                      92854.69
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10983, dtype: object)
(10984, Id                                       10985
EmployeeName                     TOMIQUIA MOSS
JobTitle            ADMINISTRATIVE ANALYST III
BasePay                                92847.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                               92847.0
TotalPayBenefits                       92847.0
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10984, dtype: object)
(10985, Id                                       10986
EmployeeName                  MANUEL SAGISI JR
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82282.25
OvertimePay                            4142.25
OtherPay                               6409.36
Benefits                                   NaN
TotalPay                              92833.86
TotalPayBenefits                      92833.86
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10985, dtype: object)
(10986, Id                                               10987
EmployeeName                            TIMOTHY OBRIEN
JobTitle            WORKER'S COMPENSATION SUPERVISOR I
BasePay                                       92833.54
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      92833.54
TotalPayBenefits                              92833.54
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10986, dtype: object)
(10987, Id                               10988
EmployeeName               MARTIN SHEA
JobTitle            SHEET METAL WORKER
BasePay                       90851.04
OvertimePay                        0.0
OtherPay                        1980.0
Benefits                           NaN
TotalPay                      92831.04
TotalPayBenefits              92831.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 10987, dtype: object)
(10988, Id                          10989
EmployeeName           EDWARD YEE
JobTitle                  PLUMBER
BasePay                  90098.44
OvertimePay               1566.72
OtherPay                   1162.2
Benefits                      NaN
TotalPay                 92827.36
TotalPayBenefits         92827.36
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10988, dtype: object)
(10989, Id                           10990
EmployeeName         SHARON PARKER
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                    0.0
OtherPay                   5985.33
Benefits                       NaN
TotalPay                  92825.33
TotalPayBenefits          92825.33
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10989, dtype: object)
(10990, Id                                               10991
EmployeeName                                  ANNE ENG
JobTitle            PRINCIPAL ENVIRONMENTAL SPECIALIST
BasePay                                       92824.55
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      92824.55
TotalPayBenefits                              92824.55
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 10990, dtype: object)
(10991, Id                                10992
EmployeeName        ESMERALDA RODRIGUEZ
JobTitle                 DEPUTY SHERIFF
BasePay                        86506.04
OvertimePay                     4206.96
OtherPay                         2107.1
Benefits                            NaN
TotalPay                        92820.1
TotalPayBenefits                92820.1
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 10991, dtype: object)
(10992, Id                          10993
EmployeeName        JAMES WENTZEL
JobTitle              STEAMFITTER
BasePay                  88281.93
OvertimePay                   0.0
OtherPay                  4537.87
Benefits                      NaN
TotalPay                  92819.8
TotalPayBenefits          92819.8
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 10992, dtype: object)
(10993, Id                            10994
EmployeeName        JONATHAN LUCERO
JobTitle             DEPUTY SHERIFF
BasePay                     86840.0
OvertimePay                     0.0
OtherPay                     5978.6
Benefits                        NaN
TotalPay                    92818.6
TotalPayBenefits            92818.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 10993, dtype: object)
(10994, Id                           10995
EmployeeName        MARGARIE DAVIS
JobTitle             SPECIAL NURSE
BasePay                   79958.24
OvertimePay                7767.72
OtherPay                   5081.06
Benefits                       NaN
TotalPay                  92807.02
TotalPayBenefits          92807.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 10994, dtype: object)
(10995, Id                                              10996
EmployeeName                               ILLIAD FOX
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                    4965.2
OtherPay                                      8010.01
Benefits                                          NaN
TotalPay                                     92795.22
TotalPayBenefits                             92795.22
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 10995, dtype: object)
(10996, Id                                       10997
EmployeeName                    CHARLES NIMMER
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82155.52
OvertimePay                            3020.26
OtherPay                                7613.3
Benefits                                   NaN
TotalPay                              92789.08
TotalPayBenefits                      92789.08
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 10996, dtype: object)
(10997, Id                                      10998
EmployeeName                       JOE GIBSON
JobTitle            CHIEF STATIONARY ENGINEER
BasePay                               91858.0
OvertimePay                            927.41
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             92785.41
TotalPayBenefits                     92785.41
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 10997, dtype: object)
(10998, Id                                                10999
EmployeeName                            CRISTEL TULLOCK
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        90088.25
OvertimePay                                         0.0
OtherPay                                         2693.1
Benefits                                            NaN
TotalPay                                       92781.35
TotalPayBenefits                               92781.35
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 10998, dtype: object)
(10999, Id                                                      11000
EmployeeName                                      CHERI TONEY
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                               92779.8
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                              92779.8
TotalPayBenefits                                      92779.8
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 10999, dtype: object)
(11000, Id                                11001
EmployeeName               ISRAEL REYES
JobTitle            STATIONARY ENGINEER
BasePay                        72410.02
OvertimePay                    20365.32
OtherPay                            0.0
Benefits                            NaN
TotalPay                       92775.34
TotalPayBenefits               92775.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11000, dtype: object)
(11001, Id                           11002
EmployeeName          HEATHER WEBB
JobTitle            DEPUTY SHERIFF
BasePay                   78660.04
OvertimePay                6423.93
OtherPay                   7684.94
Benefits                       NaN
TotalPay                  92768.91
TotalPayBenefits          92768.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11001, dtype: object)
(11002, Id                            11003
EmployeeName        LARRY SHORES JR
JobTitle            UTILITY PLUMBER
BasePay                    87166.14
OvertimePay                 2792.86
OtherPay                    2804.97
Benefits                        NaN
TotalPay                   92763.97
TotalPayBenefits           92763.97
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11002, dtype: object)
(11003, Id                             11004
EmployeeName            PATRICK RICE
JobTitle            SENIOR PURCHASER
BasePay                     92268.73
OvertimePay                      0.0
OtherPay                       490.0
Benefits                         NaN
TotalPay                    92758.73
TotalPayBenefits            92758.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11003, dtype: object)
(11004, Id                              11005
EmployeeName             NIDA GAYAGOY
JobTitle            NURSING ASSISTANT
BasePay                       60059.3
OvertimePay                  27573.16
OtherPay                      5118.73
Benefits                          NaN
TotalPay                     92751.19
TotalPayBenefits             92751.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11004, dtype: object)
(11005, Id                               11006
EmployeeName             CLYDE ALLISON
JobTitle            SHEET METAL WORKER
BasePay                        90594.4
OvertimePay                        0.0
OtherPay                       2155.85
Benefits                           NaN
TotalPay                      92750.25
TotalPayBenefits              92750.25
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11005, dtype: object)
(11006, Id                                11007
EmployeeName        TANIA GHARECHEDAGHY
JobTitle             ASSOCIATE ENGINEER
BasePay                        92252.02
OvertimePay                         0.0
OtherPay                          495.0
Benefits                            NaN
TotalPay                       92747.02
TotalPayBenefits               92747.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11006, dtype: object)
(11007, Id                                         11008
EmployeeName                            JUDY DOI
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 92743.24
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                92743.24
TotalPayBenefits                        92743.24
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11007, dtype: object)
(11008, Id                             11009
EmployeeName           NELSON ALFARO
JobTitle            TRANSIT OPERATOR
BasePay                      46961.0
OvertimePay                 33164.55
OtherPay                    12608.96
Benefits                         NaN
TotalPay                    92734.51
TotalPayBenefits            92734.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11008, dtype: object)
(11009, Id                                                    11010
EmployeeName                                   EDWARD SIMPO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77742.81
OvertimePay                                         7005.05
OtherPay                                             7978.3
Benefits                                                NaN
TotalPay                                           92726.16
TotalPayBenefits                                   92726.16
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11009, dtype: object)
(11010, Id                           11011
EmployeeName             EDDY WONG
JobTitle            DEPUTY SHERIFF
BasePay                   86506.08
OvertimePay                  250.5
OtherPay                   5965.26
Benefits                       NaN
TotalPay                  92721.84
TotalPayBenefits          92721.84
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11010, dtype: object)
(11011, Id                                           11012
EmployeeName                            JOSE URIBE
JobTitle            SENIOR PARKING CONTROL OFFICER
BasePay                                    65324.6
OvertimePay                                26732.0
OtherPay                                    655.25
Benefits                                       NaN
TotalPay                                  92711.85
TotalPayBenefits                          92711.85
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11011, dtype: object)
(11012, Id                                               11013
EmployeeName                       LEONID SUNDUKOVSKIY
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       69457.53
OvertimePay                                   16912.85
OtherPay                                       6339.47
Benefits                                           NaN
TotalPay                                      92709.85
TotalPayBenefits                              92709.85
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11012, dtype: object)
(11013, Id                           11014
EmployeeName        MICHAEL GATMEN
JobTitle            DEPUTY SHERIFF
BasePay                    81522.5
OvertimePay                3261.14
OtherPay                   7921.59
Benefits                       NaN
TotalPay                  92705.23
TotalPayBenefits          92705.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11013, dtype: object)
(11014, Id                               11015
EmployeeName               KELLY LIPPI
JobTitle            NURSE PRACTITIONER
BasePay                       81897.17
OvertimePay                    2520.46
OtherPay                       8282.52
Benefits                           NaN
TotalPay                      92700.15
TotalPayBenefits              92700.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11014, dtype: object)
(11015, Id                                   11016
EmployeeName        MARY ANN DELOS ANGELES
JobTitle                 NURSING ASSISTANT
BasePay                            60206.6
OvertimePay                       27324.17
OtherPay                           5168.34
Benefits                               NaN
TotalPay                          92699.11
TotalPayBenefits                  92699.11
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11015, dtype: object)
(11016, Id                                11017
EmployeeName        BIENVENIDO BERNARDO
JobTitle                 DEPUTY SHERIFF
BasePay                        86609.15
OvertimePay                     3873.16
OtherPay                        2216.41
Benefits                            NaN
TotalPay                       92698.72
TotalPayBenefits               92698.72
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11016, dtype: object)
(11017, Id                             11018
EmployeeName         WILFREDO OLIVAR
JobTitle            TRANSIT OPERATOR
BasePay                     66814.98
OvertimePay                 20924.81
OtherPay                     4947.47
Benefits                         NaN
TotalPay                    92687.26
TotalPayBenefits            92687.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11017, dtype: object)
(11018, Id                                   11019
EmployeeName                    EGON STEIN
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                        2018.69
OtherPay                               0.0
Benefits                               NaN
TotalPay                           92682.7
TotalPayBenefits                   92682.7
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11018, dtype: object)
(11019, Id                             11020
EmployeeName        THERESA COURTNEY
JobTitle              DEPUTY SHERIFF
BasePay                      84845.2
OvertimePay                  3585.93
OtherPay                     4247.37
Benefits                         NaN
TotalPay                     92678.5
TotalPayBenefits             92678.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11019, dtype: object)
(11020, Id                                      11021
EmployeeName                  XING XIAN HUANG
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                               92674.6
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                              92674.6
TotalPayBenefits                      92674.6
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11020, dtype: object)
(11021, Id                                        11022
EmployeeName                      MICHAEL HANDY
JobTitle            MOBILE EQUIPMENT SUPERVISOR
BasePay                                 92674.4
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                                92674.4
TotalPayBenefits                        92674.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11021, dtype: object)
(11022, Id                               11023
EmployeeName          REYNOLD DEGUZMAN
JobTitle            SHERIFF'S SERGEANT
BasePay                       90790.04
OvertimePay                     612.15
OtherPay                        1264.5
Benefits                           NaN
TotalPay                      92666.69
TotalPayBenefits              92666.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11022, dtype: object)
(11023, Id                                     11024
EmployeeName                    JAMES QUESTO
JobTitle            GENERAL UTILITY MECHANIC
BasePay                             77888.26
OvertimePay                          5192.48
OtherPay                             9585.02
Benefits                                 NaN
TotalPay                            92665.76
TotalPayBenefits                    92665.76
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11023, dtype: object)
(11024, Id                                      11025
EmployeeName                    LEAH ESTIPONA
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64622.89
OvertimePay                          21715.99
OtherPay                              6326.42
Benefits                                  NaN
TotalPay                              92665.3
TotalPayBenefits                      92665.3
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11024, dtype: object)
(11025, Id                               11026
EmployeeName        JUANITA CONCEPCION
JobTitle              TRANSIT OPERATOR
BasePay                       65172.48
OvertimePay                   22528.27
OtherPay                       4961.28
Benefits                           NaN
TotalPay                      92662.03
TotalPayBenefits              92662.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11025, dtype: object)
(11026, Id                           11027
EmployeeName           ROY TUMAMAK
JobTitle            DEPUTY SHERIFF
BasePay                   86609.16
OvertimePay                3940.68
OtherPay                   2110.17
Benefits                       NaN
TotalPay                  92660.01
TotalPayBenefits          92660.01
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11026, dtype: object)
(11027, Id                          11028
EmployeeName           JOHN TROUP
JobTitle                  PLUMBER
BasePay                   90661.9
OvertimePay                   0.0
OtherPay                  1997.25
Benefits                      NaN
TotalPay                 92659.15
TotalPayBenefits         92659.15
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11027, dtype: object)
(11028, Id                             11029
EmployeeName             FRANK HUYNH
JobTitle            TRANSIT OPERATOR
BasePay                     65530.84
OvertimePay                 26958.95
OtherPay                      169.29
Benefits                         NaN
TotalPay                    92659.08
TotalPayBenefits            92659.08
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11028, dtype: object)
(11029, Id                             11030
EmployeeName              IVY SPIVEY
JobTitle            TRANSIT OPERATOR
BasePay                     65689.07
OvertimePay                 24622.42
OtherPay                     2342.57
Benefits                         NaN
TotalPay                    92654.06
TotalPayBenefits            92654.06
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11029, dtype: object)
(11030, Id                                             11031
EmployeeName                       WILLIAM JESPERSEN
JobTitle            DISTRICT ATTORNEY'S INVESTIGATOR
BasePay                                     87404.09
OvertimePay                                      0.0
OtherPay                                      5249.5
Benefits                                         NaN
TotalPay                                    92653.59
TotalPayBenefits                            92653.59
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11030, dtype: object)
(11031, Id                              11032
EmployeeName        YOHANDRIS MEDEROS
JobTitle             TRANSIT OPERATOR
BasePay                      64714.84
OvertimePay                  26965.01
OtherPay                       968.98
Benefits                          NaN
TotalPay                     92648.83
TotalPayBenefits             92648.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11031, dtype: object)
(11032, Id                               11033
EmployeeName            LARRY MIKELSON
JobTitle            SHEET METAL WORKER
BasePay                       91325.01
OvertimePay                        0.0
OtherPay                        1322.0
Benefits                           NaN
TotalPay                      92647.01
TotalPayBenefits              92647.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11032, dtype: object)
(11033, Id                                               11034
EmployeeName                              MANUEL LIMOS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    7382.85
OtherPay                                       7673.56
Benefits                                           NaN
TotalPay                                      92636.81
TotalPayBenefits                              92636.81
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11033, dtype: object)
(11034, Id                           11035
EmployeeName        WILLIAM CLARKE
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                1296.16
OtherPay                   4493.79
Benefits                       NaN
TotalPay                  92629.96
TotalPayBenefits          92629.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11034, dtype: object)
(11035, Id                           11036
EmployeeName         FRED NICHOLAS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                  63.88
OtherPay                   6052.61
Benefits                       NaN
TotalPay                  92622.49
TotalPayBenefits          92622.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11035, dtype: object)
(11036, Id                                       11037
EmployeeName                    DANIEL SANTIZO
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               82057.05
OvertimePay                            1801.89
OtherPay                               8761.71
Benefits                                   NaN
TotalPay                              92620.65
TotalPayBenefits                      92620.65
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11036, dtype: object)
(11037, Id                                    11038
EmployeeName                    ROGER BROWN
JobTitle            WATER SERVICE INSPECTOR
BasePay                             91516.6
OvertimePay                          1100.4
OtherPay                                0.0
Benefits                                NaN
TotalPay                            92617.0
TotalPayBenefits                    92617.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11037, dtype: object)
(11038, Id                             11039
EmployeeName              KWONG NGAI
JobTitle            TRANSIT OPERATOR
BasePay                      65337.2
OvertimePay                 25588.83
OtherPay                     1689.74
Benefits                         NaN
TotalPay                    92615.77
TotalPayBenefits            92615.77
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11038, dtype: object)
(11039, Id                                       11040
EmployeeName                 KATHERINE GADDESS
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                            7771.55
OtherPay                                943.82
Benefits                                   NaN
TotalPay                              92596.69
TotalPayBenefits                      92596.69
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11039, dtype: object)
(11040, Id                                11041
EmployeeName           RICHARD GLASSMAN
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    34840.57
OtherPay                        1875.54
Benefits                            NaN
TotalPay                       92596.11
TotalPayBenefits               92596.11
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11040, dtype: object)
(11041, Id                          11042
EmployeeName        LUCAS ECKROAD
JobTitle              PLANNER III
BasePay                  89987.91
OvertimePay                   0.0
OtherPay                  2604.38
Benefits                      NaN
TotalPay                 92592.29
TotalPayBenefits         92592.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11041, dtype: object)
(11042, Id                             11043
EmployeeName              JOHNNY LEE
JobTitle            TRANSIT OPERATOR
BasePay                      67349.6
OvertimePay                  21698.5
OtherPay                     3543.05
Benefits                         NaN
TotalPay                    92591.15
TotalPayBenefits            92591.15
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11042, dtype: object)
(11043, Id                                  11044
EmployeeName            LAWRENCE SULLIVAN
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           92493.8
OvertimePay                           0.0
OtherPay                             96.0
Benefits                              NaN
TotalPay                          92589.8
TotalPayBenefits                  92589.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11043, dtype: object)
(11044, Id                                11045
EmployeeName                GREGG SNELL
JobTitle            STATIONARY ENGINEER
BasePay                         72743.9
OvertimePay                    12835.48
OtherPay                        7001.37
Benefits                            NaN
TotalPay                       92580.75
TotalPayBenefits               92580.75
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11044, dtype: object)
(11045, Id                                11046
EmployeeName             WILFREDO CASAS
JobTitle            STATIONARY ENGINEER
BasePay                         73207.9
OvertimePay                     7426.92
OtherPay                       11945.38
Benefits                            NaN
TotalPay                        92580.2
TotalPayBenefits                92580.2
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11045, dtype: object)
(11046, Id                                                    11047
EmployeeName                       ANGELA BONAPARTE-ANDREWS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77423.0
OvertimePay                                         6674.99
OtherPay                                            8481.21
Benefits                                                NaN
TotalPay                                            92579.2
TotalPayBenefits                                    92579.2
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11046, dtype: object)
(11047, Id                               11048
EmployeeName         LARRY FITZSIMMONS
JobTitle            SHEET METAL WORKER
BasePay                       91690.37
OvertimePay                     821.93
OtherPay                          60.0
Benefits                           NaN
TotalPay                       92572.3
TotalPayBenefits               92572.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11047, dtype: object)
(11048, Id                           11049
EmployeeName        PATRICK BROGAN
JobTitle                BRICKLAYER
BasePay                    84964.8
OvertimePay                4946.27
OtherPay                   2658.52
Benefits                       NaN
TotalPay                  92569.59
TotalPayBenefits          92569.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11048, dtype: object)
(11049, Id                             11050
EmployeeName          HECTOR GODINEZ
JobTitle            TRANSIT OPERATOR
BasePay                     65632.69
OvertimePay                 22027.61
OtherPay                      4908.7
Benefits                         NaN
TotalPay                     92569.0
TotalPayBenefits             92569.0
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11049, dtype: object)
(11050, Id                                  11051
EmployeeName                     JOHN LEI
JobTitle            SENIOR MICROBIOLOGIST
BasePay                          92564.98
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         92564.98
TotalPayBenefits                 92564.98
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11050, dtype: object)
(11051, Id                               11052
EmployeeName             JOSEPH NGUYEN
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.9
OvertimePay                        0.0
OtherPay                        2757.1
Benefits                           NaN
TotalPay                       92564.0
TotalPayBenefits               92564.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11051, dtype: object)
(11052, Id                           11053
EmployeeName         ROBERT KELLEY
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                  63.88
OtherPay                    5990.1
Benefits                       NaN
TotalPay                  92559.98
TotalPayBenefits          92559.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11052, dtype: object)
(11053, Id                                  11054
EmployeeName                   JOHN COYNE
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92358.64
OvertimePay                         64.88
OtherPay                           129.75
Benefits                              NaN
TotalPay                         92553.27
TotalPayBenefits                 92553.27
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11053, dtype: object)
(11054, Id                                     11055
EmployeeName                 ALBERTO HERRERA
JobTitle            ENGINEERING ASSOCIATE II
BasePay                             85940.03
OvertimePay                          6610.49
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            92550.52
TotalPayBenefits                    92550.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11054, dtype: object)
(11055, Id                                       11056
EmployeeName                       MARIA MCKEE
JobTitle            ADMINISTRATIVE ANALYST III
BasePay                               92550.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              92550.03
TotalPayBenefits                      92550.03
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11055, dtype: object)
(11056, Id                                    11057
EmployeeName                      TONY CHAI
JobTitle            PARKING CONTROL OFFICER
BasePay                            54889.39
OvertimePay                        30345.33
OtherPay                            7310.45
Benefits                                NaN
TotalPay                           92545.17
TotalPayBenefits                   92545.17
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11056, dtype: object)
(11057, Id                            11058
EmployeeName        TODD STARKOVICH
JobTitle            UTILITY PLUMBER
BasePay                    83195.71
OvertimePay                 8071.97
OtherPay                    1277.28
Benefits                        NaN
TotalPay                   92544.96
TotalPayBenefits           92544.96
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11057, dtype: object)
(11058, Id                           11059
EmployeeName           ROSE MILLER
JobTitle            COURT REPORTER
BasePay                    84126.0
OvertimePay                    0.0
OtherPay                    8412.6
Benefits                       NaN
TotalPay                   92538.6
TotalPayBenefits           92538.6
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11058, dtype: object)
(11059, Id                           11060
EmployeeName             BRIAN KAM
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                  63.88
OtherPay                   5965.26
Benefits                       NaN
TotalPay                  92535.15
TotalPayBenefits          92535.15
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11059, dtype: object)
(11060, Id                           11061
EmployeeName         MICHAEL LEWIS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                  63.88
OtherPay                   5965.24
Benefits                       NaN
TotalPay                  92535.12
TotalPayBenefits          92535.12
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11060, dtype: object)
(11061, Id                          11062
EmployeeName          EDWARD DUNN
JobTitle              FIREFIGHTER
BasePay                  84333.16
OvertimePay               3113.55
OtherPay                  5067.72
Benefits                      NaN
TotalPay                 92514.43
TotalPayBenefits         92514.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11061, dtype: object)
(11062, Id                                             11063
EmployeeName                         SANDRA NAUGHTON
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     92514.21
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    92514.21
TotalPayBenefits                            92514.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11062, dtype: object)
(11063, Id                              11064
EmployeeName             EDVIDA MOORE
JobTitle            ASSOCIATE AUDITOR
BasePay                      92507.81
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92507.81
TotalPayBenefits             92507.81
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11063, dtype: object)
(11064, Id                              11065
EmployeeName               VIVIAN CHU
JobTitle            ASSOCIATE AUDITOR
BasePay                       92507.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92507.6
TotalPayBenefits              92507.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11064, dtype: object)
(11065, Id                                                     11066
EmployeeName                              RAYMOND ALVAREZ JR
JobTitle            AUTOMOTIVE MECHANIC ASSISTANT SUPERVISOR
BasePay                                             88490.37
OvertimePay                                           3356.9
OtherPay                                               660.0
Benefits                                                 NaN
TotalPay                                            92507.27
TotalPayBenefits                                    92507.27
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11065, dtype: object)
(11066, Id                              11067
EmployeeName           MARK DELA ROSA
JobTitle            ASSOCIATE AUDITOR
BasePay                      92507.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92507.01
TotalPayBenefits             92507.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11066, dtype: object)
(11067, Id                              11068
EmployeeName             JOHN HASKELL
JobTitle            ASSOCIATE AUDITOR
BasePay                       92507.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92507.0
TotalPayBenefits              92507.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11067, dtype: object)
(11068, Id                                              11069
EmployeeName                            CALVIN HOLMES
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80510.22
OvertimePay                                   5955.05
OtherPay                                      6038.45
Benefits                                          NaN
TotalPay                                     92503.72
TotalPayBenefits                             92503.72
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11068, dtype: object)
(11069, Id                                          11070
EmployeeName                      BARRETT KRIEGER
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90450.58
OvertimePay                               1645.93
OtherPay                                   402.17
Benefits                                      NaN
TotalPay                                 92498.68
TotalPayBenefits                         92498.68
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11069, dtype: object)
(11070, Id                                  11071
EmployeeName                   KELLEE HOM
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92493.78
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         92493.78
TotalPayBenefits                 92493.78
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11070, dtype: object)
(11071, Id                             11072
EmployeeName             HOANG HUYNH
JobTitle            TRANSIT OPERATOR
BasePay                      63861.2
OvertimePay                  26430.9
OtherPay                     2195.79
Benefits                         NaN
TotalPay                    92487.89
TotalPayBenefits            92487.89
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11071, dtype: object)
(11072, Id                          11073
EmployeeName            HUGH WANG
JobTitle               MANAGER II
BasePay                  91755.95
OvertimePay                   0.0
OtherPay                   729.84
Benefits                      NaN
TotalPay                 92485.79
TotalPayBenefits         92485.79
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11072, dtype: object)
(11073, Id                               11074
EmployeeName           MARGARET MCNIEL
JobTitle            NURSE PRACTITIONER
BasePay                       87318.54
OvertimePay                     2358.9
OtherPay                        2807.2
Benefits                           NaN
TotalPay                      92484.64
TotalPayBenefits              92484.64
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11073, dtype: object)
(11074, Id                            11075
EmployeeName        RICHARD ROBISON
JobTitle             DEPUTY SHERIFF
BasePay                    86506.01
OvertimePay                 1663.34
OtherPay                    4315.13
Benefits                        NaN
TotalPay                   92484.48
TotalPayBenefits           92484.48
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11074, dtype: object)
(11075, Id                           11076
EmployeeName        DANIEL KIRRANE
JobTitle            DEPUTY SHERIFF
BasePay                   86163.68
OvertimePay                1012.02
OtherPay                   5307.53
Benefits                       NaN
TotalPay                  92483.23
TotalPayBenefits          92483.23
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11075, dtype: object)
(11076, Id                                  11077
EmployeeName             MARC ELLYN GARTH
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92473.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         92473.41
TotalPayBenefits                 92473.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11076, dtype: object)
(11077, Id                             11078
EmployeeName        GRACIELA AREVALO
JobTitle            REGISTERED NURSE
BasePay                     76212.55
OvertimePay                  4701.19
OtherPay                    11558.28
Benefits                         NaN
TotalPay                    92472.02
TotalPayBenefits            92472.02
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11077, dtype: object)
(11078, Id                            11079
EmployeeName        RICHARD KOEHLER
JobTitle             DEPUTY SHERIFF
BasePay                    86506.07
OvertimePay                     0.0
OtherPay                    5965.29
Benefits                        NaN
TotalPay                   92471.36
TotalPayBenefits           92471.36
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11078, dtype: object)
(11079, Id                           11080
EmployeeName        JAMES GALLIANI
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                    0.0
OtherPay                   5965.25
Benefits                       NaN
TotalPay                  92471.25
TotalPayBenefits          92471.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11079, dtype: object)
(11080, Id                             11081
EmployeeName            KENNETH WONG
JobTitle            TRANSIT OPERATOR
BasePay                     65616.16
OvertimePay                 24662.21
OtherPay                     2189.27
Benefits                         NaN
TotalPay                    92467.64
TotalPayBenefits            92467.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11080, dtype: object)
(11081, Id                                 11082
EmployeeName              SCOTT THOMPSON
JobTitle            CAR AND AUTO PAINTER
BasePay                         72782.71
OvertimePay                     19182.42
OtherPay                           500.0
Benefits                             NaN
TotalPay                        92465.13
TotalPayBenefits                92465.13
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11081, dtype: object)
(11082, Id                               11083
EmployeeName               SAMSON CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                       2642.97
Benefits                           NaN
TotalPay                      92448.98
TotalPayBenefits              92448.98
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11082, dtype: object)
(11083, Id                                    11084
EmployeeName               SUZANNE PAMPANIN
JobTitle            WATER SERVICE INSPECTOR
BasePay                             92433.6
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            92433.6
TotalPayBenefits                    92433.6
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11083, dtype: object)
(11084, Id                                                    11085
EmployeeName                                   DARYL SEMIEN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77526.3
OvertimePay                                         5931.45
OtherPay                                            8975.18
Benefits                                                NaN
TotalPay                                           92432.93
TotalPayBenefits                                   92432.93
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11084, dtype: object)
(11085, Id                                          11086
EmployeeName                           HENRY GONG
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91816.4
OvertimePay                                   0.0
OtherPay                                   612.76
Benefits                                      NaN
TotalPay                                 92429.16
TotalPayBenefits                         92429.16
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11085, dtype: object)
(11086, Id                               11087
EmployeeName               TAMARA OOMS
JobTitle            NURSE PRACTITIONER
BasePay                       78163.94
OvertimePay                        0.0
OtherPay                      14260.44
Benefits                           NaN
TotalPay                      92424.38
TotalPayBenefits              92424.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11086, dtype: object)
(11087, Id                                11088
EmployeeName                JESUS ROJAS
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        74570.95
OvertimePay                    16065.55
OtherPay                        1781.38
Benefits                            NaN
TotalPay                       92417.88
TotalPayBenefits               92417.88
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11087, dtype: object)
(11088, Id                                11089
EmployeeName                 JOE BOSTEN
JobTitle            STATIONARY ENGINEER
BasePay                        72411.04
OvertimePay                     8398.48
OtherPay                       11596.51
Benefits                            NaN
TotalPay                       92406.03
TotalPayBenefits               92406.03
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11088, dtype: object)
(11089, Id                                                    11090
EmployeeName                               DANESHIA ADAMSON
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77904.29
OvertimePay                                        10870.15
OtherPay                                            3631.53
Benefits                                                NaN
TotalPay                                           92405.97
TotalPayBenefits                                   92405.97
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11089, dtype: object)
(11090, Id                           11091
EmployeeName        GEORGE AMORUSO
JobTitle               ELECTRICIAN
BasePay                   86771.12
OvertimePay                3625.74
OtherPay                   1992.25
Benefits                       NaN
TotalPay                  92389.11
TotalPayBenefits          92389.11
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11090, dtype: object)
(11091, Id                              11092
EmployeeName        ROBERT KRUGER III
JobTitle               DEPUTY SHERIFF
BasePay                      75225.64
OvertimePay                  12383.01
OtherPay                      4770.82
Benefits                          NaN
TotalPay                     92379.47
TotalPayBenefits             92379.47
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11091, dtype: object)
(11092, Id                          11093
EmployeeName         HECTOR DURAN
JobTitle             TRUCK DRIVER
BasePay                  73775.01
OvertimePay              14086.97
OtherPay                  4516.65
Benefits                      NaN
TotalPay                 92378.63
TotalPayBenefits         92378.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11092, dtype: object)
(11093, Id                             11094
EmployeeName        DIANA VANDERBURG
JobTitle                 PLANNER III
BasePay                      89080.0
OvertimePay                      0.0
OtherPay                      3297.3
Benefits                         NaN
TotalPay                     92377.3
TotalPayBenefits             92377.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11093, dtype: object)
(11094, Id                                  11095
EmployeeName               MICHAEL BARBEE
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          92374.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         92374.41
TotalPayBenefits                 92374.41
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11094, dtype: object)
(11095, Id                               11096
EmployeeName             GARY GIUBBINI
JobTitle            COURT SUPERVISOR I
BasePay                       92364.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      92364.44
TotalPayBenefits              92364.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11095, dtype: object)
(11096, Id                                11097
EmployeeName           FERNANDO GABRIEL
JobTitle            STATIONARY ENGINEER
BasePay                         74524.7
OvertimePay                     4654.03
OtherPay                       13184.79
Benefits                            NaN
TotalPay                       92363.52
TotalPayBenefits               92363.52
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11096, dtype: object)
(11097, Id                                                         11098
EmployeeName                                    WINIFRED LAIDLAW
JobTitle            APPRENTICE STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                                 79820.01
OvertimePay                                              1794.52
OtherPay                                                10743.99
Benefits                                                     NaN
TotalPay                                                92358.52
TotalPayBenefits                                        92358.52
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 11097, dtype: object)
(11098, Id                           11099
EmployeeName         JULIET MARTIN
JobTitle            DEPUTY SHERIFF
BasePay                    86162.0
OvertimePay                  250.5
OtherPay                    5944.6
Benefits                       NaN
TotalPay                   92357.1
TotalPayBenefits           92357.1
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11098, dtype: object)
(11099, Id                                 11100
EmployeeName                   HARRY HOM
JobTitle            POWER HOUSE OPERATOR
BasePay                         71062.82
OvertimePay                     19633.74
OtherPay                         1657.83
Benefits                             NaN
TotalPay                        92354.39
TotalPayBenefits                92354.39
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11099, dtype: object)
(11100, Id                            11101
EmployeeName        EDWARD DENATALE
JobTitle                    PLUMBER
BasePay                    83927.75
OvertimePay                     0.0
OtherPay                    8423.37
Benefits                        NaN
TotalPay                   92351.12
TotalPayBenefits           92351.12
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11100, dtype: object)
(11101, Id                                   11102
EmployeeName                   ALDEN BELLO
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           77008.15
OvertimePay                        8310.33
OtherPay                           7032.16
Benefits                               NaN
TotalPay                          92350.64
TotalPayBenefits                  92350.64
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11101, dtype: object)
(11102, Id                                             11103
EmployeeName                            YVONNE UYEKI
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     92350.53
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    92350.53
TotalPayBenefits                            92350.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11102, dtype: object)
(11103, Id                              11104
EmployeeName        MELVIN WASHINGTON
JobTitle             TRANSIT OPERATOR
BasePay                      68302.77
OvertimePay                   21225.2
OtherPay                      2819.35
Benefits                          NaN
TotalPay                     92347.32
TotalPayBenefits             92347.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11103, dtype: object)
(11104, Id                             11105
EmployeeName               WALTER IP
JobTitle            TRANSIT OPERATOR
BasePay                     65429.62
OvertimePay                 25877.46
OtherPay                      1039.8
Benefits                         NaN
TotalPay                    92346.88
TotalPayBenefits            92346.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11104, dtype: object)
(11105, Id                                               11106
EmployeeName                            MARJORIE DAVIS
JobTitle            WORKER'S COMPENSATION SUPERVISOR I
BasePay                                       92344.78
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      92344.78
TotalPayBenefits                              92344.78
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11105, dtype: object)
(11106, Id                           11107
EmployeeName          PAUL TIMPANO
JobTitle            DEPUTY SHERIFF
BasePay                   84510.38
OvertimePay                2267.97
OtherPay                   5562.36
Benefits                       NaN
TotalPay                  92340.71
TotalPayBenefits          92340.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11106, dtype: object)
(11107, Id                                  11108
EmployeeName        LYDIA OOSTERBAAN-BALL
JobTitle               SHEET METAL WORKER
BasePay                          90594.43
OvertimePay                        616.44
OtherPay                           1125.0
Benefits                              NaN
TotalPay                         92335.87
TotalPayBenefits                 92335.87
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11107, dtype: object)
(11108, Id                             11109
EmployeeName           DANIEL ROSIAK
JobTitle            POLICE OFFICER I
BasePay                     84835.71
OvertimePay                  4264.18
OtherPay                     3235.94
Benefits                         NaN
TotalPay                    92335.83
TotalPayBenefits            92335.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11108, dtype: object)
(11109, Id                               11110
EmployeeName              DANIEL ROCHE
JobTitle            SHEET METAL WORKER
BasePay                       90765.63
OvertimePay                        0.0
OtherPay                        1567.0
Benefits                           NaN
TotalPay                      92332.63
TotalPayBenefits              92332.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11109, dtype: object)
(11110, Id                            11111
EmployeeName        REYNARD BURGESS
JobTitle             DEPUTY SHERIFF
BasePay                    74113.14
OvertimePay                14251.89
OtherPay                    3958.87
Benefits                        NaN
TotalPay                    92323.9
TotalPayBenefits            92323.9
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11110, dtype: object)
(11111, Id                                             11112
EmployeeName                     MARILOU DURANO-FARO
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     92323.65
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    92323.65
TotalPayBenefits                            92323.65
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11111, dtype: object)
(11112, Id                                                              11113
EmployeeName                                           ROBERT RAMIREZ
JobTitle            TRACK MAINTENANCE SUPERINTENDENT,MUNICIPAL RAI...
BasePay                                                      92168.64
OvertimePay                                                       0.0
OtherPay                                                        146.0
Benefits                                                          NaN
TotalPay                                                     92314.64
TotalPayBenefits                                             92314.64
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11112, dtype: object)
(11113, Id                            11114
EmployeeName         WILLIAM TOLAND
JobTitle            UTILITY PLUMBER
BasePay                     90825.0
OvertimePay                  136.22
OtherPay                     1350.5
Benefits                        NaN
TotalPay                   92311.72
TotalPayBenefits           92311.72
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11113, dtype: object)
(11114, Id                          11115
EmployeeName                HE DU
JobTitle            PATTERN MAKER
BasePay                  83034.61
OvertimePay               5169.14
OtherPay                   4101.0
Benefits                      NaN
TotalPay                 92304.75
TotalPayBenefits         92304.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11114, dtype: object)
(11115, Id                                                       11116
EmployeeName                                      ROBERT MOORE
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79551.45
OvertimePay                                            9561.78
OtherPay                                               3185.43
Benefits                                                   NaN
TotalPay                                              92298.66
TotalPayBenefits                                      92298.66
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11115, dtype: object)
(11116, Id                               11117
EmployeeName            WILLIAM SOMOZA
JobTitle            SHEET METAL WORKER
BasePay                       90377.52
OvertimePay                        0.0
OtherPay                       1920.63
Benefits                           NaN
TotalPay                      92298.15
TotalPayBenefits              92298.15
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11116, dtype: object)
(11117, Id                             11118
EmployeeName                  KU LEE
JobTitle            TRANSIT OPERATOR
BasePay                     64505.61
OvertimePay                 26794.65
OtherPay                      995.27
Benefits                         NaN
TotalPay                    92295.53
TotalPayBenefits            92295.53
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11117, dtype: object)
(11118, Id                                 11119
EmployeeName                 JERE INGRAM
JobTitle            INDUSTRIAL HYGIENIST
BasePay                          92292.3
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                         92292.3
TotalPayBenefits                 92292.3
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11118, dtype: object)
(11119, Id                            11120
EmployeeName        FRANCIS REGIDOR
JobTitle             DEPUTY SHERIFF
BasePay                    79364.91
OvertimePay                 6746.41
OtherPay                    6168.43
Benefits                        NaN
TotalPay                   92279.75
TotalPayBenefits           92279.75
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11119, dtype: object)
(11120, Id                             11121
EmployeeName         ANTHONY SUMPTER
JobTitle            TRANSIT OPERATOR
BasePay                     65479.19
OvertimePay                  23909.4
OtherPay                     2885.03
Benefits                         NaN
TotalPay                    92273.62
TotalPayBenefits            92273.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11120, dtype: object)
(11121, Id                                 11122
EmployeeName               JERRY KONDEFF
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          74440.8
OvertimePay                      16449.9
OtherPay                         1377.99
Benefits                             NaN
TotalPay                        92268.69
TotalPayBenefits                92268.69
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11121, dtype: object)
(11122, Id                                   11123
EmployeeName                  EDWARD LEUNG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        1604.18
OtherPay                               0.0
Benefits                               NaN
TotalPay                          92268.18
TotalPayBenefits                  92268.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11122, dtype: object)
(11123, Id                             11124
EmployeeName        EDWARD RODRIGUEZ
JobTitle                 ELECTRICIAN
BasePay                     81150.48
OvertimePay                  5995.46
OtherPay                     5110.69
Benefits                         NaN
TotalPay                    92256.63
TotalPayBenefits            92256.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11123, dtype: object)
(11124, Id                                              11125
EmployeeName                             MICHAEL HIGH
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   4688.97
OtherPay                                      7738.03
Benefits                                          NaN
TotalPay                                     92247.01
TotalPayBenefits                             92247.01
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11124, dtype: object)
(11125, Id                             11126
EmployeeName              YEUNG YUEN
JobTitle            TRANSIT OPERATOR
BasePay                     66123.91
OvertimePay                  22863.6
OtherPay                     3245.73
Benefits                         NaN
TotalPay                    92233.24
TotalPayBenefits            92233.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11125, dtype: object)
(11126, Id                           11127
EmployeeName         JEREMY JAYSON
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 1450.4
OtherPay                   4275.68
Benefits                       NaN
TotalPay                  92232.08
TotalPayBenefits          92232.08
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11126, dtype: object)
(11127, Id                               11128
EmployeeName        CHRISTIANNE CROTTY
JobTitle                DEPUTY SHERIFF
BasePay                        86278.5
OvertimePay                        0.0
OtherPay                       5947.04
Benefits                           NaN
TotalPay                      92225.54
TotalPayBenefits              92225.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11127, dtype: object)
(11128, Id                                   11129
EmployeeName                   LLOYD PAYNE
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           77012.69
OvertimePay                        8139.53
OtherPay                           7064.96
Benefits                               NaN
TotalPay                          92217.18
TotalPayBenefits                  92217.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11128, dtype: object)
(11129, Id                                          11130
EmployeeName                            LUIS MENA
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  84224.27
OvertimePay                               5463.57
OtherPay                                  2525.13
Benefits                                      NaN
TotalPay                                 92212.97
TotalPayBenefits                         92212.97
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11129, dtype: object)
(11130, Id                               11131
EmployeeName            ANTHONY THOMAS
JobTitle            SHEET METAL WORKER
BasePay                       90594.42
OvertimePay                        0.0
OtherPay                        1618.0
Benefits                           NaN
TotalPay                      92212.42
TotalPayBenefits              92212.42
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11130, dtype: object)
(11131, Id                                                              11132
EmployeeName                                             JUDITH KLAIN
JobTitle            EXECUTIVE ASSISTANT TO THE ADMINISTRATOR, S.F....
BasePay                                                      92209.27
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     92209.27
TotalPayBenefits                                             92209.27
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11131, dtype: object)
(11132, Id                               11133
EmployeeName             ABBAS NAGHAVI
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                       2395.27
Benefits                           NaN
TotalPay                      92201.28
TotalPayBenefits              92201.28
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11132, dtype: object)
(11133, Id                          11134
EmployeeName          JAMES ROUSH
JobTitle             TRUCK DRIVER
BasePay                   73221.7
OvertimePay              13848.49
OtherPay                  5119.18
Benefits                      NaN
TotalPay                 92189.37
TotalPayBenefits         92189.37
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11133, dtype: object)
(11134, Id                                11135
EmployeeName              LUVIMIN LOPEZ
JobTitle            STATIONARY ENGINEER
BasePay                         75359.7
OvertimePay                     4641.08
OtherPay                       12186.87
Benefits                            NaN
TotalPay                       92187.65
TotalPayBenefits               92187.65
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11134, dtype: object)
(11135, Id                                           11136
EmployeeName                             NANCY YEE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                    1520.0
Benefits                                       NaN
TotalPay                                   92184.0
TotalPayBenefits                           92184.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11135, dtype: object)
(11136, Id                                                  11137
EmployeeName                                DANIEL LARSON
JobTitle            TRACK MAINTENANCE WORKER SUPERVISOR I
BasePay                                          64845.54
OvertimePay                                      23613.43
OtherPay                                          3714.18
Benefits                                              NaN
TotalPay                                         92173.15
TotalPayBenefits                                 92173.15
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 11136, dtype: object)
(11137, Id                           11138
EmployeeName          KEVIN BOLTER
JobTitle            CHIEF SURVEYOR
BasePay                    92165.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                   92165.0
TotalPayBenefits           92165.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11137, dtype: object)
(11138, Id                            11139
EmployeeName          DENNIS ROVSEK
JobTitle            UTILITY PLUMBER
BasePay                    90098.42
OvertimePay                     0.0
OtherPay                     2060.0
Benefits                        NaN
TotalPay                   92158.42
TotalPayBenefits           92158.42
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11138, dtype: object)
(11139, Id                                 11140
EmployeeName           ANNELISE GOLDBERG
JobTitle            PHYSICIAN SPECIALIST
BasePay                         88153.76
OvertimePay                          0.0
OtherPay                          3993.0
Benefits                             NaN
TotalPay                        92146.76
TotalPayBenefits                92146.76
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11139, dtype: object)
(11140, Id                                      11141
EmployeeName                    EDNA SANTIAGO
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64787.15
OvertimePay                          20478.83
OtherPay                              6872.24
Benefits                                  NaN
TotalPay                             92138.22
TotalPayBenefits                     92138.22
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11140, dtype: object)
(11141, Id                           11142
EmployeeName         SMITH PADILLA
JobTitle            DEPUTY SHERIFF
BasePay                    86840.0
OvertimePay                1022.04
OtherPay                   4270.33
Benefits                       NaN
TotalPay                  92132.37
TotalPayBenefits          92132.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11141, dtype: object)
(11142, Id                                  11143
EmployeeName                DEMETRA PARAS
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           92125.9
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          92125.9
TotalPayBenefits                  92125.9
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11142, dtype: object)
(11143, Id                                                   11144
EmployeeName                                  MARIO MORENO
JobTitle            HOSPITAL ELIGIBILITY WORKER SUPERVISOR
BasePay                                            76633.6
OvertimePay                                       14467.69
OtherPay                                           1024.45
Benefits                                               NaN
TotalPay                                          92125.74
TotalPayBenefits                                  92125.74
Year                                                  2011
Notes                                                  NaN
Agency                                       San Francisco
Status                                                 NaN
Name: 11143, dtype: object)
(11144, Id                                          11145
EmployeeName                          TROY ESCORT
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   83713.8
OvertimePay                               6012.59
OtherPay                                  2393.77
Benefits                                      NaN
TotalPay                                 92120.16
TotalPayBenefits                         92120.16
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11144, dtype: object)
(11145, Id                                                11146
EmployeeName                                JUDY RIVERA
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                        59518.02
OvertimePay                                    26824.65
OtherPay                                        5775.11
Benefits                                            NaN
TotalPay                                       92117.78
TotalPayBenefits                               92117.78
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11145, dtype: object)
(11146, Id                                           11147
EmployeeName                            CLARK BELL
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                   1357.59
Benefits                                       NaN
TotalPay                                  92113.59
TotalPayBenefits                          92113.59
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11146, dtype: object)
(11147, Id                                                  11148
EmployeeName                                 VICTOR YOUNG
JobTitle            ASSISTANT CLERK, BOARD OF SUPERVISORS
BasePay                                           90664.0
OvertimePay                                       1440.84
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         92104.84
TotalPayBenefits                                 92104.84
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 11147, dtype: object)
(11148, Id                           11149
EmployeeName         JAY FOXWORTHY
JobTitle            DEPUTY SHERIFF
BasePay                   81532.76
OvertimePay                    0.0
OtherPay                  10562.53
Benefits                       NaN
TotalPay                  92095.29
TotalPayBenefits          92095.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11148, dtype: object)
(11149, Id                             11150
EmployeeName          CORNEL ZACHARY
JobTitle            TRANSIT OPERATOR
BasePay                     64068.73
OvertimePay                 27838.29
OtherPay                      186.25
Benefits                         NaN
TotalPay                    92093.27
TotalPayBenefits            92093.27
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11149, dtype: object)
(11150, Id                                11151
EmployeeName           LEONARDO PASCUAL
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72636.56
OvertimePay                    11663.72
OtherPay                        7792.87
Benefits                            NaN
TotalPay                       92093.15
TotalPayBenefits               92093.15
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11150, dtype: object)
(11151, Id                             11152
EmployeeName            ELISHA PEREZ
JobTitle            REGISTERED NURSE
BasePay                     85463.02
OvertimePay                  2073.63
OtherPay                     4552.57
Benefits                         NaN
TotalPay                    92089.22
TotalPayBenefits            92089.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11151, dtype: object)
(11152, Id                              11153
EmployeeName         STEPHEN FLAHERTY
JobTitle            ASSOCIATE AUDITOR
BasePay                      92082.05
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92082.05
TotalPayBenefits             92082.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11152, dtype: object)
(11153, Id                                   11154
EmployeeName        ADRIAN JOSEP LAVITORIA
JobTitle                    DEPUTY SHERIFF
BasePay                           74551.41
OvertimePay                       10704.97
OtherPay                           6820.43
Benefits                               NaN
TotalPay                          92076.81
TotalPayBenefits                  92076.81
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11153, dtype: object)
(11154, Id                           11155
EmployeeName        RICHARD CONWAY
JobTitle                   PLUMBER
BasePay                   88100.28
OvertimePay                 416.88
OtherPay                   3553.16
Benefits                       NaN
TotalPay                  92070.32
TotalPayBenefits          92070.32
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11154, dtype: object)
(11155, Id                                    11156
EmployeeName                       HAI TRAN
JobTitle            WATER SERVICE INSPECTOR
BasePay                             90966.4
OvertimePay                          1100.4
OtherPay                                0.0
Benefits                                NaN
TotalPay                            92066.8
TotalPayBenefits                    92066.8
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11155, dtype: object)
(11156, Id                                        11157
EmployeeName                   DAVID SUTHERLAND
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                87673.27
OvertimePay                                 0.0
OtherPay                                4384.18
Benefits                                    NaN
TotalPay                               92057.45
TotalPayBenefits                       92057.45
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11156, dtype: object)
(11157, Id                                                    11158
EmployeeName                                    FAITH SMITH
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76885.64
OvertimePay                                         7598.95
OtherPay                                            7568.79
Benefits                                                NaN
TotalPay                                           92053.38
TotalPayBenefits                                   92053.38
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11157, dtype: object)
(11158, Id                                           11159
EmployeeName                    RAYMOND HUTCHINSON
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.21
OvertimePay                                    0.0
OtherPay                                   1386.83
Benefits                                       NaN
TotalPay                                  92051.04
TotalPayBenefits                          92051.04
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11158, dtype: object)
(11159, Id                                   11160
EmployeeName                   HAMID LOCKS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83057.31
OvertimePay                        1409.92
OtherPay                           7582.03
Benefits                               NaN
TotalPay                          92049.26
TotalPayBenefits                  92049.26
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11159, dtype: object)
(11160, Id                             11161
EmployeeName         TRINI WHITTAKER
JobTitle            TRANSIT OPERATOR
BasePay                     66028.87
OvertimePay                 21573.11
OtherPay                     4440.51
Benefits                         NaN
TotalPay                    92042.49
TotalPayBenefits            92042.49
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11160, dtype: object)
(11161, Id                             11162
EmployeeName             MARIA STONE
JobTitle            REGISTERED NURSE
BasePay                     91247.48
OvertimePay                      0.0
OtherPay                      792.17
Benefits                         NaN
TotalPay                    92039.65
TotalPayBenefits            92039.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11161, dtype: object)
(11162, Id                                           11163
EmployeeName                       KIMBERLY KITANO
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.44
OvertimePay                                    0.0
OtherPay                                    2224.5
Benefits                                       NaN
TotalPay                                  92030.94
TotalPayBenefits                          92030.94
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11162, dtype: object)
(11163, Id                                 11164
EmployeeName                  LOUIS HUIE
JobTitle            IS ADMINISTRATOR III
BasePay                         92021.21
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        92021.21
TotalPayBenefits                92021.21
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11163, dtype: object)
(11164, Id                                           11165
EmployeeName                          LENA SURJADI
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.57
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  92006.57
TotalPayBenefits                          92006.57
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11164, dtype: object)
(11165, Id                                           11166
EmployeeName                              KAN SHEN
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.46
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  92006.46
TotalPayBenefits                          92006.46
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11165, dtype: object)
(11166, Id                                           11167
EmployeeName                         DONALD WIGGAM
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.45
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  92006.45
TotalPayBenefits                          92006.45
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11166, dtype: object)
(11167, Id                                           11168
EmployeeName                       CHARLES CROWDER
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.44
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  92006.44
TotalPayBenefits                          92006.44
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11167, dtype: object)
(11168, Id                                           11169
EmployeeName                              MARA LIM
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89806.44
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  92006.44
TotalPayBenefits                          92006.44
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11168, dtype: object)
(11169, Id                                  11170
EmployeeName                  BRIAN ALLEN
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                           81790.3
OvertimePay                       5341.67
OtherPay                          4872.79
Benefits                              NaN
TotalPay                         92004.76
TotalPayBenefits                 92004.76
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11169, dtype: object)
(11170, Id                            11171
EmployeeName        JULIA CAPOZZOLI
JobTitle             DEPUTY SHERIFF
BasePay                    85838.04
OvertimePay                     0.0
OtherPay                    6166.55
Benefits                        NaN
TotalPay                   92004.59
TotalPayBenefits           92004.59
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11170, dtype: object)
(11171, Id                              11172
EmployeeName        PRISCILLA LEE CHU
JobTitle            EPIDEMIOLOGIST II
BasePay                      92002.83
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92002.83
TotalPayBenefits             92002.83
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11171, dtype: object)
(11172, Id                              11173
EmployeeName            SHARON PIPKIN
JobTitle            EPIDEMIOLOGIST II
BasePay                      92002.48
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92002.48
TotalPayBenefits             92002.48
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11172, dtype: object)
(11173, Id                              11174
EmployeeName              SARA EHLERS
JobTitle            EPIDEMIOLOGIST II
BasePay                      92002.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     92002.01
TotalPayBenefits             92002.01
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11173, dtype: object)
(11174, Id                               11175
EmployeeName        JENNIFER GRINSDALE
JobTitle             EPIDEMIOLOGIST II
BasePay                       92002.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      92002.01
TotalPayBenefits              92002.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11174, dtype: object)
(11175, Id                              11176
EmployeeName              ROBERT KOHN
JobTitle            EPIDEMIOLOGIST II
BasePay                       92002.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92002.0
TotalPayBenefits              92002.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11175, dtype: object)
(11176, Id                              11177
EmployeeName              SUE SHALLOW
JobTitle            EPIDEMIOLOGIST II
BasePay                       92002.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92002.0
TotalPayBenefits              92002.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11176, dtype: object)
(11177, Id                              11178
EmployeeName          TIMOTHY KELLOGG
JobTitle            EPIDEMIOLOGIST II
BasePay                       92002.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92002.0
TotalPayBenefits              92002.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11177, dtype: object)
(11178, Id                              11179
EmployeeName              JOHN SIMONS
JobTitle            EPIDEMIOLOGIST II
BasePay                       92002.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92002.0
TotalPayBenefits              92002.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11178, dtype: object)
(11179, Id                                            11180
EmployeeName                         JOSEPH THOPPIL
JobTitle            ADMINISTRATIVE SERVICES MANAGER
BasePay                                     92002.0
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                    92002.0
TotalPayBenefits                            92002.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11179, dtype: object)
(11180, Id                              11181
EmployeeName               MEGAN WIER
JobTitle            EPIDEMIOLOGIST II
BasePay                       92002.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                      92002.0
TotalPayBenefits              92002.0
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11180, dtype: object)
(11181, Id                                  11182
EmployeeName                 EMILY GERBER
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           91998.8
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          91998.8
TotalPayBenefits                  91998.8
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11181, dtype: object)
(11182, Id                             11183
EmployeeName           CHARLES MONDY
JobTitle            TRANSIT OPERATOR
BasePay                     66483.76
OvertimePay                 23103.45
OtherPay                     2409.25
Benefits                         NaN
TotalPay                    91996.46
TotalPayBenefits            91996.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11182, dtype: object)
(11183, Id                             11184
EmployeeName         BERNARD CHATMAN
JobTitle            TRANSIT OPERATOR
BasePay                     64531.29
OvertimePay                 24664.49
OtherPay                     2795.29
Benefits                         NaN
TotalPay                    91991.07
TotalPayBenefits            91991.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11183, dtype: object)
(11184, Id                             11185
EmployeeName        ELIZABETH MACKEY
JobTitle            REGISTERED NURSE
BasePay                     85553.37
OvertimePay                  2965.67
OtherPay                     3471.17
Benefits                         NaN
TotalPay                    91990.21
TotalPayBenefits            91990.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11184, dtype: object)
(11185, Id                                11186
EmployeeName        SIGFRIDO BRIANCESCO
JobTitle             SHEET METAL WORKER
BasePay                        90229.11
OvertimePay                      342.47
OtherPay                        1414.75
Benefits                            NaN
TotalPay                       91986.33
TotalPayBenefits               91986.33
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11185, dtype: object)
(11186, Id                             11187
EmployeeName           GLENNA WALKER
JobTitle            REGISTERED NURSE
BasePay                      89622.0
OvertimePay                    689.4
OtherPay                     1674.76
Benefits                         NaN
TotalPay                    91986.16
TotalPayBenefits            91986.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11186, dtype: object)
(11187, Id                                 11188
EmployeeName             CHARLES SILVERA
JobTitle            PAINTER SUPERVISOR I
BasePay                          88562.2
OvertimePay                      3230.62
OtherPay                           180.0
Benefits                             NaN
TotalPay                        91972.82
TotalPayBenefits                91972.82
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11187, dtype: object)
(11188, Id                                               11189
EmployeeName                         FRANCIS CAMILLERI
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       77580.83
OvertimePay                                     9299.3
OtherPay                                       5092.04
Benefits                                           NaN
TotalPay                                      91972.17
TotalPayBenefits                              91972.17
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11188, dtype: object)
(11189, Id                                      11190
EmployeeName                ANGELITA SALVADOR
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64780.5
OvertimePay                          22271.44
OtherPay                               4919.9
Benefits                                  NaN
TotalPay                             91971.84
TotalPayBenefits                     91971.84
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11189, dtype: object)
(11190, Id                                11191
EmployeeName                 JOSE PONCE
JobTitle            STATIONARY ENGINEER
BasePay                        73152.03
OvertimePay                     9649.89
OtherPay                        9169.16
Benefits                            NaN
TotalPay                       91971.08
TotalPayBenefits               91971.08
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11190, dtype: object)
(11191, Id                             11192
EmployeeName             SHERMAN KOU
JobTitle            TRANSIT OPERATOR
BasePay                     65514.32
OvertimePay                 25021.91
OtherPay                     1424.29
Benefits                         NaN
TotalPay                    91960.52
TotalPayBenefits            91960.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11191, dtype: object)
(11192, Id                          11193
EmployeeName          HUGH VASSAR
JobTitle                 ENGINEER
BasePay                  87550.62
OvertimePay                   0.0
OtherPay                  4409.06
Benefits                      NaN
TotalPay                 91959.68
TotalPayBenefits         91959.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11192, dtype: object)
(11193, Id                               11194
EmployeeName                  SHAN PAN
JobTitle            SHEET METAL WORKER
BasePay                       90229.12
OvertimePay                     342.47
OtherPay                        1386.0
Benefits                           NaN
TotalPay                      91957.59
TotalPayBenefits              91957.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11193, dtype: object)
(11194, Id                           11195
EmployeeName          JOHN BONCATO
JobTitle            DEPUTY SHERIFF
BasePay                   85170.02
OvertimePay                    0.0
OtherPay                   6777.69
Benefits                       NaN
TotalPay                  91947.71
TotalPayBenefits          91947.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11194, dtype: object)
(11195, Id                           11196
EmployeeName         RAYMOND LEONG
JobTitle            DEPUTY SHERIFF
BasePay                   80434.73
OvertimePay                7182.42
OtherPay                   4330.16
Benefits                       NaN
TotalPay                  91947.31
TotalPayBenefits          91947.31
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11195, dtype: object)
(11196, Id                          11197
EmployeeName           ELI PAYTON
JobTitle              FIREFIGHTER
BasePay                  53814.99
OvertimePay               8861.17
OtherPay                 29266.78
Benefits                      NaN
TotalPay                 91942.94
TotalPayBenefits         91942.94
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11196, dtype: object)
(11197, Id                             11198
EmployeeName            JOSE MORA JR
JobTitle            POLICE OFFICER I
BasePay                     83994.08
OvertimePay                  2284.79
OtherPay                     5654.05
Benefits                         NaN
TotalPay                    91932.92
TotalPayBenefits            91932.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11197, dtype: object)
(11198, Id                                            11199
EmployeeName                          KATHRYN BROWN
JobTitle            CAPTAIN III (POLICE DEPARTMENT)
BasePay                                     10684.5
OvertimePay                                     0.0
OtherPay                                   81244.87
Benefits                                        NaN
TotalPay                                   91929.37
TotalPayBenefits                           91929.37
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11198, dtype: object)
(11199, Id                                              11200
EmployeeName                          CESAR TRIGUEROS
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      91925.93
OvertimePay                                       0.0
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     91925.93
TotalPayBenefits                             91925.93
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11199, dtype: object)
(11200, Id                                    11201
EmployeeName                 MICHAEL WETZEL
JobTitle            PILEDRIVER SUPERVISOR I
BasePay                            91733.78
OvertimePay                             0.0
OtherPay                              192.0
Benefits                                NaN
TotalPay                           91925.78
TotalPayBenefits                   91925.78
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11200, dtype: object)
(11201, Id                                 11202
EmployeeName                JAMES OLEARY
JobTitle            POWER HOUSE OPERATOR
BasePay                          71052.0
OvertimePay                     14648.89
OtherPay                         6223.03
Benefits                             NaN
TotalPay                        91923.92
TotalPayBenefits                91923.92
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11201, dtype: object)
(11202, Id                               11203
EmployeeName            SEBASTIAN SHUL
JobTitle            TRANSIT SUPERVISOR
BasePay                       88091.77
OvertimePay                      63.51
OtherPay                       3762.15
Benefits                           NaN
TotalPay                      91917.43
TotalPayBenefits              91917.43
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11202, dtype: object)
(11203, Id                            11204
EmployeeName        JULIE BROUSSARD
JobTitle             DEPUTY SHERIFF
BasePay                    83984.32
OvertimePay                 2819.11
OtherPay                    5111.75
Benefits                        NaN
TotalPay                   91915.18
TotalPayBenefits           91915.18
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11203, dtype: object)
(11204, Id                               11205
EmployeeName                   LIET LE
JobTitle            ASSOCIATE ENGINEER
BasePay                       90950.33
OvertimePay                        0.0
OtherPay                         960.0
Benefits                           NaN
TotalPay                      91910.33
TotalPayBenefits              91910.33
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11204, dtype: object)
(11205, Id                                           11206
EmployeeName                    PHILLIP WEATHERBEE
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                   1153.68
Benefits                                       NaN
TotalPay                                  91909.68
TotalPayBenefits                          91909.68
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11205, dtype: object)
(11206, Id                             11207
EmployeeName             GENE MABREY
JobTitle            TRANSIT OPERATOR
BasePay                     65581.05
OvertimePay                 22366.87
OtherPay                     3953.34
Benefits                         NaN
TotalPay                    91901.26
TotalPayBenefits            91901.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11206, dtype: object)
(11207, Id                                          11208
EmployeeName                      PATRICK MEAGHER
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  84054.13
OvertimePay                               7433.37
OtherPay                                    410.0
Benefits                                      NaN
TotalPay                                  91897.5
TotalPayBenefits                          91897.5
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11207, dtype: object)
(11208, Id                                                       11209
EmployeeName                                      JANAN HOWELL
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               91895.42
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              91895.42
TotalPayBenefits                                      91895.42
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11208, dtype: object)
(11209, Id                                                             11210
EmployeeName                                             JOHN REILLY
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     86056.25
OvertimePay                                                  3781.38
OtherPay                                                      2056.6
Benefits                                                         NaN
TotalPay                                                    91894.23
TotalPayBenefits                                            91894.23
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11209, dtype: object)
(11210, Id                                              11211
EmployeeName                              RAYMOND LEE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      82839.66
OvertimePay                                   2413.31
OtherPay                                      6640.91
Benefits                                          NaN
TotalPay                                     91893.88
TotalPayBenefits                             91893.88
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11210, dtype: object)
(11211, Id                                             11212
EmployeeName                        BEVERLY BRAMLETT
JobTitle            PERSONNEL PAYROLL REPRESENTATIVE
BasePay                                      74796.5
OvertimePay                                      0.0
OtherPay                                     17084.6
Benefits                                         NaN
TotalPay                                     91881.1
TotalPayBenefits                             91881.1
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11211, dtype: object)
(11212, Id                                        11213
EmployeeName                   DONALD TARVER II
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                87496.89
OvertimePay                                 0.0
OtherPay                                4375.07
Benefits                                    NaN
TotalPay                               91871.96
TotalPayBenefits                       91871.96
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11212, dtype: object)
(11213, Id                           11214
EmployeeName            ERIC MOORE
JobTitle            DEPUTY SHERIFF
BasePay                   86359.88
OvertimePay                1283.89
OtherPay                   4227.19
Benefits                       NaN
TotalPay                  91870.96
TotalPayBenefits          91870.96
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11213, dtype: object)
(11214, Id                                 11215
EmployeeName             LARRY BUSTILLOS
JobTitle            CAR AND AUTO PAINTER
BasePay                         73513.47
OvertimePay                      13920.8
OtherPay                         4433.85
Benefits                             NaN
TotalPay                        91868.12
TotalPayBenefits                91868.12
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11214, dtype: object)
(11215, Id                                   11216
EmployeeName                    ADAM LEWIS
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           83192.51
OvertimePay                         532.54
OtherPay                           8142.95
Benefits                               NaN
TotalPay                           91868.0
TotalPayBenefits                   91868.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11215, dtype: object)
(11216, Id                             11217
EmployeeName            AMANDA MOORE
JobTitle            STREET INSPECTOR
BasePay                      71387.0
OvertimePay                 20207.56
OtherPay                       270.0
Benefits                         NaN
TotalPay                    91864.56
TotalPayBenefits            91864.56
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11216, dtype: object)
(11217, Id                            11218
EmployeeName        RANDALL SWANSON
JobTitle                  MANAGER I
BasePay                    86006.34
OvertimePay                     0.0
OtherPay                    5857.45
Benefits                        NaN
TotalPay                   91863.79
TotalPayBenefits           91863.79
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11217, dtype: object)
(11218, Id                           11219
EmployeeName            SCOTT OSHA
JobTitle            DEPUTY SHERIFF
BasePay                   85987.61
OvertimePay                1162.33
OtherPay                   4713.65
Benefits                       NaN
TotalPay                  91863.59
TotalPayBenefits          91863.59
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11218, dtype: object)
(11219, Id                             11220
EmployeeName           TARA MERRIMAN
JobTitle            TRANSIT OPERATOR
BasePay                      65522.3
OvertimePay                 24651.65
OtherPay                     1685.75
Benefits                         NaN
TotalPay                     91859.7
TotalPayBenefits             91859.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11219, dtype: object)
(11220, Id                             11221
EmployeeName              TERRI HALL
JobTitle            TRANSIT OPERATOR
BasePay                      66482.0
OvertimePay                 20651.86
OtherPay                     4723.07
Benefits                         NaN
TotalPay                    91856.93
TotalPayBenefits            91856.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11220, dtype: object)
(11221, Id                                                11222
EmployeeName                              STEPHEN YEUNG
JobTitle            PRINCIPAL PERSONAL PROPERTY AUDITOR
BasePay                                        91376.06
OvertimePay                                         0.0
OtherPay                                          480.0
Benefits                                            NaN
TotalPay                                       91856.06
TotalPayBenefits                               91856.06
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11221, dtype: object)
(11222, Id                                  11223
EmployeeName                     PAUL LAM
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                           90141.5
OvertimePay                           0.0
OtherPay                          1702.19
Benefits                              NaN
TotalPay                         91843.69
TotalPayBenefits                 91843.69
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11222, dtype: object)
(11223, Id                                         11224
EmployeeName                      MARK MIDDLETON
JobTitle            WASTEWATER CONTROL INSPECTOR
BasePay                                  85940.0
OvertimePay                              5673.05
OtherPay                                  229.84
Benefits                                     NaN
TotalPay                                91842.89
TotalPayBenefits                        91842.89
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11223, dtype: object)
(11224, Id                                                       11225
EmployeeName                                       BRIAN SCOTT
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                79820.0
OvertimePay                                            6033.35
OtherPay                                               5986.59
Benefits                                                   NaN
TotalPay                                              91839.94
TotalPayBenefits                                      91839.94
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11224, dtype: object)
(11225, Id                                                    11226
EmployeeName                                    MARK TERRIS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77286.06
OvertimePay                                        10093.13
OtherPay                                            4458.02
Benefits                                                NaN
TotalPay                                           91837.21
TotalPayBenefits                                   91837.21
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11225, dtype: object)
(11226, Id                             11227
EmployeeName              JOSE TORNA
JobTitle            TRANSIT OPERATOR
BasePay                     66311.96
OvertimePay                 24409.39
OtherPay                      1114.6
Benefits                         NaN
TotalPay                    91835.95
TotalPayBenefits            91835.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11226, dtype: object)
(11227, Id                               11228
EmployeeName                THOMAS LAU
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                       2028.19
Benefits                           NaN
TotalPay                       91834.2
TotalPayBenefits               91834.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11227, dtype: object)
(11228, Id                                             11229
EmployeeName                        TIENTHANG NGUYEN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     91833.62
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    91833.62
TotalPayBenefits                            91833.62
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11228, dtype: object)
(11229, Id                                    11230
EmployeeName                     LEON LOUIE
JobTitle            ADMINISTRATIVE ENGINEER
BasePay                             72259.2
OvertimePay                             0.0
OtherPay                           19574.13
Benefits                                NaN
TotalPay                           91833.33
TotalPayBenefits                   91833.33
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11229, dtype: object)
(11230, Id                                              11231
EmployeeName                       MICHAEL HARRINGTON
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      72683.39
OvertimePay                                  14071.38
OtherPay                                      5077.28
Benefits                                          NaN
TotalPay                                     91832.05
TotalPayBenefits                             91832.05
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11230, dtype: object)
(11231, Id                                    11232
EmployeeName                      JUAN REAL
JobTitle            WATER SERVICE INSPECTOR
BasePay                             90599.6
OvertimePay                           917.0
OtherPay                             311.78
Benefits                                NaN
TotalPay                           91828.38
TotalPayBenefits                   91828.38
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11231, dtype: object)
(11232, Id                                             11233
EmployeeName                      DIANA OLIVA-AROCHE
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      91818.0
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                     91818.0
TotalPayBenefits                             91818.0
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11232, dtype: object)
(11233, Id                                           11234
EmployeeName                          SANDRA RAMOS
JobTitle            ENVIRONMENTAL HEALTH INSPECTOR
BasePay                                   90445.73
OvertimePay                                    0.0
OtherPay                                    1370.0
Benefits                                       NaN
TotalPay                                  91815.73
TotalPayBenefits                          91815.73
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11233, dtype: object)
(11234, Id                            11235
EmployeeName         PHILIP FONSECA
JobTitle            UTILITY PLUMBER
BasePay                    91551.63
OvertimePay                     0.0
OtherPay                     262.66
Benefits                        NaN
TotalPay                   91814.29
TotalPayBenefits           91814.29
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11234, dtype: object)
(11235, Id                             11236
EmployeeName              ANDREW LIN
JobTitle            TRANSIT OPERATOR
BasePay                     66872.54
OvertimePay                  22434.0
OtherPay                     2506.43
Benefits                         NaN
TotalPay                    91812.97
TotalPayBenefits            91812.97
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11235, dtype: object)
(11236, Id                                                    11237
EmployeeName                                 DENISE AREVALO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            71374.77
OvertimePay                                        12982.06
OtherPay                                            7452.64
Benefits                                                NaN
TotalPay                                           91809.47
TotalPayBenefits                                   91809.47
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11236, dtype: object)
(11237, Id                               11238
EmployeeName          BRIAN CUNNINGHAM
JobTitle            TRANSIT MANAGER II
BasePay                        58682.0
OvertimePay                        0.0
OtherPay                      33122.08
Benefits                           NaN
TotalPay                      91804.08
TotalPayBenefits              91804.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11237, dtype: object)
(11238, Id                                             11239
EmployeeName                        FERNANDO MENDOZA
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     90322.92
OvertimePay                                      0.0
OtherPay                                      1480.0
Benefits                                         NaN
TotalPay                                    91802.92
TotalPayBenefits                            91802.92
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11238, dtype: object)
(11239, Id                                          11240
EmployeeName                     MARTIN MULKERRIN
JobTitle            ASPHALT FINISHER SUPERVISOR I
BasePay                                   81497.7
OvertimePay                               7778.73
OtherPay                                  2501.58
Benefits                                      NaN
TotalPay                                 91778.01
TotalPayBenefits                         91778.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11239, dtype: object)
(11240, Id                                   11241
EmployeeName                  NICCI FLORES
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                        1108.92
OtherPay                               0.0
Benefits                               NaN
TotalPay                          91772.92
TotalPayBenefits                  91772.92
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11240, dtype: object)
(11241, Id                              11242
EmployeeName           CARMELITA ACDA
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  26144.45
OtherPay                      5411.26
Benefits                          NaN
TotalPay                     91762.31
TotalPayBenefits             91762.31
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11241, dtype: object)
(11242, Id                            11243
EmployeeName        RONALD MCCONICO
JobTitle             DEPUTY SHERIFF
BasePay                    84860.65
OvertimePay                 1040.83
OtherPay                    5860.26
Benefits                        NaN
TotalPay                   91761.74
TotalPayBenefits           91761.74
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11242, dtype: object)
(11243, Id                                         11244
EmployeeName                  KENNETH SIMMONS SR
JobTitle            CEMENT FINISHER SUPERVISOR I
BasePay                                 88535.01
OvertimePay                              3226.23
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                91761.24
TotalPayBenefits                        91761.24
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11243, dtype: object)
(11244, Id                              11245
EmployeeName        PATRICIA MCGREGOR
JobTitle               BIOLOGIST I/II
BasePay                      87619.06
OvertimePay                       0.0
OtherPay                      4142.17
Benefits                          NaN
TotalPay                     91761.23
TotalPayBenefits             91761.23
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11244, dtype: object)
(11245, Id                              11246
EmployeeName         GRACITA SANTIAGO
JobTitle            NURSING ASSISTANT
BasePay                       60193.0
OvertimePay                   26636.6
OtherPay                      4930.72
Benefits                          NaN
TotalPay                     91760.32
TotalPayBenefits             91760.32
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11245, dtype: object)
(11246, Id                                             11247
EmployeeName                   JONATHAN MATES-MUCHIN
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     88199.09
OvertimePay                                      0.0
OtherPay                                     3559.66
Benefits                                         NaN
TotalPay                                    91758.75
TotalPayBenefits                            91758.75
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11246, dtype: object)
(11247, Id                             11248
EmployeeName           JUDITH FOSTER
JobTitle            REGISTERED NURSE
BasePay                     86569.26
OvertimePay                  1005.33
OtherPay                     4175.05
Benefits                         NaN
TotalPay                    91749.64
TotalPayBenefits            91749.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11247, dtype: object)
(11248, Id                             11249
EmployeeName          MONIQUE WILSON
JobTitle            TRANSIT OPERATOR
BasePay                     71980.11
OvertimePay                 15978.22
OtherPay                     3789.43
Benefits                         NaN
TotalPay                    91747.76
TotalPayBenefits            91747.76
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11248, dtype: object)
(11249, Id                                                  11250
EmployeeName                                 GAIL JOHNSON
JobTitle            ASSISTANT CLERK, BOARD OF SUPERVISORS
BasePay                                          90664.01
OvertimePay                                       1078.03
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                         91742.04
TotalPayBenefits                                 91742.04
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 11249, dtype: object)
(11250, Id                                             11251
EmployeeName                         BONNIE FRIEDMAN
JobTitle            SENIOR PSYCHIATRIC SOCIAL WORKER
BasePay                                     83783.72
OvertimePay                                  6731.19
OtherPay                                      1214.4
Benefits                                         NaN
TotalPay                                    91729.31
TotalPayBenefits                            91729.31
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11250, dtype: object)
(11251, Id                           11252
EmployeeName          GEORGE RAMOS
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay                  501.0
OtherPay                   4385.78
Benefits                       NaN
TotalPay                   91726.8
TotalPayBenefits           91726.8
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11251, dtype: object)
(11252, Id                                        11253
EmployeeName                       LYDIA LUKIAN
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                91723.07
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                    NaN
TotalPay                               91723.07
TotalPayBenefits                       91723.07
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11252, dtype: object)
(11253, Id                                              11254
EmployeeName                          MAURICE MONTOYA
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       73075.0
OvertimePay                                    5042.2
OtherPay                                      13604.0
Benefits                                          NaN
TotalPay                                      91721.2
TotalPayBenefits                              91721.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11253, dtype: object)
(11254, Id                                     11255
EmployeeName                     JOHN MILLER
JobTitle            DEPUTY PROBATION OFFICER
BasePay                              81958.0
OvertimePay                          9760.72
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            91718.72
TotalPayBenefits                    91718.72
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11254, dtype: object)
(11255, Id                           11256
EmployeeName        ANGELINA DINER
JobTitle            COURT REPORTER
BasePay                   83374.88
OvertimePay                    0.0
OtherPay                   8337.49
Benefits                       NaN
TotalPay                  91712.37
TotalPayBenefits          91712.37
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11255, dtype: object)
(11256, Id                             11257
EmployeeName                JIMMY GU
JobTitle            TRANSIT OPERATOR
BasePay                     66301.32
OvertimePay                 24829.62
OtherPay                      579.37
Benefits                         NaN
TotalPay                    91710.31
TotalPayBenefits            91710.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11256, dtype: object)
(11257, Id                             11258
EmployeeName             JESSE GRADY
JobTitle            TRANSIT OPERATOR
BasePay                     66571.13
OvertimePay                 21889.58
OtherPay                     3244.33
Benefits                         NaN
TotalPay                    91705.04
TotalPayBenefits            91705.04
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11257, dtype: object)
(11258, Id                                    11259
EmployeeName                    SANFORD LEE
JobTitle            WATER SERVICE INSPECTOR
BasePay                             91700.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            91700.0
TotalPayBenefits                    91700.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11258, dtype: object)
(11259, Id                                 11260
EmployeeName                  HOWARD THU
JobTitle            IS ADMINISTRATOR III
BasePay                         90837.99
OvertimePay                          0.0
OtherPay                          854.96
Benefits                             NaN
TotalPay                        91692.95
TotalPayBenefits                91692.95
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11259, dtype: object)
(11260, Id                             11261
EmployeeName         ERIC HUDDLESTON
JobTitle            TRANSIT OPERATOR
BasePay                     63738.74
OvertimePay                 25115.89
OtherPay                      2837.8
Benefits                         NaN
TotalPay                    91692.43
TotalPayBenefits            91692.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11260, dtype: object)
(11261, Id                                          11262
EmployeeName                       WILLIAM SPARKS
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  84224.25
OvertimePay                               7465.28
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91689.53
TotalPayBenefits                         91689.53
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11261, dtype: object)
(11262, Id                             11263
EmployeeName               DILAK LAU
JobTitle            TRANSIT OPERATOR
BasePay                     64942.25
OvertimePay                 23665.79
OtherPay                     3076.99
Benefits                         NaN
TotalPay                    91685.03
TotalPayBenefits            91685.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11262, dtype: object)
(11263, Id                                11264
EmployeeName           IRELLA BLACKWOOD
JobTitle            SUPERVISING AUDITOR
BasePay                         91680.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        91680.8
TotalPayBenefits                91680.8
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11263, dtype: object)
(11264, Id                           11265
EmployeeName          SCOTT TAYLOR
JobTitle            BIOLOGIST I/II
BasePay                   87619.03
OvertimePay                    0.0
OtherPay                   4057.68
Benefits                       NaN
TotalPay                  91676.71
TotalPayBenefits          91676.71
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11264, dtype: object)
(11265, Id                               11266
EmployeeName             ROBERT TIGBAO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.03
OvertimePay                        0.0
OtherPay                       1866.27
Benefits                           NaN
TotalPay                       91672.3
TotalPayBenefits               91672.3
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11265, dtype: object)
(11266, Id                           11267
EmployeeName        LAURA TARGGART
JobTitle            BIOLOGIST I/II
BasePay                   87619.06
OvertimePay                    0.0
OtherPay                   4048.21
Benefits                       NaN
TotalPay                  91667.27
TotalPayBenefits          91667.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11266, dtype: object)
(11267, Id                             11268
EmployeeName           ADRIAN DICKEY
JobTitle            TRANSIT OPERATOR
BasePay                     66165.26
OvertimePay                 23654.24
OtherPay                     1845.61
Benefits                         NaN
TotalPay                    91665.11
TotalPayBenefits            91665.11
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11267, dtype: object)
(11268, Id                                                     11269
EmployeeName                                     JUAWN BURKS
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             80476.27
OvertimePay                                         10551.55
OtherPay                                              625.38
Benefits                                                 NaN
TotalPay                                             91653.2
TotalPayBenefits                                     91653.2
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11268, dtype: object)
(11269, Id                             11270
EmployeeName             DAVID SHIEH
JobTitle            TRANSIT OPERATOR
BasePay                     66656.75
OvertimePay                 23968.87
OtherPay                     1026.73
Benefits                         NaN
TotalPay                    91652.35
TotalPayBenefits            91652.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11269, dtype: object)
(11270, Id                          11271
EmployeeName          CATHY RILEY
JobTitle            SPECIAL NURSE
BasePay                  85648.11
OvertimePay                   0.0
OtherPay                  6003.01
Benefits                      NaN
TotalPay                 91651.12
TotalPayBenefits         91651.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11270, dtype: object)
(11271, Id                                    11272
EmployeeName                      FRANK LEW
JobTitle            WATER SERVICE INSPECTOR
BasePay                             90232.8
OvertimePay                         1306.72
OtherPay                             110.04
Benefits                                NaN
TotalPay                           91649.56
TotalPayBenefits                   91649.56
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11271, dtype: object)
(11272, Id                               11273
EmployeeName              JILL NIERMAN
JobTitle            NURSE PRACTITIONER
BasePay                       87590.03
OvertimePay                        0.0
OtherPay                       4058.91
Benefits                           NaN
TotalPay                      91648.94
TotalPayBenefits              91648.94
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11272, dtype: object)
(11273, Id                              11274
EmployeeName         FLORDESCITA PHEE
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  26561.44
OtherPay                      4880.15
Benefits                          NaN
TotalPay                     91648.19
TotalPayBenefits             91648.19
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11273, dtype: object)
(11274, Id                               11275
EmployeeName             PATRICIA GRAY
JobTitle            PHYSICAL THERAPIST
BasePay                        91161.2
OvertimePay                        0.0
OtherPay                         480.0
Benefits                           NaN
TotalPay                       91641.2
TotalPayBenefits               91641.2
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11274, dtype: object)
(11275, Id                                 11276
EmployeeName                 JOHN MEANEY
JobTitle            SEWER SERVICE WORKER
BasePay                          76533.5
OvertimePay                      7443.94
OtherPay                         7663.35
Benefits                             NaN
TotalPay                        91640.79
TotalPayBenefits                91640.79
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11275, dtype: object)
(11276, Id                                                             11277
EmployeeName                                           KINGSTON PANG
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     85709.13
OvertimePay                                                   3919.7
OtherPay                                                     2000.55
Benefits                                                         NaN
TotalPay                                                    91629.38
TotalPayBenefits                                            91629.38
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11276, dtype: object)
(11277, Id                                    11278
EmployeeName                       JACKY SO
JobTitle            WATER SERVICE INSPECTOR
BasePay                             91627.9
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            91627.9
TotalPayBenefits                    91627.9
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11277, dtype: object)
(11278, Id                              11279
EmployeeName        JOSEPH MONTGOMERY
JobTitle                  STEAMFITTER
BasePay                      90098.43
OvertimePay                       0.0
OtherPay                      1527.25
Benefits                          NaN
TotalPay                     91625.68
TotalPayBenefits             91625.68
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11278, dtype: object)
(11279, Id                                 11280
EmployeeName                JULIE BALLER
JobTitle            PHYSICIAN SPECIALIST
BasePay                         58714.49
OvertimePay                          0.0
OtherPay                        32899.18
Benefits                             NaN
TotalPay                        91613.67
TotalPayBenefits                91613.67
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11279, dtype: object)
(11280, Id                                     11281
EmployeeName                  CHARLES MORTON
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             81958.08
OvertimePay                          9650.98
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            91609.06
TotalPayBenefits                    91609.06
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11280, dtype: object)
(11281, Id                                 11282
EmployeeName              RICHARD BERNAL
JobTitle            CAR AND AUTO PAINTER
BasePay                          73075.1
OvertimePay                     17750.65
OtherPay                           780.0
Benefits                             NaN
TotalPay                        91605.75
TotalPayBenefits                91605.75
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11281, dtype: object)
(11282, Id                           11283
EmployeeName           DARIO GIOMI
JobTitle            DEPUTY SHERIFF
BasePay                   79091.64
OvertimePay                8793.12
OtherPay                   3718.82
Benefits                       NaN
TotalPay                  91603.58
TotalPayBenefits          91603.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11282, dtype: object)
(11283, Id                                   11284
EmployeeName                  CAROLINA ONG
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           91500.92
OvertimePay                            0.0
OtherPay                             100.0
Benefits                               NaN
TotalPay                          91600.92
TotalPayBenefits                  91600.92
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11283, dtype: object)
(11284, Id                               11285
EmployeeName                 JEAN KING
JobTitle            PHYSICAL THERAPIST
BasePay                       91200.11
OvertimePay                        0.0
OtherPay                         400.0
Benefits                           NaN
TotalPay                      91600.11
TotalPayBenefits              91600.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11284, dtype: object)
(11285, Id                                                11286
EmployeeName                          MARIA SUSAN CAMPO
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         59981.4
OvertimePay                                    25716.34
OtherPay                                        5902.06
Benefits                                            NaN
TotalPay                                        91599.8
TotalPayBenefits                                91599.8
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11285, dtype: object)
(11286, Id                             11287
EmployeeName               HAO HUANG
JobTitle            TRANSIT OPERATOR
BasePay                     64886.12
OvertimePay                 25591.39
OtherPay                     1121.08
Benefits                         NaN
TotalPay                    91598.59
TotalPayBenefits            91598.59
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11286, dtype: object)
(11287, Id                            11288
EmployeeName            RORY PINSON
JobTitle            UTILITY PLUMBER
BasePay                     91551.6
OvertimePay                     0.0
OtherPay                       46.0
Benefits                        NaN
TotalPay                    91597.6
TotalPayBenefits            91597.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11287, dtype: object)
(11288, Id                           11289
EmployeeName           TONY JAYUBO
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                  501.0
OtherPay                   4248.48
Benefits                       NaN
TotalPay                  91589.49
TotalPayBenefits          91589.49
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11288, dtype: object)
(11289, Id                                   11290
EmployeeName               CHRISTINA CLARK
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79949.64
OvertimePay                        6023.22
OtherPay                            5613.9
Benefits                               NaN
TotalPay                          91586.76
TotalPayBenefits                  91586.76
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11289, dtype: object)
(11290, Id                                      11291
EmployeeName                   MARINA MENDOZA
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64538.1
OvertimePay                           20489.0
OtherPay                              6553.26
Benefits                                  NaN
TotalPay                             91580.36
TotalPayBenefits                     91580.36
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11290, dtype: object)
(11291, Id                                                      11292
EmployeeName                                        LANI KENT
JobTitle            PERFORMANCE ANALYST III - PROJECT MANAGER
BasePay                                              91574.72
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             91574.72
TotalPayBenefits                                     91574.72
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11291, dtype: object)
(11292, Id                                            11293
EmployeeName                           MICHAEL KONG
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    73022.94
OvertimePay                                15953.26
OtherPay                                    2593.07
Benefits                                        NaN
TotalPay                                   91569.27
TotalPayBenefits                           91569.27
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11292, dtype: object)
(11293, Id                              11294
EmployeeName        DENNIS JOHNSON JR
JobTitle               DEPUTY SHERIFF
BasePay                      79099.76
OvertimePay                   4463.38
OtherPay                      8005.04
Benefits                          NaN
TotalPay                     91568.18
TotalPayBenefits             91568.18
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11293, dtype: object)
(11294, Id                            11295
EmployeeName        ANTHONY SAUCIER
JobTitle              SPECIAL NURSE
BasePay                     78704.5
OvertimePay                     0.0
OtherPay                   12857.39
Benefits                        NaN
TotalPay                   91561.89
TotalPayBenefits           91561.89
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11294, dtype: object)
(11295, Id                             11296
EmployeeName           ANDREA REINKE
JobTitle            REGISTERED NURSE
BasePay                     87071.98
OvertimePay                    35.96
OtherPay                     4445.51
Benefits                         NaN
TotalPay                    91553.45
TotalPayBenefits            91553.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11295, dtype: object)
(11296, Id                                          11297
EmployeeName                           ANSON MOON
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                   90929.0
OvertimePay                                   0.0
OtherPay                                    624.0
Benefits                                      NaN
TotalPay                                  91553.0
TotalPayBenefits                          91553.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11296, dtype: object)
(11297, Id                                                11298
EmployeeName                              JOCELYN REYES
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                        60178.45
OvertimePay                                    25293.66
OtherPay                                        6080.53
Benefits                                            NaN
TotalPay                                       91552.64
TotalPayBenefits                               91552.64
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11297, dtype: object)
(11298, Id                                          11299
EmployeeName                        RICHARD CHIEN
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                   91548.9
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91548.9
TotalPayBenefits                          91548.9
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11298, dtype: object)
(11299, Id                                          11300
EmployeeName                          MARK PALMER
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91548.23
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91548.23
TotalPayBenefits                         91548.23
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11299, dtype: object)
(11300, Id                                          11301
EmployeeName                           KEVIN DREW
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91548.09
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91548.09
TotalPayBenefits                         91548.09
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11300, dtype: object)
(11301, Id                                          11302
EmployeeName                            JOHN MACY
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91548.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91548.07
TotalPayBenefits                         91548.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11301, dtype: object)
(11302, Id                                                              11303
EmployeeName                                            DENNIS MAXSON
JobTitle            SENIOR INVESTIGATOR, OFFICE OF CITIZEN'S COMPL...
BasePay                                                      91548.06
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     91548.06
TotalPayBenefits                                             91548.06
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11302, dtype: object)
(11303, Id                                          11304
EmployeeName                         CHRIS GEIGER
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91548.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91548.05
TotalPayBenefits                         91548.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11303, dtype: object)
(11304, Id                                                              11305
EmployeeName                                        RODERICK BALTAZAR
JobTitle            SENIOR INVESTIGATOR, OFFICE OF CITIZEN'S COMPL...
BasePay                                                      91548.01
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     91548.01
TotalPayBenefits                                             91548.01
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11304, dtype: object)
(11305, Id                                                              11306
EmployeeName                                           EDWARD MCMAHON
JobTitle            SENIOR INVESTIGATOR, OFFICE OF CITIZEN'S COMPL...
BasePay                                                      91548.01
OvertimePay                                                       0.0
OtherPay                                                          0.0
Benefits                                                          NaN
TotalPay                                                     91548.01
TotalPayBenefits                                             91548.01
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11305, dtype: object)
(11306, Id                                          11307
EmployeeName                      SHAWN ROSENMOSS
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91547.93
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91547.93
TotalPayBenefits                         91547.93
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11306, dtype: object)
(11307, Id                                          11308
EmployeeName                        TAMAR HURWITZ
JobTitle            SENIOR ENVIRONMENT SPECIALIST
BasePay                                  91547.74
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91547.74
TotalPayBenefits                         91547.74
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11307, dtype: object)
(11308, Id                                           11309
EmployeeName                            JENNIE HUA
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.03
OvertimePay                                    0.0
OtherPay                                     880.0
Benefits                                       NaN
TotalPay                                  91544.03
TotalPayBenefits                          91544.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11308, dtype: object)
(11309, Id                                      11310
EmployeeName                       HARRY FONG
JobTitle            DIAGNOSTIC IMAGING TECH I
BasePay                              79674.12
OvertimePay                           2590.83
OtherPay                              9271.79
Benefits                                  NaN
TotalPay                             91536.74
TotalPayBenefits                     91536.74
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11309, dtype: object)
(11310, Id                                   11311
EmployeeName                  WILLIAM WONG
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           79949.64
OvertimePay                        8516.81
OtherPay                           3063.43
Benefits                               NaN
TotalPay                          91529.88
TotalPayBenefits                  91529.88
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11310, dtype: object)
(11311, Id                               11312
EmployeeName            ANTHONY BRYANT
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.57
OvertimePay                        0.0
OtherPay                       1721.69
Benefits                           NaN
TotalPay                      91528.26
TotalPayBenefits              91528.26
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11311, dtype: object)
(11312, Id                                    11313
EmployeeName                JOSE LORENCILLO
JobTitle            WATER SERVICE INSPECTOR
BasePay                             88029.9
OvertimePay                             0.0
OtherPay                            3489.76
Benefits                                NaN
TotalPay                           91519.66
TotalPayBenefits                   91519.66
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11312, dtype: object)
(11313, Id                                                11314
EmployeeName                             JOHNNY CHIKERE
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60206.6
OvertimePay                                    25432.79
OtherPay                                        5879.31
Benefits                                            NaN
TotalPay                                        91518.7
TotalPayBenefits                                91518.7
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11313, dtype: object)
(11314, Id                               11315
EmployeeName               MAUNG THWIN
JobTitle            ASSOCIATE ENGINEER
BasePay                       91511.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      91511.02
TotalPayBenefits              91511.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11314, dtype: object)
(11315, Id                                           11316
EmployeeName                    CONCEPCION VINDELL
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89294.55
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  91494.55
TotalPayBenefits                          91494.55
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11315, dtype: object)
(11316, Id                           11317
EmployeeName        KENYA CRAWFORD
JobTitle            DEPUTY SHERIFF
BasePay                   76898.74
OvertimePay               13360.69
OtherPay                   1233.26
Benefits                       NaN
TotalPay                  91492.69
TotalPayBenefits          91492.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11316, dtype: object)
(11317, Id                          11318
EmployeeName         FORREST JANG
JobTitle              ELECTRICIAN
BasePay                  87122.41
OvertimePay               2107.84
OtherPay                   2260.0
Benefits                      NaN
TotalPay                 91490.25
TotalPayBenefits         91490.25
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11317, dtype: object)
(11318, Id                                      11319
EmployeeName                      JAMES MEJIA
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              56781.91
OvertimePay                          23064.82
OtherPay                              11639.2
Benefits                                  NaN
TotalPay                             91485.93
TotalPayBenefits                     91485.93
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11318, dtype: object)
(11319, Id                                             11320
EmployeeName                             MIKYUNG KIM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     91485.18
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    91485.18
TotalPayBenefits                            91485.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11319, dtype: object)
(11320, Id                                     11321
EmployeeName                    BARBARA ROSS
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             82034.97
OvertimePay                          9448.46
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            91483.43
TotalPayBenefits                    91483.43
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11320, dtype: object)
(11321, Id                           11322
EmployeeName        GREGG TAKEUCHI
JobTitle               FIREFIGHTER
BasePay                   79535.96
OvertimePay                    0.0
OtherPay                   11942.5
Benefits                       NaN
TotalPay                  91478.46
TotalPayBenefits          91478.46
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11321, dtype: object)
(11322, Id                               11323
EmployeeName             EDWARD CUADRO
JobTitle            SHEET METAL WORKER
BasePay                       89863.82
OvertimePay                        0.0
OtherPay                        1608.0
Benefits                           NaN
TotalPay                      91471.82
TotalPayBenefits              91471.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11322, dtype: object)
(11323, Id                           11324
EmployeeName          STEVEN DELEO
JobTitle            BIOLOGIST I/II
BasePay                   87619.05
OvertimePay                    0.0
OtherPay                   3833.76
Benefits                       NaN
TotalPay                  91452.81
TotalPayBenefits          91452.81
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11323, dtype: object)
(11324, Id                             11325
EmployeeName          COURTNEY SMITH
JobTitle            POLICE OFFICER I
BasePay                     82263.28
OvertimePay                  7507.83
OtherPay                     1678.47
Benefits                         NaN
TotalPay                    91449.58
TotalPayBenefits            91449.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11324, dtype: object)
(11325, Id                                           11326
EmployeeName                            JAMES BIAS
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   89130.04
OvertimePay                                    0.0
OtherPay                                    2309.0
Benefits                                       NaN
TotalPay                                  91439.04
TotalPayBenefits                          91439.04
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11325, dtype: object)
(11326, Id                             11327
EmployeeName                  WAH LI
JobTitle            TRANSIT OPERATOR
BasePay                     66004.93
OvertimePay                 24697.44
OtherPay                      734.45
Benefits                         NaN
TotalPay                    91436.82
TotalPayBenefits            91436.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11326, dtype: object)
(11327, Id                             11328
EmployeeName            JULIAN PEREZ
JobTitle            TRANSIT OPERATOR
BasePay                     63396.86
OvertimePay                  25321.5
OtherPay                     2715.21
Benefits                         NaN
TotalPay                    91433.57
TotalPayBenefits            91433.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11327, dtype: object)
(11328, Id                                11329
EmployeeName             BALJEET SANGHA
JobTitle            HEALTH CARE ANALYST
BasePay                         83766.0
OvertimePay                         0.0
OtherPay                         7654.0
Benefits                            NaN
TotalPay                        91420.0
TotalPayBenefits                91420.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11328, dtype: object)
(11329, Id                                              11330
EmployeeName                               LEWIS CHAN
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                       91238.4
OvertimePay                                       0.0
OtherPay                                        180.0
Benefits                                          NaN
TotalPay                                      91418.4
TotalPayBenefits                              91418.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11329, dtype: object)
(11330, Id                                11331
EmployeeName        CHRISTOPHER SHERIFF
JobTitle                 DEPUTY SHERIFF
BasePay                         86840.0
OvertimePay                         0.0
OtherPay                        4570.85
Benefits                            NaN
TotalPay                       91410.85
TotalPayBenefits               91410.85
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11330, dtype: object)
(11331, Id                                11332
EmployeeName            XAVIER WANZO-JR
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        66936.71
OvertimePay                    11281.91
OtherPay                       13186.45
Benefits                            NaN
TotalPay                       91405.07
TotalPayBenefits               91405.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11331, dtype: object)
(11332, Id                              11333
EmployeeName        RUSSELL TABAYOYON
JobTitle               DEPUTY SHERIFF
BasePay                      77319.29
OvertimePay                   9012.38
OtherPay                      5059.21
Benefits                          NaN
TotalPay                     91390.88
TotalPayBenefits             91390.88
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11332, dtype: object)
(11333, Id                             11334
EmployeeName            REUBEN REYES
JobTitle            REGISTERED NURSE
BasePay                     86944.36
OvertimePay                  3875.88
OtherPay                      566.21
Benefits                         NaN
TotalPay                    91386.45
TotalPayBenefits            91386.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11333, dtype: object)
(11334, Id                               11335
EmployeeName             SPENCER GOSCH
JobTitle            BUILDING INSPECTOR
BasePay                       87033.81
OvertimePay                        0.0
OtherPay                       4352.35
Benefits                           NaN
TotalPay                      91386.16
TotalPayBenefits              91386.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11334, dtype: object)
(11335, Id                            11336
EmployeeName        TAMARA HARRISON
JobTitle             COURT REPORTER
BasePay                    82643.79
OvertimePay                     0.0
OtherPay                    8735.22
Benefits                        NaN
TotalPay                   91379.01
TotalPayBenefits           91379.01
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11335, dtype: object)
(11336, Id                                                       11337
EmployeeName                                     JEFFREY CLARK
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               71358.33
OvertimePay                                            9321.67
OtherPay                                              10694.13
Benefits                                                   NaN
TotalPay                                              91374.13
TotalPayBenefits                                      91374.13
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11336, dtype: object)
(11337, Id                              11338
EmployeeName        RAPHROGER GONZAGA
JobTitle                SPECIAL NURSE
BasePay                      85508.85
OvertimePay                   2240.95
OtherPay                      3624.18
Benefits                          NaN
TotalPay                     91373.98
TotalPayBenefits             91373.98
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11337, dtype: object)
(11338, Id                             11339
EmployeeName           JOSEPH MILLER
JobTitle            TRANSIT OPERATOR
BasePay                      68281.5
OvertimePay                 22591.14
OtherPay                      498.57
Benefits                         NaN
TotalPay                    91371.21
TotalPayBenefits            91371.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11338, dtype: object)
(11339, Id                               11340
EmployeeName        BERNARDINO ANCHETA
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.81
OvertimePay                        0.0
OtherPay                       1557.63
Benefits                           NaN
TotalPay                      91364.44
TotalPayBenefits              91364.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11339, dtype: object)
(11340, Id                               11341
EmployeeName              SAMUEL ICHIE
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.41
OvertimePay                        0.0
OtherPay                       1557.63
Benefits                           NaN
TotalPay                      91364.04
TotalPayBenefits              91364.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11340, dtype: object)
(11341, Id                               11342
EmployeeName         GILBERT FULGENCIO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.07
OvertimePay                        0.0
OtherPay                       1557.63
Benefits                           NaN
TotalPay                       91363.7
TotalPayBenefits               91363.7
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11341, dtype: object)
(11342, Id                               11343
EmployeeName            CALLISTUS REID
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                       1557.63
Benefits                           NaN
TotalPay                      91363.63
TotalPayBenefits              91363.63
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11342, dtype: object)
(11343, Id                                    11344
EmployeeName               JAMES MEISENBACH
JobTitle            PILEDRIVER SUPERVISOR I
BasePay                             90865.6
OvertimePay                          488.76
OtherPay                                0.0
Benefits                                NaN
TotalPay                           91354.36
TotalPayBenefits                   91354.36
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11343, dtype: object)
(11344, Id                             11345
EmployeeName          ROBERT DONOHUE
JobTitle            TRANSIT OPERATOR
BasePay                     66108.55
OvertimePay                 22953.63
OtherPay                     2290.08
Benefits                         NaN
TotalPay                    91352.26
TotalPayBenefits            91352.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11344, dtype: object)
(11345, Id                                               11346
EmployeeName                               PATRICIA LU
JobTitle            SENIOR PAYROLL AND PERSONNEL CLERK
BasePay                                        65092.2
OvertimePay                                   26258.54
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      91350.74
TotalPayBenefits                              91350.74
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11345, dtype: object)
(11346, Id                                                    11347
EmployeeName                                  DIANE PAULSEN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77496.81
OvertimePay                                         3336.03
OtherPay                                           10511.26
Benefits                                                NaN
TotalPay                                            91344.1
TotalPayBenefits                                    91344.1
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11346, dtype: object)
(11347, Id                                                             11348
EmployeeName                                         DARRYL DILWORTH
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                      86056.1
OvertimePay                                                  2817.03
OtherPay                                                     2470.56
Benefits                                                         NaN
TotalPay                                                    91343.69
TotalPayBenefits                                            91343.69
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11347, dtype: object)
(11348, Id                          11349
EmployeeName         GIDA ALVAREZ
JobTitle              SECRETARY I
BasePay                   50401.8
OvertimePay              40315.36
OtherPay                    624.0
Benefits                      NaN
TotalPay                 91341.16
TotalPayBenefits         91341.16
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11348, dtype: object)
(11349, Id                             11350
EmployeeName         DELPHINE SEDENO
JobTitle            TRANSIT OPERATOR
BasePay                      63978.1
OvertimePay                  27275.4
OtherPay                       75.89
Benefits                         NaN
TotalPay                    91329.39
TotalPayBenefits            91329.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11349, dtype: object)
(11350, Id                               11351
EmployeeName             JORGE RAPADAS
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.44
OvertimePay                        0.0
OtherPay                       1517.83
Benefits                           NaN
TotalPay                      91324.27
TotalPayBenefits              91324.27
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11350, dtype: object)
(11351, Id                          11352
EmployeeName          JOHN BERINI
JobTitle              STEAMFITTER
BasePay                  86805.99
OvertimePay                544.95
OtherPay                  3961.06
Benefits                      NaN
TotalPay                  91312.0
TotalPayBenefits          91312.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11351, dtype: object)
(11352, Id                                             11353
EmployeeName                             NATHAN CRUZ
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     91311.53
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    91311.53
TotalPayBenefits                            91311.53
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11352, dtype: object)
(11353, Id                            11354
EmployeeName        ANITA WHITEHEAD
JobTitle             DEPUTY SHERIFF
BasePay                    86506.06
OvertimePay                  563.63
OtherPay                    4235.16
Benefits                        NaN
TotalPay                   91304.85
TotalPayBenefits           91304.85
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11353, dtype: object)
(11354, Id                             11355
EmployeeName         SAMANTHA OBRIEN
JobTitle            REGISTERED NURSE
BasePay                     84906.76
OvertimePay                  1839.08
OtherPay                     4557.94
Benefits                         NaN
TotalPay                    91303.78
TotalPayBenefits            91303.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11354, dtype: object)
(11355, Id                                          11356
EmployeeName                       CEDRIC JACKSON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.03
OvertimePay                                   0.0
OtherPay                                   179.88
Benefits                                      NaN
TotalPay                                 91297.91
TotalPayBenefits                         91297.91
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11355, dtype: object)
(11356, Id                                 11357
EmployeeName           RAYMOND DOSDORIAN
JobTitle            IS ADMINISTRATOR III
BasePay                         91291.09
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        91291.09
TotalPayBenefits                91291.09
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11356, dtype: object)
(11357, Id                                 11358
EmployeeName                 MARC TAGARO
JobTitle            IS ADMINISTRATOR III
BasePay                         91290.42
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        91290.42
TotalPayBenefits                91290.42
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11357, dtype: object)
(11358, Id                                             11359
EmployeeName                       MARIA P LOS BANOS
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     89806.04
OvertimePay                                      0.0
OtherPay                                      1480.0
Benefits                                         NaN
TotalPay                                    91286.04
TotalPayBenefits                            91286.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11358, dtype: object)
(11359, Id                                             11360
EmployeeName                       NATIVIDAD CARAMAT
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     89806.03
OvertimePay                                      0.0
OtherPay                                      1480.0
Benefits                                         NaN
TotalPay                                    91286.03
TotalPayBenefits                            91286.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11359, dtype: object)
(11360, Id                                             11361
EmployeeName                         CHONA PAZCOGUIN
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     89806.01
OvertimePay                                      0.0
OtherPay                                      1480.0
Benefits                                         NaN
TotalPay                                    91286.01
TotalPayBenefits                            91286.01
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11360, dtype: object)
(11361, Id                                       11362
EmployeeName                 MARK SIEGENTHALER
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                            3075.65
OtherPay                               6154.19
Benefits                                   NaN
TotalPay                              91285.84
TotalPayBenefits                      91285.84
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11361, dtype: object)
(11362, Id                               11363
EmployeeName           MANISHA KOTHARI
JobTitle            UTILITY SPECIALIST
BasePay                       91282.37
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      91282.37
TotalPayBenefits              91282.37
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11362, dtype: object)
(11363, Id                           11364
EmployeeName            SEAN IDETA
JobTitle            DEPUTY SHERIFF
BasePay                    84180.9
OvertimePay                2970.61
OtherPay                    4125.4
Benefits                       NaN
TotalPay                  91276.91
TotalPayBenefits          91276.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11363, dtype: object)
(11364, Id                           11365
EmployeeName            MARK NUQUE
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 469.71
OtherPay                   4285.04
Benefits                       NaN
TotalPay                  91260.75
TotalPayBenefits          91260.75
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11364, dtype: object)
(11365, Id                                          11366
EmployeeName                   EDWARD MCMILLAN JR
JobTitle            SOFT FLOOR COVERER SUPERVISOR
BasePay                                  87163.52
OvertimePay                               3498.08
OtherPay                                    598.5
Benefits                                      NaN
TotalPay                                  91260.1
TotalPayBenefits                          91260.1
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11365, dtype: object)
(11366, Id                                      11367
EmployeeName                     JAMES VAUGHN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58326.6
OvertimePay                          21370.22
OtherPay                             11563.16
Benefits                                  NaN
TotalPay                             91259.98
TotalPayBenefits                     91259.98
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11366, dtype: object)
(11367, Id                             11368
EmployeeName            ALTON DORSEY
JobTitle            TRANSIT OPERATOR
BasePay                     65425.76
OvertimePay                 20035.49
OtherPay                     5794.63
Benefits                         NaN
TotalPay                    91255.88
TotalPayBenefits            91255.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11367, dtype: object)
(11368, Id                                     11369
EmployeeName                DANIELLA MATTIAS
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             91255.61
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            91255.61
TotalPayBenefits                    91255.61
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11368, dtype: object)
(11369, Id                                             11370
EmployeeName                             MATTHEW LUM
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                      90173.0
OvertimePay                                      0.0
OtherPay                                      1081.5
Benefits                                         NaN
TotalPay                                     91254.5
TotalPayBenefits                             91254.5
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11369, dtype: object)
(11370, Id                                    11371
EmployeeName                   JUSTIN LYMAN
JobTitle            PARK SECTION SUPERVISOR
BasePay                            71126.44
OvertimePay                         17461.7
OtherPay                            2663.12
Benefits                                NaN
TotalPay                           91251.26
TotalPayBenefits                   91251.26
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11370, dtype: object)
(11371, Id                             11372
EmployeeName          CHIA TANG JING
JobTitle            TRANSIT OPERATOR
BasePay                     65662.53
OvertimePay                 23552.28
OtherPay                      2033.5
Benefits                         NaN
TotalPay                    91248.31
TotalPayBenefits            91248.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11371, dtype: object)
(11372, Id                                11373
EmployeeName            MIGUEL MESTAYER
JobTitle            STATIONARY ENGINEER
BasePay                         80654.7
OvertimePay                     4264.13
OtherPay                        6324.94
Benefits                            NaN
TotalPay                       91243.77
TotalPayBenefits               91243.77
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11372, dtype: object)
(11373, Id                                                      11374
EmployeeName                                  CATHERINE GARZA
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              91242.83
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             91242.83
TotalPayBenefits                                     91242.83
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11373, dtype: object)
(11374, Id                                                              11375
EmployeeName                                         CHARLOTTE JAQUES
JobTitle            APPRENTICE STATIONARY ENGINEER,WATER TREATMENT...
BasePay                                                      69767.71
OvertimePay                                                  14559.06
OtherPay                                                      6912.57
Benefits                                                          NaN
TotalPay                                                     91239.34
TotalPayBenefits                                             91239.34
Year                                                             2011
Notes                                                             NaN
Agency                                                  San Francisco
Status                                                            NaN
Name: 11374, dtype: object)
(11375, Id                                          11376
EmployeeName                           GENIE WONG
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.31
OvertimePay                                   0.0
OtherPay                                    120.0
Benefits                                      NaN
TotalPay                                 91238.31
TotalPayBenefits                         91238.31
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11375, dtype: object)
(11376, Id                          11377
EmployeeName        SHARON SAMUEL
JobTitle              ELECTRICIAN
BasePay                  86068.52
OvertimePay               2733.57
OtherPay                   2433.0
Benefits                      NaN
TotalPay                 91235.09
TotalPayBenefits         91235.09
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11376, dtype: object)
(11377, Id                               11378
EmployeeName        PATRICK REGUDON SR
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                        0.0
OtherPay                        3172.4
Benefits                           NaN
TotalPay                       91234.4
TotalPayBenefits               91234.4
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11377, dtype: object)
(11378, Id                                             11379
EmployeeName                                JENNY NG
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     59853.14
OvertimePay                                  28923.0
OtherPay                                      2448.9
Benefits                                         NaN
TotalPay                                    91225.04
TotalPayBenefits                            91225.04
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11378, dtype: object)
(11379, Id                           11380
EmployeeName          DONALD ORTIZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.01
OvertimePay                 127.75
OtherPay                   4248.49
Benefits                       NaN
TotalPay                  91216.25
TotalPayBenefits          91216.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11379, dtype: object)
(11380, Id                             11381
EmployeeName            SIDNEY GREEN
JobTitle            TRANSIT OPERATOR
BasePay                     65239.47
OvertimePay                  22546.4
OtherPay                     3428.41
Benefits                         NaN
TotalPay                    91214.28
TotalPayBenefits            91214.28
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11380, dtype: object)
(11381, Id                                                     11382
EmployeeName                                   RONALD LIPPIS
JobTitle            SENIOR AIRPORT COMMUNICATIONS DISPATCHER
BasePay                                             79987.84
OvertimePay                                          6515.49
OtherPay                                             4709.49
Benefits                                                 NaN
TotalPay                                            91212.82
TotalPayBenefits                                    91212.82
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11381, dtype: object)
(11382, Id                             11383
EmployeeName          RASHID ELAYYAN
JobTitle            TRANSIT OPERATOR
BasePay                     65490.12
OvertimePay                  24465.9
OtherPay                     1236.24
Benefits                         NaN
TotalPay                    91192.26
TotalPayBenefits            91192.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11382, dtype: object)
(11383, Id                                    11384
EmployeeName                   PAUL FORTINO
JobTitle            WATER SERVICE INSPECTOR
BasePay                            90091.58
OvertimePay                          1100.4
OtherPay                                0.0
Benefits                                NaN
TotalPay                           91191.98
TotalPayBenefits                   91191.98
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11383, dtype: object)
(11384, Id                                   11385
EmployeeName                 STEVE JACKSON
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                         523.95
OtherPay                               0.0
Benefits                               NaN
TotalPay                          91187.96
TotalPayBenefits                  91187.96
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11384, dtype: object)
(11385, Id                             11386
EmployeeName             CELSO ABUEG
JobTitle            TRANSIT OPERATOR
BasePay                      64150.8
OvertimePay                 24534.18
OtherPay                     2501.48
Benefits                         NaN
TotalPay                    91186.46
TotalPayBenefits            91186.46
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11385, dtype: object)
(11386, Id                            11387
EmployeeName           JOHNNY CHINN
JobTitle            SENIOR ENGINEER
BasePay                     91184.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                        NaN
TotalPay                    91184.0
TotalPayBenefits            91184.0
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11386, dtype: object)
(11387, Id                           11388
EmployeeName         LINDA FORSTER
JobTitle            COURT REPORTER
BasePay                   83084.44
OvertimePay                    0.0
OtherPay                   8094.62
Benefits                       NaN
TotalPay                  91179.06
TotalPayBenefits          91179.06
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11387, dtype: object)
(11388, Id                                11389
EmployeeName                  RAMON YOW
JobTitle            PHARMACY TECHNICIAN
BasePay                         70898.5
OvertimePay                    19649.57
OtherPay                          624.0
Benefits                            NaN
TotalPay                       91172.07
TotalPayBenefits               91172.07
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11388, dtype: object)
(11389, Id                                              11390
EmployeeName                               JOHN WAITE
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      83288.61
OvertimePay                                       0.0
OtherPay                                      7883.42
Benefits                                          NaN
TotalPay                                     91172.03
TotalPayBenefits                             91172.03
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11389, dtype: object)
(11390, Id                          11391
EmployeeName           KEITH WONG
JobTitle              FIREFIGHTER
BasePay                  81046.66
OvertimePay                   0.0
OtherPay                 10122.63
Benefits                      NaN
TotalPay                 91169.29
TotalPayBenefits         91169.29
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11390, dtype: object)
(11391, Id                          11392
EmployeeName         REUBEN ORTIZ
JobTitle              ELECTRICIAN
BasePay                   88527.6
OvertimePay               1185.62
OtherPay                  1449.12
Benefits                      NaN
TotalPay                 91162.34
TotalPayBenefits         91162.34
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11391, dtype: object)
(11392, Id                                11393
EmployeeName               ROGER BRAZIS
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                     7533.44
OtherPay                       11212.84
Benefits                            NaN
TotalPay                       91156.28
TotalPayBenefits               91156.28
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11392, dtype: object)
(11393, Id                            11394
EmployeeName          JAMES CELEDON
JobTitle            SWITCH REPAIRER
BasePay                    60426.07
OvertimePay                23199.68
OtherPay                    7526.68
Benefits                        NaN
TotalPay                   91152.43
TotalPayBenefits           91152.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11393, dtype: object)
(11394, Id                           11395
EmployeeName        DANIEL RAMIREZ
JobTitle            DEPUTY SHERIFF
BasePay                   86840.02
OvertimePay                 1002.0
OtherPay                    3306.6
Benefits                       NaN
TotalPay                  91148.62
TotalPayBenefits          91148.62
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11394, dtype: object)
(11395, Id                             11396
EmployeeName            LUIS MONTANO
JobTitle            TRANSIT OPERATOR
BasePay                     63369.71
OvertimePay                 25203.76
OtherPay                     2572.28
Benefits                         NaN
TotalPay                    91145.75
TotalPayBenefits            91145.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11395, dtype: object)
(11396, Id                          11397
EmployeeName          FILBERT LIM
JobTitle                  PLUMBER
BasePay                  90461.71
OvertimePay                681.19
OtherPay                      0.0
Benefits                      NaN
TotalPay                  91142.9
TotalPayBenefits          91142.9
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11396, dtype: object)
(11397, Id                                 11398
EmployeeName                LARRY HARRIS
JobTitle            CAR AND AUTO PAINTER
BasePay                         72198.12
OvertimePay                      4695.78
OtherPay                        14246.39
Benefits                             NaN
TotalPay                        91140.29
TotalPayBenefits                91140.29
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11397, dtype: object)
(11398, Id                                11399
EmployeeName                PETE TOLEDO
JobTitle            STATIONARY ENGINEER
BasePay                         72595.5
OvertimePay                     6742.24
OtherPay                       11797.92
Benefits                            NaN
TotalPay                       91135.66
TotalPayBenefits               91135.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11398, dtype: object)
(11399, Id                               11400
EmployeeName            DIANA TOLLIVER
JobTitle            SHERIFF'S SERGEANT
BasePay                       79171.42
OvertimePay                    1638.52
OtherPay                      10323.44
Benefits                           NaN
TotalPay                      91133.38
TotalPayBenefits              91133.38
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11399, dtype: object)
(11400, Id                            11401
EmployeeName        SHARON CASTILLO
JobTitle             DEPUTY SHERIFF
BasePay                    84292.43
OvertimePay                  538.27
OtherPay                    6301.89
Benefits                        NaN
TotalPay                   91132.59
TotalPayBenefits           91132.59
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11400, dtype: object)
(11401, Id                               11402
EmployeeName        GREGORY ROBERTS-JR
JobTitle                DEPUTY SHERIFF
BasePay                       85170.01
OvertimePay                        0.0
OtherPay                       5960.23
Benefits                           NaN
TotalPay                      91130.24
TotalPayBenefits              91130.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11401, dtype: object)
(11402, Id                          11403
EmployeeName            KEVIN GUY
JobTitle              PLANNER III
BasePay                   91121.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                  91121.7
TotalPayBenefits          91121.7
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11402, dtype: object)
(11403, Id                                          11404
EmployeeName                   MARIA JUDY PERILLO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.36
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.36
TotalPayBenefits                         91118.36
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11403, dtype: object)
(11404, Id                                          11405
EmployeeName                    JOHANNA GENDELMAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.19
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.19
TotalPayBenefits                         91118.19
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11404, dtype: object)
(11405, Id                                          11406
EmployeeName                         SUNITA PILLI
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.17
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.17
TotalPayBenefits                         91118.17
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11405, dtype: object)
(11406, Id                                          11407
EmployeeName                       RACHEL BUERKLE
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.13
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.13
TotalPayBenefits                         91118.13
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11406, dtype: object)
(11407, Id                                          11408
EmployeeName                       NICOLE SANDERS
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.13
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.13
TotalPayBenefits                         91118.13
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11407, dtype: object)
(11408, Id                                          11409
EmployeeName                        LORNA GARRIDO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.11
TotalPayBenefits                         91118.11
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11408, dtype: object)
(11409, Id                                          11410
EmployeeName                          KATE JORDAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.1
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.1
TotalPayBenefits                          91118.1
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11409, dtype: object)
(11410, Id                                          11411
EmployeeName                        MOHAMED HOSNY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.09
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.09
TotalPayBenefits                         91118.09
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11410, dtype: object)
(11411, Id                                          11412
EmployeeName                         DAVID FOLMAR
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.08
TotalPayBenefits                         91118.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11411, dtype: object)
(11412, Id                                          11413
EmployeeName                       LISA CONTRERAS
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.08
TotalPayBenefits                         91118.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11412, dtype: object)
(11413, Id                                          11414
EmployeeName                          KRISTINE LY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.08
TotalPayBenefits                         91118.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11413, dtype: object)
(11414, Id                                          11415
EmployeeName                        CELIA PEDROZA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.08
TotalPayBenefits                         91118.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11414, dtype: object)
(11415, Id                                          11416
EmployeeName                         SUSAN KELLER
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.07
TotalPayBenefits                         91118.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11415, dtype: object)
(11416, Id                                          11417
EmployeeName                     BERNHARD GUNTHER
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.07
TotalPayBenefits                         91118.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11416, dtype: object)
(11417, Id                                          11418
EmployeeName                         JOSEPH COWAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.06
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.06
TotalPayBenefits                         91118.06
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11417, dtype: object)
(11418, Id                                          11419
EmployeeName                        WILLIAM IRWIN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.06
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.06
TotalPayBenefits                         91118.06
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11418, dtype: object)
(11419, Id                                          11420
EmployeeName                          YAN-YAN LEE
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.05
TotalPayBenefits                         91118.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11419, dtype: object)
(11420, Id                                          11421
EmployeeName                          PATRICIA WU
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.05
TotalPayBenefits                         91118.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11420, dtype: object)
(11421, Id                                          11422
EmployeeName                    JULIAN SUTHERLAND
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.05
TotalPayBenefits                         91118.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11421, dtype: object)
(11422, Id                                          11423
EmployeeName                         ERICK PIEDRA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.04
TotalPayBenefits                         91118.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11422, dtype: object)
(11423, Id                                          11424
EmployeeName                          TANIA FOKIN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.04
TotalPayBenefits                         91118.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11423, dtype: object)
(11424, Id                                          11425
EmployeeName                       JEFFREY TAYLOR
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.04
TotalPayBenefits                         91118.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11424, dtype: object)
(11425, Id                                          11426
EmployeeName                        ALDRICH DAVID
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.04
TotalPayBenefits                         91118.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11425, dtype: object)
(11426, Id                                          11427
EmployeeName                            MARK RUHE
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.04
TotalPayBenefits                         91118.04
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11426, dtype: object)
(11427, Id                                          11428
EmployeeName                          DAVID DEASY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.03
TotalPayBenefits                         91118.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11427, dtype: object)
(11428, Id                                          11429
EmployeeName                             NANCY SO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.03
TotalPayBenefits                         91118.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11428, dtype: object)
(11429, Id                                          11430
EmployeeName                          PAULINE LAM
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.02
TotalPayBenefits                         91118.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11429, dtype: object)
(11430, Id                                          11431
EmployeeName                          MARK MCLEAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.02
TotalPayBenefits                         91118.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11430, dtype: object)
(11431, Id                                          11432
EmployeeName                      ERIC GATCHALIAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.02
TotalPayBenefits                         91118.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11431, dtype: object)
(11432, Id                                          11433
EmployeeName                  AMBI BOHANNON JONES
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.02
TotalPayBenefits                         91118.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11432, dtype: object)
(11433, Id                                          11434
EmployeeName                       ELIZABETH EDDY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.02
TotalPayBenefits                         91118.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11433, dtype: object)
(11434, Id                                          11435
EmployeeName                            MAY JABER
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.01
TotalPayBenefits                         91118.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11434, dtype: object)
(11435, Id                                          11436
EmployeeName                       MINDY LINETZKY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.01
TotalPayBenefits                         91118.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11435, dtype: object)
(11436, Id                                          11437
EmployeeName                          DENNIS CHAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.01
TotalPayBenefits                         91118.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11436, dtype: object)
(11437, Id                                          11438
EmployeeName                              MARY NG
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.01
TotalPayBenefits                         91118.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11437, dtype: object)
(11438, Id                                          11439
EmployeeName                       TERENCE PENEDA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91118.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91118.01
TotalPayBenefits                         91118.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11438, dtype: object)
(11439, Id                                          11440
EmployeeName                       JUDITH NEMZOFF
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11439, dtype: object)
(11440, Id                                          11441
EmployeeName                    ROBERT LONGHITANO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11440, dtype: object)
(11441, Id                                          11442
EmployeeName                        ROBERT MONROE
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11441, dtype: object)
(11442, Id                                          11443
EmployeeName                   ALEJANDRO MARTINEZ
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11442, dtype: object)
(11443, Id                                          11444
EmployeeName                          ALICE PEREZ
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11443, dtype: object)
(11444, Id                                          11445
EmployeeName                           SELENE YAP
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91118.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91118.0
TotalPayBenefits                          91118.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11444, dtype: object)
(11445, Id                                          11446
EmployeeName                            YVONNE KO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.96
TotalPayBenefits                         91117.96
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11445, dtype: object)
(11446, Id                                          11447
EmployeeName                          JOHN MURRAY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.72
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.72
TotalPayBenefits                         91117.72
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11446, dtype: object)
(11447, Id                                                     11448
EmployeeName                                     MONICA FISH
JobTitle            SECRETARY, COMMISSION ON THE ENVIRONMENT
BasePay                                              91117.7
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                             91117.7
TotalPayBenefits                                     91117.7
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11447, dtype: object)
(11448, Id                                          11449
EmployeeName                          ELISE CRANE
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.68
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.68
TotalPayBenefits                         91117.68
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11448, dtype: object)
(11449, Id                                          11450
EmployeeName                CONSTANCIA FONTANILLA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.61
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.61
TotalPayBenefits                         91117.61
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11449, dtype: object)
(11450, Id                                          11451
EmployeeName                      SYBIL BOUTILIER
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91117.6
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91117.6
TotalPayBenefits                          91117.6
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11450, dtype: object)
(11451, Id                                          11452
EmployeeName                          ELAINE CHAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.58
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.58
TotalPayBenefits                         91117.58
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11451, dtype: object)
(11452, Id                                          11453
EmployeeName                          MARINA CHIN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.56
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.56
TotalPayBenefits                         91117.56
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11452, dtype: object)
(11453, Id                                          11454
EmployeeName                      GAYATHRI SUNDAR
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.54
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.54
TotalPayBenefits                         91117.54
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11453, dtype: object)
(11454, Id                                          11455
EmployeeName                        YOSHIMI SAITO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.53
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.53
TotalPayBenefits                         91117.53
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11454, dtype: object)
(11455, Id                                          11456
EmployeeName                     HEATHER  K DAVIS
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.52
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.52
TotalPayBenefits                         91117.52
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11455, dtype: object)
(11456, Id                                          11457
EmployeeName                        STELLA WU-CHU
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.52
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.52
TotalPayBenefits                         91117.52
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11456, dtype: object)
(11457, Id                                          11458
EmployeeName                      MARTHA PETERSON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.51
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.51
TotalPayBenefits                         91117.51
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11457, dtype: object)
(11458, Id                                          11459
EmployeeName                          JUNKO CRAFT
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   91117.5
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  91117.5
TotalPayBenefits                          91117.5
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11458, dtype: object)
(11459, Id                                          11460
EmployeeName                       LATHA RAMADASS
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.49
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.49
TotalPayBenefits                         91117.49
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11459, dtype: object)
(11460, Id                                          11461
EmployeeName                         TIFFANY WONG
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91117.49
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91117.49
TotalPayBenefits                         91117.49
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11460, dtype: object)
(11461, Id                           11462
EmployeeName         MICHAEL VIGIL
JobTitle            DEPUTY SHERIFF
BasePay                   71342.95
OvertimePay                14389.6
OtherPay                   5377.89
Benefits                       NaN
TotalPay                  91110.44
TotalPayBenefits          91110.44
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11461, dtype: object)
(11462, Id                             11463
EmployeeName           ADINA DIAMOND
JobTitle            REGISTERED NURSE
BasePay                     85669.02
OvertimePay                   946.83
OtherPay                     4493.77
Benefits                         NaN
TotalPay                    91109.62
TotalPayBenefits            91109.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11462, dtype: object)
(11463, Id                          11464
EmployeeName          RAYMOND HUI
JobTitle              ELECTRICIAN
BasePay                  87122.41
OvertimePay               1613.78
OtherPay                   2372.3
Benefits                      NaN
TotalPay                 91108.49
TotalPayBenefits         91108.49
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11463, dtype: object)
(11464, Id                                          11465
EmployeeName                      JEFFREY JOHNSON
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  77793.59
OvertimePay                               9185.56
OtherPay                                  4128.31
Benefits                                      NaN
TotalPay                                 91107.46
TotalPayBenefits                         91107.46
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11464, dtype: object)
(11465, Id                           11466
EmployeeName        RAYMOND QUILES
JobTitle            DEPUTY SHERIFF
BasePay                   80534.71
OvertimePay                5408.89
OtherPay                   5163.64
Benefits                       NaN
TotalPay                  91107.24
TotalPayBenefits          91107.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11465, dtype: object)
(11466, Id                             11467
EmployeeName            SIDNEY SMITH
JobTitle            TRANSIT OPERATOR
BasePay                     63579.59
OvertimePay                 25223.51
OtherPay                     2295.22
Benefits                         NaN
TotalPay                    91098.32
TotalPayBenefits            91098.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11466, dtype: object)
(11467, Id                             11468
EmployeeName        STEPHEN SHOTLAND
JobTitle                 PLANNER III
BasePay                     91093.63
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    91093.63
TotalPayBenefits            91093.63
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11467, dtype: object)
(11468, Id                                               11469
EmployeeName                                  JERRY WU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    6691.06
OtherPay                                        6816.5
Benefits                                           NaN
TotalPay                                      91087.96
TotalPayBenefits                              91087.96
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11468, dtype: object)
(11469, Id                             11470
EmployeeName        KIMBERLY MCNEASE
JobTitle               SPECIAL NURSE
BasePay                     89195.21
OvertimePay                      0.0
OtherPay                     1882.86
Benefits                         NaN
TotalPay                    91078.07
TotalPayBenefits            91078.07
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11469, dtype: object)
(11470, Id                             11471
EmployeeName             DONNA WHITE
JobTitle            TRANSIT OPERATOR
BasePay                     65345.18
OvertimePay                 25317.63
OtherPay                      414.28
Benefits                         NaN
TotalPay                    91077.09
TotalPayBenefits            91077.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11470, dtype: object)
(11471, Id                                             11472
EmployeeName                          SUSAN THOMPSON
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     71900.11
OvertimePay                                 17961.06
OtherPay                                     1213.49
Benefits                                         NaN
TotalPay                                    91074.66
TotalPayBenefits                            91074.66
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11471, dtype: object)
(11472, Id                                          11473
EmployeeName                     CAROLYN MCKENNEY
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  91073.58
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 91073.58
TotalPayBenefits                         91073.58
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11472, dtype: object)
(11473, Id                                   11474
EmployeeName                   BARRY DAVIS
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           76990.65
OvertimePay                        9055.98
OtherPay                           5018.86
Benefits                               NaN
TotalPay                          91065.49
TotalPayBenefits                  91065.49
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11473, dtype: object)
(11474, Id                                   11475
EmployeeName                 ANTONIO ERAZO
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.01
OvertimePay                         392.96
OtherPay                               0.0
Benefits                               NaN
TotalPay                          91056.97
TotalPayBenefits                  91056.97
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11474, dtype: object)
(11475, Id                                               11476
EmployeeName                                    YUE YU
JobTitle            SENIOR PAYROLL AND PERSONNEL CLERK
BasePay                                       65092.21
OvertimePay                                   25954.17
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      91046.38
TotalPayBenefits                              91046.38
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11475, dtype: object)
(11476, Id                           11477
EmployeeName        MARTHA GODDARD
JobTitle             LIBRARIAN III
BasePay                   88535.16
OvertimePay                    0.0
OtherPay                   2510.98
Benefits                       NaN
TotalPay                  91046.14
TotalPayBenefits          91046.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11476, dtype: object)
(11477, Id                                       11478
EmployeeName                  MARINA VERTINSKI
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                                83883.7
OvertimePay                             4964.7
OtherPay                               2189.42
Benefits                                   NaN
TotalPay                              91037.82
TotalPayBenefits                      91037.82
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11477, dtype: object)
(11478, Id                             11479
EmployeeName                HIU CHAN
JobTitle            TRANSIT OPERATOR
BasePay                      64981.5
OvertimePay                 19924.28
OtherPay                     6125.16
Benefits                         NaN
TotalPay                    91030.94
TotalPayBenefits            91030.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11478, dtype: object)
(11479, Id                          11480
EmployeeName         ROBERT GOWAN
JobTitle             TRUCK DRIVER
BasePay                  73037.25
OvertimePay               12415.4
OtherPay                  5577.97
Benefits                      NaN
TotalPay                 91030.62
TotalPayBenefits         91030.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11479, dtype: object)
(11480, Id                            11481
EmployeeName        ROCHELLE MANKIN
JobTitle             DEPUTY SHERIFF
BasePay                     84499.1
OvertimePay                 5675.41
OtherPay                     851.36
Benefits                        NaN
TotalPay                   91025.87
TotalPayBenefits           91025.87
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11480, dtype: object)
(11481, Id                           11482
EmployeeName          JOANNE GOMEZ
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 250.52
OtherPay                   4260.09
Benefits                       NaN
TotalPay                  91016.61
TotalPayBenefits          91016.61
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11481, dtype: object)
(11482, Id                            11483
EmployeeName        ISMAEL CAUSAPIN
JobTitle             DEPUTY SHERIFF
BasePay                    81767.37
OvertimePay                  789.16
OtherPay                    8458.16
Benefits                        NaN
TotalPay                   91014.69
TotalPayBenefits           91014.69
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11482, dtype: object)
(11483, Id                                   11484
EmployeeName                    DAVID CHAN
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.08
OvertimePay                          347.9
OtherPay                               0.0
Benefits                               NaN
TotalPay                          91011.98
TotalPayBenefits                  91011.98
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11483, dtype: object)
(11484, Id                                                      11485
EmployeeName                                  NICHOLAS BRAZIL
JobTitle            TRANSMISSION AND DISTRIBUTION LINE WORKER
BasePay                                              82222.82
OvertimePay                                           8532.03
OtherPay                                               254.25
Benefits                                                  NaN
TotalPay                                              91009.1
TotalPayBenefits                                      91009.1
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11484, dtype: object)
(11485, Id                                   11486
EmployeeName             RUGENE JR GALICIA
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           77008.15
OvertimePay                        7677.99
OtherPay                           6317.72
Benefits                               NaN
TotalPay                          91003.86
TotalPayBenefits                  91003.86
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11485, dtype: object)
(11486, Id                            11487
EmployeeName        EDUARDO BARROSO
JobTitle                  CARPENTER
BasePay                    75565.25
OvertimePay                 11898.3
OtherPay                    3533.38
Benefits                        NaN
TotalPay                   90996.93
TotalPayBenefits           90996.93
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11486, dtype: object)
(11487, Id                                   11488
EmployeeName                   MICHAEL HOU
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.03
OvertimePay                         326.41
OtherPay                               0.0
Benefits                               NaN
TotalPay                          90990.44
TotalPayBenefits                  90990.44
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11487, dtype: object)
(11488, Id                                              11489
EmployeeName                          RUSSELL BUNDICK
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       80226.0
OvertimePay                                   2843.08
OtherPay                                      7920.11
Benefits                                          NaN
TotalPay                                     90989.19
TotalPayBenefits                             90989.19
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11488, dtype: object)
(11489, Id                                   11490
EmployeeName              AUGUSTINE CALIJA
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.03
OvertimePay                            0.0
OtherPay                             320.0
Benefits                               NaN
TotalPay                          90984.03
TotalPayBenefits                  90984.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11489, dtype: object)
(11490, Id                            11491
EmployeeName        CHRISTOPHER KIM
JobTitle             DEPUTY SHERIFF
BasePay                    86781.55
OvertimePay                 2545.08
OtherPay                     1642.7
Benefits                        NaN
TotalPay                   90969.33
TotalPayBenefits           90969.33
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11490, dtype: object)
(11491, Id                             11492
EmployeeName                PHU TRAN
JobTitle            TRANSIT OPERATOR
BasePay                     65764.65
OvertimePay                 22081.76
OtherPay                     3122.25
Benefits                         NaN
TotalPay                    90968.66
TotalPayBenefits            90968.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11491, dtype: object)
(11492, Id                                    11493
EmployeeName                   ALBERT UJCIC
JobTitle            WATER SERVICE INSPECTOR
BasePay                             90966.4
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            90966.4
TotalPayBenefits                    90966.4
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11492, dtype: object)
(11493, Id                                          11494
EmployeeName                          WENDY LEUNG
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90951.01
OvertimePay                                   0.0
OtherPay                                     14.0
Benefits                                      NaN
TotalPay                                 90965.01
TotalPayBenefits                         90965.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11493, dtype: object)
(11494, Id                                                11495
EmployeeName                             NIDA CASTILLON
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         59981.4
OvertimePay                                    25947.75
OtherPay                                         5035.3
Benefits                                            NaN
TotalPay                                       90964.45
TotalPayBenefits                               90964.45
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11494, dtype: object)
(11495, Id                          11496
EmployeeName          DENIS YOUNG
JobTitle                CARPENTER
BasePay                  76743.34
OvertimePay              12103.49
OtherPay                   2114.0
Benefits                      NaN
TotalPay                 90960.83
TotalPayBenefits         90960.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11495, dtype: object)
(11496, Id                             11497
EmployeeName               DAVID LUU
JobTitle            TRANSIT OPERATOR
BasePay                     67356.03
OvertimePay                 20355.49
OtherPay                     3247.42
Benefits                         NaN
TotalPay                    90958.94
TotalPayBenefits            90958.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11496, dtype: object)
(11497, Id                                                       11498
EmployeeName                                    ANTHONY MORAGA
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79820.01
OvertimePay                                            4115.02
OtherPay                                               7017.88
Benefits                                                   NaN
TotalPay                                              90952.91
TotalPayBenefits                                      90952.91
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11497, dtype: object)
(11498, Id                                                      11499
EmployeeName                                      SHERMAN LUK
JobTitle            PERFORMANCE ANALYST III - PROJECT MANAGER
BasePay                                              90946.98
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             90946.98
TotalPayBenefits                                     90946.98
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11498, dtype: object)
(11499, Id                                          11500
EmployeeName                    MARIA DE LOS RYAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90942.44
OvertimePay                                   0.0
OtherPay                                     4.42
Benefits                                      NaN
TotalPay                                 90946.86
TotalPayBenefits                         90946.86
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11499, dtype: object)
(11500, Id                             11501
EmployeeName         CARLOS FERREIRA
JobTitle            STREET INSPECTOR
BasePay                     71387.01
OvertimePay                 19558.85
OtherPay                         0.0
Benefits                         NaN
TotalPay                    90945.86
TotalPayBenefits            90945.86
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11500, dtype: object)
(11501, Id                                 11502
EmployeeName              JOSEPH LACSINA
JobTitle            AUTOMOTIVE MACHINIST
BasePay                          72668.4
OvertimePay                      6148.06
OtherPay                        12119.58
Benefits                             NaN
TotalPay                        90936.04
TotalPayBenefits                90936.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11501, dtype: object)
(11502, Id                            11503
EmployeeName        LAWRENCE FERRAZ
JobTitle                ELECTRICIAN
BasePay                    87868.94
OvertimePay                 2250.49
OtherPay                      816.0
Benefits                        NaN
TotalPay                   90935.43
TotalPayBenefits           90935.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11502, dtype: object)
(11503, Id                                           11504
EmployeeName                       PAUL MCCULLOUGH
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90930.8
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90930.8
TotalPayBenefits                           90930.8
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11503, dtype: object)
(11504, Id                             11505
EmployeeName              GREG ELLIS
JobTitle            TRANSIT OPERATOR
BasePay                     66068.46
OvertimePay                 19615.99
OtherPay                     5246.34
Benefits                         NaN
TotalPay                    90930.79
TotalPayBenefits            90930.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11504, dtype: object)
(11505, Id                             11506
EmployeeName        ROBERT MEINBRESS
JobTitle              DEPUTY SHERIFF
BasePay                     81365.29
OvertimePay                   5362.6
OtherPay                      4198.8
Benefits                         NaN
TotalPay                    90926.69
TotalPayBenefits            90926.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11505, dtype: object)
(11506, Id                             11507
EmployeeName             DUKE GRANDA
JobTitle            TRANSIT OPERATOR
BasePay                      68337.0
OvertimePay                 22383.99
OtherPay                      204.56
Benefits                         NaN
TotalPay                    90925.55
TotalPayBenefits            90925.55
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11506, dtype: object)
(11507, Id                               11508
EmployeeName        ANDY TAK CHI LEUNG
JobTitle                DEPUTY SHERIFF
BasePay                       77918.51
OvertimePay                   13006.35
OtherPay                           0.0
Benefits                           NaN
TotalPay                      90924.86
TotalPayBenefits              90924.86
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11507, dtype: object)
(11508, Id                             11509
EmployeeName         IRENE MONTECLAR
JobTitle            REGISTERED NURSE
BasePay                      87070.6
OvertimePay                    629.1
OtherPay                     3225.12
Benefits                         NaN
TotalPay                    90924.82
TotalPayBenefits            90924.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11508, dtype: object)
(11509, Id                                      11510
EmployeeName                          CUC BUI
JobTitle            PSYCHIATRIC SOCIAL WORKER
BasePay                              79882.54
OvertimePay                           1793.88
OtherPay                              9233.53
Benefits                                  NaN
TotalPay                             90909.95
TotalPayBenefits                     90909.95
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11509, dtype: object)
(11510, Id                                  11511
EmployeeName        CHRISTOPHER TRENSCHEL
JobTitle                ASSOCIATE AUDITOR
BasePay                          90900.94
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90900.94
TotalPayBenefits                 90900.94
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11510, dtype: object)
(11511, Id                                                       11512
EmployeeName                                       JOHN MALLIA
JobTitle            MAINTENANCE MACHINIST ASSISTANT SUPERVISOR
BasePay                                               87849.41
OvertimePay                                            1584.96
OtherPay                                                1462.5
Benefits                                                   NaN
TotalPay                                              90896.87
TotalPayBenefits                                      90896.87
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11511, dtype: object)
(11512, Id                                              11513
EmployeeName                               BING LAPUS
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       83790.3
OvertimePay                                    980.88
OtherPay                                      6123.15
Benefits                                          NaN
TotalPay                                     90894.33
TotalPayBenefits                             90894.33
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11512, dtype: object)
(11513, Id                           11514
EmployeeName         RICHARD HALEY
JobTitle            DEPUTY SHERIFF
BasePay                   79099.79
OvertimePay                4706.49
OtherPay                   7086.74
Benefits                       NaN
TotalPay                  90893.02
TotalPayBenefits          90893.02
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11513, dtype: object)
(11514, Id                                          11515
EmployeeName                        LAMAR SIMPSON
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   84734.7
OvertimePay                               6157.27
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90891.97
TotalPayBenefits                         90891.97
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11514, dtype: object)
(11515, Id                                          11516
EmployeeName                           TARA COHEN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90887.69
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90887.69
TotalPayBenefits                         90887.69
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11515, dtype: object)
(11516, Id                           11517
EmployeeName            DEREK WRAY
JobTitle            DEPUTY SHERIFF
BasePay                   80833.71
OvertimePay                5459.66
OtherPay                    4591.5
Benefits                       NaN
TotalPay                  90884.87
TotalPayBenefits          90884.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11516, dtype: object)
(11517, Id                            11518
EmployeeName        ABDULLAH WAZWAZ
JobTitle             DEPUTY SHERIFF
BasePay                    71342.98
OvertimePay                15248.54
OtherPay                    4280.58
Benefits                        NaN
TotalPay                    90872.1
TotalPayBenefits            90872.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11517, dtype: object)
(11518, Id                                                    11519
EmployeeName                                     OLIVER LEE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77679.37
OvertimePay                                         3871.25
OtherPay                                            9319.27
Benefits                                                NaN
TotalPay                                           90869.89
TotalPayBenefits                                   90869.89
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11518, dtype: object)
(11519, Id                                          11520
EmployeeName                 ELIZABETH FITZGERALD
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90867.54
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90867.54
TotalPayBenefits                         90867.54
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11519, dtype: object)
(11520, Id                                          11521
EmployeeName                    MARIANNE THOMPSON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                   90867.5
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  90867.5
TotalPayBenefits                          90867.5
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11520, dtype: object)
(11521, Id                                         11522
EmployeeName                        AUDIE ILEJAY
JobTitle            WASTEWATER CONTROL INSPECTOR
BasePay                                 85940.01
OvertimePay                              4681.85
OtherPay                                  229.84
Benefits                                     NaN
TotalPay                                 90851.7
TotalPayBenefits                         90851.7
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11521, dtype: object)
(11522, Id                               11523
EmployeeName             JAVIER RIVERA
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                        1040.0
Benefits                           NaN
TotalPay                       90846.0
TotalPayBenefits               90846.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11522, dtype: object)
(11523, Id                              11524
EmployeeName        ANTHONY BALLONADO
JobTitle             REGISTERED NURSE
BasePay                      83414.54
OvertimePay                   3678.16
OtherPay                      3752.83
Benefits                          NaN
TotalPay                     90845.53
TotalPayBenefits             90845.53
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11523, dtype: object)
(11524, Id                             11525
EmployeeName                JOHN LIM
JobTitle            TRANSIT OPERATOR
BasePay                     66871.64
OvertimePay                 21040.52
OtherPay                     2928.25
Benefits                         NaN
TotalPay                    90840.41
TotalPayBenefits            90840.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11524, dtype: object)
(11525, Id                                           11526
EmployeeName                              AMY PINE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90838.63
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90838.63
TotalPayBenefits                          90838.63
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11525, dtype: object)
(11526, Id                                            11527
EmployeeName                           DAMYANTI JIT
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                     72710.0
OvertimePay                                 16514.0
OtherPay                                    1614.11
Benefits                                        NaN
TotalPay                                   90838.11
TotalPayBenefits                           90838.11
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11526, dtype: object)
(11527, Id                                     11528
EmployeeName                 MELANIE MORALES
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                              90838.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             90838.0
TotalPayBenefits                     90838.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11527, dtype: object)
(11528, Id                                11529
EmployeeName              SANDRA SUZAKI
JobTitle            CLINICAL PHARMACIST
BasePay                        89653.41
OvertimePay                         0.0
OtherPay                         1180.7
Benefits                            NaN
TotalPay                       90834.11
TotalPayBenefits               90834.11
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11528, dtype: object)
(11529, Id                                  11530
EmployeeName                   DAVID POPE
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          90222.56
OvertimePay                           0.0
OtherPay                            608.7
Benefits                              NaN
TotalPay                         90831.26
TotalPayBenefits                 90831.26
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11529, dtype: object)
(11530, Id                                               11531
EmployeeName                              GEORGE PARKS
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                    12643.5
OtherPay                                         605.0
Benefits                                           NaN
TotalPay                                       90828.9
TotalPayBenefits                               90828.9
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11530, dtype: object)
(11531, Id                                11532
EmployeeName        MAURICIO BARRIENTOS
JobTitle                 DEPUTY SHERIFF
BasePay                        82915.52
OvertimePay                         0.0
OtherPay                        7911.86
Benefits                            NaN
TotalPay                       90827.38
TotalPayBenefits               90827.38
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11531, dtype: object)
(11532, Id                             11533
EmployeeName             KEE WAN LEY
JobTitle            TRANSIT OPERATOR
BasePay                     67238.59
OvertimePay                 22414.86
OtherPay                     1173.77
Benefits                         NaN
TotalPay                    90827.22
TotalPayBenefits            90827.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11532, dtype: object)
(11533, Id                             11534
EmployeeName             CHARLES LOK
JobTitle            TRANSIT OPERATOR
BasePay                     66478.44
OvertimePay                 22872.86
OtherPay                     1463.54
Benefits                         NaN
TotalPay                    90814.84
TotalPayBenefits            90814.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11533, dtype: object)
(11534, Id                                           11535
EmployeeName                          WAI HUNG YIP
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90805.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90805.01
TotalPayBenefits                          90805.01
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11534, dtype: object)
(11535, Id                                                       11536
EmployeeName                                     STEPHEN KELLY
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79052.59
OvertimePay                                             4702.9
OtherPay                                               7047.98
Benefits                                                   NaN
TotalPay                                              90803.47
TotalPayBenefits                                      90803.47
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11535, dtype: object)
(11536, Id                             11537
EmployeeName          GARLAND TAYLOR
JobTitle            TRANSIT OPERATOR
BasePay                     65541.46
OvertimePay                 22870.99
OtherPay                     2389.23
Benefits                         NaN
TotalPay                    90801.68
TotalPayBenefits            90801.68
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11536, dtype: object)
(11537, Id                                     11538
EmployeeName                     TONY HURLEY
JobTitle            DEPUTY PROBATION OFFICER
BasePay                              81958.0
OvertimePay                          8841.23
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            90799.23
TotalPayBenefits                    90799.23
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11537, dtype: object)
(11538, Id                                    11539
EmployeeName                     WARREN LEE
JobTitle            WATER SERVICE INSPECTOR
BasePay                            89720.72
OvertimePay                         1074.15
OtherPay                                0.0
Benefits                                NaN
TotalPay                           90794.87
TotalPayBenefits                   90794.87
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11538, dtype: object)
(11539, Id                                 11540
EmployeeName                    PETER NG
JobTitle            PHYSICIAN SPECIALIST
BasePay                         86845.05
OvertimePay                          0.0
OtherPay                          3946.0
Benefits                             NaN
TotalPay                        90791.05
TotalPayBenefits                90791.05
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11539, dtype: object)
(11540, Id                                              11541
EmployeeName                             TINA GILBERT
JobTitle            DIVISION DIRECTOR ADULT PROBATION
BasePay                                       78444.8
OvertimePay                                       0.0
OtherPay                                     12342.54
Benefits                                          NaN
TotalPay                                     90787.34
TotalPayBenefits                             90787.34
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11540, dtype: object)
(11541, Id                                           11542
EmployeeName                     BARBARA CICERELLI
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.98
OvertimePay                                    0.0
OtherPay                                     120.0
Benefits                                       NaN
TotalPay                                  90784.98
TotalPayBenefits                          90784.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11541, dtype: object)
(11542, Id                                   11543
EmployeeName                    TODDY WONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.03
OvertimePay                            0.0
OtherPay                             120.0
Benefits                               NaN
TotalPay                          90784.03
TotalPayBenefits                  90784.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11542, dtype: object)
(11543, Id                                           11544
EmployeeName                          YONGWEN WANG
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.03
OvertimePay                                    0.0
OtherPay                                     21.77
Benefits                                       NaN
TotalPay                                   90777.8
TotalPayBenefits                           90777.8
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11543, dtype: object)
(11544, Id                                              11545
EmployeeName                                 PO MAUNG
JobTitle            ELECTRONIC MAINTENANCE TECHNICIAN
BasePay                                      85848.63
OvertimePay                                   3624.75
OtherPay                                       1303.2
Benefits                                          NaN
TotalPay                                     90776.58
TotalPayBenefits                             90776.58
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11544, dtype: object)
(11545, Id                               11546
EmployeeName            DURWOOD SEATON
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                        0.0
OtherPay                        2711.0
Benefits                           NaN
TotalPay                       90773.0
TotalPayBenefits               90773.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11545, dtype: object)
(11546, Id                             11547
EmployeeName         MARY MCLAUGHLIN
JobTitle            REGISTERED NURSE
BasePay                     74632.55
OvertimePay                  3249.32
OtherPay                    12889.44
Benefits                         NaN
TotalPay                    90771.31
TotalPayBenefits            90771.31
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11546, dtype: object)
(11547, Id                            11548
EmployeeName        WILLIAM CARLILE
JobTitle                ELECTRICIAN
BasePay                     86771.1
OvertimePay                 1778.45
OtherPay                     2220.0
Benefits                        NaN
TotalPay                   90769.55
TotalPayBenefits           90769.55
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11547, dtype: object)
(11548, Id                                          11549
EmployeeName                     MARISA FERNANDEZ
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90767.31
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90767.31
TotalPayBenefits                         90767.31
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11548, dtype: object)
(11549, Id                             11550
EmployeeName            PAUL JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     66667.37
OvertimePay                 19971.11
OtherPay                     4123.68
Benefits                         NaN
TotalPay                    90762.16
TotalPayBenefits            90762.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11549, dtype: object)
(11550, Id                                           11551
EmployeeName                        GEORGE PINEGAR
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.14
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.14
TotalPayBenefits                          90756.14
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11550, dtype: object)
(11551, Id                                           11552
EmployeeName                         MANUEL NORONA
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.09
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.09
TotalPayBenefits                          90756.09
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11551, dtype: object)
(11552, Id                                           11553
EmployeeName                           JUNG THOMAS
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.06
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.06
TotalPayBenefits                          90756.06
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11552, dtype: object)
(11553, Id                                           11554
EmployeeName                         GILBERT JEUNG
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.05
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.05
TotalPayBenefits                          90756.05
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11553, dtype: object)
(11554, Id                                           11555
EmployeeName                        ROBERTA GARCIA
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.03
TotalPayBenefits                          90756.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11554, dtype: object)
(11555, Id                                           11556
EmployeeName                         GHULAM JANJUA
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.02
TotalPayBenefits                          90756.02
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11555, dtype: object)
(11556, Id                                           11557
EmployeeName                        RODNEY JOHNSON
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                   90756.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90756.01
TotalPayBenefits                          90756.01
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11556, dtype: object)
(11557, Id                                           11558
EmployeeName                         HAN JIN JIANG
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90756.0
TotalPayBenefits                           90756.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11557, dtype: object)
(11558, Id                                           11559
EmployeeName                              KEVIN HO
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90756.0
TotalPayBenefits                           90756.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11558, dtype: object)
(11559, Id                                           11560
EmployeeName                     THEODULE DE SOUZA
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90756.0
TotalPayBenefits                           90756.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11559, dtype: object)
(11560, Id                                           11561
EmployeeName                        JACQUELINE ENG
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    90756.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90756.0
TotalPayBenefits                           90756.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11560, dtype: object)
(11561, Id                                          11562
EmployeeName                         KAREN PIERCE
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                  90753.65
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90753.65
TotalPayBenefits                         90753.65
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11561, dtype: object)
(11562, Id                             11563
EmployeeName               JACK NYCE
JobTitle            POLICE OFFICER I
BasePay                     81711.54
OvertimePay                  3632.12
OtherPay                     5408.01
Benefits                         NaN
TotalPay                    90751.67
TotalPayBenefits            90751.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11562, dtype: object)
(11563, Id                                 11564
EmployeeName              JOSEPH PADILLA
JobTitle            PAINTER SUPERVISOR I
BasePay                         85633.21
OvertimePay                       5104.4
OtherPay                           11.25
Benefits                             NaN
TotalPay                        90748.86
TotalPayBenefits                90748.86
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11563, dtype: object)
(11564, Id                                          11565
EmployeeName                          PAULA JONES
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                   90748.6
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  90748.6
TotalPayBenefits                          90748.6
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11564, dtype: object)
(11565, Id                                          11566
EmployeeName                      JENNIFER CHACON
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                   90748.6
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  90748.6
TotalPayBenefits                          90748.6
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11565, dtype: object)
(11566, Id                             11567
EmployeeName         TERRANCE COUNTS
JobTitle            TRANSIT OPERATOR
BasePay                     64565.84
OvertimePay                 24391.02
OtherPay                     1791.43
Benefits                         NaN
TotalPay                    90748.29
TotalPayBenefits            90748.29
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11566, dtype: object)
(11567, Id                                    11568
EmployeeName               MAUREEN RANDOLPH
JobTitle            WATER SERVICE INSPECTOR
BasePay                            90196.59
OvertimePay                           550.2
OtherPay                                0.0
Benefits                                NaN
TotalPay                           90746.79
TotalPayBenefits                   90746.79
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11567, dtype: object)
(11568, Id                                              11569
EmployeeName                             KEVIN HARVEY
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       67584.9
OvertimePay                                  16833.57
OtherPay                                      6328.15
Benefits                                          NaN
TotalPay                                     90746.62
TotalPayBenefits                             90746.62
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11568, dtype: object)
(11569, Id                                     11570
EmployeeName                  PASKEL MATLOCK
JobTitle            GENERAL UTILITY MECHANIC
BasePay                             78360.32
OvertimePay                          2796.89
OtherPay                             9585.02
Benefits                                 NaN
TotalPay                            90742.23
TotalPayBenefits                    90742.23
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11569, dtype: object)
(11570, Id                           11571
EmployeeName        EFREN HIPOLITO
JobTitle               ELECTRICIAN
BasePay                    87122.4
OvertimePay                1613.77
OtherPay                    2000.0
Benefits                       NaN
TotalPay                  90736.17
TotalPayBenefits          90736.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11570, dtype: object)
(11571, Id                           11572
EmployeeName          BRIAN SAVAGE
JobTitle            DEPUTY SHERIFF
BasePay                   86500.99
OvertimePay                    0.0
OtherPay                   4234.92
Benefits                       NaN
TotalPay                  90735.91
TotalPayBenefits          90735.91
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11571, dtype: object)
(11572, Id                                        11573
EmployeeName            PIERRE-JOSEP MARIE-ROSE
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 89433.4
OvertimePay                                 0.0
OtherPay                                 1300.0
Benefits                                    NaN
TotalPay                                90733.4
TotalPayBenefits                        90733.4
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11572, dtype: object)
(11573, Id                             11574
EmployeeName          MICHAEL PAVICH
JobTitle            STREET INSPECTOR
BasePay                      71387.0
OvertimePay                 17153.85
OtherPay                      2190.0
Benefits                         NaN
TotalPay                    90730.85
TotalPayBenefits            90730.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11573, dtype: object)
(11574, Id                                                      11575
EmployeeName                                 JANE MONTES-HALL
JobTitle            CLAIMS INVESTIGATOR CITY ATTORNEYS OFFICE
BasePay                                              90726.61
OvertimePay                                               0.0
OtherPay                                                  0.0
Benefits                                                  NaN
TotalPay                                             90726.61
TotalPayBenefits                                     90726.61
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11574, dtype: object)
(11575, Id                             11576
EmployeeName        STEPHANIE CHIGOS
JobTitle            REGISTERED NURSE
BasePay                     87240.74
OvertimePay                   945.81
OtherPay                     2534.37
Benefits                         NaN
TotalPay                    90720.92
TotalPayBenefits            90720.92
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11575, dtype: object)
(11576, Id                             11577
EmployeeName           MICHAEL DAVIS
JobTitle            TRANSIT OPERATOR
BasePay                     66353.56
OvertimePay                 22211.13
OtherPay                      2150.4
Benefits                         NaN
TotalPay                    90715.09
TotalPayBenefits            90715.09
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11576, dtype: object)
(11577, Id                                      11578
EmployeeName                  ELENA DMITRIEVA
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64552.8
OvertimePay                          25144.15
OtherPay                              1012.94
Benefits                                  NaN
TotalPay                             90709.89
TotalPayBenefits                     90709.89
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11577, dtype: object)
(11578, Id                           11579
EmployeeName         ALYSA HAMMONS
JobTitle            DEPUTY SHERIFF
BasePay                    83581.0
OvertimePay                3016.02
OtherPay                   4109.41
Benefits                       NaN
TotalPay                  90706.43
TotalPayBenefits          90706.43
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11578, dtype: object)
(11579, Id                             11580
EmployeeName          THERESA MARKLE
JobTitle            REGISTERED NURSE
BasePay                     88709.33
OvertimePay                      0.0
OtherPay                     1994.72
Benefits                         NaN
TotalPay                    90704.05
TotalPayBenefits            90704.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11579, dtype: object)
(11580, Id                               11581
EmployeeName           NICHOLAS WAELTY
JobTitle            ASSISTANT ENGINEER
BasePay                       81447.46
OvertimePay                        0.0
OtherPay                       9256.42
Benefits                           NaN
TotalPay                      90703.88
TotalPayBenefits              90703.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11580, dtype: object)
(11581, Id                                          11582
EmployeeName                     LINDSEY ANGELATS
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                  90703.66
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90703.66
TotalPayBenefits                         90703.66
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11581, dtype: object)
(11582, Id                               11583
EmployeeName             JIANMING ZHOU
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.06
OvertimePay                        0.0
OtherPay                         895.0
Benefits                           NaN
TotalPay                      90701.06
TotalPayBenefits              90701.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11582, dtype: object)
(11583, Id                                           11584
EmployeeName                      ROBAN SAN MIGUEL
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.04
OvertimePay                                    0.0
OtherPay                                      31.4
Benefits                                       NaN
TotalPay                                  90695.44
TotalPayBenefits                          90695.44
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11583, dtype: object)
(11584, Id                                                     11585
EmployeeName                                  DIANE HAKEWILL
JobTitle            COURT ASSISTANT - SENIOR, SUPERIOR COURT
BasePay                                             90689.44
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            90689.44
TotalPayBenefits                                    90689.44
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11584, dtype: object)
(11585, Id                                                     11586
EmployeeName                                        ELLA YIP
JobTitle            COURT ASSISTANT - SENIOR, SUPERIOR COURT
BasePay                                             90689.43
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            90689.43
TotalPayBenefits                                    90689.43
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11585, dtype: object)
(11586, Id                             11587
EmployeeName           JORGE JIMENEZ
JobTitle            TRANSIT OPERATOR
BasePay                     65526.14
OvertimePay                 23256.39
OtherPay                     1892.43
Benefits                         NaN
TotalPay                    90674.96
TotalPayBenefits            90674.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11586, dtype: object)
(11587, Id                               11588
EmployeeName             VICTORIA FONG
JobTitle            TRANSIT SUPERVISOR
BasePay                        88062.0
OvertimePay                     198.62
OtherPay                        2413.0
Benefits                           NaN
TotalPay                      90673.62
TotalPayBenefits              90673.62
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11587, dtype: object)
(11588, Id                          11589
EmployeeName         DAVID PIERCE
JobTitle              ELECTRICIAN
BasePay                  88527.62
OvertimePay                   0.0
OtherPay                   2138.5
Benefits                      NaN
TotalPay                 90666.12
TotalPayBenefits         90666.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11588, dtype: object)
(11589, Id                             11590
EmployeeName        JOSE MENDOZA III
JobTitle            TRANSIT OPERATOR
BasePay                     62070.99
OvertimePay                 26062.76
OtherPay                     2530.57
Benefits                         NaN
TotalPay                    90664.32
TotalPayBenefits            90664.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11589, dtype: object)
(11590, Id                                   11591
EmployeeName                     NELSON NG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           90664.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          90664.04
TotalPayBenefits                  90664.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11590, dtype: object)
(11591, Id                                 11592
EmployeeName                   SHAO WANG
JobTitle            IS ADMINISTRATOR III
BasePay                         90664.04
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        90664.04
TotalPayBenefits                90664.04
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11591, dtype: object)
(11592, Id                                           11593
EmployeeName                        MARY ANNE MOCK
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90664.03
TotalPayBenefits                          90664.03
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11592, dtype: object)
(11593, Id                                           11594
EmployeeName                       MARSHIA HERRING
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90664.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90664.01
TotalPayBenefits                          90664.01
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11593, dtype: object)
(11594, Id                                   11595
EmployeeName                     WARD WONG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                           90664.0
TotalPayBenefits                   90664.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11594, dtype: object)
(11595, Id                                           11596
EmployeeName                       WILLIAM FRAZIER
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11595, dtype: object)
(11596, Id                                                  11597
EmployeeName                                   LINDA WONG
JobTitle            ASSISTANT CLERK, BOARD OF SUPERVISORS
BasePay                                           90664.0
OvertimePay                                           0.0
OtherPay                                              0.0
Benefits                                              NaN
TotalPay                                          90664.0
TotalPayBenefits                                  90664.0
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 11596, dtype: object)
(11597, Id                                           11598
EmployeeName                             ADA SMITH
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11597, dtype: object)
(11598, Id                                           11599
EmployeeName                        CHARLES RIVERA
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11598, dtype: object)
(11599, Id                                           11600
EmployeeName                           JAMES STROH
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11599, dtype: object)
(11600, Id                                   11601
EmployeeName                  JOSE AGUIRRE
JobTitle            CONSTRUCTION INSPECTOR
BasePay                            90664.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                           90664.0
TotalPayBenefits                   90664.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11600, dtype: object)
(11601, Id                                           11602
EmployeeName                          DAVID MACIAS
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11601, dtype: object)
(11602, Id                                           11603
EmployeeName                         CELINDA CANTU
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11602, dtype: object)
(11603, Id                                           11604
EmployeeName                     HENRY RAYMOND III
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90664.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90664.0
TotalPayBenefits                           90664.0
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11603, dtype: object)
(11604, Id                                           11605
EmployeeName                       FRANCINE AUSTIN
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.99
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.99
TotalPayBenefits                          90663.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11604, dtype: object)
(11605, Id                                           11606
EmployeeName                            PHILIP TSE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.99
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.99
TotalPayBenefits                          90663.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11605, dtype: object)
(11606, Id                                           11607
EmployeeName            JACQUELINE MCCRIGHT TAYLOR
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.99
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.99
TotalPayBenefits                          90663.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11606, dtype: object)
(11607, Id                                           11608
EmployeeName                         JOHN MELICHAR
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.99
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.99
TotalPayBenefits                          90663.99
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11607, dtype: object)
(11608, Id                                           11609
EmployeeName                          MARY DOWLING
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.98
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.98
TotalPayBenefits                          90663.98
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11608, dtype: object)
(11609, Id                                           11610
EmployeeName                      MAREE KAY PARISI
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.95
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.95
TotalPayBenefits                          90663.95
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11609, dtype: object)
(11610, Id                                           11611
EmployeeName                     CARLOS BALLADARES
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90663.91
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90663.91
TotalPayBenefits                          90663.91
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11610, dtype: object)
(11611, Id                                 11612
EmployeeName            GERALD MCDERMOTT
JobTitle            ELECTRICAL INSPECTOR
BasePay                          56124.6
OvertimePay                          0.0
OtherPay                        34536.42
Benefits                             NaN
TotalPay                        90661.02
TotalPayBenefits                90661.02
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11611, dtype: object)
(11612, Id                                           11613
EmployeeName                           HILDA JONES
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90660.09
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90660.09
TotalPayBenefits                          90660.09
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11612, dtype: object)
(11613, Id                                       11614
EmployeeName                       DAMON LOUIE
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.04
OvertimePay                                0.0
OtherPay                                 852.9
Benefits                                   NaN
TotalPay                              90658.94
TotalPayBenefits                      90658.94
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11613, dtype: object)
(11614, Id                                11615
EmployeeName              RAMON IGNACIO
JobTitle            STATIONARY ENGINEER
BasePay                        72410.02
OvertimePay                    15117.39
OtherPay                        3121.25
Benefits                            NaN
TotalPay                       90648.66
TotalPayBenefits               90648.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11614, dtype: object)
(11615, Id                          11616
EmployeeName          AARON STARR
JobTitle              PLANNER III
BasePay                  90648.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 90648.04
TotalPayBenefits         90648.04
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11615, dtype: object)
(11616, Id                           11617
EmployeeName        DANILO VICENTE
JobTitle               ELECTRICIAN
BasePay                   87473.82
OvertimePay                1350.32
OtherPay                    1820.0
Benefits                       NaN
TotalPay                  90644.14
TotalPayBenefits          90644.14
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11616, dtype: object)
(11617, Id                                 11618
EmployeeName                   OLEE WADE
JobTitle            PAINTER SUPERVISOR I
BasePay                         85633.15
OvertimePay                      4401.03
OtherPay                           609.0
Benefits                             NaN
TotalPay                        90643.18
TotalPayBenefits                90643.18
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11617, dtype: object)
(11618, Id                                     11619
EmployeeName                 CARLOS GONZALEZ
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             80307.54
OvertimePay                          6078.78
OtherPay                             4256.15
Benefits                                 NaN
TotalPay                            90642.47
TotalPayBenefits                    90642.47
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11618, dtype: object)
(11619, Id                                           11620
EmployeeName                         JOSEPH CECERE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90641.4
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90641.4
TotalPayBenefits                           90641.4
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11619, dtype: object)
(11620, Id                                      11621
EmployeeName                    CHARLES CHASE
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              59363.96
OvertimePay                           23016.3
OtherPay                              8258.81
Benefits                                  NaN
TotalPay                             90639.07
TotalPayBenefits                     90639.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11620, dtype: object)
(11621, Id                           11622
EmployeeName           LILLIAM LAU
JobTitle            CRIMINALIST II
BasePay                   90629.52
OvertimePay                    0.0
OtherPay                      8.82
Benefits                       NaN
TotalPay                  90638.34
TotalPayBenefits          90638.34
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11621, dtype: object)
(11622, Id                             11623
EmployeeName        ALPHONSUS OKORIE
JobTitle            TRANSIT OPERATOR
BasePay                      66370.1
OvertimePay                 21829.67
OtherPay                     2437.93
Benefits                         NaN
TotalPay                     90637.7
TotalPayBenefits             90637.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11622, dtype: object)
(11623, Id                                                    11624
EmployeeName                                    CAROLYN YEE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77765.77
OvertimePay                                         2614.13
OtherPay                                           10257.27
Benefits                                                NaN
TotalPay                                           90637.17
TotalPayBenefits                                   90637.17
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11623, dtype: object)
(11624, Id                                           11625
EmployeeName                         CAROL SCHULTE
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90620.38
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90620.38
TotalPayBenefits                          90620.38
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11624, dtype: object)
(11625, Id                                           11626
EmployeeName                            ERIK DUBON
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90620.32
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90620.32
TotalPayBenefits                          90620.32
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11625, dtype: object)
(11626, Id                                           11627
EmployeeName                         JOHN PABUSTAN
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   90620.28
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90620.28
TotalPayBenefits                          90620.28
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11626, dtype: object)
(11627, Id                                              11628
EmployeeName                               WYMAN WONG
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       73257.8
OvertimePay                                   16578.9
OtherPay                                        780.0
Benefits                                          NaN
TotalPay                                      90616.7
TotalPayBenefits                              90616.7
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11627, dtype: object)
(11628, Id                                  11629
EmployeeName                   IRENE AGER
JobTitle            FIRE RESCUE PARAMEDIC
BasePay                           61874.0
OvertimePay                           0.0
OtherPay                         28701.79
Benefits                              NaN
TotalPay                         90575.79
TotalPayBenefits                 90575.79
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11628, dtype: object)
(11629, Id                            11630
EmployeeName        MARTIN GREALISH
JobTitle                FIREFIGHTER
BasePay                      6880.5
OvertimePay                 28620.0
OtherPay                   55071.77
Benefits                        NaN
TotalPay                   90572.27
TotalPayBenefits           90572.27
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11629, dtype: object)
(11630, Id                                          11631
EmployeeName                    LINDA KELLY-CROSS
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90564.57
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90564.57
TotalPayBenefits                         90564.57
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11630, dtype: object)
(11631, Id                                               11632
EmployeeName                            ALISON KASTAMA
JobTitle            COORDINATOR OF CITIZEN INVOLVEMENT
BasePay                                       90268.72
OvertimePay                                        0.0
OtherPay                                         288.3
Benefits                                           NaN
TotalPay                                      90557.02
TotalPayBenefits                              90557.02
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11631, dtype: object)
(11632, Id                                      11633
EmployeeName                    EDUARDO MANAG
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                              57852.41
OvertimePay                          19735.96
OtherPay                             12964.35
Benefits                                  NaN
TotalPay                             90552.72
TotalPayBenefits                     90552.72
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11632, dtype: object)
(11633, Id                                          11634
EmployeeName                         ANDREW THORS
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  81179.84
OvertimePay                               5200.81
OtherPay                                  4165.38
Benefits                                      NaN
TotalPay                                 90546.03
TotalPayBenefits                         90546.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11633, dtype: object)
(11634, Id                                       11635
EmployeeName                         JOSE PENA
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                                83902.6
OvertimePay                                0.0
OtherPay                               6638.97
Benefits                                   NaN
TotalPay                              90541.57
TotalPayBenefits                      90541.57
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11634, dtype: object)
(11635, Id                                         11636
EmployeeName                    MICHAEL MCCARTHY
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 90537.83
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                90537.83
TotalPayBenefits                        90537.83
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11635, dtype: object)
(11636, Id                             11637
EmployeeName           NATHAN BENTON
JobTitle            TRANSIT OPERATOR
BasePay                     65342.81
OvertimePay                 20910.62
OtherPay                     4274.07
Benefits                         NaN
TotalPay                     90527.5
TotalPayBenefits             90527.5
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11636, dtype: object)
(11637, Id                                 11638
EmployeeName              BENJAMIN AMYES
JobTitle            SENIOR SOCIAL WORKER
BasePay                         68034.11
OvertimePay                      4690.52
OtherPay                        17794.82
Benefits                             NaN
TotalPay                        90519.45
TotalPayBenefits                90519.45
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11637, dtype: object)
(11638, Id                             11639
EmployeeName             LOUIS SMITH
JobTitle            TRANSIT OPERATOR
BasePay                     62468.44
OvertimePay                 28005.89
OtherPay                       42.06
Benefits                         NaN
TotalPay                    90516.39
TotalPayBenefits            90516.39
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11638, dtype: object)
(11639, Id                                    11640
EmployeeName                EMELITO LLARENA
JobTitle            WATER SERVICE INSPECTOR
BasePay                            89007.81
OvertimePay                         1074.15
OtherPay                             434.04
Benefits                                NaN
TotalPay                            90516.0
TotalPayBenefits                    90516.0
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11639, dtype: object)
(11640, Id                             11641
EmployeeName        AMY GRAY-SCHLINK
JobTitle             UTILITY PLUMBER
BasePay                     85404.22
OvertimePay                   1229.4
OtherPay                     3880.56
Benefits                         NaN
TotalPay                    90514.18
TotalPayBenefits            90514.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11640, dtype: object)
(11641, Id                                              11642
EmployeeName                            GEORGE PELAYO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                    3611.3
OtherPay                                      7071.45
Benefits                                          NaN
TotalPay                                     90502.75
TotalPayBenefits                             90502.75
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11641, dtype: object)
(11642, Id                             11643
EmployeeName            MARVIN STOWE
JobTitle            TRANSIT OPERATOR
BasePay                     65919.32
OvertimePay                 22093.42
OtherPay                     2485.91
Benefits                         NaN
TotalPay                    90498.65
TotalPayBenefits            90498.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11642, dtype: object)
(11643, Id                                11644
EmployeeName                JAMES YAKAS
JobTitle            STATIONARY ENGINEER
BasePay                        72410.98
OvertimePay                     6495.35
OtherPay                       11589.49
Benefits                            NaN
TotalPay                       90495.82
TotalPayBenefits               90495.82
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11643, dtype: object)
(11644, Id                                                             11645
EmployeeName                                              MARK CAHEE
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     89634.82
OvertimePay                                                   176.25
OtherPay                                                       680.0
Benefits                                                         NaN
TotalPay                                                    90491.07
TotalPayBenefits                                            90491.07
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11644, dtype: object)
(11645, Id                                       11646
EmployeeName        VICTORIA ROBINSON-JACQUETT
JobTitle                      TRANSIT OPERATOR
BasePay                               59984.34
OvertimePay                           26669.61
OtherPay                               3836.37
Benefits                                   NaN
TotalPay                              90490.32
TotalPayBenefits                      90490.32
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11645, dtype: object)
(11646, Id                              11647
EmployeeName               IRAJ MAHVI
JobTitle            POLICE OFFICER II
BasePay                      87884.12
OvertimePay                       0.0
OtherPay                      2597.04
Benefits                          NaN
TotalPay                     90481.16
TotalPayBenefits             90481.16
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11646, dtype: object)
(11647, Id                           11648
EmployeeName        ALLEN ACKERMAN
JobTitle                 LOCKSMITH
BasePay                   76587.06
OvertimePay               12670.13
OtherPay                    1222.6
Benefits                       NaN
TotalPay                  90479.79
TotalPayBenefits          90479.79
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11647, dtype: object)
(11648, Id                                                    11649
EmployeeName                                   ULYSSES LEVY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77844.48
OvertimePay                                         2511.41
OtherPay                                           10123.42
Benefits                                                NaN
TotalPay                                           90479.31
TotalPayBenefits                                   90479.31
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11648, dtype: object)
(11649, Id                           11650
EmployeeName         JOHN DAVIDSON
JobTitle            DEPUTY SHERIFF
BasePay                   75218.44
OvertimePay               10248.79
OtherPay                   5005.04
Benefits                       NaN
TotalPay                  90472.27
TotalPayBenefits          90472.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11649, dtype: object)
(11650, Id                                                    11651
EmployeeName                              LONARICE WILLIAMS
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            74478.35
OvertimePay                                        12125.29
OtherPay                                            3853.91
Benefits                                                NaN
TotalPay                                           90457.55
TotalPayBenefits                                   90457.55
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11650, dtype: object)
(11651, Id                                            11652
EmployeeName                         CAROLYN HINTON
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    72954.66
OvertimePay                                12777.94
OtherPay                                    4724.86
Benefits                                        NaN
TotalPay                                   90457.46
TotalPayBenefits                           90457.46
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11651, dtype: object)
(11652, Id                                              11653
EmployeeName                             BRYAN MADDOX
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       76750.0
OvertimePay                                   9598.81
OtherPay                                      4106.41
Benefits                                          NaN
TotalPay                                     90455.22
TotalPayBenefits                             90455.22
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11652, dtype: object)
(11653, Id                                          11654
EmployeeName                    LORRAINE BOCKMIER
JobTitle            AIRPORT OPERATIONS SUPERVISOR
BasePay                                  90449.98
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90449.98
TotalPayBenefits                         90449.98
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11653, dtype: object)
(11654, Id                                11655
EmployeeName               ROMMEL HUECK
JobTitle            STATIONARY ENGINEER
BasePay                        72411.01
OvertimePay                     8581.47
OtherPay                        9457.44
Benefits                            NaN
TotalPay                       90449.92
TotalPayBenefits               90449.92
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11654, dtype: object)
(11655, Id                                       11656
EmployeeName                     SHERMA BROOKS
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                            5362.35
OtherPay                               1182.99
Benefits                                   NaN
TotalPay                              90447.92
TotalPayBenefits                      90447.92
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11655, dtype: object)
(11656, Id                                              11657
EmployeeName                            JOHN OCONNELL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80639.64
OvertimePay                                   3459.52
OtherPay                                       6345.4
Benefits                                          NaN
TotalPay                                     90444.56
TotalPayBenefits                             90444.56
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11656, dtype: object)
(11657, Id                                           11658
EmployeeName                            JOSE MUNOZ
JobTitle            SENIOR HUMAN RESOURCES ANALYST
BasePay                                   90435.38
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  90435.38
TotalPayBenefits                          90435.38
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11657, dtype: object)
(11658, Id                                       11659
EmployeeName                        MARY MEANS
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83717.82
OvertimePay                             2329.3
OtherPay                               4380.31
Benefits                                   NaN
TotalPay                              90427.43
TotalPayBenefits                      90427.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11658, dtype: object)
(11659, Id                                11660
EmployeeName               WILLIAM HUNT
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         71905.8
OvertimePay                    16989.92
OtherPay                         1530.3
Benefits                            NaN
TotalPay                       90426.02
TotalPayBenefits               90426.02
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11659, dtype: object)
(11660, Id                            11661
EmployeeName        DANIEL ESPINOZA
JobTitle             DEPUTY SHERIFF
BasePay                    80010.57
OvertimePay                 3311.35
OtherPay                    7101.51
Benefits                        NaN
TotalPay                   90423.43
TotalPayBenefits           90423.43
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11660, dtype: object)
(11661, Id                                                 11662
EmployeeName                              TARANEH MOAYED
JobTitle            COORDINATOR, HUMAN RIGHTS COMMISSION
BasePay                                         89522.91
OvertimePay                                          0.0
OtherPay                                          897.24
Benefits                                             NaN
TotalPay                                        90420.15
TotalPayBenefits                                90420.15
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 11661, dtype: object)
(11662, Id                                11663
EmployeeName             DAVIDCRES ALDA
JobTitle            STATIONARY ENGINEER
BasePay                         72484.2
OvertimePay                     5148.52
OtherPay                       12787.13
Benefits                            NaN
TotalPay                       90419.85
TotalPayBenefits               90419.85
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11662, dtype: object)
(11663, Id                             11664
EmployeeName         SHANNON ROBERTS
JobTitle            REGISTERED NURSE
BasePay                     79079.47
OvertimePay                  2208.46
OtherPay                     9127.49
Benefits                         NaN
TotalPay                    90415.42
TotalPayBenefits            90415.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11663, dtype: object)
(11664, Id                                                       11665
EmployeeName                                       KABINE MARA
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79685.78
OvertimePay                                             8173.9
OtherPay                                               2550.65
Benefits                                                   NaN
TotalPay                                              90410.33
TotalPayBenefits                                      90410.33
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11664, dtype: object)
(11665, Id                          11666
EmployeeName         JUNIOR GARON
JobTitle                CARPENTER
BasePay                  77837.55
OvertimePay              10491.67
OtherPay                  2079.75
Benefits                      NaN
TotalPay                 90408.97
TotalPayBenefits         90408.97
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11665, dtype: object)
(11666, Id                          11667
EmployeeName        RICHARD SIMON
JobTitle                MANAGER I
BasePay                  89808.11
OvertimePay                   0.0
OtherPay                    597.8
Benefits                      NaN
TotalPay                 90405.91
TotalPayBenefits         90405.91
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11666, dtype: object)
(11667, Id                                              11668
EmployeeName                                EDDIE LAM
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                      73111.56
OvertimePay                                   5546.38
OtherPay                                     11747.86
Benefits                                          NaN
TotalPay                                      90405.8
TotalPayBenefits                              90405.8
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11667, dtype: object)
(11668, Id                             11669
EmployeeName             MARK HALLAM
JobTitle            TRANSIT OPERATOR
BasePay                     66236.67
OvertimePay                 22565.13
OtherPay                      1603.5
Benefits                         NaN
TotalPay                     90405.3
TotalPayBenefits             90405.3
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11668, dtype: object)
(11669, Id                               11670
EmployeeName                 ALISON LU
JobTitle            ASSISTANT ENGINEER
BasePay                        89807.0
OvertimePay                        0.0
OtherPay                         590.0
Benefits                           NaN
TotalPay                       90397.0
TotalPayBenefits               90397.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11669, dtype: object)
(11670, Id                                            11671
EmployeeName                           DAVID GELLER
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    90396.82
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   90396.82
TotalPayBenefits                           90396.82
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11670, dtype: object)
(11671, Id                          11672
EmployeeName           HENRY DENG
JobTitle              ELECTRICIAN
BasePay                   87825.0
OvertimePay                 32.93
OtherPay                   2531.4
Benefits                      NaN
TotalPay                 90389.33
TotalPayBenefits         90389.33
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11671, dtype: object)
(11672, Id                             11673
EmployeeName         ALONZO WILLIAMS
JobTitle            TRANSIT OPERATOR
BasePay                     65978.09
OvertimePay                 23027.29
OtherPay                     1381.22
Benefits                         NaN
TotalPay                     90386.6
TotalPayBenefits             90386.6
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11672, dtype: object)
(11673, Id                           11674
EmployeeName        MATHEW FAHRNER
JobTitle               FIREFIGHTER
BasePay                    78306.4
OvertimePay                5661.63
OtherPay                   6418.25
Benefits                       NaN
TotalPay                  90386.28
TotalPayBenefits          90386.28
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11673, dtype: object)
(11674, Id                                         11675
EmployeeName                        JENNIFER LEE
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 90382.52
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                90382.52
TotalPayBenefits                        90382.52
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11674, dtype: object)
(11675, Id                                           11676
EmployeeName                         CRAIG MURDOCK
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                    90380.2
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   90380.2
TotalPayBenefits                           90380.2
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11675, dtype: object)
(11676, Id                             11677
EmployeeName          MUWAFAQ SHEIKH
JobTitle            TRANSIT OPERATOR
BasePay                     65544.73
OvertimePay                 22794.12
OtherPay                     2034.03
Benefits                         NaN
TotalPay                    90372.88
TotalPayBenefits            90372.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11676, dtype: object)
(11677, Id                                      11678
EmployeeName                    ABDUL HUSSEIN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               60697.6
OvertimePay                          17275.41
OtherPay                             12397.84
Benefits                                  NaN
TotalPay                             90370.85
TotalPayBenefits                     90370.85
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11677, dtype: object)
(11678, Id                                          11679
EmployeeName                    IRIS MARTIN LOPEZ
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90366.54
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90366.54
TotalPayBenefits                         90366.54
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11678, dtype: object)
(11679, Id                                          11680
EmployeeName                      SHAMICA JACKSON
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90360.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90360.03
TotalPayBenefits                         90360.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11679, dtype: object)
(11680, Id                                    11681
EmployeeName                  PAMELA KNIGHT
JobTitle            IS ENGINEER - ASSISTANT
BasePay                             90359.7
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            90359.7
TotalPayBenefits                    90359.7
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11680, dtype: object)
(11681, Id                                                     11682
EmployeeName                                   ILEANA SAMANC
JobTitle            SENIOR EMPLOYEE RELATIONS REPRESENTATIVE
BasePay                                             90355.13
OvertimePay                                              0.0
OtherPay                                                 0.0
Benefits                                                 NaN
TotalPay                                            90355.13
TotalPayBenefits                                    90355.13
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11681, dtype: object)
(11682, Id                               11683
EmployeeName              HINABEN DAVE
JobTitle            UTILITY SPECIALIST
BasePay                       88223.95
OvertimePay                        0.0
OtherPay                        2130.0
Benefits                           NaN
TotalPay                      90353.95
TotalPayBenefits              90353.95
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11682, dtype: object)
(11683, Id                             11684
EmployeeName             JANSON MOND
JobTitle            TRANSIT OPERATOR
BasePay                     66761.52
OvertimePay                 19773.95
OtherPay                     3809.79
Benefits                         NaN
TotalPay                    90345.26
TotalPayBenefits            90345.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11683, dtype: object)
(11684, Id                          11685
EmployeeName            ALICE LEE
JobTitle                MANAGER I
BasePay                   90335.4
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                  90335.4
TotalPayBenefits          90335.4
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11684, dtype: object)
(11685, Id                           11686
EmployeeName            TAMRA KEEN
JobTitle            COURT REPORTER
BasePay                    82123.0
OvertimePay                    0.0
OtherPay                    8212.3
Benefits                       NaN
TotalPay                   90335.3
TotalPayBenefits           90335.3
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11685, dtype: object)
(11686, Id                              11687
EmployeeName         TERESITA DASALLA
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  25086.07
OtherPay                      5042.38
Benefits                          NaN
TotalPay                     90335.05
TotalPayBenefits             90335.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11686, dtype: object)
(11687, Id                          11688
EmployeeName        ROBERT DUGGAN
JobTitle              FIREFIGHTER
BasePay                  76902.38
OvertimePay               7048.09
OtherPay                  6383.01
Benefits                      NaN
TotalPay                 90333.48
TotalPayBenefits         90333.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11687, dtype: object)
(11688, Id                            11689
EmployeeName        KENNETH NICHOLS
JobTitle             DEPUTY SHERIFF
BasePay                    81976.54
OvertimePay                 3711.82
OtherPay                    4634.28
Benefits                        NaN
TotalPay                   90322.64
TotalPayBenefits           90322.64
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11688, dtype: object)
(11689, Id                             11690
EmployeeName            ANTHONY CHEN
JobTitle            TRANSIT OPERATOR
BasePay                     65827.54
OvertimePay                 20849.09
OtherPay                     3644.22
Benefits                         NaN
TotalPay                    90320.85
TotalPayBenefits            90320.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11689, dtype: object)
(11690, Id                                11691
EmployeeName        NENITA DELOS SANTOS
JobTitle               REGISTERED NURSE
BasePay                        81194.86
OvertimePay                     4966.19
OtherPay                         4158.0
Benefits                            NaN
TotalPay                       90319.05
TotalPayBenefits               90319.05
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11690, dtype: object)
(11691, Id                                11692
EmployeeName            RICHARD SHUMARD
JobTitle            STATIONARY ENGINEER
BasePay                         73300.4
OvertimePay                     4107.04
OtherPay                       12910.42
Benefits                            NaN
TotalPay                       90317.86
TotalPayBenefits               90317.86
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11691, dtype: object)
(11692, Id                           11693
EmployeeName          MICHAEL CRUZ
JobTitle            DEPUTY SHERIFF
BasePay                   84510.37
OvertimePay                3755.96
OtherPay                   2046.91
Benefits                       NaN
TotalPay                  90313.24
TotalPayBenefits          90313.24
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11692, dtype: object)
(11693, Id                             11694
EmployeeName                   YI WU
JobTitle            TRANSIT OPERATOR
BasePay                     68299.24
OvertimePay                 19011.14
OtherPay                     3002.43
Benefits                         NaN
TotalPay                    90312.81
TotalPayBenefits            90312.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11693, dtype: object)
(11694, Id                                   11695
EmployeeName                 RONSON CHEONG
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           77008.33
OvertimePay                       12602.98
OtherPay                            701.47
Benefits                               NaN
TotalPay                          90312.78
TotalPayBenefits                  90312.78
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11694, dtype: object)
(11695, Id                             11696
EmployeeName               CHI QUACH
JobTitle            TRANSIT OPERATOR
BasePay                     65958.29
OvertimePay                 22009.64
OtherPay                     2332.69
Benefits                         NaN
TotalPay                    90300.62
TotalPayBenefits            90300.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11695, dtype: object)
(11696, Id                                                    11697
EmployeeName                                  KAREN OMALLEY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            77614.64
OvertimePay                                         6309.48
OtherPay                                            6368.36
Benefits                                                NaN
TotalPay                                           90292.48
TotalPayBenefits                                   90292.48
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11696, dtype: object)
(11697, Id                             11698
EmployeeName             JOSE BATTON
JobTitle            TRANSIT OPERATOR
BasePay                     65792.98
OvertimePay                 24424.19
OtherPay                       74.62
Benefits                         NaN
TotalPay                    90291.79
TotalPayBenefits            90291.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11697, dtype: object)
(11698, Id                                11699
EmployeeName                MARGIE FONG
JobTitle            STATIONARY ENGINEER
BasePay                        72410.02
OvertimePay                    11775.45
OtherPay                        6103.36
Benefits                            NaN
TotalPay                       90288.83
TotalPayBenefits               90288.83
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11698, dtype: object)
(11699, Id                                             11700
EmployeeName                            ROLAND DITAN
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     89806.02
OvertimePay                                      0.0
OtherPay                                       480.0
Benefits                                         NaN
TotalPay                                    90286.02
TotalPayBenefits                            90286.02
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11699, dtype: object)
(11700, Id                             11701
EmployeeName                 HUI GUO
JobTitle            TRANSIT OPERATOR
BasePay                     65778.54
OvertimePay                 22755.74
OtherPay                     1749.71
Benefits                         NaN
TotalPay                    90283.99
TotalPayBenefits            90283.99
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11700, dtype: object)
(11701, Id                                          11702
EmployeeName                         MARTHA YANEZ
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90283.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90283.03
TotalPayBenefits                         90283.03
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11701, dtype: object)
(11702, Id                                            11703
EmployeeName                      PINKY EVANGELISTA
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    72966.67
OvertimePay                                15041.66
OtherPay                                    2274.34
Benefits                                        NaN
TotalPay                                   90282.67
TotalPayBenefits                           90282.67
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11702, dtype: object)
(11703, Id                          11704
EmployeeName         GARY DONOHOE
JobTitle             TRUCK DRIVER
BasePay                  72356.32
OvertimePay              16482.38
OtherPay                  1433.72
Benefits                      NaN
TotalPay                 90272.42
TotalPayBenefits         90272.42
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11703, dtype: object)
(11704, Id                             11705
EmployeeName            VERGEL RONAS
JobTitle            TRANSIT OPERATOR
BasePay                     64414.41
OvertimePay                 24514.26
OtherPay                     1335.53
Benefits                         NaN
TotalPay                     90264.2
TotalPayBenefits             90264.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11704, dtype: object)
(11705, Id                                            11706
EmployeeName                        LOGAN CLEVENGER
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                    70506.99
OvertimePay                                14314.77
OtherPay                                    5438.35
Benefits                                        NaN
TotalPay                                   90260.11
TotalPayBenefits                           90260.11
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11705, dtype: object)
(11706, Id                              11707
EmployeeName                 HELEN VO
JobTitle            ASSOCIATE AUDITOR
BasePay                      90251.89
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          NaN
TotalPay                     90251.89
TotalPayBenefits             90251.89
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11706, dtype: object)
(11707, Id                             11708
EmployeeName           KEVIN LANGLEY
JobTitle            REGISTERED NURSE
BasePay                     72444.45
OvertimePay                  6083.96
OtherPay                    11720.01
Benefits                         NaN
TotalPay                    90248.42
TotalPayBenefits            90248.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11707, dtype: object)
(11708, Id                                             11709
EmployeeName                           EDGARDO VICTA
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     89806.08
OvertimePay                                      0.0
OtherPay                                       440.0
Benefits                                         NaN
TotalPay                                    90246.08
TotalPayBenefits                            90246.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11708, dtype: object)
(11709, Id                                   11710
EmployeeName                PATRICIA ERWIN
JobTitle            SENIOR HEALTH EDUCATOR
BasePay                           90245.15
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          90245.15
TotalPayBenefits                  90245.15
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11709, dtype: object)
(11710, Id                                             11711
EmployeeName                          MONICA PEREIRA
JobTitle            PLANNER III-ENVIRONMENTAL REVIEW
BasePay                                     90245.03
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    90245.03
TotalPayBenefits                            90245.03
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11710, dtype: object)
(11711, Id                                   11712
EmployeeName               ALYONIK HRUSHOW
JobTitle            SENIOR HEALTH EDUCATOR
BasePay                           90245.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          90245.03
TotalPayBenefits                  90245.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11711, dtype: object)
(11712, Id                                  11713
EmployeeName                HILLARY RONEN
JobTitle            LEGISLATIVE ASSISTANT
BasePay                           90245.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          90245.0
TotalPayBenefits                  90245.0
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11712, dtype: object)
(11713, Id                                  11714
EmployeeName                    KATY TANG
JobTitle            LEGISLATIVE ASSISTANT
BasePay                          90244.98
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90244.98
TotalPayBenefits                 90244.98
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11713, dtype: object)
(11714, Id                                  11715
EmployeeName           SHEILA CHUNG HAGEN
JobTitle            LEGISLATIVE ASSISTANT
BasePay                          90244.97
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90244.97
TotalPayBenefits                 90244.97
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11714, dtype: object)
(11715, Id                                  11716
EmployeeName           CAMELIN BLACKSTONE
JobTitle            LEGISLATIVE ASSISTANT
BasePay                          90244.95
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90244.95
TotalPayBenefits                 90244.95
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11715, dtype: object)
(11716, Id                                  11717
EmployeeName                FRANCES HSIEH
JobTitle            LEGISLATIVE ASSISTANT
BasePay                          90244.93
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90244.93
TotalPayBenefits                 90244.93
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11716, dtype: object)
(11717, Id                                  11718
EmployeeName                  JUDSON TRUE
JobTitle            LEGISLATIVE ASSISTANT
BasePay                          90244.82
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90244.82
TotalPayBenefits                 90244.82
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11717, dtype: object)
(11718, Id                             11719
EmployeeName               KYLE LUNA
JobTitle            TRANSIT OPERATOR
BasePay                      66357.7
OvertimePay                 18776.44
OtherPay                     5105.44
Benefits                         NaN
TotalPay                    90239.58
TotalPayBenefits            90239.58
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11718, dtype: object)
(11719, Id                          11720
EmployeeName         BARBARA GEIB
JobTitle               CURATOR IV
BasePay                  89437.66
OvertimePay                   0.0
OtherPay                    791.0
Benefits                      NaN
TotalPay                 90228.66
TotalPayBenefits         90228.66
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11719, dtype: object)
(11720, Id                                              11721
EmployeeName                           PEDRO CASANOVA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   2103.92
OtherPay                                      8295.01
Benefits                                          NaN
TotalPay                                     90218.94
TotalPayBenefits                             90218.94
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11720, dtype: object)
(11721, Id                             11722
EmployeeName           PIERRE PALAAD
JobTitle            REGISTERED NURSE
BasePay                     81575.36
OvertimePay                  2215.78
OtherPay                     6427.05
Benefits                         NaN
TotalPay                    90218.19
TotalPayBenefits            90218.19
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11721, dtype: object)
(11722, Id                            11723
EmployeeName        VIRGINIA CHEUNG
JobTitle                FIREFIGHTER
BasePay                    80050.87
OvertimePay                   74.42
OtherPay                   10091.68
Benefits                        NaN
TotalPay                   90216.97
TotalPayBenefits           90216.97
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11722, dtype: object)
(11723, Id                                11724
EmployeeName                PAUL ATTARD
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72709.64
OvertimePay                     6927.51
OtherPay                       10578.12
Benefits                            NaN
TotalPay                       90215.27
TotalPayBenefits               90215.27
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11723, dtype: object)
(11724, Id                                11725
EmployeeName              AUBURY RANDLE
JobTitle            TRANSIT CAR CLEANER
BasePay                         49427.0
OvertimePay                    23136.76
OtherPay                       17647.87
Benefits                            NaN
TotalPay                       90211.63
TotalPayBenefits               90211.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11724, dtype: object)
(11725, Id                            11726
EmployeeName        BRYAN THOMASSON
JobTitle               COUNSELOR II
BasePay                    73385.39
OvertimePay                13691.91
OtherPay                     3132.8
Benefits                        NaN
TotalPay                    90210.1
TotalPayBenefits            90210.1
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11725, dtype: object)
(11726, Id                                    11727
EmployeeName            BRIANA MOORE-WIRROM
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89823.16
OvertimePay                             0.0
OtherPay                              384.0
Benefits                                NaN
TotalPay                           90207.16
TotalPayBenefits                   90207.16
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11726, dtype: object)
(11727, Id                             11728
EmployeeName        TOMMY BENFORD JR
JobTitle            TRANSIT OPERATOR
BasePay                     65227.68
OvertimePay                 19427.18
OtherPay                     5547.34
Benefits                         NaN
TotalPay                     90202.2
TotalPayBenefits             90202.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11727, dtype: object)
(11728, Id                                      11729
EmployeeName                    PHOEBE EUSTIS
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              90201.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             90201.87
TotalPayBenefits                     90201.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11728, dtype: object)
(11729, Id                                      11730
EmployeeName                  CHARLES BISESTO
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              90201.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             90201.87
TotalPayBenefits                     90201.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11729, dtype: object)
(11730, Id                                      11731
EmployeeName                   MARC MASSARWEH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              90201.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             90201.87
TotalPayBenefits                     90201.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11730, dtype: object)
(11731, Id                                      11732
EmployeeName               CHRISTOPHER ULRICH
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              90201.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             90201.87
TotalPayBenefits                     90201.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11731, dtype: object)
(11732, Id                                          11733
EmployeeName                        TERESITA TINA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90199.51
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90199.51
TotalPayBenefits                         90199.51
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11732, dtype: object)
(11733, Id                                    11734
EmployeeName                  GEORGE ALUSKA
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89813.08
OvertimePay                             0.0
OtherPay                              384.0
Benefits                                NaN
TotalPay                           90197.08
TotalPayBenefits                   90197.08
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11733, dtype: object)
(11734, Id                           11735
EmployeeName          TERRY OLIVER
JobTitle            DEPUTY SHERIFF
BasePay                   75242.33
OvertimePay               10687.59
OtherPay                   4265.13
Benefits                       NaN
TotalPay                  90195.05
TotalPayBenefits          90195.05
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11734, dtype: object)
(11735, Id                                      11736
EmployeeName                ESTRELLA MACASPAC
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64522.8
OvertimePay                          18709.59
OtherPay                              6959.48
Benefits                                  NaN
TotalPay                             90191.87
TotalPayBenefits                     90191.87
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11735, dtype: object)
(11736, Id                            11737
EmployeeName        JOANNA DHARMANI
JobTitle             DEPUTY SHERIFF
BasePay                    86159.77
OvertimePay                  187.89
OtherPay                    3841.54
Benefits                        NaN
TotalPay                    90189.2
TotalPayBenefits            90189.2
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11736, dtype: object)
(11737, Id                                             11738
EmployeeName                        KRISTINE CASIPIT
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     90187.21
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    90187.21
TotalPayBenefits                            90187.21
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11737, dtype: object)
(11738, Id                             11739
EmployeeName           PAUL LEINWAND
JobTitle            REGISTERED NURSE
BasePay                     72778.31
OvertimePay                  4506.07
OtherPay                     12893.8
Benefits                         NaN
TotalPay                    90178.18
TotalPayBenefits            90178.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11738, dtype: object)
(11739, Id                                         11740
EmployeeName                        LETITIA LUNA
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 83374.83
OvertimePay                                  0.0
OtherPay                                 6803.33
Benefits                                     NaN
TotalPay                                90178.16
TotalPayBenefits                        90178.16
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11739, dtype: object)
(11740, Id                                    11741
EmployeeName                  SANDRA ZUNIGA
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89823.23
OvertimePay                             0.0
OtherPay                             351.62
Benefits                                NaN
TotalPay                           90174.85
TotalPayBenefits                   90174.85
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11740, dtype: object)
(11741, Id                                  11742
EmployeeName               THERESA BONORA
JobTitle            CLINICAL PSYCHOLOGIST
BasePay                          90174.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         90174.53
TotalPayBenefits                 90174.53
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11741, dtype: object)
(11742, Id                                                         11743
EmployeeName                                  DARRELL ANDREWS JR
JobTitle            APPRENTICE STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                                  78812.9
OvertimePay                                              5330.13
OtherPay                                                 6023.13
Benefits                                                     NaN
TotalPay                                                90166.16
TotalPayBenefits                                        90166.16
Year                                                        2011
Notes                                                        NaN
Agency                                             San Francisco
Status                                                       NaN
Name: 11742, dtype: object)
(11743, Id                              11744
EmployeeName            ROSSENI DIZON
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  28880.63
OtherPay                      1076.42
Benefits                          NaN
TotalPay                     90163.65
TotalPayBenefits             90163.65
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11743, dtype: object)
(11744, Id                             11745
EmployeeName              REYMONT LY
JobTitle            TRANSIT OPERATOR
BasePay                     65169.55
OvertimePay                 23453.72
OtherPay                     1536.24
Benefits                         NaN
TotalPay                    90159.51
TotalPayBenefits            90159.51
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11744, dtype: object)
(11745, Id                                   11746
EmployeeName                TIMOTHY COTTER
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           84134.19
OvertimePay                        4436.73
OtherPay                           1580.49
Benefits                               NaN
TotalPay                          90151.41
TotalPayBenefits                  90151.41
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11745, dtype: object)
(11746, Id                          11747
EmployeeName            JOHN LEAL
JobTitle             TRUCK DRIVER
BasePay                  75972.36
OvertimePay               8988.66
OtherPay                  5182.98
Benefits                      NaN
TotalPay                  90144.0
TotalPayBenefits          90144.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11746, dtype: object)
(11747, Id                              11748
EmployeeName        RIGOBERTO GUITRON
JobTitle               DEPUTY SHERIFF
BasePay                      74582.23
OvertimePay                   4934.29
OtherPay                     10617.33
Benefits                          NaN
TotalPay                     90133.85
TotalPayBenefits             90133.85
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11747, dtype: object)
(11748, Id                                11749
EmployeeName        MELISSA ANN MCCLOUD
JobTitle               REGISTERED NURSE
BasePay                        68434.44
OvertimePay                    10858.05
OtherPay                       10838.18
Benefits                            NaN
TotalPay                       90130.67
TotalPayBenefits               90130.67
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11748, dtype: object)
(11749, Id                                                    11750
EmployeeName                               CHANCELLOR MATEO
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            74875.21
OvertimePay                                         6092.75
OtherPay                                            9160.44
Benefits                                                NaN
TotalPay                                            90128.4
TotalPayBenefits                                    90128.4
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11749, dtype: object)
(11750, Id                                                       11751
EmployeeName                                   CRISTINA PALONE
JobTitle            SENIOR COMMUNITY DEVELOPMENT SPECIALIST II
BasePay                                               90128.03
OvertimePay                                                0.0
OtherPay                                                   0.0
Benefits                                                   NaN
TotalPay                                              90128.03
TotalPayBenefits                                      90128.03
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11750, dtype: object)
(11751, Id                             11752
EmployeeName           CEDRIC GEETER
JobTitle            TRANSIT OPERATOR
BasePay                     65844.08
OvertimePay                 20492.73
OtherPay                     3786.71
Benefits                         NaN
TotalPay                    90123.52
TotalPayBenefits            90123.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11751, dtype: object)
(11752, Id                             11753
EmployeeName                 ANDY NG
JobTitle            TRANSIT OPERATOR
BasePay                      65079.5
OvertimePay                 22317.86
OtherPay                     2724.67
Benefits                         NaN
TotalPay                    90122.03
TotalPayBenefits            90122.03
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11752, dtype: object)
(11753, Id                                     11754
EmployeeName                      TAN NGUYEN
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             75122.82
OvertimePay                         14997.06
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            90119.88
TotalPayBenefits                    90119.88
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11753, dtype: object)
(11754, Id                                   11755
EmployeeName                MICHAEL ALDAPA
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           77008.15
OvertimePay                        6001.69
OtherPay                           7109.26
Benefits                               NaN
TotalPay                           90119.1
TotalPayBenefits                   90119.1
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11754, dtype: object)
(11755, Id                             11756
EmployeeName               SANH TRAN
JobTitle            TRANSIT OPERATOR
BasePay                     65248.04
OvertimePay                 20245.53
OtherPay                     4622.79
Benefits                         NaN
TotalPay                    90116.36
TotalPayBenefits            90116.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11755, dtype: object)
(11756, Id                                              11757
EmployeeName                              PETER OSHEA
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.02
OvertimePay                                   4022.16
OtherPay                                      6273.07
Benefits                                          NaN
TotalPay                                     90115.25
TotalPayBenefits                             90115.25
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11756, dtype: object)
(11757, Id                           11758
EmployeeName          RODNEY HENRY
JobTitle            DEPUTY SHERIFF
BasePay                    83480.8
OvertimePay                 883.02
OtherPay                    5750.0
Benefits                       NaN
TotalPay                  90113.82
TotalPayBenefits          90113.82
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11757, dtype: object)
(11758, Id                             11759
EmployeeName              JACKY ZHAO
JobTitle            TRANSIT OPERATOR
BasePay                     65002.93
OvertimePay                  20957.8
OtherPay                     4140.21
Benefits                         NaN
TotalPay                    90100.94
TotalPayBenefits            90100.94
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11758, dtype: object)
(11759, Id                                     11760
EmployeeName        ISRAEL TRIGUEROS-HERNAND
JobTitle                    TRANSIT OPERATOR
BasePay                             67000.05
OvertimePay                         20740.98
OtherPay                             2358.76
Benefits                                 NaN
TotalPay                            90099.79
TotalPayBenefits                    90099.79
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11759, dtype: object)
(11760, Id                             11761
EmployeeName        THOMAS WILLIS JR
JobTitle                 MANAGER III
BasePay                     90097.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    90097.05
TotalPayBenefits            90097.05
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11760, dtype: object)
(11761, Id                                11762
EmployeeName                WALLACE LEE
JobTitle            STATIONARY ENGINEER
BasePay                        72413.49
OvertimePay                     1549.17
OtherPay                       16130.28
Benefits                            NaN
TotalPay                       90092.94
TotalPayBenefits               90092.94
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11761, dtype: object)
(11762, Id                                          11763
EmployeeName                         JOHN FORDHAM
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  90074.17
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90074.17
TotalPayBenefits                         90074.17
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11762, dtype: object)
(11763, Id                                                    11764
EmployeeName                                 FRANCES ROHWER
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77568.2
OvertimePay                                         8307.88
OtherPay                                            4196.39
Benefits                                                NaN
TotalPay                                           90072.47
TotalPayBenefits                                   90072.47
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11763, dtype: object)
(11764, Id                              11765
EmployeeName        LAFERNITA JENKINS
JobTitle             TRANSIT OPERATOR
BasePay                      65322.15
OvertimePay                  23364.84
OtherPay                      1382.61
Benefits                          NaN
TotalPay                      90069.6
TotalPayBenefits              90069.6
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11764, dtype: object)
(11765, Id                                       11766
EmployeeName                ELLEN RIDGE-COOPER
JobTitle            DIAGNOSTIC IMAGING TECH IV
BasePay                               89363.68
OvertimePay                                0.0
OtherPay                                701.76
Benefits                                   NaN
TotalPay                              90065.44
TotalPayBenefits                      90065.44
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11765, dtype: object)
(11766, Id                               11767
EmployeeName                JOSEPH DER
JobTitle            ASSOCIATE ENGINEER
BasePay                       89220.42
OvertimePay                        0.0
OtherPay                        837.87
Benefits                           NaN
TotalPay                      90058.29
TotalPayBenefits              90058.29
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11766, dtype: object)
(11767, Id                           11768
EmployeeName            HENRY WONG
JobTitle            DEPUTY SHERIFF
BasePay                   81522.54
OvertimePay                 3413.7
OtherPay                   5121.54
Benefits                       NaN
TotalPay                  90057.78
TotalPayBenefits          90057.78
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11767, dtype: object)
(11768, Id                                                       11769
EmployeeName                                       JON CAMACHO
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               79666.52
OvertimePay                                             5826.0
OtherPay                                               4559.48
Benefits                                                   NaN
TotalPay                                               90052.0
TotalPayBenefits                                       90052.0
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 11768, dtype: object)
(11769, Id                                11770
EmployeeName        ANGELI FATIM TAGARO
JobTitle             ASSISTANT ENGINEER
BasePay                        87776.54
OvertimePay                         0.0
OtherPay                        2274.41
Benefits                            NaN
TotalPay                       90050.95
TotalPayBenefits               90050.95
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11769, dtype: object)
(11770, Id                             11771
EmployeeName        JOHNNIE WILLIAMS
JobTitle            REGISTERED NURSE
BasePay                     80275.87
OvertimePay                  1913.94
OtherPay                     7856.15
Benefits                         NaN
TotalPay                    90045.96
TotalPayBenefits            90045.96
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11770, dtype: object)
(11771, Id                                          11772
EmployeeName                     CHRISTINA GOETTE
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                  90043.74
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 90043.74
TotalPayBenefits                         90043.74
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11771, dtype: object)
(11772, Id                          11773
EmployeeName            MARK HALL
JobTitle            LIBRARIAN III
BasePay                  88535.02
OvertimePay                   0.0
OtherPay                  1505.81
Benefits                      NaN
TotalPay                 90040.83
TotalPayBenefits         90040.83
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11772, dtype: object)
(11773, Id                           11774
EmployeeName        MICHAEL SORINI
JobTitle                 CARPENTER
BasePay                   78462.61
OvertimePay                 937.78
OtherPay                  10637.02
Benefits                       NaN
TotalPay                  90037.41
TotalPayBenefits          90037.41
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11773, dtype: object)
(11774, Id                                             11775
EmployeeName                           PATRICK LEUNG
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     90021.22
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    90021.22
TotalPayBenefits                            90021.22
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11774, dtype: object)
(11775, Id                            11776
EmployeeName        HUGH LOUTENSOCK
JobTitle             DEPUTY SHERIFF
BasePay                    79465.75
OvertimePay                  9873.2
OtherPay                     663.71
Benefits                        NaN
TotalPay                   90002.66
TotalPayBenefits           90002.66
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11775, dtype: object)
(11776, Id                                             11777
EmployeeName                           DEBERA TAYLOR
JobTitle            STATION AGENT, MUNICIPAL RAILWAY
BasePay                                     73236.52
OvertimePay                                 12627.68
OtherPay                                     4135.85
Benefits                                         NaN
TotalPay                                    90000.05
TotalPayBenefits                            90000.05
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11776, dtype: object)
(11777, Id                                          11778
EmployeeName                        JAMES SONCUYA
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  89988.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89988.01
TotalPayBenefits                         89988.01
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11777, dtype: object)
(11778, Id                             11779
EmployeeName             JAMES TUPAS
JobTitle            TRANSIT OPERATOR
BasePay                     65926.71
OvertimePay                 19644.43
OtherPay                     4407.52
Benefits                         NaN
TotalPay                    89978.66
TotalPayBenefits            89978.66
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11778, dtype: object)
(11779, Id                                   11780
EmployeeName               CYNTHIA ULLMANN
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           89965.13
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          89965.13
TotalPayBenefits                  89965.13
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11779, dtype: object)
(11780, Id                                   11781
EmployeeName                 NANCY BALLARD
JobTitle            OCCUPATIONAL THERAPIST
BasePay                            89965.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                           89965.0
TotalPayBenefits                   89965.0
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11780, dtype: object)
(11781, Id                                11782
EmployeeName          SALVADOR MARTINEZ
JobTitle            STATIONARY ENGINEER
BasePay                        82040.25
OvertimePay                      1686.5
OtherPay                        6235.59
Benefits                            NaN
TotalPay                       89962.34
TotalPayBenefits               89962.34
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11781, dtype: object)
(11782, Id                                                             11783
EmployeeName                                              PAUL RENZI
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     78557.42
OvertimePay                                                  7832.14
OtherPay                                                     3570.23
Benefits                                                         NaN
TotalPay                                                    89959.79
TotalPayBenefits                                            89959.79
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11782, dtype: object)
(11783, Id                                11784
EmployeeName                 CHUCK MOCK
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72782.71
OvertimePay                     5007.92
OtherPay                       12161.51
Benefits                            NaN
TotalPay                       89952.14
TotalPayBenefits               89952.14
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11783, dtype: object)
(11784, Id                           11785
EmployeeName          JAMES IRVING
JobTitle            DEPUTY SHERIFF
BasePay                   85623.07
OvertimePay                3449.39
OtherPay                    877.41
Benefits                       NaN
TotalPay                  89949.87
TotalPayBenefits          89949.87
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11784, dtype: object)
(11785, Id                                              11786
EmployeeName                         ROSS SHIMABUKURO
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      89345.41
OvertimePay                                    590.79
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                      89936.2
TotalPayBenefits                              89936.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11785, dtype: object)
(11786, Id                             11787
EmployeeName        MARY JANE HUDSON
JobTitle               LIBRARIAN III
BasePay                     88535.02
OvertimePay                      0.0
OtherPay                     1385.14
Benefits                         NaN
TotalPay                    89920.16
TotalPayBenefits            89920.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11786, dtype: object)
(11787, Id                                                11788
EmployeeName                             CORAZON ESTIVA
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         60193.0
OvertimePay                                    28849.88
OtherPay                                          874.0
Benefits                                            NaN
TotalPay                                       89916.88
TotalPayBenefits                               89916.88
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11787, dtype: object)
(11788, Id                               11789
EmployeeName                  MAY CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.03
OvertimePay                        0.0
OtherPay                         105.8
Benefits                           NaN
TotalPay                      89911.83
TotalPayBenefits              89911.83
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11788, dtype: object)
(11789, Id                               11790
EmployeeName              SCOTT BROADY
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.04
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      89896.04
TotalPayBenefits              89896.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11789, dtype: object)
(11790, Id                               11791
EmployeeName              CELINE LEUNG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.02
OvertimePay                        0.0
OtherPay                          90.0
Benefits                           NaN
TotalPay                      89896.02
TotalPayBenefits              89896.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11790, dtype: object)
(11791, Id                           11792
EmployeeName          MARY SCANLAN
JobTitle            COURT REPORTER
BasePay                    81722.4
OvertimePay                    0.0
OtherPay                   8172.24
Benefits                       NaN
TotalPay                  89894.64
TotalPayBenefits          89894.64
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11791, dtype: object)
(11792, Id                             11793
EmployeeName           ORLANDO GOMEZ
JobTitle            TRANSIT OPERATOR
BasePay                     66037.42
OvertimePay                 21290.71
OtherPay                     2565.65
Benefits                         NaN
TotalPay                    89893.78
TotalPayBenefits            89893.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11792, dtype: object)
(11793, Id                             11794
EmployeeName            GARRY COWARD
JobTitle            TRANSIT OPERATOR
BasePay                     64897.36
OvertimePay                 23913.83
OtherPay                     1082.19
Benefits                         NaN
TotalPay                    89893.38
TotalPayBenefits            89893.38
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11793, dtype: object)
(11794, Id                                     11795
EmployeeName                    YVONNE MOORE
JobTitle            DEPUTY PROBATION OFFICER
BasePay                              81958.0
OvertimePay                           7922.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             89880.0
TotalPayBenefits                     89880.0
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11794, dtype: object)
(11795, Id                                   11796
EmployeeName                    CAROL KROP
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           89878.18
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          89878.18
TotalPayBenefits                  89878.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11795, dtype: object)
(11796, Id                                   11797
EmployeeName                 MARK LA POINT
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           76049.29
OvertimePay                       10107.82
OtherPay                           3720.92
Benefits                               NaN
TotalPay                          89878.03
TotalPayBenefits                  89878.03
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11796, dtype: object)
(11797, Id                              11798
EmployeeName             PILAR BUSTOS
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  24603.92
OtherPay                      5067.06
Benefits                          NaN
TotalPay                     89877.58
TotalPayBenefits             89877.58
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11797, dtype: object)
(11798, Id                           11799
EmployeeName        LORETTA DOWELL
JobTitle             LIBRARIAN III
BasePay                   88203.73
OvertimePay                    0.0
OtherPay                    1669.2
Benefits                       NaN
TotalPay                  89872.93
TotalPayBenefits          89872.93
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11798, dtype: object)
(11799, Id                                              11800
EmployeeName                              KENNETH GEE
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79492.16
OvertimePay                                   4004.15
OtherPay                                      6375.54
Benefits                                          NaN
TotalPay                                     89871.85
TotalPayBenefits                             89871.85
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11799, dtype: object)
(11800, Id                                 11801
EmployeeName             MATTHEW MATTIAS
JobTitle            SEWER SERVICE WORKER
BasePay                         82415.02
OvertimePay                       7194.6
OtherPay                           260.0
Benefits                             NaN
TotalPay                        89869.62
TotalPayBenefits                89869.62
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11800, dtype: object)
(11801, Id                                                11802
EmployeeName                              JANINE TIRADO
JobTitle            SUPERVISING ADULT PROBATION OFFICER
BasePay                                        89859.44
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       89859.44
TotalPayBenefits                               89859.44
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11801, dtype: object)
(11802, Id                          11803
EmployeeName             LEE MOST
JobTitle                LOCKSMITH
BasePay                  77212.21
OvertimePay              10491.77
OtherPay                   2150.0
Benefits                      NaN
TotalPay                 89853.98
TotalPayBenefits         89853.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11802, dtype: object)
(11803, Id                                   11804
EmployeeName                   LAURA CROSS
JobTitle            OCCUPATIONAL THERAPIST
BasePay                           89852.57
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          89852.57
TotalPayBenefits                  89852.57
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11803, dtype: object)
(11804, Id                                              11805
EmployeeName                              DONALD REED
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80317.35
OvertimePay                                   2103.92
OtherPay                                      7430.74
Benefits                                          NaN
TotalPay                                     89852.01
TotalPayBenefits                             89852.01
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11804, dtype: object)
(11805, Id                                           11806
EmployeeName                        RODGER TIDBALL
JobTitle            POWER GENERATION TECHNICIAN II
BasePay                                   79342.35
OvertimePay                                1415.36
OtherPay                                   9085.02
Benefits                                       NaN
TotalPay                                  89842.73
TotalPayBenefits                          89842.73
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11805, dtype: object)
(11806, Id                             11807
EmployeeName        TIMOTHY WILLIAMS
JobTitle               LIBRARIAN III
BasePay                      88535.0
OvertimePay                      0.0
OtherPay                     1306.32
Benefits                         NaN
TotalPay                    89841.32
TotalPayBenefits            89841.32
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11806, dtype: object)
(11807, Id                                              11808
EmployeeName                            BYRON SANTIZO
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       72767.0
OvertimePay                                  16292.99
OtherPay                                        780.0
Benefits                                          NaN
TotalPay                                     89839.99
TotalPayBenefits                             89839.99
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11807, dtype: object)
(11808, Id                                        11809
EmployeeName                     YELENA ZALKINA
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                85560.32
OvertimePay                                 0.0
OtherPay                                4277.83
Benefits                                    NaN
TotalPay                               89838.15
TotalPayBenefits                       89838.15
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 11808, dtype: object)
(11809, Id                             11810
EmployeeName          LOLITA SALINAS
JobTitle            REGISTERED NURSE
BasePay                      87206.2
OvertimePay                      0.0
OtherPay                     2623.61
Benefits                         NaN
TotalPay                    89829.81
TotalPayBenefits            89829.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11809, dtype: object)
(11810, Id                                               11811
EmployeeName                              FRANCIS CHIN
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       74479.49
OvertimePay                                   14912.72
OtherPay                                         435.0
Benefits                                           NaN
TotalPay                                      89827.21
TotalPayBenefits                              89827.21
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11810, dtype: object)
(11811, Id                                       11812
EmployeeName            LARISA ROSTRAN-NAVARRO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                                83902.6
OvertimePay                                0.0
OtherPay                               5922.87
Benefits                                   NaN
TotalPay                              89825.47
TotalPayBenefits                      89825.47
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11811, dtype: object)
(11812, Id                                         11813
EmployeeName                           WENDY LOW
JobTitle            IS BUSINESS ANALYST - SENIOR
BasePay                                 85446.37
OvertimePay                               4377.7
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                89824.07
TotalPayBenefits                        89824.07
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11812, dtype: object)
(11813, Id                                    11814
EmployeeName                JENNIFER COFFEY
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89823.21
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           89823.21
TotalPayBenefits                   89823.21
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11813, dtype: object)
(11814, Id                                              11815
EmployeeName                              MOLLY STUMP
JobTitle            HEAD ATTORNEY, CIVIL AND CRIMINAL
BasePay                                      57679.71
OvertimePay                                       0.0
OtherPay                                      32143.5
Benefits                                          NaN
TotalPay                                     89823.21
TotalPayBenefits                             89823.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11814, dtype: object)
(11815, Id                                    11816
EmployeeName                YLONDA CALLOWAY
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                             89823.2
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            89823.2
TotalPayBenefits                    89823.2
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11815, dtype: object)
(11816, Id                                    11817
EmployeeName                  LARRY CHATMON
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89823.18
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           89823.18
TotalPayBenefits                   89823.18
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11816, dtype: object)
(11817, Id                                       11818
EmployeeName                   ALBERT DEGUZMAN
JobTitle            MUSEUM SECURITY SUPERVISOR
BasePay                               60207.64
OvertimePay                           24357.49
OtherPay                               5257.67
Benefits                                   NaN
TotalPay                               89822.8
TotalPayBenefits                       89822.8
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11817, dtype: object)
(11818, Id                                              11819
EmployeeName                             STEVEN DWYER
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      82552.76
OvertimePay                                   5925.61
OtherPay                                       1339.3
Benefits                                          NaN
TotalPay                                     89817.67
TotalPayBenefits                             89817.67
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11818, dtype: object)
(11819, Id                             11820
EmployeeName           JASIM ALJADER
JobTitle            TRANSIT OPERATOR
BasePay                     65130.27
OvertimePay                 23547.24
OtherPay                     1137.83
Benefits                         NaN
TotalPay                    89815.34
TotalPayBenefits            89815.34
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11819, dtype: object)
(11820, Id                                    11821
EmployeeName              CHERRIE DOMINGUEZ
JobTitle            PROGRAM SUPPORT ANALYST
BasePay                            89813.51
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           89813.51
TotalPayBenefits                   89813.51
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11820, dtype: object)
(11821, Id                                         11822
EmployeeName                         MALIA COHEN
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 89810.64
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                89810.64
TotalPayBenefits                        89810.64
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11821, dtype: object)
(11822, Id                                         11823
EmployeeName                        MARK FARRELL
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 89810.64
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                89810.64
TotalPayBenefits                        89810.64
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11822, dtype: object)
(11823, Id                                         11824
EmployeeName                            JANE KIM
JobTitle            MEMBER, BOARD OF SUPERVISORS
BasePay                                 89810.64
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                     NaN
TotalPay                                89810.64
TotalPayBenefits                        89810.64
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11823, dtype: object)
(11824, Id                                       11825
EmployeeName                RICARDO MONTENEGRO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.59
OvertimePay                                0.0
OtherPay                                5907.9
Benefits                                   NaN
TotalPay                              89810.49
TotalPayBenefits                      89810.49
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11824, dtype: object)
(11825, Id                                11826
EmployeeName              COLIN LETTICE
JobTitle            SUPERVISING CHEMIST
BasePay                        89808.15
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       89808.15
TotalPayBenefits               89808.15
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11825, dtype: object)
(11826, Id                                          11827
EmployeeName                       ANDREW MURRELL
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  89807.87
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89807.87
TotalPayBenefits                         89807.87
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11826, dtype: object)
(11827, Id                                       11828
EmployeeName                   SAMUEL HARRISON
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.35
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              89806.35
TotalPayBenefits                      89806.35
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11827, dtype: object)
(11828, Id                               11829
EmployeeName              DAMIAN DAVIS
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.24
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.24
TotalPayBenefits              89806.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11828, dtype: object)
(11829, Id                               11830
EmployeeName         NAPOLEON CALIMLIM
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.11
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.11
TotalPayBenefits              89806.11
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11829, dtype: object)
(11830, Id                               11831
EmployeeName            HABIB RAJABALI
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.1
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.1
TotalPayBenefits               89806.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11830, dtype: object)
(11831, Id                               11832
EmployeeName              LUIS TRELLES
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.1
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.1
TotalPayBenefits               89806.1
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11831, dtype: object)
(11832, Id                               11833
EmployeeName                 KEVIN DAY
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.09
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.09
TotalPayBenefits              89806.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11832, dtype: object)
(11833, Id                               11834
EmployeeName           TERESA CLAVERIA
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.09
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.09
TotalPayBenefits              89806.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11833, dtype: object)
(11834, Id                                       11835
EmployeeName                         JOEL UCHI
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.09
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              89806.09
TotalPayBenefits                      89806.09
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11834, dtype: object)
(11835, Id                                11836
EmployeeName        DIMITRIOS STAVRAKIS
JobTitle             ASSISTANT ENGINEER
BasePay                        89806.08
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                       89806.08
TotalPayBenefits               89806.08
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11835, dtype: object)
(11836, Id                               11837
EmployeeName               SHIRLEY CHO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.06
TotalPayBenefits              89806.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11836, dtype: object)
(11837, Id                               11838
EmployeeName                JEAN BOTRO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.06
TotalPayBenefits              89806.06
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11837, dtype: object)
(11838, Id                               11839
EmployeeName              ELEANOR TANG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.05
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.05
TotalPayBenefits              89806.05
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11838, dtype: object)
(11839, Id                                   11840
EmployeeName        ABDELMONIEM ABDELSALAM
JobTitle                ASSISTANT ENGINEER
BasePay                           89806.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          89806.05
TotalPayBenefits                  89806.05
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11839, dtype: object)
(11840, Id                                                11841
EmployeeName                            WILLIAM BULKLEY
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE I
BasePay                                        89806.05
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       89806.05
TotalPayBenefits                               89806.05
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11840, dtype: object)
(11841, Id                               11842
EmployeeName                JOSE CALLE
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.04
TotalPayBenefits              89806.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11841, dtype: object)
(11842, Id                               11843
EmployeeName                THET MAUNG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.04
TotalPayBenefits              89806.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11842, dtype: object)
(11843, Id                               11844
EmployeeName               RAMAN SINGH
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.04
TotalPayBenefits              89806.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11843, dtype: object)
(11844, Id                                       11845
EmployeeName                     DENNIS CONRAD
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.04
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              89806.04
TotalPayBenefits                      89806.04
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11844, dtype: object)
(11845, Id                               11846
EmployeeName           EDISON CAYABYAB
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.04
TotalPayBenefits              89806.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11845, dtype: object)
(11846, Id                               11847
EmployeeName            CHARLES OZUMBA
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.03
TotalPayBenefits              89806.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11846, dtype: object)
(11847, Id                               11848
EmployeeName                WILLIAM NG
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.03
TotalPayBenefits              89806.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11847, dtype: object)
(11848, Id                               11849
EmployeeName          ERMIE BARRIENTOS
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.02
TotalPayBenefits              89806.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11848, dtype: object)
(11849, Id                               11850
EmployeeName              ERIC OMOKARO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.02
TotalPayBenefits              89806.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11849, dtype: object)
(11850, Id                               11851
EmployeeName             KAUMIL PARGHI
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.01
TotalPayBenefits              89806.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11850, dtype: object)
(11851, Id                               11852
EmployeeName                SIMON CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.01
TotalPayBenefits              89806.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11851, dtype: object)
(11852, Id                               11853
EmployeeName                   KYAW OO
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.01
TotalPayBenefits              89806.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11852, dtype: object)
(11853, Id                                       11854
EmployeeName               ROGERIO BITTENCOURT
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              89806.01
TotalPayBenefits                      89806.01
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11853, dtype: object)
(11854, Id                                                11855
EmployeeName                             NICHOLAS ANCEL
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE I
BasePay                                        89806.01
OvertimePay                                         0.0
OtherPay                                            0.0
Benefits                                            NaN
TotalPay                                       89806.01
TotalPayBenefits                               89806.01
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11854, dtype: object)
(11855, Id                                       11856
EmployeeName           EDGAR PIMENTEL COBAQUIL
JobTitle            ARCHITECTURAL ASSOCIATE  I
BasePay                               89806.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                              89806.01
TotalPayBenefits                      89806.01
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11855, dtype: object)
(11856, Id                               11857
EmployeeName        LAWRENCE HENRIQUEZ
JobTitle            ASSISTANT ENGINEER
BasePay                       89806.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89806.01
TotalPayBenefits              89806.01
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11856, dtype: object)
(11857, Id                               11858
EmployeeName                HOLLY CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11857, dtype: object)
(11858, Id                               11859
EmployeeName               DANNIE WONG
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11858, dtype: object)
(11859, Id                               11860
EmployeeName              MARIO VALDEZ
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11859, dtype: object)
(11860, Id                               11861
EmployeeName              DERRICK CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11860, dtype: object)
(11861, Id                               11862
EmployeeName                 ERIK CHAN
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11861, dtype: object)
(11862, Id                               11863
EmployeeName                   HUA MEI
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11862, dtype: object)
(11863, Id                                11864
EmployeeName        BIMAYENDRA SHRESTHA
JobTitle             ASSISTANT ENGINEER
BasePay                         89806.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                            NaN
TotalPay                        89806.0
TotalPayBenefits                89806.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11863, dtype: object)
(11864, Id                               11865
EmployeeName           CYRIL VELASQUEZ
JobTitle            ASSISTANT ENGINEER
BasePay                        89806.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89806.0
TotalPayBenefits               89806.0
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11864, dtype: object)
(11865, Id                                          11866
EmployeeName                             ROBIN HO
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.02
OvertimePay                                   0.0
OtherPay                                   1299.6
Benefits                                      NaN
TotalPay                                 89805.62
TotalPayBenefits                         89805.62
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11865, dtype: object)
(11866, Id                                     11867
EmployeeName                 ALFONZIA HARPER
JobTitle            DEPUTY PROBATION OFFICER
BasePay                              85902.8
OvertimePay                          3899.72
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            89802.52
TotalPayBenefits                    89802.52
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11866, dtype: object)
(11867, Id                             11868
EmployeeName                 DIEU AU
JobTitle            TRANSIT OPERATOR
BasePay                     64624.61
OvertimePay                 23198.93
OtherPay                     1962.91
Benefits                         NaN
TotalPay                    89786.45
TotalPayBenefits            89786.45
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11867, dtype: object)
(11868, Id                             11869
EmployeeName          ARTHUR JABALLA
JobTitle            TRANSIT OPERATOR
BasePay                     63426.67
OvertimePay                 26050.81
OtherPay                      308.21
Benefits                         NaN
TotalPay                    89785.69
TotalPayBenefits            89785.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11868, dtype: object)
(11869, Id                                              11870
EmployeeName                                ALAN LANE
JobTitle            COMMUNICATIONS SYSTEMS TECHNICIAN
BasePay                                      81562.42
OvertimePay                                   6246.71
OtherPay                                      1961.07
Benefits                                          NaN
TotalPay                                      89770.2
TotalPayBenefits                              89770.2
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11869, dtype: object)
(11870, Id                                          11871
EmployeeName                         DANIEL CAVAN
JobTitle            ASPHALT FINISHER SUPERVISOR I
BasePay                                   81170.4
OvertimePay                               2789.18
OtherPay                                  5809.66
Benefits                                      NaN
TotalPay                                 89769.24
TotalPayBenefits                         89769.24
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11870, dtype: object)
(11871, Id                                  11872
EmployeeName                MATTHEW SPANO
JobTitle            MATERIALS COORDINATOR
BasePay                          89762.73
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                         89762.73
TotalPayBenefits                 89762.73
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11871, dtype: object)
(11872, Id                                               11873
EmployeeName                            NEIL MILITANTE
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       76932.73
OvertimePay                                    4699.22
OtherPay                                       8128.27
Benefits                                           NaN
TotalPay                                      89760.22
TotalPayBenefits                              89760.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11872, dtype: object)
(11873, Id                               11874
EmployeeName        DAVID SOLORZANO JR
JobTitle              TRANSIT OPERATOR
BasePay                       65475.14
OvertimePay                   24042.26
OtherPay                        237.95
Benefits                           NaN
TotalPay                      89755.35
TotalPayBenefits              89755.35
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11873, dtype: object)
(11874, Id                               11875
EmployeeName         ALFREDA LEDBETTER
JobTitle            TRANSIT SUPERVISOR
BasePay                       79996.71
OvertimePay                    7998.87
OtherPay                       1751.86
Benefits                           NaN
TotalPay                      89747.44
TotalPayBenefits              89747.44
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11874, dtype: object)
(11875, Id                                       11876
EmployeeName                          CINDY WU
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.33
OvertimePay                                0.0
OtherPay                                5857.8
Benefits                                   NaN
TotalPay                              89739.13
TotalPayBenefits                      89739.13
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11875, dtype: object)
(11876, Id                          11877
EmployeeName             JOHN TAM
JobTitle              ELECTRICIAN
BasePay                  87473.74
OvertimePay                164.67
OtherPay                   2100.0
Benefits                      NaN
TotalPay                 89738.41
TotalPayBenefits         89738.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11876, dtype: object)
(11877, Id                                11878
EmployeeName               TRINNA DAVIS
JobTitle            TRANSIT CAR CLEANER
BasePay                        55299.23
OvertimePay                    25786.76
OtherPay                        8645.38
Benefits                            NaN
TotalPay                       89731.37
TotalPayBenefits               89731.37
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11877, dtype: object)
(11878, Id                                          11879
EmployeeName                         RANDY REITER
JobTitle            SENIOR HEALTH PROGRAM PLANNER
BasePay                                   89729.8
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  89729.8
TotalPayBenefits                          89729.8
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11878, dtype: object)
(11879, Id                             11880
EmployeeName        ANTONIO IRIZARRY
JobTitle                     GLAZIER
BasePay                     78561.98
OvertimePay                  8506.66
OtherPay                     2656.72
Benefits                         NaN
TotalPay                    89725.36
TotalPayBenefits            89725.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11879, dtype: object)
(11880, Id                                11881
EmployeeName                  DANILO GO
JobTitle            STATIONARY ENGINEER
BasePay                        74561.81
OvertimePay                     4501.51
OtherPay                       10648.68
Benefits                            NaN
TotalPay                        89712.0
TotalPayBenefits                89712.0
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11880, dtype: object)
(11881, Id                           11882
EmployeeName         ANGELO GARCIA
JobTitle            DEPUTY SHERIFF
BasePay                   75342.45
OvertimePay                9896.11
OtherPay                   4460.61
Benefits                       NaN
TotalPay                  89699.17
TotalPayBenefits          89699.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11881, dtype: object)
(11882, Id                                                             11883
EmployeeName                                              SONNY WEST
JobTitle            ELECTRONIC INSTRUMENTATION TECHNICIAN,WTR PLTNCN
BasePay                                                     88194.81
OvertimePay                                                   882.84
OtherPay                                                      615.06
Benefits                                                         NaN
TotalPay                                                    89692.71
TotalPayBenefits                                            89692.71
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 11882, dtype: object)
(11883, Id                          11884
EmployeeName         CHADI HAJJAR
JobTitle              ELECTRICIAN
BasePay                   87298.1
OvertimePay               1734.52
OtherPay                    646.0
Benefits                      NaN
TotalPay                 89678.62
TotalPayBenefits         89678.62
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11883, dtype: object)
(11884, Id                                  11885
EmployeeName                 MICHAEL BARR
JobTitle            MAINTENANCE MACHINIST
BasePay                          74729.53
OvertimePay                           0.0
OtherPay                         14946.84
Benefits                              NaN
TotalPay                         89676.37
TotalPayBenefits                 89676.37
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11884, dtype: object)
(11885, Id                            11886
EmployeeName        ALVARO SANABRIA
JobTitle              LIBRARIAN III
BasePay                    88535.03
OvertimePay                     0.0
OtherPay                    1140.59
Benefits                        NaN
TotalPay                   89675.62
TotalPayBenefits           89675.62
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11885, dtype: object)
(11886, Id                           11887
EmployeeName          THERESA WONG
JobTitle            CRIMINALIST II
BasePay                   89467.04
OvertimePay                 206.34
OtherPay                       0.0
Benefits                       NaN
TotalPay                  89673.38
TotalPayBenefits          89673.38
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11886, dtype: object)
(11887, Id                                      11888
EmployeeName                      ASHA CHARAN
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                              64613.86
OvertimePay                          24803.65
OtherPay                                250.0
Benefits                                  NaN
TotalPay                             89667.51
TotalPayBenefits                     89667.51
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11887, dtype: object)
(11888, Id                                                    11889
EmployeeName                                KATHERINE OROSZ
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            75823.54
OvertimePay                                         7024.51
OtherPay                                            6818.49
Benefits                                                NaN
TotalPay                                           89666.54
TotalPayBenefits                                   89666.54
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11888, dtype: object)
(11889, Id                             11890
EmployeeName                 TONY MA
JobTitle            TRANSIT OPERATOR
BasePay                     66179.12
OvertimePay                 21646.97
OtherPay                     1839.12
Benefits                         NaN
TotalPay                    89665.21
TotalPayBenefits            89665.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11889, dtype: object)
(11890, Id                                     11891
EmployeeName               ALPHONSO OLIPHANT
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             82100.21
OvertimePay                           7560.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            89660.21
TotalPayBenefits                    89660.21
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11890, dtype: object)
(11891, Id                          11892
EmployeeName         JOHN LEONARD
JobTitle              ELECTRICIAN
BasePay                  87858.71
OvertimePay                   0.0
OtherPay                   1780.0
Benefits                      NaN
TotalPay                 89638.71
TotalPayBenefits         89638.71
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11891, dtype: object)
(11892, Id                                                 11893
EmployeeName                              MICHAEL MURPHY
JobTitle            SUPERVISOR, TRAFFIC AND STREET SIGNS
BasePay                                         86787.03
OvertimePay                                      2821.41
OtherPay                                           28.48
Benefits                                             NaN
TotalPay                                        89636.92
TotalPayBenefits                                89636.92
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 11892, dtype: object)
(11893, Id                          11894
EmployeeName         SEAN NEEDHAM
JobTitle               BRICKLAYER
BasePay                   84964.8
OvertimePay               1927.12
OtherPay                   2745.0
Benefits                      NaN
TotalPay                 89636.92
TotalPayBenefits         89636.92
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11893, dtype: object)
(11894, Id                               11895
EmployeeName           JOSEPH BUITRAGO
JobTitle            ASSISTANT ENGINEER
BasePay                       89633.71
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89633.71
TotalPayBenefits              89633.71
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11894, dtype: object)
(11895, Id                                          11896
EmployeeName                    GARRETT CHATFIELD
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  89631.52
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89631.52
TotalPayBenefits                         89631.52
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11895, dtype: object)
(11896, Id                                11897
EmployeeName                 CHUNG TONG
JobTitle            STATIONARY ENGINEER
BasePay                        70576.87
OvertimePay                     9412.68
OtherPay                         9640.1
Benefits                            NaN
TotalPay                       89629.65
TotalPayBenefits               89629.65
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11896, dtype: object)
(11897, Id                             11898
EmployeeName         ANTHONY SCAFANI
JobTitle            POLICE OFFICER I
BasePay                     85186.06
OvertimePay                  1407.31
OtherPay                     3033.41
Benefits                         NaN
TotalPay                    89626.78
TotalPayBenefits            89626.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11897, dtype: object)
(11898, Id                                             11899
EmployeeName                            NICOLAS KING
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     89626.18
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    89626.18
TotalPayBenefits                            89626.18
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 11898, dtype: object)
(11899, Id                            11900
EmployeeName        NELSON MARTINEZ
JobTitle             DEPUTY SHERIFF
BasePay                     83406.5
OvertimePay                  4633.0
OtherPay                    1586.05
Benefits                        NaN
TotalPay                   89625.55
TotalPayBenefits           89625.55
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11899, dtype: object)
(11900, Id                                11901
EmployeeName               ANGEL ZABALA
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                      4336.8
OtherPay                       12869.55
Benefits                            NaN
TotalPay                       89616.35
TotalPayBenefits               89616.35
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11900, dtype: object)
(11901, Id                                          11902
EmployeeName                   CATHERINE ARGUMEDO
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  89615.06
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89615.06
TotalPayBenefits                         89615.06
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11901, dtype: object)
(11902, Id                                            11903
EmployeeName                            AUDREY PARK
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                    89612.62
OvertimePay                                     0.0
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   89612.62
TotalPayBenefits                           89612.62
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 11902, dtype: object)
(11903, Id                           11904
EmployeeName        LAURA MARTINEZ
JobTitle            COURT REPORTER
BasePay                    84927.2
OvertimePay                    0.0
OtherPay                   4670.36
Benefits                       NaN
TotalPay                  89597.56
TotalPayBenefits          89597.56
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11903, dtype: object)
(11904, Id                            11905
EmployeeName        CAROL HARABURDA
JobTitle             COURT REPORTER
BasePay                     84927.2
OvertimePay                     0.0
OtherPay                    4670.36
Benefits                        NaN
TotalPay                   89597.56
TotalPayBenefits           89597.56
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11904, dtype: object)
(11905, Id                          11906
EmployeeName        DONALD AVILEZ
JobTitle              ELECTRICIAN
BasePay                  87122.42
OvertimePay                362.26
OtherPay                   2110.0
Benefits                      NaN
TotalPay                 89594.68
TotalPayBenefits         89594.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11905, dtype: object)
(11906, Id                          11907
EmployeeName          DANA BUTLER
JobTitle             SENIOR CLERK
BasePay                   53316.2
OvertimePay              31767.02
OtherPay                  4505.83
Benefits                      NaN
TotalPay                 89589.05
TotalPayBenefits         89589.05
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11906, dtype: object)
(11907, Id                          11908
EmployeeName          JIAN SHU LU
JobTitle              ELECTRICIAN
BasePay                  87473.73
OvertimePay                1053.9
OtherPay                  1051.91
Benefits                      NaN
TotalPay                 89579.54
TotalPayBenefits         89579.54
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11907, dtype: object)
(11908, Id                                11909
EmployeeName        ARTEMIO LEONARDO JR
JobTitle            STATIONARY ENGINEER
BasePay                         80114.4
OvertimePay                     5199.45
OtherPay                        4265.04
Benefits                            NaN
TotalPay                       89578.89
TotalPayBenefits               89578.89
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11908, dtype: object)
(11909, Id                                          11910
EmployeeName                         CRAIG RICHEY
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                  85925.76
OvertimePay                               1873.01
OtherPay                                  1778.61
Benefits                                      NaN
TotalPay                                 89577.38
TotalPayBenefits                         89577.38
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11909, dtype: object)
(11910, Id                                11911
EmployeeName                VERNON TING
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        71028.93
OvertimePay                    13515.27
OtherPay                         5032.9
Benefits                            NaN
TotalPay                        89577.1
TotalPayBenefits                89577.1
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11910, dtype: object)
(11911, Id                               11912
EmployeeName           AILEEN GONZALES
JobTitle            ASSISTANT ENGINEER
BasePay                       89575.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      89575.02
TotalPayBenefits              89575.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11911, dtype: object)
(11912, Id                                              11913
EmployeeName                          DOLORES JOHNSON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   2165.78
OtherPay                                      7573.43
Benefits                                          NaN
TotalPay                                     89559.21
TotalPayBenefits                             89559.21
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11912, dtype: object)
(11913, Id                             11914
EmployeeName          MALCOLM FULLER
JobTitle            TRANSIT OPERATOR
BasePay                     67149.47
OvertimePay                 16918.23
OtherPay                     5477.46
Benefits                         NaN
TotalPay                    89545.16
TotalPayBenefits            89545.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11913, dtype: object)
(11914, Id                                   11915
EmployeeName                 FELICIA BRAGG
JobTitle            CONSTRUCTION INSPECTOR
BasePay                           87889.97
OvertimePay                            0.0
OtherPay                           1654.63
Benefits                               NaN
TotalPay                           89544.6
TotalPayBenefits                   89544.6
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11914, dtype: object)
(11915, Id                           11916
EmployeeName          ROBERT YEUNG
JobTitle            DEPUTY SHERIFF
BasePay                    76116.0
OvertimePay               10374.75
OtherPay                    3043.9
Benefits                       NaN
TotalPay                  89534.65
TotalPayBenefits          89534.65
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11915, dtype: object)
(11916, Id                                              11917
EmployeeName                             BRUCE VERSEY
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   2009.39
OtherPay                                      7704.61
Benefits                                          NaN
TotalPay                                      89534.0
TotalPayBenefits                              89534.0
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11916, dtype: object)
(11917, Id                                11918
EmployeeName              JAMES BAUMANN
JobTitle            STATIONARY ENGINEER
BasePay                        74958.68
OvertimePay                    13340.63
OtherPay                        1228.39
Benefits                            NaN
TotalPay                        89527.7
TotalPayBenefits                89527.7
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11917, dtype: object)
(11918, Id                          11919
EmployeeName            JERRY LEE
JobTitle            PATTERN MAKER
BasePay                   81065.4
OvertimePay               6461.36
OtherPay                   2000.0
Benefits                      NaN
TotalPay                 89526.76
TotalPayBenefits         89526.76
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11918, dtype: object)
(11919, Id                                   11920
EmployeeName                LISA HOLDCROFT
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            79995.3
OvertimePay                            0.0
OtherPay                           9511.59
Benefits                               NaN
TotalPay                          89506.89
TotalPayBenefits                  89506.89
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11919, dtype: object)
(11920, Id                                              11921
EmployeeName                       IKECHUKWU IBEANUSI
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.01
OvertimePay                                   3756.62
OtherPay                                       5929.1
Benefits                                          NaN
TotalPay                                     89505.73
TotalPayBenefits                             89505.73
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11920, dtype: object)
(11921, Id                                                11922
EmployeeName                               MIKA YOSHIDA
JobTitle            COURT COMPUTER APPLICATIONS ANALYST
BasePay                                        83466.42
OvertimePay                                         0.0
OtherPay                                        6037.76
Benefits                                            NaN
TotalPay                                       89504.18
TotalPayBenefits                               89504.18
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 11921, dtype: object)
(11922, Id                                   11923
EmployeeName              NICHOLAS OSIPOFF
JobTitle            ELECTRICAL LINE WORKER
BasePay                           85239.61
OvertimePay                         509.41
OtherPay                           3749.49
Benefits                               NaN
TotalPay                          89498.51
TotalPayBenefits                  89498.51
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 11922, dtype: object)
(11923, Id                                       11924
EmployeeName                       JORGE PAVON
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.57
OvertimePay                                0.0
OtherPay                               5594.86
Benefits                                   NaN
TotalPay                              89497.43
TotalPayBenefits                      89497.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11923, dtype: object)
(11924, Id                             11925
EmployeeName        KENNETH CHAMBERS
JobTitle            TRANSIT OPERATOR
BasePay                     63392.73
OvertimePay                  26034.3
OtherPay                       62.39
Benefits                         NaN
TotalPay                    89489.42
TotalPayBenefits            89489.42
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11924, dtype: object)
(11925, Id                             11926
EmployeeName                CUONG MA
JobTitle            TRANSIT OPERATOR
BasePay                      63855.6
OvertimePay                  24284.1
OtherPay                     1346.31
Benefits                         NaN
TotalPay                    89486.01
TotalPayBenefits            89486.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11925, dtype: object)
(11926, Id                                       11927
EmployeeName                       ROSA GUZMAN
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                            2855.61
OtherPay                               2742.65
Benefits                                   NaN
TotalPay                              89479.58
TotalPayBenefits                      89479.58
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11926, dtype: object)
(11927, Id                            11928
EmployeeName        ELISABETH YOUNG
JobTitle             DEPUTY SHERIFF
BasePay                     79408.5
OvertimePay                10062.25
OtherPay                        0.0
Benefits                        NaN
TotalPay                   89470.75
TotalPayBenefits           89470.75
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11927, dtype: object)
(11928, Id                                       11929
EmployeeName                    ARNEL BAUTISTA
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                               78737.77
OvertimePay                            4497.96
OtherPay                               6229.49
Benefits                                   NaN
TotalPay                              89465.22
TotalPayBenefits                      89465.22
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 11928, dtype: object)
(11929, Id                           11930
EmployeeName         TARIQ JACKSON
JobTitle            DEPUTY SHERIFF
BasePay                    80834.0
OvertimePay                7804.33
OtherPay                    825.36
Benefits                       NaN
TotalPay                  89463.69
TotalPayBenefits          89463.69
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11929, dtype: object)
(11930, Id                                          11931
EmployeeName                       VALERIE TOOKES
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  89459.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89459.02
TotalPayBenefits                         89459.02
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11930, dtype: object)
(11931, Id                                      11932
EmployeeName                    ANGELA FISHER
JobTitle            ATTORNEY (CIVIL/CRIMINAL)
BasePay                              89444.07
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             89444.07
TotalPayBenefits                     89444.07
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11931, dtype: object)
(11932, Id                          11933
EmployeeName         JOSE CAMACHO
JobTitle                  PAINTER
BasePay                  69263.41
OvertimePay              18995.16
OtherPay                  1184.25
Benefits                      NaN
TotalPay                 89442.82
TotalPayBenefits         89442.82
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11932, dtype: object)
(11933, Id                              11934
EmployeeName             DIANE STOKES
JobTitle            POLICE OFFICER II
BasePay                      77390.08
OvertimePay                   1150.25
OtherPay                     10900.58
Benefits                          NaN
TotalPay                     89440.91
TotalPayBenefits             89440.91
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11933, dtype: object)
(11934, Id                          11935
EmployeeName           JAMES GANZ
JobTitle               CURATOR IV
BasePay                   89437.6
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                  89437.6
TotalPayBenefits          89437.6
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11934, dtype: object)
(11935, Id                                                      11936
EmployeeName                                   ROBERT SKELLEN
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                               74247.5
OvertimePay                                          13927.81
OtherPay                                              1257.14
Benefits                                                  NaN
TotalPay                                             89432.45
TotalPayBenefits                                     89432.45
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 11935, dtype: object)
(11936, Id                                           11937
EmployeeName                       VICTOR RAQUINAN
JobTitle            SENIOR PARKING CONTROL OFFICER
BasePay                                   65064.78
OvertimePay                               19168.86
OtherPay                                   5195.13
Benefits                                       NaN
TotalPay                                  89428.77
TotalPayBenefits                          89428.77
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11936, dtype: object)
(11937, Id                          11938
EmployeeName        MICHAEL OLSEN
JobTitle              ELECTRICIAN
BasePay                   86419.8
OvertimePay                563.18
OtherPay                   2439.0
Benefits                      NaN
TotalPay                 89421.98
TotalPayBenefits         89421.98
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11937, dtype: object)
(11938, Id                             11939
EmployeeName                 WAH LAU
JobTitle            TRANSIT OPERATOR
BasePay                     64538.39
OvertimePay                 22497.11
OtherPay                     2384.41
Benefits                         NaN
TotalPay                    89419.91
TotalPayBenefits            89419.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11938, dtype: object)
(11939, Id                                 11940
EmployeeName               ANNA THOMPSON
JobTitle            PRINCIPAL ACCOUNTANT
BasePay                         87336.85
OvertimePay                          0.0
OtherPay                          2080.0
Benefits                             NaN
TotalPay                        89416.85
TotalPayBenefits                89416.85
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11939, dtype: object)
(11940, Id                                              11941
EmployeeName                           HENRY JASINSKI
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79587.31
OvertimePay                                   2532.76
OtherPay                                      7296.64
Benefits                                          NaN
TotalPay                                     89416.71
TotalPayBenefits                             89416.71
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11940, dtype: object)
(11941, Id                               11942
EmployeeName              LUKE LEIFELD
JobTitle            ASSISTANT ENGINEER
BasePay                       88898.52
OvertimePay                        0.0
OtherPay                        510.36
Benefits                           NaN
TotalPay                      89408.88
TotalPayBenefits              89408.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11941, dtype: object)
(11942, Id                             11943
EmployeeName         CLARENCE THOMAS
JobTitle            TRANSIT OPERATOR
BasePay                     57967.25
OvertimePay                 29184.06
OtherPay                     2254.48
Benefits                         NaN
TotalPay                    89405.79
TotalPayBenefits            89405.79
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11942, dtype: object)
(11943, Id                           11944
EmployeeName        JOSHUA SWITZKY
JobTitle               PLANNER III
BasePay                   89404.27
OvertimePay                    0.0
OtherPay                       0.0
Benefits                       NaN
TotalPay                  89404.27
TotalPayBenefits          89404.27
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11943, dtype: object)
(11944, Id                             11945
EmployeeName             DARRYL REED
JobTitle            TRANSIT OPERATOR
BasePay                      66831.8
OvertimePay                 21543.75
OtherPay                     1028.23
Benefits                         NaN
TotalPay                    89403.78
TotalPayBenefits            89403.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11944, dtype: object)
(11945, Id                            11946
EmployeeName        MICHAEL BUCKLEY
JobTitle                ELECTRICIAN
BasePay                    87473.71
OvertimePay                  625.75
OtherPay                     1300.5
Benefits                        NaN
TotalPay                   89399.96
TotalPayBenefits           89399.96
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11945, dtype: object)
(11946, Id                               11947
EmployeeName        HERBERT HENLEY III
JobTitle              TRANSIT OPERATOR
BasePay                       67087.72
OvertimePay                   18548.23
OtherPay                       3757.56
Benefits                           NaN
TotalPay                      89393.51
TotalPayBenefits              89393.51
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11946, dtype: object)
(11947, Id                             11948
EmployeeName           MASIS AZIZIAN
JobTitle            TRANSIT OPERATOR
BasePay                     67149.47
OvertimePay                 16890.41
OtherPay                     5347.05
Benefits                         NaN
TotalPay                    89386.93
TotalPayBenefits            89386.93
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11947, dtype: object)
(11948, Id                             11949
EmployeeName            YVETTE ALLEN
JobTitle            TRANSIT OPERATOR
BasePay                     65532.33
OvertimePay                 23086.74
OtherPay                      763.75
Benefits                         NaN
TotalPay                    89382.82
TotalPayBenefits            89382.82
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11948, dtype: object)
(11949, Id                                      11950
EmployeeName                     JAMES HURLEY
JobTitle            FEASIBILITY ANALYST, PORT
BasePay                              89376.05
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             89376.05
TotalPayBenefits                     89376.05
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11949, dtype: object)
(11950, Id                               11951
EmployeeName        CHRISTOPHER WILCOX
JobTitle              REGISTERED NURSE
BasePay                       73085.76
OvertimePay                   12569.28
OtherPay                       3716.87
Benefits                           NaN
TotalPay                      89371.91
TotalPayBenefits              89371.91
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11950, dtype: object)
(11951, Id                               11952
EmployeeName             FARIS SALFITI
JobTitle            ASSISTANT ENGINEER
BasePay                       86341.28
OvertimePay                        0.0
OtherPay                       3025.31
Benefits                           NaN
TotalPay                      89366.59
TotalPayBenefits              89366.59
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11951, dtype: object)
(11952, Id                                              11953
EmployeeName                               JAMES WONG
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      80023.01
OvertimePay                                    2877.4
OtherPay                                      6465.86
Benefits                                          NaN
TotalPay                                     89366.27
TotalPayBenefits                             89366.27
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11952, dtype: object)
(11953, Id                                               11954
EmployeeName                                JOYCE OTIS
JobTitle            WORKER'S COMPENSATION SUPERVISOR I
BasePay                                       89363.29
OvertimePay                                        0.0
OtherPay                                           0.0
Benefits                                           NaN
TotalPay                                      89363.29
TotalPayBenefits                              89363.29
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 11953, dtype: object)
(11954, Id                                                    11955
EmployeeName                                     JULIE LANE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78012.34
OvertimePay                                         6207.05
OtherPay                                            5136.26
Benefits                                                NaN
TotalPay                                           89355.65
TotalPayBenefits                                   89355.65
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11954, dtype: object)
(11955, Id                             11956
EmployeeName               RAY KWONG
JobTitle            TRANSIT OPERATOR
BasePay                     64707.25
OvertimePay                 20208.99
OtherPay                     4437.71
Benefits                         NaN
TotalPay                    89353.95
TotalPayBenefits            89353.95
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11955, dtype: object)
(11956, Id                                 11957
EmployeeName             CATHERINE OLSON
JobTitle            PHYSICIAN SPECIALIST
BasePay                         87867.24
OvertimePay                          0.0
OtherPay                          1485.0
Benefits                             NaN
TotalPay                        89352.24
TotalPayBenefits                89352.24
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 11956, dtype: object)
(11957, Id                             11958
EmployeeName        EDWARD GUTIERREZ
JobTitle              DEPUTY SHERIFF
BasePay                      82494.9
OvertimePay                  5778.61
OtherPay                     1066.37
Benefits                         NaN
TotalPay                    89339.88
TotalPayBenefits            89339.88
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11957, dtype: object)
(11958, Id                             11959
EmployeeName        KENNETH MCDOUGAL
JobTitle            TRANSIT OPERATOR
BasePay                     66656.45
OvertimePay                 18720.91
OtherPay                     3961.37
Benefits                         NaN
TotalPay                    89338.73
TotalPayBenefits            89338.73
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11958, dtype: object)
(11959, Id                                11960
EmployeeName                 DAVID KONG
JobTitle            STATIONARY ENGINEER
BasePay                        71714.31
OvertimePay                     9592.66
OtherPay                        8016.98
Benefits                            NaN
TotalPay                       89323.95
TotalPayBenefits               89323.95
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11959, dtype: object)
(11960, Id                                11961
EmployeeName            MELDY HERNANDEZ
JobTitle            PUBLIC HEALTH NURSE
BasePay                        87987.66
OvertimePay                         0.0
OtherPay                         1325.0
Benefits                            NaN
TotalPay                       89312.66
TotalPayBenefits               89312.66
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11960, dtype: object)
(11961, Id                          11962
EmployeeName        RUBEN CABRERA
JobTitle              ELECTRICIAN
BasePay                  86529.58
OvertimePay                1756.5
OtherPay                   1026.0
Benefits                      NaN
TotalPay                 89312.08
TotalPayBenefits         89312.08
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11961, dtype: object)
(11962, Id                                  11963
EmployeeName                   KEVIN WONG
JobTitle            MAINTENANCE MACHINIST
BasePay                          77508.06
OvertimePay                       11140.6
OtherPay                            660.0
Benefits                              NaN
TotalPay                         89308.66
TotalPayBenefits                 89308.66
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 11962, dtype: object)
(11963, Id                          11964
EmployeeName        KAREN STRAUSS
JobTitle            LIBRARIAN III
BasePay                  88535.01
OvertimePay                   0.0
OtherPay                   773.47
Benefits                      NaN
TotalPay                 89308.48
TotalPayBenefits         89308.48
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11963, dtype: object)
(11964, Id                                         11965
EmployeeName                     ELIZABETH G LUM
JobTitle            AIRPORT POLICE SERVICES AIDE
BasePay                                 58891.54
OvertimePay                              23294.0
OtherPay                                 7120.01
Benefits                                     NaN
TotalPay                                89305.55
TotalPayBenefits                        89305.55
Year                                        2011
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 11964, dtype: object)
(11965, Id                               11966
EmployeeName                JAMES LANE
JobTitle            ASSISTANT ENGINEER
BasePay                        89304.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                       89304.8
TotalPayBenefits               89304.8
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 11965, dtype: object)
(11966, Id                                              11967
EmployeeName                           CHRISTINA TING
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      81691.04
OvertimePay                                   1485.13
OtherPay                                      6126.95
Benefits                                          NaN
TotalPay                                     89303.12
TotalPayBenefits                             89303.12
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 11966, dtype: object)
(11967, Id                                                     11968
EmployeeName                                  JOSEPH CASTEEL
JobTitle            WATER AND POWER MAINTENANCE SUPERVISOR I
BasePay                                             83106.01
OvertimePay                                          2347.05
OtherPay                                             3845.34
Benefits                                                 NaN
TotalPay                                             89298.4
TotalPayBenefits                                     89298.4
Year                                                    2011
Notes                                                    NaN
Agency                                         San Francisco
Status                                                   NaN
Name: 11967, dtype: object)
(11968, Id                                                    11969
EmployeeName                                      DAWN SHAW
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76702.23
OvertimePay                                          7404.7
OtherPay                                            5188.26
Benefits                                                NaN
TotalPay                                           89295.19
TotalPayBenefits                                   89295.19
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11968, dtype: object)
(11969, Id                                11970
EmployeeName        THERESA GWIAZDOWSKI
JobTitle                  LIBRARIAN III
BasePay                        88535.01
OvertimePay                         0.0
OtherPay                         756.41
Benefits                            NaN
TotalPay                       89291.42
TotalPayBenefits               89291.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 11969, dtype: object)
(11970, Id                           11971
EmployeeName        RIZALDY TABADA
JobTitle            DEPUTY SHERIFF
BasePay                   88131.35
OvertimePay                 383.28
OtherPay                    774.88
Benefits                       NaN
TotalPay                  89289.51
TotalPayBenefits          89289.51
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 11970, dtype: object)
(11971, Id                                                    11972
EmployeeName                                JOLYNN DARNAUER
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77181.0
OvertimePay                                        10759.38
OtherPay                                            1338.58
Benefits                                                NaN
TotalPay                                           89278.96
TotalPayBenefits                                   89278.96
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 11971, dtype: object)
(11972, Id                             11973
EmployeeName                 ANDY NG
JobTitle            TRANSIT OPERATOR
BasePay                     64012.95
OvertimePay                 24106.46
OtherPay                     1155.79
Benefits                         NaN
TotalPay                     89275.2
TotalPayBenefits             89275.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11972, dtype: object)
(11973, Id                            11974
EmployeeName        SUSAN GOLDSTEIN
JobTitle              LIBRARIAN III
BasePay                    88535.01
OvertimePay                     0.0
OtherPay                     737.41
Benefits                        NaN
TotalPay                   89272.42
TotalPayBenefits           89272.42
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11973, dtype: object)
(11974, Id                                    11975
EmployeeName                   LAMONT GRAYS
JobTitle            PARKING CONTROL OFFICER
BasePay                            54673.29
OvertimePay                        31984.82
OtherPay                            2605.99
Benefits                                NaN
TotalPay                            89264.1
TotalPayBenefits                    89264.1
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11974, dtype: object)
(11975, Id                                    11976
EmployeeName              BIENVENIDO CAYLAO
JobTitle            IS ENGINEER - ASSISTANT
BasePay                            89259.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                           89259.02
TotalPayBenefits                   89259.02
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11975, dtype: object)
(11976, Id                             11977
EmployeeName             JOHN DUDLEY
JobTitle            TRANSIT OPERATOR
BasePay                     68146.33
OvertimePay                 21069.53
OtherPay                       38.49
Benefits                         NaN
TotalPay                    89254.35
TotalPayBenefits            89254.35
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11976, dtype: object)
(11977, Id                                     11978
EmployeeName                      ARLEEN LUM
JobTitle            SENIOR PERSONNEL ANALYST
BasePay                             89253.57
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            89253.57
TotalPayBenefits                    89253.57
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11977, dtype: object)
(11978, Id                                    11979
EmployeeName                DEREK ENTWISTLE
JobTitle            IS ENGINEER - ASSISTANT
BasePay                             89250.7
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            89250.7
TotalPayBenefits                    89250.7
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11978, dtype: object)
(11979, Id                                     11980
EmployeeName              ARMANDO VILLANUEVA
JobTitle            ENGINEERING ASSOCIATE II
BasePay                             85940.11
OvertimePay                              0.0
OtherPay                             3309.68
Benefits                                 NaN
TotalPay                            89249.79
TotalPayBenefits                    89249.79
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11979, dtype: object)
(11980, Id                                          11981
EmployeeName                            TEDDY SIA
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  89230.91
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 89230.91
TotalPayBenefits                         89230.91
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 11980, dtype: object)
(11981, Id                             11982
EmployeeName        MELISSA LAVALLEY
JobTitle                 PLANNER III
BasePay                     89210.83
OvertimePay                      0.0
OtherPay                         0.0
Benefits                         NaN
TotalPay                    89210.83
TotalPayBenefits            89210.83
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11981, dtype: object)
(11982, Id                          11983
EmployeeName        MARTIN HICKEY
JobTitle             TRUCK DRIVER
BasePay                   72965.9
OvertimePay              12150.85
OtherPay                  4084.37
Benefits                      NaN
TotalPay                 89201.12
TotalPayBenefits         89201.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11982, dtype: object)
(11983, Id                             11984
EmployeeName            HERBERT WARD
JobTitle            TRANSIT OPERATOR
BasePay                     62352.81
OvertimePay                 22956.91
OtherPay                     3890.48
Benefits                         NaN
TotalPay                     89200.2
TotalPayBenefits             89200.2
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11983, dtype: object)
(11984, Id                                    11985
EmployeeName                  MARK CHANDLER
JobTitle            MAYOR'S PROGRAM MANAGER
BasePay                             89197.2
OvertimePay                             0.0
OtherPay                                0.0
Benefits                                NaN
TotalPay                            89197.2
TotalPayBenefits                    89197.2
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 11984, dtype: object)
(11985, Id                              11986
EmployeeName        RONALD CARMICHAEL
JobTitle                  ELECTRICIAN
BasePay                       87122.4
OvertimePay                   1119.76
OtherPay                        953.0
Benefits                          NaN
TotalPay                     89195.16
TotalPayBenefits             89195.16
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 11985, dtype: object)
(11986, Id                                                 11987
EmployeeName                                 DAVID MIREE
JobTitle            COORDINATOR, HUMAN RIGHTS COMMISSION
BasePay                                          89188.8
OvertimePay                                          0.0
OtherPay                                             0.0
Benefits                                             NaN
TotalPay                                         89188.8
TotalPayBenefits                                 89188.8
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 11986, dtype: object)
(11987, Id                             11988
EmployeeName         GREGORY GRIFFIN
JobTitle            TRANSIT OPERATOR
BasePay                     68678.28
OvertimePay                 19189.45
OtherPay                      1315.6
Benefits                         NaN
TotalPay                    89183.33
TotalPayBenefits            89183.33
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11987, dtype: object)
(11988, Id                                           11989
EmployeeName                       ELIZABETH DAVIS
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   89179.49
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  89179.49
TotalPayBenefits                          89179.49
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 11988, dtype: object)
(11989, Id                          11990
EmployeeName           JOHN FOOTE
JobTitle                  PAINTER
BasePay                   71275.2
OvertimePay              16022.57
OtherPay                   1879.0
Benefits                      NaN
TotalPay                 89176.77
TotalPayBenefits         89176.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11989, dtype: object)
(11990, Id                                      11991
EmployeeName                        VINCY LEE
JobTitle            PSYCHIATRIC SOCIAL WORKER
BasePay                               74754.4
OvertimePay                           7363.99
OtherPay                               7051.4
Benefits                                  NaN
TotalPay                             89169.79
TotalPayBenefits                     89169.79
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 11990, dtype: object)
(11991, Id                                     11992
EmployeeName                    JOSE SANCHEZ
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             81957.97
OvertimePay                          6058.81
OtherPay                              1150.0
Benefits                                 NaN
TotalPay                            89166.78
TotalPayBenefits                    89166.78
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 11991, dtype: object)
(11992, Id                          11993
EmployeeName          KEVIN GARRY
JobTitle              FIREFIGHTER
BasePay                   77581.1
OvertimePay               1625.13
OtherPay                  9940.08
Benefits                      NaN
TotalPay                 89146.31
TotalPayBenefits         89146.31
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11992, dtype: object)
(11993, Id                            11994
EmployeeName        EDGARDO VERGARA
JobTitle              SPECIAL NURSE
BasePay                    76554.01
OvertimePay                 1969.19
OtherPay                   10620.77
Benefits                        NaN
TotalPay                   89143.97
TotalPayBenefits           89143.97
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 11993, dtype: object)
(11994, Id                          11995
EmployeeName         GLENN FOSTER
JobTitle            SPECIAL NURSE
BasePay                  86695.45
OvertimePay                   0.0
OtherPay                  2447.07
Benefits                      NaN
TotalPay                 89142.52
TotalPayBenefits         89142.52
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11994, dtype: object)
(11995, Id                             11996
EmployeeName        DARRELL GONZALES
JobTitle                TRUCK DRIVER
BasePay                     75102.95
OvertimePay                 11070.21
OtherPay                     2967.06
Benefits                         NaN
TotalPay                    89140.22
TotalPayBenefits            89140.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11995, dtype: object)
(11996, Id                          11997
EmployeeName         ROBERT IVORY
JobTitle            SPECIAL NURSE
BasePay                  68463.53
OvertimePay               5266.45
OtherPay                 15405.45
Benefits                      NaN
TotalPay                 89135.43
TotalPayBenefits         89135.43
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 11996, dtype: object)
(11997, Id                             11998
EmployeeName            ARTURO PEREZ
JobTitle            TRANSIT OPERATOR
BasePay                     66629.87
OvertimePay                 21521.74
OtherPay                      983.17
Benefits                         NaN
TotalPay                    89134.78
TotalPayBenefits            89134.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11997, dtype: object)
(11998, Id                             11999
EmployeeName         RUBEN ESTANDIAN
JobTitle            TRANSIT OPERATOR
BasePay                     65942.34
OvertimePay                 19041.34
OtherPay                     4149.89
Benefits                         NaN
TotalPay                    89133.57
TotalPayBenefits            89133.57
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11998, dtype: object)
(11999, Id                             12000
EmployeeName         NATHANIEL MOORE
JobTitle            TRANSIT OPERATOR
BasePay                     64975.87
OvertimePay                 22006.37
OtherPay                     2150.89
Benefits                         NaN
TotalPay                    89133.13
TotalPayBenefits            89133.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 11999, dtype: object)
(12000, Id                           12001
EmployeeName           ROBERT ROOD
JobTitle            DEPUTY SHERIFF
BasePay                    77822.0
OvertimePay                5861.08
OtherPay                   5444.21
Benefits                       NaN
TotalPay                  89127.29
TotalPayBenefits          89127.29
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12000, dtype: object)
(12001, Id                                                    12002
EmployeeName                                MONICA MARTINEZ
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            76268.63
OvertimePay                                         6338.36
OtherPay                                            6512.75
Benefits                                                NaN
TotalPay                                           89119.74
TotalPayBenefits                                   89119.74
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12001, dtype: object)
(12002, Id                          12003
EmployeeName         COREY TEAGUE
JobTitle              PLANNER III
BasePay                  89118.75
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 89118.75
TotalPayBenefits         89118.75
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12002, dtype: object)
(12003, Id                                               12004
EmployeeName                                   JOEY WU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                       72081.04
OvertimePay                                   10160.06
OtherPay                                       6872.12
Benefits                                           NaN
TotalPay                                      89113.22
TotalPayBenefits                              89113.22
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 12003, dtype: object)
(12004, Id                          12005
EmployeeName             YULAN HU
JobTitle            SPECIAL NURSE
BasePay                  85394.55
OvertimePay                   0.0
OtherPay                   3698.0
Benefits                      NaN
TotalPay                 89092.55
TotalPayBenefits         89092.55
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12004, dtype: object)
(12005, Id                                       12006
EmployeeName                    ROBERT EDWARDS
JobTitle            PILEDRIVER ENGINE OPERATOR
BasePay                               86670.34
OvertimePay                             688.86
OtherPay                               1726.57
Benefits                                   NaN
TotalPay                              89085.77
TotalPayBenefits                      89085.77
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12005, dtype: object)
(12006, Id                             12007
EmployeeName            WARREN RUBIT
JobTitle            TRANSIT OPERATOR
BasePay                     68125.06
OvertimePay                 20582.11
OtherPay                       375.2
Benefits                         NaN
TotalPay                    89082.37
TotalPayBenefits            89082.37
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12006, dtype: object)
(12007, Id                                                  12008
EmployeeName                                 JOSE MENDOZA
JobTitle            SENIOR PUBLIC DEFENDER'S INVESTIGATOR
BasePay                                           87018.2
OvertimePay                                           0.0
OtherPay                                           2064.0
Benefits                                              NaN
TotalPay                                          89082.2
TotalPayBenefits                                  89082.2
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 12007, dtype: object)
(12008, Id                            12009
EmployeeName        KEVIN PATTERSON
JobTitle                PILE WORKER
BasePay                    84155.82
OvertimePay                     0.0
OtherPay                     4924.0
Benefits                        NaN
TotalPay                   89079.82
TotalPayBenefits           89079.82
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12008, dtype: object)
(12009, Id                             12010
EmployeeName              PHU TRUONG
JobTitle            TRANSIT OPERATOR
BasePay                     64995.96
OvertimePay                 21510.14
OtherPay                     2564.31
Benefits                         NaN
TotalPay                    89070.41
TotalPayBenefits            89070.41
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12009, dtype: object)
(12010, Id                                   12011
EmployeeName                 CLITON BAILEY
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           77847.15
OvertimePay                        4693.82
OtherPay                           6526.21
Benefits                               NaN
TotalPay                          89067.18
TotalPayBenefits                  89067.18
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12010, dtype: object)
(12011, Id                             12012
EmployeeName        BOUNMY RASACHACK
JobTitle            TRANSIT OPERATOR
BasePay                      63714.5
OvertimePay                 24207.46
OtherPay                      1141.2
Benefits                         NaN
TotalPay                    89063.16
TotalPayBenefits            89063.16
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12011, dtype: object)
(12012, Id                             12013
EmployeeName                CHI WONG
JobTitle            TRANSIT OPERATOR
BasePay                     66254.38
OvertimePay                 19327.58
OtherPay                      3478.4
Benefits                         NaN
TotalPay                    89060.36
TotalPayBenefits            89060.36
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12012, dtype: object)
(12013, Id                                              12014
EmployeeName                          SAMUEL AVILA-JR
JobTitle            AUTOMOTIVE BODY AND FENDER WORKER
BasePay                                       74980.6
OvertimePay                                   4610.86
OtherPay                                      9464.39
Benefits                                          NaN
TotalPay                                     89055.85
TotalPayBenefits                             89055.85
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12013, dtype: object)
(12014, Id                                          12015
EmployeeName                          PAUL LARSON
JobTitle            OPERATING ENGINEER, UNIVERSAL
BasePay                                   85075.0
OvertimePay                               2316.58
OtherPay                                  1664.18
Benefits                                      NaN
TotalPay                                 89055.76
TotalPayBenefits                         89055.76
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12014, dtype: object)
(12015, Id                           12016
EmployeeName        GABRIEL LLAMAS
JobTitle                 CARPENTER
BasePay                   78775.25
OvertimePay                 8308.3
OtherPay                    1969.0
Benefits                       NaN
TotalPay                  89052.55
TotalPayBenefits          89052.55
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12015, dtype: object)
(12016, Id                             12017
EmployeeName              KEVIN WONG
JobTitle            TRANSIT OPERATOR
BasePay                     66879.02
OvertimePay                 17068.34
OtherPay                     5085.88
Benefits                         NaN
TotalPay                    89033.24
TotalPayBenefits            89033.24
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12016, dtype: object)
(12017, Id                                             12018
EmployeeName                       MERCEDES BISCOCHO
JobTitle            SENIOR PERSONAL PROPERTY AUDITOR
BasePay                                     88552.08
OvertimePay                                      0.0
OtherPay                                       480.0
Benefits                                         NaN
TotalPay                                    89032.08
TotalPayBenefits                            89032.08
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 12017, dtype: object)
(12018, Id                                12019
EmployeeName           SHASHIKANT PATEL
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72271.2
OvertimePay                    13317.97
OtherPay                        3435.73
Benefits                            NaN
TotalPay                        89024.9
TotalPayBenefits                89024.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12018, dtype: object)
(12019, Id                                              12020
EmployeeName                          NICK STISHENCKO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79820.02
OvertimePay                                   3217.76
OtherPay                                      5986.65
Benefits                                          NaN
TotalPay                                     89024.43
TotalPayBenefits                             89024.43
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12019, dtype: object)
(12020, Id                           12021
EmployeeName        MICHAEL PETRIE
JobTitle             FUSION WELDER
BasePay                   86660.31
OvertimePay                    0.0
OtherPay                   2359.72
Benefits                       NaN
TotalPay                  89020.03
TotalPayBenefits          89020.03
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12020, dtype: object)
(12021, Id                             12022
EmployeeName            BENSON EGBON
JobTitle            TRANSIT OPERATOR
BasePay                     68114.44
OvertimePay                 17901.33
OtherPay                     3001.45
Benefits                         NaN
TotalPay                    89017.22
TotalPayBenefits            89017.22
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12021, dtype: object)
(12022, Id                                 12023
EmployeeName        MARIA ALARCON-VISCIO
JobTitle                  COURT REPORTER
BasePay                         84376.38
OvertimePay                          0.0
OtherPay                         4640.08
Benefits                             NaN
TotalPay                        89016.46
TotalPayBenefits                89016.46
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 12022, dtype: object)
(12023, Id                                      12024
EmployeeName                 JOSE FAJILAGUTAN
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               58089.5
OvertimePay                          17569.18
OtherPay                             13354.55
Benefits                                  NaN
TotalPay                             89013.23
TotalPayBenefits                     89013.23
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 12023, dtype: object)
(12024, Id                          12025
EmployeeName           EDWIN WONG
JobTitle              ELECTRICIAN
BasePay                  87122.41
OvertimePay                   0.0
OtherPay                   1890.0
Benefits                      NaN
TotalPay                 89012.41
TotalPayBenefits         89012.41
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12024, dtype: object)
(12025, Id                                       12026
EmployeeName                         EILEEN MO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83568.87
OvertimePay                                0.0
OtherPay                               5439.77
Benefits                                   NaN
TotalPay                              89008.64
TotalPayBenefits                      89008.64
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12025, dtype: object)
(12026, Id                               12027
EmployeeName         JESUS ALMAGUER JR
JobTitle            ASSISTANT ENGINEER
BasePay                        87832.1
OvertimePay                        0.0
OtherPay                       1168.78
Benefits                           NaN
TotalPay                      89000.88
TotalPayBenefits              89000.88
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12026, dtype: object)
(12027, Id                               12028
EmployeeName               JOSE FLORES
JobTitle            ASSISTANT ENGINEER
BasePay                       88997.58
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88997.58
TotalPayBenefits              88997.58
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12027, dtype: object)
(12028, Id                                          12029
EmployeeName                    JULIAN SAPIRSTEIN
JobTitle            MENTAL HEALTH HEARING OFFICER
BasePay                                   88996.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  88996.4
TotalPayBenefits                          88996.4
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12028, dtype: object)
(12029, Id                           12030
EmployeeName             EDMUND WU
JobTitle            DEPUTY SHERIFF
BasePay                   81522.53
OvertimePay                2566.19
OtherPay                   4906.49
Benefits                       NaN
TotalPay                  88995.21
TotalPayBenefits          88995.21
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12029, dtype: object)
(12030, Id                             12031
EmployeeName            RAMON JEMERA
JobTitle            TRANSIT OPERATOR
BasePay                     65114.61
OvertimePay                 22020.38
OtherPay                     1856.15
Benefits                         NaN
TotalPay                    88991.14
TotalPayBenefits            88991.14
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12030, dtype: object)
(12031, Id                               12032
EmployeeName              DONALD WALSH
JobTitle            TRANSIT SUPERVISOR
BasePay                       84409.59
OvertimePay                    1562.25
OtherPay                       3019.19
Benefits                           NaN
TotalPay                      88991.03
TotalPayBenefits              88991.03
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12031, dtype: object)
(12032, Id                                   12033
EmployeeName              MICHELLE ESTRADA
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                           77452.94
OvertimePay                        5838.17
OtherPay                            5694.1
Benefits                               NaN
TotalPay                          88985.21
TotalPayBenefits                  88985.21
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12032, dtype: object)
(12033, Id                                     12034
EmployeeName                   KEVIN JACKSON
JobTitle            TREE TOPPER SUPERVISOR I
BasePay                             81009.07
OvertimePay                          6487.48
OtherPay                             1484.43
Benefits                                 NaN
TotalPay                            88980.98
TotalPayBenefits                    88980.98
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 12033, dtype: object)
(12034, Id                                12035
EmployeeName        ANTONIO GONZALEZ JR
JobTitle               TRANSIT OPERATOR
BasePay                        60628.44
OvertimePay                    26778.24
OtherPay                        1572.86
Benefits                            NaN
TotalPay                       88979.54
TotalPayBenefits               88979.54
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12034, dtype: object)
(12035, Id                                       12036
EmployeeName                     RONALD LEROHL
JobTitle            SENIOR STATIONARY ENGINEER
BasePay                                82056.0
OvertimePay                            1179.99
OtherPay                               5726.67
Benefits                                   NaN
TotalPay                              88962.66
TotalPayBenefits                      88962.66
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12035, dtype: object)
(12036, Id                            12037
EmployeeName        DAVID MARROQUIN
JobTitle               TRUCK DRIVER
BasePay                    73479.91
OvertimePay                 10340.4
OtherPay                     5137.2
Benefits                        NaN
TotalPay                   88957.51
TotalPayBenefits           88957.51
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12036, dtype: object)
(12037, Id                                        12038
EmployeeName                     STANLEY YANTIS
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 84716.3
OvertimePay                                 0.0
OtherPay                                4236.02
Benefits                                    NaN
TotalPay                               88952.32
TotalPayBenefits                       88952.32
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 12037, dtype: object)
(12038, Id                          12039
EmployeeName        DARRYL WEARIN
JobTitle              ELECTRICIAN
BasePay                   87122.4
OvertimePay               1229.55
OtherPay                    598.0
Benefits                      NaN
TotalPay                 88949.95
TotalPayBenefits         88949.95
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12038, dtype: object)
(12039, Id                                                             12040
EmployeeName                                        MARIO MONTOYA-JR
JobTitle            STREET ENVIRONMENTAL SERVICES OPERATIONS SUPERVI
BasePay                                                     86056.19
OvertimePay                                                   824.21
OtherPay                                                     2061.05
Benefits                                                         NaN
TotalPay                                                    88941.45
TotalPayBenefits                                            88941.45
Year                                                            2011
Notes                                                            NaN
Agency                                                 San Francisco
Status                                                           NaN
Name: 12039, dtype: object)
(12040, Id                             12041
EmployeeName        MICHAEL HALLIGAN
JobTitle                   CARPENTER
BasePay                     77837.49
OvertimePay                  8938.43
OtherPay                      2156.6
Benefits                         NaN
TotalPay                    88932.52
TotalPayBenefits            88932.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12040, dtype: object)
(12041, Id                                12042
EmployeeName                  DORIS TOM
JobTitle            PUBLIC HEALTH NURSE
BasePay                         70329.6
OvertimePay                         0.0
OtherPay                       18595.03
Benefits                            NaN
TotalPay                       88924.63
TotalPayBenefits               88924.63
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12041, dtype: object)
(12042, Id                                           12043
EmployeeName                        JOSEPH WALSETH
JobTitle            HEALTH PROGRAM COORDINATOR III
BasePay                                   88916.87
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  88916.87
TotalPayBenefits                          88916.87
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12042, dtype: object)
(12043, Id                               12044
EmployeeName              COLIN PATTON
JobTitle            ASSISTANT ENGINEER
BasePay                       88915.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88915.02
TotalPayBenefits              88915.02
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12043, dtype: object)
(12044, Id                                       12045
EmployeeName              MARIA ELENA MARTINEZ
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                                83472.6
OvertimePay                                0.0
OtherPay                               5433.36
Benefits                                   NaN
TotalPay                              88905.96
TotalPayBenefits                      88905.96
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12044, dtype: object)
(12045, Id                                            12046
EmployeeName                         DEEPA PULIPATI
JobTitle            COUNSELOR, FAMILY COURT SERVICE
BasePay                                    84665.54
OvertimePay                                     0.0
OtherPay                                    4234.11
Benefits                                        NaN
TotalPay                                   88899.65
TotalPayBenefits                           88899.65
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 12045, dtype: object)
(12046, Id                                   12047
EmployeeName                    TAN NGUYEN
JobTitle            FIRE FIGHTER PARAMEDIC
BasePay                            75690.3
OvertimePay                        3330.46
OtherPay                           9873.38
Benefits                               NaN
TotalPay                          88894.14
TotalPayBenefits                  88894.14
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12046, dtype: object)
(12047, Id                             12048
EmployeeName              JAMES HECK
JobTitle            SURVEY ASSOCIATE
BasePay                      87191.0
OvertimePay                  1699.74
OtherPay                         0.0
Benefits                         NaN
TotalPay                    88890.74
TotalPayBenefits            88890.74
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12047, dtype: object)
(12048, Id                             12049
EmployeeName          JOSE RODRIGUEZ
JobTitle            TRANSIT OPERATOR
BasePay                     63524.09
OvertimePay                  20934.0
OtherPay                     4430.56
Benefits                         NaN
TotalPay                    88888.65
TotalPayBenefits            88888.65
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12048, dtype: object)
(12049, Id                                                    12050
EmployeeName                                    LESLI YOUNG
JobTitle            SENIOR POLICE COMMUNICATIONS DISPATCHER
BasePay                                            81651.58
OvertimePay                                         1778.02
OtherPay                                            5457.52
Benefits                                                NaN
TotalPay                                           88887.12
TotalPayBenefits                                   88887.12
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12049, dtype: object)
(12050, Id                             12051
EmployeeName            TSOMBE WOLFE
JobTitle            TRANSIT OPERATOR
BasePay                     66574.99
OvertimePay                  17079.8
OtherPay                     5224.22
Benefits                         NaN
TotalPay                    88879.01
TotalPayBenefits            88879.01
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12050, dtype: object)
(12051, Id                          12052
EmployeeName        THOMAS HACKER
JobTitle                CARPENTER
BasePay                  74711.53
OvertimePay              11927.65
OtherPay                   2238.2
Benefits                      NaN
TotalPay                 88877.38
TotalPayBenefits         88877.38
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12051, dtype: object)
(12052, Id                                  12053
EmployeeName        CYNTHIA WEBB-BECKFORD
JobTitle               COURT INVESTIGATOR
BasePay                           88874.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              NaN
TotalPay                          88874.5
TotalPayBenefits                  88874.5
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 12052, dtype: object)
(12053, Id                                                       12054
EmployeeName                                  TERRENCE GARDNER
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                               74140.63
OvertimePay                                            2722.71
OtherPay                                              12010.73
Benefits                                                   NaN
TotalPay                                              88874.07
TotalPayBenefits                                      88874.07
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 12053, dtype: object)
(12054, Id                             12055
EmployeeName               JIMMY WON
JobTitle            TRANSIT OPERATOR
BasePay                     62203.85
OvertimePay                 26542.57
OtherPay                      121.39
Benefits                         NaN
TotalPay                    88867.81
TotalPayBenefits            88867.81
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12054, dtype: object)
(12055, Id                                              12056
EmployeeName                          KEVIN GUSTAFSON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       79820.0
OvertimePay                                   2660.89
OtherPay                                      6386.67
Benefits                                          NaN
TotalPay                                     88867.56
TotalPayBenefits                             88867.56
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12055, dtype: object)
(12056, Id                             12057
EmployeeName          THURSTON TRINH
JobTitle            TRANSIT OPERATOR
BasePay                     65550.34
OvertimePay                 21098.52
OtherPay                     2213.05
Benefits                         NaN
TotalPay                    88861.91
TotalPayBenefits            88861.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12056, dtype: object)
(12057, Id                                          12058
EmployeeName                           EVIE VALLE
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  87858.11
OvertimePay                                   0.0
OtherPay                                   1000.0
Benefits                                      NaN
TotalPay                                 88858.11
TotalPayBenefits                         88858.11
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12057, dtype: object)
(12058, Id                                     12059
EmployeeName            FERNANDO DELOS REYES
JobTitle            ENGINEERING ASSOCIATE II
BasePay                             88330.47
OvertimePay                           521.85
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                            88852.32
TotalPayBenefits                    88852.32
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 12058, dtype: object)
(12059, Id                                12060
EmployeeName             SUI FENG HUANG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                         72782.7
OvertimePay                    12054.59
OtherPay                         3993.5
Benefits                            NaN
TotalPay                       88830.79
TotalPayBenefits               88830.79
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12059, dtype: object)
(12060, Id                                              12061
EmployeeName                          ISMAELITO SOTTO
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      79860.61
OvertimePay                                   2970.26
OtherPay                                      5989.72
Benefits                                          NaN
TotalPay                                     88820.59
TotalPayBenefits                             88820.59
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12060, dtype: object)
(12061, Id                                12062
EmployeeName                 SIMON FONG
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72453.87
OvertimePay                    14825.08
OtherPay                        1525.36
Benefits                            NaN
TotalPay                       88804.31
TotalPayBenefits               88804.31
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12061, dtype: object)
(12062, Id                                                12063
EmployeeName                            LALAINE SALARDA
JobTitle            MENTAL HEALTH REHABILITATION WORKER
BasePay                                         59967.1
OvertimePay                                    23713.56
OtherPay                                        5117.94
Benefits                                            NaN
TotalPay                                        88798.6
TotalPayBenefits                                88798.6
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 12062, dtype: object)
(12063, Id                                                    12064
EmployeeName                                       LISA LEE
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            71606.94
OvertimePay                                         10763.4
OtherPay                                            6420.31
Benefits                                                NaN
TotalPay                                           88790.65
TotalPayBenefits                                   88790.65
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12063, dtype: object)
(12064, Id                                              12065
EmployeeName                                 THUY BUI
JobTitle            IS PROGRAMMER ANALYST - PRINCIPAL
BasePay                                      86887.21
OvertimePay                                   1901.27
OtherPay                                          0.0
Benefits                                          NaN
TotalPay                                     88788.48
TotalPayBenefits                             88788.48
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12064, dtype: object)
(12065, Id                               12066
EmployeeName        GREGORY RICHARDSON
JobTitle              TRANSIT OPERATOR
BasePay                       65366.14
OvertimePay                    21034.2
OtherPay                        2380.9
Benefits                           NaN
TotalPay                      88781.24
TotalPayBenefits              88781.24
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12065, dtype: object)
(12066, Id                           12067
EmployeeName         ARNEL MARACHA
JobTitle            DEPUTY SHERIFF
BasePay                   84609.82
OvertimePay                  501.0
OtherPay                   3668.74
Benefits                       NaN
TotalPay                  88779.56
TotalPayBenefits          88779.56
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12066, dtype: object)
(12067, Id                                                    12068
EmployeeName                               CHRISTINE BUTLER
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            73109.26
OvertimePay                                         6607.02
OtherPay                                            9062.54
Benefits                                                NaN
TotalPay                                           88778.82
TotalPayBenefits                                   88778.82
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12067, dtype: object)
(12068, Id                                      12069
EmployeeName                     HOI YUEN LEE
JobTitle            AUTOMOTIVE SERVICE WORKER
BasePay                               59037.9
OvertimePay                          16462.29
OtherPay                             13277.22
Benefits                                  NaN
TotalPay                             88777.41
TotalPayBenefits                     88777.41
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 12068, dtype: object)
(12069, Id                           12070
EmployeeName         ALLAN AGUSTIN
JobTitle            DEPUTY SHERIFF
BasePay                   78367.85
OvertimePay                4734.97
OtherPay                   5667.03
Benefits                       NaN
TotalPay                  88769.85
TotalPayBenefits          88769.85
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12069, dtype: object)
(12070, Id                                              12071
EmployeeName                       FREDERICK HARTWELL
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                      82108.85
OvertimePay                                    495.05
OtherPay                                      6158.34
Benefits                                          NaN
TotalPay                                     88762.24
TotalPayBenefits                             88762.24
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12070, dtype: object)
(12071, Id                          12072
EmployeeName          VICTOR WONG
JobTitle                LOCKSMITH
BasePay                   76430.7
OvertimePay              10696.78
OtherPay                   1634.2
Benefits                      NaN
TotalPay                 88761.68
TotalPayBenefits         88761.68
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12071, dtype: object)
(12072, Id                                12073
EmployeeName           REGINALDO AQUINO
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                     9921.57
OtherPay                        6425.33
Benefits                            NaN
TotalPay                        88756.9
TotalPayBenefits                88756.9
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12072, dtype: object)
(12073, Id                                12074
EmployeeName                TANYA BROWN
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    23454.16
OtherPay                        9416.71
Benefits                            NaN
TotalPay                       88750.87
TotalPayBenefits               88750.87
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12073, dtype: object)
(12074, Id                                                       12075
EmployeeName                                      JEFFREY MANN
JobTitle            STATIONARY ENGINEER, WATER TREATMENT PLANT
BasePay                                                79666.5
OvertimePay                                            2691.81
OtherPay                                               6386.63
Benefits                                                   NaN
TotalPay                                              88744.94
TotalPayBenefits                                      88744.94
Year                                                      2011
Notes                                                      NaN
Agency                                           San Francisco
Status                                                     NaN
Name: 12074, dtype: object)
(12075, Id                                                        12076
EmployeeName                                  NATIVIDAD RAMIREZ
JobTitle            ASSISTANT CHIEF VICTIM/WITNESS INVESTIGATOR
BasePay                                                87694.21
OvertimePay                                                 0.0
OtherPay                                                 1040.0
Benefits                                                    NaN
TotalPay                                               88734.21
TotalPayBenefits                                       88734.21
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 12075, dtype: object)
(12076, Id                           12077
EmployeeName        BONNIE BOMPART
JobTitle            BIOLOGIST I/II
BasePay                   87618.99
OvertimePay                    0.0
OtherPay                    1115.0
Benefits                       NaN
TotalPay                  88733.99
TotalPayBenefits          88733.99
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12076, dtype: object)
(12077, Id                                            12078
EmployeeName                         ANTONIA SIVYER
JobTitle            PLANNER IV-ENVIRONMENTAL REVIEW
BasePay                                    85757.55
OvertimePay                                     0.0
OtherPay                                    2972.57
Benefits                                        NaN
TotalPay                                   88730.12
TotalPayBenefits                           88730.12
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 12077, dtype: object)
(12078, Id                                        12079
EmployeeName                           ALAN LAI
JobTitle            SENIOR PHYSICIAN SPECIALIST
BasePay                                 84504.0
OvertimePay                                 0.0
OtherPay                                4225.48
Benefits                                    NaN
TotalPay                               88729.48
TotalPayBenefits                       88729.48
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 12078, dtype: object)
(12079, Id                                     12080
EmployeeName                 MICHAEL JOHNSON
JobTitle            DEPUTY PROBATION OFFICER
BasePay                              81958.0
OvertimePay                           6768.4
OtherPay                                 0.0
Benefits                                 NaN
TotalPay                             88726.4
TotalPayBenefits                     88726.4
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 12079, dtype: object)
(12080, Id                                       12081
EmployeeName                        CHRIS CHAN
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.59
OvertimePay                                0.0
OtherPay                               4818.84
Benefits                                   NaN
TotalPay                              88721.43
TotalPayBenefits                      88721.43
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12080, dtype: object)
(12081, Id                                       12082
EmployeeName                          LILY YEE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83902.58
OvertimePay                                0.0
OtherPay                               4818.84
Benefits                                   NaN
TotalPay                              88721.42
TotalPayBenefits                      88721.42
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12081, dtype: object)
(12082, Id                                  12083
EmployeeName                 WILLIAM ROLD
JobTitle            SENIOR DEPUTY SHERIFF
BasePay                          77547.67
OvertimePay                       2611.31
OtherPay                           8553.3
Benefits                              NaN
TotalPay                         88712.28
TotalPayBenefits                 88712.28
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 12082, dtype: object)
(12083, Id                                       12084
EmployeeName                  YVONNE DICKERSON
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83890.41
OvertimePay                                0.0
OtherPay                               4817.94
Benefits                                   NaN
TotalPay                              88708.35
TotalPayBenefits                      88708.35
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12083, dtype: object)
(12084, Id                           12085
EmployeeName           RAMON AGUAS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 590.87
OtherPay                   1611.38
Benefits                       NaN
TotalPay                  88708.25
TotalPayBenefits          88708.25
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12084, dtype: object)
(12085, Id                                              12086
EmployeeName                            ERIC ELIASSON
JobTitle            STATIONARY ENGINEER, SEWAGE PLANT
BasePay                                       77824.5
OvertimePay                                    7776.5
OtherPay                                       3104.4
Benefits                                          NaN
TotalPay                                      88705.4
TotalPayBenefits                              88705.4
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12085, dtype: object)
(12086, Id                                       12087
EmployeeName                     DEBRA CULWELL
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                                0.0
OtherPay                               4817.79
Benefits                                   NaN
TotalPay                              88699.11
TotalPayBenefits                      88699.11
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12086, dtype: object)
(12087, Id                                       12088
EmployeeName                   BARBARA HIGGINS
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                                0.0
OtherPay                               4817.79
Benefits                                   NaN
TotalPay                              88699.11
TotalPayBenefits                      88699.11
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12087, dtype: object)
(12088, Id                             12089
EmployeeName              JEAN ELLIS
JobTitle            TRANSIT OPERATOR
BasePay                     67161.57
OvertimePay                 21494.24
OtherPay                       41.94
Benefits                         NaN
TotalPay                    88697.75
TotalPayBenefits            88697.75
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12088, dtype: object)
(12089, Id                                           12090
EmployeeName                      NATALYA EPELBAUM
JobTitle            SENIOR REAL PROPERTY APPRAISER
BasePay                                   86492.91
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                       NaN
TotalPay                                  88692.91
TotalPayBenefits                          88692.91
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12089, dtype: object)
(12090, Id                           12091
EmployeeName           ANNE KOFMAN
JobTitle            DEPUTY SHERIFF
BasePay                   79402.77
OvertimePay                3013.78
OtherPay                   6273.45
Benefits                       NaN
TotalPay                   88690.0
TotalPayBenefits           88690.0
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12090, dtype: object)
(12091, Id                               12092
EmployeeName               CLAYTON TAM
JobTitle            ASSISTANT ENGINEER
BasePay                       88688.16
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88688.16
TotalPayBenefits              88688.16
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12091, dtype: object)
(12092, Id                                12093
EmployeeName             NELSON LIWANAG
JobTitle            STATIONARY ENGINEER
BasePay                         72447.1
OvertimePay                     3503.91
OtherPay                       12733.73
Benefits                            NaN
TotalPay                       88684.74
TotalPayBenefits               88684.74
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12092, dtype: object)
(12093, Id                              12094
EmployeeName            MOHAMMED KHAN
JobTitle            PARTS STOREKEEPER
BasePay                       57061.4
OvertimePay                  29423.74
OtherPay                      2194.91
Benefits                          NaN
TotalPay                     88680.05
TotalPayBenefits             88680.05
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12093, dtype: object)
(12094, Id                           12095
EmployeeName         ANNETTE ALLEN
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                1255.02
OtherPay                    912.44
Benefits                       NaN
TotalPay                  88673.46
TotalPayBenefits          88673.46
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12094, dtype: object)
(12095, Id                                          12096
EmployeeName                            JOHN CHAN
JobTitle            SENIOR ADMINISTRATIVE ANALYST
BasePay                                  88655.79
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88655.79
TotalPayBenefits                         88655.79
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12095, dtype: object)
(12096, Id                           12097
EmployeeName           OTHA COTTON
JobTitle            DEPUTY SHERIFF
BasePay                   86338.21
OvertimePay                 876.76
OtherPay                    1434.2
Benefits                       NaN
TotalPay                  88649.17
TotalPayBenefits          88649.17
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12096, dtype: object)
(12097, Id                              12098
EmployeeName        MATTHEW WEINTRAUB
JobTitle                  PLANNER III
BasePay                      82224.07
OvertimePay                       0.0
OtherPay                       6423.6
Benefits                          NaN
TotalPay                     88647.67
TotalPayBenefits             88647.67
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12097, dtype: object)
(12098, Id                                      12099
EmployeeName                 MILDRED ZARAGOZA
JobTitle            SENIOR SYSTEMS ACCOUNTANT
BasePay                              88646.76
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  NaN
TotalPay                             88646.76
TotalPayBenefits                     88646.76
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 12098, dtype: object)
(12099, Id                                12100
EmployeeName               MATTHEW PLUT
JobTitle            STATIONARY ENGINEER
BasePay                         73114.9
OvertimePay                     2241.96
OtherPay                       13273.07
Benefits                            NaN
TotalPay                       88629.93
TotalPayBenefits               88629.93
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12099, dtype: object)
(12100, Id                                       12101
EmployeeName                    LILLER JACKSON
JobTitle            COUNSELOR, LOG CABIN RANCH
BasePay                               65509.79
OvertimePay                           15862.68
OtherPay                               7257.12
Benefits                                   NaN
TotalPay                              88629.59
TotalPayBenefits                      88629.59
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12100, dtype: object)
(12101, Id                             12102
EmployeeName          WILLIE JOHNSON
JobTitle            TRANSIT OPERATOR
BasePay                     66623.36
OvertimePay                  21527.8
OtherPay                      468.64
Benefits                         NaN
TotalPay                     88619.8
TotalPayBenefits             88619.8
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12101, dtype: object)
(12102, Id                                12103
EmployeeName           BENEDICTO VARGAS
JobTitle            STATIONARY ENGINEER
BasePay                         72447.1
OvertimePay                     4475.94
OtherPay                       11693.38
Benefits                            NaN
TotalPay                       88616.42
TotalPayBenefits               88616.42
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12102, dtype: object)
(12103, Id                             12104
EmployeeName             JORGE ELIAS
JobTitle            TRANSIT OPERATOR
BasePay                     64446.88
OvertimePay                 21776.61
OtherPay                     2389.72
Benefits                         NaN
TotalPay                    88613.21
TotalPayBenefits            88613.21
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12103, dtype: object)
(12104, Id                             12105
EmployeeName          DOUGLAS GRIGGS
JobTitle            TRANSIT OPERATOR
BasePay                     64095.01
OvertimePay                 23975.19
OtherPay                      539.42
Benefits                         NaN
TotalPay                    88609.62
TotalPayBenefits            88609.62
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12104, dtype: object)
(12105, Id                                                    12106
EmployeeName                                KIMBERLEY TUYAY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                             77120.5
OvertimePay                                         5497.62
OtherPay                                            5988.59
Benefits                                                NaN
TotalPay                                           88606.71
TotalPayBenefits                                   88606.71
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12105, dtype: object)
(12106, Id                           12107
EmployeeName         CEASAR GARCIA
JobTitle            DEPUTY SHERIFF
BasePay                   86506.01
OvertimePay                 329.41
OtherPay                   1768.76
Benefits                       NaN
TotalPay                  88604.18
TotalPayBenefits          88604.18
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12106, dtype: object)
(12107, Id                                           12108
EmployeeName                          JULIE MEYERS
JobTitle            PROTECTIVE SERVICES SUPERVISOR
BasePay                                   84379.54
OvertimePay                                    0.0
OtherPay                                    4219.5
Benefits                                       NaN
TotalPay                                  88599.04
TotalPayBenefits                          88599.04
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12107, dtype: object)
(12108, Id                             12109
EmployeeName          JAMES ROBINSON
JobTitle            TRANSIT OPERATOR
BasePay                     66950.45
OvertimePay                 17776.85
OtherPay                     3867.96
Benefits                         NaN
TotalPay                    88595.26
TotalPayBenefits            88595.26
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12108, dtype: object)
(12109, Id                                       12110
EmployeeName                    JAIME BARDACKE
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83157.29
OvertimePay                                0.0
OtherPay                               5437.61
Benefits                                   NaN
TotalPay                               88594.9
TotalPayBenefits                       88594.9
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12109, dtype: object)
(12110, Id                            12111
EmployeeName           RUSSELL YUEN
JobTitle            UTILITY PLUMBER
BasePay                    85361.88
OvertimePay                     0.0
OtherPay                    3232.77
Benefits                        NaN
TotalPay                   88594.65
TotalPayBenefits           88594.65
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12110, dtype: object)
(12111, Id                                                    12112
EmployeeName                                   CLARENCE HOM
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78071.36
OvertimePay                                         6115.48
OtherPay                                            4405.81
Benefits                                                NaN
TotalPay                                           88592.65
TotalPayBenefits                                   88592.65
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12111, dtype: object)
(12112, Id                                12113
EmployeeName           VIRGILIO NADONZA
JobTitle            STATIONARY ENGINEER
BasePay                         72410.0
OvertimePay                     2663.19
OtherPay                       13511.94
Benefits                            NaN
TotalPay                       88585.13
TotalPayBenefits               88585.13
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12112, dtype: object)
(12113, Id                                       12114
EmployeeName                          ERICK LE
JobTitle            ARCHITECTURAL ASSOCIATE II
BasePay                                88585.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                   NaN
TotalPay                               88585.0
TotalPayBenefits                       88585.0
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12113, dtype: object)
(12114, Id                              12115
EmployeeName        DOMINGO BOBILA JR
JobTitle             REGISTERED NURSE
BasePay                       80112.7
OvertimePay                   3415.81
OtherPay                      5055.82
Benefits                          NaN
TotalPay                     88584.33
TotalPayBenefits             88584.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12114, dtype: object)
(12115, Id                          12116
EmployeeName          QUANSING TU
JobTitle             CHEMIST I/II
BasePay                  87619.12
OvertimePay                   0.0
OtherPay                    965.0
Benefits                      NaN
TotalPay                 88584.12
TotalPayBenefits         88584.12
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12115, dtype: object)
(12116, Id                                                12117
EmployeeName                             DARYL ROBINSON
JobTitle            PARKING METER REPAIRER SUPERVISOR I
BasePay                                        73163.99
OvertimePay                                    15206.22
OtherPay                                          210.0
Benefits                                            NaN
TotalPay                                       88580.21
TotalPayBenefits                               88580.21
Year                                               2011
Notes                                               NaN
Agency                                    San Francisco
Status                                              NaN
Name: 12116, dtype: object)
(12117, Id                                    12118
EmployeeName               PATRICIA MATTIAS
JobTitle            WATER SERVICE INSPECTOR
BasePay                             88449.2
OvertimePay                          130.98
OtherPay                                0.0
Benefits                                NaN
TotalPay                           88580.18
TotalPayBenefits                   88580.18
Year                                   2011
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 12117, dtype: object)
(12118, Id                                                    12119
EmployeeName                                    ANNE RASKIN
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            78270.06
OvertimePay                                         3792.07
OtherPay                                            6517.37
Benefits                                                NaN
TotalPay                                            88579.5
TotalPayBenefits                                    88579.5
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12118, dtype: object)
(12119, Id                                 12120
EmployeeName                  STEVEN LEE
JobTitle            IS ADMINISTRATOR III
BasePay                         88574.93
OvertimePay                          0.0
OtherPay                             0.0
Benefits                             NaN
TotalPay                        88574.93
TotalPayBenefits                88574.93
Year                                2011
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 12119, dtype: object)
(12120, Id                             12121
EmployeeName          GERALD DOMINGO
JobTitle            TRANSIT OPERATOR
BasePay                     66313.42
OvertimePay                 17913.78
OtherPay                     4341.44
Benefits                         NaN
TotalPay                    88568.64
TotalPayBenefits            88568.64
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12120, dtype: object)
(12121, Id                          12122
EmployeeName         MARIO ENCINA
JobTitle              ELECTRICIAN
BasePay                  86771.11
OvertimePay                395.21
OtherPay                   1400.0
Benefits                      NaN
TotalPay                 88566.32
TotalPayBenefits         88566.32
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12121, dtype: object)
(12122, Id                              12123
EmployeeName              ANITA MOPAS
JobTitle            NURSING ASSISTANT
BasePay                       60193.0
OvertimePay                  27486.33
OtherPay                        874.0
Benefits                          NaN
TotalPay                     88553.33
TotalPayBenefits             88553.33
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12122, dtype: object)
(12123, Id                                           12124
EmployeeName                         EDWARD PATTON
JobTitle            CONSERVATORSHIP/CASE MGNT SUPV
BasePay                                   88547.24
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                  88547.24
TotalPayBenefits                          88547.24
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12123, dtype: object)
(12124, Id                                             12125
EmployeeName                           KAHLIL BOYKIN
JobTitle            PRINCIPAL ADMINISTRATIVE ANALYST
BasePay                                     88544.41
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                         NaN
TotalPay                                    88544.41
TotalPayBenefits                            88544.41
Year                                            2011
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 12124, dtype: object)
(12125, Id                            12126
EmployeeName        ROLANDO BLANDON
JobTitle             DEPUTY SHERIFF
BasePay                    77225.99
OvertimePay                 6308.35
OtherPay                    5009.61
Benefits                        NaN
TotalPay                   88543.95
TotalPayBenefits           88543.95
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12125, dtype: object)
(12126, Id                               12127
EmployeeName          MARY ANNE ISRAEL
JobTitle            NURSE PRACTITIONER
BasePay                       87672.69
OvertimePay                        0.0
OtherPay                         850.0
Benefits                           NaN
TotalPay                      88522.69
TotalPayBenefits              88522.69
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12126, dtype: object)
(12127, Id                               12128
EmployeeName              JIANMIN FONG
JobTitle            ASSOCIATE ENGINEER
BasePay                       83622.79
OvertimePay                        0.0
OtherPay                       4897.29
Benefits                           NaN
TotalPay                      88520.08
TotalPayBenefits              88520.08
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12127, dtype: object)
(12128, Id                             12129
EmployeeName            JORGE LACAYO
JobTitle            TRANSIT OPERATOR
BasePay                     65011.61
OvertimePay                 20807.76
OtherPay                     2699.15
Benefits                         NaN
TotalPay                    88518.52
TotalPayBenefits            88518.52
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12128, dtype: object)
(12129, Id                                                    12130
EmployeeName                                     EMA SASAKI
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            73901.77
OvertimePay                                         5311.76
OtherPay                                            9303.53
Benefits                                                NaN
TotalPay                                           88517.06
TotalPayBenefits                                   88517.06
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12129, dtype: object)
(12130, Id                           12131
EmployeeName        EVELYN MENDOZA
JobTitle             SPECIAL NURSE
BasePay                    77382.3
OvertimePay                2043.78
OtherPay                   9089.69
Benefits                       NaN
TotalPay                  88515.77
TotalPayBenefits          88515.77
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12130, dtype: object)
(12131, Id                                          12132
EmployeeName                          BAYARD FONG
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.17
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.17
TotalPayBenefits                         88506.17
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12131, dtype: object)
(12132, Id                                          12133
EmployeeName                       CARMEN HERRERA
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.14
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.14
TotalPayBenefits                         88506.14
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12132, dtype: object)
(12133, Id                                          12134
EmployeeName                            GARY WONG
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.08
TotalPayBenefits                         88506.08
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12133, dtype: object)
(12134, Id                                          12135
EmployeeName                       TERRY ALESHIRE
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.07
TotalPayBenefits                         88506.07
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12134, dtype: object)
(12135, Id                                          12136
EmployeeName                       NAOMI STEINWAY
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.06
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.06
TotalPayBenefits                         88506.06
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12135, dtype: object)
(12136, Id                                          12137
EmployeeName                    MARY STARKWEATHER
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88506.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88506.05
TotalPayBenefits                         88506.05
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12136, dtype: object)
(12137, Id                                          12138
EmployeeName                            QUYEN NIM
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                   88506.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  88506.0
TotalPayBenefits                          88506.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12137, dtype: object)
(12138, Id                                          12139
EmployeeName                     SELORMEY DZIKUNU
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                   88506.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                  88506.0
TotalPayBenefits                          88506.0
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12138, dtype: object)
(12139, Id                          12140
EmployeeName         LILLIAN QUAN
JobTitle                  DENTIST
BasePay                   87304.0
OvertimePay                   0.0
OtherPay                   1200.0
Benefits                      NaN
TotalPay                  88504.0
TotalPayBenefits          88504.0
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12139, dtype: object)
(12140, Id                                  12141
EmployeeName                MICHAEL LYDON
JobTitle            MAINTENANCE MACHINIST
BasePay                          74803.83
OvertimePay                      13197.23
OtherPay                            500.0
Benefits                              NaN
TotalPay                         88501.06
TotalPayBenefits                 88501.06
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 12140, dtype: object)
(12141, Id                                   12142
EmployeeName              SHASHIKALA DAVID
JobTitle            DEPUTY COURT CLERK III
BasePay                           84352.02
OvertimePay                            0.0
OtherPay                           4147.21
Benefits                               NaN
TotalPay                          88499.23
TotalPayBenefits                  88499.23
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12141, dtype: object)
(12142, Id                            12143
EmployeeName        GERALD WILLIAMS
JobTitle             DEPUTY SHERIFF
BasePay                    84841.85
OvertimePay                  2884.2
OtherPay                     771.11
Benefits                        NaN
TotalPay                   88497.16
TotalPayBenefits           88497.16
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12142, dtype: object)
(12143, Id                           12144
EmployeeName        JACOB WELLISCH
JobTitle            DEPUTY SHERIFF
BasePay                   76629.03
OvertimePay                3836.47
OtherPay                   8026.04
Benefits                       NaN
TotalPay                  88491.54
TotalPayBenefits          88491.54
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12143, dtype: object)
(12144, Id                               12145
EmployeeName               NANCY KEYES
JobTitle            NURSE PRACTITIONER
BasePay                        84134.9
OvertimePay                    3508.59
OtherPay                        847.64
Benefits                           NaN
TotalPay                      88491.13
TotalPayBenefits              88491.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12144, dtype: object)
(12145, Id                               12146
EmployeeName             WAI LUN LEUNG
JobTitle            ASSISTANT ENGINEER
BasePay                       88486.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88486.04
TotalPayBenefits              88486.04
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12145, dtype: object)
(12146, Id                               12147
EmployeeName               JUDY BOWERS
JobTitle            TRANSIT SUPERVISOR
BasePay                       81410.77
OvertimePay                    4797.75
OtherPay                        2277.3
Benefits                           NaN
TotalPay                      88485.82
TotalPayBenefits              88485.82
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12146, dtype: object)
(12147, Id                                              12148
EmployeeName                        REGINALD SAUNDERS
JobTitle            AIRPORT COMMUNICATIONS SUPERVISOR
BasePay                                      86597.65
OvertimePay                                    510.27
OtherPay                                      1375.74
Benefits                                          NaN
TotalPay                                     88483.66
TotalPayBenefits                             88483.66
Year                                             2011
Notes                                             NaN
Agency                                  San Francisco
Status                                            NaN
Name: 12147, dtype: object)
(12148, Id                                                 12149
EmployeeName                                SCOT BURBANK
JobTitle            LANDSCAPE ARCHITECTURAL ASSOCIATE II
BasePay                                         88482.74
OvertimePay                                          0.0
OtherPay                                             0.0
Benefits                                             NaN
TotalPay                                        88482.74
TotalPayBenefits                                88482.74
Year                                                2011
Notes                                                NaN
Agency                                     San Francisco
Status                                               NaN
Name: 12148, dtype: object)
(12149, Id                                   12150
EmployeeName                   MARK DURBIN
JobTitle            AIRPORT SAFETY OFFICER
BasePay                           76990.65
OvertimePay                        7843.02
OtherPay                           3648.37
Benefits                               NaN
TotalPay                          88482.04
TotalPayBenefits                  88482.04
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12149, dtype: object)
(12150, Id                            12151
EmployeeName          KAREN JOUBERT
JobTitle            PRINCIPAL CLERK
BasePay                    63522.61
OvertimePay                23360.02
OtherPay                    1596.97
Benefits                        NaN
TotalPay                    88479.6
TotalPayBenefits            88479.6
Year                           2011
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 12150, dtype: object)
(12151, Id                          12152
EmployeeName          FRANK JONES
JobTitle              PLANNER III
BasePay                  88475.63
OvertimePay                   0.0
OtherPay                      0.0
Benefits                      NaN
TotalPay                 88475.63
TotalPayBenefits         88475.63
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12151, dtype: object)
(12152, Id                             12153
EmployeeName            ROEL VILLARO
JobTitle            TRANSIT OPERATOR
BasePay                     66187.06
OvertimePay                 19646.11
OtherPay                     2641.01
Benefits                         NaN
TotalPay                    88474.18
TotalPayBenefits            88474.18
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12152, dtype: object)
(12153, Id                                  12154
EmployeeName               WILLIAM THOMAS
JobTitle            PAINTER SUPERVISOR II
BasePay                           88049.5
OvertimePay                           0.0
OtherPay                            418.6
Benefits                              NaN
TotalPay                          88468.1
TotalPayBenefits                  88468.1
Year                                 2011
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 12153, dtype: object)
(12154, Id                             12155
EmployeeName            KATHRYN GUTA
JobTitle            REGISTERED NURSE
BasePay                     87139.13
OvertimePay                      0.0
OtherPay                      1325.0
Benefits                         NaN
TotalPay                    88464.13
TotalPayBenefits            88464.13
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12154, dtype: object)
(12155, Id                                            12156
EmployeeName                             JOAN TAYAG
JobTitle            AIRPORT COMMUNICATIONS OPERATOR
BasePay                                     73157.4
OvertimePay                                 8982.65
OtherPay                                    6322.21
Benefits                                        NaN
TotalPay                                   88462.26
TotalPayBenefits                           88462.26
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 12155, dtype: object)
(12156, Id                             12157
EmployeeName        CHRISTIAN ROBLES
JobTitle              DEPUTY SHERIFF
BasePay                     71335.63
OvertimePay                  17123.6
OtherPay                         0.0
Benefits                         NaN
TotalPay                    88459.23
TotalPayBenefits            88459.23
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12156, dtype: object)
(12157, Id                          12158
EmployeeName        BUTCH IGLESIA
JobTitle              ELECTRICIAN
BasePay                  87122.42
OvertimePay               1284.42
OtherPay                    32.93
Benefits                      NaN
TotalPay                 88439.77
TotalPayBenefits         88439.77
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12157, dtype: object)
(12158, Id                                        12159
EmployeeName                  STEPHEN FONSWORTH
JobTitle            SENIOR POWER HOUSE OPERATOR
BasePay                                80150.25
OvertimePay                             4537.26
OtherPay                                3750.83
Benefits                                    NaN
TotalPay                               88438.34
TotalPayBenefits                       88438.34
Year                                       2011
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 12158, dtype: object)
(12159, Id                                           12160
EmployeeName                          GEORGE MCLIN
JobTitle            IS PROGRAMMER ANALYST - SENIOR
BasePay                                    88429.3
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                       NaN
TotalPay                                   88429.3
TotalPayBenefits                           88429.3
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12159, dtype: object)
(12160, Id                                                    12161
EmployeeName                                  TERISA FALANI
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            74223.29
OvertimePay                                         5019.02
OtherPay                                            9182.18
Benefits                                                NaN
TotalPay                                           88424.49
TotalPayBenefits                                   88424.49
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12160, dtype: object)
(12161, Id                                          12162
EmployeeName                         IAN FERNANDO
JobTitle            CONTRACT COMPLIANCE OFFICER I
BasePay                                  88420.75
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                      NaN
TotalPay                                 88420.75
TotalPayBenefits                         88420.75
Year                                         2011
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 12161, dtype: object)
(12162, Id                           12163
EmployeeName        EUGENE ALVAREZ
JobTitle            DEPUTY SHERIFF
BasePay                   77772.85
OvertimePay                2290.71
OtherPay                   8357.06
Benefits                       NaN
TotalPay                  88420.62
TotalPayBenefits          88420.62
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12162, dtype: object)
(12163, Id                                   12164
EmployeeName        LOLITA MOORE-CHURCHILL
JobTitle                PHYSICAL THERAPIST
BasePay                           88418.47
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               NaN
TotalPay                          88418.47
TotalPayBenefits                  88418.47
Year                                  2011
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 12163, dtype: object)
(12164, Id                                            12165
EmployeeName                        KARINA SIMONOVA
JobTitle            IS BUSINESS ANALYST - PRINCIPAL
BasePay                                    83233.08
OvertimePay                                     0.0
OtherPay                                    5175.92
Benefits                                        NaN
TotalPay                                    88409.0
TotalPayBenefits                            88409.0
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 12164, dtype: object)
(12165, Id                                                        12166
EmployeeName                                    KATHLEEN MCEVOY
JobTitle            MANAGER I - MUNICIPAL TRANSPORTATION AGENCY
BasePay                                                88313.13
OvertimePay                                                 0.0
OtherPay                                                   90.0
Benefits                                                    NaN
TotalPay                                               88403.13
TotalPayBenefits                                       88403.13
Year                                                       2011
Notes                                                       NaN
Agency                                            San Francisco
Status                                                      NaN
Name: 12165, dtype: object)
(12166, Id                             12167
EmployeeName           ROMAN ANCHETA
JobTitle            TRANSIT OPERATOR
BasePay                     63944.46
OvertimePay                 22941.74
OtherPay                     1516.47
Benefits                         NaN
TotalPay                    88402.67
TotalPayBenefits            88402.67
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12166, dtype: object)
(12167, Id                                      12168
EmployeeName                       GUOZHEN LI
JobTitle            LICENSED VOCATIONAL NURSE
BasePay                               64809.9
OvertimePay                          21156.75
OtherPay                               2434.0
Benefits                                  NaN
TotalPay                             88400.65
TotalPayBenefits                     88400.65
Year                                     2011
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 12167, dtype: object)
(12168, Id                                12169
EmployeeName           JOSELITO BANARES
JobTitle            AUTOMOTIVE MECHANIC
BasePay                        72782.73
OvertimePay                    12642.01
OtherPay                        2975.39
Benefits                            NaN
TotalPay                       88400.13
TotalPayBenefits               88400.13
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12168, dtype: object)
(12169, Id                                       12170
EmployeeName               SIAKI LEALAIMATAFAO
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83890.19
OvertimePay                                0.0
OtherPay                               4508.25
Benefits                                   NaN
TotalPay                              88398.44
TotalPayBenefits                      88398.44
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12169, dtype: object)
(12170, Id                                                  12171
EmployeeName                                RICARDO LOPEZ
JobTitle            SENIOR PUBLIC DEFENDER'S INVESTIGATOR
BasePay                                           87018.2
OvertimePay                                           0.0
OtherPay                                           1380.0
Benefits                                              NaN
TotalPay                                          88398.2
TotalPayBenefits                                  88398.2
Year                                                 2011
Notes                                                 NaN
Agency                                      San Francisco
Status                                                NaN
Name: 12170, dtype: object)
(12171, Id                               12172
EmployeeName             BERHANE GAIME
JobTitle            ASSISTANT ENGINEER
BasePay                       88396.09
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88396.09
TotalPayBenefits              88396.09
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12171, dtype: object)
(12172, Id                             12173
EmployeeName             EUGENE ELAM
JobTitle            TRANSIT OPERATOR
BasePay                     66077.59
OvertimePay                 20700.98
OtherPay                     1616.34
Benefits                         NaN
TotalPay                    88394.91
TotalPayBenefits            88394.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12172, dtype: object)
(12173, Id                             12174
EmployeeName            ANTHONY OLAY
JobTitle            TRANSIT OPERATOR
BasePay                     64898.56
OvertimePay                 22159.89
OtherPay                     1335.27
Benefits                         NaN
TotalPay                    88393.72
TotalPayBenefits            88393.72
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12173, dtype: object)
(12174, Id                                       12175
EmployeeName                  MASSIEL GONZALEZ
JobTitle            PROTECTIVE SERVICES WORKER
BasePay                               83881.32
OvertimePay                            2721.74
OtherPay                               1782.66
Benefits                                   NaN
TotalPay                              88385.72
TotalPayBenefits                      88385.72
Year                                      2011
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 12174, dtype: object)
(12175, Id                                12176
EmployeeName        LINDA BROOKS-BURTON
JobTitle                  LIBRARIAN III
BasePay                        86957.04
OvertimePay                         0.0
OtherPay                        1406.67
Benefits                            NaN
TotalPay                       88363.71
TotalPayBenefits               88363.71
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12175, dtype: object)
(12176, Id                               12177
EmployeeName                MAULI VORA
JobTitle            ASSISTANT ENGINEER
BasePay                       84745.75
OvertimePay                        0.0
OtherPay                       3617.09
Benefits                           NaN
TotalPay                      88362.84
TotalPayBenefits              88362.84
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12176, dtype: object)
(12177, Id                             12178
EmployeeName         HAMILTON MORENO
JobTitle            TRANSIT OPERATOR
BasePay                     66018.81
OvertimePay                 17050.28
OtherPay                     5286.75
Benefits                         NaN
TotalPay                    88355.84
TotalPayBenefits            88355.84
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12177, dtype: object)
(12178, Id                                12179
EmployeeName            VALERIE TAYBRON
JobTitle            TRANSIT CAR CLEANER
BasePay                         55880.0
OvertimePay                    22930.73
OtherPay                        9542.76
Benefits                            NaN
TotalPay                       88353.49
TotalPayBenefits               88353.49
Year                               2011
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 12178, dtype: object)
(12179, Id                              12180
EmployeeName          RAFAELA MENDOZA
JobTitle            NURSING ASSISTANT
BasePay                      60278.66
OvertimePay                  25286.81
OtherPay                      2787.32
Benefits                          NaN
TotalPay                     88352.79
TotalPayBenefits             88352.79
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12179, dtype: object)
(12180, Id                             12181
EmployeeName         CLAYTON GOODWIN
JobTitle            POLICE OFFICER I
BasePay                     87532.74
OvertimePay                      0.0
OtherPay                      819.95
Benefits                         NaN
TotalPay                    88352.69
TotalPayBenefits            88352.69
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12180, dtype: object)
(12181, Id                             12182
EmployeeName              PETER TRAN
JobTitle            TRANSIT OPERATOR
BasePay                      63553.9
OvertimePay                  23685.4
OtherPay                     1111.13
Benefits                         NaN
TotalPay                    88350.43
TotalPayBenefits            88350.43
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12181, dtype: object)
(12182, Id                             12183
EmployeeName              STEVE NOYA
JobTitle            STREET INSPECTOR
BasePay                     71387.01
OvertimePay                  16189.9
OtherPay                       770.0
Benefits                         NaN
TotalPay                    88346.91
TotalPayBenefits            88346.91
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12182, dtype: object)
(12183, Id                                           12184
EmployeeName                          CYNTHIA CANO
JobTitle            SURGICAL PROCEDURES TECHNICIAN
BasePay                                   65717.66
OvertimePay                               21804.37
OtherPay                                     823.9
Benefits                                       NaN
TotalPay                                  88345.93
TotalPayBenefits                          88345.93
Year                                          2011
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 12183, dtype: object)
(12184, Id                                               12185
EmployeeName                            BARINDER PANNU
JobTitle            ELECTRICAL TRANSIT SYSTEM MECHANIC
BasePay                                        77580.4
OvertimePay                                     6743.1
OtherPay                                        4021.5
Benefits                                           NaN
TotalPay                                       88345.0
TotalPayBenefits                               88345.0
Year                                              2011
Notes                                              NaN
Agency                                   San Francisco
Status                                             NaN
Name: 12184, dtype: object)
(12185, Id                                            12186
EmployeeName                             KEITH CARR
JobTitle            ASSISTANT MATERIALS COORDINATOR
BasePay                                    86412.01
OvertimePay                                 1930.94
OtherPay                                        0.0
Benefits                                        NaN
TotalPay                                   88342.95
TotalPayBenefits                           88342.95
Year                                           2011
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 12185, dtype: object)
(12186, Id                           12187
EmployeeName           REX YANGUAS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                 191.64
OtherPay                   1639.94
Benefits                       NaN
TotalPay                  88337.58
TotalPayBenefits          88337.58
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12186, dtype: object)
(12187, Id                                     12188
EmployeeName                      BILL SMITH
JobTitle            DEPUTY PROBATION OFFICER
BasePay                             81957.89
OvertimePay                           3013.0
OtherPay                             3366.53
Benefits                                 NaN
TotalPay                            88337.42
TotalPayBenefits                    88337.42
Year                                    2011
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 12187, dtype: object)
(12188, Id                               12189
EmployeeName            FARROKH HARIRI
JobTitle            ASSISTANT ENGINEER
BasePay                       88321.13
OvertimePay                        0.0
OtherPay                           0.0
Benefits                           NaN
TotalPay                      88321.13
TotalPayBenefits              88321.13
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12188, dtype: object)
(12189, Id                              12190
EmployeeName             JESUSA REYES
JobTitle            NURSING ASSISTANT
BasePay                       60206.6
OvertimePay                  22430.51
OtherPay                      5671.42
Benefits                          NaN
TotalPay                     88308.53
TotalPayBenefits             88308.53
Year                             2011
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 12189, dtype: object)
(12190, Id                               12191
EmployeeName               JANE PERLAS
JobTitle            NURSE PRACTITIONER
BasePay                       81110.85
OvertimePay                     1696.4
OtherPay                       5495.29
Benefits                           NaN
TotalPay                      88302.54
TotalPayBenefits              88302.54
Year                              2011
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 12190, dtype: object)
(12191, Id                                                    12192
EmployeeName                                      MONA GRAY
JobTitle            PUBLIC SAFETY COMMUNICATIONS DISPATCHER
BasePay                                            75539.88
OvertimePay                                         5139.86
OtherPay                                            7622.08
Benefits                                                NaN
TotalPay                                           88301.82
TotalPayBenefits                                   88301.82
Year                                                   2011
Notes                                                   NaN
Agency                                        San Francisco
Status                                                  NaN
Name: 12191, dtype: object)
(12192, Id                          12193
EmployeeName        DAVID CHAPMAN
JobTitle             TRUCK DRIVER
BasePay                  73775.02
OvertimePay               11794.6
OtherPay                  2722.34
Benefits                      NaN
TotalPay                 88291.96
TotalPayBenefits         88291.96
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12192, dtype: object)
(12193, Id                          12194
EmployeeName            RON PEREZ
JobTitle              ELECTRICIAN
BasePay                  85391.82
OvertimePay               1712.59
OtherPay                  1186.16
Benefits                      NaN
TotalPay                 88290.57
TotalPayBenefits         88290.57
Year                         2011
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 12193, dtype: object)
(12194, Id                             12195
EmployeeName            MILTON JAMES
JobTitle            TRANSIT OPERATOR
BasePay                     66251.74
OvertimePay                 20477.93
OtherPay                     1549.03
Benefits                         NaN
TotalPay                     88278.7
TotalPayBenefits             88278.7
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12194, dtype: object)
(12195, Id                           12196
EmployeeName          LOUIE LOUFAS
JobTitle            DEPUTY SHERIFF
BasePay                    86506.0
OvertimePay                    0.0
OtherPay                   1770.98
Benefits                       NaN
TotalPay                  88276.98
TotalPayBenefits          88276.98
Year                          2011
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 12195, dtype: object)
(12196, Id                             12197
EmployeeName            ANDRE LAFOND
JobTitle            TRANSIT OPERATOR
BasePay                     65107.56
OvertimePay                 20764.01
OtherPay                     2396.21
Benefits                         NaN
TotalPay                    88267.78
TotalPayBenefits            88267.78
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12196, dtype: object)
(12197, Id                                                      12198
EmployeeName                                     FRANK BARNES
JobTitle            AUTOMOTIVE MACHINIST ASSISTANT SUPERVISOR
BasePay                                              87169.58
OvertimePay                                               0.0
OtherPay                                               1093.1
Benefits                                                  NaN
TotalPay                                             88262.68
TotalPayBenefits                                     88262.68
Year                                                     2011
Notes                                                     NaN
Agency                                          San Francisco
Status                                                    NaN
Name: 12197, dtype: object)
(12198, Id                             12199
EmployeeName           MARIA O'BRIEN
JobTitle            REGISTERED NURSE
BasePay                     68376.01
OvertimePay                   1465.2
OtherPay                    18418.64
Benefits                         NaN
TotalPay                    88259.85
TotalPayBenefits            88259.85
Year                            2011
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 12198, dtype: object)
(71613, Id                                   71614
EmployeeName                 Jacob Edelman
JobTitle            Public Service Trainee
BasePay                             1971.2
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            177.81
TotalPay                            1971.2
TotalPayBenefits                   2149.01
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71613, dtype: object)
(71614, Id                                71615
EmployeeName           Michael Cheatham
JobTitle            Recreation Director
BasePay                             0.0
OvertimePay                         0.0
OtherPay                         1666.0
Benefits                         482.48
TotalPay                         1666.0
TotalPayBenefits                2148.48
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71614, dtype: object)
(71615, Id                                         71616
EmployeeName                   La Jeana Thompson
JobTitle            Public Svc Aide-Public Works
BasePay                                  1922.15
OvertimePay                                  0.0
OtherPay                                   41.48
Benefits                                  174.66
TotalPay                                 1963.63
TotalPayBenefits                         2138.29
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71615, dtype: object)
(71616, Id                                     71617
EmployeeName                 Hector Portillo
JobTitle            Deputy Probation Officer
BasePay                                  0.0
OvertimePay                              0.0
OtherPay                              1951.9
Benefits                               185.1
TotalPay                              1951.9
TotalPayBenefits                      2137.0
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71616, dtype: object)
(71617, Id                           71618
EmployeeName        Therese Cooper
JobTitle              Junior Clerk
BasePay                     918.52
OvertimePay                1025.31
OtherPay                       0.0
Benefits                    185.84
TotalPay                   1943.83
TotalPayBenefits           2129.67
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71617, dtype: object)
(71618, Id                                          71619
EmployeeName                         Christine Wu
JobTitle            Medical Evaluations Assistant
BasePay                                    1955.1
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                   172.59
TotalPay                                   1955.1
TotalPayBenefits                          2127.69
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71618, dtype: object)
(71619, Id                              71620
EmployeeName        Virginia Fernando
JobTitle                Special Nurse
BasePay                       1447.05
OvertimePay                       0.0
OtherPay                        214.3
Benefits                       458.59
TotalPay                      1661.35
TotalPayBenefits              2119.94
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71619, dtype: object)
(71620, Id                                   71621
EmployeeName          Jacqueline Contreras
JobTitle            Public Service Trainee
BasePay                            1935.36
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            180.45
TotalPay                           1935.36
TotalPayBenefits                   2115.81
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71620, dtype: object)
(71621, Id                                   71622
EmployeeName                    Kristi Lui
JobTitle            Public Service Trainee
BasePay                            1940.48
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            174.88
TotalPay                           1940.48
TotalPayBenefits                   2115.36
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71621, dtype: object)
(71622, Id                              71623
EmployeeName         Molly Iulio-Ufau
JobTitle            Recreation Leader
BasePay                       1930.77
OvertimePay                       0.0
OtherPay                         9.44
Benefits                        171.3
TotalPay                      1940.21
TotalPayBenefits              2111.51
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71622, dtype: object)
(71623, Id                                     71624
EmployeeName                     Nikki Greer
JobTitle            Counselor, Juvenile Hall
BasePay                              1782.02
OvertimePay                              0.0
OtherPay                              173.95
Benefits                              155.17
TotalPay                             1955.97
TotalPayBenefits                     2111.14
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71623, dtype: object)
(71624, Id                             71625
EmployeeName         Michela Chesley
JobTitle            Training Officer
BasePay                          0.0
OvertimePay                      0.0
OtherPay                     1956.41
Benefits                      149.67
TotalPay                     1956.41
TotalPayBenefits             2106.08
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71624, dtype: object)
(71625, Id                                         71626
EmployeeName                     Latanya Mullins
JobTitle            Public Svc Aide-Public Works
BasePay                                  1912.41
OvertimePay                                  0.0
OtherPay                                   40.87
Benefits                                  151.23
TotalPay                                 1953.28
TotalPayBenefits                         2104.51
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71625, dtype: object)
(71626, Id                                      71627
EmployeeName                  Maritza Herrera
JobTitle            Licensed Vocational Nurse
BasePay                               1904.82
OvertimePay                              9.14
OtherPay                                19.32
Benefits                               162.79
TotalPay                              1933.28
TotalPayBenefits                      2096.07
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 71626, dtype: object)
(71627, Id                             71628
EmployeeName        Barbara Williams
JobTitle               Special Nurse
BasePay                       1723.8
OvertimePay                      0.0
OtherPay                      344.76
Benefits                       27.41
TotalPay                     2068.56
TotalPayBenefits             2095.97
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71627, dtype: object)
(71628, Id                             71629
EmployeeName          Lester Barnett
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                     1946.84
Benefits                      148.93
TotalPay                     1946.84
TotalPayBenefits             2095.77
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71628, dtype: object)
(71629, Id                                         71630
EmployeeName                        Tazia Harris
JobTitle            Public Svc Aide-Public Works
BasePay                                  1922.15
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  170.44
TotalPay                                 1922.15
TotalPayBenefits                         2092.59
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71629, dtype: object)
(71630, Id                                 71631
EmployeeName        Charles Williams III
JobTitle             Swimming Instructor
BasePay                          1575.05
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          517.41
TotalPay                         1575.05
TotalPayBenefits                 2092.46
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71630, dtype: object)
(71631, Id                            71632
EmployeeName        Thomas Standing
JobTitle                   Engineer
BasePay                     1912.77
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     175.98
TotalPay                    1912.77
TotalPayBenefits            2088.75
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71631, dtype: object)
(71632, Id                               71633
EmployeeName            Brandy Collins
JobTitle            Eligibility Worker
BasePay                         1904.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        183.21
TotalPay                        1904.0
TotalPayBenefits               2087.21
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71632, dtype: object)
(71633, Id                                         71634
EmployeeName                         Kenneth Jew
JobTitle            Engineer/Architect Principal
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                 1931.36
Benefits                                  153.53
TotalPay                                 1931.36
TotalPayBenefits                         2084.89
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71633, dtype: object)
(71634, Id                                71635
EmployeeName              Paul Petersen
JobTitle            Stationary Engineer
BasePay                         1799.74
OvertimePay                         0.0
OtherPay                         133.08
Benefits                         150.26
TotalPay                        1932.82
TotalPayBenefits                2083.08
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71634, dtype: object)
(71635, Id                             71636
EmployeeName              Walter Tan
JobTitle            Transit Operator
BasePay                        743.9
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     1337.06
TotalPay                       743.9
TotalPayBenefits             2080.96
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71635, dtype: object)
(71636, Id                                71637
EmployeeName             Kendall George
JobTitle            Admission Attendant
BasePay                          1915.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         165.45
TotalPay                         1915.5
TotalPayBenefits                2080.95
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71636, dtype: object)
(71637, Id                          71638
EmployeeName          Kenny Young
JobTitle             Junior Clerk
BasePay                   1162.66
OvertimePay                743.16
OtherPay                      0.0
Benefits                   171.38
TotalPay                  1905.82
TotalPayBenefits           2077.2
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71637, dtype: object)
(71638, Id                                    71639
EmployeeName                   Jason Ortega
JobTitle            PS Aide Health Services
BasePay                              1821.4
OvertimePay                            12.2
OtherPay                                0.0
Benefits                             234.25
TotalPay                             1833.6
TotalPayBenefits                    2067.85
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71638, dtype: object)
(71639, Id                              71640
EmployeeName        Ricardo Ballin II
JobTitle                Special Nurse
BasePay                       1577.64
OvertimePay                     48.55
OtherPay                        37.89
Benefits                        403.6
TotalPay                      1664.08
TotalPayBenefits              2067.68
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71639, dtype: object)
(71640, Id                              71641
EmployeeName        Christie Vidal Jr
JobTitle                       Porter
BasePay                           0.0
OvertimePay                       0.0
OtherPay                      1602.15
Benefits                       464.78
TotalPay                      1602.15
TotalPayBenefits              2066.93
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71640, dtype: object)
(71641, Id                              71642
EmployeeName           Maurice Porter
JobTitle            Recreation Leader
BasePay                        1701.0
OvertimePay                       0.0
OtherPay                         95.2
Benefits                       269.02
TotalPay                       1796.2
TotalPayBenefits              2065.22
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71641, dtype: object)
(71642, Id                          71643
EmployeeName        Virgilio Chan
JobTitle             Junior Clerk
BasePay                   1555.47
OvertimePay                318.48
OtherPay                     40.0
Benefits                   148.18
TotalPay                  1913.95
TotalPayBenefits          2062.13
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71642, dtype: object)
(71643, Id                                         71644
EmployeeName                        Byron Bryant
JobTitle            Public Svc Aide-Public Works
BasePay                                  1896.18
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   164.7
TotalPay                                 1896.18
TotalPayBenefits                         2060.88
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71643, dtype: object)
(71644, Id                              71645
EmployeeName           Penny Mitchell
JobTitle            Recreation Leader
BasePay                        1839.6
OvertimePay                       0.0
OtherPay                        50.94
Benefits                       169.95
TotalPay                      1890.54
TotalPayBenefits              2060.49
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71644, dtype: object)
(71645, Id                                         71646
EmployeeName                        David Pappas
JobTitle            Public Svc Aide-Public Works
BasePay                                   1882.9
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  176.93
TotalPay                                  1882.9
TotalPayBenefits                         2059.83
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71645, dtype: object)
(71646, Id                             71647
EmployeeName              Joe Corona
JobTitle            Transit Operator
BasePay                      1589.06
OvertimePay                      0.0
OtherPay                        1.99
Benefits                      459.61
TotalPay                     1591.05
TotalPayBenefits             2050.66
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71646, dtype: object)
(71647, Id                                 71648
EmployeeName           Angela Miller Woo
JobTitle            Physician Specialist
BasePay                           1635.5
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          412.43
TotalPay                          1635.5
TotalPayBenefits                 2047.93
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71647, dtype: object)
(71648, Id                               71649
EmployeeName              Dayna Nelson
JobTitle            Testing Technician
BasePay                        1738.25
OvertimePay                     158.81
OtherPay                           0.0
Benefits                        150.26
TotalPay                       1897.06
TotalPayBenefits               2047.32
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71648, dtype: object)
(71649, Id                                   71650
EmployeeName                    Noel Ortiz
JobTitle            Public Service Trainee
BasePay                            1863.68
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            182.68
TotalPay                           1863.68
TotalPayBenefits                   2046.36
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71649, dtype: object)
(71650, Id                            71651
EmployeeName        Monica Castillo
JobTitle                Librarian 1
BasePay                     1864.59
OvertimePay                     0.0
OtherPay                       30.1
Benefits                     146.68
TotalPay                    1894.69
TotalPayBenefits            2041.37
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71650, dtype: object)
(71651, Id                                         71652
EmployeeName                     Emerald Gilbert
JobTitle            Public Svc Aide-Public Works
BasePay                                  1864.31
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  169.27
TotalPay                                 1864.31
TotalPayBenefits                         2033.58
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71651, dtype: object)
(71652, Id                              71653
EmployeeName        Marinell Llorando
JobTitle                Special Nurse
BasePay                       1551.25
OvertimePay                       0.0
OtherPay                        31.02
Benefits                       449.32
TotalPay                      1582.27
TotalPayBenefits              2031.59
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71652, dtype: object)
(71653, Id                              71654
EmployeeName             Janet Morris
JobTitle            Recreation Leader
BasePay                        972.91
OvertimePay                       0.0
OtherPay                         1.27
Benefits                      1051.22
TotalPay                       974.18
TotalPayBenefits               2025.4
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71653, dtype: object)
(71654, Id                                        71655
EmployeeName                       Leroy Pruitt
JobTitle            Porter Assistant Supervisor
BasePay                                     0.0
OvertimePay                             1874.03
OtherPay                                    0.0
Benefits                                 148.98
TotalPay                                1874.03
TotalPayBenefits                        2023.01
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 71654, dtype: object)
(71655, Id                          71656
EmployeeName           Holly Cost
JobTitle            Special Nurse
BasePay                   1551.25
OvertimePay                   0.0
OtherPay                    31.02
Benefits                   438.78
TotalPay                  1582.27
TotalPayBenefits          2021.05
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71655, dtype: object)
(71656, Id                                71657
EmployeeName               Paul Parsons
JobTitle            Food Service Worker
BasePay                         1698.13
OvertimePay                         0.0
OtherPay                         110.95
Benefits                         206.25
TotalPay                        1809.08
TotalPayBenefits                2015.33
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71656, dtype: object)
(71657, Id                                   71658
EmployeeName                Chris Campbell
JobTitle            Public Service Trainee
BasePay                            1838.08
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             176.4
TotalPay                           1838.08
TotalPayBenefits                   2014.48
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71657, dtype: object)
(71658, Id                              71659
EmployeeName           Michael Travis
JobTitle            Recreation Leader
BasePay                       1787.33
OvertimePay                       0.0
OtherPay                        51.19
Benefits                       165.28
TotalPay                      1838.52
TotalPayBenefits               2003.8
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71658, dtype: object)
(71659, Id                                   71660
EmployeeName                    Abraham Go
JobTitle            Public Service Trainee
BasePay                            1858.56
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            143.89
TotalPay                           1858.56
TotalPayBenefits                   2002.45
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71659, dtype: object)
(71660, Id                                         71661
EmployeeName                      Danisha Dixson
JobTitle            Public Svc Aide-Public Works
BasePay                                  1818.25
OvertimePay                                  0.0
OtherPay                                   39.04
Benefits                                  143.79
TotalPay                                 1857.29
TotalPayBenefits                         2001.08
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71660, dtype: object)
(71661, Id                                           71662
EmployeeName                   Allison Vanderslice
JobTitle            Planner 3-Environmental Review
BasePay                                     1573.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                    423.71
TotalPay                                    1573.5
TotalPayBenefits                           1997.21
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71661, dtype: object)
(71662, Id                                   71663
EmployeeName               Alfredo Acevedo
JobTitle            Public Service Trainee
BasePay                            1751.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            245.36
TotalPay                           1751.04
TotalPayBenefits                    1996.4
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71662, dtype: object)
(71663, Id                          71664
EmployeeName         Carolyn Cahn
JobTitle            Special Nurse
BasePay                   1678.43
OvertimePay                   0.0
OtherPay                   167.84
Benefits                   149.36
TotalPay                  1846.27
TotalPayBenefits          1995.63
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71663, dtype: object)
(71664, Id                                71665
EmployeeName                Daniel Wong
JobTitle            Swimming Instructor
BasePay                         1826.12
OvertimePay                         0.0
OtherPay                           22.8
Benefits                         143.43
TotalPay                        1848.92
TotalPayBenefits                1992.35
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71664, dtype: object)
(71665, Id                                          71666
EmployeeName                       Paulette Adams
JobTitle            Statnry Eng Water Treat Plant
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                  1578.42
Benefits                                   411.08
TotalPay                                  1578.42
TotalPayBenefits                           1989.5
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71665, dtype: object)
(71666, Id                               71667
EmployeeName                 Joel Pete
JobTitle            Testing Technician
BasePay                        1695.94
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         211.8
TotalPay                       1772.26
TotalPayBenefits               1984.06
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71666, dtype: object)
(71667, Id                                   71668
EmployeeName             Ajaelon Alexander
JobTitle            Public Service Trainee
BasePay                            1720.32
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            262.89
TotalPay                           1720.32
TotalPayBenefits                   1983.21
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71667, dtype: object)
(71668, Id                          71669
EmployeeName         Melissa Chen
JobTitle            Special Nurse
BasePay                   1434.91
OvertimePay                   0.0
OtherPay                   115.37
Benefits                   432.33
TotalPay                  1550.28
TotalPayBenefits          1982.61
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71668, dtype: object)
(71669, Id                           71670
EmployeeName        Rui Ying Zhang
JobTitle                 Custodian
BasePay                    1819.91
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    161.71
TotalPay                   1819.91
TotalPayBenefits           1981.62
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71669, dtype: object)
(71670, Id                              71671
EmployeeName          Richard Ohlssen
JobTitle            Recreation Leader
BasePay                       1780.17
OvertimePay                       0.0
OtherPay                        35.74
Benefits                        158.6
TotalPay                      1815.91
TotalPayBenefits              1974.51
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71670, dtype: object)
(71671, Id                          71672
EmployeeName          James Clark
JobTitle                   Porter
BasePay                   1222.93
OvertimePay                   0.0
OtherPay                    15.23
Benefits                   723.58
TotalPay                  1238.16
TotalPayBenefits          1961.74
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71671, dtype: object)
(71672, Id                          71673
EmployeeName            Janny Tam
JobTitle            Special Nurse
BasePay                   1483.65
OvertimePay                   0.0
OtherPay                    49.46
Benefits                   425.52
TotalPay                  1533.11
TotalPayBenefits          1958.63
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71672, dtype: object)
(71673, Id                                           71674
EmployeeName                         John Sims III
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                     1797.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                    160.54
TotalPay                                    1797.0
TotalPayBenefits                           1957.54
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71673, dtype: object)
(71674, Id                                 71675
EmployeeName              Rebecca Schane
JobTitle            Physician Specialist
BasePay                           1308.4
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          647.57
TotalPay                          1308.4
TotalPayBenefits                 1955.97
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71674, dtype: object)
(71675, Id                              71676
EmployeeName              Brandon Cai
JobTitle            Recreation Leader
BasePay                       1812.74
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       140.34
TotalPay                      1812.74
TotalPayBenefits              1953.08
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71675, dtype: object)
(71676, Id                                   71677
EmployeeName                    Andrea Yee
JobTitle            Public Service Trainee
BasePay                             1728.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            224.11
TotalPay                            1728.0
TotalPayBenefits                   1952.11
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71676, dtype: object)
(71677, Id                           71678
EmployeeName        David Metcalfe
JobTitle               Electrician
BasePay                     1756.5
OvertimePay                    0.0
OtherPay                      40.0
Benefits                     155.6
TotalPay                    1796.5
TotalPayBenefits            1952.1
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71677, dtype: object)
(71678, Id                             71679
EmployeeName        Elsa Evangelista
JobTitle               Special Nurse
BasePay                       1270.0
OvertimePay                      0.0
OtherPay                       254.0
Benefits                      421.19
TotalPay                      1524.0
TotalPayBenefits             1945.19
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71678, dtype: object)
(71679, Id                           71680
EmployeeName        Karimah Arnold
JobTitle              Junior Clerk
BasePay                    1250.84
OvertimePay                 553.88
OtherPay                       0.0
Benefits                    139.71
TotalPay                   1804.72
TotalPayBenefits           1944.43
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71679, dtype: object)
(71680, Id                              71681
EmployeeName         Wiloni Robertson
JobTitle            Recreation Leader
BasePay                       1780.64
OvertimePay                       0.0
OtherPay                        23.63
Benefits                       139.93
TotalPay                      1804.27
TotalPayBenefits               1944.2
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71680, dtype: object)
(71681, Id                                   71682
EmployeeName               Antonia Alegria
JobTitle            Public Service Trainee
BasePay                             1766.4
OvertimePay                            0.0
OtherPay                              2.46
Benefits                            175.06
TotalPay                           1768.86
TotalPayBenefits                   1943.92
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71681, dtype: object)
(71682, Id                          71683
EmployeeName            Frank Ngo
JobTitle                Custodian
BasePay                   1655.65
OvertimePay                   0.0
OtherPay                    86.91
Benefits                   201.28
TotalPay                  1742.56
TotalPayBenefits          1943.84
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71682, dtype: object)
(71683, Id                              71684
EmployeeName            Brenda Perdue
JobTitle            Recreation Leader
BasePay                       1802.71
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       140.25
TotalPay                      1802.71
TotalPayBenefits              1942.96
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71683, dtype: object)
(71684, Id                                       71685
EmployeeName                           May Hao
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 1800.4
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                140.26
TotalPay                                1800.4
TotalPayBenefits                       1940.66
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71684, dtype: object)
(71685, Id                                   71686
EmployeeName                   Jowey Zhang
JobTitle            Public Service Trainee
BasePay                            1755.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            182.78
TotalPay                           1755.04
TotalPayBenefits                   1937.82
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71685, dtype: object)
(71686, Id                                71687
EmployeeName             Archie Juntura
JobTitle            Park Patrol Officer
BasePay                         1499.86
OvertimePay                         0.0
OtherPay                          18.77
Benefits                          413.9
TotalPay                        1518.63
TotalPayBenefits                1932.53
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71686, dtype: object)
(71687, Id                                         71688
EmployeeName                       Mario De Vera
JobTitle            Stationary Eng, Sewage Plant
BasePay                                   1535.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  397.27
TotalPay                                  1535.0
TotalPayBenefits                         1932.27
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71687, dtype: object)
(71688, Id                                         71689
EmployeeName                         Sol Soriano
JobTitle            Public Svc Aide-Public Works
BasePay                                   1790.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  139.46
TotalPay                                  1790.0
TotalPayBenefits                         1929.46
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71688, dtype: object)
(71689, Id                          71690
EmployeeName          Thomas Pang
JobTitle                Custodian
BasePay                   1666.09
OvertimePay                   0.0
OtherPay                   104.94
Benefits                   154.41
TotalPay                  1771.03
TotalPayBenefits          1925.44
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71689, dtype: object)
(71690, Id                           71691
EmployeeName              Jason Lo
JobTitle            Pool Lifeguard
BasePay                    1761.28
OvertimePay                    0.0
OtherPay                      5.17
Benefits                    157.91
TotalPay                   1766.45
TotalPayBenefits           1924.36
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71690, dtype: object)
(71691, Id                                      71692
EmployeeName        Johanna Fiskback Matthews
JobTitle             Animal Health Technician
BasePay                                1784.2
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               139.01
TotalPay                               1784.2
TotalPayBenefits                      1923.21
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 71691, dtype: object)
(71692, Id                                     71693
EmployeeName                Antoinette Goode
JobTitle            Counselor, Juvenile Hall
BasePay                               1615.2
OvertimePay                              0.0
OtherPay                              157.52
Benefits                              148.24
TotalPay                             1772.72
TotalPayBenefits                     1920.96
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71692, dtype: object)
(71693, Id                                71694
EmployeeName          Derick Waters III
JobTitle            Recreation Director
BasePay                             0.0
OvertimePay                         0.0
OtherPay                         1773.0
Benefits                         140.07
TotalPay                         1773.0
TotalPayBenefits                1913.07
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71693, dtype: object)
(71694, Id                                         71695
EmployeeName                      Jonathan Story
JobTitle            Public Svc Aide-Public Works
BasePay                                  1675.39
OvertimePay                                  0.0
OtherPay                                   31.72
Benefits                                   204.8
TotalPay                                 1707.11
TotalPayBenefits                         1911.91
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71694, dtype: object)
(71695, Id                                       71696
EmployeeName                Tanashati Anderson
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                1752.17
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                157.67
TotalPay                               1752.17
TotalPayBenefits                       1909.84
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71695, dtype: object)
(71696, Id                               71697
EmployeeName            Anthony Nuanes
JobTitle            Soft Floor Coverer
BasePay                        1680.23
OvertimePay                        0.0
OtherPay                         91.71
Benefits                         137.6
TotalPay                       1771.94
TotalPayBenefits               1909.54
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71696, dtype: object)
(71697, Id                           71698
EmployeeName        Fe B Hortinela
JobTitle             Special Nurse
BasePay                    1442.57
OvertimePay                    0.0
OtherPay                    107.24
Benefits                    356.83
TotalPay                   1549.81
TotalPayBenefits           1906.64
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71697, dtype: object)
(71698, Id                                71699
EmployeeName                Mary Hickox
JobTitle            Senior Clerk Typist
BasePay                         1756.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         148.49
TotalPay                        1756.62
TotalPayBenefits                1905.11
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71698, dtype: object)
(71699, Id                                71700
EmployeeName             Nida Sylvester
JobTitle            Senior Clerk Typist
BasePay                             0.0
OvertimePay                        26.3
OtherPay                        1731.07
Benefits                         134.52
TotalPay                        1757.37
TotalPayBenefits                1891.89
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71699, dtype: object)
(71700, Id                                       71701
EmployeeName                  William Brown Jr
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                1711.98
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                175.95
TotalPay                               1711.98
TotalPayBenefits                       1887.93
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71700, dtype: object)
(71701, Id                                   71702
EmployeeName                  Jacob Vollen
JobTitle            Public Service Trainee
BasePay                            1694.72
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            188.83
TotalPay                           1694.72
TotalPayBenefits                   1883.55
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71701, dtype: object)
(71702, Id                                       71703
EmployeeName                     Tatiana Colon
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                1675.73
OvertimePay                               63.8
OtherPay                                   0.0
Benefits                                140.41
TotalPay                               1739.53
TotalPayBenefits                       1879.94
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71702, dtype: object)
(71703, Id                            71704
EmployeeName         Jeffrey Fuller
JobTitle            General Laborer
BasePay                      1688.4
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      191.0
TotalPay                     1688.4
TotalPayBenefits             1879.4
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71703, dtype: object)
(71704, Id                          71705
EmployeeName        Michael Towle
JobTitle               Manager II
BasePay                   1740.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   135.61
TotalPay                  1740.65
TotalPayBenefits          1876.26
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71704, dtype: object)
(71705, Id                                         71706
EmployeeName                      Jahquece Smith
JobTitle            Public Svc Aide-Public Works
BasePay                                  1704.61
OvertimePay                                  0.0
OtherPay                                   35.99
Benefits                                  134.75
TotalPay                                  1740.6
TotalPayBenefits                         1875.35
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71705, dtype: object)
(71706, Id                          71707
EmployeeName         Jason Negron
JobTitle            Special Nurse
BasePay                   1281.96
OvertimePay                   0.0
OtherPay                   173.56
Benefits                   416.96
TotalPay                  1455.52
TotalPayBenefits          1872.48
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71706, dtype: object)
(71707, Id                                      71708
EmployeeName        Patrice Booker-Williamson
JobTitle                  Senior Clerk Typist
BasePay                                1224.3
OvertimePay                               0.0
OtherPay                                 13.2
Benefits                               633.72
TotalPay                               1237.5
TotalPayBenefits                      1871.22
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 71707, dtype: object)
(71708, Id                              71709
EmployeeName        Karla Ellis-Davis
JobTitle               Court Reporter
BasePay                        1201.8
OvertimePay                       0.0
OtherPay                        66.09
Benefits                        603.1
TotalPay                      1267.89
TotalPayBenefits              1870.99
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71708, dtype: object)
(71709, Id                                 71710
EmployeeName             Wilmie Hathaway
JobTitle            Physician Specialist
BasePay                          1511.41
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          359.09
TotalPay                         1511.41
TotalPayBenefits                  1870.5
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71709, dtype: object)
(71710, Id                                   71711
EmployeeName                    Shaina Wan
JobTitle            Public Service Trainee
BasePay                            1648.64
OvertimePay                            0.0
OtherPay                             62.93
Benefits                            153.81
TotalPay                           1711.57
TotalPayBenefits                   1865.38
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71710, dtype: object)
(71711, Id                             71712
EmployeeName            John Sadorra
JobTitle            Manager VII, MTA
BasePay                          0.0
OvertimePay                      0.0
OtherPay                     1721.43
Benefits                      136.85
TotalPay                     1721.43
TotalPayBenefits             1858.28
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71711, dtype: object)
(71712, Id                                           71713
EmployeeName            Anne Brittney Dela Calzada
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                    1707.15
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                    149.98
TotalPay                                   1707.15
TotalPayBenefits                           1857.13
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71712, dtype: object)
(71713, Id                                        71714
EmployeeName                        Arlene Lugo
JobTitle            Communications Dispatcher 1
BasePay                                  1358.7
OvertimePay                                 0.0
OtherPay                                  95.13
Benefits                                 402.09
TotalPay                                1453.83
TotalPayBenefits                        1855.92
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 71713, dtype: object)
(71714, Id                                         71715
EmployeeName                      Demarcus Smith
JobTitle            Public Svc Aide-Public Works
BasePay                                  1649.42
OvertimePay                                  0.0
OtherPay                                   35.78
Benefits                                  168.96
TotalPay                                  1685.2
TotalPayBenefits                         1854.16
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71714, dtype: object)
(71715, Id                           71716
EmployeeName        Stuart Slechta
JobTitle            Pool Lifeguard
BasePay                    1638.02
OvertimePay                    0.0
OtherPay                     12.94
Benefits                    197.34
TotalPay                   1650.96
TotalPayBenefits            1848.3
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71715, dtype: object)
(71716, Id                                 71717
EmployeeName        Matilda K. Wong-Sung
JobTitle               Recreation Leader
BasePay                          1710.34
OvertimePay                          0.0
OtherPay                            4.25
Benefits                          133.36
TotalPay                         1714.59
TotalPayBenefits                 1847.95
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71716, dtype: object)
(71717, Id                              71718
EmployeeName            Lois Marshall
JobTitle            Recreation Leader
BasePay                       1693.13
OvertimePay                       0.0
OtherPay                          3.6
Benefits                       149.08
TotalPay                      1696.73
TotalPayBenefits              1845.81
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71717, dtype: object)
(71718, Id                                   71719
EmployeeName                  Esther Reyes
JobTitle            Prnpl Admin Analyst II
BasePay                            1351.67
OvertimePay                            0.0
OtherPay                             78.04
Benefits                            415.74
TotalPay                           1429.71
TotalPayBenefits                   1845.45
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71718, dtype: object)
(71719, Id                                         71720
EmployeeName                        Portia Davis
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                   34.16
Benefits                                  147.97
TotalPay                                 1696.56
TotalPayBenefits                         1844.53
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71719, dtype: object)
(71720, Id                          71721
EmployeeName          Daniel Rial
JobTitle            Special Nurse
BasePay                   1396.13
OvertimePay                   0.0
OtherPay                    38.78
Benefits                   409.26
TotalPay                  1434.91
TotalPayBenefits          1844.17
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71720, dtype: object)
(71721, Id                                 71722
EmployeeName                 Tomar Mason
JobTitle            Superior Court Judge
BasePay                            546.0
OvertimePay                          0.0
OtherPay                         1045.81
Benefits                          251.99
TotalPay                         1591.81
TotalPayBenefits                  1843.8
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71721, dtype: object)
(71722, Id                              71723
EmployeeName            Ariana Bolmer
JobTitle            Recreation Leader
BasePay                       1636.88
OvertimePay                       0.0
OtherPay                        58.54
Benefits                        147.4
TotalPay                      1695.42
TotalPayBenefits              1842.82
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71722, dtype: object)
(71723, Id                                   71724
EmployeeName             Natalia Lumbreras
JobTitle            Public Service Trainee
BasePay                            1710.08
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            132.39
TotalPay                           1710.08
TotalPayBenefits                   1842.47
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71723, dtype: object)
(71724, Id                                     71725
EmployeeName               Jessica Braverman
JobTitle            Senior Personnel Analyst
BasePay                              1709.62
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              132.36
TotalPay                             1709.62
TotalPayBenefits                     1841.98
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71724, dtype: object)
(71725, Id                          71726
EmployeeName        Debra Jackson
JobTitle             Senior Clerk
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   1423.5
Benefits                   412.96
TotalPay                   1423.5
TotalPayBenefits          1836.46
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71725, dtype: object)
(71726, Id                                 71727
EmployeeName          Geronima Marcelino
JobTitle            Claims Process Clerk
BasePay                              0.0
OvertimePay                          0.0
OtherPay                         1831.43
Benefits                            4.57
TotalPay                         1831.43
TotalPayBenefits                  1836.0
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71726, dtype: object)
(71727, Id                          71728
EmployeeName         Beth Brumell
JobTitle            Special Nurse
BasePay                    1429.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   405.22
TotalPay                   1429.9
TotalPayBenefits          1835.12
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71727, dtype: object)
(71728, Id                                  71729
EmployeeName             Monica Nichelson
JobTitle            Executive Secretary 3
BasePay                            1448.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                           383.69
TotalPay                           1448.0
TotalPayBenefits                  1831.69
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71728, dtype: object)
(71729, Id                          71730
EmployeeName        Majella Burns
JobTitle            Special Nurse
BasePay                   1339.79
OvertimePay                   0.0
OtherPay                     98.0
Benefits                   393.66
TotalPay                  1437.79
TotalPayBenefits          1831.45
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71729, dtype: object)
(71730, Id                               71731
EmployeeName        Darryl Brewster Jr
JobTitle             Recreation Leader
BasePay                        1659.44
OvertimePay                        0.0
OtherPay                         40.34
Benefits                        131.61
TotalPay                       1699.78
TotalPayBenefits               1831.39
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71730, dtype: object)
(71731, Id                                         71732
EmployeeName                       Trina Mcqueen
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  161.74
TotalPay                                  1662.4
TotalPayBenefits                         1824.14
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71731, dtype: object)
(71732, Id                          71733
EmployeeName        William Quick
JobTitle                    Clerk
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   1459.3
Benefits                   363.96
TotalPay                   1459.3
TotalPayBenefits          1823.26
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71732, dtype: object)
(71733, Id                              71734
EmployeeName              Max Carlson
JobTitle            Recreation Leader
BasePay                        1673.3
OvertimePay                       0.0
OtherPay                         5.16
Benefits                       144.76
TotalPay                      1678.46
TotalPayBenefits              1823.22
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71733, dtype: object)
(71734, Id                              71735
EmployeeName          Essam Elmahgoop
JobTitle            Court Interpreter
BasePay                       1553.64
OvertimePay                       0.0
OtherPay                       106.15
Benefits                       163.39
TotalPay                      1659.79
TotalPayBenefits              1823.18
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71734, dtype: object)
(71735, Id                                           71736
EmployeeName                           Winnie Fong
JobTitle            Legislative Asst City Atty Ofc
BasePay                                     1445.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                    377.42
TotalPay                                    1445.5
TotalPayBenefits                           1822.92
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71735, dtype: object)
(71736, Id                                         71737
EmployeeName                      Alicia Gilbert
JobTitle            Public Svc Aide-Public Works
BasePay                                  1610.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  211.04
TotalPay                                 1610.45
TotalPayBenefits                         1821.49
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71736, dtype: object)
(71737, Id                                         71738
EmployeeName                      Maria Santiago
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   158.9
TotalPay                                  1662.4
TotalPayBenefits                          1821.3
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71737, dtype: object)
(71738, Id                                         71739
EmployeeName                       Briana Norman
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  157.46
TotalPay                                  1662.4
TotalPayBenefits                         1819.86
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71738, dtype: object)
(71739, Id                                         71740
EmployeeName                    Sherelle Gardner
JobTitle            Public Svc Aide-Public Works
BasePay                                  1659.85
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  155.91
TotalPay                                 1659.85
TotalPayBenefits                         1815.76
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71739, dtype: object)
(71740, Id                                71741
EmployeeName        Margarita Hernandez
JobTitle            Senior Clerk Typist
BasePay                          1683.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         131.14
TotalPay                         1683.2
TotalPayBenefits                1814.34
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71740, dtype: object)
(71741, Id                                          71742
EmployeeName                         Walter Chang
JobTitle            Senior Administrative Analyst
BasePay                                    1437.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                   377.22
TotalPay                                   1437.0
TotalPayBenefits                          1814.22
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71741, dtype: object)
(71742, Id                              71743
EmployeeName           Scott Houghton
JobTitle            Stage Electrician
BasePay                        1673.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       139.56
TotalPay                       1673.0
TotalPayBenefits              1812.56
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71742, dtype: object)
(71743, Id                          71744
EmployeeName           Joel Leong
JobTitle            Special Nurse
BasePay                   1351.25
OvertimePay                   0.0
OtherPay                    54.05
Benefits                   407.06
TotalPay                   1405.3
TotalPayBenefits          1812.36
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71743, dtype: object)
(71744, Id                              71745
EmployeeName              Laurie Chin
JobTitle            Recreation Leader
BasePay                       1582.43
OvertimePay                       0.0
OtherPay                         46.1
Benefits                       183.47
TotalPay                      1628.53
TotalPayBenefits               1812.0
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71744, dtype: object)
(71745, Id                           71746
EmployeeName        Denise Banbury
JobTitle              Library Page
BasePay                    1640.64
OvertimePay                    0.0
OtherPay                     39.67
Benefits                     130.1
TotalPay                   1680.31
TotalPayBenefits           1810.41
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71745, dtype: object)
(71746, Id                                         71747
EmployeeName                       Reginald Wade
JobTitle            Public Svc Aide-Public Works
BasePay                                  1647.51
OvertimePay                                  0.0
OtherPay                                   31.71
Benefits                                  130.83
TotalPay                                 1679.22
TotalPayBenefits                         1810.05
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71746, dtype: object)
(71747, Id                            71748
EmployeeName        Rachel Mitchell
JobTitle              Social Worker
BasePay                     1615.19
OvertimePay                     0.0
OtherPay                      47.38
Benefits                     145.54
TotalPay                    1662.57
TotalPayBenefits            1808.11
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71747, dtype: object)
(71748, Id                                         71749
EmployeeName                     Latasha Beasley
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  145.32
TotalPay                                  1662.4
TotalPayBenefits                         1807.72
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71748, dtype: object)
(71749, Id                                         71750
EmployeeName                         Devan Green
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  145.32
TotalPay                                  1662.4
TotalPayBenefits                         1807.72
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71749, dtype: object)
(71750, Id                                         71751
EmployeeName                      Quincy Rich Jr
JobTitle            Public Svc Aide-Public Works
BasePay                                   1662.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  144.56
TotalPay                                  1662.4
TotalPayBenefits                         1806.96
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71750, dtype: object)
(71751, Id                               71752
EmployeeName           Sean O'Sullivan
JobTitle            Eligibility Worker
BasePay                        1650.25
OvertimePay                        0.0
OtherPay                         16.98
Benefits                        138.56
TotalPay                       1667.23
TotalPayBenefits               1805.79
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71751, dtype: object)
(71752, Id                             71753
EmployeeName        Felino Lomboy Jr
JobTitle               Accountant II
BasePay                       1667.4
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      132.56
TotalPay                      1667.4
TotalPayBenefits             1799.96
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71752, dtype: object)
(71753, Id                               71754
EmployeeName              Tatupu Vaili
JobTitle            Program Specialist
BasePay                        1637.26
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        162.28
TotalPay                       1637.26
TotalPayBenefits               1799.54
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71753, dtype: object)
(71754, Id                          71755
EmployeeName         Glenn Foster
JobTitle            Special Nurse
BasePay                   1361.89
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   431.92
TotalPay                  1361.89
TotalPayBenefits          1793.81
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71754, dtype: object)
(71755, Id                                         71756
EmployeeName                      Neftali Garcia
JobTitle            Public Svc Aide-Public Works
BasePay                                  1636.43
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  155.37
TotalPay                                 1636.43
TotalPayBenefits                          1791.8
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71755, dtype: object)
(71756, Id                                         71757
EmployeeName                           Marc Moss
JobTitle            Public Svc Aide-Public Works
BasePay                                  1636.43
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  154.62
TotalPay                                 1636.43
TotalPayBenefits                         1791.05
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71756, dtype: object)
(71757, Id                          71758
EmployeeName        Jonathon Eros
JobTitle             Junior Clerk
BasePay                   1067.14
OvertimePay                548.73
OtherPay                      0.0
Benefits                   173.47
TotalPay                  1615.87
TotalPayBenefits          1789.34
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71757, dtype: object)
(71758, Id                                 71759
EmployeeName                     Kyi Win
JobTitle            Physician Specialist
BasePay                           1413.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          371.66
TotalPay                          1413.0
TotalPayBenefits                 1784.66
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71758, dtype: object)
(71759, Id                              71760
EmployeeName        Alexander Kvastel
JobTitle                 Junior Clerk
BasePay                       1075.96
OvertimePay                    575.81
OtherPay                          0.0
Benefits                       129.78
TotalPay                      1651.77
TotalPayBenefits              1781.55
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71759, dtype: object)
(71760, Id                          71761
EmployeeName         Sherman Hool
JobTitle            Special Nurse
BasePay                   1353.85
OvertimePay                   0.0
OtherPay                     32.0
Benefits                   395.36
TotalPay                  1385.85
TotalPayBenefits          1781.21
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71760, dtype: object)
(71761, Id                                    71762
EmployeeName                Eileen Bautista
JobTitle            PS Aide Health Services
BasePay                              1652.4
OvertimePay                             0.0
OtherPay                                0.0
Benefits                             127.93
TotalPay                             1652.4
TotalPayBenefits                    1780.33
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71761, dtype: object)
(71762, Id                              71763
EmployeeName           Erin Beckstead
JobTitle            Recreation Leader
BasePay                       1599.41
OvertimePay                       0.0
OtherPay                         23.8
Benefits                       156.04
TotalPay                      1623.21
TotalPayBenefits              1779.25
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71762, dtype: object)
(71763, Id                              71764
EmployeeName         Joshua Hernandez
JobTitle            Recreation Leader
BasePay                        1649.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       128.51
TotalPay                       1649.5
TotalPayBenefits              1778.01
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71763, dtype: object)
(71764, Id                            71765
EmployeeName        Dominic Mangini
JobTitle            General Laborer
BasePay                      1140.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     635.18
TotalPay                     1140.5
TotalPayBenefits            1775.68
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71764, dtype: object)
(71765, Id                               71766
EmployeeName        Patricia Aguaristi
JobTitle                  Junior Clerk
BasePay                        1007.62
OvertimePay                     635.95
OtherPay                           0.0
Benefits                        128.99
TotalPay                       1643.57
TotalPayBenefits               1772.56
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71765, dtype: object)
(71766, Id                          71767
EmployeeName         Brian Thomas
JobTitle                    Clerk
BasePay                    1607.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   162.58
TotalPay                   1607.0
TotalPayBenefits          1769.58
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71766, dtype: object)
(71767, Id                                71768
EmployeeName           Melchor Villaluz
JobTitle            Stationary Engineer
BasePay                         1392.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         376.62
TotalPay                        1392.51
TotalPayBenefits                1769.13
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71767, dtype: object)
(71768, Id                              71769
EmployeeName           Justyna Wrobel
JobTitle            Accountant Intern
BasePay                           0.0
OvertimePay                       0.0
OtherPay                      1639.34
Benefits                       125.41
TotalPay                      1639.34
TotalPayBenefits              1764.75
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71768, dtype: object)
(71769, Id                                         71770
EmployeeName                    Fernando Barajas
JobTitle            Public Svc Aide-Public Works
BasePay                                   1585.6
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  178.07
TotalPay                                  1585.6
TotalPayBenefits                         1763.67
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71769, dtype: object)
(71770, Id                               71771
EmployeeName            Miriam Rimkeit
JobTitle            Testing Technician
BasePay                        1630.37
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        129.02
TotalPay                       1630.37
TotalPayBenefits               1759.39
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71770, dtype: object)
(71771, Id                            71772
EmployeeName        Kendra Thompson
JobTitle               Senior Clerk
BasePay                     1624.35
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     133.91
TotalPay                    1624.35
TotalPayBenefits            1758.26
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71771, dtype: object)
(71772, Id                          71773
EmployeeName        Daadir Hassan
JobTitle             Museum Guard
BasePay                   1604.64
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   151.99
TotalPay                  1604.64
TotalPayBenefits          1756.63
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71772, dtype: object)
(71773, Id                           71774
EmployeeName        Linda Cardenas
JobTitle             Special Nurse
BasePay                    1337.53
OvertimePay                    0.0
OtherPay                      20.0
Benefits                    393.89
TotalPay                   1357.53
TotalPayBenefits           1751.42
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71773, dtype: object)
(71774, Id                          71775
EmployeeName          George Tano
JobTitle             Junior Clerk
BasePay                   1020.57
OvertimePay                589.34
OtherPay                      0.0
Benefits                   139.92
TotalPay                  1609.91
TotalPayBenefits          1749.83
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71774, dtype: object)
(71775, Id                                     71776
EmployeeName                   Lisa Williams
JobTitle            Urban Forestry Inspector
BasePay                               1605.0
OvertimePay                              0.0
OtherPay                               16.05
Benefits                              126.31
TotalPay                             1621.05
TotalPayBenefits                     1747.36
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71775, dtype: object)
(71776, Id                              71777
EmployeeName          Kathleen Schick
JobTitle            Recreation Leader
BasePay                       1619.39
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       125.37
TotalPay                      1619.39
TotalPayBenefits              1744.76
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71776, dtype: object)
(71777, Id                                   71778
EmployeeName                  Blossom Wong
JobTitle            Public Service Trainee
BasePay                            1593.85
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             150.7
TotalPay                           1593.85
TotalPayBenefits                   1744.55
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71777, dtype: object)
(71778, Id                          71779
EmployeeName        Ayala Mirande
JobTitle            Special Nurse
BasePay                    367.73
OvertimePay                942.38
OtherPay                    44.11
Benefits                   388.96
TotalPay                  1354.22
TotalPayBenefits          1743.18
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71778, dtype: object)
(71779, Id                              71780
EmployeeName          David Rodriguez
JobTitle            Recreation Leader
BasePay                       1538.34
OvertimePay                       0.0
OtherPay                        56.18
Benefits                       147.09
TotalPay                      1594.52
TotalPayBenefits              1741.61
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71779, dtype: object)
(71780, Id                            71781
EmployeeName        Christine Ainza
JobTitle              Special Nurse
BasePay                      1205.1
OvertimePay                     0.0
OtherPay                     137.27
Benefits                     397.16
TotalPay                    1342.37
TotalPayBenefits            1739.53
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71780, dtype: object)
(71781, Id                                         71782
EmployeeName                       Beniyah Lewis
JobTitle            Public Svc Aide-Public Works
BasePay                                  1584.48
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  153.56
TotalPay                                 1584.48
TotalPayBenefits                         1738.04
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71781, dtype: object)
(71782, Id                                         71783
EmployeeName                       Marcus Oliver
JobTitle            Public Svc Aide-Public Works
BasePay                                  1610.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  127.23
TotalPay                                 1610.45
TotalPayBenefits                         1737.68
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71782, dtype: object)
(71783, Id                                   71784
EmployeeName                Nicolas Punzal
JobTitle            Public Service Trainee
BasePay                             1612.8
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            124.86
TotalPay                            1612.8
TotalPayBenefits                   1737.66
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71783, dtype: object)
(71784, Id                                         71785
EmployeeName                   Brittany Moultrie
JobTitle            Public Svc Aide-Public Works
BasePay                                  1558.51
OvertimePay                                  0.0
OtherPay                                   31.72
Benefits                                  145.46
TotalPay                                 1590.23
TotalPayBenefits                         1735.69
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71784, dtype: object)
(71785, Id                                         71786
EmployeeName              Christopher Harnetiaux
JobTitle            Public Svc Aide-Public Works
BasePay                                  1610.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  124.68
TotalPay                                 1610.45
TotalPayBenefits                         1735.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71785, dtype: object)
(71786, Id                              71787
EmployeeName               David Mark
JobTitle            Recreation Leader
BasePay                        1548.4
OvertimePay                       0.0
OtherPay                         61.1
Benefits                       125.05
TotalPay                       1609.5
TotalPayBenefits              1734.55
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71786, dtype: object)
(71787, Id                             71788
EmployeeName           Christine Luu
JobTitle            Special Examiner
BasePay                       1387.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      345.95
TotalPay                      1387.0
TotalPayBenefits             1732.95
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71787, dtype: object)
(71788, Id                                   71789
EmployeeName                     Anna Zhou
JobTitle            Public Service Trainee
BasePay                            1576.96
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            154.79
TotalPay                           1576.96
TotalPayBenefits                   1731.75
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71788, dtype: object)
(71789, Id                          71790
EmployeeName        David Fleming
JobTitle            Special Nurse
BasePay                    1294.4
OvertimePay                   0.0
OtherPay                     63.5
Benefits                   371.94
TotalPay                   1357.9
TotalPayBenefits          1729.84
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71789, dtype: object)
(71790, Id                                   71791
EmployeeName        Marie Watson-Grosskopf
JobTitle               Swimming Instructor
BasePay                            1263.45
OvertimePay                            0.0
OtherPay                             94.97
Benefits                            369.68
TotalPay                           1358.42
TotalPayBenefits                    1728.1
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71790, dtype: object)
(71791, Id                                         71792
EmployeeName                      Nicole Maboloc
JobTitle            Public Svc Aide-Public Works
BasePay                                   1558.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  167.92
TotalPay                                  1558.5
TotalPayBenefits                         1726.42
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71791, dtype: object)
(71792, Id                          71793
EmployeeName         Carol Murray
JobTitle            Special Nurse
BasePay                    1318.8
OvertimePay                   0.0
OtherPay                    32.97
Benefits                   371.72
TotalPay                  1351.77
TotalPayBenefits          1723.49
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71792, dtype: object)
(71793, Id                          71794
EmployeeName              Chiu Wu
JobTitle            Special Nurse
BasePay                    1221.2
OvertimePay                   0.0
OtherPay                   122.12
Benefits                   379.28
TotalPay                  1343.32
TotalPayBenefits           1722.6
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71793, dtype: object)
(71794, Id                          71795
EmployeeName          Maria Lopez
JobTitle            Social Worker
BasePay                   1493.57
OvertimePay                   0.0
OtherPay                   101.88
Benefits                   126.68
TotalPay                  1595.45
TotalPayBenefits          1722.13
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71794, dtype: object)
(71795, Id                             71796
EmployeeName        Sarah Jane Ymzon
JobTitle                Junior Clerk
BasePay                       832.58
OvertimePay                   762.07
OtherPay                         0.0
Benefits                      124.16
TotalPay                     1594.65
TotalPayBenefits             1718.81
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71795, dtype: object)
(71796, Id                                         71797
EmployeeName                    Elizabeth Holley
JobTitle            Public Svc Aide-Public Works
BasePay                                  1577.98
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  137.88
TotalPay                                 1577.98
TotalPayBenefits                         1715.86
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71796, dtype: object)
(71797, Id                          71798
EmployeeName           Mary Klein
JobTitle            Special Nurse
BasePay                   1158.45
OvertimePay                   0.0
OtherPay                   163.53
Benefits                   389.28
TotalPay                  1321.98
TotalPayBenefits          1711.26
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71797, dtype: object)
(71798, Id                             71799
EmployeeName                  Ron Yu
JobTitle            Transit Operator
BasePay                      1320.43
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      390.22
TotalPay                     1320.43
TotalPayBenefits             1710.65
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71798, dtype: object)
(71799, Id                               71800
EmployeeName        Christopher Wilcox
JobTitle                 Special Nurse
BasePay                         1221.2
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        487.65
TotalPay                        1221.2
TotalPayBenefits               1708.85
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71799, dtype: object)
(71800, Id                                  71801
EmployeeName               Valerie Sydnor
JobTitle            Medical Social Worker
BasePay                           1584.74
OvertimePay                           0.0
OtherPay                              0.0
Benefits                           123.47
TotalPay                          1584.74
TotalPayBenefits                  1708.21
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71800, dtype: object)
(71801, Id                            71802
EmployeeName        Lisa Torre-Igwe
JobTitle              Special Nurse
BasePay                      1318.8
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     388.92
TotalPay                     1318.8
TotalPayBenefits            1707.72
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71801, dtype: object)
(71802, Id                                         71803
EmployeeName                    Jasmina Buitrago
JobTitle            Public Svc Aide-Public Works
BasePay                                  1584.48
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  122.67
TotalPay                                 1584.48
TotalPayBenefits                         1707.15
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71802, dtype: object)
(71803, Id                                         71804
EmployeeName                       Carina Lovell
JobTitle            Public Svc Aide-Public Works
BasePay                                  1584.47
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  122.67
TotalPay                                 1584.47
TotalPayBenefits                         1707.14
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71803, dtype: object)
(71804, Id                             71805
EmployeeName        Jefferey Alarcon
JobTitle                      Barber
BasePay                      1494.17
OvertimePay                      0.0
OtherPay                        80.2
Benefits                      132.08
TotalPay                     1574.37
TotalPayBenefits             1706.45
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71804, dtype: object)
(71805, Id                                         71806
EmployeeName                          Paul Smith
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                   22.68
Benefits                                  141.15
TotalPay                                 1555.21
TotalPayBenefits                         1696.36
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71805, dtype: object)
(71806, Id                          71807
EmployeeName         William Reid
JobTitle                Carpenter
BasePay                    1563.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   131.59
TotalPay                   1563.0
TotalPayBenefits          1694.59
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71806, dtype: object)
(71807, Id                                         71808
EmployeeName                   Sukh Khatanbaatar
JobTitle            Public Svc Aide-Public Works
BasePay                                  1571.49
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  121.66
TotalPay                                 1571.49
TotalPayBenefits                         1693.15
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71807, dtype: object)
(71808, Id                                71809
EmployeeName                   Kyle Tom
JobTitle            Swimming Instructor
BasePay                         1568.02
OvertimePay                         0.0
OtherPay                           2.91
Benefits                          121.9
TotalPay                        1570.93
TotalPayBenefits                1692.83
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71808, dtype: object)
(71809, Id                                         71810
EmployeeName                       Kenneth Jones
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                   22.68
Benefits                                  135.72
TotalPay                                 1555.21
TotalPayBenefits                         1690.93
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71809, dtype: object)
(71810, Id                                    71811
EmployeeName                     Lisa Louie
JobTitle            PS Aide Health Services
BasePay                              1561.2
OvertimePay                             0.0
OtherPay                                0.0
Benefits                             121.63
TotalPay                             1561.2
TotalPayBenefits                    1682.83
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71810, dtype: object)
(71811, Id                                         71812
EmployeeName                        Joey Cordero
JobTitle            Public Svc Aide-Public Works
BasePay                                  1560.81
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   121.6
TotalPay                                 1560.81
TotalPayBenefits                         1682.41
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71811, dtype: object)
(71812, Id                                  71813
EmployeeName        Antoinette Alessandra
JobTitle               Testing Technician
BasePay                           1458.51
OvertimePay                         76.32
OtherPay                              0.0
Benefits                           144.07
TotalPay                          1534.83
TotalPayBenefits                   1678.9
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71812, dtype: object)
(71813, Id                               71814
EmployeeName              Michael Ritz
JobTitle            Testing Technician
BasePay                        1435.89
OvertimePay                      76.32
OtherPay                           0.0
Benefits                        166.49
TotalPay                       1512.21
TotalPayBenefits                1678.7
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71813, dtype: object)
(71814, Id                              71815
EmployeeName         Lisa Marie Woody
JobTitle            Recreation Leader
BasePay                       1522.38
OvertimePay                       0.0
OtherPay                        24.94
Benefits                       130.22
TotalPay                      1547.32
TotalPayBenefits              1677.54
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71814, dtype: object)
(71815, Id                                         71816
EmployeeName                        Qining Zheng
JobTitle            Public Svc Aide-Public Works
BasePay                                  1542.22
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  135.28
TotalPay                                 1542.22
TotalPayBenefits                          1677.5
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71815, dtype: object)
(71816, Id                                         71817
EmployeeName                        Mico Zanders
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  144.01
TotalPay                                 1532.53
TotalPayBenefits                         1676.54
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71816, dtype: object)
(71817, Id                              71818
EmployeeName             Hattie Breed
JobTitle            Recreation Leader
BasePay                       1377.61
OvertimePay                       0.0
OtherPay                       105.28
Benefits                       190.96
TotalPay                      1482.89
TotalPayBenefits              1673.85
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71817, dtype: object)
(71818, Id                                         71819
EmployeeName                     Lorenzo Beasley
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                   31.72
Benefits                                  134.16
TotalPay                                 1538.27
TotalPayBenefits                         1672.43
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71818, dtype: object)
(71819, Id                                         71820
EmployeeName                       David Wiggins
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  138.97
TotalPay                                 1532.53
TotalPayBenefits                          1671.5
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71819, dtype: object)
(71820, Id                          71821
EmployeeName             Anna Eng
JobTitle             Junior Clerk
BasePay                     940.8
OvertimePay                603.19
OtherPay                      0.0
Benefits                   126.61
TotalPay                  1543.99
TotalPayBenefits           1670.6
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71820, dtype: object)
(71821, Id                                         71822
EmployeeName                           Eric Lacy
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  136.39
TotalPay                                 1532.53
TotalPayBenefits                         1668.92
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71821, dtype: object)
(71822, Id                                         71823
EmployeeName                         Mary Jarvis
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   134.2
TotalPay                                 1532.53
TotalPayBenefits                         1666.73
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71822, dtype: object)
(71823, Id                                     71824
EmployeeName        Rosa-Leah Martinez-Davis
JobTitle                       Special Nurse
BasePay                              1126.96
OvertimePay                              0.0
OtherPay                               170.5
Benefits                              364.93
TotalPay                             1297.46
TotalPayBenefits                     1662.39
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71823, dtype: object)
(71824, Id                          71825
EmployeeName         Elisha Perez
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay               1295.49
OtherPay                      0.0
Benefits                   365.38
TotalPay                  1295.49
TotalPayBenefits          1660.87
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71824, dtype: object)
(71825, Id                              71826
EmployeeName          Alyssa Thompson
JobTitle            Recreation Leader
BasePay                       1510.14
OvertimePay                       0.0
OtherPay                        29.83
Benefits                       119.98
TotalPay                      1539.97
TotalPayBenefits              1659.95
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71825, dtype: object)
(71826, Id                          71827
EmployeeName        Linda Munguia
JobTitle            Special Nurse
BasePay                    1009.7
OvertimePay                227.12
OtherPay                    63.87
Benefits                   356.66
TotalPay                  1300.69
TotalPayBenefits          1657.35
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71826, dtype: object)
(71827, Id                                         71828
EmployeeName                       August Harris
JobTitle            Public Svc Aide-Public Works
BasePay                                  1526.04
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  130.23
TotalPay                                 1526.04
TotalPayBenefits                         1656.27
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71827, dtype: object)
(71828, Id                          71829
EmployeeName         Donald Brown
JobTitle             Junior Clerk
BasePay                    931.56
OvertimePay                596.58
OtherPay                      0.0
Benefits                   126.71
TotalPay                  1528.14
TotalPayBenefits          1654.85
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71828, dtype: object)
(71829, Id                          71830
EmployeeName          Qiang Zhang
JobTitle                Custodian
BasePay                   1496.86
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   157.75
TotalPay                  1496.86
TotalPayBenefits          1654.61
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71829, dtype: object)
(71830, Id                           71831
EmployeeName        Charles Louden
JobTitle            Pool Lifeguard
BasePay                    1267.82
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    385.29
TotalPay                   1267.82
TotalPayBenefits           1653.11
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71830, dtype: object)
(71831, Id                                          71832
EmployeeName                    Jeremiah Michaels
JobTitle            Swimming Instr/Pool Lifeguard
BasePay                                    847.92
OvertimePay                                   0.0
OtherPay                                    62.15
Benefits                                   741.22
TotalPay                                   910.07
TotalPayBenefits                          1651.29
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71831, dtype: object)
(71832, Id                                         71833
EmployeeName                      Stephon Haymer
JobTitle            Public Svc Aide-Public Works
BasePay                                  1532.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  118.65
TotalPay                                 1532.53
TotalPayBenefits                         1651.18
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71832, dtype: object)
(71833, Id                                 71834
EmployeeName        Raquel Alfonzo-Yumul
JobTitle                   Special Nurse
BasePay                          1236.37
OvertimePay                          0.0
OtherPay                            57.7
Benefits                          355.91
TotalPay                         1294.07
TotalPayBenefits                 1649.98
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71833, dtype: object)
(71834, Id                                         71835
EmployeeName                     Angela Genochio
JobTitle            Public Svc Aide-Public Works
BasePay                                  1480.58
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  169.02
TotalPay                                 1480.58
TotalPayBenefits                          1649.6
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71834, dtype: object)
(71835, Id                                         71836
EmployeeName                       Tahren Denson
JobTitle            Public Svc Aide-Public Works
BasePay                                  1514.34
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  133.82
TotalPay                                 1514.34
TotalPayBenefits                         1648.16
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71835, dtype: object)
(71836, Id                                   71837
EmployeeName             De'Ayne Broussard
JobTitle            Public Service Trainee
BasePay                            1443.84
OvertimePay                            0.0
OtherPay                              3.28
Benefits                            200.63
TotalPay                           1447.12
TotalPayBenefits                   1647.75
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71836, dtype: object)
(71837, Id                                     71838
EmployeeName              Timothy Richardson
JobTitle            Counselor, Juvenile Hall
BasePay                               1468.7
OvertimePay                              0.0
OtherPay                               59.21
Benefits                              118.47
TotalPay                             1527.91
TotalPayBenefits                     1646.38
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 71837, dtype: object)
(71838, Id                                   71839
EmployeeName                        Tin Le
JobTitle            Public Service Trainee
BasePay                            1527.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            118.97
TotalPay                           1527.04
TotalPayBenefits                   1646.01
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71838, dtype: object)
(71839, Id                          71840
EmployeeName        Sim Louankang
JobTitle             Junior Clerk
BasePay                   1523.16
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   117.92
TotalPay                  1523.16
TotalPayBenefits          1641.08
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71839, dtype: object)
(71840, Id                                         71841
EmployeeName                  Alejandra Martinez
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  134.08
TotalPay                                 1506.55
TotalPayBenefits                         1640.63
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71840, dtype: object)
(71841, Id                                         71842
EmployeeName                      Shantell Lumar
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  134.08
TotalPay                                 1506.55
TotalPayBenefits                         1640.63
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71841, dtype: object)
(71842, Id                                   71843
EmployeeName                   Jeremy Waen
JobTitle            Public Service Trainee
BasePay                             1520.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            120.23
TotalPay                            1520.0
TotalPayBenefits                   1640.23
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71842, dtype: object)
(71843, Id                                         71844
EmployeeName                        Eva Hudekoff
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  131.71
TotalPay                                 1506.55
TotalPayBenefits                         1638.26
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71843, dtype: object)
(71844, Id                                         71845
EmployeeName                      Antoine Murray
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   131.7
TotalPay                                 1506.55
TotalPayBenefits                         1638.25
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71844, dtype: object)
(71845, Id                                         71846
EmployeeName                         Kevin Mccoy
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   131.7
TotalPay                                 1506.55
TotalPayBenefits                         1638.25
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71845, dtype: object)
(71846, Id                                         71847
EmployeeName                       Deborah Smith
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  131.64
TotalPay                                 1506.55
TotalPayBenefits                         1638.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71846, dtype: object)
(71847, Id                                         71848
EmployeeName                 Lafayette Thomas IV
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  128.26
TotalPay                                 1506.55
TotalPayBenefits                         1634.81
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71847, dtype: object)
(71848, Id                               71849
EmployeeName            Shickola Ricks
JobTitle            Eligibility Worker
BasePay                         1508.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        125.89
TotalPay                        1508.8
TotalPayBenefits               1634.69
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71848, dtype: object)
(71849, Id                              71850
EmployeeName                  Yin Lau
JobTitle            Recreation Leader
BasePay                       1447.88
OvertimePay                       0.0
OtherPay                        54.95
Benefits                       130.63
TotalPay                      1502.83
TotalPayBenefits              1633.46
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71849, dtype: object)
(71850, Id                          71851
EmployeeName        Deborah Mills
JobTitle            Special Nurse
BasePay                    1241.0
OvertimePay                   0.0
OtherPay                    31.02
Benefits                   359.77
TotalPay                  1272.02
TotalPayBenefits          1631.79
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71850, dtype: object)
(71851, Id                               71852
EmployeeName        Mary Sample-Mattos
JobTitle                Pool Lifeguard
BasePay                        1401.75
OvertimePay                        0.0
OtherPay                          69.7
Benefits                        156.83
TotalPay                       1471.45
TotalPayBenefits               1628.28
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71851, dtype: object)
(71852, Id                                         71853
EmployeeName                        Vince Jubilo
JobTitle            Public Svc Aide-Public Works
BasePay                                  1487.07
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  139.56
TotalPay                                 1487.07
TotalPayBenefits                         1626.63
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71852, dtype: object)
(71853, Id                          71854
EmployeeName           Randy Mano
JobTitle             Junior Clerk
BasePay                    699.13
OvertimePay                569.19
OtherPay                      0.0
Benefits                   356.95
TotalPay                  1268.32
TotalPayBenefits          1625.27
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71853, dtype: object)
(71854, Id                                           71855
EmployeeName                             Jack Wong
JobTitle            Electrical Transit System Mech
BasePay                                        0.0
OvertimePay                                    0.0
OtherPay                                   1509.03
Benefits                                    115.44
TotalPay                                   1509.03
TotalPayBenefits                           1624.47
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71854, dtype: object)
(71855, Id                                         71856
EmployeeName                       Jonae Dickson
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  116.64
TotalPay                                 1506.55
TotalPayBenefits                         1623.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71855, dtype: object)
(71856, Id                                         71857
EmployeeName                         Rothany San
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  116.64
TotalPay                                 1506.55
TotalPayBenefits                         1623.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71856, dtype: object)
(71857, Id                                         71858
EmployeeName                     Arnitial Donely
JobTitle            Public Svc Aide-Public Works
BasePay                                  1506.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  116.64
TotalPay                                 1506.55
TotalPayBenefits                         1623.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71857, dtype: object)
(71858, Id                                         71859
EmployeeName                    Sharita Williams
JobTitle            Public Svc Aide-Public Works
BasePay                                  1500.06
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   119.4
TotalPay                                 1500.06
TotalPayBenefits                         1619.46
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71858, dtype: object)
(71859, Id                           71860
EmployeeName        Michelle Morua
JobTitle             Special Nurse
BasePay                    1216.13
OvertimePay                    0.0
OtherPay                     40.53
Benefits                    362.55
TotalPay                   1256.66
TotalPayBenefits           1619.21
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71859, dtype: object)
(71860, Id                                         71861
EmployeeName                  Stephanie Graupner
JobTitle            Public Svc Aide-Public Works
BasePay                                  1498.88
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  116.78
TotalPay                                 1498.88
TotalPayBenefits                         1615.66
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71860, dtype: object)
(71861, Id                                  71862
EmployeeName                   Lynne Howe
JobTitle            Legislative Assistant
BasePay                            1498.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                           116.01
TotalPay                           1498.5
TotalPayBenefits                  1614.51
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71861, dtype: object)
(71862, Id                                      71863
EmployeeName                 Kristina Wallace
JobTitle            Public Service Aide-Admin
BasePay                                1492.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               119.89
TotalPay                               1492.7
TotalPayBenefits                      1612.59
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 71862, dtype: object)
(71863, Id                            71864
EmployeeName          Joshua Newman
JobTitle            PS Aide to Prof
BasePay                     1494.95
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     116.47
TotalPay                    1494.95
TotalPayBenefits            1611.42
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71863, dtype: object)
(71864, Id                             71865
EmployeeName        Evangeline Reyes
JobTitle               Special Nurse
BasePay                      1068.55
OvertimePay                      0.0
OtherPay                      154.41
Benefits                      387.76
TotalPay                     1222.96
TotalPayBenefits             1610.72
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71864, dtype: object)
(71865, Id                                71866
EmployeeName                 Dianna Fry
JobTitle            Swimming Instructor
BasePay                         1305.94
OvertimePay                         0.0
OtherPay                          11.64
Benefits                         284.14
TotalPay                        1317.58
TotalPayBenefits                1601.72
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71865, dtype: object)
(71866, Id                             71867
EmployeeName        Emilio Benedetti
JobTitle                Junior Clerk
BasePay                       877.28
OvertimePay                   603.51
OtherPay                         0.0
Benefits                      116.26
TotalPay                     1480.79
TotalPayBenefits             1597.05
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71866, dtype: object)
(71867, Id                          71868
EmployeeName         Heng Kuok Ng
JobTitle                Custodian
BasePay                   1389.53
OvertimePay                   0.0
OtherPay                    52.39
Benefits                   154.94
TotalPay                  1441.92
TotalPayBenefits          1596.86
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71867, dtype: object)
(71868, Id                                         71869
EmployeeName                      Lendale Warren
JobTitle            Public Svc Aide-Public Works
BasePay                                  1324.74
OvertimePay                               155.85
OtherPay                                     0.0
Benefits                                  114.63
TotalPay                                 1480.59
TotalPayBenefits                         1595.22
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71868, dtype: object)
(71869, Id                           71870
EmployeeName        Brandy Beazley
JobTitle             Special Nurse
BasePay                        0.0
OvertimePay                    0.0
OtherPay                   1466.15
Benefits                    128.88
TotalPay                   1466.15
TotalPayBenefits           1595.03
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71869, dtype: object)
(71870, Id                                          71871
EmployeeName                       Adam Dominguez
JobTitle            Med Examiner's Investigator I
BasePay                                    1358.4
OvertimePay                                   0.0
OtherPay                                    75.28
Benefits                                    159.7
TotalPay                                  1433.68
TotalPayBenefits                          1593.38
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71870, dtype: object)
(71871, Id                                   71872
EmployeeName                 Joseph Lowman
JobTitle            Public Service Trainee
BasePay                            1454.08
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            136.59
TotalPay                           1454.08
TotalPayBenefits                   1590.67
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71871, dtype: object)
(71872, Id                                   71873
EmployeeName               Jay'Quan Carter
JobTitle            Public Service Trainee
BasePay                             1433.6
OvertimePay                            0.0
OtherPay                             40.18
Benefits                            114.86
TotalPay                           1473.78
TotalPayBenefits                   1588.64
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71872, dtype: object)
(71873, Id                             71874
EmployeeName            Joseph Hyson
JobTitle            Transit Operator
BasePay                      1236.01
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      351.15
TotalPay                     1236.01
TotalPayBenefits             1587.16
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71873, dtype: object)
(71874, Id                               71875
EmployeeName        Christopher Jurach
JobTitle                  Junior Clerk
BasePay                         803.44
OvertimePay                     583.04
OtherPay                           0.0
Benefits                        196.81
TotalPay                       1386.48
TotalPayBenefits               1583.29
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71874, dtype: object)
(71875, Id                               71876
EmployeeName        Krista Miloslavich
JobTitle             Recreation Leader
BasePay                        1443.38
OvertimePay                        0.0
OtherPay                           1.1
Benefits                        136.35
TotalPay                       1444.48
TotalPayBenefits               1580.83
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71875, dtype: object)
(71876, Id                          71877
EmployeeName          James Guzzi
JobTitle             Junior Clerk
BasePay                   1163.14
OvertimePay                290.78
OtherPay                      0.0
Benefits                   125.69
TotalPay                  1453.92
TotalPayBenefits          1579.61
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71876, dtype: object)
(71877, Id                                    71878
EmployeeName                     Karen Wong
JobTitle            PS Aide Health Services
BasePay                             1433.19
OvertimePay                             0.0
OtherPay                                0.0
Benefits                             143.13
TotalPay                            1433.19
TotalPayBenefits                    1576.32
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71877, dtype: object)
(71878, Id                                         71879
EmployeeName                    Orlando Gonzalez
JobTitle            Public Svc Aide-Public Works
BasePay                                  1441.62
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  132.17
TotalPay                                 1441.62
TotalPayBenefits                         1573.79
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71878, dtype: object)
(71879, Id                              71880
EmployeeName          Lakisha Hawkins
JobTitle            Recreation Leader
BasePay                       1439.38
OvertimePay                       0.0
OtherPay                         19.1
Benefits                       113.44
TotalPay                      1458.48
TotalPayBenefits              1571.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71879, dtype: object)
(71880, Id                          71881
EmployeeName        Jerry Hayenga
JobTitle                  Painter
BasePay                    1437.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   132.21
TotalPay                   1437.0
TotalPayBenefits          1569.21
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71880, dtype: object)
(71881, Id                                   71882
EmployeeName                 Adrian Mendez
JobTitle            Animal Control Officer
BasePay                             1416.1
OvertimePay                            0.0
OtherPay                              2.02
Benefits                            148.24
TotalPay                           1418.12
TotalPayBenefits                   1566.36
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71881, dtype: object)
(71882, Id                                  71883
EmployeeName                 Yun Lan Feng
JobTitle            School Crossing Guard
BasePay                            542.06
OvertimePay                           0.0
OtherPay                           903.55
Benefits                           118.52
TotalPay                          1445.61
TotalPayBenefits                  1564.13
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71882, dtype: object)
(71883, Id                                   71884
EmployeeName                   Tiana Burks
JobTitle            Public Service Trainee
BasePay                            1423.36
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            137.69
TotalPay                           1423.36
TotalPayBenefits                   1561.05
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71883, dtype: object)
(71884, Id                              71885
EmployeeName           Obeid Williams
JobTitle            Recreation Leader
BasePay                       1339.82
OvertimePay                       0.0
OtherPay                        97.24
Benefits                       123.68
TotalPay                      1437.06
TotalPayBenefits              1560.74
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71884, dtype: object)
(71885, Id                                         71886
EmployeeName                      David Ayers Jr
JobTitle            Public Svc Aide-Public Works
BasePay                                  1428.63
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  131.48
TotalPay                                 1428.63
TotalPayBenefits                         1560.11
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71885, dtype: object)
(71886, Id                                 71887
EmployeeName        Antonietta Mcfarland
JobTitle                       Custodian
BasePay                            839.0
OvertimePay                          0.0
OtherPay                            6.72
Benefits                          711.83
TotalPay                          845.72
TotalPayBenefits                 1557.55
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71886, dtype: object)
(71887, Id                              71888
EmployeeName           Jackeline Wise
JobTitle            Recreation Leader
BasePay                       1428.37
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       126.21
TotalPay                      1428.37
TotalPayBenefits              1554.58
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71887, dtype: object)
(71888, Id                           71889
EmployeeName        Roberto Moreno
JobTitle              Junior Clerk
BasePay                     707.66
OvertimePay                 732.88
OtherPay                       0.0
Benefits                    113.17
TotalPay                   1440.54
TotalPayBenefits           1553.71
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71888, dtype: object)
(71889, Id                             71890
EmployeeName                  You Lu
JobTitle            Transit Operator
BasePay                       974.16
OvertimePay                    371.8
OtherPay                       94.42
Benefits                      110.42
TotalPay                     1440.38
TotalPayBenefits              1550.8
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71889, dtype: object)
(71890, Id                              71891
EmployeeName        Maria Gemma Jurie
JobTitle                Special Nurse
BasePay                       1179.91
OvertimePay                       0.0
OtherPay                        30.78
Benefits                       335.39
TotalPay                      1210.69
TotalPayBenefits              1546.08
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71890, dtype: object)
(71891, Id                                         71892
EmployeeName                         Kevin Brown
JobTitle            Public Svc Aide-Public Works
BasePay                                  1402.65
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  137.38
TotalPay                                 1402.65
TotalPayBenefits                         1540.03
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71891, dtype: object)
(71892, Id                            71893
EmployeeName        Miranda Moffitt
JobTitle              Special Nurse
BasePay                     1198.05
OvertimePay                     0.0
OtherPay                      11.39
Benefits                     330.17
TotalPay                    1209.44
TotalPayBenefits            1539.61
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71892, dtype: object)
(71893, Id                                         71894
EmployeeName                        Jesus Aromin
JobTitle            Public Svc Aide-Public Works
BasePay                                  1428.63
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   110.6
TotalPay                                 1428.63
TotalPayBenefits                         1539.23
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71893, dtype: object)
(71894, Id                               71895
EmployeeName             Carol Kolenda
JobTitle            Testing Technician
BasePay                        1387.19
OvertimePay                      33.92
OtherPay                           0.0
Benefits                        112.79
TotalPay                       1421.11
TotalPayBenefits                1533.9
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71894, dtype: object)
(71895, Id                            71896
EmployeeName        Veronique Balea
JobTitle             Deputy Sheriff
BasePay                         0.0
OvertimePay                  211.48
OtherPay                    1292.97
Benefits                      22.44
TotalPay                    1504.45
TotalPayBenefits            1526.89
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71895, dtype: object)
(71896, Id                              71897
EmployeeName           Charmela Smith
JobTitle            Recreation Leader
BasePay                        1357.0
OvertimePay                       0.0
OtherPay                        58.58
Benefits                        110.2
TotalPay                      1415.58
TotalPayBenefits              1525.78
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71896, dtype: object)
(71897, Id                           71898
EmployeeName        Martha Simmons
JobTitle              Junior Clerk
BasePay                     614.53
OvertimePay                 582.42
OtherPay                       0.0
Benefits                    328.73
TotalPay                   1196.95
TotalPayBenefits           1525.68
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71897, dtype: object)
(71898, Id                             71899
EmployeeName         Sheron Harrison
JobTitle            Transit Operator
BasePay                       818.58
OvertimePay                   159.86
OtherPay                       26.24
Benefits                      520.74
TotalPay                     1004.68
TotalPayBenefits             1525.42
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71898, dtype: object)
(71899, Id                                71900
EmployeeName        Katherine Reichardt
JobTitle                   Junior Clerk
BasePay                          793.51
OvertimePay                      610.12
OtherPay                            0.0
Benefits                         118.34
TotalPay                        1403.63
TotalPayBenefits                1521.97
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71899, dtype: object)
(71900, Id                              71901
EmployeeName              Ashley Saks
JobTitle            Recreation Leader
BasePay                        1398.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       119.85
TotalPay                       1398.0
TotalPayBenefits              1517.85
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71900, dtype: object)
(71901, Id                            71902
EmployeeName        Sriba Kwadjovie
JobTitle            PS Aide to Prof
BasePay                      1407.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     109.62
TotalPay                     1407.0
TotalPayBenefits            1516.62
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71901, dtype: object)
(71902, Id                          71903
EmployeeName         Kenneth Phan
JobTitle            Special Nurse
BasePay                    1067.8
OvertimePay                   0.0
OtherPay                    106.8
Benefits                   338.42
TotalPay                   1174.6
TotalPayBenefits          1513.02
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71902, dtype: object)
(71903, Id                            71904
EmployeeName        Benjamin Tanner
JobTitle              Special Nurse
BasePay                     1059.53
OvertimePay                     0.0
OtherPay                      146.6
Benefits                     302.58
TotalPay                    1206.13
TotalPayBenefits            1508.71
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71903, dtype: object)
(71904, Id                                         71905
EmployeeName                      Bianca Woodson
JobTitle            Public Svc Aide-Public Works
BasePay                                   1387.4
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  119.56
TotalPay                                  1387.4
TotalPayBenefits                         1506.96
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71904, dtype: object)
(71905, Id                                       71906
EmployeeName                   Garland L. Hall
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 1361.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                145.76
TotalPay                                1361.0
TotalPayBenefits                       1506.76
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71905, dtype: object)
(71906, Id                          71907
EmployeeName         David Gordon
JobTitle             Junior Clerk
BasePay                   1070.83
OvertimePay                 325.4
OtherPay                      0.0
Benefits                    108.1
TotalPay                  1396.23
TotalPayBenefits          1504.33
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71906, dtype: object)
(71907, Id                              71908
EmployeeName              Riley White
JobTitle            Recreation Leader
BasePay                       1395.57
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       108.04
TotalPay                      1395.57
TotalPayBenefits              1503.61
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71907, dtype: object)
(71908, Id                              71909
EmployeeName          Dante Westbrook
JobTitle            Recreation Leader
BasePay                       1385.05
OvertimePay                       0.0
OtherPay                         8.38
Benefits                       108.56
TotalPay                      1393.43
TotalPayBenefits              1501.99
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71908, dtype: object)
(71909, Id                          71910
EmployeeName         Bryant Bacon
JobTitle             Junior Clerk
BasePay                    751.63
OvertimePay                630.57
OtherPay                      0.0
Benefits                   115.91
TotalPay                   1382.2
TotalPayBenefits          1498.11
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71909, dtype: object)
(71910, Id                          71911
EmployeeName         Frank Gookin
JobTitle             Truck Driver
BasePay                   1255.31
OvertimePay                 52.09
OtherPay                    46.88
Benefits                   142.91
TotalPay                  1354.28
TotalPayBenefits          1497.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71910, dtype: object)
(71911, Id                          71912
EmployeeName          Anson Louie
JobTitle                  Dentist
BasePay                    1186.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   306.62
TotalPay                   1186.8
TotalPayBenefits          1493.42
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71911, dtype: object)
(71912, Id                             71913
EmployeeName         Wallace Loggins
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                     1387.09
Benefits                      106.11
TotalPay                     1387.09
TotalPayBenefits              1493.2
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71912, dtype: object)
(71913, Id                                71914
EmployeeName                Michele Lee
JobTitle            Swimming Instructor
BasePay                         1138.44
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         349.08
TotalPay                        1138.44
TotalPayBenefits                1487.52
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71913, dtype: object)
(71914, Id                                   71915
EmployeeName                 David Pleites
JobTitle            Public Service Trainee
BasePay                             1380.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            107.45
TotalPay                            1380.0
TotalPayBenefits                   1487.45
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71914, dtype: object)
(71915, Id                              71916
EmployeeName         Bernadette Flynn
JobTitle            Recreation Leader
BasePay                       1334.84
OvertimePay                       0.0
OtherPay                        33.88
Benefits                       108.13
TotalPay                      1368.72
TotalPayBenefits              1476.85
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71915, dtype: object)
(71916, Id                          71917
EmployeeName             Yuyun Su
JobTitle                Cashier 1
BasePay                    1336.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   140.29
TotalPay                   1336.0
TotalPayBenefits          1476.29
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71916, dtype: object)
(71917, Id                               71918
EmployeeName        Genevieve Ongsioco
JobTitle                 Special Nurse
BasePay                        1093.53
OvertimePay                        0.0
OtherPay                         54.04
Benefits                        327.98
TotalPay                       1147.57
TotalPayBenefits               1475.55
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71917, dtype: object)
(71918, Id                                         71919
EmployeeName                       Corey Jackson
JobTitle            Public Svc Aide-Public Works
BasePay                                  1337.71
OvertimePay                                  0.0
OtherPay                                   31.66
Benefits                                  106.01
TotalPay                                 1369.37
TotalPayBenefits                         1475.38
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71918, dtype: object)
(71919, Id                             71920
EmployeeName        Patricia Devlieg
JobTitle             Manager IV, MTA
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      1365.2
Benefits                      108.54
TotalPay                      1365.2
TotalPayBenefits             1473.74
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71919, dtype: object)
(71920, Id                          71921
EmployeeName             Lina Lee
JobTitle                Cashier 2
BasePay                       0.0
OvertimePay                   0.0
OtherPay                  1367.42
Benefits                   104.61
TotalPay                  1367.42
TotalPayBenefits          1472.03
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71920, dtype: object)
(71921, Id                                       71922
EmployeeName                  Giovanni Panopio
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 1361.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                109.61
TotalPay                                1361.0
TotalPayBenefits                       1470.61
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71921, dtype: object)
(71922, Id                          71923
EmployeeName          Teresita Co
JobTitle            Special Nurse
BasePay                     989.1
OvertimePay                   0.0
OtherPay                   164.85
Benefits                   312.53
TotalPay                  1153.95
TotalPayBenefits          1466.48
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71922, dtype: object)
(71923, Id                                 71924
EmployeeName                   Emily Lee
JobTitle            Physician Specialist
BasePay                          1175.54
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          289.52
TotalPay                         1175.54
TotalPayBenefits                 1465.06
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71923, dtype: object)
(71924, Id                                   71925
EmployeeName              Christina Simone
JobTitle            Public Service Trainee
BasePay                            1274.88
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            185.89
TotalPay                           1274.88
TotalPayBenefits                   1460.77
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71924, dtype: object)
(71925, Id                              71926
EmployeeName           Jonathan Singh
JobTitle            Recreation Leader
BasePay                       1200.97
OvertimePay                       0.0
OtherPay                        58.61
Benefits                       196.63
TotalPay                      1259.58
TotalPayBenefits              1456.21
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71925, dtype: object)
(71926, Id                                 71927
EmployeeName               Uttama Sharma
JobTitle            Physician Specialist
BasePay                          1143.88
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          307.48
TotalPay                         1143.88
TotalPayBenefits                 1451.36
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71926, dtype: object)
(71927, Id                                   71928
EmployeeName                   Joan Turner
JobTitle            Animal Control Officer
BasePay                             1346.1
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            104.88
TotalPay                            1346.1
TotalPayBenefits                   1450.98
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71927, dtype: object)
(71928, Id                           71929
EmployeeName        Jocelyn Vargas
JobTitle                    Porter
BasePay                    1250.55
OvertimePay                    0.0
OtherPay                     85.75
Benefits                     114.5
TotalPay                    1336.3
TotalPayBenefits            1450.8
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71928, dtype: object)
(71929, Id                          71930
EmployeeName            Nancy Ren
JobTitle                   Porter
BasePay                    1310.1
OvertimePay                   0.0
OtherPay                     15.9
Benefits                   122.37
TotalPay                   1326.0
TotalPayBenefits          1448.37
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71929, dtype: object)
(71930, Id                               71931
EmployeeName                Aaron Lord
JobTitle            Testing Technician
BasePay                         1266.3
OvertimePay                      76.32
OtherPay                           0.0
Benefits                        105.22
TotalPay                       1342.62
TotalPayBenefits               1447.84
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71930, dtype: object)
(71931, Id                              71932
EmployeeName                Minh Tang
JobTitle            Recreation Leader
BasePay                       1342.19
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       104.42
TotalPay                      1342.19
TotalPayBenefits              1446.61
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71931, dtype: object)
(71932, Id                                    71933
EmployeeName                 Farheen Usmani
JobTitle            PS Aide Health Services
BasePay                             1317.26
OvertimePay                             0.0
OtherPay                                0.0
Benefits                             128.52
TotalPay                            1317.26
TotalPayBenefits                    1445.78
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71932, dtype: object)
(71933, Id                                71934
EmployeeName              Timothy Chase
JobTitle            Swimming Instructor
BasePay                         1341.18
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         104.08
TotalPay                        1341.18
TotalPayBenefits                1445.26
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71933, dtype: object)
(71934, Id                          71935
EmployeeName        Suzannah Luhn
JobTitle            Special Nurse
BasePay                   1334.76
OvertimePay                   0.0
OtherPay                     6.67
Benefits                   101.76
TotalPay                  1341.43
TotalPayBenefits          1443.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71934, dtype: object)
(71935, Id                               71936
EmployeeName             Noni Galloway
JobTitle            Testing Technician
BasePay                        1211.03
OvertimePay                     112.22
OtherPay                           0.0
Benefits                        119.22
TotalPay                       1323.25
TotalPayBenefits               1442.47
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71935, dtype: object)
(71936, Id                              71937
EmployeeName           Jeffrey Egbert
JobTitle            Museum Preparator
BasePay                        1297.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       142.51
TotalPay                       1297.6
TotalPayBenefits              1440.11
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71936, dtype: object)
(71937, Id                                 71938
EmployeeName                David Pakter
JobTitle            Physician Specialist
BasePay                           753.75
OvertimePay                          0.0
OtherPay                           408.9
Benefits                          276.11
TotalPay                         1162.65
TotalPayBenefits                 1438.76
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 71937, dtype: object)
(71938, Id                                    71939
EmployeeName        Romina Rodriguez-Crosta
JobTitle                  Recreation Leader
BasePay                              1305.0
OvertimePay                             0.0
OtherPay                               15.3
Benefits                             117.49
TotalPay                             1320.3
TotalPayBenefits                    1437.79
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71938, dtype: object)
(71939, Id                          71940
EmployeeName        Jamecia Henry
JobTitle             Junior Clerk
BasePay                    762.92
OvertimePay                562.27
OtherPay                      0.0
Benefits                   110.75
TotalPay                  1325.19
TotalPayBenefits          1435.94
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71939, dtype: object)
(71940, Id                           71941
EmployeeName        Troy Danielsen
JobTitle              Junior Clerk
BasePay                     659.04
OvertimePay                 663.96
OtherPay                       0.0
Benefits                    112.01
TotalPay                    1323.0
TotalPayBenefits           1435.01
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71940, dtype: object)
(71941, Id                              71942
EmployeeName             Robin Duryea
JobTitle            Recreation Leader
BasePay                       1312.82
OvertimePay                       0.0
OtherPay                          2.7
Benefits                       113.48
TotalPay                      1315.52
TotalPayBenefits               1429.0
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71941, dtype: object)
(71942, Id                                         71943
EmployeeName                 Thomas Jefferson Jr
JobTitle            Public Svc Aide-Public Works
BasePay                                  1246.19
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  182.08
TotalPay                                 1246.19
TotalPayBenefits                         1428.27
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71942, dtype: object)
(71943, Id                           71944
EmployeeName        Steven Gresham
JobTitle              Junior Clerk
BasePay                     707.12
OvertimePay                 610.43
OtherPay                       0.0
Benefits                    108.64
TotalPay                   1317.55
TotalPayBenefits           1426.19
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71943, dtype: object)
(71944, Id                                  71945
EmployeeName        Elizabeth Mac Quarrie
JobTitle               Testing Technician
BasePay                           1314.99
OvertimePay                           0.0
OtherPay                              0.0
Benefits                           110.68
TotalPay                          1314.99
TotalPayBenefits                  1425.67
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71944, dtype: object)
(71945, Id                          71946
EmployeeName         Maya Vasquez
JobTitle            Special Nurse
BasePay                   1030.85
OvertimePay                   0.0
OtherPay                    75.25
Benefits                   319.18
TotalPay                   1106.1
TotalPayBenefits          1425.28
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71945, dtype: object)
(71946, Id                                         71947
EmployeeName                        Booker Kyles
JobTitle            Public Svc Aide-Public Works
BasePay                                  1294.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  128.98
TotalPay                                 1294.45
TotalPayBenefits                         1423.43
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71946, dtype: object)
(71947, Id                                         71948
EmployeeName                          Omar Pratt
JobTitle            Public Svc Aide-Public Works
BasePay                                  1305.25
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  118.06
TotalPay                                 1305.25
TotalPayBenefits                         1423.31
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71947, dtype: object)
(71948, Id                          71949
EmployeeName         Abebe Zewdie
JobTitle                 Engineer
BasePay                       0.0
OvertimePay                   0.0
OtherPay                  1312.82
Benefits                   104.37
TotalPay                  1312.82
TotalPayBenefits          1417.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71948, dtype: object)
(71949, Id                                    71950
EmployeeName        Che Shimizu-Castellanos
JobTitle             Public Service Trainee
BasePay                             1295.36
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              115.9
TotalPay                            1295.36
TotalPayBenefits                    1411.26
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 71949, dtype: object)
(71950, Id                              71951
EmployeeName            Murat Bajrami
JobTitle            Recreation Leader
BasePay                       1290.11
OvertimePay                       0.0
OtherPay                        18.59
Benefits                        101.6
TotalPay                       1308.7
TotalPayBenefits               1410.3
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71950, dtype: object)
(71951, Id                                       71952
EmployeeName                        Frank Fung
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                 1300.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 103.0
TotalPay                                1300.0
TotalPayBenefits                        1403.0
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71951, dtype: object)
(71952, Id                          71953
EmployeeName        Chang Gee Lim
JobTitle            Special Nurse
BasePay                   1044.75
OvertimePay                   0.0
OtherPay                    48.76
Benefits                    308.7
TotalPay                  1093.51
TotalPayBenefits          1402.21
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71952, dtype: object)
(71953, Id                          71954
EmployeeName        Ashley Peters
JobTitle             Junior Clerk
BasePay                    715.94
OvertimePay                583.04
OtherPay                      0.0
Benefits                   101.91
TotalPay                  1298.98
TotalPayBenefits          1400.89
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71953, dtype: object)
(71954, Id                                         71955
EmployeeName                         Darren Gray
JobTitle            Public Svc Aide-Public Works
BasePay                                   1288.3
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  110.83
TotalPay                                  1288.3
TotalPayBenefits                         1399.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71954, dtype: object)
(71955, Id                           71956
EmployeeName        Karla Calderon
JobTitle              Junior Clerk
BasePay                     700.37
OvertimePay                 583.04
OtherPay                       0.0
Benefits                    113.43
TotalPay                   1283.41
TotalPayBenefits           1396.84
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71955, dtype: object)
(71956, Id                               71957
EmployeeName         Lydia De Garmeaux
JobTitle            Testing Technician
BasePay                        1173.14
OvertimePay                      122.2
OtherPay                           0.0
Benefits                        100.67
TotalPay                       1295.34
TotalPayBenefits               1396.01
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71956, dtype: object)
(71957, Id                          71958
EmployeeName        Erik Scudmore
JobTitle            Special Nurse
BasePay                    930.75
OvertimePay                   0.0
OtherPay                   155.12
Benefits                   308.85
TotalPay                  1085.87
TotalPayBenefits          1394.72
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71957, dtype: object)
(71958, Id                              71959
EmployeeName        Angelina Marcaida
JobTitle                 Junior Clerk
BasePay                        695.14
OvertimePay                    589.03
OtherPay                          0.0
Benefits                        109.1
TotalPay                      1284.17
TotalPayBenefits              1393.27
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71958, dtype: object)
(71959, Id                          71960
EmployeeName           Kevin Frye
JobTitle             Junior Clerk
BasePay                    707.13
OvertimePay                576.11
OtherPay                      0.0
Benefits                   107.14
TotalPay                  1283.24
TotalPayBenefits          1390.38
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71959, dtype: object)
(71960, Id                          71961
EmployeeName          Yuri Donets
JobTitle             Junior Clerk
BasePay                     689.9
OvertimePay                596.58
OtherPay                      0.0
Benefits                   100.95
TotalPay                  1286.48
TotalPayBenefits          1387.43
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71960, dtype: object)
(71961, Id                               71962
EmployeeName          Gregory Braguine
JobTitle            Soft Floor Coverer
BasePay                        1211.33
OvertimePay                        0.0
OtherPay                         65.94
Benefits                        107.86
TotalPay                       1277.27
TotalPayBenefits               1385.13
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71961, dtype: object)
(71962, Id                              71963
EmployeeName        Jonathan De Jesus
JobTitle              PS Aide to Prof
BasePay                       1265.65
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       116.02
TotalPay                      1265.65
TotalPayBenefits              1381.67
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71962, dtype: object)
(71963, Id                               71964
EmployeeName             Juka Takemura
JobTitle            Testing Technician
BasePay                        1221.07
OvertimePay                       42.4
OtherPay                           0.0
Benefits                        110.16
TotalPay                       1263.47
TotalPayBenefits               1373.63
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71963, dtype: object)
(71964, Id                              71965
EmployeeName              Elena Oxman
JobTitle            Recreation Leader
BasePay                        1260.0
OvertimePay                       0.0
OtherPay                          3.6
Benefits                       109.53
TotalPay                       1263.6
TotalPayBenefits              1373.13
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71964, dtype: object)
(71965, Id                               71966
EmployeeName        Cristina Santillan
JobTitle                 Special Nurse
BasePay                          915.9
OvertimePay                        0.0
OtherPay                        152.65
Benefits                        304.47
TotalPay                       1068.55
TotalPayBenefits               1373.02
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71965, dtype: object)
(71966, Id                          71967
EmployeeName         Mary Bianchi
JobTitle            Special Nurse
BasePay                   1071.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   298.83
TotalPay                  1071.53
TotalPayBenefits          1370.36
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71966, dtype: object)
(71967, Id                          71968
EmployeeName         James Ferrer
JobTitle             Junior Clerk
BasePay                    715.94
OvertimePay                548.12
OtherPay                      0.0
Benefits                   105.64
TotalPay                  1264.06
TotalPayBenefits           1369.7
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71967, dtype: object)
(71968, Id                                       71969
EmployeeName                       Ann Lazarus
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                 1267.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                100.39
TotalPay                                1267.0
TotalPayBenefits                       1367.39
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71968, dtype: object)
(71969, Id                          71970
EmployeeName          Cerina Byrd
JobTitle             Junior Clerk
BasePay                     705.6
OvertimePay                555.66
OtherPay                      0.0
Benefits                   104.84
TotalPay                  1261.26
TotalPayBenefits           1366.1
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71969, dtype: object)
(71970, Id                           71971
EmployeeName        Emilia Patrick
JobTitle             Special Nurse
BasePay                    1061.81
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    303.92
TotalPay                   1061.81
TotalPayBenefits           1365.73
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71970, dtype: object)
(71971, Id                          71972
EmployeeName        Betty Packard
JobTitle             Junior Clerk
BasePay                    640.99
OvertimePay                616.73
OtherPay                      0.0
Benefits                   104.31
TotalPay                  1257.72
TotalPayBenefits          1362.03
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71971, dtype: object)
(71972, Id                                          71973
EmployeeName                     James Bennington
JobTitle            Chf Statnry Eng,WtrTreat Plnt
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                  1245.64
Benefits                                   116.24
TotalPay                                  1245.64
TotalPayBenefits                          1361.88
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 71972, dtype: object)
(71973, Id                             71974
EmployeeName        Natalie Champion
JobTitle                Junior Clerk
BasePay                       680.25
OvertimePay                   575.18
OtherPay                         0.0
Benefits                      106.45
TotalPay                     1255.43
TotalPayBenefits             1361.88
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71973, dtype: object)
(71974, Id                          71975
EmployeeName         Shaun Cotten
JobTitle                Cashier 2
BasePay                     676.0
OvertimePay                221.82
OtherPay                      0.0
Benefits                   455.04
TotalPay                   897.82
TotalPayBenefits          1352.86
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71974, dtype: object)
(71975, Id                                   71976
EmployeeName                   Lucia Ramos
JobTitle            Deputy Court Clerk III
BasePay                                0.0
OvertimePay                            0.0
OtherPay                           1254.62
Benefits                             96.14
TotalPay                           1254.62
TotalPayBenefits                   1350.76
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71975, dtype: object)
(71976, Id                             71977
EmployeeName        Thomas Gallagher
JobTitle                Junior Clerk
BasePay                       650.22
OvertimePay                   596.27
OtherPay                         0.0
Benefits                      103.65
TotalPay                     1246.49
TotalPayBenefits             1350.14
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71976, dtype: object)
(71977, Id                          71978
EmployeeName          Randall Orr
JobTitle             Junior Clerk
BasePay                    645.81
OvertimePay                589.66
OtherPay                      0.0
Benefits                   114.07
TotalPay                  1235.47
TotalPayBenefits          1349.54
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71977, dtype: object)
(71978, Id                           71979
EmployeeName        Stephen Suacci
JobTitle              Junior Clerk
BasePay                     667.86
OvertimePay                 583.04
OtherPay                       0.0
Benefits                     98.18
TotalPay                    1250.9
TotalPayBenefits           1349.08
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71978, dtype: object)
(71979, Id                          71980
EmployeeName          Aisha Blake
JobTitle             Junior Clerk
BasePay                    689.49
OvertimePay                555.34
OtherPay                      0.0
Benefits                   103.86
TotalPay                  1244.83
TotalPayBenefits          1348.69
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71979, dtype: object)
(71980, Id                              71981
EmployeeName              Alyssa Uchi
JobTitle            Recreation Leader
BasePay                       1243.89
OvertimePay                       0.0
OtherPay                         3.19
Benefits                        96.97
TotalPay                      1247.08
TotalPayBenefits              1344.05
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71980, dtype: object)
(71981, Id                            71982
EmployeeName        Victoria Seixas
JobTitle               Junior Clerk
BasePay                       722.0
OvertimePay                  514.42
OtherPay                        0.0
Benefits                     107.35
TotalPay                    1236.42
TotalPayBenefits            1343.77
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71981, dtype: object)
(71982, Id                          71983
EmployeeName          Queena Chen
JobTitle             Junior Clerk
BasePay                    654.22
OvertimePay                582.73
OtherPay                      0.0
Benefits                   102.85
TotalPay                  1236.95
TotalPayBenefits           1339.8
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71982, dtype: object)
(71983, Id                              71984
EmployeeName            Edward Corpuz
JobTitle            Recreation Leader
BasePay                       1154.03
OvertimePay                       0.0
OtherPay                        78.62
Benefits                       104.66
TotalPay                      1232.65
TotalPayBenefits              1337.31
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 71983, dtype: object)
(71984, Id                                         71985
EmployeeName                Latisha Stubblefield
JobTitle            Public Svc Aide-Public Works
BasePay                                  1189.19
OvertimePay                                  0.0
OtherPay                                   25.52
Benefits                                  122.01
TotalPay                                 1214.71
TotalPayBenefits                         1336.72
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71984, dtype: object)
(71985, Id                               71986
EmployeeName           Hayley Saccoman
JobTitle            Testing Technician
BasePay                         1055.7
OvertimePay                     172.51
OtherPay                           0.0
Benefits                        105.68
TotalPay                       1228.21
TotalPayBenefits               1333.89
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 71985, dtype: object)
(71986, Id                                71987
EmployeeName                Janet Rossi
JobTitle            Physician Assistant
BasePay                             0.0
OvertimePay                         0.0
OtherPay                        1229.14
Benefits                          94.03
TotalPay                        1229.14
TotalPayBenefits                1323.17
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71986, dtype: object)
(71987, Id                                           71988
EmployeeName                          Jaclyn Berry
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                    1212.98
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                    107.15
TotalPay                                   1212.98
TotalPayBenefits                           1320.13
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71987, dtype: object)
(71988, Id                                  71989
EmployeeName                 Ruby Russell
JobTitle            School Crossing Guard
BasePay                               0.0
OvertimePay                           0.0
OtherPay                          1225.76
Benefits                            93.77
TotalPay                          1225.76
TotalPayBenefits                  1319.53
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 71988, dtype: object)
(71989, Id                          71990
EmployeeName         David Novick
JobTitle             Junior Clerk
BasePay                    640.99
OvertimePay                575.81
OtherPay                      0.0
Benefits                   101.43
TotalPay                   1216.8
TotalPayBenefits          1318.23
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71989, dtype: object)
(71990, Id                             71991
EmployeeName        Robin Vanderberg
JobTitle               Special Nurse
BasePay                        861.9
OvertimePay                      0.0
OtherPay                      186.75
Benefits                      266.74
TotalPay                     1048.65
TotalPayBenefits             1315.39
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 71990, dtype: object)
(71991, Id                                         71992
EmployeeName                   Alicia Washington
JobTitle            Public Svc Aide-Public Works
BasePay                                  1220.83
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   94.52
TotalPay                                 1220.83
TotalPayBenefits                         1315.35
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 71991, dtype: object)
(71992, Id                           71993
EmployeeName        Kristen Strait
JobTitle             Special Nurse
BasePay                      875.7
OvertimePay                    0.0
OtherPay                    145.95
Benefits                    292.57
TotalPay                   1021.65
TotalPayBenefits           1314.22
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 71992, dtype: object)
(71993, Id                                           71994
EmployeeName                       Sergey Bikowsky
JobTitle            StdntDsgnTrain3, Arch/Eng/Plng
BasePay                                    1011.04
OvertimePay                                    0.0
OtherPay                                     21.19
Benefits                                    281.64
TotalPay                                   1032.23
TotalPayBenefits                           1313.87
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 71993, dtype: object)
(71994, Id                            71995
EmployeeName        Marie Franchini
JobTitle               Junior Clerk
BasePay                      654.63
OvertimePay                   541.5
OtherPay                        0.0
Benefits                     116.15
TotalPay                    1196.13
TotalPayBenefits            1312.28
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71994, dtype: object)
(71995, Id                                   71996
EmployeeName                  Diego Alfaro
JobTitle            Public Service Trainee
BasePay                             1172.4
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            139.57
TotalPay                            1172.4
TotalPayBenefits                   1311.97
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 71995, dtype: object)
(71996, Id                                       71997
EmployeeName                     Aaron Obenyah
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                1216.39
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 94.17
TotalPay                               1216.39
TotalPayBenefits                       1310.56
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 71996, dtype: object)
(71997, Id                                71998
EmployeeName                  Billy Tam
JobTitle            Swimming Instructor
BasePay                          1122.8
OvertimePay                         0.0
OtherPay                          89.84
Benefits                          96.28
TotalPay                        1212.64
TotalPayBenefits                1308.92
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 71997, dtype: object)
(71998, Id                            71999
EmployeeName           Emily Travis
JobTitle            PS Aide to Prof
BasePay                     1213.54
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      94.54
TotalPay                    1213.54
TotalPayBenefits            1308.08
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 71998, dtype: object)
(71999, Id                          72000
EmployeeName         Laura Grgich
JobTitle            Special Nurse
BasePay                    823.65
OvertimePay                   0.0
OtherPay                    41.18
Benefits                   443.01
TotalPay                   864.83
TotalPayBenefits          1307.84
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 71999, dtype: object)
(72000, Id                          72001
EmployeeName            Jason Lau
JobTitle             Junior Clerk
BasePay                    649.81
OvertimePay                562.27
OtherPay                      0.0
Benefits                    95.13
TotalPay                  1212.08
TotalPayBenefits          1307.21
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72000, dtype: object)
(72001, Id                                   72002
EmployeeName                    Ray Torres
JobTitle            Public Service Trainee
BasePay                            1121.28
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            185.77
TotalPay                           1121.28
TotalPayBenefits                   1307.05
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72001, dtype: object)
(72002, Id                                      72003
EmployeeName                         Ann Caen
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1199.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               107.05
TotalPay                               1199.9
TotalPayBenefits                      1306.95
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72002, dtype: object)
(72003, Id                          72004
EmployeeName        Kenneth Jones
JobTitle             Junior Clerk
BasePay                    632.58
OvertimePay                569.19
OtherPay                      0.0
Benefits                   105.01
TotalPay                  1201.77
TotalPayBenefits          1306.78
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72003, dtype: object)
(72004, Id                              72005
EmployeeName            India Sabater
JobTitle            Recreation Leader
BasePay                       1212.85
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        93.89
TotalPay                      1212.85
TotalPayBenefits              1306.74
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72004, dtype: object)
(72005, Id                                      72006
EmployeeName                       Mark Buell
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1200.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.19
TotalPay                               1200.0
TotalPayBenefits                      1305.19
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72005, dtype: object)
(72006, Id                                     72007
EmployeeName                 Larry Liederman
JobTitle            Commissioner No Benefits
BasePay                               1199.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              105.15
TotalPay                              1199.9
TotalPayBenefits                     1305.05
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72006, dtype: object)
(72007, Id                                      72008
EmployeeName                 Vincent Courtney
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1199.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.15
TotalPay                               1199.9
TotalPayBenefits                      1305.05
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72007, dtype: object)
(72008, Id                                     72009
EmployeeName                     Kevin Cheng
JobTitle            Commissioner No Benefits
BasePay                               1199.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              105.15
TotalPay                              1199.9
TotalPayBenefits                     1305.05
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72008, dtype: object)
(72009, Id                                      72010
EmployeeName                      Anson Moran
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1199.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.15
TotalPay                               1199.9
TotalPayBenefits                      1305.05
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72009, dtype: object)
(72010, Id                                      72011
EmployeeName                       Art Torres
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1199.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.15
TotalPay                               1199.9
TotalPayBenefits                      1305.05
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72010, dtype: object)
(72011, Id                            72012
EmployeeName        Jennifer Miller
JobTitle              Special Nurse
BasePay                       875.7
OvertimePay                     0.0
OtherPay                     145.95
Benefits                     283.05
TotalPay                    1021.65
TotalPayBenefits             1304.7
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72011, dtype: object)
(72012, Id                                      72013
EmployeeName                      Peter Stern
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.06
TotalPay                               1198.7
TotalPayBenefits                      1303.76
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72012, dtype: object)
(72013, Id                                      72014
EmployeeName                Katherine Favetti
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               105.06
TotalPay                               1198.7
TotalPayBenefits                      1303.76
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72013, dtype: object)
(72014, Id                          72015
EmployeeName          Martha Baer
JobTitle            Special Nurse
BasePay                     959.4
OvertimePay                   0.0
OtherPay                    41.04
Benefits                   301.04
TotalPay                  1000.44
TotalPayBenefits          1301.48
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72014, dtype: object)
(72015, Id                            72016
EmployeeName        Walter Petruska
JobTitle               Junior Clerk
BasePay                      636.99
OvertimePay                  569.19
OtherPay                        0.0
Benefits                      94.68
TotalPay                    1206.18
TotalPayBenefits            1300.86
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72015, dtype: object)
(72016, Id                                      72017
EmployeeName                        Doreen Ho
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               104.85
TotalPay                               1196.0
TotalPayBenefits                      1300.85
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72016, dtype: object)
(72017, Id                                      72018
EmployeeName                      Leslie Katz
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               104.85
TotalPay                               1196.0
TotalPayBenefits                      1300.85
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72017, dtype: object)
(72018, Id                                      72019
EmployeeName                      Angela Chan
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               104.85
TotalPay                               1196.0
TotalPayBenefits                      1300.85
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72018, dtype: object)
(72019, Id                                      72020
EmployeeName                   Carol Kingsley
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               104.85
TotalPay                               1196.0
TotalPayBenefits                      1300.85
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72019, dtype: object)
(72020, Id                                   72021
EmployeeName                  Heidi Arines
JobTitle            Public Service Trainee
BasePay                            1192.96
OvertimePay                            0.0
OtherPay                              14.0
Benefits                             93.44
TotalPay                           1206.96
TotalPayBenefits                    1300.4
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72020, dtype: object)
(72021, Id                          72022
EmployeeName          Honorea Lim
JobTitle            Special Nurse
BasePay                     875.7
OvertimePay                   0.0
OtherPay                   145.95
Benefits                   276.27
TotalPay                  1021.65
TotalPayBenefits          1297.92
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72021, dtype: object)
(72022, Id                                         72023
EmployeeName                    Justine Harrison
JobTitle            Public Svc Aide-Public Works
BasePay                                  1181.86
OvertimePay                                  0.0
OtherPay                                   21.96
Benefits                                    93.2
TotalPay                                 1203.82
TotalPayBenefits                         1297.02
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72022, dtype: object)
(72023, Id                                       72024
EmployeeName                   Christine Hwang
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                 1200.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 95.68
TotalPay                                1200.0
TotalPayBenefits                       1295.68
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72023, dtype: object)
(72024, Id                                      72025
EmployeeName                  Thomas Harrison
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1200.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.1
TotalPay                               1200.0
TotalPayBenefits                       1295.1
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72024, dtype: object)
(72025, Id                                      72026
EmployeeName                   Gloria Bonilla
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1200.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.1
TotalPay                               1200.0
TotalPayBenefits                       1295.1
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72025, dtype: object)
(72026, Id                                      72027
EmployeeName                  Lawrence Martin
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1200.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.1
TotalPay                               1200.0
TotalPayBenefits                       1295.1
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72026, dtype: object)
(72027, Id                                      72028
EmployeeName                   Meagan Levitan
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1200.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.1
TotalPay                               1200.0
TotalPayBenefits                       1295.1
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72027, dtype: object)
(72028, Id                                      72029
EmployeeName                 Francesca Vietor
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1199.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                95.09
TotalPay                               1199.9
TotalPayBenefits                      1294.99
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72028, dtype: object)
(72029, Id                                   72030
EmployeeName        Jeanette De-Los-Santos
JobTitle                     Special Nurse
BasePay                              875.7
OvertimePay                            0.0
OtherPay                            145.95
Benefits                             272.9
TotalPay                           1021.65
TotalPayBenefits                   1294.55
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72029, dtype: object)
(72030, Id                          72031
EmployeeName          Alice Smith
JobTitle             Junior Clerk
BasePay                     605.3
OvertimePay                589.66
OtherPay                      0.0
Benefits                    99.31
TotalPay                  1194.96
TotalPayBenefits          1294.27
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72030, dtype: object)
(72031, Id                          72032
EmployeeName          David Giang
JobTitle             Junior Clerk
BasePay                    645.81
OvertimePay                548.73
OtherPay                      0.0
Benefits                     99.5
TotalPay                  1194.54
TotalPayBenefits          1294.04
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72031, dtype: object)
(72032, Id                                      72033
EmployeeName                        Mary Jung
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72032, dtype: object)
(72033, Id                                      72034
EmployeeName                     Sonia Melara
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72033, dtype: object)
(72034, Id                                      72035
EmployeeName                      Edward Chow
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72034, dtype: object)
(72035, Id                                      72036
EmployeeName                     Margine Sako
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72035, dtype: object)
(72036, Id                                      72037
EmployeeName                  Edward Normandy
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72036, dtype: object)
(72037, Id                                      72038
EmployeeName                 David Sanchez Jr
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72037, dtype: object)
(72038, Id                                      72039
EmployeeName               Richard Guggenhime
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72038, dtype: object)
(72039, Id                                      72040
EmployeeName                 Catherine Waters
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72039, dtype: object)
(72040, Id                                      72041
EmployeeName                    Larry Mazzola
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72040, dtype: object)
(72041, Id                                      72042
EmployeeName                    Eleanor Johns
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1198.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 95.0
TotalPay                               1198.7
TotalPayBenefits                       1293.7
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72041, dtype: object)
(72042, Id                                      72043
EmployeeName                    Linda Crayton
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                               1198.55
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.99
TotalPay                              1198.55
TotalPayBenefits                      1293.54
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72042, dtype: object)
(72043, Id                                     72044
EmployeeName                      John Ummel
JobTitle            Commissioner No Benefits
BasePay                               1199.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               93.19
TotalPay                              1199.9
TotalPayBenefits                     1293.09
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72043, dtype: object)
(72044, Id                                      72045
EmployeeName                    Julius Turman
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.78
TotalPay                               1196.0
TotalPayBenefits                      1290.78
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72044, dtype: object)
(72045, Id                                      72046
EmployeeName                    Petra DeJesus
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.78
TotalPay                               1196.0
TotalPayBenefits                      1290.78
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72045, dtype: object)
(72046, Id                                      72047
EmployeeName                  Thomas Mazzucco
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.78
TotalPay                               1196.0
TotalPayBenefits                      1290.78
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72046, dtype: object)
(72047, Id                                      72048
EmployeeName                 Kimberly Brandon
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1196.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.78
TotalPay                               1196.0
TotalPayBenefits                      1290.78
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72047, dtype: object)
(72048, Id                             72049
EmployeeName        Mary Jean Koontz
JobTitle                Junior Clerk
BasePay                       707.53
OvertimePay                   463.37
OtherPay                         0.0
Benefits                      117.11
TotalPay                      1170.9
TotalPayBenefits             1288.01
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72048, dtype: object)
(72049, Id                          72050
EmployeeName         Diana Taylor
JobTitle             Junior Clerk
BasePay                    539.32
OvertimePay                654.93
OtherPay                      0.0
Benefits                    92.98
TotalPay                  1194.25
TotalPayBenefits          1287.23
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72049, dtype: object)
(72050, Id                                   72051
EmployeeName           Devinelle Broussard
JobTitle            Public Service Trainee
BasePay                            1175.04
OvertimePay                            0.0
OtherPay                              0.82
Benefits                            110.44
TotalPay                           1175.86
TotalPayBenefits                    1286.3
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72050, dtype: object)
(72051, Id                                  72052
EmployeeName                 Mildred Wade
JobTitle            School Crossing Guard
BasePay                            1091.4
OvertimePay                           0.0
OtherPay                            98.07
Benefits                            92.53
TotalPay                          1189.47
TotalPayBenefits                   1282.0
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72051, dtype: object)
(72052, Id                               72053
EmployeeName               Angela Wong
JobTitle            Testing Technician
BasePay                        1187.89
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         94.08
TotalPay                       1187.89
TotalPayBenefits               1281.97
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72052, dtype: object)
(72053, Id                          72054
EmployeeName            Beng Teng
JobTitle            Special Nurse
BasePay                     940.3
OvertimePay                   0.0
OtherPay                    65.94
Benefits                   275.46
TotalPay                  1006.24
TotalPayBenefits           1281.7
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72053, dtype: object)
(72054, Id                          72055
EmployeeName         Keith Cooley
JobTitle             Junior Clerk
BasePay                    623.35
OvertimePay                555.34
OtherPay                      0.0
Benefits                   101.56
TotalPay                  1178.69
TotalPayBenefits          1280.25
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72054, dtype: object)
(72055, Id                                72056
EmployeeName              Jason Hickman
JobTitle            Swimming Instructor
BasePay                         1092.25
OvertimePay                         0.0
OtherPay                          85.89
Benefits                          99.74
TotalPay                        1178.14
TotalPayBenefits                1277.88
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72055, dtype: object)
(72056, Id                                     72057
EmployeeName                     Deidre Hill
JobTitle            Counselor, Juvenile Hall
BasePay                              1174.72
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              102.03
TotalPay                             1174.72
TotalPayBenefits                     1276.75
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72056, dtype: object)
(72057, Id                                  72058
EmployeeName        Maria Coreena Velasco
JobTitle                    Special Nurse
BasePay                            849.45
OvertimePay                           0.0
OtherPay                           141.58
Benefits                           284.28
TotalPay                           991.03
TotalPayBenefits                  1275.31
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72057, dtype: object)
(72058, Id                          72059
EmployeeName        Austin Gloria
JobTitle             Junior Clerk
BasePay                    775.43
OvertimePay                401.56
OtherPay                      0.0
Benefits                    98.06
TotalPay                  1176.99
TotalPayBenefits          1275.05
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72058, dtype: object)
(72059, Id                               72060
EmployeeName              Sandra Lamke
JobTitle            Testing Technician
BasePay                         1181.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         93.33
TotalPay                        1181.5
TotalPayBenefits               1274.83
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72059, dtype: object)
(72060, Id                               72061
EmployeeName        Maria Fatima Doria
JobTitle                 Special Nurse
BasePay                            0.0
OvertimePay                    1166.92
OtherPay                           0.0
Benefits                        102.01
TotalPay                       1166.92
TotalPayBenefits               1268.93
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72060, dtype: object)
(72061, Id                          72062
EmployeeName        Min Zhen Chen
JobTitle                Cashier 1
BasePay                    1169.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    99.72
TotalPay                   1169.0
TotalPayBenefits          1268.72
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72061, dtype: object)
(72062, Id                               72063
EmployeeName        Joseph Szlamnik Jr
JobTitle                  Junior Clerk
BasePay                         605.72
OvertimePay                     561.65
OtherPay                           0.0
Benefits                         99.46
TotalPay                       1167.37
TotalPayBenefits               1266.83
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72062, dtype: object)
(72063, Id                                   72064
EmployeeName                 Jessica Nunez
JobTitle            Public Service Trainee
BasePay                            1157.12
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            109.22
TotalPay                           1157.12
TotalPayBenefits                   1266.34
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72063, dtype: object)
(72064, Id                             72065
EmployeeName        Valerie Schlafke
JobTitle                Junior Clerk
BasePay                       632.17
OvertimePay                   541.81
OtherPay                         0.0
Benefits                       92.13
TotalPay                     1173.98
TotalPayBenefits             1266.11
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72064, dtype: object)
(72065, Id                                   72066
EmployeeName                  Waley Cheong
JobTitle            Public Service Trainee
BasePay                            1162.88
OvertimePay                            0.0
OtherPay                              0.41
Benefits                            102.38
TotalPay                           1163.29
TotalPayBenefits                   1265.67
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72065, dtype: object)
(72066, Id                           72067
EmployeeName        Juliet Palarca
JobTitle             Special Nurse
BasePay                     981.72
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     283.6
TotalPay                    981.72
TotalPayBenefits           1265.32
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72066, dtype: object)
(72067, Id                                     72068
EmployeeName                    David Campos
JobTitle            Commissioner No Benefits
BasePay                               1000.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              262.04
TotalPay                              1000.0
TotalPayBenefits                     1262.04
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72067, dtype: object)
(72068, Id                                 72069
EmployeeName        Tigran Shakhnazaryan
JobTitle                    Junior Clerk
BasePay                           830.81
OvertimePay                       332.33
OtherPay                             0.0
Benefits                           97.59
TotalPay                         1163.14
TotalPayBenefits                 1260.73
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72068, dtype: object)
(72069, Id                           72070
EmployeeName        Claudia Campos
JobTitle                 Cashier 1
BasePay                     1169.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                      90.5
TotalPay                    1169.0
TotalPayBenefits            1259.5
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72069, dtype: object)
(72070, Id                                     72071
EmployeeName                     John Avalos
JobTitle            Commissioner No Benefits
BasePay                               1000.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              250.63
TotalPay                              1000.0
TotalPayBenefits                     1250.63
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72070, dtype: object)
(72071, Id                             72072
EmployeeName          Everett Kelley
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                     1154.56
Benefits                       91.21
TotalPay                     1154.56
TotalPayBenefits             1245.77
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72071, dtype: object)
(72072, Id                          72073
EmployeeName        Adrian Garcia
JobTitle             Junior Clerk
BasePay                    412.26
OvertimePay                732.88
OtherPay                      0.0
Benefits                    97.48
TotalPay                  1145.14
TotalPayBenefits          1242.62
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72072, dtype: object)
(72073, Id                          72074
EmployeeName        Rosa E Moreno
JobTitle             Junior Clerk
BasePay                    412.26
OvertimePay                732.88
OtherPay                      0.0
Benefits                     97.2
TotalPay                  1145.14
TotalPayBenefits          1242.34
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72073, dtype: object)
(72074, Id                          72075
EmployeeName        Anita Roberts
JobTitle            Special Nurse
BasePay                    928.02
OvertimePay                   0.0
OtherPay                    26.22
Benefits                   287.33
TotalPay                   954.24
TotalPayBenefits          1241.57
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72074, dtype: object)
(72075, Id                                         72076
EmployeeName                      Raquel Tolston
JobTitle            Public Svc Aide-Public Works
BasePay                                  1129.91
OvertimePay                                  0.0
OtherPay                                   21.96
Benefits                                   89.18
TotalPay                                 1151.87
TotalPayBenefits                         1241.05
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72075, dtype: object)
(72076, Id                               72077
EmployeeName        Ian Campbell-Jones
JobTitle            Testing Technician
BasePay                        1074.09
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         89.07
TotalPay                       1150.41
TotalPayBenefits               1239.48
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72076, dtype: object)
(72077, Id                                   72078
EmployeeName               Isaiah Lawrence
JobTitle            Public Service Trainee
BasePay                            1146.88
OvertimePay                            0.0
OtherPay                              0.82
Benefits                             88.85
TotalPay                            1147.7
TotalPayBenefits                   1236.55
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72077, dtype: object)
(72078, Id                                   72079
EmployeeName                 Theresa White
JobTitle            Patient Care Assistant
BasePay                              967.2
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            267.77
TotalPay                             967.2
TotalPayBenefits                   1234.97
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72078, dtype: object)
(72079, Id                                72080
EmployeeName            Matthew Lucchio
JobTitle            Swimming Instructor
BasePay                          1109.6
OvertimePay                         0.0
OtherPay                          25.32
Benefits                          99.44
TotalPay                        1134.92
TotalPayBenefits                1234.36
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72079, dtype: object)
(72080, Id                          72081
EmployeeName        John Donnelly
JobTitle            Special Nurse
BasePay                    930.75
OvertimePay                   0.0
OtherPay                    31.02
Benefits                   270.55
TotalPay                   961.77
TotalPayBenefits          1232.32
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72080, dtype: object)
(72081, Id                            72082
EmployeeName        Jan Bryan Reyes
JobTitle              Special Nurse
BasePay                      786.45
OvertimePay                     0.0
OtherPay                     170.41
Benefits                     275.34
TotalPay                     956.86
TotalPayBenefits             1232.2
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72081, dtype: object)
(72082, Id                               72083
EmployeeName            Michael Wright
JobTitle            Testing Technician
BasePay                        1057.13
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         98.28
TotalPay                       1133.45
TotalPayBenefits               1231.73
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72082, dtype: object)
(72083, Id                           72084
EmployeeName        Gladys Zarazua
JobTitle             Special Nurse
BasePay                      915.9
OvertimePay                    0.0
OtherPay                     30.53
Benefits                    278.64
TotalPay                    946.43
TotalPayBenefits           1225.07
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72083, dtype: object)
(72084, Id                                72085
EmployeeName               Bryan Maddan
JobTitle            Swimming Instructor
BasePay                          1114.7
OvertimePay                         0.0
OtherPay                           1.45
Benefits                         105.56
TotalPay                        1116.15
TotalPayBenefits                1221.71
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72084, dtype: object)
(72085, Id                           72086
EmployeeName           Cory Decker
JobTitle            Deputy Sheriff
BasePay                     443.71
OvertimePay                    0.0
OtherPay                    658.52
Benefits                    118.44
TotalPay                   1102.23
TotalPayBenefits           1220.67
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72085, dtype: object)
(72086, Id                          72087
EmployeeName        Ying Ying Hui
JobTitle            Special Nurse
BasePay                     875.7
OvertimePay                   0.0
OtherPay                    29.19
Benefits                   312.98
TotalPay                   904.89
TotalPayBenefits          1217.87
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72086, dtype: object)
(72087, Id                                72088
EmployeeName                 Vivian Lee
JobTitle            Food Service Worker
BasePay                         1104.35
OvertimePay                         0.0
OtherPay                          16.63
Benefits                          95.27
TotalPay                        1120.98
TotalPayBenefits                1216.25
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72087, dtype: object)
(72088, Id                              72089
EmployeeName           Lyryan Russell
JobTitle            Recreation Leader
BasePay                       1102.79
OvertimePay                       0.0
OtherPay                        24.48
Benefits                        87.56
TotalPay                      1127.27
TotalPayBenefits              1214.83
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72088, dtype: object)
(72089, Id                          72090
EmployeeName        Olivia Wright
JobTitle             Junior Clerk
BasePay                    553.08
OvertimePay                562.58
OtherPay                      0.0
Benefits                    94.05
TotalPay                  1115.66
TotalPayBenefits          1209.71
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72089, dtype: object)
(72090, Id                          72091
EmployeeName          So Son Jong
JobTitle            Special Nurse
BasePay                    810.75
OvertimePay                   0.0
OtherPay                   135.12
Benefits                   261.99
TotalPay                   945.87
TotalPayBenefits          1207.86
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72090, dtype: object)
(72091, Id                            72092
EmployeeName        Fernando Galvez
JobTitle                  Custodian
BasePay                     1081.83
OvertimePay                     0.0
OtherPay                      36.13
Benefits                      88.87
TotalPay                    1117.96
TotalPayBenefits            1206.83
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72091, dtype: object)
(72092, Id                              72093
EmployeeName               Maria Cruz
JobTitle            Nursing Assistant
BasePay                           0.0
OvertimePay                       0.0
OtherPay                        964.8
Benefits                       240.62
TotalPay                        964.8
TotalPayBenefits              1205.42
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72092, dtype: object)
(72093, Id                              72094
EmployeeName           Josefina Lewis
JobTitle            Nursing Assistant
BasePay                           0.0
OvertimePay                       0.0
OtherPay                        964.8
Benefits                       240.62
TotalPay                        964.8
TotalPayBenefits              1205.42
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72093, dtype: object)
(72094, Id                              72095
EmployeeName        Michele Rushfeldt
JobTitle               Pool Lifeguard
BasePay                       1094.64
OvertimePay                       0.0
OtherPay                        23.93
Benefits                        86.71
TotalPay                      1118.57
TotalPayBenefits              1205.28
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72094, dtype: object)
(72095, Id                                      72096
EmployeeName                   Scott Heldfond
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1106.4
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                96.95
TotalPay                               1106.4
TotalPayBenefits                      1203.35
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72095, dtype: object)
(72096, Id                                      72097
EmployeeName                   Cristina Rubke
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                1105.2
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 96.6
TotalPay                               1105.2
TotalPayBenefits                       1201.8
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72096, dtype: object)
(72097, Id                                          72098
EmployeeName                        Rodney Stokes
JobTitle            Medical Evaluations Assistant
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                  1115.79
Benefits                                    85.36
TotalPay                                  1115.79
TotalPayBenefits                          1201.15
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72097, dtype: object)
(72098, Id                                  72099
EmployeeName        Rossy Leon De Gautier
JobTitle                Recreation Leader
BasePay                            1112.8
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            86.67
TotalPay                           1112.8
TotalPayBenefits                  1199.47
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72098, dtype: object)
(72099, Id                                         72100
EmployeeName                    DeAngela Grayson
JobTitle            Public Svc Aide-Public Works
BasePay                                   1090.1
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   106.6
TotalPay                                  1090.1
TotalPayBenefits                          1196.7
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72099, dtype: object)
(72100, Id                                72101
EmployeeName        Michael Billingsley
JobTitle                           Cook
BasePay                          1104.0
OvertimePay                         0.0
OtherPay                           5.52
Benefits                          86.44
TotalPay                        1109.52
TotalPayBenefits                1195.96
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72100, dtype: object)
(72101, Id                          72102
EmployeeName          Jessie Chen
JobTitle            Special Nurse
BasePay                     902.7
OvertimePay                   0.0
OtherPay                    30.09
Benefits                   261.16
TotalPay                   932.79
TotalPayBenefits          1193.95
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72101, dtype: object)
(72102, Id                          72103
EmployeeName          Thelma Ginn
JobTitle            Special Nurse
BasePay                     902.7
OvertimePay                   0.0
OtherPay                    30.09
Benefits                   260.12
TotalPay                   932.79
TotalPayBenefits          1192.91
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72102, dtype: object)
(72103, Id                          72104
EmployeeName         Maria Ferido
JobTitle            Special Nurse
BasePay                    906.68
OvertimePay                   0.0
OtherPay                    24.73
Benefits                   260.03
TotalPay                   931.41
TotalPayBenefits          1191.44
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72103, dtype: object)
(72104, Id                                 72105
EmployeeName        Rosemarie Villalobos
JobTitle                   Special Nurse
BasePay                           783.04
OvertimePay                          0.0
OtherPay                           156.6
Benefits                          251.08
TotalPay                          939.64
TotalPayBenefits                 1190.72
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72104, dtype: object)
(72105, Id                             72106
EmployeeName        Carmel Gallagher
JobTitle            Registered Nurse
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      919.77
Benefits                      266.83
TotalPay                      919.77
TotalPayBenefits              1186.6
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72105, dtype: object)
(72106, Id                                       72107
EmployeeName                      Bem Andzenge
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 1088.8
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 97.66
TotalPay                                1088.8
TotalPayBenefits                       1186.46
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72106, dtype: object)
(72107, Id                                       72108
EmployeeName                     Jessie Howell
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 1077.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                108.96
TotalPay                                1077.0
TotalPayBenefits                       1185.96
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72107, dtype: object)
(72108, Id                                72109
EmployeeName                Cecilia Gil
JobTitle            Apprentice Gardener
BasePay                         1088.55
OvertimePay                         0.0
OtherPay                          10.87
Benefits                          85.65
TotalPay                        1099.42
TotalPayBenefits                1185.07
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72108, dtype: object)
(72109, Id                                         72110
EmployeeName                  Charles Stoudamire
JobTitle            Public Svc Aide-Public Works
BasePay                                   1039.0
OvertimePay                                  0.0
OtherPay                                   21.96
Benefits                                  122.31
TotalPay                                 1060.96
TotalPayBenefits                         1183.27
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72109, dtype: object)
(72110, Id                              72111
EmployeeName             Jenna Chiodo
JobTitle            Recreation Leader
BasePay                       1021.92
OvertimePay                       0.0
OtherPay                        64.93
Benefits                        95.83
TotalPay                      1086.85
TotalPayBenefits              1182.68
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72110, dtype: object)
(72111, Id                              72112
EmployeeName        Jacqueline Pepper
JobTitle                Special Nurse
BasePay                         902.7
OvertimePay                       0.0
OtherPay                        30.09
Benefits                       247.13
TotalPay                       932.79
TotalPayBenefits              1179.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72111, dtype: object)
(72112, Id                              72113
EmployeeName           Deborah Prince
JobTitle            Recreation Leader
BasePay                       1084.42
OvertimePay                       0.0
OtherPay                         4.25
Benefits                        84.82
TotalPay                      1088.67
TotalPayBenefits              1173.49
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72112, dtype: object)
(72113, Id                              72114
EmployeeName             Jason Biteng
JobTitle            Recreation Leader
BasePay                       1063.57
OvertimePay                       0.0
OtherPay                         8.37
Benefits                        99.88
TotalPay                      1071.94
TotalPayBenefits              1171.82
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72113, dtype: object)
(72114, Id                            72115
EmployeeName        Victoria Rustom
JobTitle               Junior Clerk
BasePay                     1083.47
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      84.42
TotalPay                    1083.47
TotalPayBenefits            1167.89
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72114, dtype: object)
(72115, Id                                      72116
EmployeeName                  Joseph Marshall
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                               1072.15
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                94.02
TotalPay                              1072.15
TotalPayBenefits                      1166.17
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72115, dtype: object)
(72116, Id                                      72117
EmployeeName                    Cecilia Chung
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                               1079.35
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                85.51
TotalPay                              1079.35
TotalPayBenefits                      1164.86
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72116, dtype: object)
(72117, Id                          72118
EmployeeName        Jing Yan Chen
JobTitle                   Porter
BasePay                   1041.98
OvertimePay                   0.0
OtherPay                     6.42
Benefits                   115.31
TotalPay                   1048.4
TotalPayBenefits          1163.71
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72117, dtype: object)
(72118, Id                          72119
EmployeeName          Kyle Hanson
JobTitle            Special Nurse
BasePay                    854.05
OvertimePay                   0.0
OtherPay                    47.29
Benefits                   260.69
TotalPay                   901.34
TotalPayBenefits          1162.03
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72118, dtype: object)
(72119, Id                                    72120
EmployeeName                Karen Canizales
JobTitle            Parking Control Officer
BasePay                                 0.0
OvertimePay                           23.77
OtherPay                            1052.68
Benefits                              82.42
TotalPay                            1076.45
TotalPayBenefits                    1158.87
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72119, dtype: object)
(72120, Id                          72121
EmployeeName        David Clifton
JobTitle                 Gardener
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   953.44
Benefits                    204.6
TotalPay                   953.44
TotalPayBenefits          1158.04
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72120, dtype: object)
(72121, Id                          72122
EmployeeName          Nicole Levy
JobTitle             Junior Clerk
BasePay                     646.2
OvertimePay                422.33
OtherPay                      0.0
Benefits                     88.3
TotalPay                  1068.53
TotalPayBenefits          1156.83
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72121, dtype: object)
(72122, Id                           72123
EmployeeName           Verna Huang
JobTitle            Pool Lifeguard
BasePay                     1019.8
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    129.76
TotalPay                    1019.8
TotalPayBenefits           1149.56
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72122, dtype: object)
(72123, Id                              72124
EmployeeName            Michael Parra
JobTitle            Recreation Leader
BasePay                       1064.47
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        82.94
TotalPay                      1064.47
TotalPayBenefits              1147.41
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72123, dtype: object)
(72124, Id                                   72125
EmployeeName                   Brenda Baba
JobTitle            Public Service Trainee
BasePay                            1047.52
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             98.11
TotalPay                           1047.52
TotalPayBenefits                   1145.63
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72124, dtype: object)
(72125, Id                                72126
EmployeeName                Eunice Wong
JobTitle            Swimming Instructor
BasePay                          1050.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          93.22
TotalPay                         1050.6
TotalPayBenefits                1143.82
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72125, dtype: object)
(72126, Id                             72127
EmployeeName           Ignacio Reyes
JobTitle            Transit Operator
BasePay                       708.48
OvertimePay                      0.0
OtherPay                        12.0
Benefits                       423.3
TotalPay                      720.48
TotalPayBenefits             1143.78
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72126, dtype: object)
(72127, Id                               72128
EmployeeName        Legistine Williams
JobTitle                        Barber
BasePay                         993.77
OvertimePay                        0.0
OtherPay                         54.13
Benefits                         92.09
TotalPay                        1047.9
TotalPayBenefits               1139.99
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72127, dtype: object)
(72128, Id                                         72129
EmployeeName                       Glenn Daniels
JobTitle            Public Svc Aide-Public Works
BasePay                                  1026.05
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  112.75
TotalPay                                 1026.05
TotalPayBenefits                          1138.8
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72128, dtype: object)
(72129, Id                                       72130
EmployeeName                   Arcelia Hurtado
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                 1050.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 83.68
TotalPay                                1050.0
TotalPayBenefits                       1133.68
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72129, dtype: object)
(72130, Id                                     72131
EmployeeName                Christina Olague
JobTitle            Commissioner No Benefits
BasePay                                900.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              233.21
TotalPay                               900.0
TotalPayBenefits                     1133.21
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72130, dtype: object)
(72131, Id                              72132
EmployeeName             Kelly Bowman
JobTitle            Recreation Leader
BasePay                       1036.35
OvertimePay                       0.0
OtherPay                         15.3
Benefits                         81.5
TotalPay                      1051.65
TotalPayBenefits              1133.15
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72131, dtype: object)
(72132, Id                               72133
EmployeeName              Peter Cownan
JobTitle            Testing Technician
BasePay                         764.23
OvertimePay                     274.68
OtherPay                           0.0
Benefits                         92.81
TotalPay                       1038.91
TotalPayBenefits               1131.72
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72132, dtype: object)
(72133, Id                          72134
EmployeeName          Roxana Ruiz
JobTitle            Special Nurse
BasePay                    849.45
OvertimePay                   0.0
OtherPay                    28.32
Benefits                   252.42
TotalPay                   877.77
TotalPayBenefits          1130.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72133, dtype: object)
(72134, Id                             72135
EmployeeName            Joannie Keys
JobTitle            Transit Operator
BasePay                       595.12
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       532.1
TotalPay                      595.12
TotalPayBenefits             1127.22
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72134, dtype: object)
(72135, Id                            72136
EmployeeName             Dejie Yang
JobTitle            PS Aide to Prof
BasePay                      1042.3
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      80.69
TotalPay                     1042.3
TotalPayBenefits            1122.99
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72135, dtype: object)
(72136, Id                          72137
EmployeeName           David Zhao
JobTitle                Custodian
BasePay                     952.8
OvertimePay                   0.0
OtherPay                     76.2
Benefits                    91.68
TotalPay                   1029.0
TotalPayBenefits          1120.68
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72136, dtype: object)
(72137, Id                            72138
EmployeeName        Michelle Cheung
JobTitle             Pool Lifeguard
BasePay                      1039.6
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      80.56
TotalPay                     1039.6
TotalPayBenefits            1120.16
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72137, dtype: object)
(72138, Id                            72139
EmployeeName        George Scrivani
JobTitle              Special Nurse
BasePay                      849.45
OvertimePay                     0.0
OtherPay                      28.32
Benefits                      241.4
TotalPay                     877.77
TotalPayBenefits            1119.17
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72138, dtype: object)
(72139, Id                           72140
EmployeeName        Carmen Vasquez
JobTitle             Special Nurse
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    835.02
Benefits                    280.05
TotalPay                    835.02
TotalPayBenefits           1115.07
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72139, dtype: object)
(72140, Id                              72141
EmployeeName           Paul McDermott
JobTitle            Recreation Leader
BasePay                        988.14
OvertimePay                       0.0
OtherPay                        43.34
Benefits                        80.36
TotalPay                      1031.48
TotalPayBenefits              1111.84
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72140, dtype: object)
(72141, Id                                       72142
EmployeeName                   Susan Christian
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  900.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                211.76
TotalPay                                 900.0
TotalPayBenefits                       1111.76
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72141, dtype: object)
(72142, Id                                             72143
EmployeeName        Mitchell Philip Mayorga Thompson
JobTitle                                      Porter
BasePay                                       997.47
OvertimePay                                      0.0
OtherPay                                         0.0
Benefits                                      111.36
TotalPay                                      997.47
TotalPayBenefits                             1108.83
Year                                            2012
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 72142, dtype: object)
(72143, Id                            72144
EmployeeName        Richard Lagunte
JobTitle               Junior Clerk
BasePay                      701.58
OvertimePay                  318.48
OtherPay                        0.0
Benefits                      85.39
TotalPay                    1020.06
TotalPayBenefits            1105.45
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72143, dtype: object)
(72144, Id                                           72145
EmployeeName                           Bingwen Cai
JobTitle            StdntDsgnTrain3, Arch/Eng/Plng
BasePay                                     1011.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                     85.21
TotalPay                                    1011.0
TotalPayBenefits                           1096.21
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72144, dtype: object)
(72145, Id                               72146
EmployeeName           Elaine Westlake
JobTitle            Physical Therapist
BasePay                        1006.96
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         88.95
TotalPay                       1006.96
TotalPayBenefits               1095.91
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72145, dtype: object)
(72146, Id                          72147
EmployeeName           Dyna Ramos
JobTitle             Junior Clerk
BasePay                     436.5
OvertimePay                571.67
OtherPay                      0.0
Benefits                     85.0
TotalPay                  1008.17
TotalPayBenefits          1093.17
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72146, dtype: object)
(72147, Id                              72148
EmployeeName                Jinx Kidd
JobTitle            Stage Electrician
BasePay                        1003.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        82.12
TotalPay                       1003.8
TotalPayBenefits              1085.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72147, dtype: object)
(72148, Id                                       72149
EmployeeName                 Glendon Carl Hyde
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                 1000.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 82.67
TotalPay                                1000.0
TotalPayBenefits                       1082.67
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72148, dtype: object)
(72149, Id                                   72150
EmployeeName                   Eva Hanscom
JobTitle            Public Service Trainee
BasePay                              987.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             93.57
TotalPay                             987.0
TotalPayBenefits                   1080.57
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72149, dtype: object)
(72150, Id                                   72151
EmployeeName               Jack O'Sullivan
JobTitle            Public Service Trainee
BasePay                             999.36
OvertimePay                            0.0
OtherPay                              2.05
Benefits                             78.01
TotalPay                           1001.41
TotalPayBenefits                   1079.42
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72150, dtype: object)
(72151, Id                           72152
EmployeeName        Micaela Dybbro
JobTitle             Special Nurse
BasePay                     800.85
OvertimePay                    0.0
OtherPay                      26.7
Benefits                     251.1
TotalPay                    827.55
TotalPayBenefits           1078.65
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72151, dtype: object)
(72152, Id                                   72153
EmployeeName                  Randy Acosta
JobTitle            Patient Care Assistant
BasePay                              941.4
OvertimePay                            0.0
OtherPay                             25.12
Benefits                            112.06
TotalPay                            966.52
TotalPayBenefits                   1078.58
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72152, dtype: object)
(72153, Id                          72154
EmployeeName          Lisa Holton
JobTitle            Special Nurse
BasePay                    810.75
OvertimePay                   0.0
OtherPay                    27.02
Benefits                   237.11
TotalPay                   837.77
TotalPayBenefits          1074.88
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72153, dtype: object)
(72154, Id                           72155
EmployeeName        Colleen Massey
JobTitle              Junior Clerk
BasePay                     664.65
OvertimePay                  325.4
OtherPay                       0.0
Benefits                     83.84
TotalPay                    990.05
TotalPayBenefits           1073.89
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72154, dtype: object)
(72155, Id                                         72156
EmployeeName                     Jerry Rodriguez
JobTitle            Public Svc Aide-Public Works
BasePay                                   961.08
OvertimePay                                  0.0
OtherPay                                   21.96
Benefits                                   88.69
TotalPay                                  983.04
TotalPayBenefits                         1071.73
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72155, dtype: object)
(72156, Id                                   72157
EmployeeName               Angeline Govind
JobTitle            Patient Care Assistant
BasePay                              950.4
OvertimePay                            0.0
OtherPay                             12.68
Benefits                            107.67
TotalPay                            963.08
TotalPayBenefits                   1070.75
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72156, dtype: object)
(72157, Id                                       72158
EmployeeName                        Bryant Tan
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  850.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                219.72
TotalPay                                 850.0
TotalPayBenefits                       1069.72
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72157, dtype: object)
(72158, Id                                 72159
EmployeeName        Eva Goodfriend-Reano
JobTitle                   Special Nurse
BasePay                           988.97
OvertimePay                          0.0
OtherPay                             0.0
Benefits                           78.54
TotalPay                          988.97
TotalPayBenefits                 1067.51
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72158, dtype: object)
(72159, Id                               72160
EmployeeName             Hibbis Cannon
JobTitle            Testing Technician
BasePay                          904.5
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         85.74
TotalPay                        980.82
TotalPayBenefits               1066.56
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72159, dtype: object)
(72160, Id                               72161
EmployeeName            Stephen Lau Jr
JobTitle            Testing Technician
BasePay                          904.5
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         83.37
TotalPay                        980.82
TotalPayBenefits               1064.19
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72160, dtype: object)
(72161, Id                              72162
EmployeeName              Lisa Murphy
JobTitle            Recreation Leader
BasePay                        935.56
OvertimePay                       0.0
OtherPay                        39.12
Benefits                        81.76
TotalPay                       974.68
TotalPayBenefits              1056.44
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72161, dtype: object)
(72162, Id                             72163
EmployeeName        Christopher Tang
JobTitle                       Clerk
BasePay                       975.83
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       76.03
TotalPay                      975.83
TotalPayBenefits             1051.86
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72162, dtype: object)
(72163, Id                                         72164
EmployeeName                      Santiago Delao
JobTitle            Environmental Service Worker
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                  970.71
Benefits                                   75.37
TotalPay                                  970.71
TotalPayBenefits                         1046.08
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72163, dtype: object)
(72164, Id                             72165
EmployeeName        Vanessa Almaguer
JobTitle               Special Nurse
BasePay                       786.45
OvertimePay                      0.0
OtherPay                       26.22
Benefits                      231.79
TotalPay                      812.67
TotalPayBenefits             1044.46
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72164, dtype: object)
(72165, Id                              72166
EmployeeName         Anthony Fletcher
JobTitle            Recreation Leader
BasePay                        950.63
OvertimePay                       0.0
OtherPay                         12.6
Benefits                        80.89
TotalPay                       963.23
TotalPayBenefits              1044.12
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72165, dtype: object)
(72166, Id                          72167
EmployeeName        Karyna Mayora
JobTitle            Special Nurse
BasePay                    730.36
OvertimePay                   0.0
OtherPay                    73.04
Benefits                   240.26
TotalPay                    803.4
TotalPayBenefits          1043.66
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72166, dtype: object)
(72167, Id                                         72168
EmployeeName                         Duane Brown
JobTitle            Public Svc Aide-Public Works
BasePay                                   935.17
OvertimePay                                  0.0
OtherPay                                   13.77
Benefits                                   92.79
TotalPay                                  948.94
TotalPayBenefits                         1041.73
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72167, dtype: object)
(72168, Id                             72169
EmployeeName              Brian Cody
JobTitle            Transit Operator
BasePay                        809.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      229.61
TotalPay                       809.0
TotalPayBenefits             1038.61
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72168, dtype: object)
(72169, Id                                    72170
EmployeeName                Erica Eilenberg
JobTitle            PS Aide Health Services
BasePay                               963.9
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              74.63
TotalPay                              963.9
TotalPayBenefits                    1038.53
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72169, dtype: object)
(72170, Id                                       72171
EmployeeName                     Nazly Mohajer
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  950.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 84.05
TotalPay                                 950.0
TotalPayBenefits                       1034.05
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72170, dtype: object)
(72171, Id                             72172
EmployeeName        Sheilah Cornelio
JobTitle               Special Nurse
BasePay                       810.75
OvertimePay                      0.0
OtherPay                      135.12
Benefits                       83.15
TotalPay                      945.87
TotalPayBenefits             1029.02
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72171, dtype: object)
(72172, Id                              72173
EmployeeName           Jeffrey Malone
JobTitle            Recreation Leader
BasePay                        912.61
OvertimePay                       0.0
OtherPay                         9.64
Benefits                       106.43
TotalPay                       922.25
TotalPayBenefits              1028.68
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72172, dtype: object)
(72173, Id                                         72174
EmployeeName                          Johnson Ly
JobTitle            Public Svc Aide-Public Works
BasePay                                   904.26
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                  122.24
TotalPay                                  904.26
TotalPayBenefits                          1026.5
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72173, dtype: object)
(72174, Id                             72175
EmployeeName          Linda Pizzorno
JobTitle            Registered Nurse
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      795.01
Benefits                      230.64
TotalPay                      795.01
TotalPayBenefits             1025.65
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72174, dtype: object)
(72175, Id                                       72176
EmployeeName                     Audrey Joseph
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  950.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 75.28
TotalPay                                 950.0
TotalPayBenefits                       1025.28
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72175, dtype: object)
(72176, Id                                         72177
EmployeeName                    Rodrigo Averilla
JobTitle            Public Svc Aide-Public Works
BasePay                                   884.78
OvertimePay                                  0.0
OtherPay                                   13.32
Benefits                                  124.11
TotalPay                                   898.1
TotalPayBenefits                         1022.21
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72176, dtype: object)
(72177, Id                                          72178
EmployeeName                        Katanya Henry
JobTitle            Medical Evaluations Assistant
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                   934.19
Benefits                                    71.47
TotalPay                                   934.19
TotalPayBenefits                          1005.66
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72177, dtype: object)
(72178, Id                           72179
EmployeeName        Inee de Castro
JobTitle             Special Nurse
BasePay                     719.25
OvertimePay                    0.0
OtherPay                     59.95
Benefits                     225.9
TotalPay                     779.2
TotalPayBenefits            1005.1
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72178, dtype: object)
(72179, Id                                       72180
EmployeeName                      Sheryl Davis
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  800.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 202.6
TotalPay                                 800.0
TotalPayBenefits                        1002.6
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72179, dtype: object)
(72180, Id                              72181
EmployeeName           Jason Barnhart
JobTitle            Recreation Leader
BasePay                        900.86
OvertimePay                       0.0
OtherPay                         6.75
Benefits                        93.51
TotalPay                       907.61
TotalPayBenefits              1001.12
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72180, dtype: object)
(72181, Id                              72182
EmployeeName         Michael Starobin
JobTitle            Stage Electrician
BasePay                        920.16
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        79.64
TotalPay                       920.16
TotalPayBenefits                999.8
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72181, dtype: object)
(72182, Id                                     72183
EmployeeName                   Holly Kaufman
JobTitle            Commissioner No Benefits
BasePay                               923.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               75.36
TotalPay                              923.01
TotalPayBenefits                      998.37
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72182, dtype: object)
(72183, Id                                      72184
EmployeeName                        Bruce Oka
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 923.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                73.38
TotalPay                                923.0
TotalPayBenefits                       996.38
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72183, dtype: object)
(72184, Id                             72185
EmployeeName           Ronald Austin
JobTitle            Transit Operator
BasePay                       511.29
OvertimePay                    84.13
OtherPay                       27.28
Benefits                      371.18
TotalPay                       622.7
TotalPayBenefits              993.88
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72184, dtype: object)
(72185, Id                           72186
EmployeeName        Melchor Capili
JobTitle                 Asst Engr
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    989.56
Benefits                      2.97
TotalPay                    989.56
TotalPayBenefits            992.53
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72185, dtype: object)
(72186, Id                          72187
EmployeeName            Henny Lee
JobTitle              Manager III
BasePay                     909.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    79.91
TotalPay                    909.0
TotalPayBenefits           988.91
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72186, dtype: object)
(72187, Id                              72188
EmployeeName           Nathan Barteau
JobTitle            Recreation Leader
BasePay                        906.89
OvertimePay                       0.0
OtherPay                          5.1
Benefits                         76.2
TotalPay                       911.99
TotalPayBenefits               988.19
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72187, dtype: object)
(72188, Id                                       72189
EmployeeName                  Steven Bryan Lee
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  900.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 83.26
TotalPay                                 900.0
TotalPayBenefits                        983.26
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72188, dtype: object)
(72189, Id                                72190
EmployeeName             Andrew Wynkoop
JobTitle            Swimming Instructor
BasePay                          761.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         221.83
TotalPay                         761.36
TotalPayBenefits                 983.19
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72189, dtype: object)
(72190, Id                                     72191
EmployeeName                    Armina Brown
JobTitle            Commissioner No Benefits
BasePay                                776.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              206.12
TotalPay                               776.9
TotalPayBenefits                      983.02
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72190, dtype: object)
(72191, Id                                      72192
EmployeeName           Marc Nathaniel Untalan
JobTitle            Licensed Vocational Nurse
BasePay                                 901.0
OvertimePay                               0.0
OtherPay                                 4.24
Benefits                                77.59
TotalPay                               905.24
TotalPayBenefits                       982.83
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72191, dtype: object)
(72192, Id                                72193
EmployeeName            Rosemary Morgan
JobTitle            Senior Clerk Typist
BasePay                           420.8
OvertimePay                         0.0
OtherPay                         253.71
Benefits                         305.85
TotalPay                         674.51
TotalPayBenefits                 980.36
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72192, dtype: object)
(72193, Id                                      72194
EmployeeName               Mary Taylor-McGhee
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 875.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                               104.18
TotalPay                                875.5
TotalPayBenefits                       979.68
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72193, dtype: object)
(72194, Id                                       72195
EmployeeName                     Mark Kelleher
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  900.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 78.92
TotalPay                                 900.0
TotalPayBenefits                        978.92
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72194, dtype: object)
(72195, Id                             72196
EmployeeName            Tallie Greer
JobTitle            Transit Operator
BasePay                        743.9
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      234.52
TotalPay                       743.9
TotalPayBenefits              978.42
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72195, dtype: object)
(72196, Id                             72197
EmployeeName             Kevin Smith
JobTitle            Transit Operator
BasePay                       718.22
OvertimePay                    11.07
OtherPay                        3.59
Benefits                      243.48
TotalPay                      732.88
TotalPayBenefits              976.36
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72196, dtype: object)
(72197, Id                                       72198
EmployeeName                      Faye Woo Lee
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  900.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 71.35
TotalPay                                 900.0
TotalPayBenefits                        971.35
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72197, dtype: object)
(72198, Id                                       72199
EmployeeName                      Douglas Chan
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  900.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 71.35
TotalPay                                 900.0
TotalPayBenefits                        971.35
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72198, dtype: object)
(72199, Id                             72200
EmployeeName            John Conklin
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      895.64
Benefits                       68.52
TotalPay                      895.64
TotalPayBenefits              964.16
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72199, dtype: object)
(72200, Id                          72201
EmployeeName        James Schrick
JobTitle              Firefighter
BasePay                       0.0
OvertimePay                 27.46
OtherPay                   936.41
Benefits                     0.25
TotalPay                   963.87
TotalPayBenefits           964.12
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72200, dtype: object)
(72201, Id                                         72202
EmployeeName                       Tiffany Lucas
JobTitle            Public Svc Aide-Public Works
BasePay                                   867.12
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   96.84
TotalPay                                  867.12
TotalPayBenefits                          963.96
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72201, dtype: object)
(72202, Id                                       72203
EmployeeName                      Roger Aquino
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 876.14
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 87.15
TotalPay                                876.14
TotalPayBenefits                        963.29
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72202, dtype: object)
(72203, Id                             72204
EmployeeName        Carlos Rodriguez
JobTitle                Junior Clerk
BasePay                       563.11
OvertimePay                   318.48
OtherPay                         0.0
Benefits                       81.58
TotalPay                      881.59
TotalPayBenefits              963.17
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72203, dtype: object)
(72204, Id                             72205
EmployeeName          Peggy Jie Chen
JobTitle            Transit Operator
BasePay                       743.91
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      218.56
TotalPay                      743.91
TotalPayBenefits              962.47
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72204, dtype: object)
(72205, Id                          72206
EmployeeName           Mia Carter
JobTitle             Junior Clerk
BasePay                    876.97
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    85.23
TotalPay                   876.97
TotalPayBenefits            962.2
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72205, dtype: object)
(72206, Id                                      72207
EmployeeName        Katherine Fullerton-Bloom
JobTitle                        Special Nurse
BasePay                                456.17
OvertimePay                               0.0
OtherPay                                296.2
Benefits                                207.9
TotalPay                               752.37
TotalPayBenefits                       960.27
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72206, dtype: object)
(72207, Id                             72208
EmployeeName           Eric Williams
JobTitle            Transit Operator
BasePay                       622.87
OvertimePay                     3.54
OtherPay                       28.65
Benefits                      296.29
TotalPay                      655.06
TotalPayBenefits              951.35
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72207, dtype: object)
(72208, Id                          72209
EmployeeName         Miguel Gallo
JobTitle                   Porter
BasePay                     794.0
OvertimePay                   0.0
OtherPay                     63.5
Benefits                    93.72
TotalPay                    857.5
TotalPayBenefits           951.22
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72208, dtype: object)
(72209, Id                            72210
EmployeeName        Patricia Juarez
JobTitle               Junior Clerk
BasePay                      572.34
OvertimePay                  304.63
OtherPay                        0.0
Benefits                       73.6
TotalPay                     876.97
TotalPayBenefits             950.57
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72209, dtype: object)
(72210, Id                                         72211
EmployeeName                  Criselda Hernandez
JobTitle            Public Svc Aide-Public Works
BasePay                                   867.12
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   81.98
TotalPay                                  867.12
TotalPayBenefits                           949.1
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72210, dtype: object)
(72211, Id                                     72212
EmployeeName                   Karen Donovan
JobTitle            Commissioner No Benefits
BasePay                               876.86
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               72.07
TotalPay                              876.86
TotalPayBenefits                      948.93
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72211, dtype: object)
(72212, Id                                72213
EmployeeName             Pamela del Rio
JobTitle            Shelter Service Rep
BasePay                          878.85
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          68.47
TotalPay                         878.85
TotalPayBenefits                 947.32
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72212, dtype: object)
(72213, Id                          72214
EmployeeName        Sherri Barnes
JobTitle            Special Nurse
BasePay                    752.26
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   194.98
TotalPay                   752.26
TotalPayBenefits           947.24
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72213, dtype: object)
(72214, Id                                       72215
EmployeeName                 Arnold Lee Lerner
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  875.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 69.32
TotalPay                                 875.0
TotalPayBenefits                        944.32
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72214, dtype: object)
(72215, Id                                       72216
EmployeeName                       Alyce Brown
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  875.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 69.32
TotalPay                                 875.0
TotalPayBenefits                        944.32
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72215, dtype: object)
(72216, Id                                      72217
EmployeeName                   Stephen Nakajo
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 874.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                69.32
TotalPay                                874.9
TotalPayBenefits                       944.22
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72216, dtype: object)
(72217, Id                           72218
EmployeeName        Bernard Laffey
JobTitle               Sign Worker
BasePay                     724.69
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    206.02
TotalPay                    724.69
TotalPayBenefits            930.71
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72217, dtype: object)
(72218, Id                          72219
EmployeeName        Vicki Collins
JobTitle             Junior Clerk
BasePay                    544.64
OvertimePay                318.48
OtherPay                      0.0
Benefits                    66.81
TotalPay                   863.12
TotalPayBenefits           929.93
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72218, dtype: object)
(72219, Id                               72220
EmployeeName        Randolph Henderson
JobTitle                       Painter
BasePay                          862.2
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         67.17
TotalPay                         862.2
TotalPayBenefits                929.37
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72219, dtype: object)
(72220, Id                              72221
EmployeeName             Aislinn Ryan
JobTitle            Recreation Leader
BasePay                        861.57
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        67.13
TotalPay                       861.57
TotalPayBenefits                928.7
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72220, dtype: object)
(72221, Id                                         72222
EmployeeName                      Deandre Turner
JobTitle            Public Svc Aide-Public Works
BasePay                                    831.2
OvertimePay                                  0.0
OtherPay                                   12.96
Benefits                                    83.1
TotalPay                                  844.16
TotalPayBenefits                          927.26
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72221, dtype: object)
(72222, Id                                       72223
EmployeeName                     Alfonso Perez
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  850.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 74.58
TotalPay                                 850.0
TotalPayBenefits                        924.58
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72222, dtype: object)
(72223, Id                                       72224
EmployeeName                    Michael Pappas
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  850.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 74.53
TotalPay                                 850.0
TotalPayBenefits                        924.53
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72223, dtype: object)
(72224, Id                                   72225
EmployeeName                Monique Holman
JobTitle            Public Service Trainee
BasePay                             783.36
OvertimePay                            0.0
OtherPay                             22.14
Benefits                             116.7
TotalPay                             805.5
TotalPayBenefits                     922.2
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72224, dtype: object)
(72225, Id                          72226
EmployeeName        Sarah Mikulin
JobTitle            Special Nurse
BasePay                    707.87
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   212.39
TotalPay                   707.87
TotalPayBenefits           920.26
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72225, dtype: object)
(72226, Id                                  72227
EmployeeName               Robert Hessler
JobTitle            School Crossing Guard
BasePay                            533.42
OvertimePay                           0.0
OtherPay                           296.82
Benefits                            87.75
TotalPay                           830.24
TotalPayBenefits                   917.99
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72226, dtype: object)
(72227, Id                                       72228
EmployeeName                     Michael Sweet
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  850.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 67.38
TotalPay                                 850.0
TotalPayBenefits                        917.38
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72227, dtype: object)
(72228, Id                                     72229
EmployeeName                     John Newlin
JobTitle            Commissioner No Benefits
BasePay                                850.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               67.34
TotalPay                               850.0
TotalPayBenefits                      917.34
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72228, dtype: object)
(72229, Id                             72230
EmployeeName        Donald McCarrell
JobTitle               Special Nurse
BasePay                        592.4
OvertimePay                      0.0
OtherPay                      118.48
Benefits                      202.15
TotalPay                      710.88
TotalPayBenefits              913.03
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72229, dtype: object)
(72230, Id                           72231
EmployeeName        Michael Pieper
JobTitle              Truck Driver
BasePay                      803.4
OvertimePay                    0.0
OtherPay                      20.0
Benefits                      87.8
TotalPay                     823.4
TotalPayBenefits             911.2
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72230, dtype: object)
(72231, Id                                         72232
EmployeeName                      Donnie Collins
JobTitle            Public Svc Aide-Public Works
BasePay                                    831.2
OvertimePay                                  0.0
OtherPay                                    3.28
Benefits                                   72.91
TotalPay                                  834.48
TotalPayBenefits                          907.39
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72231, dtype: object)
(72232, Id                                   72233
EmployeeName                    Nelson Gee
JobTitle            Public Service Trainee
BasePay                             763.52
OvertimePay                            0.0
OtherPay                             21.26
Benefits                            120.13
TotalPay                            784.78
TotalPayBenefits                    904.91
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72232, dtype: object)
(72233, Id                              72234
EmployeeName             Michael Wong
JobTitle            Recreation Leader
BasePay                        820.66
OvertimePay                       0.0
OtherPay                        11.77
Benefits                        70.91
TotalPay                       832.43
TotalPayBenefits               903.34
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72233, dtype: object)
(72234, Id                                      72235
EmployeeName                     London Breed
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 828.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                72.64
TotalPay                                828.9
TotalPayBenefits                       901.54
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72234, dtype: object)
(72235, Id                                         72236
EmployeeName                    Porsha Cannonier
JobTitle            Public Svc Aide-Public Works
BasePay                                   823.76
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   75.38
TotalPay                                  823.76
TotalPayBenefits                          899.14
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72235, dtype: object)
(72236, Id                                       72237
EmployeeName                       Scott Chung
JobTitle            Institution Utility Worker
BasePay                                  801.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 95.71
TotalPay                                 801.5
TotalPayBenefits                        897.21
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72236, dtype: object)
(72237, Id                                         72238
EmployeeName                     Antonio Nevarez
JobTitle            Public Svc Aide-Public Works
BasePay                                    831.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   64.35
TotalPay                                   831.2
TotalPayBenefits                          895.55
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72237, dtype: object)
(72238, Id                                 72239
EmployeeName                 Mary Romeyn
JobTitle            Physician Specialist
BasePay                           704.66
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          189.42
TotalPay                          704.66
TotalPayBenefits                  894.08
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72238, dtype: object)
(72239, Id                            72240
EmployeeName        Walter Williams
JobTitle               Library Page
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     829.95
Benefits                      63.49
TotalPay                     829.95
TotalPayBenefits             893.44
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72239, dtype: object)
(72240, Id                            72241
EmployeeName        Victoria Devore
JobTitle              Special Nurse
BasePay                       659.4
OvertimePay                     0.0
OtherPay                      32.97
Benefits                      200.0
TotalPay                     692.37
TotalPayBenefits             892.37
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72240, dtype: object)
(72241, Id                                         72242
EmployeeName                      Charles Wilson
JobTitle            Stationary Eng, Sewage Plant
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                  823.91
Benefits                                   63.03
TotalPay                                  823.91
TotalPayBenefits                          886.94
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72241, dtype: object)
(72242, Id                              72243
EmployeeName           Anthony Joslin
JobTitle            Recreation Leader
BasePay                        813.55
OvertimePay                       0.0
OtherPay                          1.8
Benefits                        69.08
TotalPay                       815.35
TotalPayBenefits               884.43
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72242, dtype: object)
(72243, Id                                  72244
EmployeeName                   Lorna Choy
JobTitle            School Crossing Guard
BasePay                             327.4
OvertimePay                           0.0
OtherPay                           476.07
Benefits                            80.58
TotalPay                           803.47
TotalPayBenefits                   884.05
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72243, dtype: object)
(72244, Id                          72245
EmployeeName        Frank Escobar
JobTitle             Truck Driver
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   820.38
Benefits                    62.76
TotalPay                   820.38
TotalPayBenefits           883.14
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72244, dtype: object)
(72245, Id                           72246
EmployeeName        Matthew Miller
JobTitle            Pool Lifeguard
BasePay                     799.07
OvertimePay                    0.0
OtherPay                     12.93
Benefits                     70.67
TotalPay                     812.0
TotalPayBenefits            882.67
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72245, dtype: object)
(72246, Id                                72247
EmployeeName          Kathryn Zychowicz
JobTitle            Swimming Instructor
BasePay                          797.56
OvertimePay                         0.0
OtherPay                          11.84
Benefits                          72.39
TotalPay                          809.4
TotalPayBenefits                 881.79
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72246, dtype: object)
(72247, Id                                         72248
EmployeeName                   Frenzella Edwards
JobTitle            Public Svc Aide-Public Works
BasePay                                   818.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   63.34
TotalPay                                  818.21
TotalPayBenefits                          881.55
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72247, dtype: object)
(72248, Id                               72249
EmployeeName         Thomas Mosakowski
JobTitle            Testing Technician
BasePay                         721.06
OvertimePay                      88.73
OtherPay                           0.0
Benefits                         70.61
TotalPay                        809.79
TotalPayBenefits                 880.4
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72248, dtype: object)
(72249, Id                          72250
EmployeeName         Mayank Patel
JobTitle             Junior Clerk
BasePay                    480.03
OvertimePay                332.33
OtherPay                      0.0
Benefits                    67.98
TotalPay                   812.36
TotalPayBenefits           880.34
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72249, dtype: object)
(72250, Id                             72251
EmployeeName          Gloria Jackson
JobTitle            Home Health Aide
BasePay                        264.4
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      614.74
TotalPay                       264.4
TotalPayBenefits              879.14
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72250, dtype: object)
(72251, Id                                      72252
EmployeeName        Liana Shimizu-Castellanos
JobTitle               Public Service Trainee
BasePay                                798.72
OvertimePay                               0.0
OtherPay                                15.58
Benefits                                63.05
TotalPay                                814.3
TotalPayBenefits                       877.35
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72251, dtype: object)
(72252, Id                                 72253
EmployeeName        Carolina Stankiewich
JobTitle               Recreation Leader
BasePay                           797.38
OvertimePay                          0.0
OtherPay                             0.0
Benefits                           75.66
TotalPay                          797.38
TotalPayBenefits                  873.04
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72252, dtype: object)
(72253, Id                             72254
EmployeeName        Sergii Iakovenko
JobTitle                Junior Clerk
BasePay                       461.56
OvertimePay                   332.33
OtherPay                         0.0
Benefits                       78.53
TotalPay                      793.89
TotalPayBenefits              872.42
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72253, dtype: object)
(72254, Id                                           72255
EmployeeName                           Calvin Chow
JobTitle            StdntDsgnTrain3, Arch/Eng/Plng
BasePay                                      808.8
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                     63.01
TotalPay                                     808.8
TotalPayBenefits                            871.81
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72254, dtype: object)
(72255, Id                               72256
EmployeeName           Phillip Navarro
JobTitle            Testing Technician
BasePay                         746.55
OvertimePay                      58.43
OtherPay                           0.0
Benefits                         66.05
TotalPay                        804.98
TotalPayBenefits                871.03
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72255, dtype: object)
(72256, Id                                     72257
EmployeeName                   Leah Pimentel
JobTitle            Commissioner No Benefits
BasePay                                800.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               70.09
TotalPay                               800.0
TotalPayBenefits                      870.09
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72256, dtype: object)
(72257, Id                           72258
EmployeeName          Donna Sharee
JobTitle            Graphic Artist
BasePay                     783.34
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     86.05
TotalPay                    783.34
TotalPayBenefits            869.39
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72257, dtype: object)
(72258, Id                           72259
EmployeeName        Giselle Albano
JobTitle              Junior Clerk
BasePay                      288.8
OvertimePay                 512.57
OtherPay                       0.0
Benefits                     67.15
TotalPay                    801.37
TotalPayBenefits            868.52
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72258, dtype: object)
(72259, Id                          72260
EmployeeName          Julien Heng
JobTitle             Junior Clerk
BasePay                     288.8
OvertimePay                512.57
OtherPay                      0.0
Benefits                    67.15
TotalPay                   801.37
TotalPayBenefits           868.52
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72259, dtype: object)
(72260, Id                             72261
EmployeeName        Carla Greenblatt
JobTitle               Special Nurse
BasePay                        659.4
OvertimePay                      0.0
OtherPay                       16.48
Benefits                      191.54
TotalPay                      675.88
TotalPayBenefits              867.42
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72260, dtype: object)
(72261, Id                                         72262
EmployeeName                       Joshua Cossey
JobTitle            Public Svc Aide-Public Works
BasePay                                    792.8
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   70.21
TotalPay                                   792.8
TotalPayBenefits                          863.01
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72261, dtype: object)
(72262, Id                                         72263
EmployeeName                  Bridgette Clayborn
JobTitle            Public Svc Aide-Public Works
BasePay                                   792.79
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                    69.7
TotalPay                                  792.79
TotalPayBenefits                          862.49
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72262, dtype: object)
(72263, Id                                   72264
EmployeeName                Sandra Alvarez
JobTitle            Patient Care Assistant
BasePay                             766.83
OvertimePay                            0.0
OtherPay                              8.29
Benefits                             84.68
TotalPay                            775.12
TotalPayBenefits                     859.8
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72263, dtype: object)
(72264, Id                                72265
EmployeeName        William Holdenstern
JobTitle            Swimming Instructor
BasePay                           775.2
OvertimePay                         0.0
OtherPay                          14.52
Benefits                          69.59
TotalPay                         789.72
TotalPayBenefits                 859.31
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72264, dtype: object)
(72265, Id                                   72266
EmployeeName                   Zoukui Seri
JobTitle            Patient Care Assistant
BasePay                              784.5
OvertimePay                            0.0
OtherPay                             12.56
Benefits                              62.1
TotalPay                            797.06
TotalPayBenefits                    859.16
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72265, dtype: object)
(72266, Id                            72267
EmployeeName        Carolina Guerra
JobTitle               Junior Clerk
BasePay                       590.8
OvertimePay                  152.32
OtherPay                       40.0
Benefits                      69.96
TotalPay                     783.12
TotalPayBenefits             853.08
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72266, dtype: object)
(72267, Id                          72268
EmployeeName           Oscar Nova
JobTitle                Cashier 1
BasePay                     790.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    61.55
TotalPay                    790.0
TotalPayBenefits           851.55
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72267, dtype: object)
(72268, Id                                      72269
EmployeeName                 Michael Hardeman
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 782.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 68.6
TotalPay                                782.9
TotalPayBenefits                        851.5
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72268, dtype: object)
(72269, Id                                       72270
EmployeeName                    Jessica Romero
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 675.15
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                174.72
TotalPay                                675.15
TotalPayBenefits                        849.87
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72269, dtype: object)
(72270, Id                              72271
EmployeeName            Joseph Schick
JobTitle            Recreation Leader
BasePay                        770.82
OvertimePay                       0.0
OtherPay                        14.04
Benefits                        60.76
TotalPay                       784.86
TotalPayBenefits               845.62
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72270, dtype: object)
(72271, Id                           72272
EmployeeName            Paul Byrne
JobTitle            Pool Lifeguard
BasePay                     742.57
OvertimePay                    0.0
OtherPay                     11.87
Benefits                     91.04
TotalPay                    754.44
TotalPayBenefits            845.48
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72271, dtype: object)
(72272, Id                                      72273
EmployeeName                       George Lau
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 828.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                14.28
TotalPay                                828.9
TotalPayBenefits                       843.18
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72272, dtype: object)
(72273, Id                                         72274
EmployeeName                    Brittanie Lea'Ea
JobTitle            Public Svc Aide-Public Works
BasePay                                   753.28
OvertimePay                                  0.0
OtherPay                                   15.45
Benefits                                   72.72
TotalPay                                  768.73
TotalPayBenefits                          841.45
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72273, dtype: object)
(72274, Id                            72275
EmployeeName            Misty Pegue
JobTitle            Health Worker 1
BasePay                       771.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      68.08
TotalPay                      771.5
TotalPayBenefits             839.58
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72274, dtype: object)
(72275, Id                                72276
EmployeeName              David Haglund
JobTitle            Swimming Instructor
BasePay                          655.16
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         177.75
TotalPay                         655.16
TotalPayBenefits                 832.91
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72275, dtype: object)
(72276, Id                               72277
EmployeeName             Annette Espil
JobTitle            Nurse Practitioner
BasePay                         680.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                        152.35
TotalPay                        680.51
TotalPayBenefits                832.86
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72276, dtype: object)
(72277, Id                             72278
EmployeeName            Danny Milton
JobTitle            Transit Operator
BasePay                        387.6
OvertimePay                      0.0
OtherPay                      292.25
Benefits                      151.99
TotalPay                      679.85
TotalPayBenefits              831.84
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72277, dtype: object)
(72278, Id                             72279
EmployeeName        Ladiamond Harvey
JobTitle                Junior Clerk
BasePay                       424.64
OvertimePay                   339.25
OtherPay                         0.0
Benefits                       64.95
TotalPay                      763.89
TotalPayBenefits              828.84
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72278, dtype: object)
(72279, Id                                   72280
EmployeeName              Alfonso Frias II
JobTitle            Patient Care Assistant
BasePay                              746.1
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             80.46
TotalPay                             746.1
TotalPayBenefits                    826.56
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72279, dtype: object)
(72280, Id                                      72281
EmployeeName        Francisco Morazan Jimenez
JobTitle                  Swimming Instructor
BasePay                                752.29
OvertimePay                               0.0
OtherPay                                10.13
Benefits                                59.38
TotalPay                               762.42
TotalPayBenefits                        821.8
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72280, dtype: object)
(72281, Id                                72282
EmployeeName        Christopher McMahon
JobTitle              Recreation Leader
BasePay                          739.65
OvertimePay                         0.0
OtherPay                           9.36
Benefits                          68.98
TotalPay                         749.01
TotalPayBenefits                 817.99
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72281, dtype: object)
(72282, Id                                       72283
EmployeeName                  Richard Pio Roda
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  750.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 65.79
TotalPay                                 750.0
TotalPayBenefits                        815.79
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72282, dtype: object)
(72283, Id                                       72284
EmployeeName                        Todd Mavis
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  750.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 65.79
TotalPay                                 750.0
TotalPayBenefits                        815.79
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72283, dtype: object)
(72284, Id                          72285
EmployeeName          Wanda Crane
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                 325.4
OtherPay                      0.0
Benefits                     65.5
TotalPay                   750.04
TotalPayBenefits           815.54
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72284, dtype: object)
(72285, Id                              72286
EmployeeName             Rickey Jones
JobTitle            Recreation Leader
BasePay                        734.38
OvertimePay                       0.0
OtherPay                         9.35
Benefits                        70.27
TotalPay                       743.73
TotalPayBenefits                814.0
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72285, dtype: object)
(72286, Id                                   72287
EmployeeName              John Chamberlain
JobTitle            Public Service Trainee
BasePay                              747.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             65.46
TotalPay                             747.0
TotalPayBenefits                    812.46
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72286, dtype: object)
(72287, Id                           72288
EmployeeName        Maxwell Wilder
JobTitle            Pool Lifeguard
BasePay                     753.16
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     58.31
TotalPay                    753.16
TotalPayBenefits            811.47
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72287, dtype: object)
(72288, Id                                       72289
EmployeeName           William Scott Ellsworth
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  750.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 58.25
TotalPay                                 750.0
TotalPayBenefits                        808.25
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72288, dtype: object)
(72289, Id                          72290
EmployeeName            Kevin Eng
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                318.48
OtherPay                      0.0
Benefits                    64.82
TotalPay                   743.12
TotalPayBenefits           807.94
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72289, dtype: object)
(72290, Id                                          72291
EmployeeName                        Jamilla Moore
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                    744.98
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                    58.85
TotalPay                                   744.98
TotalPayBenefits                           803.83
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72290, dtype: object)
(72291, Id                            72292
EmployeeName            Mirjam Link
JobTitle            PS Aide to Prof
BasePay                       744.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      58.82
TotalPay                      744.5
TotalPayBenefits             803.32
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72291, dtype: object)
(72292, Id                              72293
EmployeeName        Frankie Bouzek Jr
JobTitle             Transit Operator
BasePay                        623.02
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       180.24
TotalPay                       623.02
TotalPayBenefits               803.26
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72292, dtype: object)
(72293, Id                            72294
EmployeeName            Monika Chan
JobTitle            PS Aide to Prof
BasePay                       744.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      57.64
TotalPay                      744.5
TotalPayBenefits             802.14
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72293, dtype: object)
(72294, Id                             72295
EmployeeName        Patricia O'Neill
JobTitle                Junior Clerk
BasePay                       424.64
OvertimePay                   311.55
OtherPay                         0.0
Benefits                       64.35
TotalPay                      736.19
TotalPayBenefits              800.54
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72294, dtype: object)
(72295, Id                                      72296
EmployeeName                   Suzanne Loftus
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 736.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                64.34
TotalPay                                736.0
TotalPayBenefits                       800.34
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72295, dtype: object)
(72296, Id                          72297
EmployeeName          Edward Chan
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                311.55
OtherPay                      0.0
Benefits                    64.08
TotalPay                   736.19
TotalPayBenefits           800.27
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72296, dtype: object)
(72297, Id                          72298
EmployeeName             Nhi Pham
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                311.55
OtherPay                      0.0
Benefits                    63.78
TotalPay                   736.19
TotalPayBenefits           799.97
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72297, dtype: object)
(72298, Id                                      72299
EmployeeName                     Andrea Evans
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                736.75
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                58.39
TotalPay                               736.75
TotalPayBenefits                       795.14
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72298, dtype: object)
(72299, Id                                   72300
EmployeeName                 Na'Im Pickett
JobTitle            Public Service Trainee
BasePay                             680.96
OvertimePay                            0.0
OtherPay                             26.65
Benefits                             86.62
TotalPay                            707.61
TotalPayBenefits                    794.23
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72299, dtype: object)
(72300, Id                           72301
EmployeeName          Mary Scanlan
JobTitle            Court Reporter
BasePay                      50.08
OvertimePay                    0.0
OtherPay                    577.26
Benefits                    166.17
TotalPay                    627.34
TotalPayBenefits            793.51
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72300, dtype: object)
(72301, Id                          72302
EmployeeName          Aja Estares
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                304.63
OtherPay                      0.0
Benefits                    62.28
TotalPay                   729.27
TotalPayBenefits           791.55
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72301, dtype: object)
(72302, Id                          72303
EmployeeName        Yvonne Guzman
JobTitle            Special Nurse
BasePay                    562.32
OvertimePay                   0.0
OtherPay                    46.53
Benefits                   175.39
TotalPay                   608.85
TotalPayBenefits           784.24
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72302, dtype: object)
(72303, Id                              72304
EmployeeName            Christina Lee
JobTitle            Recreation Leader
BasePay                        696.82
OvertimePay                       0.0
OtherPay                        14.91
Benefits                        71.11
TotalPay                       711.73
TotalPayBenefits               782.84
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72303, dtype: object)
(72304, Id                          72305
EmployeeName         Michael Cusi
JobTitle             Junior Clerk
BasePay                     288.8
OvertimePay                 433.2
OtherPay                      0.0
Benefits                    60.19
TotalPay                    722.0
TotalPayBenefits           782.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72304, dtype: object)
(72305, Id                               72306
EmployeeName        Christopher Aragon
JobTitle                  Junior Clerk
BasePay                          288.8
OvertimePay                      433.2
OtherPay                           0.0
Benefits                         60.19
TotalPay                         722.0
TotalPayBenefits                782.19
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72305, dtype: object)
(72306, Id                            72307
EmployeeName        David Robertson
JobTitle               Junior Clerk
BasePay                       288.8
OvertimePay                   433.2
OtherPay                        0.0
Benefits                      60.19
TotalPay                      722.0
TotalPayBenefits             782.19
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72306, dtype: object)
(72307, Id                               72308
EmployeeName        Christopher Montes
JobTitle                  Junior Clerk
BasePay                          288.8
OvertimePay                      433.2
OtherPay                           0.0
Benefits                         60.19
TotalPay                         722.0
TotalPayBenefits                782.19
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72307, dtype: object)
(72308, Id                          72309
EmployeeName         Lelani Andes
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    606.0
Benefits                   175.78
TotalPay                    606.0
TotalPayBenefits           781.78
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72308, dtype: object)
(72309, Id                              72310
EmployeeName                Brian Lin
JobTitle            Recreation Leader
BasePay                        717.98
OvertimePay                       0.0
OtherPay                          7.2
Benefits                        56.14
TotalPay                       725.18
TotalPayBenefits               781.32
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72309, dtype: object)
(72310, Id                          72311
EmployeeName          Paul Taylor
JobTitle             Junior Clerk
BasePay                    406.18
OvertimePay                318.48
OtherPay                      0.0
Benefits                    56.11
TotalPay                   724.66
TotalPayBenefits           780.77
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72310, dtype: object)
(72311, Id                                          72312
EmployeeName                         John Ramirez
JobTitle            Statnry Eng Water Treat Plant
BasePay                                       0.0
OvertimePay                                244.33
OtherPay                                   478.92
Benefits                                     57.5
TotalPay                                   723.25
TotalPayBenefits                           780.75
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72311, dtype: object)
(72312, Id                          72313
EmployeeName           Kura Cohen
JobTitle             Junior Clerk
BasePay                    396.94
OvertimePay                318.48
OtherPay                      0.0
Benefits                    60.99
TotalPay                   715.42
TotalPayBenefits           776.41
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72312, dtype: object)
(72313, Id                              72314
EmployeeName          Brandiss Barlow
JobTitle            Recreation Leader
BasePay                        676.84
OvertimePay                       0.0
OtherPay                          1.1
Benefits                        98.14
TotalPay                       677.94
TotalPayBenefits               776.08
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72313, dtype: object)
(72314, Id                             72315
EmployeeName            George Bouie
JobTitle            Transit Operator
BasePay                       708.48
OvertimePay                      0.0
OtherPay                         0.0
Benefits                        67.2
TotalPay                      708.48
TotalPayBenefits              775.68
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72314, dtype: object)
(72315, Id                              72316
EmployeeName             Robert Davis
JobTitle            Recreation Leader
BasePay                        343.74
OvertimePay                       0.0
OtherPay                         9.46
Benefits                       422.09
TotalPay                        353.2
TotalPayBenefits               775.29
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72315, dtype: object)
(72316, Id                             72317
EmployeeName             Johnny Zhou
JobTitle            Transit Operator
BasePay                       595.12
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      176.17
TotalPay                      595.12
TotalPayBenefits              771.29
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72316, dtype: object)
(72317, Id                               72318
EmployeeName            Michelle Monge
JobTitle            Testing Technician
BasePay                         633.15
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         61.66
TotalPay                        709.47
TotalPayBenefits                771.13
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72317, dtype: object)
(72318, Id                          72319
EmployeeName         Hattie Breed
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                283.86
OtherPay                      0.0
Benefits                    62.43
TotalPay                    708.5
TotalPayBenefits           770.93
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72318, dtype: object)
(72319, Id                          72320
EmployeeName            Eric Chan
JobTitle             Junior Clerk
BasePay                    424.64
OvertimePay                283.86
OtherPay                      0.0
Benefits                    62.36
TotalPay                    708.5
TotalPayBenefits           770.86
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72319, dtype: object)
(72320, Id                              72321
EmployeeName        Rochelle Williams
JobTitle             Transit Operator
BasePay                        595.12
OvertimePay                       0.0
OtherPay                          0.0
Benefits                       174.86
TotalPay                       595.12
TotalPayBenefits               769.98
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72320, dtype: object)
(72321, Id                             72322
EmployeeName         Elliott Simpson
JobTitle            Transit Operator
BasePay                       595.12
OvertimePay                      0.0
OtherPay                         0.0
Benefits                      174.86
TotalPay                      595.12
TotalPayBenefits              769.98
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72321, dtype: object)
(72322, Id                          72323
EmployeeName           Richard Yu
JobTitle                   Porter
BasePay                    681.28
OvertimePay                   0.0
OtherPay                    25.64
Benefits                    55.08
TotalPay                   706.92
TotalPayBenefits            762.0
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72322, dtype: object)
(72323, Id                           72324
EmployeeName        Frederick Peng
JobTitle              Library Page
BasePay                     689.36
OvertimePay                    0.0
OtherPay                      9.88
Benefits                     60.16
TotalPay                    699.24
TotalPayBenefits             759.4
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72323, dtype: object)
(72324, Id                          72325
EmployeeName        Alicia Alacce
JobTitle            Special Nurse
BasePay                     583.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   169.07
TotalPay                    583.8
TotalPayBenefits           752.87
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72324, dtype: object)
(72325, Id                            72326
EmployeeName        Ruben Caballero
JobTitle              Special Nurse
BasePay                       592.4
OvertimePay                     0.0
OtherPay                      14.81
Benefits                     145.61
TotalPay                     607.21
TotalPayBenefits             752.82
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72325, dtype: object)
(72326, Id                           72327
EmployeeName        Hermes Abaunza
JobTitle              Junior Clerk
BasePay                     432.11
OvertimePay                 257.95
OtherPay                       0.0
Benefits                     60.74
TotalPay                    690.06
TotalPayBenefits             750.8
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72326, dtype: object)
(72327, Id                          72328
EmployeeName          David Duran
JobTitle             Junior Clerk
BasePay                    432.12
OvertimePay                264.56
OtherPay                      0.0
Benefits                    53.94
TotalPay                   696.68
TotalPayBenefits           750.62
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72327, dtype: object)
(72328, Id                            72329
EmployeeName        E'rika Chambers
JobTitle               Senior Clerk
BasePay                      689.94
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      59.33
TotalPay                     689.94
TotalPayBenefits             749.27
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72328, dtype: object)
(72329, Id                               72330
EmployeeName           Masami Nakatani
JobTitle            Testing Technician
BasePay                          513.0
OvertimePay                     176.34
OtherPay                           0.0
Benefits                          59.8
TotalPay                        689.34
TotalPayBenefits                749.14
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72329, dtype: object)
(72330, Id                                   72331
EmployeeName                Virginia Plaza
JobTitle            Patient Care Assistant
BasePay                                0.0
OvertimePay                            0.0
OtherPay                            695.44
Benefits                              53.2
TotalPay                            695.44
TotalPayBenefits                    748.64
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72330, dtype: object)
(72331, Id                              72332
EmployeeName        Christopher Libby
JobTitle            Recreation Leader
BasePay                        653.24
OvertimePay                       0.0
OtherPay                        39.44
Benefits                        53.97
TotalPay                       692.68
TotalPayBenefits               746.65
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72331, dtype: object)
(72332, Id                              72333
EmployeeName        Walter Dawson III
JobTitle            Recreation Leader
BasePay                         671.8
OvertimePay                       0.0
OtherPay                        12.75
Benefits                        53.34
TotalPay                       684.55
TotalPayBenefits               737.89
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72332, dtype: object)
(72333, Id                               72334
EmployeeName          Jennifer Hammond
JobTitle            Testing Technician
BasePay                          646.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         88.91
TotalPay                         646.6
TotalPayBenefits                735.51
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72333, dtype: object)
(72334, Id                          72335
EmployeeName        Myles Roebuck
JobTitle             Junior Clerk
BasePay                    401.25
OvertimePay                277.79
OtherPay                      0.0
Benefits                    52.91
TotalPay                   679.04
TotalPayBenefits           731.95
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72334, dtype: object)
(72335, Id                              72336
EmployeeName            Amanda Correa
JobTitle            Recreation Leader
BasePay                         630.0
OvertimePay                       0.0
OtherPay                         43.2
Benefits                        58.43
TotalPay                        673.2
TotalPayBenefits               731.63
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72335, dtype: object)
(72336, Id                                72337
EmployeeName             Matthew Miller
JobTitle            Swimming Instructor
BasePay                          668.73
OvertimePay                         0.0
OtherPay                           4.56
Benefits                          58.15
TotalPay                         673.29
TotalPayBenefits                 731.44
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72336, dtype: object)
(72337, Id                               72338
EmployeeName             Michael Brady
JobTitle            Testing Technician
BasePay                         677.25
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         53.76
TotalPay                        677.25
TotalPayBenefits                731.01
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72337, dtype: object)
(72338, Id                               72339
EmployeeName            Hossanah Layug
JobTitle            Testing Technician
BasePay                         673.32
OvertimePay                        0.0
OtherPay                           0.0
Benefits                          55.8
TotalPay                        673.32
TotalPayBenefits                729.12
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72338, dtype: object)
(72339, Id                              72340
EmployeeName           Jon Hunkiewicz
JobTitle            Stage Electrician
BasePay                         669.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        58.67
TotalPay                        669.2
TotalPayBenefits               727.87
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72339, dtype: object)
(72340, Id                          72341
EmployeeName         Reuben Reyes
JobTitle            Special Nurse
BasePay                    531.94
OvertimePay                   0.0
OtherPay                    36.64
Benefits                   157.95
TotalPay                   568.58
TotalPayBenefits           726.53
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72340, dtype: object)
(72341, Id                             72342
EmployeeName        Isabel Fondevila
JobTitle                Junior Clerk
BasePay                       274.71
OvertimePay                   397.97
OtherPay                         0.0
Benefits                       53.14
TotalPay                      672.68
TotalPayBenefits              725.82
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72341, dtype: object)
(72342, Id                                         72343
EmployeeName                       Karla Serrano
JobTitle            Public Svc Aide-Public Works
BasePay                                   662.36
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   62.16
TotalPay                                  662.36
TotalPayBenefits                          724.52
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72342, dtype: object)
(72343, Id                              72344
EmployeeName                 Rolf Lee
JobTitle            Stage Electrician
BasePay                         669.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         53.2
TotalPay                        669.2
TotalPayBenefits                722.4
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72343, dtype: object)
(72344, Id                                      72345
EmployeeName                       Shinhee Ro
JobTitle            Senior Eligibility Worker
BasePay                                   0.0
OvertimePay                               0.0
OtherPay                               670.78
Benefits                                51.32
TotalPay                               670.78
TotalPayBenefits                        722.1
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72344, dtype: object)
(72345, Id                             72346
EmployeeName        Yolanda Martinez
JobTitle                       Clerk
BasePay                        642.8
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       77.54
TotalPay                       642.8
TotalPayBenefits              720.34
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72345, dtype: object)
(72346, Id                              72347
EmployeeName        Patrick Mcdermott
JobTitle                 Junior Clerk
BasePay                        341.56
OvertimePay                     325.4
OtherPay                          0.0
Benefits                        52.69
TotalPay                       666.96
TotalPayBenefits               719.65
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72346, dtype: object)
(72347, Id                          72348
EmployeeName        Michael Brito
JobTitle             Junior Clerk
BasePay                     443.1
OvertimePay                221.55
OtherPay                      0.0
Benefits                    54.98
TotalPay                   664.65
TotalPayBenefits           719.63
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72347, dtype: object)
(72348, Id                                 72349
EmployeeName                 Marvin Wong
JobTitle            Electrical Inspector
BasePay                           660.89
OvertimePay                          0.0
OtherPay                             0.0
Benefits                           57.78
TotalPay                          660.89
TotalPayBenefits                  718.67
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72348, dtype: object)
(72349, Id                            72350
EmployeeName        Kimiyo Samejima
JobTitle              Special Nurse
BasePay                       557.2
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     158.75
TotalPay                      557.2
TotalPayBenefits             715.95
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72349, dtype: object)
(72350, Id                               72351
EmployeeName        Derek Edward Dispo
JobTitle                  Junior Clerk
BasePay                         392.43
OvertimePay                     271.18
OtherPay                           0.0
Benefits                          51.7
TotalPay                        663.61
TotalPayBenefits                715.31
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72350, dtype: object)
(72351, Id                          72352
EmployeeName           David Chen
JobTitle             Junior Clerk
BasePay                    378.51
OvertimePay                278.41
OtherPay                      0.0
Benefits                    57.61
TotalPay                   656.92
TotalPayBenefits           714.53
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72351, dtype: object)
(72352, Id                          72353
EmployeeName          Laura Ureta
JobTitle              Secretary 2
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   661.32
Benefits                    50.59
TotalPay                   661.32
TotalPayBenefits           711.91
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72352, dtype: object)
(72353, Id                          72354
EmployeeName         Nereida Vega
JobTitle             Senior Clerk
BasePay                    139.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   572.29
TotalPay                   139.25
TotalPayBenefits           711.54
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72353, dtype: object)
(72354, Id                            72355
EmployeeName        Renita Herrmann
JobTitle               Junior Clerk
BasePay                      341.56
OvertimePay                  318.48
OtherPay                        0.0
Benefits                       51.1
TotalPay                     660.04
TotalPayBenefits             711.14
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72354, dtype: object)
(72355, Id                          72356
EmployeeName           Joseph Lee
JobTitle             Junior Clerk
BasePay                    388.02
OvertimePay                264.56
OtherPay                      0.0
Benefits                    58.09
TotalPay                   652.58
TotalPayBenefits           710.67
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72355, dtype: object)
(72356, Id                            72357
EmployeeName        Shannon Buckley
JobTitle               Junior Clerk
BasePay                      332.33
OvertimePay                   325.4
OtherPay                        0.0
Benefits                      51.96
TotalPay                     657.73
TotalPayBenefits             709.69
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72356, dtype: object)
(72357, Id                              72358
EmployeeName        Christopher Acuna
JobTitle                 Junior Clerk
BasePay                        357.16
OvertimePay                    297.63
OtherPay                          0.0
Benefits                        53.96
TotalPay                       654.79
TotalPayBenefits               708.75
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72357, dtype: object)
(72358, Id                              72359
EmployeeName         Valerie EW Scott
JobTitle            Recreation Leader
BasePay                        654.78
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        51.01
TotalPay                       654.78
TotalPayBenefits               705.79
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72358, dtype: object)
(72359, Id                                 72360
EmployeeName                  Trinh Tran
JobTitle            Physician Specialist
BasePay                            562.4
OvertimePay                          0.0
OtherPay                             0.0
Benefits                           141.5
TotalPay                           562.4
TotalPayBenefits                   703.9
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72359, dtype: object)
(72360, Id                                       72361
EmployeeName                  Charles Macnulty
JobTitle            Community Development Spec
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                 558.6
Benefits                                145.18
TotalPay                                 558.6
TotalPayBenefits                        703.78
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72360, dtype: object)
(72361, Id                          72362
EmployeeName             John Lau
JobTitle             Junior Clerk
BasePay                    332.33
OvertimePay                318.48
OtherPay                      0.0
Benefits                    51.42
TotalPay                   650.81
TotalPayBenefits           702.23
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72361, dtype: object)
(72362, Id                                72363
EmployeeName        Mitsuhiro Yoshikawa
JobTitle              Recreation Leader
BasePay                          637.87
OvertimePay                         0.0
OtherPay                            8.5
Benefits                          55.16
TotalPay                         646.37
TotalPayBenefits                 701.53
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72362, dtype: object)
(72363, Id                              72364
EmployeeName          Jacquelyn Boone
JobTitle            Recreation Leader
BasePay                         644.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         55.9
TotalPay                        644.0
TotalPayBenefits                699.9
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72363, dtype: object)
(72364, Id                          72365
EmployeeName          Nevin Smith
JobTitle             Junior Clerk
BasePay                    341.56
OvertimePay                297.71
OtherPay                      0.0
Benefits                     59.5
TotalPay                   639.27
TotalPayBenefits           698.77
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72364, dtype: object)
(72365, Id                          72366
EmployeeName         Pamela Chism
JobTitle             Junior Clerk
BasePay                    383.61
OvertimePay                264.56
OtherPay                      0.0
Benefits                     50.5
TotalPay                   648.17
TotalPayBenefits           698.67
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72365, dtype: object)
(72366, Id                             72367
EmployeeName               Rick Chan
JobTitle            Special Examiner
BasePay                       645.59
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       51.12
TotalPay                      645.59
TotalPayBenefits              696.71
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72366, dtype: object)
(72367, Id                          72368
EmployeeName           Bryce Esch
JobTitle             Junior Clerk
BasePay                    374.79
OvertimePay                257.95
OtherPay                      0.0
Benefits                     62.9
TotalPay                   632.74
TotalPayBenefits           695.64
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72367, dtype: object)
(72368, Id                           72369
EmployeeName        Douglas Kassel
JobTitle              Junior Clerk
BasePay                     332.33
OvertimePay                 311.55
OtherPay                       0.0
Benefits                     50.87
TotalPay                    643.88
TotalPayBenefits            694.75
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72368, dtype: object)
(72369, Id                                72370
EmployeeName             Michael Cheney
JobTitle            Automotive Mechanic
BasePay                             0.0
OvertimePay                         0.0
OtherPay                          550.0
Benefits                         143.62
TotalPay                          550.0
TotalPayBenefits                 693.62
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72369, dtype: object)
(72370, Id                          72371
EmployeeName           Erin Smith
JobTitle            Special Nurse
BasePay                     533.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   157.84
TotalPay                    533.9
TotalPayBenefits           691.74
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72370, dtype: object)
(72371, Id                            72372
EmployeeName        Ahmad El-Najjar
JobTitle               Junior Clerk
BasePay                      370.39
OvertimePay                  264.56
OtherPay                        0.0
Benefits                       53.5
TotalPay                     634.95
TotalPayBenefits             688.45
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72371, dtype: object)
(72372, Id                              72373
EmployeeName           Angela Lalaind
JobTitle            Recreation Leader
BasePay                         630.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        54.93
TotalPay                        630.0
TotalPayBenefits               684.93
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72372, dtype: object)
(72373, Id                                 72374
EmployeeName        Donna Marie Martinez
JobTitle                   Special Nurse
BasePay                            533.9
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          147.88
TotalPay                           533.9
TotalPayBenefits                  681.78
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72373, dtype: object)
(72374, Id                                       72375
EmployeeName                         Dave Crow
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  630.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 49.99
TotalPay                                 630.0
TotalPayBenefits                        679.99
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72374, dtype: object)
(72375, Id                                       72376
EmployeeName                      David Gruber
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  630.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 49.95
TotalPay                                 630.0
TotalPayBenefits                        679.95
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72375, dtype: object)
(72376, Id                                       72377
EmployeeName                  Cathy Mosbrucker
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  630.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 49.95
TotalPay                                 630.0
TotalPayBenefits                        679.95
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72376, dtype: object)
(72377, Id                                       72378
EmployeeName                        Jim Hurley
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  630.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 49.95
TotalPay                                 630.0
TotalPayBenefits                        679.95
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72377, dtype: object)
(72378, Id                                       72379
EmployeeName                     Melvin Factor
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                 594.77
OvertimePay                                0.0
OtherPay                                  35.0
Benefits                                 49.07
TotalPay                                629.77
TotalPayBenefits                        678.84
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72378, dtype: object)
(72379, Id                             72380
EmployeeName             Wendy Chang
JobTitle            Special Examiner
BasePay                       591.76
OvertimePay                    34.81
OtherPay                         0.0
Benefits                       51.36
TotalPay                      626.57
TotalPayBenefits              677.93
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72379, dtype: object)
(72380, Id                                  72381
EmployeeName                 Essie Mattox
JobTitle            School Crossing Guard
BasePay                            582.08
OvertimePay                           0.0
OtherPay                             35.5
Benefits                            60.26
TotalPay                           617.58
TotalPayBenefits                   677.84
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72380, dtype: object)
(72381, Id                                     72382
EmployeeName        William John Erkelens Jr
JobTitle                Special Assistant 14
BasePay                               619.88
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               54.43
TotalPay                              619.88
TotalPayBenefits                      674.31
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72381, dtype: object)
(72382, Id                               72383
EmployeeName               Anna Bykova
JobTitle            Testing Technician
BasePay                          542.7
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         54.12
TotalPay                        619.02
TotalPayBenefits                673.14
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72382, dtype: object)
(72383, Id                               72384
EmployeeName               Nikki Chase
JobTitle            Testing Technician
BasePay                          542.7
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         54.02
TotalPay                        619.02
TotalPayBenefits                673.04
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72383, dtype: object)
(72384, Id                               72385
EmployeeName               Johan Selor
JobTitle            Testing Technician
BasePay                          542.7
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         54.02
TotalPay                        619.02
TotalPayBenefits                673.04
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72384, dtype: object)
(72385, Id                               72386
EmployeeName             Nicole Hughes
JobTitle            Testing Technician
BasePay                          542.7
OvertimePay                      76.32
OtherPay                           0.0
Benefits                         54.02
TotalPay                        619.02
TotalPayBenefits                673.04
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72385, dtype: object)
(72386, Id                                      72387
EmployeeName                        Harry Low
JobTitle            Attorney (Civil/Criminal)
BasePay                                615.71
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                53.97
TotalPay                               615.71
TotalPayBenefits                       669.68
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72386, dtype: object)
(72387, Id                          72388
EmployeeName        Lazette Smith
JobTitle             Junior Clerk
BasePay                    313.86
OvertimePay                297.71
OtherPay                      0.0
Benefits                    53.47
TotalPay                   611.57
TotalPayBenefits           665.04
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72387, dtype: object)
(72388, Id                                72389
EmployeeName            Jeffrey Harding
JobTitle            Senior Clerk Typist
BasePay                           616.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          47.91
TotalPay                          616.7
TotalPayBenefits                 664.61
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72388, dtype: object)
(72389, Id                               72390
EmployeeName               Michael Toy
JobTitle            Testing Technician
BasePay                          513.0
OvertimePay                      96.19
OtherPay                           0.0
Benefits                         54.54
TotalPay                        609.19
TotalPayBenefits                663.73
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72389, dtype: object)
(72390, Id                               72391
EmployeeName            Paul McCormick
JobTitle            Testing Technician
BasePay                          513.0
OvertimePay                      96.19
OtherPay                           0.0
Benefits                         54.35
TotalPay                        609.19
TotalPayBenefits                663.54
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72390, dtype: object)
(72391, Id                               72392
EmployeeName            Fernando Felix
JobTitle            Testing Technician
BasePay                          513.0
OvertimePay                      96.19
OtherPay                           0.0
Benefits                         53.65
TotalPay                        609.19
TotalPayBenefits                662.84
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72391, dtype: object)
(72392, Id                               72393
EmployeeName          Charnella Palaby
JobTitle            Testing Technician
BasePay                          513.0
OvertimePay                      96.19
OtherPay                           0.0
Benefits                         53.65
TotalPay                        609.19
TotalPayBenefits                662.84
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72392, dtype: object)
(72393, Id                             72394
EmployeeName        Maria Mclaughlin
JobTitle                Junior Clerk
BasePay                        295.4
OvertimePay                   318.48
OtherPay                         0.0
Benefits                       48.49
TotalPay                      613.88
TotalPayBenefits              662.37
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72393, dtype: object)
(72394, Id                          72395
EmployeeName         Steven Huynh
JobTitle             Junior Clerk
BasePay                    313.07
OvertimePay                291.02
OtherPay                      0.0
Benefits                     53.1
TotalPay                   604.09
TotalPayBenefits           657.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72394, dtype: object)
(72395, Id                                72396
EmployeeName            Emmanuel Pineda
JobTitle            Stationary Engineer
BasePay                           578.6
OvertimePay                         0.0
OtherPay                           24.0
Benefits                          52.68
TotalPay                          602.6
TotalPayBenefits                 655.28
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72395, dtype: object)
(72396, Id                                           72397
EmployeeName                           Jesus Lopez
JobTitle            StdntDsgn Train2/Arch/Eng/Plng
BasePay                                      578.7
OvertimePay                                    0.0
OtherPay                                     23.28
Benefits                                     53.23
TotalPay                                    601.98
TotalPayBenefits                            655.21
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72396, dtype: object)
(72397, Id                          72398
EmployeeName            Jimmy Lau
JobTitle             Junior Clerk
BasePay                    317.48
OvertimePay                 284.4
OtherPay                      0.0
Benefits                     52.9
TotalPay                   601.88
TotalPayBenefits           654.78
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72397, dtype: object)
(72398, Id                                         72399
EmployeeName                         Gina Hinton
JobTitle            Public Svc Aide-Public Works
BasePay                                   584.44
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   57.82
TotalPay                                  596.64
TotalPayBenefits                          654.46
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72398, dtype: object)
(72399, Id                                   72400
EmployeeName              Gabriella Juarez
JobTitle            Public Service Trainee
BasePay                             593.92
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             60.17
TotalPay                            593.92
TotalPayBenefits                    654.09
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72399, dtype: object)
(72400, Id                          72401
EmployeeName          Roy Mehring
JobTitle             Junior Clerk
BasePay                    308.66
OvertimePay                291.02
OtherPay                      0.0
Benefits                    52.72
TotalPay                   599.68
TotalPayBenefits            652.4
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72400, dtype: object)
(72401, Id                            72402
EmployeeName              Kevin Sin
JobTitle            Junior Engineer
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     602.17
Benefits                      46.06
TotalPay                     602.17
TotalPayBenefits             648.23
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72401, dtype: object)
(72402, Id                                       72403
EmployeeName                    Michael Garcia
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  600.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  47.7
TotalPay                                 600.0
TotalPayBenefits                         647.7
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72402, dtype: object)
(72403, Id                                      72404
EmployeeName                   Rhonda Nichols
JobTitle            Clinical Nurse Specialist
BasePay                                   0.0
OvertimePay                               0.0
OtherPay                               598.82
Benefits                                 47.4
TotalPay                               598.82
TotalPayBenefits                       646.22
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72403, dtype: object)
(72404, Id                                    72405
EmployeeName                  Meetali Govil
JobTitle            PS Aide Health Services
BasePay                              634.22
OvertimePay                             0.0
OtherPay                                0.0
Benefits                               8.85
TotalPay                             634.22
TotalPayBenefits                     643.07
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72404, dtype: object)
(72405, Id                          72406
EmployeeName           John Weber
JobTitle             Junior Clerk
BasePay                    330.71
OvertimePay                264.56
OtherPay                      0.0
Benefits                    46.38
TotalPay                   595.27
TotalPayBenefits           641.65
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72405, dtype: object)
(72406, Id                                   72407
EmployeeName                    John Dodge
JobTitle            Patient Care Assistant
BasePay                              470.7
OvertimePay                            0.0
OtherPay                             37.65
Benefits                            132.38
TotalPay                            508.35
TotalPayBenefits                    640.73
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72406, dtype: object)
(72407, Id                          72408
EmployeeName            Edmund Ng
JobTitle             Junior Clerk
BasePay                    317.48
OvertimePay                271.18
OtherPay                      0.0
Benefits                    51.69
TotalPay                   588.66
TotalPayBenefits           640.35
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72407, dtype: object)
(72408, Id                              72409
EmployeeName           Lawren Pierson
JobTitle            Recreation Leader
BasePay                        557.83
OvertimePay                       0.0
OtherPay                        29.33
Benefits                        52.23
TotalPay                       587.16
TotalPayBenefits               639.39
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72408, dtype: object)
(72409, Id                               72410
EmployeeName          Aubreyjoy Calara
JobTitle            Testing Technician
BasePay                         569.47
OvertimePay                      16.96
OtherPay                           0.0
Benefits                         45.49
TotalPay                        586.43
TotalPayBenefits                631.92
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72409, dtype: object)
(72410, Id                                         72411
EmployeeName                      Chad Littleton
JobTitle            Public Svc Aide-Public Works
BasePay                                   571.45
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   59.68
TotalPay                                  571.45
TotalPayBenefits                          631.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72410, dtype: object)
(72411, Id                              72412
EmployeeName            Antoine Perry
JobTitle            Recreation Leader
BasePay                         579.3
OvertimePay                       0.0
OtherPay                         1.35
Benefits                        50.17
TotalPay                       580.65
TotalPayBenefits               630.82
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72411, dtype: object)
(72412, Id                          72413
EmployeeName         Frank Hodges
JobTitle                   Welder
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   584.41
Benefits                     44.7
TotalPay                   584.41
TotalPayBenefits           629.11
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72412, dtype: object)
(72413, Id                                72414
EmployeeName                  Jason Yen
JobTitle            Park Patrol Officer
BasePay                          574.93
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          53.83
TotalPay                         574.93
TotalPayBenefits                 628.76
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72413, dtype: object)
(72414, Id                                          72415
EmployeeName                    Rodney Detheridge
JobTitle            Bldg & Grounds Patrol Officer
BasePay                                     530.7
OvertimePay                                   0.0
OtherPay                                    42.45
Benefits                                     54.7
TotalPay                                   573.15
TotalPayBenefits                           627.85
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72414, dtype: object)
(72415, Id                                      72416
EmployeeName        Pauleena De La Concepcion
JobTitle             Counselor, Juvenile Hall
BasePay                                545.89
OvertimePay                               0.0
OtherPay                                28.78
Benefits                                48.96
TotalPay                               574.67
TotalPayBenefits                       623.63
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72415, dtype: object)
(72416, Id                                72417
EmployeeName                  Byong Kim
JobTitle            Swimming Instructor
BasePay                           491.8
OvertimePay                         0.0
OtherPay                           1.52
Benefits                         129.29
TotalPay                         493.32
TotalPayBenefits                 622.61
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72416, dtype: object)
(72417, Id                                          72418
EmployeeName                         Arlene Davis
JobTitle            Senior Comm Systems Technican
BasePay                                    572.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                    50.29
TotalPay                                   572.03
TotalPayBenefits                           622.32
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72417, dtype: object)
(72418, Id                                      72419
EmployeeName           Francis Xavier Crowley
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 575.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                45.72
TotalPay                                575.0
TotalPayBenefits                       620.72
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72418, dtype: object)
(72419, Id                                72420
EmployeeName            Michelle Cheung
JobTitle            Swimming Instructor
BasePay                          568.37
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          49.01
TotalPay                         568.37
TotalPayBenefits                 617.38
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72419, dtype: object)
(72420, Id                           72421
EmployeeName        Shilu Ramchand
JobTitle             Special Nurse
BasePay                      417.9
OvertimePay                    0.0
OtherPay                     55.72
Benefits                     142.0
TotalPay                    473.62
TotalPayBenefits            615.62
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72420, dtype: object)
(72421, Id                                72422
EmployeeName                 Paul Byrne
JobTitle            Swimming Instructor
BasePay                          562.58
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          50.01
TotalPay                         562.58
TotalPayBenefits                 612.59
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72421, dtype: object)
(72422, Id                                   72423
EmployeeName                   Jess Hagler
JobTitle            Public Service Trainee
BasePay                             552.96
OvertimePay                            0.0
OtherPay                              3.28
Benefits                             56.01
TotalPay                            556.24
TotalPayBenefits                    612.25
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72422, dtype: object)
(72423, Id                                72424
EmployeeName            Katlin Greiving
JobTitle            Swimming Instructor
BasePay                          489.54
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         122.56
TotalPay                         489.54
TotalPayBenefits                  612.1
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72423, dtype: object)
(72424, Id                                       72425
EmployeeName                  Shoba Dandillaya
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  560.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 49.13
TotalPay                                 560.0
TotalPayBenefits                        609.13
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72424, dtype: object)
(72425, Id                                       72426
EmployeeName                         Kent Qian
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  560.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  49.1
TotalPay                                 560.0
TotalPayBenefits                         609.1
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72425, dtype: object)
(72426, Id                            72427
EmployeeName         Myriam Bouaziz
JobTitle            PS Aide to Prof
BasePay                      369.34
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     235.87
TotalPay                     369.34
TotalPayBenefits             605.21
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72426, dtype: object)
(72427, Id                                       72428
EmployeeName                      Neveo Mosser
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  560.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 44.42
TotalPay                                 560.0
TotalPayBenefits                        604.42
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72427, dtype: object)
(72428, Id                          72429
EmployeeName          Bruce Perez
JobTitle             Junior Clerk
BasePay                    291.02
OvertimePay                264.56
OtherPay                      0.0
Benefits                    48.84
TotalPay                   555.58
TotalPayBenefits           604.42
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72428, dtype: object)
(72429, Id                          72430
EmployeeName           Donna Lane
JobTitle                 Gardener
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   561.39
Benefits                    42.95
TotalPay                   561.39
TotalPayBenefits           604.34
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72429, dtype: object)
(72430, Id                              72431
EmployeeName           Andrew Bennett
JobTitle            Recreation Leader
BasePay                         557.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        43.46
TotalPay                        557.8
TotalPayBenefits               601.26
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72430, dtype: object)
(72431, Id                                   72432
EmployeeName         Valeria Alvizar Urena
JobTitle            Public Service Trainee
BasePay                             552.88
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             43.08
TotalPay                            552.88
TotalPayBenefits                    595.96
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72431, dtype: object)
(72432, Id                              72433
EmployeeName            Jon Johannsen
JobTitle            Stage Electrician
BasePay                         334.6
OvertimePay                       0.0
OtherPay                        207.9
Benefits                        52.26
TotalPay                        542.5
TotalPayBenefits               594.76
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72432, dtype: object)
(72433, Id                                  72434
EmployeeName        Alexandra Martin Sims
JobTitle                Recreation Leader
BasePay                            541.89
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            52.76
TotalPay                           541.89
TotalPayBenefits                   594.65
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72433, dtype: object)
(72434, Id                             72435
EmployeeName        Robert Snethlage
JobTitle              Pool Lifeguard
BasePay                       434.04
OvertimePay                      0.0
OtherPay                       26.64
Benefits                      127.11
TotalPay                      460.68
TotalPayBenefits              587.79
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72434, dtype: object)
(72435, Id                                         72436
EmployeeName                         Andre Babbs
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   55.54
TotalPay                                   531.7
TotalPayBenefits                          587.24
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72435, dtype: object)
(72436, Id                                           72437
EmployeeName                        Michelle Thong
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                      539.1
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                     45.19
TotalPay                                     539.1
TotalPayBenefits                            584.29
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72436, dtype: object)
(72437, Id                          72438
EmployeeName        Fe A De Jesus
JobTitle            Special Nurse
BasePay                     540.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    42.97
TotalPay                    540.5
TotalPayBenefits           583.47
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72437, dtype: object)
(72438, Id                                      72439
EmployeeName                     Judy Johnson
JobTitle            Attorney (Civil/Criminal)
BasePay                                   0.0
OvertimePay                               0.0
OtherPay                               541.83
Benefits                                41.45
TotalPay                               541.83
TotalPayBenefits                       583.28
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72438, dtype: object)
(72439, Id                                         72440
EmployeeName                        Brian Walker
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   47.33
TotalPay                                   531.7
TotalPayBenefits                          579.03
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72439, dtype: object)
(72440, Id                                         72441
EmployeeName                         Marcus Duty
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   46.49
TotalPay                                   531.7
TotalPayBenefits                          578.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72440, dtype: object)
(72441, Id                                         72442
EmployeeName                       Jabar Hickman
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   46.48
TotalPay                                   531.7
TotalPayBenefits                          578.18
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72441, dtype: object)
(72442, Id                                   72443
EmployeeName          Aidan Verba-Hamilton
JobTitle            Public Service Trainee
BasePay                             527.36
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             46.74
TotalPay                            527.36
TotalPayBenefits                     574.1
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72442, dtype: object)
(72443, Id                                         72444
EmployeeName                          Roy Huland
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   41.17
TotalPay                                   531.7
TotalPayBenefits                          572.87
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72443, dtype: object)
(72444, Id                                         72445
EmployeeName                       Milton Wright
JobTitle            Public Svc Aide-Public Works
BasePay                                    519.5
OvertimePay                                  0.0
OtherPay                                    12.2
Benefits                                   41.17
TotalPay                                   531.7
TotalPayBenefits                          572.87
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72444, dtype: object)
(72445, Id                            72446
EmployeeName          Paula Richter
JobTitle            Health Worker 2
BasePay                       361.8
OvertimePay                     0.0
OtherPay                        0.0
Benefits                     205.21
TotalPay                      361.8
TotalPayBenefits             567.01
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72445, dtype: object)
(72446, Id                                         72447
EmployeeName                     Shaquita Fulton
JobTitle            Public Svc Aide-Public Works
BasePay                                   525.99
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   40.72
TotalPay                                  525.99
TotalPayBenefits                          566.71
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72446, dtype: object)
(72447, Id                              72448
EmployeeName               Samuel Sax
JobTitle            Recreation Leader
BasePay                        489.59
OvertimePay                       0.0
OtherPay                         28.1
Benefits                        48.78
TotalPay                       517.69
TotalPayBenefits               566.47
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72447, dtype: object)
(72448, Id                                  72449
EmployeeName                  Janine Ruiz
JobTitle            School Crossing Guard
BasePay                            523.81
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            41.65
TotalPay                           523.81
TotalPayBenefits                   565.46
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72448, dtype: object)
(72449, Id                                    72450
EmployeeName                 Michael Callan
JobTitle            PS Aide Health Services
BasePay                               520.4
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              40.55
TotalPay                              520.4
TotalPayBenefits                     560.95
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72449, dtype: object)
(72450, Id                            72451
EmployeeName           Justin Brown
JobTitle            Sheriff's Cadet
BasePay                         0.0
OvertimePay                  147.26
OtherPay                     372.66
Benefits                      40.22
TotalPay                     519.92
TotalPayBenefits             560.14
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72450, dtype: object)
(72451, Id                              72452
EmployeeName              David Hatch
JobTitle            Stage Electrician
BasePay                         501.9
OvertimePay                       0.0
OtherPay                         16.0
Benefits                         41.0
TotalPay                        517.9
TotalPayBenefits                558.9
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72451, dtype: object)
(72452, Id                                    72453
EmployeeName                       Doris Yu
JobTitle            PS Aide Health Services
BasePay                              504.14
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              52.04
TotalPay                             504.14
TotalPayBenefits                     556.18
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72452, dtype: object)
(72453, Id                                         72454
EmployeeName                     Shirley Burgers
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                  514.79
Benefits                                   39.38
TotalPay                                  514.79
TotalPayBenefits                          554.17
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72453, dtype: object)
(72454, Id                                      72455
EmployeeName                R James Slaughter
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 506.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                44.48
TotalPay                                506.0
TotalPayBenefits                       550.48
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72454, dtype: object)
(72455, Id                                72456
EmployeeName        Clayton Breitweiser
JobTitle              Recreation Leader
BasePay                           64.46
OvertimePay                         0.0
OtherPay                            0.0
Benefits                         485.67
TotalPay                          64.46
TotalPayBenefits                 550.13
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72455, dtype: object)
(72456, Id                           72457
EmployeeName        Daniel McGuire
JobTitle             Special Nurse
BasePay                     424.72
OvertimePay                    0.0
OtherPay                       0.0
Benefits                    124.83
TotalPay                    424.72
TotalPayBenefits            549.55
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72456, dtype: object)
(72457, Id                            72458
EmployeeName             Mabel Chan
JobTitle            PS Aide to Prof
BasePay                      479.27
OvertimePay                     0.0
OtherPay                      30.15
Benefits                      39.44
TotalPay                     509.42
TotalPayBenefits             548.86
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72457, dtype: object)
(72458, Id                                      72459
EmployeeName        Francisco Morazan Jimenez
JobTitle                       Pool Lifeguard
BasePay                                507.56
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                39.52
TotalPay                               507.56
TotalPayBenefits                       547.08
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72458, dtype: object)
(72459, Id                                       72460
EmployeeName                       Walter Park
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  500.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 43.84
TotalPay                                 500.0
TotalPayBenefits                        543.84
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72459, dtype: object)
(72460, Id                              72461
EmployeeName              Leslie West
JobTitle            Recreation Leader
BasePay                        458.44
OvertimePay                       0.0
OtherPay                        27.06
Benefits                        57.93
TotalPay                        485.5
TotalPayBenefits               543.43
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72460, dtype: object)
(72461, Id                              72462
EmployeeName            Pablo Jimenez
JobTitle            Recreation Leader
BasePay                        486.13
OvertimePay                       0.0
OtherPay                        11.45
Benefits                        45.68
TotalPay                       497.58
TotalPayBenefits               543.26
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72461, dtype: object)
(72462, Id                              72463
EmployeeName             Amanda Rosas
JobTitle            Recreation Leader
BasePay                        497.25
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        44.61
TotalPay                       497.25
TotalPayBenefits               541.86
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72462, dtype: object)
(72463, Id                                     72464
EmployeeName                 Hope Schmeltzer
JobTitle            Commissioner No Benefits
BasePay                                500.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               39.55
TotalPay                               500.0
TotalPayBenefits                      539.55
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72463, dtype: object)
(72464, Id                                       72465
EmployeeName                    Ronald Vernali
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  500.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 38.78
TotalPay                                 500.0
TotalPayBenefits                        538.78
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72464, dtype: object)
(72465, Id                             72466
EmployeeName         Karen Eckersley
JobTitle            Special Examiner
BasePay                       492.89
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       43.18
TotalPay                      492.89
TotalPayBenefits              536.07
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72465, dtype: object)
(72466, Id                                          72467
EmployeeName                Angus McKenzie-Fraser
JobTitle            Senior Administrative Analyst
BasePay                                    422.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                   113.47
TotalPay                                   422.11
TotalPayBenefits                           535.58
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72466, dtype: object)
(72467, Id                                   72468
EmployeeName                Andrea Serrano
JobTitle            Public Service Trainee
BasePay                              490.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             45.07
TotalPay                             490.0
TotalPayBenefits                    535.07
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72467, dtype: object)
(72468, Id                                       72469
EmployeeName                    Polly Marshall
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  490.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 38.93
TotalPay                                 490.0
TotalPayBenefits                        528.93
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72468, dtype: object)
(72469, Id                                       72470
EmployeeName                Bartholomew Murphy
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  490.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 38.89
TotalPay                                 490.0
TotalPayBenefits                        528.89
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72469, dtype: object)
(72470, Id                             72471
EmployeeName        Joseph Vickstein
JobTitle              Court Reporter
BasePay                        424.6
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       104.2
TotalPay                       424.6
TotalPayBenefits               528.8
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72470, dtype: object)
(72471, Id                               72472
EmployeeName        Lawrence Rogers Jr
JobTitle             Recreation Leader
BasePay                         474.95
OvertimePay                        0.0
OtherPay                          9.03
Benefits                         42.87
TotalPay                        483.98
TotalPayBenefits                526.85
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72471, dtype: object)
(72472, Id                          72473
EmployeeName          Robyn Erler
JobTitle              Librarian 1
BasePay                    474.21
OvertimePay                   0.0
OtherPay                     4.74
Benefits                    42.12
TotalPay                   478.95
TotalPayBenefits           521.07
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72472, dtype: object)
(72473, Id                              72474
EmployeeName               Connie Lin
JobTitle            Recreation Leader
BasePay                        478.98
OvertimePay                       0.0
OtherPay                         1.61
Benefits                        40.31
TotalPay                       480.59
TotalPayBenefits                520.9
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72473, dtype: object)
(72474, Id                                         72475
EmployeeName                    Otis Williams Jr
JobTitle            Public Svc Aide-Public Works
BasePay                                   467.55
OvertimePay                                  0.0
OtherPay                                    9.76
Benefits                                   42.77
TotalPay                                  477.31
TotalPayBenefits                          520.08
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72474, dtype: object)
(72475, Id                                         72476
EmployeeName                       Randy Gifford
JobTitle            Public Svc Aide-Public Works
BasePay                                   467.55
OvertimePay                                  0.0
OtherPay                                    9.76
Benefits                                   42.47
TotalPay                                  477.31
TotalPayBenefits                          519.78
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72475, dtype: object)
(72476, Id                                         72477
EmployeeName                     Dalanna Malcolm
JobTitle            Public Svc Aide-Public Works
BasePay                                   467.55
OvertimePay                                  0.0
OtherPay                                    9.76
Benefits                                   41.72
TotalPay                                  477.31
TotalPayBenefits                          519.03
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72476, dtype: object)
(72477, Id                                    72478
EmployeeName                        Vinh Vu
JobTitle            PS Aide Health Services
BasePay                              476.71
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              41.83
TotalPay                             476.71
TotalPayBenefits                     518.54
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72477, dtype: object)
(72478, Id                              72479
EmployeeName        Brigitte Danridge
JobTitle                       Porter
BasePay                         480.9
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        37.46
TotalPay                        480.9
TotalPayBenefits               518.36
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72478, dtype: object)
(72479, Id                              72480
EmployeeName           Linda Jurcisek
JobTitle            Recreation Leader
BasePay                        474.52
OvertimePay                       0.0
OtherPay                         4.72
Benefits                        37.18
TotalPay                       479.24
TotalPayBenefits               516.42
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72479, dtype: object)
(72480, Id                              72481
EmployeeName               Mary Quinn
JobTitle            Director, Probate
BasePay                         476.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        37.89
TotalPay                        476.6
TotalPayBenefits               514.49
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72480, dtype: object)
(72481, Id                                         72482
EmployeeName                       Keeya Edwards
JobTitle            Public Svc Aide-Public Works
BasePay                                   467.55
OvertimePay                                  0.0
OtherPay                                    9.76
Benefits                                   36.95
TotalPay                                  477.31
TotalPayBenefits                          514.26
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72481, dtype: object)
(72482, Id                                   72483
EmployeeName                  PAIGE BECKER
JobTitle            Public Service Trainee
BasePay                              469.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             36.54
TotalPay                             469.0
TotalPayBenefits                    505.54
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72482, dtype: object)
(72483, Id                                         72484
EmployeeName                   Kenneth Patterson
JobTitle            Public Svc Aide-Public Works
BasePay                                   454.56
OvertimePay                                  0.0
OtherPay                                    9.76
Benefits                                   40.87
TotalPay                                  464.32
TotalPayBenefits                          505.19
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72483, dtype: object)
(72484, Id                                72485
EmployeeName                Jamaal Dunn
JobTitle            Recreation Director
BasePay                             0.0
OvertimePay                         0.0
OtherPay                         467.74
Benefits                          36.95
TotalPay                         467.74
TotalPayBenefits                 504.69
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72484, dtype: object)
(72485, Id                               72486
EmployeeName           Shelley Johnson
JobTitle            Testing Technician
BasePay                         418.33
OvertimePay                       42.4
OtherPay                           0.0
Benefits                         42.27
TotalPay                        460.73
TotalPayBenefits                 503.0
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72485, dtype: object)
(72486, Id                                     72487
EmployeeName                        Eric Mar
JobTitle            Commissioner No Benefits
BasePay                                400.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                              102.75
TotalPay                               400.0
TotalPayBenefits                      502.75
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72486, dtype: object)
(72487, Id                                         72488
EmployeeName                       Tamika Walker
JobTitle            Public Svc Aide-Public Works
BasePay                                   458.34
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   39.38
TotalPay                                  458.34
TotalPayBenefits                          497.72
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72487, dtype: object)
(72488, Id                              72489
EmployeeName        Christine Cheeves
JobTitle            Recreation Leader
BasePay                        454.25
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        40.23
TotalPay                       454.25
TotalPayBenefits               494.48
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72488, dtype: object)
(72489, Id                                        72490
EmployeeName                       Marcus Carey
JobTitle            Communications Dispatcher 1
BasePay                                     0.0
OvertimePay                                 0.0
OtherPay                                 456.14
Benefits                                  34.89
TotalPay                                 456.14
TotalPayBenefits                         491.03
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72489, dtype: object)
(72490, Id                                   72491
EmployeeName                   Zuberi Carr
JobTitle            Public Service Trainee
BasePay                             430.08
OvertimePay                            0.0
OtherPay                             17.22
Benefits                             41.49
TotalPay                             447.3
TotalPayBenefits                    488.79
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72490, dtype: object)
(72491, Id                                 72492
EmployeeName        Denise Gomez Padilla
JobTitle                   Special Nurse
BasePay                           377.51
OvertimePay                          0.0
OtherPay                             0.0
Benefits                          111.24
TotalPay                          377.51
TotalPayBenefits                  488.75
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72491, dtype: object)
(72492, Id                                         72493
EmployeeName                      Lateka Hampton
JobTitle            Public Svc Aide-Public Works
BasePay                                   441.58
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   42.93
TotalPay                                  441.58
TotalPayBenefits                          484.51
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72492, dtype: object)
(72493, Id                             72494
EmployeeName        Sebastian Wolken
JobTitle              Pool Lifeguard
BasePay                       427.36
OvertimePay                      0.0
OtherPay                        6.09
Benefits                        50.2
TotalPay                      433.45
TotalPayBenefits              483.65
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72493, dtype: object)
(72494, Id                                  72495
EmployeeName        Yekaterina Belorusets
JobTitle                Recreation Leader
BasePay                            437.81
OvertimePay                           0.0
OtherPay                              8.5
Benefits                            35.48
TotalPay                           446.31
TotalPayBenefits                   481.79
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72494, dtype: object)
(72495, Id                            72496
EmployeeName            John Bender
JobTitle            General Laborer
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     443.37
Benefits                      33.92
TotalPay                     443.37
TotalPayBenefits             477.29
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72495, dtype: object)
(72496, Id                          72497
EmployeeName            Beth Gray
JobTitle            Special Nurse
BasePay                    437.85
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    38.27
TotalPay                   437.85
TotalPayBenefits           476.12
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72496, dtype: object)
(72497, Id                              72498
EmployeeName        Catheryn Williams
JobTitle                Special Nurse
BasePay                        338.51
OvertimePay                       0.0
OtherPay                        33.84
Benefits                       102.19
TotalPay                       372.35
TotalPayBenefits               474.54
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72497, dtype: object)
(72498, Id                             72499
EmployeeName           Elena Domingo
JobTitle            Special Examiner
BasePay                       437.85
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       34.59
TotalPay                      437.85
TotalPayBenefits              472.44
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72498, dtype: object)
(72499, Id                               72500
EmployeeName          Catherine Weiser
JobTitle            Nurse Practitioner
BasePay                          331.2
OvertimePay                        0.0
OtherPay                         33.12
Benefits                        106.35
TotalPay                        364.32
TotalPayBenefits                470.67
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72499, dtype: object)
(72500, Id                               72501
EmployeeName        Fermin Ballesteros
JobTitle                  Junior Clerk
BasePay                          141.1
OvertimePay                     291.02
OtherPay                           0.0
Benefits                         37.99
TotalPay                        432.12
TotalPayBenefits                470.11
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72500, dtype: object)
(72501, Id                                       72502
EmployeeName                    Nancy Kirshner
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  275.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 194.4
TotalPay                                 275.0
TotalPayBenefits                         469.4
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72501, dtype: object)
(72502, Id                               72503
EmployeeName           Brian Wesenberg
JobTitle            Testing Technician
BasePay                         423.98
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         39.46
TotalPay                        423.98
TotalPayBenefits                463.44
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72502, dtype: object)
(72503, Id                                         72504
EmployeeName                        Trevor Green
JobTitle            Public Svc Aide-Public Works
BasePay                                   415.61
OvertimePay                                  0.0
OtherPay                                    5.67
Benefits                                   36.65
TotalPay                                  421.28
TotalPayBenefits                          457.93
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72503, dtype: object)
(72504, Id                                         72505
EmployeeName                     Tanicee Dillard
JobTitle            Public Svc Aide-Public Works
BasePay                                   408.78
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   46.26
TotalPay                                  408.78
TotalPayBenefits                          455.04
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72504, dtype: object)
(72505, Id                                         72506
EmployeeName                       John Talavera
JobTitle            Public Svc Aide-Public Works
BasePay                                   415.61
OvertimePay                                  0.0
OtherPay                                    5.67
Benefits                                   32.62
TotalPay                                  421.28
TotalPayBenefits                           453.9
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72505, dtype: object)
(72506, Id                                   72507
EmployeeName          Tashina Garcia Garza
JobTitle            Public Service Trainee
BasePay                              420.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             33.33
TotalPay                             420.0
TotalPayBenefits                    453.33
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72506, dtype: object)
(72507, Id                                 72508
EmployeeName        Stephanie Kristovich
JobTitle                   Special Nurse
BasePay                           319.95
OvertimePay                          0.0
OtherPay                            32.0
Benefits                           97.72
TotalPay                          351.95
TotalPayBenefits                  449.67
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72507, dtype: object)
(72508, Id                                       72509
EmployeeName                      Heather Mayo
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                  408.3
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 39.85
TotalPay                                 408.3
TotalPayBenefits                        448.15
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72508, dtype: object)
(72509, Id                                           72510
EmployeeName                      Willie Sneed Jr.
JobTitle            Counselor, Juvenile Hall SFERS
BasePay                                      411.6
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                     35.99
TotalPay                                     411.6
TotalPayBenefits                            447.59
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72509, dtype: object)
(72510, Id                             72511
EmployeeName             Steven Moss
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                        7.45
TotalPay                      438.22
TotalPayBenefits              445.67
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72510, dtype: object)
(72511, Id                             72512
EmployeeName              Holly Rios
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                        7.45
TotalPay                      438.22
TotalPayBenefits              445.67
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72511, dtype: object)
(72512, Id                            72513
EmployeeName        Glenn Sylvester
JobTitle                Inspector 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     438.22
Benefits                        1.1
TotalPay                     438.22
TotalPayBenefits             439.32
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72512, dtype: object)
(72513, Id                             72514
EmployeeName             Jesus Pinon
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72513, dtype: object)
(72514, Id                             72515
EmployeeName            Daniel Oshea
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72514, dtype: object)
(72515, Id                             72516
EmployeeName            Robert Leung
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72515, dtype: object)
(72516, Id                                          72517
EmployeeName                          James Bosch
JobTitle            Sergeant, (Police Department)
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                   438.22
Benefits                                      1.1
TotalPay                                   438.22
TotalPayBenefits                           439.32
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72516, dtype: object)
(72517, Id                             72518
EmployeeName          Patricia White
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72517, dtype: object)
(72518, Id                             72519
EmployeeName         H V Shishmanian
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72518, dtype: object)
(72519, Id                             72520
EmployeeName        Michael Gallegos
JobTitle                  Sergeant 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      438.22
Benefits                         1.1
TotalPay                      438.22
TotalPayBenefits              439.32
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72519, dtype: object)
(72520, Id                           72521
EmployeeName        Michael Hughes
JobTitle                Sergeant 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    438.22
Benefits                       1.1
TotalPay                    438.22
TotalPayBenefits            439.32
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72520, dtype: object)
(72521, Id                                  72522
EmployeeName        Caroline Acquistapace
JobTitle                Recreation Leader
BasePay                            404.25
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            34.27
TotalPay                           404.25
TotalPayBenefits                   438.52
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72521, dtype: object)
(72522, Id                                         72523
EmployeeName                        Roy Santiago
JobTitle            Public Svc Aide-Public Works
BasePay                                   396.36
OvertimePay                                  0.0
OtherPay                                     6.2
Benefits                                   35.57
TotalPay                                  402.56
TotalPayBenefits                          438.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72522, dtype: object)
(72523, Id                              72524
EmployeeName        Carlos Perez Boza
JobTitle            Recreation Leader
BasePay                        392.07
OvertimePay                       0.0
OtherPay                        13.48
Benefits                        31.39
TotalPay                       405.55
TotalPayBenefits               436.94
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72523, dtype: object)
(72524, Id                              72525
EmployeeName             Kevin Kelley
JobTitle            Recreation Leader
BasePay                        400.58
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        36.01
TotalPay                       400.58
TotalPayBenefits               436.59
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72524, dtype: object)
(72525, Id                                      72526
EmployeeName                      Paige Arata
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 400.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                34.96
TotalPay                                400.0
TotalPayBenefits                       434.96
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72525, dtype: object)
(72526, Id                             72527
EmployeeName        Catherine Wright
JobTitle                       Clerk
BasePay                       402.94
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       31.39
TotalPay                      402.94
TotalPayBenefits              434.33
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72526, dtype: object)
(72527, Id                          72528
EmployeeName          Amy Bolanos
JobTitle            Special Nurse
BasePay                    353.94
OvertimePay                   0.0
OtherPay                    67.64
Benefits                    12.19
TotalPay                   421.58
TotalPayBenefits           433.77
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72527, dtype: object)
(72528, Id                                          72529
EmployeeName                        Kristine Huey
JobTitle            Swimming Instr/Pool Lifeguard
BasePay                                    394.37
OvertimePay                                   0.0
OtherPay                                     4.62
Benefits                                    33.83
TotalPay                                   398.99
TotalPayBenefits                           432.82
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72528, dtype: object)
(72529, Id                                      72530
EmployeeName                        David Lee
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 400.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 31.8
TotalPay                                400.0
TotalPayBenefits                        431.8
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72529, dtype: object)
(72530, Id                                         72531
EmployeeName                      Sexton Johnson
JobTitle            Public Svc Aide-Public Works
BasePay                                   389.63
OvertimePay                                  0.0
OtherPay                                    4.86
Benefits                                   34.75
TotalPay                                  394.49
TotalPayBenefits                          429.24
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72530, dtype: object)
(72531, Id                             72532
EmployeeName         Michael Collins
JobTitle            Police Officer 2
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       426.5
Benefits                        1.07
TotalPay                       426.5
TotalPayBenefits              427.57
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72531, dtype: object)
(72532, Id                             72533
EmployeeName           Severo Flores
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       426.5
Benefits                        1.07
TotalPay                       426.5
TotalPayBenefits              427.57
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72532, dtype: object)
(72533, Id                                       72534
EmployeeName                    Steven Bianchi
JobTitle            Asst Materials Coordinator
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                394.85
Benefits                                 30.21
TotalPay                                394.85
TotalPayBenefits                        425.06
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72533, dtype: object)
(72534, Id                                  72535
EmployeeName                   Yueying Yu
JobTitle            School Crossing Guard
BasePay                            293.92
OvertimePay                           0.0
OtherPay                            87.73
Benefits                            39.61
TotalPay                           381.65
TotalPayBenefits                   421.26
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72534, dtype: object)
(72535, Id                                           72536
EmployeeName                         Kevin Johnson
JobTitle            StdntDsgnTrain3, Arch/Eng/Plng
BasePay                                        0.0
OvertimePay                                    0.0
OtherPay                                    388.22
Benefits                                      29.7
TotalPay                                    388.22
TotalPayBenefits                            417.92
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72535, dtype: object)
(72536, Id                               72537
EmployeeName           Audrey Magnusen
JobTitle            Eligibility Worker
BasePay                          380.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         33.48
TotalPay                         380.8
TotalPayBenefits                414.28
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72536, dtype: object)
(72537, Id                                   72538
EmployeeName                   Veda Parker
JobTitle            Public Service Trainee
BasePay                             378.88
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             35.24
TotalPay                            378.88
TotalPayBenefits                    414.12
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72537, dtype: object)
(72538, Id                             72539
EmployeeName        Graciela Arevalo
JobTitle               Special Nurse
BasePay                        291.9
OvertimePay                      0.0
OtherPay                       29.19
Benefits                        92.9
TotalPay                      321.09
TotalPayBenefits              413.99
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72538, dtype: object)
(72539, Id                                         72540
EmployeeName                       Ariana Harris
JobTitle            Public Svc Aide-Public Works
BasePay                                   377.83
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   35.12
TotalPay                                  377.83
TotalPayBenefits                          412.95
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72539, dtype: object)
(72540, Id                          72541
EmployeeName         Chau Kam Lau
JobTitle                Custodian
BasePay                     352.2
OvertimePay                   0.0
OtherPay                    28.16
Benefits                    30.05
TotalPay                   380.36
TotalPayBenefits           410.41
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72540, dtype: object)
(72541, Id                            72542
EmployeeName         Jonathan Singh
JobTitle            PS Aide to Prof
BasePay                      372.25
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      38.09
TotalPay                     372.25
TotalPayBenefits             410.34
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72541, dtype: object)
(72542, Id                                         72543
EmployeeName                      Kimberly Baker
JobTitle            Public Svc Aide-Public Works
BasePay                                   363.65
OvertimePay                                  0.0
OtherPay                                    7.32
Benefits                                    36.4
TotalPay                                  370.97
TotalPayBenefits                          407.37
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72542, dtype: object)
(72543, Id                             72544
EmployeeName            Andrew Cohen
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      400.11
Benefits                         6.8
TotalPay                      400.11
TotalPayBenefits              406.91
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72543, dtype: object)
(72544, Id                              72545
EmployeeName             James Holden
JobTitle            Stage Electrician
BasePay                        376.43
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        29.82
TotalPay                       376.43
TotalPayBenefits               406.25
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72544, dtype: object)
(72545, Id                                          72546
EmployeeName                          Staci White
JobTitle            Assistant Recreation Director
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                   321.19
Benefits                                    83.88
TotalPay                                   321.19
TotalPayBenefits                           405.07
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72545, dtype: object)
(72546, Id                           72547
EmployeeName        Dina Pelvitski
JobTitle             Special Nurse
BasePay                      37.61
OvertimePay                 270.82
OtherPay                      3.76
Benefits                      89.9
TotalPay                    312.19
TotalPayBenefits            402.09
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72546, dtype: object)
(72547, Id                            72548
EmployeeName        Keena Middleton
JobTitle               Junior Clerk
BasePay                       147.7
OvertimePay                  221.55
OtherPay                        0.0
Benefits                      32.28
TotalPay                     369.25
TotalPayBenefits             401.53
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72547, dtype: object)
(72548, Id                                       72549
EmployeeName        Courtney Casavant-O'Connor
JobTitle                        Pool Lifeguard
BasePay                                 372.45
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 29.01
TotalPay                                372.45
TotalPayBenefits                        401.46
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72548, dtype: object)
(72549, Id                                   72550
EmployeeName                  Rashad Owens
JobTitle            Public Service Trainee
BasePay                             367.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             32.39
TotalPay                            367.04
TotalPayBenefits                    399.43
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72549, dtype: object)
(72550, Id                             72551
EmployeeName        George Ehigiator
JobTitle                Junior Clerk
BasePay                        147.7
OvertimePay                   221.55
OtherPay                         0.0
Benefits                       29.16
TotalPay                      369.25
TotalPayBenefits              398.41
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72550, dtype: object)
(72551, Id                                   72552
EmployeeName                 Jose Grijalva
JobTitle            Public Service Trainee
BasePay                             348.16
OvertimePay                            0.0
OtherPay                             13.12
Benefits                             33.38
TotalPay                            361.28
TotalPayBenefits                    394.66
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72551, dtype: object)
(72552, Id                               72553
EmployeeName         Susan Flores-Doud
JobTitle            Testing Technician
BasePay                          361.8
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         31.63
TotalPay                         361.8
TotalPayBenefits                393.43
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72552, dtype: object)
(72553, Id                              72554
EmployeeName             Zenaida Barr
JobTitle            Recreation Leader
BasePay                         348.7
OvertimePay                       0.0
OtherPay                         7.97
Benefits                        34.19
TotalPay                       356.67
TotalPayBenefits               390.86
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72553, dtype: object)
(72554, Id                             72555
EmployeeName            Xiushan Feng
JobTitle            Transit Operator
BasePay                       297.56
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       87.43
TotalPay                      297.56
TotalPayBenefits              384.99
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72554, dtype: object)
(72555, Id                                   72556
EmployeeName                 Rebecca Green
JobTitle            Public Service Trainee
BasePay                             348.16
OvertimePay                            0.0
OtherPay                              4.92
Benefits                             30.96
TotalPay                            353.08
TotalPayBenefits                    384.04
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72555, dtype: object)
(72556, Id                          72557
EmployeeName         Nestor Lopez
JobTitle             Junior Clerk
BasePay                     141.1
OvertimePay                211.65
OtherPay                      0.0
Benefits                    31.01
TotalPay                   352.75
TotalPayBenefits           383.76
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72556, dtype: object)
(72557, Id                           72558
EmployeeName        Gregory Hansen
JobTitle              Junior Clerk
BasePay                      141.1
OvertimePay                 211.65
OtherPay                       0.0
Benefits                     31.01
TotalPay                    352.75
TotalPayBenefits            383.76
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72557, dtype: object)
(72558, Id                              72559
EmployeeName        Angelique Malabed
JobTitle                 Junior Clerk
BasePay                         141.1
OvertimePay                    211.65
OtherPay                          0.0
Benefits                        31.01
TotalPay                       352.75
TotalPayBenefits               383.76
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72558, dtype: object)
(72559, Id                             72560
EmployeeName           Timothy Mayer
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      382.53
Benefits                        0.96
TotalPay                      382.53
TotalPayBenefits              383.49
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72559, dtype: object)
(72560, Id                                         72561
EmployeeName                       Jorgio Castro
JobTitle            Employment & Training Spec 3
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                   301.0
Benefits                                   81.13
TotalPay                                   301.0
TotalPayBenefits                          382.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72560, dtype: object)
(72561, Id                                    72562
EmployeeName                  Lisa Woodward
JobTitle            Media/Security Sys Spec
BasePay                              353.38
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              28.02
TotalPay                             353.38
TotalPayBenefits                      381.4
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72561, dtype: object)
(72562, Id                             72563
EmployeeName        Stacey Hoffmayer
JobTitle               Special Nurse
BasePay                        291.9
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       85.02
TotalPay                       291.9
TotalPayBenefits              376.92
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72562, dtype: object)
(72563, Id                                   72564
EmployeeName                  Gordon Huang
JobTitle            Public Service Trainee
BasePay                             343.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             32.08
TotalPay                            343.04
TotalPayBenefits                    375.12
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72563, dtype: object)
(72564, Id                                   72565
EmployeeName                    Cathy Webb
JobTitle            Public SafetyComm Disp
BasePay                                0.0
OvertimePay                            0.0
OtherPay                            299.19
Benefits                              74.5
TotalPay                            299.19
TotalPayBenefits                    373.69
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72564, dtype: object)
(72565, Id                          72566
EmployeeName        Cynthia Brown
JobTitle            Special Nurse
BasePay                     287.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    85.14
TotalPay                    287.3
TotalPayBenefits           372.44
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72565, dtype: object)
(72566, Id                             72567
EmployeeName            Perry Hollis
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      367.87
Benefits                        0.92
TotalPay                      367.87
TotalPayBenefits              368.79
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72566, dtype: object)
(72567, Id                          72568
EmployeeName           Audrey Jai
JobTitle               Pharmacist
BasePay                    340.59
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    26.97
TotalPay                   340.59
TotalPayBenefits           367.56
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72567, dtype: object)
(72568, Id                          72569
EmployeeName        Jovy Elizarde
JobTitle            Special Nurse
BasePay                     287.3
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    79.89
TotalPay                    287.3
TotalPayBenefits           367.19
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72568, dtype: object)
(72569, Id                           72570
EmployeeName        Lawrence Ratti
JobTitle                Sergeant 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    364.94
Benefits                      0.91
TotalPay                    364.94
TotalPayBenefits            365.85
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72569, dtype: object)
(72570, Id                                   72571
EmployeeName                     Ryan Choy
JobTitle            Public Service Trainee
BasePay                             322.56
OvertimePay                            0.0
OtherPay                             11.48
Benefits                             30.94
TotalPay                            334.04
TotalPayBenefits                    364.98
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72570, dtype: object)
(72571, Id                              72572
EmployeeName                 Jay Chew
JobTitle            Stage Electrician
BasePay                         334.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        29.41
TotalPay                        334.6
TotalPayBenefits               364.01
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72571, dtype: object)
(72572, Id                              72573
EmployeeName          John Boatwright
JobTitle            Stage Electrician
BasePay                         334.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        29.41
TotalPay                        334.6
TotalPayBenefits               364.01
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72572, dtype: object)
(72573, Id                          72574
EmployeeName        Jocelyn Ramos
JobTitle            Special Nurse
BasePay                    247.28
OvertimePay                   0.0
OtherPay                    37.08
Benefits                    76.59
TotalPay                   284.36
TotalPayBenefits           360.95
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72573, dtype: object)
(72574, Id                          72575
EmployeeName          Eva Avelino
JobTitle            Special Nurse
BasePay                    241.19
OvertimePay                   0.0
OtherPay                    39.99
Benefits                    79.22
TotalPay                   281.18
TotalPayBenefits            360.4
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72574, dtype: object)
(72575, Id                           72576
EmployeeName        Andre Fontenot
JobTitle                Sergeant 2
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    359.08
Benefits                       0.9
TotalPay                    359.08
TotalPayBenefits            359.98
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72575, dtype: object)
(72576, Id                                          72577
EmployeeName                          Robert Romo
JobTitle            Library Technical Assistant 1
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                   359.35
Benefits                                      0.0
TotalPay                                   359.35
TotalPayBenefits                           359.35
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72576, dtype: object)
(72577, Id                                       72578
EmployeeName                Alicia Maria Gamez
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  275.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 82.27
TotalPay                                 275.0
TotalPayBenefits                        357.27
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72577, dtype: object)
(72578, Id                              72579
EmployeeName           Melissa Mermin
JobTitle            Recreation Leader
BasePay                        309.38
OvertimePay                       0.0
OtherPay                         18.9
Benefits                         28.7
TotalPay                       328.28
TotalPayBenefits               356.98
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72578, dtype: object)
(72579, Id                           72580
EmployeeName        Whitney Burton
JobTitle             Special Nurse
BasePay                     274.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     80.45
TotalPay                    274.55
TotalPayBenefits             355.0
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72579, dtype: object)
(72580, Id                          72581
EmployeeName            Jody Yuen
JobTitle             Junior Clerk
BasePay                     147.7
OvertimePay                180.01
OtherPay                      0.0
Benefits                    25.89
TotalPay                   327.71
TotalPayBenefits            353.6
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72580, dtype: object)
(72581, Id                                         72582
EmployeeName                       Renaldo Myers
JobTitle            Public Svc Aide-Public Works
BasePay                                   322.06
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   30.96
TotalPay                                  322.06
TotalPayBenefits                          353.02
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72581, dtype: object)
(72582, Id                                         72583
EmployeeName                     Ronald Hill Jr.
JobTitle            Public Svc Aide-Public Works
BasePay                                    311.7
OvertimePay                                  0.0
OtherPay                                    7.32
Benefits                                   33.31
TotalPay                                  319.02
TotalPayBenefits                          352.33
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72582, dtype: object)
(72583, Id                               72584
EmployeeName           Patricia Ortega
JobTitle            Eligibility Worker
BasePay                            0.0
OvertimePay                        0.0
OtherPay                        326.56
Benefits                         24.99
TotalPay                        326.56
TotalPayBenefits                351.55
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72583, dtype: object)
(72584, Id                                       72585
EmployeeName                     Ruth Gravanis
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  325.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 25.72
TotalPay                                 325.0
TotalPayBenefits                        350.72
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72584, dtype: object)
(72585, Id                              72586
EmployeeName               Haya Naser
JobTitle            Recreation Leader
BasePay                        318.93
OvertimePay                       0.0
OtherPay                          3.4
Benefits                        28.33
TotalPay                       322.33
TotalPayBenefits               350.66
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72585, dtype: object)
(72586, Id                                  72587
EmployeeName        Alexandra Dangerfield
JobTitle                Recreation Leader
BasePay                             317.7
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            31.82
TotalPay                            317.7
TotalPayBenefits                   349.52
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72586, dtype: object)
(72587, Id                              72588
EmployeeName              Tiva Samaru
JobTitle            Recreation Leader
BasePay                        320.62
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        28.17
TotalPay                       320.62
TotalPayBenefits               348.79
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72587, dtype: object)
(72588, Id                                      72589
EmployeeName                   Steven Tierney
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                323.05
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                25.68
TotalPay                               323.05
TotalPayBenefits                       348.73
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72588, dtype: object)
(72589, Id                                      72590
EmployeeName                      James Illig
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                323.05
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                25.68
TotalPay                               323.05
TotalPayBenefits                       348.73
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72589, dtype: object)
(72590, Id                                   72591
EmployeeName                  Peter Keller
JobTitle            Public Service Trainee
BasePay                              320.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             27.97
TotalPay                             320.0
TotalPayBenefits                    347.97
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72590, dtype: object)
(72591, Id                             72592
EmployeeName        Deborah Wianecki
JobTitle               Special Nurse
BasePay                       247.27
OvertimePay                      0.0
OtherPay                       24.73
Benefits                       75.91
TotalPay                       272.0
TotalPayBenefits              347.91
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72591, dtype: object)
(72592, Id                             72593
EmployeeName            Darryl Stitt
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      318.23
Benefits                       24.34
TotalPay                      318.23
TotalPayBenefits              342.57
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72592, dtype: object)
(72593, Id                                   72594
EmployeeName                 Roxana Carpio
JobTitle            Patient Care Assistant
BasePay                              313.8
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             27.59
TotalPay                             313.8
TotalPayBenefits                    341.39
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72593, dtype: object)
(72594, Id                               72595
EmployeeName             Kathleen Uong
JobTitle            Testing Technician
BasePay                         313.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                         27.52
TotalPay                        313.02
TotalPayBenefits                340.54
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72594, dtype: object)
(72595, Id                               72596
EmployeeName        Samantha Blanchard
JobTitle                      Gardener
BasePay                          236.0
OvertimePay                        0.0
OtherPay                          2.36
Benefits                        101.97
TotalPay                        238.36
TotalPayBenefits                340.33
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72595, dtype: object)
(72596, Id                          72597
EmployeeName        Janet Allison
JobTitle            Special Nurse
BasePay                    270.25
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    68.36
TotalPay                   270.25
TotalPayBenefits           338.61
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72596, dtype: object)
(72597, Id                                   72598
EmployeeName                  Betty Cheong
JobTitle            Public Service Trainee
BasePay                             302.08
OvertimePay                            0.0
OtherPay                              7.38
Benefits                             28.79
TotalPay                            309.46
TotalPayBenefits                    338.25
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72597, dtype: object)
(72598, Id                                   72599
EmployeeName                Carey Kozuszek
JobTitle            Occupational Therapist
BasePay                                0.0
OvertimePay                            0.0
OtherPay                            313.59
Benefits                             23.99
TotalPay                            313.59
TotalPayBenefits                    337.58
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72598, dtype: object)
(72599, Id                          72600
EmployeeName            John Hyde
JobTitle                Carpenter
BasePay                     312.6
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    24.69
TotalPay                    312.6
TotalPayBenefits           337.29
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72599, dtype: object)
(72600, Id                                   72601
EmployeeName                 Lily Atkinson
JobTitle            Public Service Trainee
BasePay                              307.2
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             29.41
TotalPay                             307.2
TotalPayBenefits                    336.61
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72600, dtype: object)
(72601, Id                               72602
EmployeeName        Saumirah McWoodson
JobTitle             Recreation Leader
BasePay                         308.31
OvertimePay                        0.0
OtherPay                           0.0
Benefits                          27.1
TotalPay                        308.31
TotalPayBenefits                335.41
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72601, dtype: object)
(72602, Id                              72603
EmployeeName        Connie Love-Miles
JobTitle                Special Nurse
BasePay                        143.65
OvertimePay                       0.0
OtherPay                        14.37
Benefits                       174.21
TotalPay                       158.02
TotalPayBenefits               332.23
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72602, dtype: object)
(72603, Id                              72604
EmployeeName        Ashley McClintock
JobTitle                Special Nurse
BasePay                        230.06
OvertimePay                       0.0
OtherPay                        25.71
Benefits                         75.9
TotalPay                       255.77
TotalPayBenefits               331.67
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72603, dtype: object)
(72604, Id                                        72605
EmployeeName                 September Williams
JobTitle            Senior Physician Specialist
BasePay                                     0.0
OvertimePay                                 0.0
OtherPay                                 304.57
Benefits                                   23.3
TotalPay                                 304.57
TotalPayBenefits                         327.87
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72604, dtype: object)
(72605, Id                                       72606
EmployeeName                         Julie Soo
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  300.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 26.29
TotalPay                                 300.0
TotalPayBenefits                        326.29
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72605, dtype: object)
(72606, Id                             72607
EmployeeName             James Adams
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      325.37
Benefits                        0.81
TotalPay                      325.37
TotalPayBenefits              326.18
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72606, dtype: object)
(72607, Id                             72608
EmployeeName          Jeffrey Brogan
JobTitle            Police Officer 2
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      325.37
Benefits                        0.81
TotalPay                      325.37
TotalPayBenefits              326.18
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72607, dtype: object)
(72608, Id                              72609
EmployeeName             Dianne Jones
JobTitle            Recreation Leader
BasePay                        278.44
OvertimePay                       0.0
OtherPay                        20.56
Benefits                        26.29
TotalPay                        299.0
TotalPayBenefits               325.29
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72608, dtype: object)
(72609, Id                                       72610
EmployeeName                    Andrea Shorter
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  300.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 23.76
TotalPay                                 300.0
TotalPayBenefits                        323.76
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72609, dtype: object)
(72610, Id                               72611
EmployeeName         Christa Gallagher
JobTitle            Nurse Practitioner
BasePay                            0.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                         73.25
TotalPay                         250.0
TotalPayBenefits                323.25
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72610, dtype: object)
(72611, Id                              72612
EmployeeName         Uwe Willenbacher
JobTitle            Stage Electrician
BasePay                         297.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        25.97
TotalPay                        297.0
TotalPayBenefits               322.97
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72611, dtype: object)
(72612, Id                                        72613
EmployeeName                   Michael Humphrey
JobTitle            Watershed Worker (Seasonal)
BasePay                                   293.4
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                  25.79
TotalPay                                  293.4
TotalPayBenefits                         319.19
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72612, dtype: object)
(72613, Id                             72614
EmployeeName             Mario Machi
JobTitle            Police Officer 2
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      318.04
Benefits                         0.8
TotalPay                      318.04
TotalPayBenefits              318.84
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72613, dtype: object)
(72614, Id                           72615
EmployeeName        Joseph Dapitan
JobTitle                    Porter
BasePay                        0.0
OvertimePay                 156.57
OtherPay                    132.91
Benefits                     22.62
TotalPay                    289.48
TotalPayBenefits             312.1
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72614, dtype: object)
(72615, Id                              72616
EmployeeName              Chrisy Tran
JobTitle            Recreation Leader
BasePay                        277.64
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        33.88
TotalPay                       277.64
TotalPayBenefits               311.52
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72615, dtype: object)
(72616, Id                             72617
EmployeeName            Naomi Marcus
JobTitle            Special Examiner
BasePay                       284.13
OvertimePay                      0.0
OtherPay                         0.0
Benefits                        22.5
TotalPay                      284.13
TotalPayBenefits              306.63
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72616, dtype: object)
(72617, Id                              72618
EmployeeName          Khadija Dickens
JobTitle            Recreation Leader
BasePay                         273.0
OvertimePay                       0.0
OtherPay                         5.85
Benefits                        24.37
TotalPay                       278.85
TotalPayBenefits               303.22
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72617, dtype: object)
(72618, Id                                   72619
EmployeeName               Lidoshka Guzman
JobTitle            Public Service Trainee
BasePay                             279.86
OvertimePay                            0.0
OtherPay                              0.82
Benefits                             21.73
TotalPay                            280.68
TotalPayBenefits                    302.41
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72618, dtype: object)
(72619, Id                                       72620
EmployeeName                      Brooks Beard
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  280.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 22.19
TotalPay                                 280.0
TotalPayBenefits                        302.19
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72619, dtype: object)
(72620, Id                              72621
EmployeeName           Carlos Ramirez
JobTitle            Recreation Leader
BasePay                        276.42
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        24.31
TotalPay                       276.42
TotalPayBenefits               300.73
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72620, dtype: object)
(72621, Id                                     72622
EmployeeName                    Louise Hines
JobTitle            Commissioner No Benefits
BasePay                                275.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               24.11
TotalPay                               275.0
TotalPayBenefits                      299.11
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72621, dtype: object)
(72622, Id                                     72623
EmployeeName               Aimee Susan Brown
JobTitle            Commissioner No Benefits
BasePay                                276.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               22.02
TotalPay                               276.9
TotalPayBenefits                      298.92
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72622, dtype: object)
(72623, Id                                     72624
EmployeeName                    Brian Browne
JobTitle            Commissioner No Benefits
BasePay                                276.9
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               22.02
TotalPay                               276.9
TotalPayBenefits                      298.92
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72623, dtype: object)
(72624, Id                                      72625
EmployeeName                     Ana Castillo
JobTitle            Psychiatric Social Worker
BasePay                                 261.4
OvertimePay                               0.0
OtherPay                                13.07
Benefits                                24.13
TotalPay                               274.47
TotalPayBenefits                        298.6
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72624, dtype: object)
(72625, Id                                     72626
EmployeeName              Anna Maria Pierini
JobTitle            Commissioner No Benefits
BasePay                                275.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               21.79
TotalPay                               275.0
TotalPayBenefits                      296.79
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72625, dtype: object)
(72626, Id                                   72627
EmployeeName                Da'Iyah Taylor
JobTitle            Public Service Trainee
BasePay                              256.0
OvertimePay                            0.0
OtherPay                              8.92
Benefits                             28.45
TotalPay                            264.92
TotalPayBenefits                    293.37
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72626, dtype: object)
(72627, Id                            72628
EmployeeName        Donald Shockley
JobTitle                Inspector 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     291.66
Benefits                       0.73
TotalPay                     291.66
TotalPayBenefits             292.39
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72627, dtype: object)
(72628, Id                             72629
EmployeeName           Edward Otoole
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      291.66
Benefits                        0.73
TotalPay                      291.66
TotalPayBenefits              292.39
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72628, dtype: object)
(72629, Id                             72630
EmployeeName           Jerry Wiseman
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      270.11
Benefits                       20.67
TotalPay                      270.11
TotalPayBenefits              290.78
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72629, dtype: object)
(72630, Id                          72631
EmployeeName           Judy Busch
JobTitle            Special Nurse
BasePay                    226.67
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    63.34
TotalPay                   226.67
TotalPayBenefits           290.01
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72630, dtype: object)
(72631, Id                             72632
EmployeeName          Gerald Ramirez
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       285.8
Benefits                        0.71
TotalPay                       285.8
TotalPayBenefits              286.51
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72631, dtype: object)
(72632, Id                          72633
EmployeeName            Aimee Tom
JobTitle            Special Nurse
BasePay                    209.74
OvertimePay                   0.0
OtherPay                    10.62
Benefits                    65.21
TotalPay                   220.36
TotalPayBenefits           285.57
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72632, dtype: object)
(72633, Id                                       72634
EmployeeName                      Jorge Bernal
JobTitle            IS Business Analyst-Senior
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                227.06
Benefits                                 58.15
TotalPay                                227.06
TotalPayBenefits                        285.21
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72633, dtype: object)
(72634, Id                            72635
EmployeeName           Rebecca Palm
JobTitle            PS Aide to Prof
BasePay                      260.58
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      22.78
TotalPay                     260.58
TotalPayBenefits             283.36
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72634, dtype: object)
(72635, Id                                   72636
EmployeeName              Chrystal Lindsey
JobTitle            Public Service Trainee
BasePay                              256.0
OvertimePay                            0.0
OtherPay                              3.69
Benefits                             22.76
TotalPay                            259.69
TotalPayBenefits                    282.45
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72635, dtype: object)
(72636, Id                                   72637
EmployeeName                 Carmel Turner
JobTitle            Public Service Trainee
BasePay                             245.76
OvertimePay                            0.0
OtherPay                              7.38
Benefits                             26.25
TotalPay                            253.14
TotalPayBenefits                    279.39
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72636, dtype: object)
(72637, Id                          72638
EmployeeName          James Zerga
JobTitle              Inspector 3
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   274.07
Benefits                     0.69
TotalPay                   274.07
TotalPayBenefits           274.76
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72637, dtype: object)
(72638, Id                              72639
EmployeeName         Robyn Majdrakoff
JobTitle            Recreation Leader
BasePay                        213.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        59.79
TotalPay                       213.53
TotalPayBenefits               273.32
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72638, dtype: object)
(72639, Id                                       72640
EmployeeName                    Ching Ting Wan
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  250.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 21.93
TotalPay                                 250.0
TotalPayBenefits                        271.93
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72639, dtype: object)
(72640, Id                                     72641
EmployeeName                    Leon Schmidt
JobTitle            Commissioner No Benefits
BasePay                                250.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               21.91
TotalPay                               250.0
TotalPayBenefits                      271.91
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72640, dtype: object)
(72641, Id                                       72642
EmployeeName                       Dirk Beijen
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  250.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 19.83
TotalPay                                 250.0
TotalPayBenefits                        269.83
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72641, dtype: object)
(72642, Id                                     72643
EmployeeName                 Catherine Russo
JobTitle            Commissioner No Benefits
BasePay                                250.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               19.82
TotalPay                               250.0
TotalPayBenefits                      269.82
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72642, dtype: object)
(72643, Id                                     72644
EmployeeName                      Vera Haile
JobTitle            Commissioner No Benefits
BasePay                                250.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               19.81
TotalPay                               250.0
TotalPayBenefits                      269.81
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72643, dtype: object)
(72644, Id                                     72645
EmployeeName                   Marian Fields
JobTitle            Commissioner No Benefits
BasePay                                250.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               19.81
TotalPay                               250.0
TotalPayBenefits                      269.81
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72644, dtype: object)
(72645, Id                                       72646
EmployeeName                      Johanna Wald
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  250.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 19.81
TotalPay                                 250.0
TotalPayBenefits                        269.81
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72645, dtype: object)
(72646, Id                                       72647
EmployeeName                Kathleen Gulbengay
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  250.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  19.8
TotalPay                                 250.0
TotalPayBenefits                         269.8
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72646, dtype: object)
(72647, Id                                          72648
EmployeeName                   Nicholas Peregrino
JobTitle            Med Examiner's Investigator I
BasePay                                     226.4
OvertimePay                                   0.0
OtherPay                                    15.85
Benefits                                    21.29
TotalPay                                   242.25
TotalPayBenefits                           263.54
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72647, dtype: object)
(72648, Id                              72649
EmployeeName              Joseph Heid
JobTitle            Stage Electrician
BasePay                         240.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        21.17
TotalPay                        240.8
TotalPayBenefits               261.97
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72648, dtype: object)
(72649, Id                              72650
EmployeeName             Zachary Bron
JobTitle            Recreation Leader
BasePay                         221.0
OvertimePay                       0.0
OtherPay                        17.68
Benefits                        20.98
TotalPay                       238.68
TotalPayBenefits               259.66
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72649, dtype: object)
(72650, Id                                         72651
EmployeeName                          Jack Chang
JobTitle            Materials Testing Technician
BasePay                                   240.02
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   19.08
TotalPay                                  240.02
TotalPayBenefits                           259.1
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72650, dtype: object)
(72651, Id                             72652
EmployeeName             James McCoy
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      253.55
Benefits                        4.31
TotalPay                      253.55
TotalPayBenefits              257.86
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72651, dtype: object)
(72652, Id                              72653
EmployeeName           Danny Thompson
JobTitle            Transit Manager 2
BasePay                           0.0
OvertimePay                       0.0
OtherPay                       236.98
Benefits                        18.13
TotalPay                       236.98
TotalPayBenefits               255.11
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72652, dtype: object)
(72653, Id                          72654
EmployeeName           Amy Murphy
JobTitle            Special Nurse
BasePay                    196.61
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    58.48
TotalPay                   196.61
TotalPayBenefits           255.09
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72653, dtype: object)
(72654, Id                                         72655
EmployeeName                 Omar Gonzalez Valle
JobTitle            Public Svc Aide-Public Works
BasePay                                   233.78
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   20.43
TotalPay                                  233.78
TotalPayBenefits                          254.21
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72654, dtype: object)
(72655, Id                              72656
EmployeeName          Tricia Martinez
JobTitle            Recreation Leader
BasePay                        231.32
OvertimePay                       0.0
OtherPay                         1.17
Benefits                        20.32
TotalPay                       232.49
TotalPayBenefits               252.81
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72655, dtype: object)
(72656, Id                               72657
EmployeeName                Andee Rubi
JobTitle            Sheet Metal Worker
BasePay                            0.0
OvertimePay                        0.0
OtherPay                        234.25
Benefits                         17.92
TotalPay                        234.25
TotalPayBenefits                252.17
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72656, dtype: object)
(72657, Id                               72658
EmployeeName              Ila Bentzman
JobTitle            Nurse Practitioner
BasePay                            0.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           0.0
TotalPay                         250.0
TotalPayBenefits                 250.0
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72657, dtype: object)
(72658, Id                               72659
EmployeeName             Susan Langdon
JobTitle            Nurse Practitioner
BasePay                            0.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                           0.0
TotalPay                         250.0
TotalPayBenefits                 250.0
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72658, dtype: object)
(72659, Id                           72660
EmployeeName        James Guerrero
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    247.69
Benefits                      0.62
TotalPay                    247.69
TotalPayBenefits            248.31
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72659, dtype: object)
(72660, Id                              72661
EmployeeName            Jessica Chang
JobTitle            Recreation Leader
BasePay                         227.9
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        20.04
TotalPay                        227.9
TotalPayBenefits               247.94
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72660, dtype: object)
(72661, Id                           72662
EmployeeName        Patricia Skala
JobTitle                Manager VI
BasePay                     225.71
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     19.84
TotalPay                    225.71
TotalPayBenefits            245.55
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72661, dtype: object)
(72662, Id                              72663
EmployeeName            David Azucena
JobTitle            Recreation Leader
BasePay                         221.0
OvertimePay                       0.0
OtherPay                         4.43
Benefits                        19.81
TotalPay                       225.43
TotalPayBenefits               245.24
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72662, dtype: object)
(72663, Id                                       72664
EmployeeName                       Susan Jones
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  225.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 19.74
TotalPay                                 225.0
TotalPayBenefits                        244.74
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72663, dtype: object)
(72664, Id                                       72665
EmployeeName                   Rebecca Woodson
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  225.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 17.84
TotalPay                                 225.0
TotalPayBenefits                        242.84
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72664, dtype: object)
(72665, Id                                   72666
EmployeeName               Leiyoni Boyland
JobTitle            Public Service Trainee
BasePay                             215.04
OvertimePay                            0.0
OtherPay                               4.1
Benefits                             23.32
TotalPay                            219.14
TotalPayBenefits                    242.46
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72665, dtype: object)
(72666, Id                             72667
EmployeeName        Francisco Mendez
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      240.36
Benefits                         0.6
TotalPay                      240.36
TotalPayBenefits              240.96
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72666, dtype: object)
(72667, Id                             72668
EmployeeName             Winfred Jew
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       238.9
Benefits                         0.6
TotalPay                       238.9
TotalPayBenefits               239.5
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72667, dtype: object)
(72668, Id                                       72669
EmployeeName                     Mark Ashworth
JobTitle            Asst Materials Coordinator
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                220.79
Benefits                                 16.89
TotalPay                                220.79
TotalPayBenefits                        237.68
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72668, dtype: object)
(72669, Id                             72670
EmployeeName              James Gaan
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       234.5
Benefits                        0.59
TotalPay                       234.5
TotalPayBenefits              235.09
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72669, dtype: object)
(72670, Id                             72671
EmployeeName             Kenneth Lui
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      233.03
Benefits                        0.58
TotalPay                      233.03
TotalPayBenefits              233.61
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72670, dtype: object)
(72671, Id                                   72672
EmployeeName                  Willie Minor
JobTitle            Public Service Trainee
BasePay                             209.92
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             22.79
TotalPay                            209.92
TotalPayBenefits                    232.71
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72671, dtype: object)
(72672, Id                                      72673
EmployeeName                       Nneka Umeh
JobTitle            Licensed Vocational Nurse
BasePay                                   0.0
OvertimePay                               0.0
OtherPay                                212.0
Benefits                                18.63
TotalPay                                212.0
TotalPayBenefits                       230.63
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72672, dtype: object)
(72673, Id                              72674
EmployeeName           Veronica Lopez
JobTitle            Personnel Analyst
BasePay                           0.0
OvertimePay                       0.0
OtherPay                       181.29
Benefits                        47.33
TotalPay                       181.29
TotalPayBenefits               228.62
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72673, dtype: object)
(72674, Id                                   72675
EmployeeName                   Hirut Simie
JobTitle            Public Service Trainee
BasePay                              210.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             18.46
TotalPay                             210.0
TotalPayBenefits                    228.46
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72674, dtype: object)
(72675, Id                                         72676
EmployeeName                       Cynthia Davis
JobTitle            Public Svc Aide-Public Works
BasePay                                    207.8
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   18.17
TotalPay                                   207.8
TotalPayBenefits                          225.97
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72675, dtype: object)
(72676, Id                            72677
EmployeeName        Trevor Greenlaw
JobTitle             Pool Lifeguard
BasePay                       207.4
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      18.16
TotalPay                      207.4
TotalPayBenefits             225.56
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72676, dtype: object)
(72677, Id                             72678
EmployeeName            David Wright
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      221.31
Benefits                        0.55
TotalPay                      221.31
TotalPayBenefits              221.86
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72677, dtype: object)
(72678, Id                                         72679
EmployeeName                     Monique Douglas
JobTitle            Public Svc Aide-Public Works
BasePay                                    198.2
OvertimePay                                  0.0
OtherPay                                    4.64
Benefits                                   17.83
TotalPay                                  202.84
TotalPayBenefits                          220.67
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72678, dtype: object)
(72679, Id                                         72680
EmployeeName                  Francis Donner III
JobTitle            Public Svc Aide-Public Works
BasePay                                    198.2
OvertimePay                                  0.0
OtherPay                                    4.64
Benefits                                   17.82
TotalPay                                  202.84
TotalPayBenefits                          220.66
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72679, dtype: object)
(72680, Id                          72681
EmployeeName           Wing Ki Yu
JobTitle              Dental Aide
BasePay                     200.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    17.66
TotalPay                    200.9
TotalPayBenefits           218.56
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72680, dtype: object)
(72681, Id                                       72682
EmployeeName                      Julian Chang
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  200.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 17.54
TotalPay                                 200.0
TotalPayBenefits                        217.54
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72681, dtype: object)
(72682, Id                                       72683
EmployeeName                Heather Stephenson
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  200.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  17.5
TotalPay                                 200.0
TotalPayBenefits                         217.5
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72682, dtype: object)
(72683, Id                          72684
EmployeeName          Nadim Totah
JobTitle              Inspector 3
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   216.91
Benefits                     0.54
TotalPay                   216.91
TotalPayBenefits           217.45
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72683, dtype: object)
(72684, Id                              72685
EmployeeName        Serguei Kovalenko
JobTitle             Transit Operator
BasePay                        176.68
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        39.68
TotalPay                       176.68
TotalPayBenefits               216.36
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72684, dtype: object)
(72685, Id                            72686
EmployeeName        Steven Shanahan
JobTitle                 Sergeant 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     215.45
Benefits                       0.54
TotalPay                     215.45
TotalPayBenefits             215.99
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72685, dtype: object)
(72686, Id                             72687
EmployeeName             John Propst
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      215.45
Benefits                        0.54
TotalPay                      215.45
TotalPayBenefits              215.99
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72686, dtype: object)
(72687, Id                                       72688
EmployeeName                Katharine Albright
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  200.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 15.86
TotalPay                                 200.0
TotalPayBenefits                        215.86
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72687, dtype: object)
(72688, Id                                     72689
EmployeeName                Sharon Eberhardt
JobTitle            Commissioner No Benefits
BasePay                                200.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               15.85
TotalPay                               200.0
TotalPayBenefits                      215.85
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72688, dtype: object)
(72689, Id                                     72690
EmployeeName                 Walter DeVaughn
JobTitle            Commissioner No Benefits
BasePay                                200.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               15.85
TotalPay                               200.0
TotalPayBenefits                      215.85
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72689, dtype: object)
(72690, Id                                         72691
EmployeeName                        Tania Walker
JobTitle            Public Svc Aide-Public Works
BasePay                                    198.2
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   17.42
TotalPay                                   198.2
TotalPayBenefits                          215.62
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72690, dtype: object)
(72691, Id                                72692
EmployeeName                  Uyen Vong
JobTitle            Swimming Instructor
BasePay                          194.75
OvertimePay                         0.0
OtherPay                           4.56
Benefits                          15.77
TotalPay                         199.31
TotalPayBenefits                 215.08
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72691, dtype: object)
(72692, Id                           72693
EmployeeName           Vivian Liou
JobTitle            Accountant III
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    198.07
Benefits                     15.15
TotalPay                    198.07
TotalPayBenefits            213.22
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72692, dtype: object)
(72693, Id                              72694
EmployeeName              Yienfia Liu
JobTitle            Recreation Leader
BasePay                        193.61
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        16.92
TotalPay                       193.61
TotalPayBenefits               210.53
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72693, dtype: object)
(72694, Id                              72695
EmployeeName            Sienna Powell
JobTitle            Recreation Leader
BasePay                        181.26
OvertimePay                       0.0
OtherPay                         10.1
Benefits                        16.72
TotalPay                       191.36
TotalPayBenefits               208.08
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72694, dtype: object)
(72695, Id                                72696
EmployeeName            Phillip Frantin
JobTitle            Automotive Mechanic
BasePay                             0.0
OvertimePay                         0.0
OtherPay                         191.09
Benefits                          14.62
TotalPay                         191.09
TotalPayBenefits                 205.71
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72695, dtype: object)
(72696, Id                            72697
EmployeeName          Dannie Westom
JobTitle            General Laborer
BasePay                       187.6
OvertimePay                     0.0
OtherPay                        0.0
Benefits                       16.5
TotalPay                      187.6
TotalPayBenefits              204.1
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72696, dtype: object)
(72697, Id                            72698
EmployeeName             Kevin Shea
JobTitle            Utility Plumber
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     187.55
Benefits                      14.35
TotalPay                     187.55
TotalPayBenefits              201.9
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72697, dtype: object)
(72698, Id                                         72699
EmployeeName                   Oscar Buitrago Jr
JobTitle            Public Svc Aide-Public Works
BasePay                                   181.83
OvertimePay                                  0.0
OtherPay                                    2.44
Benefits                                   16.11
TotalPay                                  184.27
TotalPayBenefits                          200.38
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72698, dtype: object)
(72699, Id                              72700
EmployeeName               Angela Lee
JobTitle            Recreation Leader
BasePay                        179.57
OvertimePay                       0.0
OtherPay                         4.42
Benefits                        16.17
TotalPay                       183.99
TotalPayBenefits               200.16
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72699, dtype: object)
(72700, Id                              72701
EmployeeName                Jason Lam
JobTitle            Recreation Leader
BasePay                        183.28
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        16.11
TotalPay                       183.28
TotalPayBenefits               199.39
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72700, dtype: object)
(72701, Id                            72702
EmployeeName        Sharonda Powell
JobTitle               Junior Clerk
BasePay                      184.63
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      14.59
TotalPay                     184.63
TotalPayBenefits             199.22
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72701, dtype: object)
(72702, Id                             72703
EmployeeName          Robert Glembot
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      197.86
Benefits                        0.49
TotalPay                      197.86
TotalPayBenefits              198.35
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72702, dtype: object)
(72703, Id                               72704
EmployeeName            James Williams
JobTitle            Transit Supervisor
BasePay                            0.0
OvertimePay                        0.0
OtherPay                        183.74
Benefits                         14.05
TotalPay                        183.74
TotalPayBenefits                197.79
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72703, dtype: object)
(72704, Id                             72705
EmployeeName          Lorin Frierson
JobTitle            Transit Operator
BasePay                       148.78
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       46.28
TotalPay                      148.78
TotalPayBenefits              195.06
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72704, dtype: object)
(72705, Id                           72706
EmployeeName               Eric Ow
JobTitle            Pool Lifeguard
BasePay                     177.79
OvertimePay                    0.0
OtherPay                       0.0
Benefits                     14.13
TotalPay                    177.79
TotalPayBenefits            191.92
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72705, dtype: object)
(72706, Id                                       72707
EmployeeName                    Rebecca Prowda
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  175.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 15.35
TotalPay                                 175.0
TotalPayBenefits                        190.35
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72706, dtype: object)
(72707, Id                                       72708
EmployeeName               Bettye Jean Hammond
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  175.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  15.3
TotalPay                                 175.0
TotalPayBenefits                         190.3
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72707, dtype: object)
(72708, Id                             72709
EmployeeName          Lawrence Frost
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      189.06
Benefits                        0.47
TotalPay                      189.06
TotalPayBenefits              189.53
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72708, dtype: object)
(72709, Id                                       72710
EmployeeName                        Richard Ow
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  175.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 13.89
TotalPay                                 175.0
TotalPayBenefits                        188.89
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72709, dtype: object)
(72710, Id                                       72711
EmployeeName                    Gustavo Serina
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  175.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 13.89
TotalPay                                 175.0
TotalPayBenefits                        188.89
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72710, dtype: object)
(72711, Id                                       72712
EmployeeName                        Edna James
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  175.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 13.89
TotalPay                                 175.0
TotalPayBenefits                        188.89
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72711, dtype: object)
(72712, Id                                   72713
EmployeeName                  Diana Murphy
JobTitle            Public Service Trainee
BasePay                              171.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             15.09
TotalPay                             171.5
TotalPayBenefits                    186.59
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72712, dtype: object)
(72713, Id                                        72714
EmployeeName                       Pamela Louie
JobTitle            Senior Water Services Clerk
BasePay                                     0.0
OvertimePay                                 0.0
OtherPay                                 170.67
Benefits                                  13.05
TotalPay                                 170.67
TotalPayBenefits                         183.72
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72713, dtype: object)
(72714, Id                           72715
EmployeeName        Lynne Atkinson
JobTitle               Inspector 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    181.74
Benefits                      0.45
TotalPay                    181.74
TotalPayBenefits            182.19
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72714, dtype: object)
(72715, Id                                   72716
EmployeeName                Spencer Nemetz
JobTitle            Public Service Trainee
BasePay                             163.84
OvertimePay                            0.0
OtherPay                              1.64
Benefits                             14.47
TotalPay                            165.48
TotalPayBenefits                    179.95
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72715, dtype: object)
(72716, Id                            72717
EmployeeName        Jeremiah Morgan
JobTitle                 Sergeant 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     177.34
Benefits                       0.44
TotalPay                     177.34
TotalPayBenefits             177.78
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72716, dtype: object)
(72717, Id                             72718
EmployeeName         Eugene Lukichev
JobTitle            Special Examiner
BasePay                       162.44
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       14.28
TotalPay                      162.44
TotalPayBenefits              176.72
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72717, dtype: object)
(72718, Id                              72719
EmployeeName                 Jon Goff
JobTitle            Recreation Leader
BasePay                         161.0
OvertimePay                       0.0
OtherPay                         1.29
Benefits                        14.27
TotalPay                       162.29
TotalPayBenefits               176.56
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72718, dtype: object)
(72719, Id                                         72720
EmployeeName                        Andre Thomas
JobTitle            Public Svc Aide-Public Works
BasePay                                   155.85
OvertimePay                                  0.0
OtherPay                                    2.44
Benefits                                   13.84
TotalPay                                  158.29
TotalPayBenefits                          172.13
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72719, dtype: object)
(72720, Id                           72721
EmployeeName            Sean Welch
JobTitle            Pool Lifeguard
BasePay                     153.55
OvertimePay                    0.0
OtherPay                      3.88
Benefits                     13.77
TotalPay                    157.43
TotalPayBenefits             171.2
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72720, dtype: object)
(72721, Id                                         72722
EmployeeName                    Christine Pierce
JobTitle            Public Svc Aide-Public Works
BasePay                                   155.85
OvertimePay                                  0.0
OtherPay                                    2.44
Benefits                                   12.51
TotalPay                                  158.29
TotalPayBenefits                           170.8
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72721, dtype: object)
(72722, Id                              72723
EmployeeName           Evontay Watson
JobTitle            Recreation Leader
BasePay                        149.78
OvertimePay                       0.0
OtherPay                         5.26
Benefits                        13.56
TotalPay                       155.04
TotalPayBenefits                168.6
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72722, dtype: object)
(72723, Id                                          72724
EmployeeName                       Richard Seibel
JobTitle            Statnry Eng Water Treat Plant
BasePay                                       0.0
OvertimePay                                   0.0
OtherPay                                   145.85
Benefits                                    20.22
TotalPay                                   145.85
TotalPayBenefits                           166.07
Year                                         2012
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 72723, dtype: object)
(72724, Id                                  72725
EmployeeName                Edward Gonder
JobTitle            Deputy Court Clerk II
BasePay                               0.0
OvertimePay                           0.0
OtherPay                           154.23
Benefits                             11.8
TotalPay                           154.23
TotalPayBenefits                   166.03
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72724, dtype: object)
(72725, Id                               72726
EmployeeName        Michelle Javrotsky
JobTitle                 Special Nurse
BasePay                         116.34
OvertimePay                        0.0
OtherPay                         11.64
Benefits                         37.64
TotalPay                        127.98
TotalPayBenefits                165.62
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72725, dtype: object)
(72726, Id                              72727
EmployeeName           Kerry Phillips
JobTitle            Recreation Leader
BasePay                        150.41
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        13.15
TotalPay                       150.41
TotalPayBenefits               163.56
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72726, dtype: object)
(72727, Id                                       72728
EmployeeName                 Stephanie Simmons
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 13.16
TotalPay                                 150.0
TotalPayBenefits                        163.16
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72727, dtype: object)
(72728, Id                                     72729
EmployeeName                        Ken Prag
JobTitle            Commissioner No Benefits
BasePay                                150.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               13.14
TotalPay                               150.0
TotalPayBenefits                      163.14
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72728, dtype: object)
(72729, Id                                       72730
EmployeeName                          Alan Mok
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 13.13
TotalPay                                 150.0
TotalPayBenefits                        163.13
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72729, dtype: object)
(72730, Id                                     72731
EmployeeName                   Elinore Lurie
JobTitle            Commissioner No Benefits
BasePay                                150.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               13.11
TotalPay                               150.0
TotalPayBenefits                      163.11
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72730, dtype: object)
(72731, Id                                   72732
EmployeeName                  Scott Eugene
JobTitle            Public Service Trainee
BasePay                             143.36
OvertimePay                            0.0
OtherPay                              5.74
Benefits                             13.04
TotalPay                             149.1
TotalPayBenefits                    162.14
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72731, dtype: object)
(72732, Id                                       72733
EmployeeName                       Kendall Goh
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 11.93
TotalPay                                 150.0
TotalPayBenefits                        161.93
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72732, dtype: object)
(72733, Id                              72734
EmployeeName               Sharon Lee
JobTitle            Recreation Leader
BasePay                        148.84
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        13.08
TotalPay                       148.84
TotalPayBenefits               161.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72733, dtype: object)
(72734, Id                              72735
EmployeeName          Theresa Navarro
JobTitle            Recreation Leader
BasePay                        148.84
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        13.08
TotalPay                       148.84
TotalPayBenefits               161.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72734, dtype: object)
(72735, Id                                       72736
EmployeeName                   Joseph Arellano
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 11.91
TotalPay                                 150.0
TotalPayBenefits                        161.91
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72735, dtype: object)
(72736, Id                                     72737
EmployeeName                 Anne Kirueshkin
JobTitle            Commissioner No Benefits
BasePay                                150.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               11.89
TotalPay                               150.0
TotalPayBenefits                      161.89
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72736, dtype: object)
(72737, Id                                     72738
EmployeeName             Alexander MacDonald
JobTitle            Commissioner No Benefits
BasePay                                150.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                               11.88
TotalPay                               150.0
TotalPayBenefits                      161.88
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72737, dtype: object)
(72738, Id                                       72739
EmployeeName                    Matthew Tuchow
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 11.88
TotalPay                                 150.0
TotalPayBenefits                        161.88
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72738, dtype: object)
(72739, Id                                       72740
EmployeeName                       Angelo King
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 11.88
TotalPay                                 150.0
TotalPayBenefits                        161.88
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72739, dtype: object)
(72740, Id                                       72741
EmployeeName                       Joshua Arce
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  150.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 11.86
TotalPay                                 150.0
TotalPayBenefits                        161.86
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72740, dtype: object)
(72741, Id                          72742
EmployeeName          Jeremy Beam
JobTitle             Junior Clerk
BasePay                     147.7
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    12.91
TotalPay                    147.7
TotalPayBenefits           160.61
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72741, dtype: object)
(72742, Id                                72743
EmployeeName           Alexandria Scott
JobTitle            Swimming Instructor
BasePay                          118.75
OvertimePay                         0.0
OtherPay                           6.46
Benefits                          33.95
TotalPay                         125.21
TotalPayBenefits                 159.16
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72742, dtype: object)
(72743, Id                              72744
EmployeeName            Ulises Olvera
JobTitle            Recreation Leader
BasePay                        146.13
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        12.78
TotalPay                       146.13
TotalPayBenefits               158.91
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72743, dtype: object)
(72744, Id                                   72745
EmployeeName                     Nala Lake
JobTitle            Public Service Trainee
BasePay                             143.36
OvertimePay                            0.0
OtherPay                              2.46
Benefits                             12.75
TotalPay                            145.82
TotalPayBenefits                    158.57
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72744, dtype: object)
(72745, Id                             72746
EmployeeName          Glynder Dennis
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      146.12
Benefits                       11.18
TotalPay                      146.12
TotalPayBenefits               157.3
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72745, dtype: object)
(72746, Id                          72747
EmployeeName          Linda Hofer
JobTitle            Special Nurse
BasePay                    107.74
OvertimePay                   0.0
OtherPay                    10.77
Benefits                    36.71
TotalPay                   118.51
TotalPayBenefits           155.22
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72746, dtype: object)
(72747, Id                          72748
EmployeeName            Hong Shan
JobTitle            Special Nurse
BasePay                    109.46
OvertimePay                   0.0
OtherPay                    10.95
Benefits                    34.08
TotalPay                   120.41
TotalPayBenefits           154.49
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72747, dtype: object)
(72748, Id                                   72749
EmployeeName                    Alice Niue
JobTitle            Public Service Trainee
BasePay                             138.24
OvertimePay                            0.0
OtherPay                              3.69
Benefits                             12.41
TotalPay                            141.93
TotalPayBenefits                    154.34
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72748, dtype: object)
(72749, Id                              72750
EmployeeName           Natalie Morris
JobTitle            Recreation Leader
BasePay                         131.2
OvertimePay                       0.0
OtherPay                          7.7
Benefits                        12.21
TotalPay                        138.9
TotalPayBenefits               151.11
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72749, dtype: object)
(72750, Id                                      72751
EmployeeName                     Katina Britt
JobTitle            Public Service Aide-Admin
BasePay                                 135.7
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                11.87
TotalPay                                135.7
TotalPayBenefits                       147.57
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72750, dtype: object)
(72751, Id                           72752
EmployeeName        Nicholas Allen
JobTitle                Sergeant 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    146.56
Benefits                      0.37
TotalPay                    146.56
TotalPayBenefits            146.93
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72751, dtype: object)
(72752, Id                                72753
EmployeeName             Jonathan Riley
JobTitle            Swimming Instructor
BasePay                          134.66
OvertimePay                         0.0
OtherPay                            0.0
Benefits                          11.84
TotalPay                         134.66
TotalPayBenefits                  146.5
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72752, dtype: object)
(72753, Id                              72754
EmployeeName          Daniella Rivera
JobTitle            Recreation Leader
BasePay                        131.51
OvertimePay                       0.0
OtherPay                         1.17
Benefits                        11.61
TotalPay                       132.68
TotalPayBenefits               144.29
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72753, dtype: object)
(72754, Id                              72755
EmployeeName            Stetson Hines
JobTitle            Recreation Leader
BasePay                        127.51
OvertimePay                       0.0
OtherPay                          5.1
Benefits                        11.66
TotalPay                       132.61
TotalPayBenefits               144.27
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72754, dtype: object)
(72755, Id                                         72756
EmployeeName                      Jesse Armstead
JobTitle            Public Svc Aide-Public Works
BasePay                                   129.88
OvertimePay                                  0.0
OtherPay                                    0.81
Benefits                                   11.43
TotalPay                                  130.69
TotalPayBenefits                          142.12
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72755, dtype: object)
(72756, Id                                    72757
EmployeeName                  Hamilton Quan
JobTitle            PS Aide Health Services
BasePay                               130.1
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              11.44
TotalPay                              130.1
TotalPayBenefits                     141.54
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72756, dtype: object)
(72757, Id                                         72758
EmployeeName                    Armando Balinton
JobTitle            Public Svc Aide-Public Works
BasePay                                   129.88
OvertimePay                                  0.0
OtherPay                                    0.81
Benefits                                   10.33
TotalPay                                  130.69
TotalPayBenefits                          141.02
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72757, dtype: object)
(72758, Id                                         72759
EmployeeName                  Hattie Finn-Carter
JobTitle            Stationary Eng, Sewage Plant
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                  130.86
Benefits                                   10.01
TotalPay                                  130.86
TotalPayBenefits                          140.87
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72758, dtype: object)
(72759, Id                                     72760
EmployeeName                    Diane Parker
JobTitle            Public Relations Officer
BasePay                                  0.0
OvertimePay                              0.0
OtherPay                              130.43
Benefits                                9.98
TotalPay                              130.43
TotalPayBenefits                      140.41
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72759, dtype: object)
(72760, Id                                    72761
EmployeeName                Natalia Altinay
JobTitle            PS Aide Health Services
BasePay                               129.1
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              11.27
TotalPay                              129.1
TotalPayBenefits                     140.37
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72760, dtype: object)
(72761, Id                              72762
EmployeeName           Vandyke Taylor
JobTitle            Recreation Leader
BasePay                         128.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.33
TotalPay                        128.8
TotalPayBenefits               140.13
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72761, dtype: object)
(72762, Id                              72763
EmployeeName           Byron Jones II
JobTitle            Recreation Leader
BasePay                         128.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.28
TotalPay                        128.8
TotalPayBenefits               140.08
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72762, dtype: object)
(72763, Id                             72764
EmployeeName           Jeffery Isble
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      139.23
Benefits                        0.35
TotalPay                      139.23
TotalPayBenefits              139.58
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72763, dtype: object)
(72764, Id                              72765
EmployeeName           Mozel Nealy Jr
JobTitle            Recreation Leader
BasePay                        127.58
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.22
TotalPay                       127.58
TotalPayBenefits                138.8
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72764, dtype: object)
(72765, Id                              72766
EmployeeName              Peter Fitch
JobTitle            Recreation Leader
BasePay                        127.52
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.21
TotalPay                       127.52
TotalPayBenefits               138.73
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72765, dtype: object)
(72766, Id                              72767
EmployeeName           Doris Crawford
JobTitle            Recreation Leader
BasePay                        127.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.21
TotalPay                       127.51
TotalPayBenefits               138.72
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72766, dtype: object)
(72767, Id                              72768
EmployeeName            Erin McDowell
JobTitle            Recreation Leader
BasePay                         127.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        11.21
TotalPay                        127.5
TotalPayBenefits               138.71
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72767, dtype: object)
(72768, Id                                     72769
EmployeeName        Pamela Fitzgerald-Wermes
JobTitle                         Inspector 3
BasePay                                  0.0
OvertimePay                              0.0
OtherPay                              127.51
Benefits                               10.08
TotalPay                              127.51
TotalPayBenefits                      137.59
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72768, dtype: object)
(72769, Id                                       72770
EmployeeName                     Thomas Crites
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  125.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  11.0
TotalPay                                 125.0
TotalPayBenefits                         136.0
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72769, dtype: object)
(72770, Id                                       72771
EmployeeName                     Marcy Adelman
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  125.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 10.94
TotalPay                                 125.0
TotalPayBenefits                        135.94
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72770, dtype: object)
(72771, Id                                       72772
EmployeeName                         Katie Loo
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  125.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                 10.55
TotalPay                                 125.0
TotalPayBenefits                        135.55
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72771, dtype: object)
(72772, Id                                       72773
EmployeeName          Rosario Carrion-Di Ricco
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  125.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  9.94
TotalPay                                 125.0
TotalPayBenefits                        134.94
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72772, dtype: object)
(72773, Id                              72774
EmployeeName            Alva Thompson
JobTitle            Stage Electrician
BasePay                         118.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        10.39
TotalPay                        118.8
TotalPayBenefits               129.19
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72773, dtype: object)
(72774, Id                                   72775
EmployeeName         Brandi Hatch Sinclair
JobTitle            Public Service Trainee
BasePay                             117.76
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             10.29
TotalPay                            117.76
TotalPayBenefits                    128.05
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72774, dtype: object)
(72775, Id                            72776
EmployeeName        Jesus Hernandez
JobTitle             Security Guard
BasePay                         0.0
OvertimePay                     0.0
OtherPay                     117.17
Benefits                       8.96
TotalPay                     117.17
TotalPayBenefits             126.13
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72775, dtype: object)
(72776, Id                                           72777
EmployeeName                     Jillian Blanchard
JobTitle            Planner 4-Environmental Review
BasePay                                        0.0
OvertimePay                                    0.0
OtherPay                                    116.48
Benefits                                      8.91
TotalPay                                    116.48
TotalPayBenefits                            125.39
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72776, dtype: object)
(72777, Id                          72778
EmployeeName          Earl Wismer
JobTitle              Inspector 3
BasePay                       0.0
OvertimePay                   0.0
OtherPay                   115.78
Benefits                     9.15
TotalPay                   115.78
TotalPayBenefits           124.93
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72777, dtype: object)
(72778, Id                             72779
EmployeeName           Dwayne Miller
JobTitle            Police Officer 2
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      115.78
Benefits                        9.15
TotalPay                      115.78
TotalPayBenefits              124.93
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72778, dtype: object)
(72779, Id                                   72780
EmployeeName             Madeleine Wilhite
JobTitle            Public Service Trainee
BasePay                               98.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                             26.34
TotalPay                              98.0
TotalPayBenefits                    124.34
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72779, dtype: object)
(72780, Id                              72781
EmployeeName               Cemal Ford
JobTitle            Recreation Leader
BasePay                         110.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         9.71
TotalPay                        110.5
TotalPayBenefits               120.21
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72780, dtype: object)
(72781, Id                              72782
EmployeeName               Lora Robey
JobTitle            Recreation Leader
BasePay                         110.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         9.71
TotalPay                        110.5
TotalPayBenefits               120.21
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72781, dtype: object)
(72782, Id                              72783
EmployeeName            Matthew Kluvo
JobTitle            Recreation Leader
BasePay                         110.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         9.71
TotalPay                        110.5
TotalPayBenefits               120.21
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72782, dtype: object)
(72783, Id                               72784
EmployeeName        Harold Robinson Jr
JobTitle              Transit Operator
BasePay                            0.0
OvertimePay                        0.0
OtherPay                         110.7
Benefits                          8.47
TotalPay                         110.7
TotalPayBenefits                119.17
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72783, dtype: object)
(72784, Id                            72785
EmployeeName        Elizabeth Cheng
JobTitle             Pool Lifeguard
BasePay                       93.09
OvertimePay                     0.0
OtherPay                       1.35
Benefits                      24.66
TotalPay                      94.44
TotalPayBenefits              119.1
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72784, dtype: object)
(72785, Id                           72786
EmployeeName        Robert Wallace
JobTitle            Deputy Sheriff
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    117.27
Benefits                       1.7
TotalPay                    117.27
TotalPayBenefits            118.97
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72785, dtype: object)
(72786, Id                             72787
EmployeeName               Heidi Lee
JobTitle            Special Examiner
BasePay                         94.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                       24.16
TotalPay                        94.0
TotalPayBenefits              118.16
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72786, dtype: object)
(72787, Id                                  72788
EmployeeName                   Agnes Chan
JobTitle            School Crossing Guard
BasePay                             107.8
OvertimePay                           0.0
OtherPay                              0.0
Benefits                             9.42
TotalPay                            107.8
TotalPayBenefits                   117.22
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72787, dtype: object)
(72788, Id                              72789
EmployeeName          Gloria Upchurch
JobTitle            Recreation Leader
BasePay                        107.44
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         9.45
TotalPay                       107.44
TotalPayBenefits               116.89
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72788, dtype: object)
(72789, Id                            72790
EmployeeName        Jocelyn Madamba
JobTitle              Special Nurse
BasePay                       76.33
OvertimePay                     0.0
OtherPay                      15.27
Benefits                      25.21
TotalPay                       91.6
TotalPayBenefits             116.81
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72789, dtype: object)
(72790, Id                                         72791
EmployeeName                       Kurt Petersen
JobTitle            Public Svc Aide-Public Works
BasePay                                    103.9
OvertimePay                                  0.0
OtherPay                                    2.44
Benefits                                    9.29
TotalPay                                  106.34
TotalPayBenefits                          115.63
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72790, dtype: object)
(72791, Id                             72792
EmployeeName              Larry Piol
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      106.99
Benefits                        8.45
TotalPay                      106.99
TotalPayBenefits              115.44
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72791, dtype: object)
(72792, Id                             72793
EmployeeName           Rose Melendez
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      105.52
Benefits                        8.33
TotalPay                      105.52
TotalPayBenefits              113.85
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72792, dtype: object)
(72793, Id                           72794
EmployeeName           Shawn Rybak
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                    111.39
Benefits                       1.9
TotalPay                    111.39
TotalPayBenefits            113.29
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72793, dtype: object)
(72794, Id                                  72795
EmployeeName            Kenneth Hightower
JobTitle            School Crossing Guard
BasePay                            102.99
OvertimePay                           0.0
OtherPay                              0.0
Benefits                             9.05
TotalPay                           102.99
TotalPayBenefits                   112.04
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72794, dtype: object)
(72795, Id                                         72796
EmployeeName                        Derell Young
JobTitle            Public Svc Aide-Public Works
BasePay                                    100.4
OvertimePay                                  0.0
OtherPay                                    2.35
Benefits                                    9.03
TotalPay                                  102.75
TotalPayBenefits                          111.78
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72795, dtype: object)
(72796, Id                              72797
EmployeeName            Kimberly Tang
JobTitle            Recreation Leader
BasePay                        102.29
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         8.93
TotalPay                       102.29
TotalPayBenefits               111.22
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72796, dtype: object)
(72797, Id                                   72798
EmployeeName                     Vao Davis
JobTitle            Transit Fare Inspector
BasePay                                0.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                            110.72
TotalPay                               0.0
TotalPayBenefits                    110.72
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72797, dtype: object)
(72798, Id                                       72799
EmployeeName                      Vincent Fong
JobTitle            Senior Legal Process Clerk
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                102.59
Benefits                                  8.11
TotalPay                                102.59
TotalPayBenefits                         110.7
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72798, dtype: object)
(72799, Id                             72800
EmployeeName             Alan McCann
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                      102.59
Benefits                        8.11
TotalPay                      102.59
TotalPayBenefits               110.7
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72799, dtype: object)
(72800, Id                                       72801
EmployeeName                  Michael Denunzio
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                  100.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  8.75
TotalPay                                 100.0
TotalPayBenefits                        108.75
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72800, dtype: object)
(72801, Id                                      72802
EmployeeName                        Allan Low
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 100.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                  7.9
TotalPay                                100.0
TotalPayBenefits                        107.9
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72801, dtype: object)
(72802, Id                                         72803
EmployeeName                      Joel Pelletier
JobTitle            Public Svc Aide-Public Works
BasePay                                     99.1
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                    8.71
TotalPay                                    99.1
TotalPayBenefits                          107.81
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72802, dtype: object)
(72803, Id                                         72804
EmployeeName                   Francille Carlton
JobTitle            Public Svc Aide-Public Works
BasePay                                     99.1
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                    8.71
TotalPay                                    99.1
TotalPayBenefits                          107.81
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72803, dtype: object)
(72804, Id                          72805
EmployeeName        Merritt Brown
JobTitle             Truck Driver
BasePay                       0.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                   107.52
TotalPay                      0.0
TotalPayBenefits           107.52
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72804, dtype: object)
(72805, Id                              72806
EmployeeName              Michael Lee
JobTitle            Recreation Leader
BasePay                          96.6
OvertimePay                       0.0
OtherPay                         1.29
Benefits                         8.61
TotalPay                        97.89
TotalPayBenefits                106.5
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72805, dtype: object)
(72806, Id                             72807
EmployeeName          Samuel Osborne
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        98.2
Benefits                        7.76
TotalPay                        98.2
TotalPayBenefits              105.96
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72806, dtype: object)
(72807, Id                              72808
EmployeeName        Robert Mattox III
JobTitle             Police Officer 3
BasePay                           0.0
OvertimePay                       0.0
OtherPay                        96.73
Benefits                         7.65
TotalPay                        96.73
TotalPayBenefits               104.38
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72807, dtype: object)
(72808, Id                              72809
EmployeeName            Randal Symank
JobTitle            Recreation Leader
BasePay                         95.68
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         8.41
TotalPay                        95.68
TotalPayBenefits               104.09
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72808, dtype: object)
(72809, Id                              72810
EmployeeName        Shannon Macfarlan
JobTitle                Special Nurse
BasePay                         72.98
OvertimePay                       0.0
OtherPay                          7.3
Benefits                        22.79
TotalPay                        80.28
TotalPayBenefits               103.07
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72809, dtype: object)
(72810, Id                           72811
EmployeeName        Peter Siragusa
JobTitle               Inspector 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     95.27
Benefits                      7.53
TotalPay                     95.27
TotalPayBenefits             102.8
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72810, dtype: object)
(72811, Id                             72812
EmployeeName              Wayman Yip
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       95.27
Benefits                        7.53
TotalPay                       95.27
TotalPayBenefits               102.8
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72811, dtype: object)
(72812, Id                                 72813
EmployeeName         Christopher Hinnant
JobTitle            Physician Specialist
BasePay                            81.78
OvertimePay                          0.0
OtherPay                             0.0
Benefits                           20.24
TotalPay                           81.78
TotalPayBenefits                  102.02
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72812, dtype: object)
(72813, Id                             72814
EmployeeName        Timothy Shanahan
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        93.8
Benefits                        7.41
TotalPay                        93.8
TotalPayBenefits              101.21
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72813, dtype: object)
(72814, Id                             72815
EmployeeName         Paul Detimofeev
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        93.8
Benefits                        7.41
TotalPay                        93.8
TotalPayBenefits              101.21
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72814, dtype: object)
(72815, Id                              72816
EmployeeName        Merriam Baldomero
JobTitle             Registered Nurse
BasePay                           0.0
OvertimePay                       0.0
OtherPay                         78.4
Benefits                        22.75
TotalPay                         78.4
TotalPayBenefits               101.15
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72815, dtype: object)
(72816, Id                          72817
EmployeeName        Aaric Pingree
JobTitle                Carpenter
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    100.0
Benefits                      1.0
TotalPay                    100.0
TotalPayBenefits            101.0
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72816, dtype: object)
(72817, Id                                   72818
EmployeeName               Paul Altamirano
JobTitle            Public Service Trainee
BasePay                              92.16
OvertimePay                            0.0
OtherPay                               0.0
Benefits                               8.1
TotalPay                             92.16
TotalPayBenefits                    100.26
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72817, dtype: object)
(72818, Id                            72819
EmployeeName          Lauren Jordan
JobTitle            Sheriff's Cadet
BasePay                         0.0
OvertimePay                     0.0
OtherPay                      91.87
Benefits                       7.03
TotalPay                      91.87
TotalPayBenefits               98.9
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72818, dtype: object)
(72819, Id                              72820
EmployeeName             Renee Rhodes
JobTitle            Recreation Leader
BasePay                          90.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         7.87
TotalPay                         90.0
TotalPayBenefits                97.87
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72819, dtype: object)
(72820, Id                           72821
EmployeeName           Mary Ruffin
JobTitle            Deputy Sheriff
BasePay                        0.0
OvertimePay                    0.0
OtherPay                      89.3
Benefits                      7.06
TotalPay                      89.3
TotalPayBenefits             96.36
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72820, dtype: object)
(72821, Id                          72822
EmployeeName         Thao Paynter
JobTitle            Special Nurse
BasePay                     67.56
OvertimePay                   0.0
OtherPay                     6.76
Benefits                    21.73
TotalPay                    74.32
TotalPayBenefits            96.05
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72821, dtype: object)
(72822, Id                            72823
EmployeeName           Michael Katz
JobTitle            PS Aide to Prof
BasePay                       87.94
OvertimePay                     0.0
OtherPay                        0.0
Benefits                       7.73
TotalPay                      87.94
TotalPayBenefits              95.67
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72822, dtype: object)
(72823, Id                                        72824
EmployeeName                        Hanas White
JobTitle            Communications Dispatcher 1
BasePay                                     0.0
OvertimePay                                 0.0
OtherPay                                  87.26
Benefits                                   6.94
TotalPay                                  87.26
TotalPayBenefits                           94.2
Year                                       2012
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72823, dtype: object)
(72824, Id                                72825
EmployeeName        Deepalaxmi Rasalkar
JobTitle             Utility Specialist
BasePay                             0.0
OvertimePay                         0.0
OtherPay                          87.44
Benefits                           6.69
TotalPay                          87.44
TotalPayBenefits                  94.13
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72824, dtype: object)
(72825, Id                                72826
EmployeeName               Nancy Houdre
JobTitle            Swimming Instructor
BasePay                            85.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                           7.49
TotalPay                           85.5
TotalPayBenefits                  92.99
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72825, dtype: object)
(72826, Id                                 72827
EmployeeName            Sheila Ann Jones
JobTitle            Senior Social Worker
BasePay                              0.0
OvertimePay                          0.0
OtherPay                           86.11
Benefits                            6.59
TotalPay                           86.11
TotalPayBenefits                    92.7
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72826, dtype: object)
(72827, Id                              72828
EmployeeName            Ronet Sanidad
JobTitle            Recreation Leader
BasePay                         84.02
OvertimePay                       0.0
OtherPay                         1.17
Benefits                         7.46
TotalPay                        85.19
TotalPayBenefits                92.65
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72827, dtype: object)
(72828, Id                                      72829
EmployeeName                 Lorraine Johnson
JobTitle            Licensed Vocational Nurse
BasePay                                   0.0
OvertimePay                               0.0
OtherPay                                85.35
Benefits                                 6.53
TotalPay                                85.35
TotalPayBenefits                        91.88
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72828, dtype: object)
(72829, Id                            72830
EmployeeName        Refugio Sanchez
JobTitle                  Custodian
BasePay                         0.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                      91.28
TotalPay                        0.0
TotalPayBenefits              91.28
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72829, dtype: object)
(72830, Id                                       72831
EmployeeName                Maria Foster-Cazem
JobTitle            Protective Services Worker
BasePay                                    0.0
OvertimePay                                0.0
OtherPay                                 84.78
Benefits                                  6.49
TotalPay                                 84.78
TotalPayBenefits                         91.27
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72830, dtype: object)
(72831, Id                            72832
EmployeeName            Ashor Oraha
JobTitle            General Laborer
BasePay                         0.0
OvertimePay                     0.0
OtherPay                       84.4
Benefits                       6.45
TotalPay                       84.4
TotalPayBenefits              90.85
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72831, dtype: object)
(72832, Id                           72833
EmployeeName        Irwin Sidharta
JobTitle              Junior Clerk
BasePay                    -166.01
OvertimePay                 249.02
OtherPay                       0.0
Benefits                      6.56
TotalPay                     83.01
TotalPayBenefits             89.57
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72832, dtype: object)
(72833, Id                                  72834
EmployeeName                Leslie Garcia
JobTitle            Deputy Court Clerk II
BasePay                               0.0
OvertimePay                           0.0
OtherPay                            69.48
Benefits                            18.18
TotalPay                            69.48
TotalPayBenefits                    87.66
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72833, dtype: object)
(72834, Id                              72835
EmployeeName             Kevin Phuong
JobTitle            Recreation Leader
BasePay                         76.72
OvertimePay                       0.0
OtherPay                          3.8
Benefits                         7.04
TotalPay                        80.52
TotalPayBenefits                87.56
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72834, dtype: object)
(72835, Id                              72836
EmployeeName          Keren Remington
JobTitle            Recreation Leader
BasePay                         74.42
OvertimePay                       0.0
OtherPay                         5.95
Benefits                         7.06
TotalPay                        80.37
TotalPayBenefits                87.43
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72835, dtype: object)
(72836, Id                               72837
EmployeeName        Theresa Muehlbauer
JobTitle                  Junior Clerk
BasePay                          79.37
OvertimePay                        0.0
OtherPay                           0.0
Benefits                          6.94
TotalPay                         79.37
TotalPayBenefits                 86.31
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72836, dtype: object)
(72837, Id                                  72838
EmployeeName               Shirley Hunter
JobTitle            Senior Deputy Sheriff
BasePay                               0.0
OvertimePay                           0.0
OtherPay                            79.71
Benefits                              6.3
TotalPay                            79.71
TotalPayBenefits                    86.01
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72837, dtype: object)
(72838, Id                             72839
EmployeeName        Richard Bakerian
JobTitle              Police Officer
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       82.07
Benefits                         1.4
TotalPay                       82.07
TotalPayBenefits               83.47
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72838, dtype: object)
(72839, Id                           72840
EmployeeName        Kevin Tanksley
JobTitle                    Barber
BasePay                      75.65
OvertimePay                    0.0
OtherPay                       0.0
Benefits                      6.63
TotalPay                     75.65
TotalPayBenefits             82.28
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72839, dtype: object)
(72840, Id                          72841
EmployeeName        Patricia Tang
JobTitle            Special Nurse
BasePay                     58.17
OvertimePay                   0.0
OtherPay                     5.82
Benefits                    17.98
TotalPay                    63.99
TotalPayBenefits            81.97
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72840, dtype: object)
(72841, Id                                       72842
EmployeeName                 Veneracion Zamora
JobTitle            BdComm Mbr, Grp2,M=$25/Mtg
BasePay                                   75.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  5.97
TotalPay                                  75.0
TotalPayBenefits                         80.97
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72841, dtype: object)
(72842, Id                           72843
EmployeeName          Ricci Guzman
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     79.14
Benefits                      1.35
TotalPay                     79.14
TotalPayBenefits             80.49
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72842, dtype: object)
(72843, Id                            72844
EmployeeName        Kierstyn Harris
JobTitle               Junior Clerk
BasePay                       73.85
OvertimePay                     0.0
OtherPay                        0.0
Benefits                       6.46
TotalPay                      73.85
TotalPayBenefits              80.31
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72843, dtype: object)
(72844, Id                                  72845
EmployeeName        Ellsworth Jennison Jr
JobTitle              Swimming Instructor
BasePay                             63.61
OvertimePay                           0.0
OtherPay                              0.0
Benefits                            16.58
TotalPay                            63.61
TotalPayBenefits                    80.19
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72844, dtype: object)
(72845, Id                           72846
EmployeeName             Peter Pun
JobTitle            Pool Lifeguard
BasePay                       72.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                      6.32
TotalPay                      72.0
TotalPayBenefits             78.32
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72845, dtype: object)
(72846, Id                                         72847
EmployeeName                      Cherrise Jones
JobTitle            Public Svc Aide-Public Works
BasePay                                    71.43
OvertimePay                                  0.0
OtherPay                                    0.41
Benefits                                    6.28
TotalPay                                   71.84
TotalPayBenefits                           78.12
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72846, dtype: object)
(72847, Id                                       72848
EmployeeName            Marquise Yassini Moore
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                   64.3
OvertimePay                                0.0
OtherPay                                   7.0
Benefits                                  6.27
TotalPay                                  71.3
TotalPayBenefits                         77.57
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72847, dtype: object)
(72848, Id                            72849
EmployeeName        Robert Bakerian
JobTitle             Police Officer
BasePay                         0.0
OvertimePay                     0.0
OtherPay                      74.85
Benefits                       1.28
TotalPay                      74.85
TotalPayBenefits              76.13
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72848, dtype: object)
(72849, Id                             72850
EmployeeName            Edith Borbon
JobTitle            Special Examiner
BasePay                        69.62
OvertimePay                      0.0
OtherPay                         0.0
Benefits                        6.12
TotalPay                       69.62
TotalPayBenefits               75.74
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72849, dtype: object)
(72850, Id                                       72851
EmployeeName                 Deborah Henderson
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                   70.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  5.57
TotalPay                                  70.0
TotalPayBenefits                         75.57
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72850, dtype: object)
(72851, Id                              72852
EmployeeName            Matthew Shell
JobTitle            Recreation Leader
BasePay                         63.79
OvertimePay                       0.0
OtherPay                          5.1
Benefits                         6.06
TotalPay                        68.89
TotalPayBenefits                74.95
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72851, dtype: object)
(72852, Id                            72853
EmployeeName        Robert Deltorre
JobTitle                 Sergeant 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                      68.88
Benefits                       5.44
TotalPay                      68.88
TotalPayBenefits              74.32
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72852, dtype: object)
(72853, Id                                    72854
EmployeeName               Johnnie Benjamin
JobTitle            Parking Control Officer
BasePay                                 0.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                              73.32
TotalPay                                0.0
TotalPayBenefits                      73.32
Year                                   2012
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 72853, dtype: object)
(72854, Id                          72855
EmployeeName          Michael Lee
JobTitle               Sergeant 3
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    67.42
Benefits                     5.33
TotalPay                    67.42
TotalPayBenefits            72.75
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72854, dtype: object)
(72855, Id                              72856
EmployeeName        Richard Vanwinkle
JobTitle             Police Officer 3
BasePay                           0.0
OvertimePay                       0.0
OtherPay                        67.42
Benefits                         5.33
TotalPay                        67.42
TotalPayBenefits                72.75
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72855, dtype: object)
(72856, Id                              72857
EmployeeName            Alexis Castro
JobTitle            Recreation Leader
BasePay                         65.76
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         5.75
TotalPay                        65.76
TotalPayBenefits                71.51
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72856, dtype: object)
(72857, Id                              72858
EmployeeName           Brandy Esparza
JobTitle            Recreation Leader
BasePay                         63.75
OvertimePay                       0.0
OtherPay                         1.27
Benefits                         5.71
TotalPay                        65.02
TotalPayBenefits                70.73
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72857, dtype: object)
(72858, Id                           72859
EmployeeName            Paul Lucia
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     68.88
Benefits                      1.17
TotalPay                     68.88
TotalPayBenefits             70.05
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72858, dtype: object)
(72859, Id                           72860
EmployeeName           James Young
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     68.88
Benefits                      1.17
TotalPay                     68.88
TotalPayBenefits             70.05
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72859, dtype: object)
(72860, Id                                72861
EmployeeName               Michele Rice
JobTitle            Senior Clerk Typist
BasePay                             0.0
OvertimePay                         0.0
OtherPay                          64.69
Benefits                           4.95
TotalPay                          64.69
TotalPayBenefits                  69.64
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72860, dtype: object)
(72861, Id                             72862
EmployeeName           Rana Domondon
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        64.2
Benefits                        4.91
TotalPay                        64.2
TotalPayBenefits               69.11
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72861, dtype: object)
(72862, Id                                  72863
EmployeeName                 Naomi Jardin
JobTitle            Senior Deputy Sheriff
BasePay                               0.0
OvertimePay                           0.0
OtherPay                            68.49
Benefits                              0.0
TotalPay                            68.49
TotalPayBenefits                    68.49
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72862, dtype: object)
(72863, Id                             72864
EmployeeName            Sharon March
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       63.47
Benefits                        4.86
TotalPay                       63.47
TotalPayBenefits               68.33
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72863, dtype: object)
(72864, Id                             72865
EmployeeName             Robert Wood
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       63.02
Benefits                        4.98
TotalPay                       63.02
TotalPayBenefits                68.0
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72864, dtype: object)
(72865, Id                          72866
EmployeeName         Robert Scott
JobTitle             Junior Clerk
BasePay                   -121.63
OvertimePay                 182.7
OtherPay                      0.0
Benefits                     5.44
TotalPay                    61.07
TotalPayBenefits            66.51
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72865, dtype: object)
(72866, Id                           72867
EmployeeName        James Balovich
JobTitle               Inspector 3
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     60.09
Benefits                      4.75
TotalPay                     60.09
TotalPayBenefits             64.84
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72866, dtype: object)
(72867, Id                             72868
EmployeeName         Richard Sheehan
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       60.09
Benefits                        4.75
TotalPay                       60.09
TotalPayBenefits               64.84
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72867, dtype: object)
(72868, Id                              72869
EmployeeName             Veronica Lee
JobTitle            Recreation Leader
BasePay                         55.25
OvertimePay                       0.0
OtherPay                         3.96
Benefits                         4.71
TotalPay                        59.21
TotalPayBenefits                63.92
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72868, dtype: object)
(72869, Id                              72870
EmployeeName               Gayle Hart
JobTitle            Recreation Leader
BasePay                         48.83
OvertimePay                       0.0
OtherPay                          0.0
Benefits                        13.93
TotalPay                        48.83
TotalPayBenefits                62.76
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72869, dtype: object)
(72870, Id                              72871
EmployeeName             Daniel Brady
JobTitle            Recreation Leader
BasePay                         55.79
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          4.9
TotalPay                        55.79
TotalPayBenefits                60.69
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72870, dtype: object)
(72871, Id                              72872
EmployeeName                Kuana Liu
JobTitle            Recreation Leader
BasePay                         55.25
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         4.86
TotalPay                        55.25
TotalPayBenefits                60.11
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72871, dtype: object)
(72872, Id                            72873
EmployeeName        Chung Huey Kung
JobTitle               Junior Clerk
BasePay                     -109.22
OvertimePay                  163.83
OtherPay                        0.0
Benefits                       4.32
TotalPay                      54.61
TotalPayBenefits              58.93
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72872, dtype: object)
(72873, Id                           72874
EmployeeName            Wayne Lang
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     57.16
Benefits                      0.97
TotalPay                     57.16
TotalPayBenefits             58.13
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72873, dtype: object)
(72874, Id                          72875
EmployeeName            Jordan Li
JobTitle             Junior Clerk
BasePay                    -106.6
OvertimePay                 159.9
OtherPay                      0.0
Benefits                     4.66
TotalPay                     53.3
TotalPayBenefits            57.96
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72874, dtype: object)
(72875, Id                                 72876
EmployeeName              Adriana Forney
JobTitle            Management Assistant
BasePay                              0.0
OvertimePay                          0.0
OtherPay                           53.18
Benefits                            4.07
TotalPay                           53.18
TotalPayBenefits                   57.25
Year                                2012
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 72875, dtype: object)
(72876, Id                                         72877
EmployeeName                          Victor Pon
JobTitle            Wastewater Control Inspector
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                   57.06
TotalPay                                     0.0
TotalPayBenefits                           57.06
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72876, dtype: object)
(72877, Id                                       72878
EmployeeName                    Neal Cavellini
JobTitle            BdComm Mbr, Grp3,M=$50/Mtg
BasePay                                   50.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  6.79
TotalPay                                  50.0
TotalPayBenefits                         56.79
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72877, dtype: object)
(72878, Id                            72879
EmployeeName        Richard Jackson
JobTitle               Junior Clerk
BasePay                     -101.88
OvertimePay                  153.08
OtherPay                        0.0
Benefits                       4.55
TotalPay                       51.2
TotalPayBenefits              55.75
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72878, dtype: object)
(72879, Id                              72880
EmployeeName            Marissa Rocke
JobTitle            Recreation Leader
BasePay                         50.63
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         4.43
TotalPay                        50.63
TotalPayBenefits                55.06
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72879, dtype: object)
(72880, Id                                     72881
EmployeeName                     Eileen Ward
JobTitle            Commissioner No Benefits
BasePay                                 50.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                                3.98
TotalPay                                50.0
TotalPayBenefits                       53.98
Year                                    2012
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72880, dtype: object)
(72881, Id                                       72882
EmployeeName                     Shanya Bivens
JobTitle            Publ Svc Aide-Asst to Prof
BasePay                                  48.23
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                                  4.24
TotalPay                                 48.23
TotalPayBenefits                         52.47
Year                                      2012
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72881, dtype: object)
(72882, Id                                   72883
EmployeeName                   Brian Lalor
JobTitle            Electrical Line Helper
BasePay                                0.0
OvertimePay                            0.0
OtherPay                             48.41
Benefits                               3.7
TotalPay                             48.41
TotalPayBenefits                     52.11
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72882, dtype: object)
(72883, Id                              72884
EmployeeName             June Solomon
JobTitle            Recreation Leader
BasePay                         47.81
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          4.2
TotalPay                        47.81
TotalPayBenefits                52.01
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72883, dtype: object)
(72884, Id                                   72885
EmployeeName        DiMarco McGhee-Stewart
JobTitle                      Junior Clerk
BasePay                             -93.14
OvertimePay                         139.97
OtherPay                               0.0
Benefits                              4.17
TotalPay                             46.83
TotalPayBenefits                      51.0
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72884, dtype: object)
(72885, Id                            72886
EmployeeName        Katherine Lynds
JobTitle                Librarian 3
BasePay                         0.0
OvertimePay                     0.0
OtherPay                      46.08
Benefits                       3.53
TotalPay                      46.08
TotalPayBenefits              49.61
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72885, dtype: object)
(72886, Id                                72887
EmployeeName        Jose Bernal Jimenez
JobTitle                Sheriff's Cadet
BasePay                             0.0
OvertimePay                         0.0
OtherPay                          46.06
Benefits                           3.53
TotalPay                          46.06
TotalPayBenefits                  49.59
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72886, dtype: object)
(72887, Id                              72888
EmployeeName            Suzun Lamaina
JobTitle            Recreation Leader
BasePay                          45.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         3.93
TotalPay                         45.0
TotalPayBenefits                48.93
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72887, dtype: object)
(72888, Id                               72889
EmployeeName        Leopoldo Marasigan
JobTitle                  Junior Clerk
BasePay                         -87.38
OvertimePay                     131.06
OtherPay                           0.0
Benefits                          3.89
TotalPay                         43.68
TotalPayBenefits                 47.57
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72888, dtype: object)
(72889, Id                          72890
EmployeeName          Grace Salud
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    37.36
Benefits                     8.91
TotalPay                    37.36
TotalPayBenefits            46.27
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72889, dtype: object)
(72890, Id                                   72891
EmployeeName               Evander Mcelroy
JobTitle            Public Service Trainee
BasePay                              40.96
OvertimePay                            0.0
OtherPay                              0.82
Benefits                              3.65
TotalPay                             41.78
TotalPayBenefits                     45.43
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72890, dtype: object)
(72891, Id                                   72892
EmployeeName                    Pierce Lou
JobTitle            Public Service Trainee
BasePay                              40.96
OvertimePay                            0.0
OtherPay                               0.0
Benefits                              3.58
TotalPay                             40.96
TotalPayBenefits                     44.54
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72891, dtype: object)
(72892, Id                                   72893
EmployeeName                    Lixin Chen
JobTitle            Public Service Trainee
BasePay                              40.96
OvertimePay                            0.0
OtherPay                               0.0
Benefits                              3.58
TotalPay                             40.96
TotalPayBenefits                     44.54
Year                                  2012
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72892, dtype: object)
(72893, Id                           72894
EmployeeName         Vickie Mojica
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     41.04
Benefits                      3.24
TotalPay                     41.04
TotalPayBenefits             44.28
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72893, dtype: object)
(72894, Id                           72895
EmployeeName        Douglas Avalos
JobTitle              Junior Clerk
BasePay                     -75.67
OvertimePay                 113.76
OtherPay                       0.0
Benefits                      3.39
TotalPay                     38.09
TotalPayBenefits             41.48
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72894, dtype: object)
(72895, Id                             72896
EmployeeName          Anthony Nelson
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       38.11
Benefits                        3.01
TotalPay                       38.11
TotalPayBenefits               41.12
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72895, dtype: object)
(72896, Id                             72897
EmployeeName            Katrina Cobb
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        37.2
Benefits                        2.85
TotalPay                        37.2
TotalPayBenefits               40.05
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72896, dtype: object)
(72897, Id                                72898
EmployeeName                 Monica Way
JobTitle            IS Business Analyst
BasePay                             0.0
OvertimePay                         0.0
OtherPay                          37.08
Benefits                           2.93
TotalPay                          37.08
TotalPayBenefits                  40.01
Year                               2012
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 72897, dtype: object)
(72898, Id                           72899
EmployeeName          Donald Brown
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     36.64
Benefits                      2.89
TotalPay                     36.64
TotalPayBenefits             39.53
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72898, dtype: object)
(72899, Id                              72900
EmployeeName         Dimitra Havriluk
JobTitle            Recreation Leader
BasePay                         31.89
OvertimePay                       0.0
OtherPay                         2.55
Benefits                         3.02
TotalPay                        34.44
TotalPayBenefits                37.46
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72899, dtype: object)
(72900, Id                                  72901
EmployeeName        Lealofi Vaeao Feagiai
JobTitle                Recreation Leader
BasePay                             27.89
OvertimePay                           0.0
OtherPay                              0.0
Benefits                              7.5
TotalPay                            27.89
TotalPayBenefits                    35.39
Year                                 2012
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72900, dtype: object)
(72901, Id                                           72902
EmployeeName                           Sean Reavey
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                        0.0
OvertimePay                                    0.0
OtherPay                                      32.7
Benefits                                      2.58
TotalPay                                      32.7
TotalPayBenefits                             35.28
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72901, dtype: object)
(72902, Id                              72903
EmployeeName            Kahlil Hughes
JobTitle            Recreation Leader
BasePay                          32.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         2.83
TotalPay                         32.2
TotalPayBenefits                35.03
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72902, dtype: object)
(72903, Id                              72904
EmployeeName           Jannine Ranese
JobTitle            Recreation Leader
BasePay                          32.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         2.83
TotalPay                         32.2
TotalPayBenefits                35.03
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72903, dtype: object)
(72904, Id                              72905
EmployeeName               Amy O'Dell
JobTitle            Recreation Leader
BasePay                          32.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         2.82
TotalPay                         32.2
TotalPayBenefits                35.02
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72904, dtype: object)
(72905, Id                                           72906
EmployeeName                          Kendrick Lau
JobTitle            StdntDsgnTrain1, Arch/Eng/Plng
BasePay                                        0.0
OvertimePay                                    0.0
OtherPay                                     32.29
Benefits                                      2.55
TotalPay                                     32.29
TotalPayBenefits                             34.84
Year                                          2012
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72905, dtype: object)
(72906, Id                              72907
EmployeeName            Megan Crocker
JobTitle            Recreation Leader
BasePay                         31.88
OvertimePay                       0.0
OtherPay                          0.0
Benefits                          2.8
TotalPay                        31.88
TotalPayBenefits                34.68
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72906, dtype: object)
(72907, Id                             72908
EmployeeName            William Pyne
JobTitle            Police Officer 3
BasePay                          0.0
OvertimePay                      0.0
OtherPay                       30.78
Benefits                        2.44
TotalPay                       30.78
TotalPayBenefits               33.22
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72907, dtype: object)
(72908, Id                            72909
EmployeeName        Norma Rodriguez
JobTitle               Junior Clerk
BasePay                      -59.59
OvertimePay                   89.65
OtherPay                        0.0
Benefits                       2.68
TotalPay                      30.06
TotalPayBenefits              32.74
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72908, dtype: object)
(72909, Id                              72910
EmployeeName           Harrison Burns
JobTitle            Recreation Leader
BasePay                         29.23
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         2.56
TotalPay                        29.23
TotalPayBenefits                31.79
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72909, dtype: object)
(72910, Id                              72911
EmployeeName             Aaron Woeste
JobTitle            Recreation Leader
BasePay                         29.23
OvertimePay                       0.0
OtherPay                          0.0
Benefits                         2.56
TotalPay                        29.23
TotalPayBenefits                31.79
Year                             2012
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72910, dtype: object)
(72911, Id                          72912
EmployeeName        Amy Winkelman
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                    30.48
TotalPay                      0.0
TotalPayBenefits            30.48
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72911, dtype: object)
(72912, Id                            72913
EmployeeName          Akima Cornell
JobTitle            PS Aide to Prof
BasePay                       26.38
OvertimePay                     0.0
OtherPay                        0.0
Benefits                       2.31
TotalPay                      26.38
TotalPayBenefits              28.69
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72912, dtype: object)
(72913, Id                          72914
EmployeeName          Sue Ramirez
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    21.35
Benefits                     6.75
TotalPay                    21.35
TotalPayBenefits             28.1
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72913, dtype: object)
(72914, Id                            72915
EmployeeName           Noriel Igama
JobTitle            Sheriff's Cadet
BasePay                         0.0
OvertimePay                     0.0
OtherPay                      24.76
Benefits                        1.9
TotalPay                      24.76
TotalPayBenefits              26.66
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72914, dtype: object)
(72915, Id                               72916
EmployeeName        Virginia Sinigayan
JobTitle              Registered Nurse
BasePay                            0.0
OvertimePay                        0.0
OtherPay                         22.98
Benefits                          1.82
TotalPay                         22.98
TotalPayBenefits                  24.8
Year                              2012
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72915, dtype: object)
(72916, Id                                         72917
EmployeeName                      David Richmond
JobTitle            Stationary Eng, Sewage Plant
BasePay                                      0.0
OvertimePay                                  0.0
OtherPay                                   21.04
Benefits                                    2.82
TotalPay                                   21.04
TotalPayBenefits                           23.86
Year                                        2012
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72916, dtype: object)
(72917, Id                           72918
EmployeeName        Bruce Mitchell
JobTitle            Police Officer
BasePay                        0.0
OvertimePay                    0.0
OtherPay                     21.98
Benefits                      1.73
TotalPay                     21.98
TotalPayBenefits             23.71
Year                          2012
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72917, dtype: object)
(72918, Id                                      72919
EmployeeName                    Donald Casper
JobTitle            BdComm Mbr, Grp5,M$100/Mo
BasePay                                 23.08
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                                 0.07
TotalPay                                23.08
TotalPayBenefits                        23.15
Year                                     2012
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72918, dtype: object)
(72919, Id                          72920
EmployeeName          Simone Koga
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                    18.44
Benefits                     1.47
TotalPay                    18.44
TotalPayBenefits            19.91
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72919, dtype: object)
(72920, Id                             72921
EmployeeName        Charles Williams
JobTitle                Junior Clerk
BasePay                       -30.58
OvertimePay                    45.87
OtherPay                         0.0
Benefits                        1.36
TotalPay                       15.29
TotalPayBenefits               16.65
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72920, dtype: object)
(72921, Id                            72922
EmployeeName           John Carajan
JobTitle            General Laborer
BasePay                         0.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                       12.9
TotalPay                        0.0
TotalPayBenefits               12.9
Year                           2012
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72921, dtype: object)
(72922, Id                          72923
EmployeeName          John Draper
JobTitle                    Clerk
BasePay                      -9.5
OvertimePay                 14.25
OtherPay                      0.0
Benefits                     0.42
TotalPay                     4.75
TotalPayBenefits             5.17
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72922, dtype: object)
(72923, Id                          72924
EmployeeName         Cherise Wong
JobTitle            Special Nurse
BasePay                       0.0
OvertimePay                   0.0
OtherPay                     3.28
Benefits                     0.88
TotalPay                     3.28
TotalPayBenefits             4.16
Year                         2012
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72923, dtype: object)
(72924, Id                             72925
EmployeeName            Donald Clark
JobTitle            Transit Operator
BasePay                          0.0
OvertimePay                      0.0
OtherPay                        1.77
Benefits                        0.14
TotalPay                        1.77
TotalPayBenefits                1.91
Year                            2012
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72924, dtype: object)
(72925, Id                            72926
EmployeeName         Gregory P Suhr
JobTitle            Chief of Police
BasePay                   319275.01
OvertimePay                     0.0
OtherPay                   20007.06
Benefits                   86533.21
TotalPay                  339282.07
TotalPayBenefits          425815.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72925, dtype: object)
(72926, Id                                   72927
EmployeeName          Joanne M Hayes-White
JobTitle            Chief, Fire Department
BasePay                          313686.01
OvertimePay                            0.0
OtherPay                           23236.0
Benefits                          85431.39
TotalPay                         336922.01
TotalPayBenefits                  422353.4
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 72926, dtype: object)
(72927, Id                                           72928
EmployeeName                           Samson  Lai
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.42
OvertimePay                              131217.63
OtherPay                                  29648.27
Benefits                                  57064.95
TotalPay                                 347102.32
TotalPayBenefits                         404167.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72927, dtype: object)
(72928, Id                              72929
EmployeeName          Ellen G Moffatt
JobTitle            Asst Med Examiner
BasePay                     272855.51
OvertimePay                  23727.91
OtherPay                     38954.54
Benefits                     66198.92
TotalPay                    335537.96
TotalPayBenefits            401736.88
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 72928, dtype: object)
(72929, Id                                         72930
EmployeeName                       Robert L Shaw
JobTitle            Dep Dir for Investments, Ret
BasePay                                315572.01
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                82849.66
TotalPay                               315572.01
TotalPayBenefits                       398421.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72929, dtype: object)
(72930, Id                                         72931
EmployeeName                    David L Franklin
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                 215265.6
OvertimePay                             87985.24
OtherPay                                30637.48
Benefits                                62890.36
TotalPay                               333888.32
TotalPayBenefits                       396778.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72930, dtype: object)
(72931, Id                                        72932
EmployeeName                  Harlan L Kelly-Jr
JobTitle            Executive Contract Employee
BasePay                               313312.52
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               82319.51
TotalPay                              313312.52
TotalPayBenefits                      395632.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72931, dtype: object)
(72932, Id                          72933
EmployeeName        John L Martin
JobTitle              Dept Head V
BasePay                 311758.96
OvertimePay                   0.0
OtherPay                  1098.64
Benefits                 82476.85
TotalPay                 312857.6
TotalPayBenefits        395334.45
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72932, dtype: object)
(72933, Id                                       72934
EmployeeName                  Edward D Reiskin
JobTitle            Gen Mgr, Public Trnsp Dept
BasePay                              305307.89
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               80860.6
TotalPay                             305307.89
TotalPayBenefits                     386168.49
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 72933, dtype: object)
(72934, Id                                         72935
EmployeeName                   Thomas A Siragusa
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                 215265.6
OvertimePay                             88028.54
OtherPay                                21526.49
Benefits                                61288.58
TotalPay                               324820.63
TotalPayBenefits                       386109.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72934, dtype: object)
(72935, Id                          72936
EmployeeName           Amy P Hart
JobTitle              Dept Head V
BasePay                 286480.44
OvertimePay                   0.0
OtherPay                 17188.71
Benefits                 80077.63
TotalPay                303669.15
TotalPayBenefits        383746.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72935, dtype: object)
(72936, Id                                        72937
EmployeeName                       Yifang  Qian
JobTitle            Senior Physician Specialist
BasePay                                203710.0
OvertimePay                                 0.0
OtherPay                              119176.84
Benefits                               58810.96
TotalPay                              322886.84
TotalPayBenefits                       381697.8
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72936, dtype: object)
(72937, Id                           72938
EmployeeName        Michael J Biel
JobTitle            Deputy Chief 3
BasePay                   278964.0
OvertimePay                    0.0
OtherPay                  17587.86
Benefits                  77708.48
TotalPay                 296551.86
TotalPayBenefits         374260.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72937, dtype: object)
(72938, Id                                        72939
EmployeeName                   Raymond A Guzman
JobTitle            Dep Chf of Dept (Fire Dept)
BasePay                               270756.03
OvertimePay                                 0.0
OtherPay                               24181.02
Benefits                               77474.92
TotalPay                              294937.05
TotalPayBenefits                      372411.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72938, dtype: object)
(72939, Id                                           72940
EmployeeName                          Marty A Ross
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.43
OvertimePay                               88345.08
OtherPay                                  38035.09
Benefits                                  58991.75
TotalPay                                  312616.6
TotalPayBenefits                         371608.35
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72939, dtype: object)
(72940, Id                                        72941
EmployeeName                    Mark A Gonzales
JobTitle            Dep Chf of Dept (Fire Dept)
BasePay                               270756.01
OvertimePay                                 0.0
OtherPay                                20236.5
Benefits                               77408.16
TotalPay                              290992.51
TotalPayBenefits                      368400.67
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72940, dtype: object)
(72941, Id                                           72942
EmployeeName                        Mark J Johnson
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.41
OvertimePay                              101466.96
OtherPay                                  23994.92
Benefits                                   56134.3
TotalPay                                 311698.29
TotalPayBenefits                         367832.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72941, dtype: object)
(72942, Id                                           72943
EmployeeName                    Bryan W Rubenstein
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.45
OvertimePay                               94450.92
OtherPay                                  30313.49
Benefits                                  56508.46
TotalPay                                 311000.86
TotalPayBenefits                         367509.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72942, dtype: object)
(72943, Id                                         72944
EmployeeName                    Gary L Altenberg
JobTitle            Lieutenant, Fire Suppression
BasePay                                135903.02
OvertimePay                            163477.81
OtherPay                                20994.96
Benefits                                46030.76
TotalPay                               320375.79
TotalPayBenefits                       366406.55
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72943, dtype: object)
(72944, Id                           72945
EmployeeName         John J Loftus
JobTitle            Deputy Chief 3
BasePay                   274126.5
OvertimePay                    0.0
OtherPay                   13358.1
Benefits                   75909.1
TotalPay                  287484.6
TotalPayBenefits          363393.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72944, dtype: object)
(72945, Id                          72946
EmployeeName          Edwin M Lee
JobTitle                    Mayor
BasePay                 285446.37
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 77105.29
TotalPay                285446.37
TotalPayBenefits        362551.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72945, dtype: object)
(72946, Id                                     72947
EmployeeName                Michael J Morris
JobTitle            Assistant Deputy Chief 2
BasePay                             124054.0
OvertimePay                              0.0
OtherPay                           202322.37
Benefits                            35929.84
TotalPay                           326376.37
TotalPayBenefits                   362306.21
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72946, dtype: object)
(72947, Id                           72948
EmployeeName          David  Shinn
JobTitle            Deputy Chief 3
BasePay                   278964.0
OvertimePay                    0.0
OtherPay                   6428.79
Benefits                  76680.57
TotalPay                 285392.79
TotalPayBenefits         362073.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72947, dtype: object)
(72948, Id                                         72949
EmployeeName                     Arthur W Kenney
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                213308.64
OvertimePay                             49139.25
OtherPay                                36262.42
Benefits                                60756.95
TotalPay                               298710.31
TotalPayBenefits                       359467.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72948, dtype: object)
(72949, Id                                           72950
EmployeeName                        Lorrie A Kalos
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.49
OvertimePay                               87457.68
OtherPay                                  28003.53
Benefits                                  57030.95
TotalPay                                  301697.7
TotalPayBenefits                         358728.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72949, dtype: object)
(72950, Id                           72951
EmployeeName          Lyn  Tomioka
JobTitle            Deputy Chief 3
BasePay                   278964.0
OvertimePay                    0.0
OtherPay                   3536.35
Benefits                  76113.13
TotalPay                 282500.35
TotalPayBenefits         358613.48
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72950, dtype: object)
(72951, Id                             72952
EmployeeName        Denise A Schmitt
JobTitle              Deputy Chief 3
BasePay                     278964.0
OvertimePay                      0.0
OtherPay                     3536.39
Benefits                    75367.15
TotalPay                   282500.39
TotalPayBenefits           357867.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72951, dtype: object)
(72952, Id                                           72953
EmployeeName                    Rudy J Castellanos
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.42
OvertimePay                               94274.25
OtherPay                                  19022.95
Benefits                                  55351.53
TotalPay                                 299533.62
TotalPayBenefits                         354885.15
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72952, dtype: object)
(72953, Id                                     72954
EmployeeName                   Susan  Currin
JobTitle            Adm, SFGH Medical Center
BasePay                             271831.5
OvertimePay                              0.0
OtherPay                              5000.0
Benefits                            75511.72
TotalPay                            276831.5
TotalPayBenefits                   352343.22
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72953, dtype: object)
(72954, Id                                           72955
EmployeeName                       Thomas F Abbott
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.41
OvertimePay                               84382.38
OtherPay                                  23279.44
Benefits                                  56184.01
TotalPay                                 293898.23
TotalPayBenefits                         350082.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72954, dtype: object)
(72955, Id                          72956
EmployeeName        Naomi M Kelly
JobTitle              Dept Head V
BasePay                  270641.5
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                 74867.87
TotalPay                 273641.5
TotalPayBenefits        348509.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72955, dtype: object)
(72956, Id                           72957
EmployeeName        Trent E Rhorer
JobTitle               Dept Head V
BasePay                  270641.56
OvertimePay                    0.0
OtherPay                    3000.0
Benefits                  74769.34
TotalPay                 273641.56
TotalPayBenefits          348410.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72956, dtype: object)
(72957, Id                             72958
EmployeeName        Barbara A Garcia
JobTitle                 Dept Head V
BasePay                    270591.04
OvertimePay                      0.0
OtherPay                      3050.5
Benefits                    74769.33
TotalPay                   273641.54
TotalPayBenefits           348410.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72957, dtype: object)
(72958, Id                                         72959
EmployeeName                     Robert F Postel
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                212244.54
OvertimePay                              62490.6
OtherPay                                13450.16
Benefits                                58778.57
TotalPay                                288185.3
TotalPayBenefits                       346963.87
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72958, dtype: object)
(72959, Id                                      72960
EmployeeName                 Jeffrey J Barden
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                         124293.83
OtherPay                             18151.93
Benefits                             49001.55
TotalPay                            297620.25
TotalPayBenefits                     346621.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72959, dtype: object)
(72960, Id                                           72961
EmployeeName                         Pete L Fay Jr
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186213.86
OvertimePay                               77586.66
OtherPay                                  25324.73
Benefits                                   56524.4
TotalPay                                 289125.25
TotalPayBenefits                         345649.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72960, dtype: object)
(72961, Id                                           72962
EmployeeName                         Khairul A Ali
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.44
OvertimePay                               75564.72
OtherPay                                  27004.09
Benefits                                  56838.21
TotalPay                                 288805.25
TotalPayBenefits                         345643.46
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72961, dtype: object)
(72962, Id                                  72963
EmployeeName        Benjamin L Rosenfield
JobTitle                       Controller
BasePay                         270641.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         74144.73
TotalPay                        270641.53
TotalPayBenefits                344786.26
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 72962, dtype: object)
(72963, Id                          72964
EmployeeName          Jay P Huish
JobTitle              Dept Head V
BasePay                  270641.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 74144.73
TotalPay                 270641.5
TotalPayBenefits        344786.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72963, dtype: object)
(72964, Id                           72965
EmployeeName         Whitney P Yee
JobTitle            Deputy Sheriff
BasePay                    95123.0
OvertimePay              196689.18
OtherPay                  16622.66
Benefits                  36125.49
TotalPay                 308434.84
TotalPayBenefits         344560.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 72964, dtype: object)
(72965, Id                                           72966
EmployeeName                         John A Hickey
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.41
OvertimePay                               76789.03
OtherPay                                  25476.27
Benefits                                  55049.73
TotalPay                                 288501.71
TotalPayBenefits                         343551.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72965, dtype: object)
(72966, Id                                           72967
EmployeeName                        Brendan A Ward
JobTitle            Battalion Chief, Fire Suppress
BasePay                                   96504.32
OvertimePay                               53142.28
OtherPay                                 163495.64
Benefits                                  28483.46
TotalPay                                 313142.24
TotalPayBenefits                          341625.7
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72966, dtype: object)
(72967, Id                                         72968
EmployeeName                       Kevin M Burke
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                213308.64
OvertimePay                             31381.85
OtherPay                                31645.34
Benefits                                62571.89
TotalPay                               276335.83
TotalPayBenefits                       338907.72
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72967, dtype: object)
(72968, Id                                           72969
EmployeeName                     Kirk W Richardson
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.43
OvertimePay                               64378.67
OtherPay                                  28212.79
Benefits                                  57083.79
TotalPay                                 278827.89
TotalPayBenefits                         335911.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72968, dtype: object)
(72969, Id                               72970
EmployeeName        Shannon E Sakowski
JobTitle                   Anesthetist
BasePay                      235223.07
OvertimePay                    5846.54
OtherPay                      23867.99
Benefits                      69842.28
TotalPay                      264937.6
TotalPayBenefits             334779.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72969, dtype: object)
(72970, Id                                           72971
EmployeeName                          Edmund G Dea
JobTitle            Battalion Chief, Fire Suppress
BasePay                                   185517.0
OvertimePay                               86101.81
OtherPay                                  11624.87
Benefits                                  50738.16
TotalPay                                 283243.68
TotalPayBenefits                         333981.84
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72970, dtype: object)
(72971, Id                                           72972
EmployeeName                      Michael R Bryant
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.46
OvertimePay                               63449.47
OtherPay                                  27004.11
Benefits                                  56838.19
TotalPay                                 276690.04
TotalPayBenefits                         333528.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72971, dtype: object)
(72972, Id                                      72973
EmployeeName                 Michael W Delane
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          97138.34
OtherPay                             28657.27
Benefits                             51253.34
TotalPay                            280970.09
TotalPayBenefits                    332223.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72972, dtype: object)
(72973, Id                                      72974
EmployeeName               Frederick  Binkley
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.28
OvertimePay                         132615.09
OtherPay                             18656.86
Benefits                             45326.78
TotalPay                            286416.23
TotalPayBenefits                    331743.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72973, dtype: object)
(72974, Id                                      72975
EmployeeName                Joseph D Driscoll
JobTitle            Captain, Fire Suppression
BasePay                              155174.5
OvertimePay                          98112.27
OtherPay                             29079.97
Benefits                             49073.13
TotalPay                            282366.74
TotalPayBenefits                    331439.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72974, dtype: object)
(72975, Id                                     72976
EmployeeName              Kenneth A Lombardi
JobTitle            Assistant Deputy Chief 2
BasePay                             239247.0
OvertimePay                              0.0
OtherPay                            19855.26
Benefits                            68856.99
TotalPay                           259102.26
TotalPayBenefits                   327959.25
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72975, dtype: object)
(72976, Id                                      72977
EmployeeName              Michael  Castagnola
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          95616.88
OtherPay                              26390.4
Benefits                             50716.57
TotalPay                            277181.77
TotalPayBenefits                    327898.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72976, dtype: object)
(72977, Id                             72978
EmployeeName        Thomas E Newland
JobTitle                 Inspector 3
BasePay                    112044.08
OvertimePay                 38227.03
OtherPay                    144343.3
Benefits                    32588.44
TotalPay                   294614.41
TotalPayBenefits           327202.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72977, dtype: object)
(72978, Id                                      72979
EmployeeName                  Terry W Smerdel
JobTitle            Captain, Fire Suppression
BasePay                             155174.51
OvertimePay                         110300.99
OtherPay                             12004.32
Benefits                             48172.48
TotalPay                            277479.82
TotalPayBenefits                     325652.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72978, dtype: object)
(72979, Id                                      72980
EmployeeName                Kenneth C Cordero
JobTitle            Captain, Fire Suppression
BasePay                             153763.83
OvertimePay                         103107.28
OtherPay                             19538.18
Benefits                             49155.87
TotalPay                            276409.29
TotalPayBenefits                    325565.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72979, dtype: object)
(72980, Id                                           72981
EmployeeName                         Kevin W Smith
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.47
OvertimePay                               47959.88
OtherPay                                  33067.83
Benefits                                  57855.78
TotalPay                                 267264.18
TotalPayBenefits                         325119.96
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72980, dtype: object)
(72981, Id                            72982
EmployeeName        Monique A Moyer
JobTitle              Port Director
BasePay                    253895.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   71034.86
TotalPay                   253895.0
TotalPayBenefits          324929.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72981, dtype: object)
(72982, Id                                     72983
EmployeeName                     Jose L Velo
JobTitle            Assistant Deputy Chief 2
BasePay                            239247.05
OvertimePay                              0.0
OtherPay                            14354.82
Benefits                            70323.94
TotalPay                           253601.87
TotalPayBenefits                   323925.81
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72982, dtype: object)
(72983, Id                                         72984
EmployeeName                      Jeffrey  Myers
JobTitle            Emergency Medical Svcs Chief
BasePay                                 239247.0
OvertimePay                                  0.0
OtherPay                                14354.82
Benefits                                70323.94
TotalPay                               253601.82
TotalPayBenefits                       323925.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 72983, dtype: object)
(72984, Id                             72985
EmployeeName        Michael P Carlin
JobTitle                   Dep Dir V
BasePay                    249808.51
OvertimePay                      0.0
OtherPay                      3047.1
Benefits                    70898.43
TotalPay                   252855.61
TotalPayBenefits           323754.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72984, dtype: object)
(72985, Id                             72986
EmployeeName        James A Calonico
JobTitle                Lieutenant 3
BasePay                     90922.97
OvertimePay                 18205.01
OtherPay                   189755.52
Benefits                    24701.31
TotalPay                    298883.5
TotalPayBenefits           323584.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 72985, dtype: object)
(72986, Id                                     72987
EmployeeName                  Kyle J Merkins
JobTitle            Assistant Deputy Chief 2
BasePay                            239247.04
OvertimePay                              0.0
OtherPay                            14354.82
Benefits                            67951.69
TotalPay                           253601.86
TotalPayBenefits                   321553.55
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 72986, dtype: object)
(72987, Id                          72988
EmployeeName         Sarah E Cary
JobTitle              Anesthetist
BasePay                 230358.81
OvertimePay               4841.92
OtherPay                 19088.73
Benefits                 67188.29
TotalPay                254289.46
TotalPayBenefits        321477.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72987, dtype: object)
(72988, Id                                      72989
EmployeeName                   Oscar  Cabrera
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          127620.5
OtherPay                              13695.5
Benefits                             44513.94
TotalPay                            276460.27
TotalPayBenefits                    320974.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72988, dtype: object)
(72989, Id                               72990
EmployeeName           John J Haley Jr
JobTitle            Deputy Dir II, MTA
BasePay                       245022.2
OvertimePay                        0.0
OtherPay                        3042.9
Benefits                      72361.43
TotalPay                      248065.1
TotalPayBenefits             320426.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72989, dtype: object)
(72990, Id                               72991
EmployeeName        Shelley M Mitchell
JobTitle                   Anesthetist
BasePay                      235141.35
OvertimePay                    5816.17
OtherPay                      11804.86
Benefits                      67326.09
TotalPay                     252762.38
TotalPayBenefits             320088.47
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72990, dtype: object)
(72991, Id                            72992
EmployeeName        Hector M Sainez
JobTitle                Commander 3
BasePay                    220870.3
OvertimePay                 2069.61
OtherPay                   39552.87
Benefits                   55782.82
TotalPay                  262492.78
TotalPayBenefits           318275.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 72991, dtype: object)
(72992, Id                                        72993
EmployeeName                      Douglas  Riba
JobTitle            Incident Support Specialist
BasePay                                127392.1
OvertimePay                           125354.95
OtherPay                                20417.6
Benefits                               44516.45
TotalPay                              273164.65
TotalPayBenefits                       317681.1
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72992, dtype: object)
(72993, Id                          72994
EmployeeName         Tryg D McCoy
JobTitle                Dep Dir V
BasePay                 233901.06
OvertimePay                   0.0
OtherPay                  13587.0
Benefits                 70163.36
TotalPay                247488.06
TotalPayBenefits        317651.42
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 72993, dtype: object)
(72994, Id                                      72995
EmployeeName                  Douglas  Spikes
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                         120168.35
OtherPay                             16893.02
Benefits                             45309.07
TotalPay                            272205.64
TotalPayBenefits                    317514.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72994, dtype: object)
(72995, Id                               72996
EmployeeName         Theresa A Dentoni
JobTitle            Nursing Supervisor
BasePay                       207209.1
OvertimePay                        0.0
OtherPay                       50041.7
Benefits                      60009.62
TotalPay                      257250.8
TotalPayBenefits             317260.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 72995, dtype: object)
(72996, Id                                        72997
EmployeeName                     George  Fouras
JobTitle            Senior Physician Specialist
BasePay                               210310.28
OvertimePay                                 0.0
OtherPay                               45061.55
Benefits                               60303.65
TotalPay                              255371.83
TotalPayBenefits                      315675.48
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 72996, dtype: object)
(72997, Id                                           72998
EmployeeName                            Rex J Hale
JobTitle            Battalion Chief, Fire Suppress
BasePay                                   184543.4
OvertimePay                               46156.13
OtherPay                                  28157.61
Benefits                                  56631.64
TotalPay                                 258857.14
TotalPayBenefits                         315488.78
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72997, dtype: object)
(72998, Id                                           72999
EmployeeName                       Victor H Wyrsch
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186222.37
OvertimePay                               45156.82
OtherPay                                  29162.34
Benefits                                   54692.7
TotalPay                                 260541.53
TotalPayBenefits                         315234.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 72998, dtype: object)
(72999, Id                                      73000
EmployeeName                   Edward  Roland
JobTitle            Captain, Fire Suppression
BasePay                             152581.18
OvertimePay                          86631.04
OtherPay                             25753.84
Benefits                             49831.26
TotalPay                            264966.06
TotalPayBenefits                    314797.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 72999, dtype: object)
(73000, Id                                           73001
EmployeeName                        Kevin D Taylor
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.48
OvertimePay                               49833.05
OtherPay                                  23690.24
Benefits                                  54873.31
TotalPay                                 259759.77
TotalPayBenefits                         314633.08
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73000, dtype: object)
(73001, Id                                           73002
EmployeeName                        Samuel  Romero
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.47
OvertimePay                                47711.1
OtherPay                                  23922.83
Benefits                                  56265.05
TotalPay                                  257870.4
TotalPayBenefits                         314135.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73001, dtype: object)
(73002, Id                                           73003
EmployeeName                    Zachary W Pumphrey
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  184543.35
OvertimePay                               50848.27
OtherPay                                  23067.79
Benefits                                  55646.59
TotalPay                                 258459.41
TotalPayBenefits                          314106.0
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73002, dtype: object)
(73003, Id                              73004
EmployeeName           George  Gascon
JobTitle            District Attorney
BasePay                     252221.06
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     61073.28
TotalPay                    252221.06
TotalPayBenefits            313294.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73003, dtype: object)
(73004, Id                                         73005
EmployeeName                   Shane G Francisco
JobTitle            Lieutenant, Fire Suppression
BasePay                                143076.86
OvertimePay                             94814.22
OtherPay                                 25476.2
Benefits                                48175.64
TotalPay                               263367.28
TotalPayBenefits                       311542.92
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73004, dtype: object)
(73005, Id                          73006
EmployeeName         Mark A Smith
JobTitle              Anesthetist
BasePay                 228250.31
OvertimePay               6538.39
OtherPay                 11259.84
Benefits                  65228.2
TotalPay                246048.54
TotalPayBenefits        311276.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73005, dtype: object)
(73006, Id                            73007
EmployeeName        Ai Kyung  Chung
JobTitle                Anesthetist
BasePay                   230943.59
OvertimePay                 4549.33
OtherPay                    9836.61
Benefits                   65149.75
TotalPay                  245329.53
TotalPayBenefits          310479.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73006, dtype: object)
(73007, Id                                        73008
EmployeeName                    Siu-Kwan V Chow
JobTitle            Senior Physician Specialist
BasePay                               193355.19
OvertimePay                                 0.0
OtherPay                               60616.46
Benefits                               56474.05
TotalPay                              253971.65
TotalPayBenefits                       310445.7
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73007, dtype: object)
(73008, Id                                         73009
EmployeeName                Matthew J McNaughton
JobTitle            Asst Chf of Dept (Fire Dept)
BasePay                                 215265.6
OvertimePay                               660.47
OtherPay                                 31213.6
Benefits                                63177.62
TotalPay                               247139.67
TotalPayBenefits                       310317.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73008, dtype: object)
(73009, Id                                        73010
EmployeeName                        Wing C Chan
JobTitle            Incident Support Specialist
BasePay                               126233.99
OvertimePay                           124437.26
OtherPay                               15779.36
Benefits                               43243.97
TotalPay                              266450.61
TotalPayBenefits                      309694.58
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73009, dtype: object)
(73010, Id                                         73011
EmployeeName                      Robert J Lopez
JobTitle            Lieutenant, Fire Suppression
BasePay                                135377.77
OvertimePay                            105011.07
OtherPay                                25814.21
Benefits                                42960.51
TotalPay                               266203.05
TotalPayBenefits                       309163.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73010, dtype: object)
(73011, Id                                           73012
EmployeeName                       Denise L Newman
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  185827.33
OvertimePay                               52103.26
OtherPay                                  17422.37
Benefits                                  53570.83
TotalPay                                 255352.96
TotalPayBenefits                         308923.79
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73011, dtype: object)
(73012, Id                                        73013
EmployeeName                   Anthony J Dumont
JobTitle            Captain, Emergency Med Svcs
BasePay                                154910.8
OvertimePay                            83497.66
OtherPay                               21049.21
Benefits                               49064.97
TotalPay                              259457.67
TotalPayBenefits                      308522.64
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73012, dtype: object)
(73013, Id                               73014
EmployeeName             Ana C Sampera
JobTitle            Nursing Supervisor
BasePay                      205996.02
OvertimePay                        0.0
OtherPay                      39139.25
Benefits                      61406.22
TotalPay                     245135.27
TotalPayBenefits             306541.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73013, dtype: object)
(73014, Id                               73015
EmployeeName            Schlene D Peet
JobTitle            Nursing Supervisor
BasePay                      194136.45
OvertimePay                        0.0
OtherPay                       49340.3
Benefits                      62943.89
TotalPay                     243476.75
TotalPayBenefits             306420.64
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73014, dtype: object)
(73015, Id                                           73016
EmployeeName                    Michael I Thompson
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.45
OvertimePay                               48063.51
OtherPay                                  16896.64
Benefits                                  54863.21
TotalPay                                  251196.6
TotalPayBenefits                         306059.81
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73015, dtype: object)
(73016, Id                                      73017
EmployeeName                Nicol P Juratovac
JobTitle            Captain, Fire Suppression
BasePay                             170425.59
OvertimePay                          70750.05
OtherPay                             13716.48
Benefits                             50955.17
TotalPay                            254892.12
TotalPayBenefits                    305847.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73016, dtype: object)
(73017, Id                              73018
EmployeeName        Richard L Corriea
JobTitle                  Commander 3
BasePay                     226719.05
OvertimePay                       0.0
OtherPay                     19701.46
Benefits                     59161.33
TotalPay                    246420.51
TotalPayBenefits            305581.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73017, dtype: object)
(73018, Id                             73019
EmployeeName        Ernest L Johnson
JobTitle                 Firefighter
BasePay                    109390.44
OvertimePay                136843.65
OtherPay                    20188.91
Benefits                     39131.7
TotalPay                    266423.0
TotalPayBenefits            305554.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73018, dtype: object)
(73019, Id                               73020
EmployeeName           Leslie A Dubbin
JobTitle            Nursing Supervisor
BasePay                       199806.0
OvertimePay                        0.0
OtherPay                      47288.16
Benefits                      58281.66
TotalPay                     247094.16
TotalPayBenefits             305375.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73019, dtype: object)
(73020, Id                                      73021
EmployeeName                      Erika V Hoo
JobTitle            Captain, Fire Suppression
BasePay                             153763.81
OvertimePay                          93519.64
OtherPay                              9941.26
Benefits                             47209.84
TotalPay                            257224.71
TotalPayBenefits                    304434.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73020, dtype: object)
(73021, Id                           73022
EmployeeName         Barry J Bloom
JobTitle            Deputy Sheriff
BasePay                   95123.08
OvertimePay              156077.49
OtherPay                  17018.22
Benefits                  35837.91
TotalPay                 268218.79
TotalPayBenefits          304056.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73021, dtype: object)
(73022, Id                                           73023
EmployeeName                              Ken  Yee
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  172118.62
OvertimePay                               51126.33
OtherPay                                  26722.84
Benefits                                   53939.3
TotalPay                                 249967.79
TotalPayBenefits                         303907.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73022, dtype: object)
(73023, Id                          73024
EmployeeName           Alvin  Lau
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay             126145.47
OtherPay                 20651.14
Benefits                 41118.06
TotalPay                262690.08
TotalPayBenefits        303808.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73023, dtype: object)
(73024, Id                                      73025
EmployeeName                 Pierre  Francois
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          71137.89
OtherPay                             26361.35
Benefits                             50863.96
TotalPay                            252673.72
TotalPayBenefits                    303537.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73024, dtype: object)
(73025, Id                               73026
EmployeeName        Elizabeth  Johnson
JobTitle                  Manager VIII
BasePay                      232964.99
OvertimePay                        0.0
OtherPay                       2706.56
Benefits                      67600.67
TotalPay                     235671.55
TotalPayBenefits             303272.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73025, dtype: object)
(73026, Id                             73027
EmployeeName        Dennis J Herrera
JobTitle               City Attorney
BasePay                    234738.18
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    67386.15
TotalPay                   234738.18
TotalPayBenefits           302124.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73026, dtype: object)
(73027, Id                          73028
EmployeeName        John S Rahaim
JobTitle             Dept Head IV
BasePay                 234775.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 67273.47
TotalPay                234775.53
TotalPayBenefits         302049.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73027, dtype: object)
(73028, Id                                      73029
EmployeeName               Christopher  Posey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          104250.9
OtherPay                             16997.23
Benefits                             45291.98
TotalPay                            256392.38
TotalPayBenefits                    301684.36
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73028, dtype: object)
(73029, Id                                        73030
EmployeeName                     James W Prince
JobTitle            Senior Physician Specialist
BasePay                               185659.77
OvertimePay                                 0.0
OtherPay                               59134.35
Benefits                               56824.02
TotalPay                              244794.12
TotalPayBenefits                      301618.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73029, dtype: object)
(73030, Id                               73031
EmployeeName         Nela C Ponferrada
JobTitle            Nursing Supervisor
BasePay                       205996.0
OvertimePay                        0.0
OtherPay                      37767.47
Benefits                      57809.23
TotalPay                     243763.47
TotalPayBenefits              301572.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73030, dtype: object)
(73031, Id                                     73032
EmployeeName                 Thomas E Harvey
JobTitle            Assistant Deputy Chief 2
BasePay                            124054.04
OvertimePay                              0.0
OtherPay                           141068.48
Benefits                            35929.84
TotalPay                           265122.52
TotalPayBenefits                   301052.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 73031, dtype: object)
(73032, Id                                      73033
EmployeeName                Gregory L Stewart
JobTitle            Captain, Fire Suppression
BasePay                             155174.47
OvertimePay                          72629.05
OtherPay                             22979.88
Benefits                             50257.16
TotalPay                             250783.4
TotalPayBenefits                    301040.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73032, dtype: object)
(73033, Id                                        73034
EmployeeName                    Alexander  Chen
JobTitle            Senior Physician Specialist
BasePay                                200430.4
OvertimePay                                 0.0
OtherPay                               41705.68
Benefits                                57963.0
TotalPay                              242136.08
TotalPayBenefits                      300099.08
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73033, dtype: object)
(73034, Id                            73035
EmployeeName             Mary M Tse
JobTitle            Lieut,Fire Prev
BasePay                    152820.0
OvertimePay                 79551.1
OtherPay                    23392.2
Benefits                   44332.22
TotalPay                   255763.3
TotalPayBenefits          300095.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73034, dtype: object)
(73035, Id                                        73036
EmployeeName                James M Fazackerley
JobTitle            Captain, Emergency Med Svcs
BasePay                               155174.49
OvertimePay                            75791.23
OtherPay                               19396.81
Benefits                               49531.06
TotalPay                              250362.53
TotalPayBenefits                      299893.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73035, dtype: object)
(73036, Id                                      73037
EmployeeName                  Pablo  Siguenza
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          74015.95
OtherPay                             20821.02
Benefits                             49706.29
TotalPay                            250011.46
TotalPayBenefits                    299717.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73036, dtype: object)
(73037, Id                              73038
EmployeeName        David Z Krikorian
JobTitle                  Firefighter
BasePay                     115893.44
OvertimePay                 122732.77
OtherPay                     19342.14
Benefits                     41207.03
TotalPay                    257968.35
TotalPayBenefits            299175.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73037, dtype: object)
(73038, Id                             73039
EmployeeName              Sam W Yuen
JobTitle            Police Officer 2
BasePay                    121068.03
OvertimePay                 95312.09
OtherPay                    45937.73
Benefits                    36571.15
TotalPay                   262317.85
TotalPayBenefits            298889.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73038, dtype: object)
(73039, Id                               73040
EmployeeName        Anna L Cuthbertson
JobTitle                Police Officer
BasePay                      116478.01
OvertimePay                    3343.37
OtherPay                     124034.01
Benefits                      54740.34
TotalPay                     243855.39
TotalPayBenefits             298595.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73039, dtype: object)
(73040, Id                             73041
EmployeeName        Ross B Mirkarimi
JobTitle             Sheriff (SFERS)
BasePay                    218622.84
OvertimePay                      0.0
OtherPay                     13116.8
Benefits                    66811.47
TotalPay                   231739.64
TotalPayBenefits           298551.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73040, dtype: object)
(73041, Id                                        73042
EmployeeName                      Hagop  Hajian
JobTitle            Senior Physician Specialist
BasePay                               197599.52
OvertimePay                                 0.0
OtherPay                               43200.63
Benefits                               57487.94
TotalPay                              240800.15
TotalPayBenefits                      298288.09
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73041, dtype: object)
(73042, Id                            73043
EmployeeName        John F Darmanin
JobTitle            Lieut,Fire Prev
BasePay                    152820.0
OvertimePay                70259.11
OtherPay                   29923.75
Benefits                   45109.24
TotalPay                  253002.86
TotalPayBenefits           298112.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73042, dtype: object)
(73043, Id                               73044
EmployeeName           Roland  Pickens
JobTitle            Administrator, DPH
BasePay                      230840.16
OvertimePay                        0.0
OtherPay                          40.8
Benefits                      66685.97
TotalPay                     230880.96
TotalPayBenefits             297566.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73043, dtype: object)
(73044, Id                               73045
EmployeeName        Amparo C Rodriguez
JobTitle                 Nurse Manager
BasePay                       181263.0
OvertimePay                    9656.64
OtherPay                      48216.84
Benefits                      58123.91
TotalPay                     239136.48
TotalPayBenefits             297260.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73044, dtype: object)
(73045, Id                                      73046
EmployeeName             Christopher D Madsen
JobTitle            Captain, Fire Suppression
BasePay                             154479.11
OvertimePay                          72833.25
OtherPay                             19945.23
Benefits                             49394.96
TotalPay                            247257.59
TotalPayBenefits                    296652.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73045, dtype: object)
(73046, Id                            73047
EmployeeName        Edward C Cheung
JobTitle                 Sergeant 3
BasePay                   143488.14
OvertimePay                74608.35
OtherPay                   34399.77
Benefits                   43927.74
TotalPay                  252496.26
TotalPayBenefits           296424.0
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73046, dtype: object)
(73047, Id                                         73048
EmployeeName                        Edward Y Chu
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                              96779.3
OtherPay                                18024.72
Benefits                                45491.21
TotalPay                               250706.99
TotalPayBenefits                        296198.2
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73047, dtype: object)
(73048, Id                            73049
EmployeeName        Michael J Moran
JobTitle                  Captain 3
BasePay                   205222.01
OvertimePay                 4842.18
OtherPay                   31314.45
Benefits                   54764.79
TotalPay                  241378.64
TotalPayBenefits          296143.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73048, dtype: object)
(73049, Id                                           73050
EmployeeName                         John C Cremen
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.46
OvertimePay                               37140.11
OtherPay                                  17854.91
Benefits                                  54406.51
TotalPay                                 241231.48
TotalPayBenefits                         295637.99
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73049, dtype: object)
(73050, Id                           73051
EmployeeName        John J Garrity
JobTitle               Commander 3
BasePay                  218612.05
OvertimePay                    0.0
OtherPay                  19215.15
Benefits                  57627.23
TotalPay                  237827.2
TotalPayBenefits         295454.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73050, dtype: object)
(73051, Id                                       73052
EmployeeName                    Milton N Estes
JobTitle            Supervising Physician Spec
BasePay                              219623.79
OvertimePay                                0.0
OtherPay                               20130.0
Benefits                              55654.18
TotalPay                             239753.79
TotalPayBenefits                     295407.97
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73051, dtype: object)
(73052, Id                                           73053
EmployeeName                Sharon A McCole-Wicher
JobTitle            Nursing Supervisor Psychiatric
BasePay                                  196277.15
OvertimePay                                    0.0
OtherPay                                  42221.52
Benefits                                  56631.48
TotalPay                                 238498.67
TotalPayBenefits                         295130.15
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73052, dtype: object)
(73053, Id                           73054
EmployeeName        Charlie  Orkes
JobTitle               Commander 3
BasePay                   226719.0
OvertimePay                    0.0
OtherPay                  10631.98
Benefits                  57445.51
TotalPay                 237350.98
TotalPayBenefits         294796.49
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73053, dtype: object)
(73054, Id                          73055
EmployeeName        Alan L Harvey
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              106220.1
OtherPay                 28071.73
Benefits                 43336.09
TotalPay                251248.55
TotalPayBenefits        294584.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73054, dtype: object)
(73055, Id                                      73056
EmployeeName                 Patrick D D'Arcy
JobTitle            Captain, Fire Suppression
BasePay                             152823.37
OvertimePay                          73137.42
OtherPay                             19818.45
Benefits                             48784.36
TotalPay                            245779.24
TotalPayBenefits                     294563.6
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73055, dtype: object)
(73056, Id                                           73057
EmployeeName                          Alec M Balmy
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   174528.0
OvertimePay                                54900.4
OtherPay                                  16564.18
Benefits                                  48534.35
TotalPay                                 245992.58
TotalPayBenefits                         294526.93
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73056, dtype: object)
(73057, Id                            73058
EmployeeName        Jeffrey  Adachi
JobTitle            Public Defender
BasePay                   228243.61
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   66141.45
TotalPay                  228243.61
TotalPayBenefits          294385.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73057, dtype: object)
(73058, Id                             73059
EmployeeName        Dominic M Celaya
JobTitle                   Captain 3
BasePay                    206820.02
OvertimePay                  4482.29
OtherPay                    27261.92
Benefits                    54873.17
TotalPay                   238564.23
TotalPayBenefits            293437.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73058, dtype: object)
(73059, Id                          73060
EmployeeName        Luis  Herrera
JobTitle             Dept Head IV
BasePay                 225922.65
OvertimePay                   0.0
OtherPay                  1483.77
Benefits                 65984.19
TotalPay                227406.42
TotalPayBenefits        293390.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73059, dtype: object)
(73060, Id                                  73061
EmployeeName        Christopher J Pedrini
JobTitle                        Captain 3
BasePay                         205222.03
OvertimePay                           0.0
OtherPay                         35474.59
Benefits                         52540.32
TotalPay                        240696.62
TotalPayBenefits                293236.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73060, dtype: object)
(73061, Id                            73062
EmployeeName        Todd M Plunkett
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay               116110.34
OtherPay                   19898.46
Benefits                   41044.36
TotalPay                  251902.26
TotalPayBenefits          292946.62
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73061, dtype: object)
(73062, Id                                           73063
EmployeeName                      Kathryn L Ballou
JobTitle            Nursing Supervisor Psychiatric
BasePay                                   199360.0
OvertimePay                                    0.0
OtherPay                                  37213.12
Benefits                                  55932.53
TotalPay                                 236573.12
TotalPayBenefits                         292505.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73062, dtype: object)
(73063, Id                               73064
EmployeeName              Sonali  Bose
JobTitle            Deputy Dir II, MTA
BasePay                      224912.32
OvertimePay                        0.0
OtherPay                       1557.69
Benefits                      65662.83
TotalPay                     226470.01
TotalPayBenefits             292132.84
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73063, dtype: object)
(73064, Id                                         73065
EmployeeName                    John R Stanfield
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.56
OvertimePay                             94542.82
OtherPay                                17799.25
Benefits                                45077.86
TotalPay                               247009.63
TotalPayBenefits                       292087.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73064, dtype: object)
(73065, Id                              73066
EmployeeName        Susan  Buchbinder
JobTitle                 Manager VIII
BasePay                     226112.51
OvertimePay                       0.0
OtherPay                        41.69
Benefits                      65720.3
TotalPay                     226154.2
TotalPayBenefits             291874.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73065, dtype: object)
(73066, Id                             73067
EmployeeName        Kirsten L Barash
JobTitle                 Anesthetist
BasePay                    215546.71
OvertimePay                  4776.22
OtherPay                     9910.51
Benefits                    61545.16
TotalPay                   230233.44
TotalPayBenefits            291778.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73066, dtype: object)
(73067, Id                                       73068
EmployeeName                  Richard  Zercher
JobTitle            Supervising Physician Spec
BasePay                              232896.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              58571.98
TotalPay                             232896.01
TotalPayBenefits                     291467.99
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73067, dtype: object)
(73068, Id                                      73069
EmployeeName                    Rick W Gering
JobTitle            Captain, Fire Suppression
BasePay                             156585.18
OvertimePay                          63547.24
OtherPay                             20924.01
Benefits                             50124.76
TotalPay                            241056.43
TotalPayBenefits                    291181.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73068, dtype: object)
(73069, Id                                      73070
EmployeeName                  Glenn E Kircher
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          76538.29
OtherPay                             11434.82
Benefits                             47844.91
TotalPay                            243147.59
TotalPayBenefits                     290992.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73069, dtype: object)
(73070, Id                                           73071
EmployeeName                         Jesse C Smith
JobTitle            Cfdntal Chf Atty 2,(Cvl&Crmnl)
BasePay                                   224277.5
OvertimePay                                    0.0
OtherPay                                    1089.0
Benefits                                  65587.32
TotalPay                                  225366.5
TotalPayBenefits                         290953.82
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73070, dtype: object)
(73071, Id                                           73072
EmployeeName                      Therese  Stewart
JobTitle            Cfdntal Chf Atty 2,(Cvl&Crmnl)
BasePay                                  224277.49
OvertimePay                                    0.0
OtherPay                                    1088.0
Benefits                                  65587.12
TotalPay                                 225365.49
TotalPayBenefits                         290952.61
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73071, dtype: object)
(73072, Id                                           73073
EmployeeName                         Marisa  Moret
JobTitle            Cfdntal Chf Atty 2,(Cvl&Crmnl)
BasePay                                  224277.51
OvertimePay                                    0.0
OtherPay                                    1088.0
Benefits                                  65488.58
TotalPay                                 225365.51
TotalPayBenefits                         290854.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73072, dtype: object)
(73073, Id                                         73074
EmployeeName                    Robert E Winslow
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             89857.99
OtherPay                                19330.08
Benefits                                45730.12
TotalPay                               245091.04
TotalPayBenefits                       290821.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73073, dtype: object)
(73074, Id                          73075
EmployeeName        Mivic  Hirose
JobTitle             Manager VIII
BasePay                 234247.54
OvertimePay                   0.0
OtherPay                   2423.0
Benefits                 54149.25
TotalPay                236670.54
TotalPayBenefits        290819.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73074, dtype: object)
(73075, Id                                          73076
EmployeeName                       Nathan J Hardy
JobTitle            Marine Engineer of Fire Boats
BasePay                                 153763.81
OvertimePay                              65067.48
OtherPay                                 22295.68
Benefits                                 49681.07
TotalPay                                241126.97
TotalPayBenefits                        290808.04
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 73075, dtype: object)
(73076, Id                          73077
EmployeeName         John F Brown
JobTitle             Manager VIII
BasePay                 225189.06
OvertimePay                   0.0
OtherPay                    41.67
Benefits                 65380.71
TotalPay                225230.73
TotalPayBenefits        290611.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73076, dtype: object)
(73077, Id                               73078
EmployeeName            Regina S Gomez
JobTitle            Nursing Supervisor
BasePay                      197018.52
OvertimePay                        0.0
OtherPay                      37443.54
Benefits                       55476.3
TotalPay                     234462.06
TotalPayBenefits             289938.36
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73077, dtype: object)
(73078, Id                                         73079
EmployeeName                   Kinnie L Jamerson
JobTitle            Lieutenant, Fire Suppression
BasePay                                132103.85
OvertimePay                            102328.81
OtherPay                                11843.58
Benefits                                43377.83
TotalPay                               246276.24
TotalPayBenefits                       289654.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73078, dtype: object)
(73079, Id                                      73080
EmployeeName                    Dustin C Novo
JobTitle            Captain, Fire Suppression
BasePay                             155174.52
OvertimePay                          59621.17
OtherPay                              24217.0
Benefits                             50451.08
TotalPay                            239012.69
TotalPayBenefits                    289463.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73079, dtype: object)
(73080, Id                            73081
EmployeeName        Thomas P Cleary
JobTitle                  Captain 3
BasePay                   206820.03
OvertimePay                 9340.92
OtherPay                   18116.19
Benefits                   55170.93
TotalPay                  234277.14
TotalPayBenefits          289448.07
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73080, dtype: object)
(73081, Id                                           73082
EmployeeName                       Richard E McGee
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.43
OvertimePay                               24303.91
OtherPay                                  22830.72
Benefits                                  55990.17
TotalPay                                 233371.06
TotalPayBenefits                         289361.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73081, dtype: object)
(73082, Id                                       73083
EmployeeName                      Irene I Sung
JobTitle            Supervising Physician Spec
BasePay                              201237.74
OvertimePay                                0.0
OtherPay                              30186.22
Benefits                              57684.13
TotalPay                             231423.96
TotalPayBenefits                     289108.09
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73082, dtype: object)
(73083, Id                                      73084
EmployeeName                   Daniel V Casey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                          89063.44
OtherPay                              20663.2
Benefits                             45457.13
TotalPay                            243642.31
TotalPayBenefits                    289099.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73083, dtype: object)
(73084, Id                                      73085
EmployeeName                   Darryl  Hunter
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          57833.85
OtherPay                             24935.01
Benefits                             50560.53
TotalPay                            237943.35
TotalPayBenefits                    288503.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73084, dtype: object)
(73085, Id                          73086
EmployeeName         Mikail H Ali
JobTitle              Commander 3
BasePay                 225879.34
OvertimePay                   0.0
OtherPay                  6098.76
Benefits                  56367.2
TotalPay                 231978.1
TotalPayBenefits         288345.3
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73085, dtype: object)
(73086, Id                               73087
EmployeeName        Madonna P Valencia
JobTitle            Nursing Supervisor
BasePay                       187967.0
OvertimePay                        0.0
OtherPay                      44674.05
Benefits                      55371.19
TotalPay                     232641.05
TotalPayBenefits             288012.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73086, dtype: object)
(73087, Id                                        73088
EmployeeName                       Stephen C Wu
JobTitle            Senior Physician Specialist
BasePay                               188167.87
OvertimePay                                 0.0
OtherPay                               41785.74
Benefits                               57688.18
TotalPay                              229953.61
TotalPayBenefits                      287641.79
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73087, dtype: object)
(73088, Id                              73089
EmployeeName        Anne M Kronenberg
JobTitle                 Dept Head IV
BasePay                     222186.21
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     64929.68
TotalPay                    222186.21
TotalPayBenefits            287115.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73088, dtype: object)
(73089, Id                                        73090
EmployeeName                     Allen T Turpin
JobTitle            Senior Physician Specialist
BasePay                               216535.59
OvertimePay                                 0.0
OtherPay                               12584.75
Benefits                               57848.64
TotalPay                              229120.34
TotalPayBenefits                      286968.98
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73089, dtype: object)
(73090, Id                               73091
EmployeeName        William M Roualdes
JobTitle                  Lieutenant 3
BasePay                      163674.03
OvertimePay                   58555.85
OtherPay                      17649.25
Benefits                       47028.6
TotalPay                     239879.13
TotalPayBenefits             286907.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73090, dtype: object)
(73091, Id                                           73092
EmployeeName                        Charles  Crane
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  184543.41
OvertimePay                                34916.3
OtherPay                                  13525.31
Benefits                                  53648.23
TotalPay                                 232985.02
TotalPayBenefits                         286633.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73091, dtype: object)
(73092, Id                                  73093
EmployeeName              Nikolas P Lemos
JobTitle            Forensic Toxicologist
BasePay                         202943.72
OvertimePay                           0.0
OtherPay                         30665.98
Benefits                         52839.23
TotalPay                         233609.7
TotalPayBenefits                286448.93
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73092, dtype: object)
(73093, Id                                           73094
EmployeeName                     Kenneth W Cofflin
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   174528.0
OvertimePay                               52802.01
OtherPay                                  10471.68
Benefits                                  48534.35
TotalPay                                 237801.69
TotalPayBenefits                         286336.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73093, dtype: object)
(73094, Id                               73095
EmployeeName         Mercedes C German
JobTitle            Nursing Supervisor
BasePay                      205996.04
OvertimePay                        0.0
OtherPay                      22885.93
Benefits                      57435.41
TotalPay                     228881.97
TotalPayBenefits             286317.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73094, dtype: object)
(73095, Id                            73096
EmployeeName        Mohammed C Nuru
JobTitle               Dept Head IV
BasePay                    221340.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   64929.33
TotalPay                   221340.0
TotalPayBenefits          286269.33
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73095, dtype: object)
(73096, Id                                         73097
EmployeeName                 William R McFarland
JobTitle            Lieutenant, Fire Suppression
BasePay                                135491.11
OvertimePay                             81131.17
OtherPay                                23125.45
Benefits                                46498.43
TotalPay                               239747.73
TotalPayBenefits                       286246.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73096, dtype: object)
(73097, Id                                       73098
EmployeeName                 Catherine T James
JobTitle            Supervising Physician Spec
BasePay                               222510.1
OvertimePay                                0.0
OtherPay                                6835.0
Benefits                              56879.25
TotalPay                              229345.1
TotalPayBenefits                     286224.35
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73097, dtype: object)
(73098, Id                          73099
EmployeeName         Mark B Osuna
JobTitle                Captain 3
BasePay                  206820.0
OvertimePay               7923.08
OtherPay                 17455.81
Benefits                 53580.39
TotalPay                232198.89
TotalPayBenefits        285779.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73098, dtype: object)
(73099, Id                                  73100
EmployeeName                   Mark J Lee
JobTitle            Assistant Inspector 3
BasePay                         143289.02
OvertimePay                      82610.85
OtherPay                         18986.99
Benefits                         40795.88
TotalPay                        244886.86
TotalPayBenefits                285682.74
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73099, dtype: object)
(73100, Id                                       73101
EmployeeName                      Lisa  Golden
JobTitle            Supervising Physician Spec
BasePay                              225896.57
OvertimePay                                0.0
OtherPay                                2295.0
Benefits                              57230.19
TotalPay                             228191.57
TotalPayBenefits                     285421.76
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73100, dtype: object)
(73101, Id                            73102
EmployeeName        Colleen N Riley
JobTitle               Manager VIII
BasePay                   221281.82
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   64067.62
TotalPay                  221281.82
TotalPayBenefits          285349.44
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73101, dtype: object)
(73102, Id                               73103
EmployeeName            Patricia  Carr
JobTitle            Nursing Supervisor
BasePay                      197982.02
OvertimePay                        0.0
OtherPay                       29725.7
Benefits                      57542.65
TotalPay                     227707.72
TotalPayBenefits             285250.37
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73102, dtype: object)
(73103, Id                                         73104
EmployeeName                      Sean P Bonetti
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             86797.27
OtherPay                                16987.97
Benefits                                45434.29
TotalPay                               239688.21
TotalPayBenefits                        285122.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73103, dtype: object)
(73104, Id                                        73105
EmployeeName                     Bonnie  Taylor
JobTitle            Senior Physician Specialist
BasePay                               197599.51
OvertimePay                                 0.0
OtherPay                               29640.64
Benefits                               57487.94
TotalPay                              227240.15
TotalPayBenefits                      284728.09
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73104, dtype: object)
(73105, Id                               73106
EmployeeName            Mary J Hansell
JobTitle            Nursing Supervisor
BasePay                      204851.02
OvertimePay                        0.0
OtherPay                       20485.1
Benefits                      59353.67
TotalPay                     225336.12
TotalPayBenefits             284689.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73105, dtype: object)
(73106, Id                          73107
EmployeeName         Jimmie H Lew
JobTitle              Inspector 3
BasePay                 143289.02
OvertimePay              55313.08
OtherPay                 43475.39
Benefits                 42550.06
TotalPay                242077.49
TotalPayBenefits        284627.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73106, dtype: object)
(73107, Id                                   73108
EmployeeName        Robert P O'Sullivan Jr
JobTitle                         Captain 3
BasePay                          205222.02
OvertimePay                        1478.14
OtherPay                          25047.67
Benefits                          52683.16
TotalPay                         231747.83
TotalPayBenefits                 284430.99
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73107, dtype: object)
(73108, Id                                        73109
EmployeeName                   Michael S Marcin
JobTitle            Senior Physician Specialist
BasePay                                187101.5
OvertimePay                                 0.0
OtherPay                               39825.91
Benefits                                57463.6
TotalPay                              226927.41
TotalPayBenefits                      284391.01
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73108, dtype: object)
(73109, Id                                73110
EmployeeName        Patricia A O'Connor
JobTitle             Nursing Supervisor
BasePay                        193778.0
OvertimePay                         0.0
OtherPay                       35814.17
Benefits                       54749.32
TotalPay                      229592.17
TotalPayBenefits              284341.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73109, dtype: object)
(73110, Id                                           73111
EmployeeName                    Raemona E Williams
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  184592.81
OvertimePay                               25537.04
OtherPay                                  19075.12
Benefits                                  54939.45
TotalPay                                 229204.97
TotalPayBenefits                         284144.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73110, dtype: object)
(73111, Id                                           73112
EmployeeName                   Margaret A Rykowski
JobTitle            Nursing Supervisor Psychiatric
BasePay                                  205996.01
OvertimePay                                    0.0
OtherPay                                  20599.61
Benefits                                  57323.38
TotalPay                                 226595.62
TotalPayBenefits                          283919.0
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73111, dtype: object)
(73112, Id                          73113
EmployeeName         Garret N Tom
JobTitle                Captain 3
BasePay                  206820.0
OvertimePay               2333.91
OtherPay                 19130.11
Benefits                 55152.61
TotalPay                228284.02
TotalPayBenefits        283436.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73112, dtype: object)
(73113, Id                                      73114
EmployeeName                    Dale C Carnes
JobTitle            Captain, Fire Suppression
BasePay                             210377.55
OvertimePay                           3481.83
OtherPay                             13338.15
Benefits                             56093.29
TotalPay                            227197.53
TotalPayBenefits                    283290.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73113, dtype: object)
(73114, Id                                       73115
EmployeeName                     Rajiv  Bhatia
JobTitle            Supervising Physician Spec
BasePay                              225896.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              57230.19
TotalPay                             225896.53
TotalPayBenefits                     283126.72
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73114, dtype: object)
(73115, Id                                       73116
EmployeeName               William C McFarland
JobTitle            Supervising Physician Spec
BasePay                               225896.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              57230.19
TotalPay                              225896.5
TotalPayBenefits                     283126.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73115, dtype: object)
(73116, Id                                       73117
EmployeeName                    Tomas J Aragon
JobTitle            Supervising Physician Spec
BasePay                               225896.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              57230.19
TotalPay                              225896.5
TotalPayBenefits                     283126.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73116, dtype: object)
(73117, Id                                      73118
EmployeeName               Clyde M Christobal
JobTitle            Captain, Fire Suppression
BasePay                              155174.5
OvertimePay                           45506.1
OtherPay                             31717.47
Benefits                              50587.0
TotalPay                            232398.07
TotalPayBenefits                    282985.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73117, dtype: object)
(73118, Id                              73119
EmployeeName        Brian P Delahunty
JobTitle                 Lieutenant 3
BasePay                     162919.07
OvertimePay                  20859.98
OtherPay                     52807.94
Benefits                     46264.63
TotalPay                    236586.99
TotalPayBenefits            282851.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73118, dtype: object)
(73119, Id                               73120
EmployeeName        David  Martinovich
JobTitle                   Inspector 3
BasePay                       143364.5
OvertimePay                    50338.4
OtherPay                      44521.72
Benefits                      44135.19
TotalPay                     238224.62
TotalPayBenefits             282359.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73119, dtype: object)
(73120, Id                                        73121
EmployeeName                      Ray  Crawford
JobTitle            Captain, Emergency Med Svcs
BasePay                                154872.2
OvertimePay                             57120.3
OtherPay                               21321.91
Benefits                               48761.58
TotalPay                              233314.41
TotalPayBenefits                      282075.99
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73120, dtype: object)
(73121, Id                                         73122
EmployeeName                  Michael M Thompson
JobTitle            Lieutenant, Fire Suppression
BasePay                                133864.45
OvertimePay                             89316.02
OtherPay                                14787.07
Benefits                                43764.38
TotalPay                               237967.54
TotalPayBenefits                       281731.92
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73121, dtype: object)
(73122, Id                             73123
EmployeeName        Caryn D Bortnick
JobTitle                  Dep Dir IV
BasePay                    219472.53
OvertimePay                      0.0
OtherPay                       624.5
Benefits                    61502.48
TotalPay                   220097.03
TotalPayBenefits           281599.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73122, dtype: object)
(73123, Id                                    73124
EmployeeName                Terrence M Yuen
JobTitle            Court Executive Officer
BasePay                            209838.7
OvertimePay                             0.0
OtherPay                            8625.39
Benefits                           62976.83
TotalPay                          218464.09
TotalPayBenefits                  281440.92
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 73123, dtype: object)
(73124, Id                                         73125
EmployeeName                      Daniel A Yonts
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.98
OvertimePay                             74328.92
OtherPay                                24450.15
Benefits                                46741.62
TotalPay                               234682.05
TotalPayBenefits                       281423.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73124, dtype: object)
(73125, Id                          73126
EmployeeName        Ivar C Satero
JobTitle                Dep Dir V
BasePay                 217166.13
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 64130.01
TotalPay                217166.13
TotalPayBenefits        281296.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73125, dtype: object)
(73126, Id                          73127
EmployeeName          Donna H Lee
JobTitle              Anesthetist
BasePay                  210796.7
OvertimePay               1409.25
OtherPay                  8271.53
Benefits                 60304.68
TotalPay                220477.48
TotalPayBenefits        280782.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73126, dtype: object)
(73127, Id                                 73128
EmployeeName             Jennifer E Matz
JobTitle            Special Assistant 22
BasePay                        216876.76
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        63846.54
TotalPay                       216876.76
TotalPayBenefits                280723.3
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73127, dtype: object)
(73128, Id                                         73129
EmployeeName                       Arnold M Choy
JobTitle            Lieutenant, Fire Suppression
BasePay                                 143905.1
OvertimePay                             80932.23
OtherPay                                11062.31
Benefits                                44623.97
TotalPay                               235899.64
TotalPayBenefits                       280523.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73128, dtype: object)
(73129, Id                                         73130
EmployeeName                  Michael C Magalong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135903.02
OvertimePay                             81338.87
OtherPay                                17703.56
Benefits                                45434.34
TotalPay                               234945.45
TotalPayBenefits                       280379.79
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73129, dtype: object)
(73130, Id                                      73131
EmployeeName               Gregory  Stangland
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.65
OvertimePay                          84580.54
OtherPay                             16851.56
Benefits                             44900.59
TotalPay                            235347.75
TotalPayBenefits                    280248.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73130, dtype: object)
(73131, Id                                         73132
EmployeeName                   Mark S Castagnola
JobTitle            Lieutenant, Fire Suppression
BasePay                                136476.44
OvertimePay                             74688.88
OtherPay                                22341.16
Benefits                                 46545.3
TotalPay                               233506.48
TotalPayBenefits                       280051.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73131, dtype: object)
(73132, Id                             73133
EmployeeName        Albert A Pardini
JobTitle                   Captain 3
BasePay                    206820.01
OvertimePay                      0.0
OtherPay                    18047.31
Benefits                    55170.95
TotalPay                   224867.32
TotalPayBenefits           280038.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73132, dtype: object)
(73133, Id                            73134
EmployeeName        Eugene M Yoshii
JobTitle                 Sergeant 3
BasePay                   143289.23
OvertimePay                 27999.6
OtherPay                   64518.18
Benefits                   44143.92
TotalPay                  235807.01
TotalPayBenefits          279950.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73133, dtype: object)
(73134, Id                           73135
EmployeeName        Daniel A Perea
JobTitle                 Captain 3
BasePay                  203929.01
OvertimePay                    0.0
OtherPay                  23171.12
Benefits                  52540.27
TotalPay                 227100.13
TotalPayBenefits          279640.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73134, dtype: object)
(73135, Id                                           73136
EmployeeName                    Matthew E Gonzalez
JobTitle            Chief Atty1 (Civil & Criminal)
BasePay                                  205530.51
OvertimePay                                    0.0
OtherPay                                   15205.5
Benefits                                  58783.63
TotalPay                                 220736.01
TotalPayBenefits                         279519.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73135, dtype: object)
(73136, Id                          73137
EmployeeName        Arthur L Wang
JobTitle             Manager VIII
BasePay                 212033.04
OvertimePay                   0.0
OtherPay                   3433.0
Benefits                 63894.42
TotalPay                215466.04
TotalPayBenefits        279360.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73136, dtype: object)
(73137, Id                                        73138
EmployeeName                   Albert R Cendana
JobTitle            Senior Physician Specialist
BasePay                               185552.73
OvertimePay                                 0.0
OtherPay                                40147.9
Benefits                                53532.0
TotalPay                              225700.63
TotalPayBenefits                      279232.63
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73137, dtype: object)
(73138, Id                                         73139
EmployeeName                       Jorge A Plata
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             80506.08
OtherPay                                17390.52
Benefits                                45318.52
TotalPay                               233799.54
TotalPayBenefits                       279118.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73138, dtype: object)
(73139, Id                             73140
EmployeeName        Steven R Ritchie
JobTitle                   Dep Dir V
BasePay                    212050.09
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                    65466.17
TotalPay                   213550.09
TotalPayBenefits           279016.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73139, dtype: object)
(73140, Id                             73141
EmployeeName        Daniel J Mahoney
JobTitle                   Captain 3
BasePay                     107240.0
OvertimePay                      0.0
OtherPay                   144539.01
Benefits                    27228.28
TotalPay                   251779.01
TotalPayBenefits           279007.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73140, dtype: object)
(73141, Id                            73142
EmployeeName        Julie L Labonte
JobTitle               Manager VIII
BasePay                   210143.56
OvertimePay                     0.0
OtherPay                     5068.0
Benefits                   63578.05
TotalPay                  215211.56
TotalPayBenefits          278789.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73141, dtype: object)
(73142, Id                               73143
EmployeeName                Bond M Yee
JobTitle            Deputy Dir II, MTA
BasePay                      215143.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      63610.77
TotalPay                     215143.44
TotalPayBenefits             278754.21
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73142, dtype: object)
(73143, Id                               73144
EmployeeName               Twyila  Lay
JobTitle            Nurse Practitioner
BasePay                       178744.5
OvertimePay                    23736.7
OtherPay                      19449.75
Benefits                      56778.73
TotalPay                     221930.95
TotalPayBenefits             278709.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73143, dtype: object)
(73144, Id                                      73145
EmployeeName                     David  Zwyer
JobTitle            EMT/Paramedic/Firefighter
BasePay                             131155.98
OvertimePay                          87741.17
OtherPay                              15783.2
Benefits                             43865.93
TotalPay                            234680.35
TotalPayBenefits                    278546.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73144, dtype: object)
(73145, Id                                           73146
EmployeeName                     James M Vannucchi
JobTitle            Battalion Chief, Fire Suppress
BasePay                                   69415.38
OvertimePay                               19225.39
OtherPay                                 169259.65
Benefits                                   20559.0
TotalPay                                 257900.42
TotalPayBenefits                         278459.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73145, dtype: object)
(73146, Id                                         73147
EmployeeName                     Donald J Goggin
JobTitle            Lieutenant, Fire Suppression
BasePay                                135903.03
OvertimePay                             70816.78
OtherPay                                24541.73
Benefits                                46873.27
TotalPay                               231261.54
TotalPayBenefits                       278134.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73146, dtype: object)
(73147, Id                                        73148
EmployeeName                     Robert C Kuzma
JobTitle            Captain, Emergency Med Svcs
BasePay                               153604.27
OvertimePay                            54123.55
OtherPay                               21908.68
Benefits                               48409.74
TotalPay                               229636.5
TotalPayBenefits                      278046.24
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73147, dtype: object)
(73148, Id                          73149
EmployeeName        Terence E Woo
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              97166.12
OtherPay                 21719.17
Benefits                 42070.49
TotalPay                235842.01
TotalPayBenefits         277912.5
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73148, dtype: object)
(73149, Id                          73150
EmployeeName        Eric  Vintero
JobTitle                Captain 3
BasePay                 206820.01
OvertimePay               1496.09
OtherPay                 16628.89
Benefits                 52798.42
TotalPay                224944.99
TotalPayBenefits        277743.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73149, dtype: object)
(73150, Id                                      73151
EmployeeName                 James T OConnell
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          57770.19
OtherPay                             15895.59
Benefits                             48892.88
TotalPay                            228840.27
TotalPayBenefits                    277733.15
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73150, dtype: object)
(73151, Id                          73152
EmployeeName        Ted  Yamasaki
JobTitle               Dep Dir IV
BasePay                 208912.57
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                 63458.29
TotalPay                213912.57
TotalPayBenefits        277370.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73151, dtype: object)
(73152, Id                          73153
EmployeeName        Thomas  Watts
JobTitle               Sergeant 3
BasePay                 143289.04
OvertimePay              64959.91
OtherPay                  28133.2
Benefits                 40811.58
TotalPay                236382.15
TotalPayBenefits        277193.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73152, dtype: object)
(73153, Id                                         73154
EmployeeName                       Jim  Hall III
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                             78816.63
OtherPay                                16987.98
Benefits                                45434.29
TotalPay                               231707.54
TotalPayBenefits                       277141.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73153, dtype: object)
(73154, Id                                        73155
EmployeeName                  Michael P Whooley
JobTitle            Captain, Emergency Med Svcs
BasePay                               155174.53
OvertimePay                            59570.51
OtherPay                               13803.44
Benefits                               48538.03
TotalPay                              228548.48
TotalPayBenefits                      277086.51
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73154, dtype: object)
(73155, Id                           73156
EmployeeName        Adrienne  Sims
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               98593.84
OtherPay                  20599.37
Benefits                  41842.61
TotalPay                 235086.67
TotalPayBenefits         276929.28
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73155, dtype: object)
(73156, Id                                      73157
EmployeeName                   Matthew G Lane
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          89777.24
OtherPay                              8108.68
Benefits                             43613.09
TotalPay                            233030.17
TotalPayBenefits                    276643.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73156, dtype: object)
(73157, Id                                         73158
EmployeeName                      Dwayne R Curry
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             73689.51
OtherPay                                20573.41
Benefits                                46172.43
TotalPay                               230165.86
TotalPayBenefits                       276338.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73157, dtype: object)
(73158, Id                             73159
EmployeeName        Sharon  Ferrigno
JobTitle                   Captain 3
BasePay                    206820.01
OvertimePay                  6132.04
OtherPay                     9774.44
Benefits                    53605.92
TotalPay                   222726.49
TotalPayBenefits           276332.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73158, dtype: object)
(73159, Id                          73160
EmployeeName           Albert  Yu
JobTitle             Manager VIII
BasePay                 211220.48
OvertimePay                   0.0
OtherPay                  10555.0
Benefits                 54550.48
TotalPay                221775.48
TotalPayBenefits        276325.96
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73159, dtype: object)
(73160, Id                              73161
EmployeeName        Philip A Ginsburg
JobTitle                 Dept Head IV
BasePay                      221340.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     54825.53
TotalPay                     221340.0
TotalPayBenefits            276165.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73160, dtype: object)
(73161, Id                             73162
EmployeeName           Jeffrey  Roth
JobTitle            Police Officer 3
BasePay                    106722.42
OvertimePay                 26861.01
OtherPay                    109545.7
Benefits                    33033.03
TotalPay                   243129.13
TotalPayBenefits           276162.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73161, dtype: object)
(73162, Id                              73163
EmployeeName        Michael T Redmond
JobTitle                    Captain 3
BasePay                      205222.0
OvertimePay                   8201.38
OtherPay                     10165.57
Benefits                     52540.26
TotalPay                    223588.95
TotalPayBenefits            276129.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73162, dtype: object)
(73163, Id                             73164
EmployeeName        Michael D Morley
JobTitle                 Inspector 3
BasePay                    143289.05
OvertimePay                  44443.2
OtherPay                    45377.35
Benefits                    42944.62
TotalPay                    233109.6
TotalPayBenefits           276054.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73163, dtype: object)
(73164, Id                             73165
EmployeeName        Martin A Beltran
JobTitle                 Firefighter
BasePay                    116956.72
OvertimePay                 96690.63
OtherPay                    20771.65
Benefits                    41593.34
TotalPay                    234419.0
TotalPayBenefits           276012.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73164, dtype: object)
(73165, Id                              73166
EmployeeName        Gregory  Corrales
JobTitle                    Captain 3
BasePay                      206820.0
OvertimePay                    761.22
OtherPay                     13259.78
Benefits                     55170.97
TotalPay                     220841.0
TotalPayBenefits            276011.97
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73165, dtype: object)
(73166, Id                                         73167
EmployeeName                Luis A Ibarra-Rivera
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             72001.17
OtherPay                                21690.53
Benefits                                46361.47
TotalPay                               229594.66
TotalPayBenefits                       275956.13
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73166, dtype: object)
(73167, Id                            73168
EmployeeName        Paul T Urquiaga
JobTitle                Firefighter
BasePay                    127392.1
OvertimePay                85197.79
OtherPay                   19642.66
Benefits                   43353.32
TotalPay                  232232.55
TotalPayBenefits          275585.87
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73167, dtype: object)
(73168, Id                            73169
EmployeeName        Monique J Zmuda
JobTitle                  Dep Dir V
BasePay                    212279.6
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   63062.25
TotalPay                   212279.6
TotalPayBenefits          275341.85
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73168, dtype: object)
(73169, Id                          73170
EmployeeName          John M Hart
JobTitle             Lieutenant 3
BasePay                 162916.26
OvertimePay              56471.49
OtherPay                 11082.43
Benefits                  44770.1
TotalPay                230470.18
TotalPayBenefits        275240.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73169, dtype: object)
(73170, Id                          73171
EmployeeName         Janet  Hines
JobTitle            Nurse Manager
BasePay                  186912.0
OvertimePay                   0.0
OtherPay                 34890.98
Benefits                 53302.92
TotalPay                221802.98
TotalPayBenefits         275105.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73170, dtype: object)
(73171, Id                           73172
EmployeeName        Pauline A Marx
JobTitle                Dep Dir IV
BasePay                  212065.82
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  63021.35
TotalPay                 212065.82
TotalPayBenefits         275087.17
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73171, dtype: object)
(73172, Id                                        73173
EmployeeName                Daniel M Wlodarczyk
JobTitle            Senior Physician Specialist
BasePay                               216128.95
OvertimePay                                 0.0
OtherPay                                 3600.0
Benefits                               55326.12
TotalPay                              219728.95
TotalPayBenefits                      275055.07
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73172, dtype: object)
(73173, Id                             73174
EmployeeName        Genevieve S Farr
JobTitle               Nurse Manager
BasePay                     177167.0
OvertimePay                      0.0
OtherPay                    45656.96
Benefits                    51992.21
TotalPay                   222823.96
TotalPayBenefits           274816.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73173, dtype: object)
(73174, Id                                      73175
EmployeeName                    Sahir  Putrus
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.68
OvertimePay                          79235.74
OtherPay                             16739.42
Benefits                             44877.83
TotalPay                            229890.84
TotalPayBenefits                    274768.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73174, dtype: object)
(73175, Id                                         73176
EmployeeName                        John S Rocco
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135903.0
OvertimePay                             66587.48
OtherPay                                25156.62
Benefits                                47022.72
TotalPay                                227647.1
TotalPayBenefits                       274669.82
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73175, dtype: object)
(73176, Id                            73177
EmployeeName        Romelia C Scott
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                 99340.3
OtherPay                   17416.78
Benefits                   40922.62
TotalPay                  233713.78
TotalPayBenefits           274636.4
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73176, dtype: object)
(73177, Id                               73178
EmployeeName           Ghodsi T Davary
JobTitle            Nursing Supervisor
BasePay                       205996.0
OvertimePay                        0.0
OtherPay                      14831.67
Benefits                      53769.43
TotalPay                     220827.67
TotalPayBenefits              274597.1
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73177, dtype: object)
(73178, Id                             73179
EmployeeName        Cristina R Reyes
JobTitle               Nurse Manager
BasePay                    186912.01
OvertimePay                   570.49
OtherPay                    33770.72
Benefits                     53302.9
TotalPay                   221253.22
TotalPayBenefits           274556.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73178, dtype: object)
(73179, Id                                      73180
EmployeeName                Charles  Hardiman
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.28
OvertimePay                          77154.07
OtherPay                             16918.31
Benefits                             45313.85
TotalPay                            229216.66
TotalPayBenefits                    274530.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73179, dtype: object)
(73180, Id                           73181
EmployeeName        Karen S Kubick
JobTitle              Manager VIII
BasePay                  207350.05
OvertimePay                    0.0
OtherPay                    4000.0
Benefits                  62774.04
TotalPay                 211350.05
TotalPayBenefits         274124.09
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73180, dtype: object)
(73181, Id                              73182
EmployeeName        William F Braconi
JobTitle                   Sergeant 3
BasePay                     143289.07
OvertimePay                  60066.18
OtherPay                     29542.88
Benefits                      40811.6
TotalPay                    232898.13
TotalPayBenefits            273709.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73181, dtype: object)
(73182, Id                                           73183
EmployeeName                       Joanne M Hoeper
JobTitle            Chief Atty1 (Civil & Criminal)
BasePay                                  215666.52
OvertimePay                                    0.0
OtherPay                                    1249.5
Benefits                                  56503.32
TotalPay                                 216916.02
TotalPayBenefits                         273419.34
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73182, dtype: object)
(73183, Id                               73184
EmployeeName        Manuel F Alvarenga
JobTitle                   Firefighter
BasePay                      116956.72
OvertimePay                   91353.92
OtherPay                      23622.49
Benefits                       41424.4
TotalPay                     231933.13
TotalPayBenefits             273357.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73183, dtype: object)
(73184, Id                                         73185
EmployeeName                     William  Linney
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                             72718.68
OtherPay                                 20396.9
Benefits                                45546.96
TotalPay                               227783.08
TotalPayBenefits                       273330.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73184, dtype: object)
(73185, Id                                           73186
EmployeeName                          Brook  Baker
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  172118.62
OvertimePay                               34668.99
OtherPay                                  14960.91
Benefits                                  51470.25
TotalPay                                 221748.52
TotalPayBenefits                         273218.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73185, dtype: object)
(73186, Id                                           73187
EmployeeName                     Burk E Delventhal
JobTitle            Chief Atty1 (Civil & Criminal)
BasePay                                   215666.5
OvertimePay                                    0.0
OtherPay                                    1249.5
Benefits                                  56257.36
TotalPay                                  216916.0
TotalPayBenefits                         273173.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73186, dtype: object)
(73187, Id                                        73188
EmployeeName                  Michael S Coleman
JobTitle            Senior Physician Specialist
BasePay                               168993.37
OvertimePay                                 0.0
OtherPay                               55553.01
Benefits                               48541.77
TotalPay                              224546.38
TotalPayBenefits                      273088.15
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73187, dtype: object)
(73188, Id                           73189
EmployeeName        Siulagi L Sala
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               82946.93
OtherPay                  29350.97
Benefits                  43791.38
TotalPay                 229254.61
TotalPayBenefits         273045.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73188, dtype: object)
(73189, Id                              73190
EmployeeName        Joseph P McFadden
JobTitle                    Captain 3
BasePay                      205222.0
OvertimePay                    760.12
OtherPay                     13574.03
Benefits                     53445.99
TotalPay                    219556.15
TotalPayBenefits            273002.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73189, dtype: object)
(73190, Id                            73191
EmployeeName        Clifford L Cook
JobTitle                Inspector 3
BasePay                   143289.09
OvertimePay                58656.94
OtherPay                   30187.02
Benefits                   40797.64
TotalPay                  232133.05
TotalPayBenefits          272930.69
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73190, dtype: object)
(73191, Id                            73192
EmployeeName        Todd L Rydstrom
JobTitle                  Dep Dir V
BasePay                   210294.15
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   62583.37
TotalPay                  210294.15
TotalPayBenefits          272877.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73191, dtype: object)
(73192, Id                                      73193
EmployeeName                 Anita D Paratley
JobTitle            Captain, Fire Suppression
BasePay                             153763.79
OvertimePay                          36599.96
OtherPay                             31135.49
Benefits                             51339.44
TotalPay                            221499.24
TotalPayBenefits                    272838.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73192, dtype: object)
(73193, Id                                         73194
EmployeeName                     Kenneth D Smith
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.46
OvertimePay                             75492.12
OtherPay                                17672.61
Benefits                                45001.49
TotalPay                               227832.19
TotalPayBenefits                       272833.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73193, dtype: object)
(73194, Id                                      73195
EmployeeName                  Gerald K Mansur
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                          77249.88
OtherPay                             16767.02
Benefits                             44883.26
TotalPay                            227932.57
TotalPayBenefits                    272815.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73194, dtype: object)
(73195, Id                                      73196
EmployeeName                 Jeff A Columbini
JobTitle            Captain, Fire Suppression
BasePay                             169104.97
OvertimePay                           39435.0
OtherPay                             14194.63
Benefits                             50052.28
TotalPay                             222734.6
TotalPayBenefits                    272786.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73195, dtype: object)
(73196, Id                                      73197
EmployeeName             Lawrence  Hecimovich
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                             44947.62
Benefits                             47768.17
TotalPay                            224998.62
TotalPayBenefits                    272766.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73196, dtype: object)
(73197, Id                          73198
EmployeeName        Kathryn Y How
JobTitle             Manager VIII
BasePay                 201952.54
OvertimePay                   0.0
OtherPay                   8000.0
Benefits                 62749.53
TotalPay                209952.54
TotalPayBenefits        272702.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73197, dtype: object)
(73198, Id                                         73199
EmployeeName                  Cantrez M Triplitt
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.49
OvertimePay                             76698.26
OtherPay                                16191.14
Benefits                                44907.24
TotalPay                               227556.89
TotalPayBenefits                       272464.13
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73198, dtype: object)
(73199, Id                               73200
EmployeeName        Cristine S DeBerry
JobTitle                  Manager VIII
BasePay                      206522.63
OvertimePay                        0.0
OtherPay                       3278.93
Benefits                      62648.74
TotalPay                     209801.56
TotalPayBenefits              272450.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73199, dtype: object)
(73200, Id                                         73201
EmployeeName                Matthew F Hutchinson
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                             68670.58
OtherPay                                23212.85
Benefits                                45854.19
TotalPay                               226550.94
TotalPayBenefits                       272405.13
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73200, dtype: object)
(73201, Id                                        73202
EmployeeName                     Elaine R Gecht
JobTitle            Senior Physician Specialist
BasePay                               216840.41
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               55518.12
TotalPay                              216840.41
TotalPayBenefits                      272358.53
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73201, dtype: object)
(73202, Id                          73203
EmployeeName         Neal  Jaymes
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              97413.08
OtherPay                 16591.84
Benefits                 41294.25
TotalPay                230961.63
TotalPayBenefits        272255.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73202, dtype: object)
(73203, Id                          73204
EmployeeName         Ann E Mannix
JobTitle                Captain 3
BasePay                  206820.0
OvertimePay               1934.39
OtherPay                   9786.5
Benefits                 53605.94
TotalPay                218540.89
TotalPayBenefits        272146.83
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73203, dtype: object)
(73204, Id                                           73205
EmployeeName                        Tyrone  Pruitt
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   174608.8
OvertimePay                                1386.52
OtherPay                                  46642.61
Benefits                                  49455.31
TotalPay                                 222637.93
TotalPayBenefits                         272093.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73204, dtype: object)
(73205, Id                            73206
EmployeeName        Michael T Smith
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                92888.11
OtherPay                   20350.73
Benefits                   41764.35
TotalPay                  230195.54
TotalPayBenefits          271959.89
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73205, dtype: object)
(73206, Id                                         73207
EmployeeName                       Jay M Cleland
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             72764.31
OtherPay                                17703.51
Benefits                                45434.33
TotalPay                               226370.81
TotalPayBenefits                       271805.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73206, dtype: object)
(73207, Id                                      73208
EmployeeName                 Jonathan  Baxter
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.18
OvertimePay                          80113.77
OtherPay                             12111.39
Benefits                             44426.43
TotalPay                            227369.34
TotalPayBenefits                    271795.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73207, dtype: object)
(73208, Id                               73209
EmployeeName            Samuel S Jones
JobTitle            Nursing Supervisor
BasePay                      192657.86
OvertimePay                        0.0
OtherPay                      24015.76
Benefits                      54939.55
TotalPay                     216673.62
TotalPayBenefits             271613.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73208, dtype: object)
(73209, Id                                     73210
EmployeeName             Margaret A Callahan
JobTitle            Human Resources Director
BasePay                            219349.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            52233.34
TotalPay                           219349.53
TotalPayBenefits                   271582.87
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 73209, dtype: object)
(73210, Id                               73211
EmployeeName        Timothy G Oberzeir
JobTitle                     Captain 3
BasePay                      205222.07
OvertimePay                        0.0
OtherPay                       12795.2
Benefits                       53562.7
TotalPay                     218017.27
TotalPayBenefits             271579.97
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73210, dtype: object)
(73211, Id                                         73212
EmployeeName                      David B Morris
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                             85110.33
OtherPay                                 8494.17
Benefits                                43303.62
TotalPay                               228272.01
TotalPayBenefits                       271575.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73211, dtype: object)
(73212, Id                                         73213
EmployeeName                   Ernest M Carrillo
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             67055.95
OtherPay                                22005.55
Benefits                                46387.32
TotalPay                               224964.46
TotalPayBenefits                       271351.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73212, dtype: object)
(73213, Id                                  73214
EmployeeName                Martin R Gran
JobTitle            Dir Emp Relations Div
BasePay                         208906.27
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         62416.08
TotalPay                        208906.27
TotalPayBenefits                271322.35
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73213, dtype: object)
(73214, Id                                      73215
EmployeeName                      Keng Y Chan
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                          75502.02
OtherPay                             16903.57
Benefits                             44909.96
TotalPay                            226321.26
TotalPayBenefits                    271231.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73214, dtype: object)
(73215, Id                                      73216
EmployeeName                  Robert A Styles
JobTitle            Captain, Fire Suppression
BasePay                             153763.79
OvertimePay                           60653.8
OtherPay                              9525.08
Benefits                             47262.85
TotalPay                            223942.67
TotalPayBenefits                    271205.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73215, dtype: object)
(73216, Id                                       73217
EmployeeName                   David A Pfeifer
JobTitle            Assistant Chief Attorney 2
BasePay                               213587.5
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                              56230.97
TotalPay                              214837.5
TotalPayBenefits                     271068.47
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73216, dtype: object)
(73217, Id                                          73218
EmployeeName                        Wendy S Still
JobTitle            Chief Adult Probation Officer
BasePay                                 209697.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 61338.18
TotalPay                                209697.02
TotalPayBenefits                         271035.2
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 73217, dtype: object)
(73218, Id                             73219
EmployeeName        Gregory N Wagner
JobTitle                Manager VIII
BasePay                    205647.74
OvertimePay                      0.0
OtherPay                     3037.92
Benefits                    62344.05
TotalPay                   208685.66
TotalPayBenefits           271029.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73218, dtype: object)
(73219, Id                                         73220
EmployeeName                     Jiro B Yamamoto
JobTitle            Lieutenant, Fire Suppression
BasePay                                134831.21
OvertimePay                             79490.41
OtherPay                                12995.67
Benefits                                43687.48
TotalPay                               227317.29
TotalPayBenefits                       271004.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73219, dtype: object)
(73220, Id                                       73221
EmployeeName                 Heralio G Serrano
JobTitle            Supervising Physician Spec
BasePay                              192552.82
OvertimePay                                0.0
OtherPay                              28958.22
Benefits                              49484.19
TotalPay                             221511.04
TotalPayBenefits                     270995.23
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73220, dtype: object)
(73221, Id                                      73222
EmployeeName                   Mike  Breiling
JobTitle            EMT/Paramedic/Firefighter
BasePay                              133915.7
OvertimePay                          76084.67
OtherPay                             16100.59
Benefits                             44784.09
TotalPay                            226100.96
TotalPayBenefits                    270885.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73221, dtype: object)
(73222, Id                          73223
EmployeeName         Thomas A Rey
JobTitle              Firefighter
BasePay                 116956.76
OvertimePay              89174.16
OtherPay                 22668.24
Benefits                 42004.23
TotalPay                228799.16
TotalPayBenefits        270803.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73222, dtype: object)
(73223, Id                                       73224
EmployeeName                  Noreen M Ambrose
JobTitle            Assistant Chief Attorney 2
BasePay                              213587.55
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                               55829.3
TotalPay                             214837.05
TotalPayBenefits                     270666.35
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73223, dtype: object)
(73224, Id                                       73225
EmployeeName                    Robert S Maerz
JobTitle            Assistant Chief Attorney 2
BasePay                              213587.52
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                               55829.3
TotalPay                             214837.02
TotalPayBenefits                     270666.32
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73224, dtype: object)
(73225, Id                                       73226
EmployeeName              Matthew J Rothschild
JobTitle            Assistant Chief Attorney 2
BasePay                              213587.51
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                               55829.3
TotalPay                             214837.01
TotalPayBenefits                     270666.31
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73225, dtype: object)
(73226, Id                             73227
EmployeeName        Kandace A Bender
JobTitle                   Dep Dir V
BasePay                    201952.51
OvertimePay                      0.0
OtherPay                      5518.0
Benefits                    63156.99
TotalPay                   207470.51
TotalPayBenefits            270627.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73226, dtype: object)
(73227, Id                               73228
EmployeeName        Kathleen G Maxwell
JobTitle                 Nurse Manager
BasePay                       186912.0
OvertimePay                        0.0
OtherPay                      30870.12
Benefits                      52813.92
TotalPay                     217782.12
TotalPayBenefits             270596.04
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73227, dtype: object)
(73228, Id                               73229
EmployeeName        Michael P Connolly
JobTitle                     Captain 3
BasePay                      206820.03
OvertimePay                        0.0
OtherPay                      10103.65
Benefits                      53605.93
TotalPay                     216923.68
TotalPayBenefits             270529.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73228, dtype: object)
(73229, Id                                       73230
EmployeeName                       Sharon  Woo
JobTitle            Assistant Chief Attorney 2
BasePay                              213587.51
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                               55589.4
TotalPay                             214837.51
TotalPayBenefits                     270426.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73229, dtype: object)
(73230, Id                              73231
EmployeeName        Michael  Dudoroff
JobTitle                 Lieutenant 3
BasePay                      163674.0
OvertimePay                  51019.32
OtherPay                     10099.77
Benefits                     45624.86
TotalPay                    224793.09
TotalPayBenefits            270417.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73230, dtype: object)
(73231, Id                               73232
EmployeeName        Andre R Andrews Sr
JobTitle            Transit Supervisor
BasePay                       124304.5
OvertimePay                   95796.91
OtherPay                       9683.69
Benefits                      40598.05
TotalPay                      229785.1
TotalPayBenefits             270383.15
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73231, dtype: object)
(73232, Id                                        73233
EmployeeName                   Zhi Jiar  Zhuang
JobTitle            Senior Physician Specialist
BasePay                               203710.02
OvertimePay                                 0.0
OtherPay                               11486.76
Benefits                               55180.36
TotalPay                              215196.78
TotalPayBenefits                      270377.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73232, dtype: object)
(73233, Id                                      73234
EmployeeName                     Brandon  Tom
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.24
OvertimePay                          73052.59
OtherPay                             16893.01
Benefits                              45273.0
TotalPay                            225089.84
TotalPayBenefits                    270362.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73233, dtype: object)
(73234, Id                          73235
EmployeeName          Curtis  Lum
JobTitle                Captain 3
BasePay                 206820.08
OvertimePay                   0.0
OtherPay                  9774.61
Benefits                 53605.99
TotalPay                216594.69
TotalPayBenefits        270200.68
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73234, dtype: object)
(73235, Id                                      73236
EmployeeName                  Kjell  Harshman
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                          77594.27
OtherPay                             12979.99
Benefits                             44477.86
TotalPay                            225718.52
TotalPayBenefits                    270196.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73235, dtype: object)
(73236, Id                               73237
EmployeeName          Ruben  Caballero
JobTitle            Nurse Practitioner
BasePay                       190134.0
OvertimePay                   24187.13
OtherPay                        593.32
Benefits                      55165.03
TotalPay                     214914.45
TotalPayBenefits             270079.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73236, dtype: object)
(73237, Id                                      73238
EmployeeName                  Daniel  Fleming
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          73546.09
OtherPay                             16174.29
Benefits                             45145.71
TotalPay                            224864.63
TotalPayBenefits                    270010.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73237, dtype: object)
(73238, Id                           73239
EmployeeName        Mitchell T Lee
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               91401.49
OtherPay                  20236.94
Benefits                  41406.59
TotalPay                 228595.14
TotalPayBenefits         270001.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73238, dtype: object)
(73239, Id                                      73240
EmployeeName                  Denise L Bailey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          74535.12
OtherPay                             15295.86
Benefits                             44956.78
TotalPay                            224975.25
TotalPayBenefits                    269932.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73239, dtype: object)
(73240, Id                                       73241
EmployeeName                     Joseph L Pace
JobTitle            Supervising Physician Spec
BasePay                               210454.8
OvertimePay                                0.0
OtherPay                                5130.0
Benefits                              54297.92
TotalPay                              215584.8
TotalPayBenefits                     269882.72
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73240, dtype: object)
(73241, Id                                 73242
EmployeeName        Leonardo V Fermin Jr
JobTitle                       Dep Dir V
BasePay                        201952.51
OvertimePay                          0.0
OtherPay                          5518.0
Benefits                        62363.07
TotalPay                       207470.51
TotalPayBenefits               269833.58
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73241, dtype: object)
(73242, Id                                        73243
EmployeeName                     Stuart E Beach
JobTitle            Captain, Emergency Med Svcs
BasePay                               155174.54
OvertimePay                            45712.42
OtherPay                                19396.8
Benefits                               49531.06
TotalPay                              220283.76
TotalPayBenefits                      269814.82
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73242, dtype: object)
(73243, Id                                      73244
EmployeeName                  Ethan I Banford
JobTitle            Captain, Fire Suppression
BasePay                             155196.81
OvertimePay                          57339.89
OtherPay                             10027.25
Benefits                             47228.82
TotalPay                            222563.95
TotalPayBenefits                    269792.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73243, dtype: object)
(73244, Id                          73245
EmployeeName        Theresa M Lee
JobTitle                Dep Dir V
BasePay                 201952.55
OvertimePay                   0.0
OtherPay                   5518.0
Benefits                 62134.25
TotalPay                207470.55
TotalPayBenefits         269604.8
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73244, dtype: object)
(73245, Id                           73246
EmployeeName        Aaron I Fisher
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               91193.65
OtherPay                   19856.0
Benefits                  41406.58
TotalPay                 228006.37
TotalPayBenefits         269412.95
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73245, dtype: object)
(73246, Id                                         73247
EmployeeName                  Brendan P McGorrin
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.48
OvertimePay                             72851.77
OtherPay                                16833.56
Benefits                                45001.47
TotalPay                               224352.81
TotalPayBenefits                       269354.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73246, dtype: object)
(73247, Id                             73248
EmployeeName        Tuamelie T Moala
JobTitle                   Dep Dir V
BasePay                    207160.89
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     62161.2
TotalPay                   207160.89
TotalPayBenefits           269322.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73247, dtype: object)
(73248, Id                            73249
EmployeeName        Troy S Williams
JobTitle              Nurse Manager
BasePay                   181263.01
OvertimePay                     0.0
OtherPay                    35533.1
Benefits                   52466.21
TotalPay                  216796.11
TotalPayBenefits          269262.32
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73248, dtype: object)
(73249, Id                           73250
EmployeeName        Barbara J Hale
JobTitle                 Dep Dir V
BasePay                  207160.87
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  62082.31
TotalPay                 207160.87
TotalPayBenefits         269243.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73249, dtype: object)
(73250, Id                            73251
EmployeeName        David R Collins
JobTitle                 Sergeant 3
BasePay                    76288.21
OvertimePay                14349.63
OtherPay                  156719.72
Benefits                   21573.03
TotalPay                  247357.56
TotalPayBenefits          268930.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73250, dtype: object)
(73251, Id                                      73252
EmployeeName               Anthony C Robinson
JobTitle            Captain, Fire Suppression
BasePay                             154609.85
OvertimePay                          44575.16
OtherPay                              22285.4
Benefits                             47429.41
TotalPay                            221470.41
TotalPayBenefits                    268899.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73251, dtype: object)
(73252, Id                                      73253
EmployeeName                    Guy M Goodwin
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134753.17
OvertimePay                          72273.51
OtherPay                             16844.13
Benefits                             44994.56
TotalPay                            223870.81
TotalPayBenefits                    268865.37
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73252, dtype: object)
(73253, Id                                        73254
EmployeeName                 Timothy C Sinclair
JobTitle            Senior Physician Specialist
BasePay                                203710.0
OvertimePay                                 0.0
OtherPay                               10186.85
Benefits                               54929.86
TotalPay                              213896.85
TotalPayBenefits                      268826.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73253, dtype: object)
(73254, Id                                        73255
EmployeeName                     Gene  Nakajima
JobTitle            Senior Physician Specialist
BasePay                               203710.02
OvertimePay                                 0.0
OtherPay                               10186.16
Benefits                               54929.76
TotalPay                              213896.18
TotalPayBenefits                      268825.94
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73254, dtype: object)
(73255, Id                                        73256
EmployeeName          Teresita  Pontejos-Murphy
JobTitle            Senior Physician Specialist
BasePay                               203710.13
OvertimePay                                 0.0
OtherPay                               10185.51
Benefits                               54929.66
TotalPay                              213895.64
TotalPayBenefits                       268825.3
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73255, dtype: object)
(73256, Id                             73257
EmployeeName        Martin  Lalor Jr
JobTitle                  Sergeant 3
BasePay                    148374.12
OvertimePay                 62166.45
OtherPay                    15791.51
Benefits                    42423.57
TotalPay                   226332.08
TotalPayBenefits           268755.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73256, dtype: object)
(73257, Id                                      73258
EmployeeName                 Paul K Shimazaki
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          72192.52
OtherPay                             16254.15
Benefits                             45159.85
TotalPay                            223590.94
TotalPayBenefits                    268750.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73257, dtype: object)
(73258, Id                             73259
EmployeeName        Raymond P Chavez
JobTitle                 Firefighter
BasePay                    115893.46
OvertimePay                 87834.45
OtherPay                    23931.41
Benefits                    41044.37
TotalPay                   227659.32
TotalPayBenefits           268703.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73258, dtype: object)
(73259, Id                                        73260
EmployeeName                     Yeva M Johnson
JobTitle            Senior Physician Specialist
BasePay                               209957.37
OvertimePay                                 0.0
OtherPay                                4206.25
Benefits                               54503.22
TotalPay                              214163.62
TotalPayBenefits                      268666.84
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73259, dtype: object)
(73260, Id                                        73261
EmployeeName                   Sebastian E Wong
JobTitle            Captain, Emergency Med Svcs
BasePay                               155174.48
OvertimePay                            45382.21
OtherPay                               18663.26
Benefits                               49423.42
TotalPay                              219219.95
TotalPayBenefits                      268643.37
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73260, dtype: object)
(73261, Id                          73262
EmployeeName           Randy V Ly
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              62842.09
OtherPay                 21677.83
Benefits                 40812.57
TotalPay                227809.04
TotalPayBenefits        268621.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73261, dtype: object)
(73262, Id                                73263
EmployeeName        Leanora W Militello
JobTitle              Manager VIII, MTA
BasePay                       204898.43
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       63697.07
TotalPay                      204898.43
TotalPayBenefits               268595.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73262, dtype: object)
(73263, Id                                         73264
EmployeeName                    Charles F Mc Coy
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                              64202.5
OtherPay                                23016.04
Benefits                                 45434.3
TotalPay                               223121.51
TotalPayBenefits                       268555.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73263, dtype: object)
(73264, Id                                         73265
EmployeeName                      Ryan A Kennedy
JobTitle            Lieutenant, Fire Suppression
BasePay                                135903.01
OvertimePay                             69602.69
OtherPay                                17520.06
Benefits                                45528.54
TotalPay                               223025.76
TotalPayBenefits                        268554.3
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73264, dtype: object)
(73265, Id                                         73266
EmployeeName                      Brian E Murphy
JobTitle            Lieutenant, Fire Suppression
BasePay                                118506.85
OvertimePay                             82749.75
OtherPay                                24817.82
Benefits                                42360.72
TotalPay                               226074.42
TotalPayBenefits                       268435.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73265, dtype: object)
(73266, Id                          73267
EmployeeName        John M Flores
JobTitle              Firefighter
BasePay                 116956.75
OvertimePay              90589.54
OtherPay                 19404.09
Benefits                 41437.82
TotalPay                226950.38
TotalPayBenefits         268388.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73266, dtype: object)
(73267, Id                                73268
EmployeeName        Christiane  Hayashi
JobTitle              Deputy Dir I, MTA
BasePay                       202556.39
OvertimePay                         0.0
OtherPay                         4000.0
Benefits                       61809.28
TotalPay                      206556.39
TotalPayBenefits              268365.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73267, dtype: object)
(73268, Id                                 73269
EmployeeName               David M Stier
JobTitle            Physician Specialist
BasePay                        186871.91
OvertimePay                          0.0
OtherPay                         31800.0
Benefits                        49673.62
TotalPay                       218671.91
TotalPayBenefits               268345.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73268, dtype: object)
(73269, Id                                         73270
EmployeeName                  Michael R Gonzales
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.98
OvertimePay                             74555.14
OtherPay                                13241.89
Benefits                                44643.77
TotalPay                               223700.01
TotalPayBenefits                       268343.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73269, dtype: object)
(73270, Id                          73271
EmployeeName          Glenn D Mar
JobTitle             Lieutenant 3
BasePay                 163674.17
OvertimePay              34284.57
OtherPay                 24636.47
Benefits                 45685.36
TotalPay                222595.21
TotalPayBenefits        268280.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73270, dtype: object)
(73271, Id                              73272
EmployeeName        John C Bragagnolo
JobTitle                   Sergeant 3
BasePay                     146504.17
OvertimePay                  58516.44
OtherPay                     21165.31
Benefits                     42087.48
TotalPay                    226185.92
TotalPayBenefits             268273.4
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73271, dtype: object)
(73272, Id                                       73273
EmployeeName                   Kimiko C Burton
JobTitle            Assistant Chief Attorney 2
BasePay                              211929.88
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              55024.42
TotalPay                             213179.38
TotalPayBenefits                      268203.8
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73272, dtype: object)
(73273, Id                             73274
EmployeeName          Thomas J Smith
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 71164.34
OtherPay                    35134.67
Benefits                    38406.74
TotalPay                   229770.04
TotalPayBenefits           268176.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73273, dtype: object)
(73274, Id                             73275
EmployeeName        Colleen M Chawla
JobTitle                   Dep Dir V
BasePay                    202299.63
OvertimePay                      0.0
OtherPay                     2094.19
Benefits                    63636.18
TotalPay                   204393.82
TotalPayBenefits            268030.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73274, dtype: object)
(73275, Id                                      73276
EmployeeName                 Ronald  Johansen
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133403.23
OvertimePay                          72292.52
OtherPay                             17605.45
Benefits                              44715.3
TotalPay                             223301.2
TotalPayBenefits                     268016.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73275, dtype: object)
(73276, Id                                      73277
EmployeeName                    Meir I Gordon
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.71
OvertimePay                          71730.75
OtherPay                             17454.91
Benefits                             44877.83
TotalPay                            223101.37
TotalPayBenefits                     267979.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73276, dtype: object)
(73277, Id                                        73278
EmployeeName                      John C Barker
JobTitle            Senior Physician Specialist
BasePay                               176891.06
OvertimePay                                 0.0
OtherPay                               39734.45
Benefits                               51337.84
TotalPay                              216625.51
TotalPayBenefits                      267963.35
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73277, dtype: object)
(73278, Id                            73279
EmployeeName        Matthew T Mason
JobTitle                 Sergeant 3
BasePay                   143289.12
OvertimePay                57761.79
OtherPay                   26011.37
Benefits                   40795.93
TotalPay                  227062.28
TotalPayBenefits          267858.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73278, dtype: object)
(73279, Id                                73280
EmployeeName        Lawrence K Nicholls
JobTitle                  Nurse Manager
BasePay                        181263.0
OvertimePay                         0.0
OtherPay                       34439.96
Benefits                       52112.95
TotalPay                      215702.96
TotalPayBenefits              267815.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73279, dtype: object)
(73280, Id                                      73281
EmployeeName                      James  Lowe
JobTitle            EMT/Paramedic/Firefighter
BasePay                             128178.19
OvertimePay                          81871.83
OtherPay                             14907.41
Benefits                             42743.48
TotalPay                            224957.43
TotalPayBenefits                    267700.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73280, dtype: object)
(73281, Id                          73282
EmployeeName          Tim T Areja
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              87251.42
OtherPay                  21636.9
Benefits                 41848.62
TotalPay                225845.02
TotalPayBenefits        267693.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73281, dtype: object)
(73282, Id                            73283
EmployeeName        Flavia M Bayati
JobTitle              Nurse Manager
BasePay                    181263.0
OvertimePay                     0.0
OtherPay                   34117.53
Benefits                    52293.3
TotalPay                  215380.53
TotalPayBenefits          267673.83
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73282, dtype: object)
(73283, Id                                         73284
EmployeeName                  Christine E Emmons
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             75027.72
OtherPay                                 12155.5
Benefits                                44389.04
TotalPay                               223086.19
TotalPayBenefits                       267475.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73283, dtype: object)
(73284, Id                           73285
EmployeeName        Brian E Devlin
JobTitle              Lieutenant 3
BasePay                   153058.0
OvertimePay               41296.69
OtherPay                  30178.79
Benefits                  42816.67
TotalPay                 224533.48
TotalPayBenefits         267350.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73284, dtype: object)
(73285, Id                          73286
EmployeeName           Jay P Kloo
JobTitle            Nurse Manager
BasePay                  177829.0
OvertimePay                   0.0
OtherPay                 37346.83
Benefits                 52082.03
TotalPay                215175.83
TotalPayBenefits        267257.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73285, dtype: object)
(73286, Id                           73287
EmployeeName        Michael P Daly
JobTitle             Nurse Manager
BasePay                  181263.01
OvertimePay                    0.0
OtherPay                  33836.46
Benefits                  52112.96
TotalPay                 215099.47
TotalPayBenefits         267212.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73286, dtype: object)
(73287, Id                                       73288
EmployeeName                     Susan  Philip
JobTitle            Supervising Physician Spec
BasePay                              212516.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               54665.5
TotalPay                             212516.51
TotalPayBenefits                     267182.01
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73287, dtype: object)
(73288, Id                          73289
EmployeeName        Fuad S Sweiss
JobTitle               Dep Dir IV
BasePay                 205424.18
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 61749.34
TotalPay                205424.18
TotalPayBenefits        267173.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73288, dtype: object)
(73289, Id                           73290
EmployeeName        Stephen D Cruz
JobTitle               Firefighter
BasePay                  116956.73
OvertimePay               88042.64
OtherPay                  20336.28
Benefits                  41555.93
TotalPay                 225335.65
TotalPayBenefits         266891.58
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73289, dtype: object)
(73290, Id                                      73291
EmployeeName               Michael V Rolovich
JobTitle            Captain, Fire Suppression
BasePay                             160688.47
OvertimePay                            3677.9
OtherPay                              45453.2
Benefits                             56908.28
TotalPay                            209819.57
TotalPayBenefits                    266727.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73290, dtype: object)
(73291, Id                                        73292
EmployeeName                  Steven P Thompson
JobTitle            Senior Physician Specialist
BasePay                               209905.06
OvertimePay                                 0.0
OtherPay                                 2760.0
Benefits                               54020.01
TotalPay                              212665.06
TotalPayBenefits                      266685.07
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73291, dtype: object)
(73292, Id                                73293
EmployeeName        Surinderjeet  Bajwa
JobTitle                   Manager VIII
BasePay                       202106.36
OvertimePay                         0.0
OtherPay                        2807.66
Benefits                       61700.52
TotalPay                      204914.02
TotalPayBenefits              266614.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73292, dtype: object)
(73293, Id                          73294
EmployeeName        Edgar A Lopez
JobTitle               Dep Dir IV
BasePay                 205027.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 61580.47
TotalPay                205027.55
TotalPayBenefits        266608.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73293, dtype: object)
(73294, Id                              73295
EmployeeName        Marcellina A Ogbu
JobTitle                    Dep Dir V
BasePay                      201915.0
OvertimePay                       0.0
OtherPay                       3037.5
Benefits                     61609.99
TotalPay                     204952.5
TotalPayBenefits            266562.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73294, dtype: object)
(73295, Id                                      73296
EmployeeName                   Andrew M Logan
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134469.51
OvertimePay                          81060.89
OtherPay                               8088.9
Benefits                             42939.17
TotalPay                             223619.3
TotalPayBenefits                    266558.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73295, dtype: object)
(73296, Id                             73297
EmployeeName        Valerie E Inouye
JobTitle                Manager VIII
BasePay                    204889.65
OvertimePay                      0.0
OtherPay                       37.92
Benefits                    61614.71
TotalPay                   204927.57
TotalPayBenefits           266542.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73296, dtype: object)
(73297, Id                             73298
EmployeeName        Alexander C Boal
JobTitle                 Anesthetist
BasePay                    196574.52
OvertimePay                  4445.86
OtherPay                     7232.43
Benefits                    58151.15
TotalPay                   208252.81
TotalPayBenefits           266403.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73297, dtype: object)
(73298, Id                                      73299
EmployeeName                      Eric D Leal
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          42183.93
OtherPay                             19396.81
Benefits                             49531.06
TotalPay                            216755.23
TotalPayBenefits                    266286.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73298, dtype: object)
(73299, Id                                      73300
EmployeeName                   Rafael  Gordon
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.71
OvertimePay                          70655.35
OtherPay                             16739.43
Benefits                             44877.84
TotalPay                            221310.49
TotalPayBenefits                    266188.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73299, dtype: object)
(73300, Id                                73301
EmployeeName        Douglas G McEachern
JobTitle                      Captain 3
BasePay                        206820.0
OvertimePay                      724.11
OtherPay                        5763.67
Benefits                       52823.25
TotalPay                      213307.78
TotalPayBenefits              266131.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73300, dtype: object)
(73301, Id                          73302
EmployeeName        John J Feeney
JobTitle                Captain 3
BasePay                 206820.02
OvertimePay                732.49
OtherPay                  4987.12
Benefits                  53585.5
TotalPay                212539.63
TotalPayBenefits        266125.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73301, dtype: object)
(73302, Id                          73303
EmployeeName            Jay K Lee
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              88019.98
OtherPay                 19689.81
Benefits                 41406.59
TotalPay                224666.51
TotalPayBenefits         266073.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73302, dtype: object)
(73303, Id                                         73304
EmployeeName                          James  App
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                              67698.0
OtherPay                                16987.99
Benefits                                45434.31
TotalPay                               220588.95
TotalPayBenefits                       266023.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73303, dtype: object)
(73304, Id                          73305
EmployeeName        Johnson F You
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay              89263.44
OtherPay                 19802.75
Benefits                 41044.37
TotalPay                224959.66
TotalPayBenefits        266004.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73304, dtype: object)
(73305, Id                          73306
EmployeeName         Daniel W Cox
JobTitle              Anesthetist
BasePay                 203521.67
OvertimePay               1940.41
OtherPay                  3918.28
Benefits                 56602.62
TotalPay                209380.36
TotalPayBenefits        265982.98
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73305, dtype: object)
(73306, Id                                         73307
EmployeeName                   Dennis W Sullivan
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             67554.69
OtherPay                                17161.01
Benefits                                45356.77
TotalPay                               220618.62
TotalPayBenefits                       265975.39
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73306, dtype: object)
(73307, Id                                      73308
EmployeeName                Matthew  Schwartz
JobTitle            Captain, Fire Suppression
BasePay                             153763.82
OvertimePay                          41976.48
OtherPay                             21039.42
Benefits                             49099.61
TotalPay                            216779.72
TotalPayBenefits                    265879.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73307, dtype: object)
(73308, Id                            73309
EmployeeName        Deborah P Logan
JobTitle              Nurse Manager
BasePay                   181263.04
OvertimePay                  1005.9
OtherPay                   32025.82
Benefits                   51383.22
TotalPay                  214294.76
TotalPayBenefits          265677.98
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73308, dtype: object)
(73309, Id                                      73310
EmployeeName                 James  MacDonell
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                           68315.4
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            220352.67
TotalPayBenefits                    265625.66
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73309, dtype: object)
(73310, Id                             73311
EmployeeName        Teresa C Barrett
JobTitle                   Captain 3
BasePay                    206820.01
OvertimePay                      0.0
OtherPay                     5139.63
Benefits                    53605.97
TotalPay                   211959.64
TotalPayBenefits           265565.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73310, dtype: object)
(73311, Id                            73312
EmployeeName        Toney D Chaplin
JobTitle               Lieutenant 3
BasePay                   162919.07
OvertimePay                13837.32
OtherPay                   43907.99
Benefits                   44828.35
TotalPay                  220664.38
TotalPayBenefits          265492.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73311, dtype: object)
(73312, Id                             73313
EmployeeName        John  Sanford Jr
JobTitle                   Captain 3
BasePay                    206820.01
OvertimePay                      0.0
OtherPay                     4987.08
Benefits                    53605.95
TotalPay                   211807.09
TotalPayBenefits           265413.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73312, dtype: object)
(73313, Id                             73314
EmployeeName        Stephen M Tittel
JobTitle                   Captain 3
BasePay                     206820.0
OvertimePay                      0.0
OtherPay                     4986.93
Benefits                     53605.9
TotalPay                   211806.93
TotalPayBenefits           265412.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73313, dtype: object)
(73314, Id                          73315
EmployeeName        Ellen R Levin
JobTitle             Manager VIII
BasePay                 201952.52
OvertimePay                   0.0
OtherPay                   2000.0
Benefits                 61401.79
TotalPay                203952.52
TotalPayBenefits        265354.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73314, dtype: object)
(73315, Id                             73316
EmployeeName        Timothy J Falvey
JobTitle                   Captain 3
BasePay                     206820.0
OvertimePay                      0.0
OtherPay                     5639.61
Benefits                     52823.6
TotalPay                   212459.61
TotalPayBenefits           265283.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73315, dtype: object)
(73316, Id                          73317
EmployeeName        David S Lazar
JobTitle                Captain 3
BasePay                 206820.02
OvertimePay                   0.0
OtherPay                  5638.04
Benefits                 52823.26
TotalPay                212458.06
TotalPayBenefits        265281.32
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73316, dtype: object)
(73317, Id                          73318
EmployeeName         Kevin W Kuhn
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              83571.78
OtherPay                  22617.3
Benefits                 42115.32
TotalPay                223145.78
TotalPayBenefits         265261.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73317, dtype: object)
(73318, Id                           73319
EmployeeName        Robert M Moser
JobTitle                 Captain 3
BasePay                   206820.0
OvertimePay                    0.0
OtherPay                   5638.03
Benefits                  52783.11
TotalPay                 212458.03
TotalPayBenefits         265241.14
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73318, dtype: object)
(73319, Id                                           73320
EmployeeName                      Thomas P OConnor
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  155676.08
OvertimePay                               39554.08
OtherPay                                  20412.55
Benefits                                  49540.06
TotalPay                                 215642.71
TotalPayBenefits                         265182.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73319, dtype: object)
(73320, Id                                         73321
EmployeeName                      David C Ritter
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                             62389.77
OtherPay                                20709.06
Benefits                                46146.45
TotalPay                               219001.76
TotalPayBenefits                       265148.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73320, dtype: object)
(73321, Id                          73322
EmployeeName         John F Burke
JobTitle               Sergeant 3
BasePay                 142227.63
OvertimePay              54481.82
OtherPay                 27935.27
Benefits                 40495.64
TotalPay                224644.72
TotalPayBenefits        265140.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73321, dtype: object)
(73322, Id                                      73323
EmployeeName                    Jared  Kunkel
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.22
OvertimePay                          68538.53
OtherPay                             16254.14
Benefits                             45143.19
TotalPay                            219936.89
TotalPayBenefits                    265080.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73322, dtype: object)
(73323, Id                                 73324
EmployeeName             Tiffany J Bohee
JobTitle            Special Assistant 21
BasePay                        201952.51
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        63103.46
TotalPay                       201952.51
TotalPayBenefits               265055.97
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73323, dtype: object)
(73324, Id                               73325
EmployeeName          Vincent J Harris
JobTitle            Deputy Dir II, MTA
BasePay                       201952.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      63103.46
TotalPay                      201952.5
TotalPayBenefits             265055.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73324, dtype: object)
(73325, Id                                      73326
EmployeeName                  Shayne  Kaialoa
JobTitle            Captain, Fire Suppression
BasePay                             153763.83
OvertimePay                           40458.2
OtherPay                             21320.09
Benefits                             49348.72
TotalPay                            215542.12
TotalPayBenefits                    264890.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73325, dtype: object)
(73326, Id                               73327
EmployeeName         Bronwyn  Gundogdu
JobTitle            Nursing Supervisor
BasePay                      205996.03
OvertimePay                        0.0
OtherPay                       5507.73
Benefits                      53378.18
TotalPay                     211503.76
TotalPayBenefits             264881.94
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73326, dtype: object)
(73327, Id                                      73328
EmployeeName                  Glen M Kojimoto
JobTitle            Captain, Fire Suppression
BasePay                              153763.8
OvertimePay                          47744.66
OtherPay                             14868.47
Benefits                             48356.42
TotalPay                            216376.93
TotalPayBenefits                    264733.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73327, dtype: object)
(73328, Id                          73329
EmployeeName        Julian A Hill
JobTitle             Lieutenant 3
BasePay                 166889.05
OvertimePay              33024.06
OtherPay                 17344.36
Benefits                 47472.38
TotalPay                217257.47
TotalPayBenefits        264729.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73328, dtype: object)
(73329, Id                            73330
EmployeeName        Kenneth  Martin
JobTitle                Firefighter
BasePay                   116398.93
OvertimePay                90841.08
OtherPay                   16373.21
Benefits                   41114.87
TotalPay                  223613.22
TotalPayBenefits          264728.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73329, dtype: object)
(73330, Id                          73331
EmployeeName         Karen M Roye
JobTitle            Dept Head III
BasePay                 203422.79
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 61266.69
TotalPay                203422.79
TotalPayBenefits        264689.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73330, dtype: object)
(73331, Id                          73332
EmployeeName        Robert E Reed
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              83818.95
OtherPay                  22062.2
Benefits                 41848.62
TotalPay                222837.86
TotalPayBenefits        264686.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73331, dtype: object)
(73332, Id                                      73333
EmployeeName                   Andrew  Thomas
JobTitle            EMT/Paramedic/Firefighter
BasePay                             149259.08
OvertimePay                          41133.76
OtherPay                             27834.76
Benefits                              46267.4
TotalPay                             218227.6
TotalPayBenefits                     264495.0
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73332, dtype: object)
(73333, Id                               73334
EmployeeName           Vagn A Petersen
JobTitle            Nurse Practitioner
BasePay                      176181.84
OvertimePay                   13985.33
OtherPay                      18470.43
Benefits                      55812.48
TotalPay                      208637.6
TotalPayBenefits             264450.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73333, dtype: object)
(73334, Id                                         73335
EmployeeName                     Kenneth W Hupke
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             62082.11
OtherPay                                20421.57
Benefits                                45947.88
TotalPay                               218406.62
TotalPayBenefits                        264354.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73334, dtype: object)
(73335, Id                                        73336
EmployeeName                  David N Hayashida
JobTitle            Senior Physician Specialist
BasePay                               210022.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               54187.14
TotalPay                              210022.04
TotalPayBenefits                      264209.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73335, dtype: object)
(73336, Id                            73337
EmployeeName        Alan R Johanson
JobTitle               Manager VIII
BasePay                   202106.37
OvertimePay                     0.0
OtherPay                     807.66
Benefits                   61284.13
TotalPay                  202914.03
TotalPayBenefits          264198.16
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73336, dtype: object)
(73337, Id                          73338
EmployeeName          Hugh D Hall
JobTitle               Sergeant 3
BasePay                 143289.22
OvertimePay              72919.43
OtherPay                  7059.81
Benefits                 40804.46
TotalPay                223268.46
TotalPayBenefits        264072.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73337, dtype: object)
(73338, Id                            73339
EmployeeName        David M Wangler
JobTitle                Anesthetist
BasePay                   196716.94
OvertimePay                 2546.94
OtherPay                    6102.48
Benefits                   58681.58
TotalPay                  205366.36
TotalPayBenefits          264047.94
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73338, dtype: object)
(73339, Id                                         73340
EmployeeName                      Reuben N Ramos
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             66399.17
OtherPay                                16345.54
Benefits                                45320.52
TotalPay                               218647.67
TotalPayBenefits                       263968.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73339, dtype: object)
(73340, Id                                         73341
EmployeeName                 Berglioth M Mathews
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.46
OvertimePay                             72684.59
OtherPay                                12452.85
Benefits                                43820.74
TotalPay                                219804.9
TotalPayBenefits                       263625.64
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73340, dtype: object)
(73341, Id                          73342
EmployeeName        Todd M Prakin
JobTitle              Firefighter
BasePay                 116987.69
OvertimePay               85485.6
OtherPay                 19489.28
Benefits                 41389.39
TotalPay                221962.57
TotalPayBenefits        263351.96
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73341, dtype: object)
(73342, Id                                73343
EmployeeName        Josephine C Rapadas
JobTitle                  Nurse Manager
BasePay                       184168.54
OvertimePay                     11409.7
OtherPay                       15507.37
Benefits                       52261.47
TotalPay                      211085.61
TotalPayBenefits              263347.08
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73342, dtype: object)
(73343, Id                              73344
EmployeeName        Eric R Batchelder
JobTitle                   Sergeant 3
BasePay                     143289.02
OvertimePay                  57800.56
OtherPay                     21435.14
Benefits                     40811.57
TotalPay                    222524.72
TotalPayBenefits            263336.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73343, dtype: object)
(73344, Id                                         73345
EmployeeName                   Darius O Luttropp
JobTitle            Lieutenant, Fire Suppression
BasePay                                133689.39
OvertimePay                             51176.89
OtherPay                                31315.96
Benefits                                47052.91
TotalPay                               216182.24
TotalPayBenefits                       263235.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73344, dtype: object)
(73345, Id                          73346
EmployeeName          Frank E Lee
JobTitle             Lieutenant 3
BasePay                  115178.0
OvertimePay               4553.62
OtherPay                110794.56
Benefits                 32679.37
TotalPay                230526.18
TotalPayBenefits        263205.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73345, dtype: object)
(73346, Id                          73347
EmployeeName         Ellen J Brin
JobTitle             Undersheriff
BasePay                 189063.04
OvertimePay                   0.0
OtherPay                  13058.1
Benefits                 61024.63
TotalPay                202121.14
TotalPayBenefits        263145.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73346, dtype: object)
(73347, Id                           73348
EmployeeName        David A Briggs
JobTitle              Manager VIII
BasePay                   201952.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  61099.68
TotalPay                  201952.5
TotalPayBenefits         263052.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73347, dtype: object)
(73348, Id                                      73349
EmployeeName                     Brent  Marks
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.61
OvertimePay                          77839.47
OtherPay                              8049.16
Benefits                             43234.93
TotalPay                            219804.24
TotalPayBenefits                    263039.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73348, dtype: object)
(73349, Id                               73350
EmployeeName        Eugene G Clendinen
JobTitle                  Manager VIII
BasePay                      201952.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      61083.93
TotalPay                     201952.53
TotalPayBenefits             263036.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73349, dtype: object)
(73350, Id                                73351
EmployeeName             Rose  Quinones
JobTitle            Physician Assistant
BasePay                        184080.4
OvertimePay                     27920.6
OtherPay                         1395.0
Benefits                       49548.12
TotalPay                       213396.0
TotalPayBenefits              262944.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73350, dtype: object)
(73351, Id                                      73352
EmployeeName                    Frank  Cercos
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          32941.54
OtherPay                             24523.93
Benefits                              50292.9
TotalPay                            212639.95
TotalPayBenefits                    262932.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73351, dtype: object)
(73352, Id                               73353
EmployeeName        Geoffrey W Neumayr
JobTitle             Project Manager 4
BasePay                       206825.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      55891.46
TotalPay                      206825.0
TotalPayBenefits             262716.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73352, dtype: object)
(73353, Id                                      73354
EmployeeName                  Scott W Kinkade
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.22
OvertimePay                          66224.22
OtherPay                              16174.3
Benefits                             45163.03
TotalPay                            217542.74
TotalPayBenefits                    262705.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73353, dtype: object)
(73354, Id                             73355
EmployeeName        Patrick G Rivera
JobTitle                 Manager VII
BasePay                    201649.98
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    61025.91
TotalPay                   201649.98
TotalPayBenefits           262675.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73354, dtype: object)
(73355, Id                                         73356
EmployeeName                       Alan  Reynaud
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             63327.77
OtherPay                                17816.56
Benefits                                45588.79
TotalPay                               217047.28
TotalPayBenefits                       262636.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73355, dtype: object)
(73356, Id                                         73357
EmployeeName                   Richard D Untalan
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                              64619.2
OtherPay                                 16588.3
Benefits                                 45498.5
TotalPay                               217110.47
TotalPayBenefits                       262608.97
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73356, dtype: object)
(73357, Id                          73358
EmployeeName         Jon M Kasper
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              53366.05
OtherPay                 25133.52
Benefits                 40797.68
TotalPay                221788.69
TotalPayBenefits        262586.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73357, dtype: object)
(73358, Id                          73359
EmployeeName          Rasmi  Chan
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              88745.37
OtherPay                 16124.04
Benefits                 40718.49
TotalPay                221826.13
TotalPayBenefits        262544.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73358, dtype: object)
(73359, Id                                73360
EmployeeName        Daniel G Cunningham
JobTitle                    Inspector 3
BasePay                       143289.06
OvertimePay                    49423.48
OtherPay                       28925.08
Benefits                       40811.59
TotalPay                      221637.62
TotalPayBenefits              262449.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73359, dtype: object)
(73360, Id                                        73361
EmployeeName                     Hung Ming  Chu
JobTitle            Senior Physician Specialist
BasePay                               198617.34
OvertimePay                                 0.0
OtherPay                                9931.93
Benefits                               53566.39
TotalPay                              208549.27
TotalPayBenefits                      262115.66
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73360, dtype: object)
(73361, Id                              73362
EmployeeName        Denise M Flaherty
JobTitle                    Captain 3
BasePay                     206820.04
OvertimePay                   1597.83
OtherPay                       850.64
Benefits                     52823.34
TotalPay                    209268.51
TotalPayBenefits            262091.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73361, dtype: object)
(73362, Id                                         73363
EmployeeName                    George V Lysenko
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             61824.53
OtherPay                                18609.18
Benefits                                 45721.4
TotalPay                               216336.68
TotalPayBenefits                       262058.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73362, dtype: object)
(73363, Id                            73364
EmployeeName          Michie L Wong
JobTitle            Lieut,Fire Prev
BasePay                   186430.54
OvertimePay                12824.15
OtherPay                   11185.83
Benefits                   51536.05
TotalPay                  210440.52
TotalPayBenefits          261976.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73363, dtype: object)
(73364, Id                              73365
EmployeeName        Michael O Simmons
JobTitle             Police Officer 3
BasePay                     123471.13
OvertimePay                  82819.57
OtherPay                     18563.69
Benefits                     37055.22
TotalPay                    224854.39
TotalPayBenefits            261909.61
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73364, dtype: object)
(73365, Id                                        73366
EmployeeName           Monica M Banchero-Hasson
JobTitle            Senior Physician Specialist
BasePay                               203835.02
OvertimePay                                 0.0
OtherPay                                 5495.0
Benefits                               52498.76
TotalPay                              209330.02
TotalPayBenefits                      261828.78
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73365, dtype: object)
(73366, Id                            73367
EmployeeName           Alfred K Joe
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                52184.86
OtherPay                    28403.9
Benefits                   41545.88
TotalPay                  220232.76
TotalPayBenefits          261778.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73366, dtype: object)
(73367, Id                                73368
EmployeeName        Terence M OSullivan
JobTitle                    Firefighter
BasePay                       116956.72
OvertimePay                    80773.73
OtherPay                       21983.11
Benefits                       42048.16
TotalPay                      219713.56
TotalPayBenefits              261761.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73367, dtype: object)
(73368, Id                            73369
EmployeeName        Joseph W Engler
JobTitle               Lieutenant 3
BasePay                   163674.02
OvertimePay                43047.35
OtherPay                   10320.63
Benefits                   44660.88
TotalPay                   217042.0
TotalPayBenefits          261702.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73368, dtype: object)
(73369, Id                                        73370
EmployeeName                       Emilio  Cruz
JobTitle            Executive Contract Employee
BasePay                               203391.03
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               58252.02
TotalPay                              203391.03
TotalPayBenefits                      261643.05
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73369, dtype: object)
(73370, Id                             73371
EmployeeName        Jason A Cherniss
JobTitle                   Captain 3
BasePay                    206820.02
OvertimePay                   1149.0
OtherPay                      850.51
Benefits                    52823.27
TotalPay                   208819.53
TotalPayBenefits            261642.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73370, dtype: object)
(73371, Id                                        73372
EmployeeName                    Steven  Wozniak
JobTitle            Senior Physician Specialist
BasePay                               197714.05
OvertimePay                                 0.0
OtherPay                                9885.61
Benefits                               53724.95
TotalPay                              207599.66
TotalPayBenefits                      261324.61
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73371, dtype: object)
(73372, Id                                    73373
EmployeeName                Robert D Gallot
JobTitle            Fire Safety Inspector 2
BasePay                            139644.0
OvertimePay                        70721.98
OtherPay                            8378.64
Benefits                           42513.11
TotalPay                          218744.62
TotalPayBenefits                  261257.73
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 73372, dtype: object)
(73373, Id                              73374
EmployeeName        Michael S Castain
JobTitle                  Firefighter
BasePay                     115893.48
OvertimePay                  84674.27
OtherPay                     19625.63
Benefits                     41044.37
TotalPay                    220193.38
TotalPayBenefits            261237.75
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73373, dtype: object)
(73374, Id                                        73375
EmployeeName                       David J Pine
JobTitle            Senior Physician Specialist
BasePay                               197599.52
OvertimePay                                 0.0
OtherPay                                 9880.7
Benefits                               53700.05
TotalPay                              207480.22
TotalPayBenefits                      261180.27
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73374, dtype: object)
(73375, Id                              73376
EmployeeName        Michael J Favetti
JobTitle                 Lieutenant 3
BasePay                      87486.02
OvertimePay                    9824.9
OtherPay                    140352.14
Benefits                     23471.18
TotalPay                    237663.06
TotalPayBenefits            261134.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73375, dtype: object)
(73376, Id                              73377
EmployeeName        Patricia A Coggan
JobTitle                Nurse Manager
BasePay                      170640.0
OvertimePay                       0.0
OtherPay                     39249.78
Benefits                     51207.27
TotalPay                    209889.78
TotalPayBenefits            261097.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73376, dtype: object)
(73377, Id                                        73378
EmployeeName                      Curtis W Chan
JobTitle            Senior Physician Specialist
BasePay                                197599.5
OvertimePay                                 0.0
OtherPay                                 9600.0
Benefits                               53877.86
TotalPay                               207199.5
TotalPayBenefits                      261077.36
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73377, dtype: object)
(73378, Id                                       73379
EmployeeName                      Ellen H Chen
JobTitle            Supervising Physician Spec
BasePay                              201391.52
OvertimePay                                0.0
OtherPay                                4800.0
Benefits                               54873.4
TotalPay                             206191.52
TotalPayBenefits                     261064.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73378, dtype: object)
(73379, Id                          73380
EmployeeName        Patrick  Kwan
JobTitle               Sergeant 3
BasePay                 143289.09
OvertimePay              68114.11
OtherPay                  8695.44
Benefits                  40837.9
TotalPay                220098.64
TotalPayBenefits        260936.54
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73379, dtype: object)
(73380, Id                                        73381
EmployeeName                   Michael T Geiser
JobTitle            Senior Physician Specialist
BasePay                                187101.5
OvertimePay                                 0.0
OtherPay                                20125.8
Benefits                                53678.0
TotalPay                               207227.3
TotalPayBenefits                       260905.3
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73380, dtype: object)
(73381, Id                          73382
EmployeeName        Juliet  Ellis
JobTitle               Dep Dir IV
BasePay                 200375.28
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  60467.8
TotalPay                200375.28
TotalPayBenefits        260843.08
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73381, dtype: object)
(73382, Id                             73383
EmployeeName        Catherine J Dodd
JobTitle               Dept Head III
BasePay                    197146.91
OvertimePay                      0.0
OtherPay                      3000.0
Benefits                    60689.34
TotalPay                   200146.91
TotalPayBenefits           260836.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73382, dtype: object)
(73383, Id                             73384
EmployeeName        William D Murray
JobTitle                  Sergeant 3
BasePay                    148374.13
OvertimePay                 55522.06
OtherPay                    13495.31
Benefits                    43215.01
TotalPay                    217391.5
TotalPayBenefits           260606.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73383, dtype: object)
(73384, Id                              73385
EmployeeName        Robert L Armanino
JobTitle                 Lieutenant 3
BasePay                      87899.08
OvertimePay                  12507.63
OtherPay                    135248.95
Benefits                     24739.75
TotalPay                    235655.66
TotalPayBenefits            260395.41
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73384, dtype: object)
(73385, Id                                      73386
EmployeeName                  James S Kircher
JobTitle            Captain, Fire Suppression
BasePay                             153763.84
OvertimePay                          30380.42
OtherPay                             26702.76
Benefits                             49492.83
TotalPay                            210847.02
TotalPayBenefits                    260339.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73385, dtype: object)
(73386, Id                            73387
EmployeeName        David A Counter
JobTitle                Manager VII
BasePay                    197513.9
OvertimePay                     0.0
OtherPay                    2036.42
Benefits                   60656.94
TotalPay                  199550.32
TotalPayBenefits          260207.26
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73386, dtype: object)
(73387, Id                           73388
EmployeeName        Sally J Saxton
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               91638.34
OtherPay                   11633.6
Benefits                  39970.05
TotalPay                 220228.64
TotalPayBenefits         260198.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73387, dtype: object)
(73388, Id                            73389
EmployeeName        Scott R Sandine
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                83361.31
OtherPay                   19590.21
Benefits                   41044.36
TotalPay                  218844.98
TotalPayBenefits          259889.34
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73388, dtype: object)
(73389, Id                            73390
EmployeeName        Elisa S Ramirez
JobTitle              Nurse Manager
BasePay                   186912.05
OvertimePay                     0.0
OtherPay                   18691.25
Benefits                   54135.72
TotalPay                   205603.3
TotalPayBenefits          259739.02
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73389, dtype: object)
(73390, Id                               73391
EmployeeName               Masa  Rambo
JobTitle            Nurse Practitioner
BasePay                      189605.89
OvertimePay                        0.0
OtherPay                      12529.78
Benefits                      57546.75
TotalPay                     202135.67
TotalPayBenefits             259682.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73390, dtype: object)
(73391, Id                          73392
EmployeeName          Ryan M Toby
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              81448.79
OtherPay                 19776.25
Benefits                 41406.59
TotalPay                218181.73
TotalPayBenefits        259588.32
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73391, dtype: object)
(73392, Id                                         73393
EmployeeName                     Ethan H Jackson
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.47
OvertimePay                             58720.02
OtherPay                                20315.55
Benefits                                 45711.0
TotalPay                               213703.04
TotalPayBenefits                       259414.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73392, dtype: object)
(73393, Id                                           73394
EmployeeName                         Freya A Horne
JobTitle            Chief Atty1 (Civil & Criminal)
BasePay                                   203966.5
OvertimePay                                    0.0
OtherPay                                    1250.0
Benefits                                  54164.32
TotalPay                                  205216.5
TotalPayBenefits                         259380.82
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73393, dtype: object)
(73394, Id                               73395
EmployeeName               Debbie  Tam
JobTitle            Nursing Supervisor
BasePay                       205996.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      53378.18
TotalPay                      205996.0
TotalPayBenefits             259374.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73394, dtype: object)
(73395, Id                             73396
EmployeeName         Robert J Porter
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 74410.93
OtherPay                    16981.98
Benefits                    39371.17
TotalPay                   219948.91
TotalPayBenefits           259320.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73395, dtype: object)
(73396, Id                                 73397
EmployeeName          Christopher J Krol
JobTitle            Sheriff's Lieutenant
BasePay                        131410.23
OvertimePay                      61733.6
OtherPay                        22320.28
Benefits                         43841.6
TotalPay                       215464.11
TotalPayBenefits               259305.71
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73396, dtype: object)
(73397, Id                                      73398
EmployeeName                  Michael  Hastey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.68
OvertimePay                          63584.83
OtherPay                             16739.44
Benefits                             44877.83
TotalPay                            214239.95
TotalPayBenefits                    259117.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73397, dtype: object)
(73398, Id                                       73399
EmployeeName        Zeba Iman  Nazeeri-Simmons
JobTitle                           Manager VII
BasePay                              198505.33
OvertimePay                                0.0
OtherPay                                  36.6
Benefits                              60430.49
TotalPay                             198541.93
TotalPayBenefits                     258972.42
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73398, dtype: object)
(73399, Id                          73400
EmployeeName           Roger W Ng
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              78412.81
OtherPay                 21487.81
Benefits                  42090.7
TotalPay                216857.35
TotalPayBenefits        258948.05
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73399, dtype: object)
(73400, Id                           73401
EmployeeName        Rosemary S Lee
JobTitle             Nurse Manager
BasePay                  186912.02
OvertimePay                    0.0
OtherPay                  18726.21
Benefits                  53309.11
TotalPay                 205638.23
TotalPayBenefits         258947.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73400, dtype: object)
(73401, Id                          73402
EmployeeName        John F Murphy
JobTitle              Commander 3
BasePay                  92367.01
OvertimePay                   0.0
OtherPay                143599.14
Benefits                 22915.51
TotalPay                235966.15
TotalPayBenefits        258881.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73401, dtype: object)
(73402, Id                           73403
EmployeeName        Lisa  Hoffmann
JobTitle                Dep Dir IV
BasePay                  198907.94
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  59956.32
TotalPay                 198907.94
TotalPayBenefits         258864.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73402, dtype: object)
(73403, Id                           73404
EmployeeName        Jill S Lecount
JobTitle             Nurse Manager
BasePay                   186912.0
OvertimePay                    0.0
OtherPay                  18691.21
Benefits                  53248.87
TotalPay                 205603.21
TotalPayBenefits         258852.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73403, dtype: object)
(73404, Id                                       73405
EmployeeName                Julie  Van Nostern
JobTitle            Assistant Chief Attorney 1
BasePay                               203425.1
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              54158.47
TotalPay                              204674.6
TotalPayBenefits                     258833.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73404, dtype: object)
(73405, Id                             73406
EmployeeName        Elaine M Coleman
JobTitle               Nurse Manager
BasePay                    186753.84
OvertimePay                      0.0
OtherPay                    18675.44
Benefits                    53255.23
TotalPay                   205429.28
TotalPayBenefits           258684.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73405, dtype: object)
(73406, Id                                      73407
EmployeeName                 William O Storti
JobTitle            Captain, Fire Suppression
BasePay                             172005.78
OvertimePay                          12912.67
OtherPay                             22282.41
Benefits                             51452.21
TotalPay                            207200.86
TotalPayBenefits                    258653.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73406, dtype: object)
(73407, Id                                       73408
EmployeeName                     June D Cravet
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.09
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                               53882.7
TotalPay                             204675.09
TotalPayBenefits                     258557.79
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73407, dtype: object)
(73408, Id                                       73409
EmployeeName               Kate Herrman  Stacy
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.09
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53882.61
TotalPay                             204674.59
TotalPayBenefits                      258557.2
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73408, dtype: object)
(73409, Id                                       73410
EmployeeName                 Donald P Margolis
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.06
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53882.61
TotalPay                             204674.56
TotalPayBenefits                     258557.17
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73409, dtype: object)
(73410, Id                              73411
EmployeeName        Michael D Coleman
JobTitle                  Firefighter
BasePay                     115893.45
OvertimePay                  81709.61
OtherPay                     19856.05
Benefits                     41044.36
TotalPay                    217459.11
TotalPayBenefits            258503.47
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73410, dtype: object)
(73411, Id                                       73412
EmployeeName                   Jerry P Coleman
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.01
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                              53825.12
TotalPay                             204675.01
TotalPayBenefits                     258500.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73411, dtype: object)
(73412, Id                                      73413
EmployeeName                   Ronald C Pruyn
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          23664.11
OtherPay                             28420.02
Benefits                             51202.72
TotalPay                            207258.62
TotalPayBenefits                    258461.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73412, dtype: object)
(73413, Id                                       73414
EmployeeName                 Theresa L Mueller
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.11
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.64
TotalPay                             204674.61
TotalPayBenefits                     258317.25
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73413, dtype: object)
(73414, Id                                       73415
EmployeeName                      James  Emery
JobTitle            Assistant Chief Attorney 1
BasePay                               203425.1
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                              204674.6
TotalPayBenefits                     258317.23
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73414, dtype: object)
(73415, Id                                       73416
EmployeeName             Julia M C Friedlander
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.06
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                             204674.56
TotalPayBenefits                     258317.19
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73415, dtype: object)
(73416, Id                                       73417
EmployeeName                    Robert A Bryan
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.06
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                             204674.56
TotalPayBenefits                     258317.19
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73416, dtype: object)
(73417, Id                                       73418
EmployeeName                Aleeta  Van Runkle
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.06
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                             204674.56
TotalPayBenefits                     258317.19
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73417, dtype: object)
(73418, Id                                       73419
EmployeeName                    Ronald P Flynn
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.01
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                             204674.51
TotalPayBenefits                     258317.14
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73418, dtype: object)
(73419, Id                                       73420
EmployeeName                   Owen J Clements
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.01
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53642.63
TotalPay                             204674.51
TotalPayBenefits                     258317.14
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73419, dtype: object)
(73420, Id                                       73421
EmployeeName                 Wayne K Snodgrass
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.08
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              53546.43
TotalPay                             204674.58
TotalPayBenefits                     258221.01
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73420, dtype: object)
(73421, Id                          73422
EmployeeName        Jeff  Iwasaki
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              78691.32
OtherPay                 21105.31
Benefits                 41406.59
TotalPay                216753.36
TotalPayBenefits        258159.95
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73421, dtype: object)
(73422, Id                                       73423
EmployeeName                  Paul D Henderson
JobTitle            Assistant Chief Attorney 1
BasePay                              203425.02
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                              53370.78
TotalPay                             204675.02
TotalPayBenefits                      258045.8
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73422, dtype: object)
(73423, Id                          73424
EmployeeName          Craig F Tom
JobTitle               Sergeant 3
BasePay                 143289.11
OvertimePay              46682.45
OtherPay                  25302.4
Benefits                 42737.71
TotalPay                215273.96
TotalPayBenefits        258011.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73423, dtype: object)
(73424, Id                                73425
EmployeeName        Hratch S Sarkissian
JobTitle                     Sergeant 3
BasePay                       143289.12
OvertimePay                    61268.94
OtherPay                       12560.48
Benefits                       40795.93
TotalPay                      217118.54
TotalPayBenefits              257914.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73424, dtype: object)
(73425, Id                                      73426
EmployeeName               Patrick K Mullaney
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          28156.93
OtherPay                             24237.91
Benefits                             50345.11
TotalPay                            207569.32
TotalPayBenefits                    257914.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73425, dtype: object)
(73426, Id                               73427
EmployeeName            Eric  Cranston
JobTitle            Sheriff's Sergeant
BasePay                       114649.8
OvertimePay                   85552.82
OtherPay                      17441.35
Benefits                      40263.85
TotalPay                     217643.97
TotalPayBenefits             257907.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73426, dtype: object)
(73427, Id                          73428
EmployeeName           Chad D Law
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay              81981.52
OtherPay                  18792.7
Benefits                 41044.37
TotalPay                216667.69
TotalPayBenefits        257712.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73427, dtype: object)
(73428, Id                             73429
EmployeeName        Angus M Chambers
JobTitle                  Sergeant 3
BasePay                     126892.0
OvertimePay                 54421.35
OtherPay                    38593.76
Benefits                     37773.3
TotalPay                   219907.11
TotalPayBenefits           257680.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73428, dtype: object)
(73429, Id                          73430
EmployeeName            Lan B Lee
JobTitle            Nurse Manager
BasePay                  175803.0
OvertimePay                   0.0
OtherPay                  30701.4
Benefits                 51110.89
TotalPay                 206504.4
TotalPayBenefits        257615.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73429, dtype: object)
(73430, Id                          73431
EmployeeName          Robert  Tai
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              78575.13
OtherPay                 20435.42
Benefits                 41611.96
TotalPay                215967.24
TotalPayBenefits         257579.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73430, dtype: object)
(73431, Id                                        73432
EmployeeName                   John D Cavanaugh
JobTitle            Captain, Emergency Med Svcs
BasePay                               155174.49
OvertimePay                            33577.64
OtherPay                               19378.75
Benefits                               49401.14
TotalPay                              208130.88
TotalPayBenefits                      257532.02
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73431, dtype: object)
(73432, Id                                           73433
EmployeeName                Lourdes Maria  Russell
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   160860.0
OvertimePay                               36820.91
OtherPay                                   13896.6
Benefits                                  45912.93
TotalPay                                 211577.51
TotalPayBenefits                         257490.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73432, dtype: object)
(73433, Id                          73434
EmployeeName         Kenwade  Lee
JobTitle             Lieutenant 3
BasePay                 163674.02
OvertimePay               8673.91
OtherPay                 34983.26
Benefits                 50026.04
TotalPay                207331.19
TotalPayBenefits        257357.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73433, dtype: object)
(73434, Id                          73435
EmployeeName          Jason G Fox
JobTitle                Captain 3
BasePay                 203929.06
OvertimePay                   0.0
OtherPay                  1050.65
Benefits                 52311.33
TotalPay                204979.71
TotalPayBenefits        257291.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73434, dtype: object)
(73435, Id                             73436
EmployeeName        Edward J Londono
JobTitle                 Firefighter
BasePay                    119569.57
OvertimePay                 79865.12
OtherPay                     16461.5
Benefits                    41104.55
TotalPay                   215896.19
TotalPayBenefits           257000.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73435, dtype: object)
(73436, Id                          73437
EmployeeName          Curtis  Liu
JobTitle             Lieutenant 3
BasePay                 162919.09
OvertimePay              12004.94
OtherPay                 36884.03
Benefits                 45121.74
TotalPay                211808.06
TotalPayBenefits         256929.8
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73436, dtype: object)
(73437, Id                          73438
EmployeeName        Robert A Wong
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              78842.67
OtherPay                 19643.32
Benefits                 41406.58
TotalPay                215442.68
TotalPayBenefits        256849.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73437, dtype: object)
(73438, Id                                      73439
EmployeeName                     Mark T Hayes
JobTitle            Captain, Fire Suppression
BasePay                             153763.81
OvertimePay                           30301.8
OtherPay                             23009.52
Benefits                             49652.13
TotalPay                            207075.13
TotalPayBenefits                    256727.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73438, dtype: object)
(73439, Id                                        73440
EmployeeName                  Clayton M Bullock
JobTitle            Senior Physician Specialist
BasePay                                181481.2
OvertimePay                                 0.0
OtherPay                                23360.5
Benefits                               51767.13
TotalPay                               204841.7
TotalPayBenefits                      256608.83
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73439, dtype: object)
(73440, Id                                      73441
EmployeeName                  William L Rader
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135020.38
OvertimePay                          60763.76
OtherPay                             15931.96
Benefits                             44851.99
TotalPay                             211716.1
TotalPayBenefits                    256568.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73440, dtype: object)
(73441, Id                                      73442
EmployeeName                   Michael  Ahern
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135658.68
OvertimePay                          59638.38
OtherPay                             16103.42
Benefits                              45081.8
TotalPay                            211400.48
TotalPayBenefits                    256482.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73441, dtype: object)
(73442, Id                                           73443
EmployeeName                      Cherish  Murdock
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  186236.41
OvertimePay                                2318.09
OtherPay                                  13547.61
Benefits                                  54321.81
TotalPay                                 202102.11
TotalPayBenefits                         256423.92
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73442, dtype: object)
(73443, Id                            73444
EmployeeName        Michael C Rubin
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                77501.57
OtherPay                   22090.55
Benefits                   40932.02
TotalPay                  215485.58
TotalPayBenefits           256417.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73443, dtype: object)
(73444, Id                                         73445
EmployeeName                    Kenneth B Linney
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             62832.58
OtherPay                                13113.62
Benefits                                44564.64
TotalPay                               211849.16
TotalPayBenefits                        256413.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73444, dtype: object)
(73445, Id                                        73446
EmployeeName                   Albert H Holt Jr
JobTitle            Senior Physician Specialist
BasePay                               177839.63
OvertimePay                                 0.0
OtherPay                               26676.38
Benefits                               51778.28
TotalPay                              204516.01
TotalPayBenefits                      256294.29
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73445, dtype: object)
(73446, Id                            73447
EmployeeName        Elyse R Duckett
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                77585.51
OtherPay                    21323.2
Benefits                   41482.63
TotalPay                  214802.16
TotalPayBenefits          256284.79
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73446, dtype: object)
(73447, Id                                 73448
EmployeeName               Barry D Zevin
JobTitle            Physician Specialist
BasePay                        198659.46
OvertimePay                          0.0
OtherPay                          5760.0
Benefits                        51839.72
TotalPay                       204419.46
TotalPayBenefits               256259.18
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73447, dtype: object)
(73448, Id                                        73449
EmployeeName                   Elizabeth J Rody
JobTitle            Senior Physician Specialist
BasePay                                177104.7
OvertimePay                                 0.0
OtherPay                               27415.98
Benefits                               51732.55
TotalPay                              204520.68
TotalPayBenefits                      256253.23
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73448, dtype: object)
(73449, Id                           73450
EmployeeName        Joseph D Woods
JobTitle                Manager VI
BasePay                   196167.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  59960.47
TotalPay                  196167.5
TotalPayBenefits         256127.97
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73449, dtype: object)
(73450, Id                           73451
EmployeeName        Susan S Giffin
JobTitle                Manager VI
BasePay                  192776.51
OvertimePay                    0.0
OtherPay                    2000.0
Benefits                  61256.49
TotalPay                 194776.51
TotalPayBenefits          256033.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73450, dtype: object)
(73451, Id                                73452
EmployeeName           Joel D Delizonna
JobTitle            Pilot of Fire Boats
BasePay                       155174.49
OvertimePay                    42849.27
OtherPay                       10086.43
Benefits                       47810.99
TotalPay                      208110.19
TotalPayBenefits              255921.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73451, dtype: object)
(73452, Id                          73453
EmployeeName        Jalal E Aineb
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              79535.75
OtherPay                 19200.35
Benefits                 41044.36
TotalPay                214629.56
TotalPayBenefits        255673.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73452, dtype: object)
(73453, Id                                         73454
EmployeeName                      David G Smiley
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             64989.43
OtherPay                                10483.15
Benefits                                44272.45
TotalPay                               211375.57
TotalPayBenefits                       255648.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73453, dtype: object)
(73454, Id                                       73455
EmployeeName                     David M Merin
JobTitle            Assistant Chief Attorney 1
BasePay                              201283.02
OvertimePay                                0.0
OtherPay                                1250.0
Benefits                               53107.4
TotalPay                             202533.02
TotalPayBenefits                     255640.42
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73454, dtype: object)
(73455, Id                           73456
EmployeeName        Diana  Guevara
JobTitle                Manager VI
BasePay                  192776.53
OvertimePay                    0.0
OtherPay                    3000.0
Benefits                  59852.02
TotalPay                 195776.53
TotalPayBenefits         255628.55
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73455, dtype: object)
(73456, Id                                      73457
EmployeeName                  Daniel  Martino
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          58237.44
OtherPay                             16899.91
Benefits                             45310.47
TotalPay                             210281.6
TotalPayBenefits                    255592.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73456, dtype: object)
(73457, Id                               73458
EmployeeName        Robert D Guillermo
JobTitle                    Sergeant 3
BasePay                       68991.02
OvertimePay                   21740.86
OtherPay                     145293.93
Benefits                      19478.68
TotalPay                     236025.81
TotalPayBenefits             255504.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73457, dtype: object)
(73458, Id                                       73459
EmployeeName                     Ana  Gonzalez
JobTitle            Assistant Chief Attorney 1
BasePay                               199855.1
OvertimePay                                0.0
OtherPay                                2678.0
Benefits                              52931.67
TotalPay                              202533.1
TotalPayBenefits                     255464.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73458, dtype: object)
(73459, Id                            73460
EmployeeName        David J Hawkins
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                86956.31
OtherPay                   11536.18
Benefits                   39970.06
TotalPay                  215449.19
TotalPayBenefits          255419.25
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73459, dtype: object)
(73460, Id                                      73461
EmployeeName                  Keith  Phillips
JobTitle            EMT/Paramedic/Firefighter
BasePay                              133951.5
OvertimePay                          69952.43
OtherPay                              8244.91
Benefits                              43230.2
TotalPay                            212148.84
TotalPayBenefits                    255379.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73460, dtype: object)
(73461, Id                                        73462
EmployeeName                   Jonathan D Fuchs
JobTitle            Senior Physician Specialist
BasePay                                202590.0
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               52778.72
TotalPay                               202590.0
TotalPayBenefits                      255368.72
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73461, dtype: object)
(73462, Id                                   73463
EmployeeName               Young V Laolagi
JobTitle            Track Maint Wrk Sprv 1
BasePay                            85638.0
OvertimePay                      103425.64
OtherPay                          31737.99
Benefits                          34531.93
TotalPay                         220801.63
TotalPayBenefits                 255333.56
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73462, dtype: object)
(73463, Id                              73464
EmployeeName           Amit M Kothari
JobTitle            Deputy Dir I, MTA
BasePay                     195439.46
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     59835.99
TotalPay                    195439.46
TotalPayBenefits            255275.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73463, dtype: object)
(73464, Id                             73465
EmployeeName         Thomas J Lovrin
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 78391.53
OtherPay                    14834.83
Benefits                    38424.84
TotalPay                   216697.38
TotalPayBenefits           255122.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73464, dtype: object)
(73465, Id                                         73466
EmployeeName                    David B Thompson
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                             50195.94
OtherPay                                22495.26
Benefits                                46523.03
TotalPay                               208594.13
TotalPayBenefits                       255117.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73465, dtype: object)
(73466, Id                              73467
EmployeeName        Simon J Silverman
JobTitle                 Lieutenant 3
BasePay                     164431.81
OvertimePay                   4994.84
OtherPay                     35417.08
Benefits                     50226.55
TotalPay                    204843.73
TotalPayBenefits            255070.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73466, dtype: object)
(73467, Id                                      73468
EmployeeName                  Nikki P Griffey
JobTitle            Captain, Fire Suppression
BasePay                             171559.54
OvertimePay                          10771.66
OtherPay                             21080.03
Benefits                             51522.97
TotalPay                            203411.23
TotalPayBenefits                     254934.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73467, dtype: object)
(73468, Id                                         73469
EmployeeName                    Dennis W O'Neill
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135902.9
OvertimePay                             66353.68
OtherPay                                 8869.77
Benefits                                43799.21
TotalPay                               211126.35
TotalPayBenefits                       254925.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73468, dtype: object)
(73469, Id                                           73470
EmployeeName                       Michael W Ellis
JobTitle            Electrical Transit Shop Sprv 1
BasePay                                   139689.5
OvertimePay                               74531.86
OtherPay                                       0.0
Benefits                                  40686.99
TotalPay                                 214221.36
TotalPayBenefits                         254908.35
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73469, dtype: object)
(73470, Id                             73471
EmployeeName         John S Van Koll
JobTitle            Police Officer 3
BasePay                    122327.89
OvertimePay                 91084.93
OtherPay                     4750.68
Benefits                    36697.61
TotalPay                    218163.5
TotalPayBenefits           254861.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73470, dtype: object)
(73471, Id                               73472
EmployeeName        Antonio B Santiago
JobTitle                Deputy Sheriff
BasePay                        95123.0
OvertimePay                  104672.83
OtherPay                      18980.08
Benefits                      36017.44
TotalPay                     218775.91
TotalPayBenefits             254793.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73471, dtype: object)
(73472, Id                                73473
EmployeeName        Domenico A Discenza
JobTitle                     Sergeant 3
BasePay                       143289.08
OvertimePay                    48648.19
OtherPay                       22020.52
Benefits                       40795.91
TotalPay                      213957.79
TotalPayBenefits               254753.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73472, dtype: object)
(73473, Id                              73474
EmployeeName        Elliza O Williams
JobTitle                  Anesthetist
BasePay                     185351.05
OvertimePay                   9083.98
OtherPay                      7186.37
Benefits                     53053.23
TotalPay                     201621.4
TotalPayBenefits            254674.63
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73473, dtype: object)
(73474, Id                           73475
EmployeeName        Rowena R Patel
JobTitle             Nurse Manager
BasePay                   172059.4
OvertimePay                    0.0
OtherPay                  32407.18
Benefits                  50200.09
TotalPay                 204466.58
TotalPayBenefits         254666.67
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73474, dtype: object)
(73475, Id                                         73476
EmployeeName                         Joel H Sato
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                              59030.3
OtherPay                                 15388.0
Benefits                                44325.43
TotalPay                               210321.23
TotalPayBenefits                       254646.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73475, dtype: object)
(73476, Id                                         73477
EmployeeName                       John O Funghi
JobTitle            Engineer/Architect Principal
BasePay                                 201705.5
OvertimePay                                  0.0
OtherPay                                    97.5
Benefits                                52718.86
TotalPay                                201803.0
TotalPayBenefits                       254521.86
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73476, dtype: object)
(73477, Id                                         73478
EmployeeName                       Norman J Caba
JobTitle            Lieutenant, Fire Suppression
BasePay                                 142097.2
OvertimePay                              52836.9
OtherPay                                14486.76
Benefits                                44953.17
TotalPay                               209420.86
TotalPayBenefits                       254374.03
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73477, dtype: object)
(73478, Id                                         73479
EmployeeName                         Ryan  Crean
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                             51850.81
OtherPay                                22674.12
Benefits                                45112.75
TotalPay                               209192.43
TotalPayBenefits                       254305.18
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73478, dtype: object)
(73479, Id                                      73480
EmployeeName                Michael  Moynihan
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          56888.54
OtherPay                             16927.52
Benefits                             45316.07
TotalPay                            208960.33
TotalPayBenefits                     254276.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73479, dtype: object)
(73480, Id                          73481
EmployeeName        Jack K Taylor
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              75404.73
OtherPay                 20368.72
Benefits                 41445.96
TotalPay                212730.17
TotalPayBenefits        254176.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73480, dtype: object)
(73481, Id                            73482
EmployeeName        Chuteh M Kotake
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                78423.46
OtherPay                   18748.38
Benefits                   41044.36
TotalPay                   213065.3
TotalPayBenefits          254109.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73481, dtype: object)
(73482, Id                          73483
EmployeeName           Eddy B Woo
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              73610.68
OtherPay                 21617.05
Benefits                 41909.42
TotalPay                212184.45
TotalPayBenefits        254093.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73482, dtype: object)
(73483, Id                                         73484
EmployeeName                  David J Monteverdi
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                             54473.86
OtherPay                                19451.76
Benefits                                45406.96
TotalPay                               208593.13
TotalPayBenefits                       254000.09
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73483, dtype: object)
(73484, Id                                      73485
EmployeeName                Franco S Calzolai
JobTitle            Captain, Fire Suppression
BasePay                             157772.02
OvertimePay                          26841.37
OtherPay                             19721.53
Benefits                             49620.02
TotalPay                            204334.92
TotalPayBenefits                    253954.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73484, dtype: object)
(73485, Id                                       73486
EmployeeName                   Julie M Higashi
JobTitle            Supervising Physician Spec
BasePay                               201391.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              52552.11
TotalPay                              201391.5
TotalPayBenefits                     253943.61
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73485, dtype: object)
(73486, Id                                         73487
EmployeeName                   Steven M Williams
JobTitle            Lieutenant, Fire Suppression
BasePay                                129522.73
OvertimePay                             70387.91
OtherPay                                11552.39
Benefits                                42409.47
TotalPay                               211463.03
TotalPayBenefits                        253872.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73486, dtype: object)
(73487, Id                           73488
EmployeeName        Vincent G Wong
JobTitle               Firefighter
BasePay                  119620.32
OvertimePay               73321.12
OtherPay                  19375.47
Benefits                  41532.12
TotalPay                 212316.91
TotalPayBenefits         253849.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73487, dtype: object)
(73488, Id                          73489
EmployeeName         Damon M Hart
JobTitle               Sergeant 3
BasePay                 143289.08
OvertimePay               41904.6
OtherPay                 27731.29
Benefits                 40813.34
TotalPay                212924.97
TotalPayBenefits        253738.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73488, dtype: object)
(73489, Id                                         73490
EmployeeName                       Lars  Aspelin
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             54697.41
OtherPay                                17802.31
Benefits                                 45320.5
TotalPay                               208402.68
TotalPayBenefits                       253723.18
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73489, dtype: object)
(73490, Id                                       73491
EmployeeName                     Susan T Obata
JobTitle            Supervising Physician Spec
BasePay                               202350.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              51287.46
TotalPay                              202350.0
TotalPayBenefits                     253637.46
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73490, dtype: object)
(73491, Id                          73492
EmployeeName        Daniel  Dedet
JobTitle               Sergeant 3
BasePay                 143289.06
OvertimePay              32806.76
OtherPay                 35230.68
Benefits                 42236.77
TotalPay                 211326.5
TotalPayBenefits        253563.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73491, dtype: object)
(73492, Id                          73493
EmployeeName        Miriam  Damon
JobTitle            Nurse Manager
BasePay                 182732.06
OvertimePay                   0.0
OtherPay                 18273.22
Benefits                 52449.38
TotalPay                201005.28
TotalPayBenefits        253454.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73492, dtype: object)
(73493, Id                           73494
EmployeeName        Cheryl K Davis
JobTitle               Manager VII
BasePay                  193986.75
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  59459.32
TotalPay                 193986.75
TotalPayBenefits         253446.07
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73493, dtype: object)
(73494, Id                                         73495
EmployeeName                       Edmund G Vail
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                              64658.2
OtherPay                                 9116.85
Benefits                                43765.03
TotalPay                               209678.04
TotalPayBenefits                       253443.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73494, dtype: object)
(73495, Id                             73496
EmployeeName        Kenneth P Salmon
JobTitle                 Manager VII
BasePay                     184774.8
OvertimePay                      0.0
OtherPay                      7438.2
Benefits                    61126.95
TotalPay                    192213.0
TotalPayBenefits           253339.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73495, dtype: object)
(73496, Id                                        73497
EmployeeName                  Sandra K Schwarcz
JobTitle            Senior Physician Specialist
BasePay                               201590.03
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               51741.61
TotalPay                              201590.03
TotalPayBenefits                      253331.64
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73496, dtype: object)
(73497, Id                                 73498
EmployeeName        Margaret A Hannaford
JobTitle                     Manager VII
BasePay                        191952.52
OvertimePay                          0.0
OtherPay                         1808.69
Benefits                        59539.34
TotalPay                       193761.21
TotalPayBenefits               253300.55
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73497, dtype: object)
(73498, Id                                        73499
EmployeeName                  Joshua  Bamberger
JobTitle            Senior Physician Specialist
BasePay                               197134.01
OvertimePay                                 0.0
OtherPay                                 4875.0
Benefits                               51264.71
TotalPay                              202009.01
TotalPayBenefits                      253273.72
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73498, dtype: object)
(73499, Id                             73500
EmployeeName          Dino  Zografos
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 59590.85
OtherPay                    31394.43
Benefits                    38801.11
TotalPay                   214456.31
TotalPayBenefits           253257.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73499, dtype: object)
(73500, Id                                      73501
EmployeeName                Scott H Darmstadt
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          28356.95
OtherPay                             20182.84
Benefits                             49531.06
TotalPay                            203714.28
TotalPayBenefits                    253245.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73500, dtype: object)
(73501, Id                            73502
EmployeeName        Fe B  Hortinela
JobTitle              Nurse Manager
BasePay                   186912.01
OvertimePay                     0.0
OtherPay                   16199.74
Benefits                   50103.17
TotalPay                  203111.75
TotalPayBenefits          253214.92
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73501, dtype: object)
(73502, Id                          73503
EmployeeName        Carl A Barnes
JobTitle              Firefighter
BasePay                 115893.48
OvertimePay              67348.19
OtherPay                 26914.53
Benefits                 42991.38
TotalPay                 210156.2
TotalPayBenefits        253147.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73502, dtype: object)
(73503, Id                                 73504
EmployeeName          Alisa G Oberschelp
JobTitle            Physician Specialist
BasePay                        195132.03
OvertimePay                          0.0
OtherPay                         6591.13
Benefits                        51408.45
TotalPay                       201723.16
TotalPayBenefits               253131.61
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73503, dtype: object)
(73504, Id                                73505
EmployeeName        Richard W Struckman
JobTitle                   Lieutenant 3
BasePay                       163674.02
OvertimePay                    38041.92
OtherPay                        6417.23
Benefits                       44979.71
TotalPay                      208133.17
TotalPayBenefits              253112.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73504, dtype: object)
(73505, Id                                        73506
EmployeeName               Victoria M Baldocchi
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.11
OvertimePay                                 0.0
OtherPay                                6553.75
Benefits                               52781.82
TotalPay                              200289.86
TotalPayBenefits                      253071.68
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73505, dtype: object)
(73506, Id                               73507
EmployeeName            Edward  Dennis
JobTitle            Transit Supervisor
BasePay                       93692.03
OvertimePay                  113527.17
OtherPay                      11874.24
Benefits                      33926.22
TotalPay                     219093.44
TotalPayBenefits             253019.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73506, dtype: object)
(73507, Id                                      73508
EmployeeName                 Michael K Mullin
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          28058.35
OtherPay                              20147.6
Benefits                             49572.48
TotalPay                            203380.43
TotalPayBenefits                    252952.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73507, dtype: object)
(73508, Id                           73509
EmployeeName        Scott W Warnke
JobTitle                Sergeant 3
BasePay                  143289.05
OvertimePay               39853.31
OtherPay                  28970.74
Benefits                  40797.63
TotalPay                  212113.1
TotalPayBenefits         252910.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73508, dtype: object)
(73509, Id                               73510
EmployeeName           Judith  Sansone
JobTitle            Nursing Supervisor
BasePay                      182290.01
OvertimePay                        0.0
OtherPay                      18229.04
Benefits                      52329.26
TotalPay                     200519.05
TotalPayBenefits             252848.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73509, dtype: object)
(73510, Id                                73511
EmployeeName        Christine M Winkler
JobTitle                  Nurse Manager
BasePay                       186912.01
OvertimePay                         0.0
OtherPay                       16199.75
Benefits                       49723.28
TotalPay                      203111.76
TotalPayBenefits              252835.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73510, dtype: object)
(73511, Id                             73512
EmployeeName        Andre C Williams
JobTitle                 Firefighter
BasePay                    116956.74
OvertimePay                 74858.92
OtherPay                    19598.96
Benefits                    41406.59
TotalPay                   211414.62
TotalPayBenefits           252821.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73511, dtype: object)
(73512, Id                          73513
EmployeeName        John S Cagney
JobTitle              Inspector 3
BasePay                 143289.12
OvertimePay              42066.29
OtherPay                 26636.55
Benefits                  40811.6
TotalPay                211991.96
TotalPayBenefits        252803.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73512, dtype: object)
(73513, Id                          73514
EmployeeName        Edward B Amit
JobTitle              Firefighter
BasePay                 115166.03
OvertimePay               89570.2
OtherPay                  9266.95
Benefits                 38790.76
TotalPay                214003.18
TotalPayBenefits        252793.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73513, dtype: object)
(73514, Id                             73515
EmployeeName        Antonio L Flores
JobTitle                 Inspector 3
BasePay                    143289.01
OvertimePay                 42501.69
OtherPay                    24545.58
Benefits                    42437.05
TotalPay                   210336.28
TotalPayBenefits           252773.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73514, dtype: object)
(73515, Id                               73516
EmployeeName           Lucretia  Bolin
JobTitle            Nurse Practitioner
BasePay                       172803.6
OvertimePay                   15326.28
OtherPay                      12651.72
Benefits                      51984.54
TotalPay                      200781.6
TotalPayBenefits             252766.14
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73515, dtype: object)
(73516, Id                            73517
EmployeeName        Thomas J Murphy
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                74678.77
OtherPay                   19685.41
Benefits                   41406.59
TotalPay                  211320.89
TotalPayBenefits          252727.48
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73516, dtype: object)
(73517, Id                          73518
EmployeeName        Dean M Marcic
JobTitle              Inspector 3
BasePay                 143289.11
OvertimePay              67158.52
OtherPay                  1423.68
Benefits                 40834.69
TotalPay                211871.31
TotalPayBenefits         252706.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73517, dtype: object)
(73518, Id                                        73519
EmployeeName                     Rafael  Ibarra
JobTitle            Diagnostic Imaging Tech III
BasePay                                120123.2
OvertimePay                            23422.05
OtherPay                               71615.55
Benefits                               37514.72
TotalPay                               215160.8
TotalPayBenefits                      252675.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73518, dtype: object)
(73519, Id                                       73520
EmployeeName                    Cheryl S Adams
JobTitle            Assistant Chief Attorney 1
BasePay                              195541.02
OvertimePay                                0.0
OtherPay                               4403.64
Benefits                              52658.18
TotalPay                             199944.66
TotalPayBenefits                     252602.84
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73519, dtype: object)
(73520, Id                                  73521
EmployeeName        Jeffery H Littlefield
JobTitle                        Dep Dir V
BasePay                         193148.59
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         59452.38
TotalPay                        193148.59
TotalPayBenefits                252600.97
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73520, dtype: object)
(73521, Id                                      73522
EmployeeName                    Brian S Burns
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                          55211.18
OtherPay                             16893.02
Benefits                             45309.07
TotalPay                            207248.46
TotalPayBenefits                    252557.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73521, dtype: object)
(73522, Id                                73523
EmployeeName               Jean P Pinto
JobTitle            Pilot of Fire Boats
BasePay                       155174.48
OvertimePay                    39440.14
OtherPay                       10086.42
Benefits                       47810.98
TotalPay                      204701.04
TotalPayBenefits              252512.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73522, dtype: object)
(73523, Id                              73524
EmployeeName        William D Jackson
JobTitle              Insp, Fire Dept
BasePay                     139644.08
OvertimePay                  56216.51
OtherPay                      13964.4
Benefits                     42595.79
TotalPay                    209824.99
TotalPayBenefits            252420.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73523, dtype: object)
(73524, Id                              73525
EmployeeName             Travis B Fox
JobTitle            Deputy Dir I, MTA
BasePay                     191765.44
OvertimePay                       0.0
OtherPay                      1298.08
Benefits                     59266.26
TotalPay                    193063.52
TotalPayBenefits            252329.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73524, dtype: object)
(73525, Id                                   73526
EmployeeName        Bernardita R Hernandez
JobTitle                     Nurse Manager
BasePay                           170640.0
OvertimePay                            0.0
OtherPay                          30394.38
Benefits                          51247.38
TotalPay                         201034.38
TotalPayBenefits                 252281.76
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73525, dtype: object)
(73526, Id                                        73527
EmployeeName                    Robert W Dunlap
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                5839.92
Benefits                               52655.37
TotalPay                              199575.92
TotalPayBenefits                      252231.29
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73526, dtype: object)
(73527, Id                                         73528
EmployeeName                     Raul  Francisco
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.54
OvertimePay                             54331.35
OtherPay                                17945.55
Benefits                                45263.71
TotalPay                               206944.44
TotalPayBenefits                       252208.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73527, dtype: object)
(73528, Id                               73529
EmployeeName        Irin Faye P Blanco
JobTitle                 Nurse Manager
BasePay                       170061.0
OvertimePay                        0.0
OtherPay                      32311.58
Benefits                      49823.61
TotalPay                     202372.58
TotalPayBenefits             252196.19
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73528, dtype: object)
(73529, Id                             73530
EmployeeName        Damen J Tolliver
JobTitle                 Firefighter
BasePay                     116956.7
OvertimePay                 75054.24
OtherPay                    18741.25
Benefits                    41406.58
TotalPay                   210752.19
TotalPayBenefits           252158.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73529, dtype: object)
(73530, Id                           73531
EmployeeName        Raul  Sandoval
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               78475.39
OtherPay                  16038.09
Benefits                   40642.5
TotalPay                 211470.19
TotalPayBenefits         252112.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73530, dtype: object)
(73531, Id                                        73532
EmployeeName                Ehrhardt  Groothoff
JobTitle            Captain, Emergency Med Svcs
BasePay                                155174.5
OvertimePay                            27882.03
OtherPay                               19396.81
Benefits                               49531.06
TotalPay                              202453.34
TotalPayBenefits                       251984.4
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73531, dtype: object)
(73532, Id                                        73533
EmployeeName                    Stephen L Rosen
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                 5125.6
Benefits                               53122.45
TotalPay                               198861.6
TotalPayBenefits                      251984.05
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73532, dtype: object)
(73533, Id                           73534
EmployeeName        Irina P Torrey
JobTitle                Manager VI
BasePay                   192776.6
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  59203.25
TotalPay                  192776.6
TotalPayBenefits         251979.85
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73533, dtype: object)
(73534, Id                                        73535
EmployeeName                  Michael M McShane
JobTitle            Senior Physician Specialist
BasePay                               199694.29
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               52273.34
TotalPay                              199694.29
TotalPayBenefits                      251967.63
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73534, dtype: object)
(73535, Id                           73536
EmployeeName        Brian F Petiti
JobTitle                Sergeant 3
BasePay                  143289.15
OvertimePay               55472.04
OtherPay                  11858.27
Benefits                  41346.07
TotalPay                 210619.46
TotalPayBenefits         251965.53
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73535, dtype: object)
(73536, Id                            73537
EmployeeName        Mark R O'Connor
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                73892.88
OtherPay                   19614.88
Benefits                    41471.9
TotalPay                  210464.47
TotalPayBenefits          251936.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73536, dtype: object)
(73537, Id                          73538
EmployeeName         Edward Y Yup
JobTitle              Firefighter
BasePay                 116017.51
OvertimePay              76529.24
OtherPay                 18549.78
Benefits                 40819.24
TotalPay                211096.53
TotalPayBenefits        251915.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73537, dtype: object)
(73538, Id                                        73539
EmployeeName                      Patricia  Lee
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                5125.73
Benefits                               53044.71
TotalPay                              198861.75
TotalPayBenefits                      251906.46
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73538, dtype: object)
(73539, Id                                        73540
EmployeeName               Elizabeth S Salveson
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.07
OvertimePay                                 0.0
OtherPay                                5125.07
Benefits                               53044.63
TotalPay                              198861.14
TotalPayBenefits                      251905.77
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73539, dtype: object)
(73540, Id                            73541
EmployeeName        Timothy C Plyer
JobTitle               Lieutenant 3
BasePay                   163674.07
OvertimePay                34826.38
OtherPay                    8074.92
Benefits                   45308.87
TotalPay                  206575.37
TotalPayBenefits          251884.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73540, dtype: object)
(73541, Id                          73542
EmployeeName            Tom C Hui
JobTitle            Dept Head III
BasePay                 192389.94
OvertimePay                   0.0
OtherPay                   211.85
Benefits                 59212.33
TotalPay                192601.79
TotalPayBenefits        251814.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73541, dtype: object)
(73542, Id                          73543
EmployeeName         Tie Lan  Liu
JobTitle              Firefighter
BasePay                 116956.68
OvertimePay              73085.62
OtherPay                 20355.69
Benefits                 41406.58
TotalPay                210397.99
TotalPayBenefits        251804.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73542, dtype: object)
(73543, Id                                      73544
EmployeeName                  Richard M Nolan
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.28
OvertimePay                          54489.72
OtherPay                              16893.0
Benefits                             45273.01
TotalPay                             206527.0
TotalPayBenefits                    251800.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73543, dtype: object)
(73544, Id                               73545
EmployeeName        Kristian C DeJesus
JobTitle                Deputy Sheriff
BasePay                        95119.5
OvertimePay                  107572.21
OtherPay                      13763.98
Benefits                      35234.19
TotalPay                     216455.69
TotalPayBenefits             251689.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73544, dtype: object)
(73545, Id                                        73546
EmployeeName          Elizabeth  Aguilar-Tarchi
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.08
OvertimePay                                 0.0
OtherPay                                5125.72
Benefits                               52768.85
TotalPay                               198861.8
TotalPayBenefits                      251630.65
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73545, dtype: object)
(73546, Id                                        73547
EmployeeName                Christopher  Gauger
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                5125.66
Benefits                               52768.85
TotalPay                              198861.68
TotalPayBenefits                      251630.53
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73546, dtype: object)
(73547, Id                                        73548
EmployeeName                       Rebecca  Liu
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.01
OvertimePay                                 0.0
OtherPay                                5125.25
Benefits                               52768.77
TotalPay                              198861.26
TotalPayBenefits                      251630.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73547, dtype: object)
(73548, Id                                        73549
EmployeeName                  Joshua D Milstein
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.06
OvertimePay                                 0.0
OtherPay                                5125.16
Benefits                               52768.77
TotalPay                              198861.22
TotalPayBenefits                      251629.99
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73548, dtype: object)
(73549, Id                                        73550
EmployeeName                   Louise S Simpson
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.03
OvertimePay                                 0.0
OtherPay                                5125.09
Benefits                               52768.76
TotalPay                              198861.12
TotalPayBenefits                      251629.88
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73549, dtype: object)
(73550, Id                                         73551
EmployeeName                     Floyd K Rollins
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             51151.95
OtherPay                                18936.03
Benefits                                45634.57
TotalPay                               205990.95
TotalPayBenefits                       251625.52
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73550, dtype: object)
(73551, Id                            73552
EmployeeName        Steve  Arcelona
JobTitle                 Dep Dir IV
BasePay                   189720.53
OvertimePay                     0.0
OtherPay                     2684.0
Benefits                   59189.94
TotalPay                  192404.53
TotalPayBenefits          251594.47
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73551, dtype: object)
(73552, Id                                        73553
EmployeeName                         Verna W Lo
JobTitle            Senior Physician Specialist
BasePay                               187101.51
OvertimePay                                 0.0
OtherPay                               10655.73
Benefits                               53833.81
TotalPay                              197757.24
TotalPayBenefits                      251591.05
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73552, dtype: object)
(73553, Id                              73554
EmployeeName        Zackary J Tibbits
JobTitle                  Firefighter
BasePay                     115893.45
OvertimePay                   78500.4
OtherPay                     17577.05
Benefits                     39617.31
TotalPay                     211970.9
TotalPayBenefits            251588.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73553, dtype: object)
(73554, Id                               73555
EmployeeName          Ruth A Armstrong
JobTitle            Nurse Practitioner
BasePay                       174459.6
OvertimePay                   12165.39
OtherPay                      11472.67
Benefits                      53368.01
TotalPay                     198097.66
TotalPayBenefits             251465.67
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73554, dtype: object)
(73555, Id                                   73556
EmployeeName        Katharine E Petrucione
JobTitle                        Dep Dir IV
BasePay                          191446.08
OvertimePay                            0.0
OtherPay                             750.0
Benefits                          59227.23
TotalPay                         192196.08
TotalPayBenefits                 251423.31
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73555, dtype: object)
(73556, Id                                        73557
EmployeeName                       Kara K Chien
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.08
OvertimePay                                 0.0
OtherPay                                5125.59
Benefits                               52528.87
TotalPay                              198861.67
TotalPayBenefits                      251390.54
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73556, dtype: object)
(73557, Id                                        73558
EmployeeName                     David L Norman
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.03
OvertimePay                                 0.0
OtherPay                                5125.23
Benefits                               52528.79
TotalPay                              198861.26
TotalPayBenefits                      251390.05
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73557, dtype: object)
(73558, Id                                        73559
EmployeeName                     Sean  Connolly
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.03
OvertimePay                                 0.0
OtherPay                                5125.21
Benefits                               52528.79
TotalPay                              198861.24
TotalPayBenefits                      251390.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73558, dtype: object)
(73559, Id                                      73560
EmployeeName                    Dean  Crispen
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          20298.48
OtherPay                             25370.34
Benefits                             50495.74
TotalPay                             200843.3
TotalPayBenefits                    251339.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73559, dtype: object)
(73560, Id                             73561
EmployeeName        Michael J Browne
JobTitle                  Sergeant 3
BasePay                    143289.05
OvertimePay                 38515.66
OtherPay                    27901.19
Benefits                    41603.75
TotalPay                    209705.9
TotalPayBenefits           251309.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73560, dtype: object)
(73561, Id                                        73562
EmployeeName                 Elizabeth H Hilton
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.01
OvertimePay                                 0.0
OtherPay                                5125.75
Benefits                               52432.67
TotalPay                              198861.76
TotalPayBenefits                      251294.43
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73561, dtype: object)
(73562, Id                                        73563
EmployeeName                 Charles R Sullivan
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                5125.16
Benefits                               52432.58
TotalPay                              198861.18
TotalPayBenefits                      251293.76
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73562, dtype: object)
(73563, Id                                        73564
EmployeeName                      Blake P Loebs
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                5125.12
Benefits                               52432.59
TotalPay                              198861.14
TotalPayBenefits                      251293.73
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73563, dtype: object)
(73564, Id                                          73565
EmployeeName                         David C Owen
JobTitle            Marine Engineer of Fire Boats
BasePay                                 155174.46
OvertimePay                              27102.63
OtherPay                                 19396.82
Benefits                                 49572.48
TotalPay                                201673.91
TotalPayBenefits                        251246.39
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 73564, dtype: object)
(73565, Id                               73566
EmployeeName        Patrick C Grimesey
JobTitle                   Firefighter
BasePay                      116956.69
OvertimePay                   71528.09
OtherPay                      21198.21
Benefits                      41485.33
TotalPay                     209682.99
TotalPayBenefits             251168.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73565, dtype: object)
(73566, Id                                      73567
EmployeeName               Steven P Wombacher
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.24
OvertimePay                          53788.91
OtherPay                             16949.06
Benefits                             45284.36
TotalPay                            205882.21
TotalPayBenefits                    251166.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73566, dtype: object)
(73567, Id                               73568
EmployeeName        Kenneth A Bukowski
JobTitle                   Dep Dir III
BasePay                       191972.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      59134.04
TotalPay                      191972.5
TotalPayBenefits             251106.54
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73567, dtype: object)
(73568, Id                                      73569
EmployeeName                Edward L Campbell
JobTitle            Captain, Fire Suppression
BasePay                             155174.48
OvertimePay                          24345.69
OtherPay                             21552.36
Benefits                             50020.74
TotalPay                            201072.53
TotalPayBenefits                    251093.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73568, dtype: object)
(73569, Id                               73570
EmployeeName        Ellen B Apolinario
JobTitle                 Nurse Manager
BasePay                      186912.03
OvertimePay                        0.0
OtherPay                      14457.17
Benefits                      49723.28
TotalPay                      201369.2
TotalPayBenefits             251092.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73569, dtype: object)
(73570, Id                             73571
EmployeeName        Joseph P Nannery
JobTitle                  Sergeant 3
BasePay                    143289.13
OvertimePay                 42702.81
OtherPay                    22731.72
Benefits                    42368.72
TotalPay                   208723.66
TotalPayBenefits           251092.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73570, dtype: object)
(73571, Id                                        73572
EmployeeName                      Mayra T Vivas
JobTitle            Senior Physician Specialist
BasePay                               205410.41
OvertimePay                                 0.0
OtherPay                                 4425.0
Benefits                                41250.8
TotalPay                              209835.41
TotalPayBenefits                      251086.21
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73571, dtype: object)
(73572, Id                          73573
EmployeeName        Peter J Acton
JobTitle              Manager VII
BasePay                 192164.67
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 58898.46
TotalPay                192164.67
TotalPayBenefits        251063.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73572, dtype: object)
(73573, Id                               73574
EmployeeName        Robin D Vanderberg
JobTitle            Nursing Supervisor
BasePay                      171750.54
OvertimePay                        0.0
OtherPay                      27245.51
Benefits                       52059.2
TotalPay                     198996.05
TotalPayBenefits             251055.25
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73573, dtype: object)
(73574, Id                                         73575
EmployeeName                     Robert L Arzave
JobTitle            Lieutenant, Fire Suppression
BasePay                                143060.63
OvertimePay                             43823.11
OtherPay                                18177.26
Benefits                                45966.19
TotalPay                                205061.0
TotalPayBenefits                       251027.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73574, dtype: object)
(73575, Id                                        73576
EmployeeName                         Maria  Bee
JobTitle            Head Atty, Civil & Criminal
BasePay                                197306.0
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               52451.75
TotalPay                               198556.0
TotalPayBenefits                      251007.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73575, dtype: object)
(73576, Id                              73577
EmployeeName        Derrick R Jackson
JobTitle                   Sergeant 2
BasePay                      140724.0
OvertimePay                  50568.73
OtherPay                     19321.94
Benefits                     40326.16
TotalPay                    210614.67
TotalPayBenefits            250940.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73576, dtype: object)
(73577, Id                          73578
EmployeeName        Dominic D Yin
JobTitle             Lieutenant 3
BasePay                 163674.04
OvertimePay               4237.48
OtherPay                 33077.38
Benefits                 49928.77
TotalPay                 200988.9
TotalPayBenefits        250917.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73577, dtype: object)
(73578, Id                                      73579
EmployeeName           Pamela A Pecora Hansen
JobTitle            Attorney (Civil/Criminal)
BasePay                             193686.08
OvertimePay                               0.0
OtherPay                              4552.84
Benefits                             52657.02
TotalPay                            198238.92
TotalPayBenefits                    250895.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73578, dtype: object)
(73579, Id                            73580
EmployeeName        Frank L Harrell
JobTitle                 Sergeant 3
BasePay                   145382.07
OvertimePay                59598.85
OtherPay                    4403.93
Benefits                   41433.95
TotalPay                  209384.85
TotalPayBenefits           250818.8
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73579, dtype: object)
(73580, Id                             73581
EmployeeName             Diane  Khuu
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 76366.42
OtherPay                    16776.72
Benefits                    36571.11
TotalPay                   214211.14
TotalPayBenefits           250782.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73580, dtype: object)
(73581, Id                                        73582
EmployeeName                Laura L Vanmunching
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.01
OvertimePay                                 0.0
OtherPay                                4554.08
Benefits                               52331.46
TotalPay                              198290.09
TotalPayBenefits                      250621.55
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73581, dtype: object)
(73582, Id                              73583
EmployeeName        Kathleen T Harold
JobTitle              Lieut,Fire Prev
BasePay                     150380.04
OvertimePay                  47235.82
OtherPay                       9022.8
Benefits                     43866.18
TotalPay                    206638.66
TotalPayBenefits            250504.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73582, dtype: object)
(73583, Id                                 73584
EmployeeName            Barbara A Wismer
JobTitle            Physician Specialist
BasePay                         196972.0
OvertimePay                          0.0
OtherPay                          1800.0
Benefits                        51729.17
TotalPay                        198772.0
TotalPayBenefits               250501.17
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73583, dtype: object)
(73584, Id                           73585
EmployeeName        Dorothy C Quan
JobTitle             Nurse Manager
BasePay                  179707.61
OvertimePay                    0.0
OtherPay                  18810.76
Benefits                  51970.62
TotalPay                 198518.37
TotalPayBenefits         250488.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73584, dtype: object)
(73585, Id                                      73586
EmployeeName                   Craig  Johnson
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135071.06
OvertimePay                          53099.35
OtherPay                             16883.86
Benefits                             45249.44
TotalPay                            205054.27
TotalPayBenefits                    250303.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73585, dtype: object)
(73586, Id                                 73587
EmployeeName        Leonardo B Cavestany
JobTitle                     Firefighter
BasePay                        115893.47
OvertimePay                     74170.99
OtherPay                        19111.66
Benefits                        41044.36
TotalPay                       209176.12
TotalPayBenefits               250220.48
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73586, dtype: object)
(73587, Id                                         73588
EmployeeName                       Dustin B Winn
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             52051.29
OtherPay                                16913.26
Benefits                                45343.82
TotalPay                               204867.51
TotalPayBenefits                       250211.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73587, dtype: object)
(73588, Id                             73589
EmployeeName        Angela R Platzer
JobTitle               Nurse Manager
BasePay                    181263.04
OvertimePay                      0.0
OtherPay                    18126.31
Benefits                    50664.86
TotalPay                   199389.35
TotalPayBenefits           250054.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73588, dtype: object)
(73589, Id                                        73590
EmployeeName                       Judy L Blair
JobTitle            Senior Physician Specialist
BasePay                                187101.5
OvertimePay                                 0.0
OtherPay                                9355.76
Benefits                                53570.3
TotalPay                              196457.26
TotalPayBenefits                      250027.56
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73589, dtype: object)
(73590, Id                          73591
EmployeeName        Wallace W Gin
JobTitle               Sergeant 3
BasePay                 143289.02
OvertimePay              47860.49
OtherPay                 16545.03
Benefits                 42296.11
TotalPay                207694.54
TotalPayBenefits        249990.65
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73590, dtype: object)
(73591, Id                          73592
EmployeeName            Yoon  Lee
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              72808.28
OtherPay                 18902.62
Benefits                 41316.21
TotalPay                 208667.6
TotalPayBenefits        249983.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73591, dtype: object)
(73592, Id                                           73593
EmployeeName                       Steven M Bokura
JobTitle            Battalion Chief, Fire Suppress
BasePay                                  184543.33
OvertimePay                                    0.0
OtherPay                                  11957.31
Benefits                                  53378.58
TotalPay                                 196500.64
TotalPayBenefits                         249879.22
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73592, dtype: object)
(73593, Id                            73594
EmployeeName        Alexander  Kwan
JobTitle                 Sergeant 3
BasePay                   129343.11
OvertimePay                42021.26
OtherPay                   40115.57
Benefits                    38233.4
TotalPay                  211479.94
TotalPayBenefits          249713.34
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73593, dtype: object)
(73594, Id                                      73595
EmployeeName                     Edward B Moy
JobTitle            Captain, Fire Suppression
BasePay                             185490.04
OvertimePay                           2321.21
OtherPay                              11129.4
Benefits                             50732.68
TotalPay                            198940.65
TotalPayBenefits                    249673.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73594, dtype: object)
(73595, Id                          73596
EmployeeName         Linda J Sims
JobTitle            Nurse Manager
BasePay                  175803.0
OvertimePay                   0.0
OtherPay                 24482.39
Benefits                 49359.82
TotalPay                200285.39
TotalPayBenefits        249645.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73595, dtype: object)
(73596, Id                                         73597
EmployeeName                   Lawrence F Conrad
JobTitle            Lieutenant, Fire Suppression
BasePay                                142774.43
OvertimePay                             41744.74
OtherPay                                19054.26
Benefits                                46058.04
TotalPay                               203573.43
TotalPayBenefits                       249631.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73596, dtype: object)
(73597, Id                            73598
EmployeeName        Roger  Phillips
JobTitle                Firefighter
BasePay                   116079.55
OvertimePay                74399.05
OtherPay                   18190.48
Benefits                   40812.47
TotalPay                  208669.08
TotalPayBenefits          249481.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73597, dtype: object)
(73598, Id                                         73599
EmployeeName                     Cristeo A Reyes
JobTitle            Lieutenant, Fire Suppression
BasePay                                135491.17
OvertimePay                             47522.11
OtherPay                                20562.49
Benefits                                45842.68
TotalPay                               203575.77
TotalPayBenefits                       249418.45
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73598, dtype: object)
(73599, Id                               73600
EmployeeName        Michael K Wibunsin
JobTitle                    Sergeant 3
BasePay                      143289.05
OvertimePay                   42916.25
OtherPay                      22206.29
Benefits                       40795.9
TotalPay                     208411.59
TotalPayBenefits             249207.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73599, dtype: object)
(73600, Id                                        73601
EmployeeName                     Ana I Gonzalez
JobTitle            Senior Physician Specialist
BasePay                               197594.08
OvertimePay                                 0.0
OtherPay                               11180.39
Benefits                               40413.87
TotalPay                              208774.47
TotalPayBenefits                      249188.34
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73600, dtype: object)
(73601, Id                          73602
EmployeeName         Ramon  Simon
JobTitle              Firefighter
BasePay                 116956.67
OvertimePay              69459.69
OtherPay                 20940.49
Benefits                 41778.75
TotalPay                207356.85
TotalPayBenefits         249135.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73601, dtype: object)
(73602, Id                               73603
EmployeeName        Dawn  Kamalanathan
JobTitle                    Dep Dir IV
BasePay                      189487.03
OvertimePay                        0.0
OtherPay                         750.0
Benefits                      58755.58
TotalPay                     190237.03
TotalPayBenefits             248992.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73602, dtype: object)
(73603, Id                                       73604
EmployeeName                   Eileen M Malley
JobTitle            Assistant Chief Attorney 1
BasePay                              195541.02
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              52162.23
TotalPay                             196790.52
TotalPayBenefits                     248952.75
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73603, dtype: object)
(73604, Id                          73605
EmployeeName        Troy  Jolliff
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              79494.38
OtherPay                 12462.99
Benefits                 40036.56
TotalPay                208914.09
TotalPayBenefits        248950.65
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73604, dtype: object)
(73605, Id                                      73606
EmployeeName                    Linda M Moore
JobTitle            Attorney (Civil/Criminal)
BasePay                             193686.06
OvertimePay                               0.0
OtherPay                              2619.86
Benefits                             52577.15
TotalPay                            196305.92
TotalPayBenefits                    248883.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73605, dtype: object)
(73606, Id                                      73607
EmployeeName                  Gregory A Barge
JobTitle            Attorney (Civil/Criminal)
BasePay                             193686.02
OvertimePay                               0.0
OtherPay                               2836.2
Benefits                             52346.33
TotalPay                            196522.22
TotalPayBenefits                    248868.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73606, dtype: object)
(73607, Id                                       73608
EmployeeName                  Sheryl L Bregman
JobTitle            Assistant Chief Attorney 1
BasePay                              195541.06
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              52066.02
TotalPay                             196790.56
TotalPayBenefits                     248856.58
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73607, dtype: object)
(73608, Id                          73609
EmployeeName          John  Arntz
JobTitle             Dept Head II
BasePay                 187081.38
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                 58760.45
TotalPay                190081.38
TotalPayBenefits        248841.83
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73608, dtype: object)
(73609, Id                                       73610
EmployeeName                  Jonathan  Givner
JobTitle            Assistant Chief Attorney 1
BasePay                              195541.02
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              52006.22
TotalPay                             196790.52
TotalPayBenefits                     248796.74
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73609, dtype: object)
(73610, Id                                       73611
EmployeeName                     Yvonne R Mere
JobTitle            Assistant Chief Attorney 1
BasePay                              195540.99
OvertimePay                                0.0
OtherPay                                1249.5
Benefits                              52006.21
TotalPay                             196790.49
TotalPayBenefits                      248796.7
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73610, dtype: object)
(73611, Id                                        73612
EmployeeName                    Melany  Brandon
JobTitle            Captain, Emergency Med Svcs
BasePay                               185517.02
OvertimePay                             1297.32
OtherPay                               11131.02
Benefits                               50738.16
TotalPay                              197945.36
TotalPayBenefits                      248683.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73611, dtype: object)
(73612, Id                           73613
EmployeeName        Neal P Griffin
JobTitle                Sergeant 3
BasePay                  143289.09
OvertimePay               50746.81
OtherPay                  12800.66
Benefits                  41841.19
TotalPay                 206836.56
TotalPayBenefits         248677.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73612, dtype: object)
(73613, Id                           73614
EmployeeName        James H Miller
JobTitle              Lieutenant 3
BasePay                  163674.08
OvertimePay               14627.15
OtherPay                  22621.28
Benefits                  47614.96
TotalPay                 200922.51
TotalPayBenefits         248537.47
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73613, dtype: object)
(73614, Id                             73615
EmployeeName        Andrew F Degraca
JobTitle                 Manager VII
BasePay                     186816.0
OvertimePay                      0.0
OtherPay                     2885.21
Benefits                    58627.18
TotalPay                   189701.21
TotalPayBenefits           248328.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73614, dtype: object)
(73615, Id                                        73616
EmployeeName                    Denis P Bouvier
JobTitle            Senior Physician Specialist
BasePay                                196743.5
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               51499.76
TotalPay                               196743.5
TotalPayBenefits                      248243.26
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73615, dtype: object)
(73616, Id                                        73617
EmployeeName                     Jeffrey A Ross
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.04
OvertimePay                                 0.0
OtherPay                                2260.04
Benefits                               52236.76
TotalPay                              195996.08
TotalPayBenefits                      248232.84
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73616, dtype: object)
(73617, Id                          73618
EmployeeName             Jay J Xu
JobTitle            Dept Head III
BasePay                  189487.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 58697.97
TotalPay                 189487.0
TotalPayBenefits        248184.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73617, dtype: object)
(73618, Id                              73619
EmployeeName        Angela C Calvillo
JobTitle                Dept Head III
BasePay                     189487.02
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     58599.43
TotalPay                    189487.02
TotalPayBenefits            248086.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73618, dtype: object)
(73619, Id                          73620
EmployeeName        Anne E Hinton
JobTitle            Dept Head III
BasePay                  189487.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 58588.38
TotalPay                 189487.0
TotalPayBenefits        248075.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73619, dtype: object)
(73620, Id                             73621
EmployeeName        Robert J Dudgeon
JobTitle                  Dep Dir IV
BasePay                    189324.71
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     58664.2
TotalPay                   189324.71
TotalPayBenefits           247988.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73620, dtype: object)
(73621, Id                            73622
EmployeeName        Morgan F Petiti
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                71318.53
OtherPay                   19632.65
Benefits                    41096.2
TotalPay                  206844.63
TotalPayBenefits          247940.83
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73621, dtype: object)
(73622, Id                               73623
EmployeeName               Gary K Noda
JobTitle            Sheriff's Sergeant
BasePay                      114649.82
OvertimePay                   77526.92
OtherPay                      15945.33
Benefits                      39806.27
TotalPay                     208122.07
TotalPayBenefits             247928.34
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73622, dtype: object)
(73623, Id                          73624
EmployeeName        William T Lee
JobTitle               Dep Dir IV
BasePay                 189324.75
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 58584.61
TotalPay                189324.75
TotalPayBenefits        247909.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73623, dtype: object)
(73624, Id                             73625
EmployeeName        Craig P Dziedzic
JobTitle                  Dep Dir IV
BasePay                    189324.72
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    58565.66
TotalPay                   189324.72
TotalPayBenefits           247890.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73624, dtype: object)
(73625, Id                                73626
EmployeeName        Lawrence C Stringer
JobTitle                     Dep Dir IV
BasePay                       189487.05
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       58359.08
TotalPay                      189487.05
TotalPayBenefits              247846.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73625, dtype: object)
(73626, Id                               73627
EmployeeName        Richard J O'Reilly
JobTitle              Police Officer 2
BasePay                      126153.08
OvertimePay                   77181.81
OtherPay                       6954.01
Benefits                      37555.56
TotalPay                      210288.9
TotalPayBenefits             247844.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73626, dtype: object)
(73627, Id                                        73628
EmployeeName                    Julius A DeGuia
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.04
OvertimePay                                 0.0
OtherPay                                2260.06
Benefits                               51840.79
TotalPay                               195996.1
TotalPayBenefits                      247836.89
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73627, dtype: object)
(73628, Id                                         73629
EmployeeName                        Hanson W Tom
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                 18272.4
Benefits                                51644.15
TotalPay                                196192.4
TotalPayBenefits                       247836.55
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73628, dtype: object)
(73629, Id                          73630
EmployeeName        Samuel  Nieto
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              69233.32
OtherPay                 20074.06
Benefits                 41524.69
TotalPay                206264.07
TotalPayBenefits        247788.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73629, dtype: object)
(73630, Id                                      73631
EmployeeName                   Chase H Wilson
JobTitle            Captain, Fire Suppression
BasePay                             151166.38
OvertimePay                          34980.68
OtherPay                             14128.85
Benefits                             47385.11
TotalPay                            200275.91
TotalPayBenefits                    247661.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73630, dtype: object)
(73631, Id                                      73632
EmployeeName                      Glenn  Frey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133647.67
OvertimePay                          52298.28
OtherPay                             16843.89
Benefits                             44808.93
TotalPay                            202789.84
TotalPayBenefits                    247598.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73631, dtype: object)
(73632, Id                              73633
EmployeeName        Lawrence L Powell
JobTitle                  Firefighter
BasePay                     115893.45
OvertimePay                  73530.62
OtherPay                     17269.39
Benefits                     40859.05
TotalPay                    206693.46
TotalPayBenefits            247552.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73632, dtype: object)
(73633, Id                          73634
EmployeeName        Joyce M Hicks
JobTitle              Dept Head I
BasePay                  189026.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 58509.19
TotalPay                 189026.0
TotalPayBenefits        247535.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73633, dtype: object)
(73634, Id                             73635
EmployeeName        Alan P Honniball
JobTitle                 Inspector 3
BasePay                    143289.02
OvertimePay                 41027.69
OtherPay                     20855.3
Benefits                    42358.32
TotalPay                   205172.01
TotalPayBenefits           247530.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73634, dtype: object)
(73635, Id                               73636
EmployeeName             Edward  Guina
JobTitle            Nursing Supervisor
BasePay                      194774.82
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      52751.67
TotalPay                     194774.82
TotalPayBenefits             247526.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73635, dtype: object)
(73636, Id                             73637
EmployeeName        Courtney L White
JobTitle                 Anesthetist
BasePay                    186322.15
OvertimePay                 10503.21
OtherPay                    10600.15
Benefits                    40080.66
TotalPay                   207425.51
TotalPayBenefits           247506.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73636, dtype: object)
(73637, Id                            73638
EmployeeName        Neree D Dastous
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                 68226.7
OtherPay                   20809.59
Benefits                   41445.96
TotalPay                   205993.0
TotalPayBenefits          247438.96
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73637, dtype: object)
(73638, Id                                        73639
EmployeeName                   Jonathan  Ferdon
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                 1062.5
Benefits                               52604.25
TotalPay                               194798.5
TotalPayBenefits                      247402.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73638, dtype: object)
(73639, Id                                         73640
EmployeeName                      Randall C Hiro
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             48537.87
OtherPay                                17942.53
Benefits                                44961.83
TotalPay                               202383.34
TotalPayBenefits                       247345.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73639, dtype: object)
(73640, Id                          73641
EmployeeName         Derio M Dito
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              70123.58
OtherPay                 20064.08
Benefits                 41241.37
TotalPay                206081.11
TotalPayBenefits        247322.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73640, dtype: object)
(73641, Id                                      73642
EmployeeName        Valerie A Stephenson-Boyd
JobTitle                          Firefighter
BasePay                              116956.7
OvertimePay                          74768.92
OtherPay                             15597.83
Benefits                             39970.04
TotalPay                            207323.45
TotalPayBenefits                    247293.49
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73641, dtype: object)
(73642, Id                          73643
EmployeeName           John  Syme
JobTitle               Sergeant 3
BasePay                 143289.07
OvertimePay              34286.49
OtherPay                 28346.26
Benefits                 41323.58
TotalPay                205921.82
TotalPayBenefits         247245.4
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73642, dtype: object)
(73643, Id                                         73644
EmployeeName                       David M Brown
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.47
OvertimePay                             50321.79
OtherPay                                17030.62
Benefits                                45077.79
TotalPay                               202019.88
TotalPayBenefits                       247097.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73643, dtype: object)
(73644, Id                              73645
EmployeeName        David P Augustine
JobTitle                   Dep Dir IV
BasePay                     189929.51
OvertimePay                       0.0
OtherPay                        625.0
Benefits                     56515.89
TotalPay                    190554.51
TotalPayBenefits             247070.4
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73644, dtype: object)
(73645, Id                          73646
EmployeeName          Henry B Yee
JobTitle             Lieutenant 3
BasePay                 162919.03
OvertimePay                3016.8
OtherPay                 36629.21
Benefits                 44488.81
TotalPay                202565.04
TotalPayBenefits        247053.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73645, dtype: object)
(73646, Id                                         73647
EmployeeName                     Sean F McKinney
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.52
OvertimePay                             49734.87
OtherPay                                17610.86
Benefits                                45037.79
TotalPay                               202013.25
TotalPayBenefits                       247051.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73646, dtype: object)
(73647, Id                                         73648
EmployeeName        Rebecca Susan Feng-Yi  Young
JobTitle             Head Atty, Civil & Criminal
BasePay                                 193736.0
OvertimePay                                  0.0
OtherPay                                  1250.0
Benefits                                52026.49
TotalPay                                194986.0
TotalPayBenefits                       247012.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73647, dtype: object)
(73648, Id                                        73649
EmployeeName                      Sandra L Tong
JobTitle            Captain, Emergency Med Svcs
BasePay                               153768.81
OvertimePay                             34253.6
OtherPay                               12628.37
Benefits                               46337.92
TotalPay                              200650.78
TotalPayBenefits                       246988.7
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73648, dtype: object)
(73649, Id                                        73650
EmployeeName                 Marianne L Barrett
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.01
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51786.51
TotalPay                              194986.01
TotalPayBenefits                      246772.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73649, dtype: object)
(73650, Id                                        73651
EmployeeName                     Mark E Iverson
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51786.51
TotalPay                               194986.0
TotalPayBenefits                      246772.51
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73650, dtype: object)
(73651, Id                                      73652
EmployeeName                Bernard P Maguire
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.68
OvertimePay                          51720.78
OtherPay                             16293.58
Benefits                              44803.9
TotalPay                            201930.04
TotalPayBenefits                    246733.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73651, dtype: object)
(73652, Id                           73653
EmployeeName        Darcy L Keller
JobTitle               Inspector 3
BasePay                   143289.0
OvertimePay               30328.78
OtherPay                  28278.52
Benefits                  44798.26
TotalPay                  201896.3
TotalPayBenefits         246694.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73652, dtype: object)
(73653, Id                                        73654
EmployeeName                    Lisa S Saporito
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.04
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51690.31
TotalPay                              194986.04
TotalPayBenefits                      246676.35
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73653, dtype: object)
(73654, Id                                        73655
EmployeeName               Kwixuan Hart  Maloof
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51690.31
TotalPay                               194986.0
TotalPayBenefits                      246676.31
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73654, dtype: object)
(73655, Id                                        73656
EmployeeName                    Dyana M Lechuga
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                 1249.5
Benefits                               51690.23
TotalPay                              194985.52
TotalPayBenefits                      246675.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73655, dtype: object)
(73656, Id                                        73657
EmployeeName                    Marshall  Khine
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.03
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51630.51
TotalPay                              194986.03
TotalPayBenefits                      246616.54
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73656, dtype: object)
(73657, Id                                        73658
EmployeeName                   Vince G Chhabria
JobTitle            Head Atty, Civil & Criminal
BasePay                                193736.0
OvertimePay                                 0.0
OtherPay                                 1249.5
Benefits                               51630.43
TotalPay                               194985.5
TotalPayBenefits                      246615.93
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73657, dtype: object)
(73658, Id                                      73659
EmployeeName                  Sheryl W Calson
JobTitle            Clinical Nurse Specialist
BasePay                              190188.0
OvertimePay                            1056.6
OtherPay                                250.0
Benefits                             55101.82
TotalPay                             191494.6
TotalPayBenefits                    246596.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73658, dtype: object)
(73659, Id                                        73660
EmployeeName                 Donald R Durkee Jr
JobTitle            Incident Support Specialist
BasePay                                127392.1
OvertimePay                            53433.11
OtherPay                               21161.94
Benefits                               44597.16
TotalPay                              201987.15
TotalPayBenefits                      246584.31
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73659, dtype: object)
(73660, Id                                        73661
EmployeeName             Firoozeh  Parsa Nezhad
JobTitle            Senior Physician Specialist
BasePay                               192569.15
OvertimePay                                 0.0
OtherPay                                 3420.0
Benefits                               50549.28
TotalPay                              195989.15
TotalPayBenefits                      246538.43
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73660, dtype: object)
(73661, Id                                73662
EmployeeName           Jeffrey C Amdahl
JobTitle            Pilot of Fire Boats
BasePay                        155174.5
OvertimePay                    33503.55
OtherPay                       10086.42
Benefits                       47771.77
TotalPay                      198764.47
TotalPayBenefits              246536.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73661, dtype: object)
(73662, Id                                        73663
EmployeeName                     Eric R Fleming
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.03
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51514.57
TotalPay                              194986.03
TotalPayBenefits                       246500.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73662, dtype: object)
(73663, Id                                        73664
EmployeeName               Conrad B Del Rosario
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51514.57
TotalPay                              194986.02
TotalPayBenefits                      246500.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73663, dtype: object)
(73664, Id                                        73665
EmployeeName                        Wade K Chow
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               51514.56
TotalPay                              194986.02
TotalPayBenefits                      246500.58
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73664, dtype: object)
(73665, Id                              73666
EmployeeName        Edward  Santos Jr
JobTitle                 Lieutenant 3
BasePay                     163674.03
OvertimePay                  13057.96
OtherPay                     22348.06
Benefits                     47347.45
TotalPay                    199080.05
TotalPayBenefits             246427.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73665, dtype: object)
(73666, Id                          73667
EmployeeName         Helen  Szeto
JobTitle              Anesthetist
BasePay                 182552.78
OvertimePay               2813.02
OtherPay                  6797.77
Benefits                 54251.63
TotalPay                192163.57
TotalPayBenefits         246415.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73666, dtype: object)
(73667, Id                          73668
EmployeeName        Felix T Thieu
JobTitle              Inspector 3
BasePay                 143289.04
OvertimePay              40191.21
OtherPay                 19775.85
Benefits                 43115.14
TotalPay                 203256.1
TotalPayBenefits        246371.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73667, dtype: object)
(73668, Id                                      73669
EmployeeName                      John  Fazio
JobTitle            Clinical Nurse Specialist
BasePay                              190188.0
OvertimePay                            1056.6
OtherPay                               487.76
Benefits                             54592.21
TotalPay                            191732.36
TotalPayBenefits                    246324.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73668, dtype: object)
(73669, Id                               73670
EmployeeName        Anthony M La Rocca
JobTitle              Police Officer 3
BasePay                      123471.17
OvertimePay                   74039.51
OtherPay                      10361.25
Benefits                      38410.46
TotalPay                     207871.93
TotalPayBenefits             246282.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73669, dtype: object)
(73670, Id                            73671
EmployeeName        Diane L Beetham
JobTitle              Nurse Manager
BasePay                    175803.0
OvertimePay                     0.0
OtherPay                    17580.3
Benefits                   52896.34
TotalPay                   193383.3
TotalPayBenefits          246279.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73670, dtype: object)
(73671, Id                           73672
EmployeeName        Kyra A Delaney
JobTitle                Sergeant 3
BasePay                  143289.06
OvertimePay               41417.13
OtherPay                  20767.78
Benefits                  40797.65
TotalPay                 205473.97
TotalPayBenefits         246271.62
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73671, dtype: object)
(73672, Id                          73673
EmployeeName        Scott B Biggs
JobTitle               Sergeant 3
BasePay                 143289.07
OvertimePay              41647.51
OtherPay                 20555.03
Benefits                 40769.54
TotalPay                205491.61
TotalPayBenefits        246261.15
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73672, dtype: object)
(73673, Id                                  73674
EmployeeName        Alicia  John Baptiste
JobTitle                Deputy Dir I, MTA
BasePay                         187778.66
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         58368.33
TotalPay                        187778.66
TotalPayBenefits                246146.99
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73673, dtype: object)
(73674, Id                              73675
EmployeeName          Paul M Miyamoto
JobTitle            Assistant Sheriff
BasePay                     177205.55
OvertimePay                       0.0
OtherPay                     10631.85
Benefits                     58298.32
TotalPay                     187837.4
TotalPayBenefits            246135.72
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73674, dtype: object)
(73675, Id                               73676
EmployeeName        Mary C Fitzpatrick
JobTitle                   Dep Dir III
BasePay                      187819.79
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      58277.81
TotalPay                     187819.79
TotalPayBenefits              246097.6
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73675, dtype: object)
(73676, Id                               73677
EmployeeName        Michael D Philpott
JobTitle                   Inspector 3
BasePay                      143289.04
OvertimePay                   39043.82
OtherPay                      22449.52
Benefits                      41264.41
TotalPay                     204782.38
TotalPayBenefits             246046.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73676, dtype: object)
(73677, Id                            73678
EmployeeName        Patrick T Bryan
JobTitle                Firefighter
BasePay                   115893.47
OvertimePay                69620.99
OtherPay                    19466.1
Benefits                   41044.37
TotalPay                  204980.56
TotalPayBenefits          246024.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73677, dtype: object)
(73678, Id                          73679
EmployeeName         John R Kosta
JobTitle              Firefighter
BasePay                 115893.44
OvertimePay              69698.77
OtherPay                 19271.25
Benefits                 41044.35
TotalPay                204863.46
TotalPayBenefits        245907.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73678, dtype: object)
(73679, Id                               73680
EmployeeName            James A Pineda
JobTitle            Sheriff's Sergeant
BasePay                      114649.87
OvertimePay                   63187.88
OtherPay                      26653.26
Benefits                      41328.89
TotalPay                     204491.01
TotalPayBenefits              245819.9
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73679, dtype: object)
(73680, Id                          73681
EmployeeName        Pablo R Ossio
JobTitle             Lieutenant 3
BasePay                 166889.03
OvertimePay              18593.72
OtherPay                 13901.13
Benefits                 46414.69
TotalPay                199383.88
TotalPayBenefits        245798.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73680, dtype: object)
(73681, Id                               73682
EmployeeName                John C Poh
JobTitle            Nurse Practitioner
BasePay                      184080.45
OvertimePay                    7361.76
OtherPay                         509.6
Benefits                      53840.91
TotalPay                     191951.81
TotalPayBenefits             245792.72
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73681, dtype: object)
(73682, Id                             73683
EmployeeName          Michael  Tursi
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                  63422.3
OtherPay                    24725.12
Benefits                    36571.11
TotalPay                   209215.42
TotalPayBenefits           245786.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73682, dtype: object)
(73683, Id                                      73684
EmployeeName                     Bruce D Fine
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.31
OvertimePay                          48326.33
OtherPay                             17001.93
Benefits                             45295.11
TotalPay                            200472.57
TotalPayBenefits                    245767.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73683, dtype: object)
(73684, Id                            73685
EmployeeName        Dwight E Newton
JobTitle                Firefighter
BasePay                   116956.72
OvertimePay                64337.09
OtherPay                   22349.28
Benefits                   41949.55
TotalPay                  203643.09
TotalPayBenefits          245592.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73684, dtype: object)
(73685, Id                                         73686
EmployeeName                      Matthew L Alba
JobTitle            Lieutenant, Fire Suppression
BasePay                                118334.59
OvertimePay                             58088.01
OtherPay                                26513.15
Benefits                                42636.51
TotalPay                               202935.75
TotalPayBenefits                       245572.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73685, dtype: object)
(73686, Id                                      73687
EmployeeName              Antionette  Griffin
JobTitle            Clinical Nurse Specialist
BasePay                             190188.03
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             55101.82
TotalPay                            190438.03
TotalPayBenefits                    245539.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73686, dtype: object)
(73687, Id                                      73688
EmployeeName                  Katherine M Mah
JobTitle            Clinical Nurse Specialist
BasePay                             190188.01
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             55101.82
TotalPay                            190438.01
TotalPayBenefits                    245539.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73687, dtype: object)
(73688, Id                                      73689
EmployeeName                    Anne M Hughes
JobTitle            Clinical Nurse Specialist
BasePay                              190188.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             55101.82
TotalPay                             190438.0
TotalPayBenefits                    245539.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73688, dtype: object)
(73689, Id                                      73690
EmployeeName                  Janice A Papedo
JobTitle            Clinical Nurse Specialist
BasePay                              190188.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             55101.82
TotalPay                             190438.0
TotalPayBenefits                    245539.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73689, dtype: object)
(73690, Id                               73691
EmployeeName              Diane C Carr
JobTitle            Nurse Practitioner
BasePay                      190134.06
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      55090.18
TotalPay                     190384.06
TotalPayBenefits             245474.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73690, dtype: object)
(73691, Id                             73692
EmployeeName        Maria F De Jesus
JobTitle               Nurse Manager
BasePay                     165424.0
OvertimePay                      0.0
OtherPay                    31185.76
Benefits                    48839.84
TotalPay                   196609.76
TotalPayBenefits            245449.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73691, dtype: object)
(73692, Id                                        73693
EmployeeName                  Wilmie M Hathaway
JobTitle            Senior Physician Specialist
BasePay                               194224.51
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               50900.62
TotalPay                              194224.51
TotalPayBenefits                      245125.13
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73692, dtype: object)
(73693, Id                            73694
EmployeeName        Joshua J Wilson
JobTitle                Firefighter
BasePay                   115893.47
OvertimePay                69034.06
OtherPay                   19120.59
Benefits                   41044.37
TotalPay                  204048.12
TotalPayBenefits          245092.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73693, dtype: object)
(73694, Id                                         73695
EmployeeName                         Alan K Wong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             46249.23
OtherPay                                17382.23
Benefits                                45504.14
TotalPay                               199534.45
TotalPayBenefits                       245038.59
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73694, dtype: object)
(73695, Id                             73696
EmployeeName        Rhonda R Simmons
JobTitle                  Manager VI
BasePay                    187201.29
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    57828.29
TotalPay                   187201.29
TotalPayBenefits           245029.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73695, dtype: object)
(73696, Id                          73697
EmployeeName        Eric  Lederer
JobTitle               Sergeant 3
BasePay                  143289.1
OvertimePay              36168.53
OtherPay                 24594.42
Benefits                 40893.22
TotalPay                204052.05
TotalPayBenefits        244945.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73696, dtype: object)
(73697, Id                                         73698
EmployeeName                    Anthony J Bendik
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             44067.28
OtherPay                                18888.25
Benefits                                45837.99
TotalPay                               198858.47
TotalPayBenefits                       244696.46
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73697, dtype: object)
(73698, Id                                         73699
EmployeeName                   Alberto A Pedruco
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             50815.36
OtherPay                                13250.04
Benefits                                44705.86
TotalPay                               199968.35
TotalPayBenefits                       244674.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73698, dtype: object)
(73699, Id                               73700
EmployeeName        Donnie  Hornbuckle
JobTitle                   Firefighter
BasePay                      115539.04
OvertimePay                   77125.34
OtherPay                       12501.9
Benefits                      39504.89
TotalPay                     205166.28
TotalPayBenefits             244671.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73699, dtype: object)
(73700, Id                                       73701
EmployeeName                       Pei Yue  Ho
JobTitle            Diagnostic Imaging Tech II
BasePay                              114426.04
OvertimePay                           41250.31
OtherPay                              52769.98
Benefits                              36223.01
TotalPay                             208446.33
TotalPayBenefits                     244669.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73700, dtype: object)
(73701, Id                             73702
EmployeeName        Lannie J Adelman
JobTitle               Nurse Manager
BasePay                    170640.01
OvertimePay                      0.0
OtherPay                    24142.13
Benefits                    49874.99
TotalPay                   194782.14
TotalPayBenefits           244657.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73701, dtype: object)
(73702, Id                          73703
EmployeeName            Mimi  Woo
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              65029.54
OtherPay                 21142.47
Benefits                 41437.81
TotalPay                203128.72
TotalPayBenefits        244566.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73702, dtype: object)
(73703, Id                                 73704
EmployeeName        Christopher J Nelson
JobTitle                     Manager VII
BasePay                        192047.51
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        52465.71
TotalPay                       192047.51
TotalPayBenefits               244513.22
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73703, dtype: object)
(73704, Id                              73705
EmployeeName        Robert A Muhammad
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  69380.44
OtherPay                     16831.01
Benefits                      41339.9
TotalPay                    203168.16
TotalPayBenefits            244508.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73704, dtype: object)
(73705, Id                                        73706
EmployeeName                Niels L Tangherlini
JobTitle            Captain, Emergency Med Svcs
BasePay                               153604.27
OvertimePay                            21424.95
OtherPay                               21225.85
Benefits                               48251.45
TotalPay                              196255.07
TotalPayBenefits                      244506.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73705, dtype: object)
(73706, Id                             73707
EmployeeName        Colleen E Fatooh
JobTitle                Lieutenant 3
BasePay                    163674.01
OvertimePay                 22831.26
OtherPay                    12302.71
Benefits                    45684.23
TotalPay                   198807.98
TotalPayBenefits           244492.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73706, dtype: object)
(73707, Id                                         73708
EmployeeName                         John J Caba
JobTitle            Lieutenant, Fire Suppression
BasePay                                149135.83
OvertimePay                              30570.8
OtherPay                                18561.22
Benefits                                46192.15
TotalPay                               198267.85
TotalPayBenefits                        244460.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73707, dtype: object)
(73708, Id                              73709
EmployeeName        Cecile M Schwanke
JobTitle                Nurse Manager
BasePay                     175803.01
OvertimePay                       0.0
OtherPay                     17580.32
Benefits                     50962.62
TotalPay                    193383.33
TotalPayBenefits            244345.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73708, dtype: object)
(73709, Id                               73710
EmployeeName          Brigid R Donovan
JobTitle            Nurse Practitioner
BasePay                      163619.19
OvertimePay                    22458.4
OtherPay                        7710.7
Benefits                      50512.78
TotalPay                     193788.29
TotalPayBenefits             244301.07
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73709, dtype: object)
(73710, Id                                         73711
EmployeeName                   Patrick J Rabbitt
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                             46835.31
OtherPay                                17610.88
Benefits                                 45037.8
TotalPay                                199113.7
TotalPayBenefits                        244151.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73710, dtype: object)
(73711, Id                             73712
EmployeeName        Pamela M Hofsass
JobTitle                Lieutenant 3
BasePay                    153104.08
OvertimePay                  24787.2
OtherPay                    22652.42
Benefits                    43422.14
TotalPay                    200543.7
TotalPayBenefits           243965.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73711, dtype: object)
(73712, Id                             73713
EmployeeName        Clinton J Bunker
JobTitle                 Anesthetist
BasePay                    184486.75
OvertimePay                  2648.74
OtherPay                     4609.83
Benefits                    52205.48
TotalPay                   191745.32
TotalPayBenefits            243950.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73712, dtype: object)
(73713, Id                             73714
EmployeeName         Antron D Barron
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 73829.27
OtherPay                     9584.45
Benefits                     37040.2
TotalPay                   206884.87
TotalPayBenefits           243925.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73713, dtype: object)
(73714, Id                                        73715
EmployeeName                      Andy G Zanoff
JobTitle            Captain, Emergency Med Svcs
BasePay                               154575.03
OvertimePay                            12570.69
OtherPay                               32246.08
Benefits                               44533.14
TotalPay                               199391.8
TotalPayBenefits                      243924.94
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73714, dtype: object)
(73715, Id                          73716
EmployeeName           Todd  Rufo
JobTitle            Dept Head III
BasePay                 158896.66
OvertimePay                   0.0
OtherPay                  27041.6
Benefits                 57969.97
TotalPay                185938.26
TotalPayBenefits        243908.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73715, dtype: object)
(73716, Id                               73717
EmployeeName        Vincent A Pampanin
JobTitle                   Firefighter
BasePay                      109116.66
OvertimePay                    20212.9
OtherPay                      68116.54
Benefits                      46429.93
TotalPay                      197446.1
TotalPayBenefits             243876.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73716, dtype: object)
(73717, Id                             73718
EmployeeName        Michelle L Durgy
JobTitle                 Dep Dir III
BasePay                    179089.26
OvertimePay                      0.0
OtherPay                     5398.52
Benefits                    59339.12
TotalPay                   184487.78
TotalPayBenefits            243826.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73717, dtype: object)
(73718, Id                               73719
EmployeeName         Tae Wol O Stanley
JobTitle            Nurse Practitioner
BasePay                       178848.0
OvertimePay                        0.0
OtherPay                       12256.0
Benefits                      52646.81
TotalPay                      191104.0
TotalPayBenefits             243750.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73718, dtype: object)
(73719, Id                             73720
EmployeeName        Eugene J Galeano
JobTitle                  Sergeant 3
BasePay                     143289.0
OvertimePay                 52048.48
OtherPay                     7052.85
Benefits                    41346.28
TotalPay                   202390.33
TotalPayBenefits           243736.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73719, dtype: object)
(73720, Id                              73721
EmployeeName        Denise M Martinez
JobTitle                  Manager VII
BasePay                     185833.37
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     57897.25
TotalPay                    185833.37
TotalPayBenefits            243730.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73720, dtype: object)
(73721, Id                          73722
EmployeeName           Brien  Hoo
JobTitle               Sergeant 3
BasePay                  143289.1
OvertimePay              38550.04
OtherPay                 20420.35
Benefits                 41406.89
TotalPay                202259.49
TotalPayBenefits        243666.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73721, dtype: object)
(73722, Id                                        73723
EmployeeName                       Edward T Lee
JobTitle            Senior Physician Specialist
BasePay                               183339.02
OvertimePay                                 0.0
OtherPay                               10467.94
Benefits                               49726.44
TotalPay                              193806.96
TotalPayBenefits                       243533.4
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73722, dtype: object)
(73723, Id                                   73724
EmployeeName               Mike B Carrasco
JobTitle            Track Maint Wrk Sprv 1
BasePay                           85638.05
OvertimePay                      103652.04
OtherPay                          21520.85
Benefits                           32673.9
TotalPay                         210810.94
TotalPayBenefits                 243484.84
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73723, dtype: object)
(73724, Id                            73725
EmployeeName        Julio C Escobar
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                67769.01
OtherPay                   18842.53
Benefits                   40977.25
TotalPay                  202504.99
TotalPayBenefits          243482.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73724, dtype: object)
(73725, Id                               73726
EmployeeName        Charles A Higueras
JobTitle             Project Manager 4
BasePay                      192409.54
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      50925.83
TotalPay                     192409.54
TotalPayBenefits             243335.37
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73725, dtype: object)
(73726, Id                              73727
EmployeeName        Ronald A Alameida
JobTitle            Project Manager 4
BasePay                      192409.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     50925.83
TotalPay                     192409.5
TotalPayBenefits            243335.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73726, dtype: object)
(73727, Id                               73728
EmployeeName            Stephen M Kawa
JobTitle            Mayoral Staff XVII
BasePay                      185671.97
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      57560.06
TotalPay                     185671.97
TotalPayBenefits             243232.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73727, dtype: object)
(73728, Id                                      73729
EmployeeName               Michael A Cochrane
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          17658.55
OtherPay                              20764.3
Benefits                             49625.49
TotalPay                            193597.34
TotalPayBenefits                    243222.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73728, dtype: object)
(73729, Id                                        73730
EmployeeName                    Daniel  Scdoris
JobTitle            Diagnostic Imaging Tech III
BasePay                               120123.03
OvertimePay                            27784.46
OtherPay                               57789.17
Benefits                               37458.38
TotalPay                              205696.66
TotalPayBenefits                      243155.04
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73729, dtype: object)
(73730, Id                                        73731
EmployeeName                 Katherine W Miller
JobTitle            Head Atty, Civil & Criminal
BasePay                               189696.07
OvertimePay                                 0.0
OtherPay                                 2260.0
Benefits                               51153.67
TotalPay                              191956.07
TotalPayBenefits                      243109.74
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73730, dtype: object)
(73731, Id                          73732
EmployeeName           Paul Y Yep
JobTitle             Lieutenant 3
BasePay                 162833.78
OvertimePay              13196.71
OtherPay                 22564.42
Benefits                 44473.73
TotalPay                198594.91
TotalPayBenefits        243068.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73731, dtype: object)
(73732, Id                          73733
EmployeeName         Derek J Wing
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              67117.19
OtherPay                 19005.39
Benefits                 41044.36
TotalPay                202016.04
TotalPayBenefits         243060.4
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73732, dtype: object)
(73733, Id                                 73734
EmployeeName        Gregory C Cacharelis
JobTitle                     Firefighter
BasePay                        116956.71
OvertimePay                     66124.73
OtherPay                        18638.59
Benefits                        41308.67
TotalPay                       201720.03
TotalPayBenefits                243028.7
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73733, dtype: object)
(73734, Id                                      73735
EmployeeName            James Taylor  Rowland
JobTitle            Attorney (Civil/Criminal)
BasePay                             190400.24
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             51360.77
TotalPay                            191650.24
TotalPayBenefits                    243011.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73734, dtype: object)
(73735, Id                          73736
EmployeeName        John F Thomas
JobTitle                 Engineer
BasePay                 192047.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50850.46
TotalPay                192047.57
TotalPayBenefits        242898.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73735, dtype: object)
(73736, Id                                       73737
EmployeeName                    Manfred M Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              192047.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              50850.46
TotalPay                             192047.53
TotalPayBenefits                     242897.99
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73736, dtype: object)
(73737, Id                              73738
EmployeeName            Daniel L Wade
JobTitle            Project Manager 4
BasePay                     192047.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     50850.46
TotalPay                    192047.53
TotalPayBenefits            242897.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73737, dtype: object)
(73738, Id                          73739
EmployeeName        Howard H Fung
JobTitle                 Engineer
BasePay                 192047.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50850.46
TotalPay                192047.53
TotalPayBenefits        242897.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73738, dtype: object)
(73739, Id                                       73740
EmployeeName                      Jimmy Y Chiu
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              192047.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              50850.46
TotalPay                             192047.52
TotalPayBenefits                     242897.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73739, dtype: object)
(73740, Id                              73741
EmployeeName            Barbara L Moy
JobTitle            Project Manager 4
BasePay                     192047.52
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     50850.46
TotalPay                    192047.52
TotalPayBenefits            242897.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73740, dtype: object)
(73741, Id                                       73742
EmployeeName                    Johanna I Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              192047.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              50850.46
TotalPay                             192047.51
TotalPayBenefits                     242897.97
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73741, dtype: object)
(73742, Id                                       73743
EmployeeName                     Husam N Masri
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               192047.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              50833.56
TotalPay                              192047.5
TotalPayBenefits                     242881.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73742, dtype: object)
(73743, Id                                    73744
EmployeeName                   Milton  Yuen
JobTitle            Fire Safety Inspector 2
BasePay                            139644.0
OvertimePay                        52424.76
OtherPay                            8378.64
Benefits                           42403.14
TotalPay                           200447.4
TotalPayBenefits                  242850.54
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 73743, dtype: object)
(73744, Id                             73745
EmployeeName        Thomas J Maguire
JobTitle                  Sergeant 3
BasePay                    143289.12
OvertimePay                  37610.6
OtherPay                    20828.23
Benefits                    41045.22
TotalPay                   201727.95
TotalPayBenefits           242773.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73744, dtype: object)
(73745, Id                            73746
EmployeeName        Dermot P Dorgan
JobTitle                 Sergeant 2
BasePay                   139714.03
OvertimePay                32070.84
OtherPay                   29015.65
Benefits                   41945.08
TotalPay                  200800.52
TotalPayBenefits           242745.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73745, dtype: object)
(73746, Id                          73747
EmployeeName        Jason W Bland
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              56912.37
OtherPay                 26979.15
Benefits                 41854.98
TotalPay                200848.24
TotalPayBenefits        242703.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73746, dtype: object)
(73747, Id                             73748
EmployeeName        Erick A Martinez
JobTitle                 Firefighter
BasePay                    116956.74
OvertimePay                 70265.47
OtherPay                    14816.28
Benefits                    40658.16
TotalPay                   202038.49
TotalPayBenefits           242696.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73747, dtype: object)
(73748, Id                                73749
EmployeeName        Nicholas C Bazarini
JobTitle                    Firefighter
BasePay                       115893.46
OvertimePay                    66882.88
OtherPay                       18984.16
Benefits                       40932.03
TotalPay                       201760.5
TotalPayBenefits              242692.53
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73748, dtype: object)
(73749, Id                                         73750
EmployeeName                  Stephen  Giacalone
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                             44482.73
OtherPay                                18264.56
Benefits                                45037.78
TotalPay                               197414.79
TotalPayBenefits                       242452.57
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73749, dtype: object)
(73750, Id                             73751
EmployeeName        Bernard R Lantin
JobTitle                 Firefighter
BasePay                    116956.73
OvertimePay                 64569.19
OtherPay                    19510.34
Benefits                    41406.59
TotalPay                   201036.26
TotalPayBenefits           242442.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73750, dtype: object)
(73751, Id                                      73752
EmployeeName                  Lorenzo  Ibarra
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133182.61
OvertimePay                          52640.68
OtherPay                             12905.94
Benefits                             43662.12
TotalPay                            198729.23
TotalPayBenefits                    242391.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73751, dtype: object)
(73752, Id                                         73753
EmployeeName                     Kevin A Mc Keon
JobTitle            Lieutenant, Fire Suppression
BasePay                                135903.01
OvertimePay                             35096.19
OtherPay                                 24404.7
Benefits                                46770.27
TotalPay                                195403.9
TotalPayBenefits                       242174.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73752, dtype: object)
(73753, Id                                         73754
EmployeeName                    Fariba  Mahmoudi
JobTitle            Engineer/Architect Principal
BasePay                                191425.18
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                50740.35
TotalPay                               191425.18
TotalPayBenefits                       242165.53
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73753, dtype: object)
(73754, Id                                         73755
EmployeeName                   Shahnam  Farhangi
JobTitle            Engineer/Architect Principal
BasePay                                191425.15
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                50740.35
TotalPay                               191425.15
TotalPayBenefits                        242165.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73754, dtype: object)
(73755, Id                              73756
EmployeeName        Yusufu B Caungula
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  63830.22
OtherPay                     19932.74
Benefits                     41415.49
TotalPay                    200719.68
TotalPayBenefits            242135.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73755, dtype: object)
(73756, Id                               73757
EmployeeName        Melchor J Picardal
JobTitle                   Firefighter
BasePay                      116956.77
OvertimePay                   62094.87
OtherPay                      21202.71
Benefits                      41848.62
TotalPay                     200254.35
TotalPayBenefits             242102.97
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73756, dtype: object)
(73757, Id                                  73758
EmployeeName        Jerome A Defilippo Jr
JobTitle                     Lieutenant 3
BasePay                         163674.09
OvertimePay                      16212.37
OtherPay                         16272.69
Benefits                          45925.8
TotalPay                        196159.15
TotalPayBenefits                242084.95
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73757, dtype: object)
(73758, Id                                      73759
EmployeeName                  Kevin S Chocker
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133346.73
OvertimePay                           38748.0
OtherPay                             24127.24
Benefits                             45807.48
TotalPay                            196221.97
TotalPayBenefits                    242029.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73758, dtype: object)
(73759, Id                                  73760
EmployeeName        Christopher W Canning
JobTitle                       Sergeant 3
BasePay                         142555.12
OvertimePay                      18709.41
OtherPay                         40095.45
Benefits                         40639.66
TotalPay                        201359.98
TotalPayBenefits                241999.64
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73759, dtype: object)
(73760, Id                                           73761
EmployeeName                       Brian A Ballard
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   174528.0
OvertimePay                                5458.87
OtherPay                                   12928.0
Benefits                                  49011.57
TotalPay                                 192914.87
TotalPayBenefits                         241926.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73760, dtype: object)
(73761, Id                                         73762
EmployeeName                     Thomas P Oertli
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             43595.03
OtherPay                                16988.01
Benefits                                 45434.3
TotalPay                               196486.03
TotalPayBenefits                       241920.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73761, dtype: object)
(73762, Id                          73763
EmployeeName          Bryan W Mar
JobTitle               Pharmacist
BasePay                 145216.41
OvertimePay              19637.29
OtherPay                  29822.2
Benefits                 47237.86
TotalPay                 194675.9
TotalPayBenefits        241913.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73762, dtype: object)
(73763, Id                                        73764
EmployeeName                      Jean M Roland
JobTitle            Head Atty, Civil & Criminal
BasePay                               189554.03
OvertimePay                                 0.0
OtherPay                                 1250.0
Benefits                               50877.58
TotalPay                              190804.03
TotalPayBenefits                      241681.61
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73763, dtype: object)
(73764, Id                              73765
EmployeeName        Wilfredo R Varona
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  63586.92
OtherPay                      19574.1
Benefits                     41458.33
TotalPay                    200117.73
TotalPayBenefits            241576.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73764, dtype: object)
(73765, Id                            73766
EmployeeName        Reuben A Halili
JobTitle                   Engineer
BasePay                   188031.53
OvertimePay                     0.0
OtherPay                     2815.8
Benefits                   50707.12
TotalPay                  190847.33
TotalPayBenefits          241554.45
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73765, dtype: object)
(73766, Id                            73767
EmployeeName        Stephen D Jonas
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                44221.95
OtherPay                    13216.6
Benefits                    40825.4
TotalPay                  200727.66
TotalPayBenefits          241553.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73766, dtype: object)
(73767, Id                                      73768
EmployeeName               Carlton K Biscevic
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          43615.22
OtherPay                             17476.01
Benefits                             45309.08
TotalPay                            196235.48
TotalPayBenefits                    241544.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73767, dtype: object)
(73768, Id                                      73769
EmployeeName            Glenn E Ortiz-Schuldt
JobTitle            Captain, Fire Suppression
BasePay                             151555.51
OvertimePay                          24303.64
OtherPay                             17599.64
Benefits                              48064.3
TotalPay                            193458.79
TotalPayBenefits                    241523.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73768, dtype: object)
(73769, Id                                73770
EmployeeName        Oscar E Carcelen Jr
JobTitle               Police Officer 3
BasePay                        128556.0
OvertimePay                     55971.7
OtherPay                        18366.5
Benefits                        38614.2
TotalPay                       202894.2
TotalPayBenefits               241508.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73769, dtype: object)
(73770, Id                          73771
EmployeeName         Eli C Thomas
JobTitle              Firefighter
BasePay                 107211.96
OvertimePay              82508.67
OtherPay                 11083.85
Benefits                 40677.45
TotalPay                200804.48
TotalPayBenefits        241481.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73770, dtype: object)
(73771, Id                                 73772
EmployeeName        Gerald J Sanguinetti
JobTitle                     Manager VII
BasePay                        182188.25
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        59183.85
TotalPay                       182188.25
TotalPayBenefits                241372.1
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73771, dtype: object)
(73772, Id                            73773
EmployeeName        Stephen  Muller
JobTitle                Firefighter
BasePay                   116956.72
OvertimePay                67169.24
OtherPay                    16344.3
Benefits                   40894.68
TotalPay                  200470.26
TotalPayBenefits          241364.94
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73772, dtype: object)
(73773, Id                                        73774
EmployeeName                   Judith  Mosqueda
JobTitle            Landscape Architect Assoc 2
BasePay                               186930.52
OvertimePay                                 0.0
OtherPay                                 3728.1
Benefits                               50604.49
TotalPay                              190658.62
TotalPayBenefits                      241263.11
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73773, dtype: object)
(73774, Id                             73775
EmployeeName        Jesse C Bautista
JobTitle                 Firefighter
BasePay                    116956.72
OvertimePay                  53033.5
OtherPay                    28608.76
Benefits                    42606.71
TotalPay                   198598.98
TotalPayBenefits           241205.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73774, dtype: object)
(73775, Id                          73776
EmployeeName        Thomas  Busby
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              61373.12
OtherPay                 21309.77
Benefits                 41545.08
TotalPay                199639.62
TotalPayBenefits         241184.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73775, dtype: object)
(73776, Id                             73777
EmployeeName         Evelyn T Ferrer
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                   9495.0
OtherPay                    36206.92
Benefits                    53050.29
TotalPay                   188126.92
TotalPayBenefits           241177.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73776, dtype: object)
(73777, Id                                         73778
EmployeeName                       Paul D O'Kane
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             44278.12
OtherPay                                15703.11
Benefits                                45226.26
TotalPay                               195884.19
TotalPayBenefits                       241110.45
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73777, dtype: object)
(73778, Id                               73779
EmployeeName             Harold D Byrd
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                  107053.18
OtherPay                       8924.07
Benefits                      33653.68
TotalPay                     207426.25
TotalPayBenefits             241079.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73778, dtype: object)
(73779, Id                                      73780
EmployeeName             Christine  Davenport
JobTitle            Clinical Nurse Specialist
BasePay                              186666.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             54139.38
TotalPay                             186916.0
TotalPayBenefits                    241055.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73779, dtype: object)
(73780, Id                          73781
EmployeeName        Kim H D' Arcy
JobTitle               Sergeant 3
BasePay                 137982.01
OvertimePay                   0.0
OtherPay                 62282.71
Benefits                 40779.94
TotalPay                200264.72
TotalPayBenefits        241044.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73780, dtype: object)
(73781, Id                                73782
EmployeeName        Albert D Bronson Jr
JobTitle                    Firefighter
BasePay                       115893.45
OvertimePay                    65724.05
OtherPay                       18314.24
Benefits                       41044.36
TotalPay                      199931.74
TotalPayBenefits               240976.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73781, dtype: object)
(73782, Id                                        73783
EmployeeName                   Antenor S Molloy
JobTitle            Captain, Emergency Med Svcs
BasePay                                154575.0
OvertimePay                            31841.47
OtherPay                                 9990.0
Benefits                               44533.14
TotalPay                              196406.47
TotalPayBenefits                      240939.61
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73782, dtype: object)
(73783, Id                                        73784
EmployeeName                        Simon  Pang
JobTitle            Captain, Emergency Med Svcs
BasePay                               144746.07
OvertimePay                            31803.12
OtherPay                               18237.52
Benefits                               46105.12
TotalPay                              194786.71
TotalPayBenefits                      240891.83
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73783, dtype: object)
(73784, Id                                   73785
EmployeeName        Douglas R Price-Hanson
JobTitle              Physician Specialist
BasePay                           178593.0
OvertimePay                            0.0
OtherPay                          13654.78
Benefits                          48621.35
TotalPay                         192247.78
TotalPayBenefits                 240869.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73784, dtype: object)
(73785, Id                                         73786
EmployeeName                     Shelia V Hunter
JobTitle            Lieutenant, Fire Suppression
BasePay                                134542.92
OvertimePay                             41492.15
OtherPay                                19498.05
Benefits                                45329.56
TotalPay                               195533.12
TotalPayBenefits                       240862.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73785, dtype: object)
(73786, Id                          73787
EmployeeName           Sue  Black
JobTitle               Manager VI
BasePay                 183307.78
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 57511.93
TotalPay                183307.78
TotalPayBenefits        240819.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73786, dtype: object)
(73787, Id                             73788
EmployeeName          Elaine  Martin
JobTitle            Registered Nurse
BasePay                     124863.3
OvertimePay                 15806.48
OtherPay                    58930.68
Benefits                    41154.78
TotalPay                   199600.46
TotalPayBenefits           240755.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73787, dtype: object)
(73788, Id                             73789
EmployeeName        Edward H Sweeney
JobTitle                 Dep Dir III
BasePay                    183180.81
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     57487.8
TotalPay                   183180.81
TotalPayBenefits           240668.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73788, dtype: object)
(73789, Id                                         73790
EmployeeName                Thomas R Johannessen
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135903.0
OvertimePay                             41889.57
OtherPay                                17385.73
Benefits                                 45467.2
TotalPay                                195178.3
TotalPayBenefits                        240645.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73789, dtype: object)
(73790, Id                              73791
EmployeeName        Ricci J Rodriguez
JobTitle             Police Officer 3
BasePay                     123471.05
OvertimePay                  67189.33
OtherPay                     11370.07
Benefits                     38450.35
TotalPay                    202030.45
TotalPayBenefits             240480.8
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73790, dtype: object)
(73791, Id                          73792
EmployeeName          Alvin D Yee
JobTitle             Lieutenant 3
BasePay                  163674.2
OvertimePay              17397.98
OtherPay                 14145.59
Benefits                 45235.85
TotalPay                195217.77
TotalPayBenefits        240453.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73791, dtype: object)
(73792, Id                             73793
EmployeeName        Gary G Franzella
JobTitle                  Manager VI
BasePay                    183311.37
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    57077.25
TotalPay                   183311.37
TotalPayBenefits           240388.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73792, dtype: object)
(73793, Id                             73794
EmployeeName        Edward C Labrado
JobTitle                 Firefighter
BasePay                    139171.03
OvertimePay                 36635.04
OtherPay                    18264.93
Benefits                     46281.3
TotalPay                    194071.0
TotalPayBenefits            240352.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73793, dtype: object)
(73794, Id                          73795
EmployeeName         Daniel  Cole
JobTitle               Sergeant 3
BasePay                 143289.13
OvertimePay              46344.97
OtherPay                   9796.6
Benefits                 40877.31
TotalPay                 199430.7
TotalPayBenefits        240308.01
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73794, dtype: object)
(73795, Id                                      73796
EmployeeName                          Ron  Ho
JobTitle            Director, Info Tech Group
BasePay                              176039.2
OvertimePay                               0.0
OtherPay                               7931.2
Benefits                             56299.11
TotalPay                             183970.4
TotalPayBenefits                    240269.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73795, dtype: object)
(73796, Id                              73797
EmployeeName        Virginia M Harmon
JobTitle             Manager VII, MTA
BasePay                      182870.8
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     57324.72
TotalPay                     182870.8
TotalPayBenefits            240195.52
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73796, dtype: object)
(73797, Id                                         73798
EmployeeName                      Sean E Mullane
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.98
OvertimePay                             38610.19
OtherPay                                19831.59
Benefits                                45811.17
TotalPay                               194344.76
TotalPayBenefits                       240155.93
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73797, dtype: object)
(73798, Id                                        73799
EmployeeName                 Angela D Angstmann
JobTitle            Senior Physician Specialist
BasePay                                179613.8
OvertimePay                                 0.0
OtherPay                                8981.36
Benefits                               51547.87
TotalPay                              188595.16
TotalPayBenefits                      240143.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73798, dtype: object)
(73799, Id                            73800
EmployeeName         Clifton D Hong
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                33305.13
OtherPay                   25567.74
Benefits                   41539.01
TotalPay                  198516.87
TotalPayBenefits          240055.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73799, dtype: object)
(73800, Id                                      73801
EmployeeName           Fatima B Ascano-Martin
JobTitle            Clinical Nurse Specialist
BasePay                              185652.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             54141.48
TotalPay                             185902.0
TotalPayBenefits                    240043.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73800, dtype: object)
(73801, Id                            73802
EmployeeName        Gloria L Wilder
JobTitle                  Manager V
BasePay                    179616.0
OvertimePay                     0.0
OtherPay                     3032.0
Benefits                   57336.45
TotalPay                   182648.0
TotalPayBenefits          239984.45
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73801, dtype: object)
(73802, Id                          73803
EmployeeName          Julian W Ng
JobTitle             Lieutenant 3
BasePay                  163674.0
OvertimePay              22562.07
OtherPay                  8859.55
Benefits                 44880.89
TotalPay                195095.62
TotalPayBenefits        239976.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73802, dtype: object)
(73803, Id                                        73804
EmployeeName                    Elaine C Warren
JobTitle            Head Atty, Civil & Criminal
BasePay                               193736.02
OvertimePay                                 0.0
OtherPay                                5125.27
Benefits                               40957.18
TotalPay                              198861.29
TotalPayBenefits                      239818.47
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73803, dtype: object)
(73804, Id                                      73805
EmployeeName                Kevin E OSullivan
JobTitle            Captain, Fire Suppression
BasePay                             155174.51
OvertimePay                            9141.2
OtherPay                             24806.88
Benefits                             50526.02
TotalPay                            189122.59
TotalPayBenefits                    239648.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73804, dtype: object)
(73805, Id                          73806
EmployeeName        Jerry  Chiang
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              63507.91
OtherPay                  18434.4
Benefits                 40718.49
TotalPay                198899.02
TotalPayBenefits        239617.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73805, dtype: object)
(73806, Id                                         73807
EmployeeName                     Paul G McDonagh
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.91
OvertimePay                             35515.48
OtherPay                                21787.15
Benefits                                46402.51
TotalPay                               193205.54
TotalPayBenefits                       239608.05
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73806, dtype: object)
(73807, Id                          73808
EmployeeName           Arnie  Lee
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              59486.13
OtherPay                 21267.05
Benefits                 41867.85
TotalPay                197709.89
TotalPayBenefits        239577.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73807, dtype: object)
(73808, Id                                   73809
EmployeeName        Jean N Taylor-Woodbury
JobTitle                Nurse Practitioner
BasePay                          184410.01
OvertimePay                         1024.5
OtherPay                            284.15
Benefits                          53858.91
TotalPay                         185718.66
TotalPayBenefits                 239577.57
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 73808, dtype: object)
(73809, Id                            73810
EmployeeName        James D Untalan
JobTitle                Firefighter
BasePay                   114830.24
OvertimePay                65216.13
OtherPay                   18845.89
Benefits                   40682.12
TotalPay                  198892.26
TotalPayBenefits          239574.38
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73809, dtype: object)
(73810, Id                               73811
EmployeeName           Arlisa  Collins
JobTitle            Sheriff's Sergeant
BasePay                      114654.06
OvertimePay                   76065.26
OtherPay                      10203.52
Benefits                      38637.54
TotalPay                     200922.84
TotalPayBenefits             239560.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73810, dtype: object)
(73811, Id                          73812
EmployeeName         Joseph  John
JobTitle              Manager VII
BasePay                 178273.03
OvertimePay                   0.0
OtherPay                   4000.0
Benefits                 57281.07
TotalPay                182273.03
TotalPayBenefits         239554.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73811, dtype: object)
(73812, Id                           73813
EmployeeName        Laura A Knight
JobTitle              Lieutenant 3
BasePay                  162919.01
OvertimePay                6970.83
OtherPay                  24768.19
Benefits                  44847.42
TotalPay                 194658.03
TotalPayBenefits         239505.45
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73812, dtype: object)
(73813, Id                           73814
EmployeeName        James K Ayache
JobTitle               Firefighter
BasePay                  116956.73
OvertimePay                62062.6
OtherPay                  19031.91
Benefits                  41437.82
TotalPay                 198051.24
TotalPayBenefits         239489.06
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73813, dtype: object)
(73814, Id                                       73815
EmployeeName              Nicholas A Colangelo
JobTitle            Diagnostic Imaging Tech II
BasePay                               114002.2
OvertimePay                           45982.89
OtherPay                              43556.74
Benefits                              35824.11
TotalPay                             203541.83
TotalPayBenefits                     239365.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 73814, dtype: object)
(73815, Id                               73816
EmployeeName        Mario J Delgadillo
JobTitle                  Lieutenant 3
BasePay                      163674.02
OvertimePay                    7821.42
OtherPay                      21123.25
Benefits                      46708.15
TotalPay                     192618.69
TotalPayBenefits             239326.84
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73815, dtype: object)
(73816, Id                                        73817
EmployeeName                    Mark  Bernstein
JobTitle            Senior Physician Specialist
BasePay                               150697.11
OvertimePay                                 0.0
OtherPay                               48477.93
Benefits                               40107.07
TotalPay                              199175.04
TotalPayBenefits                      239282.11
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73816, dtype: object)
(73817, Id                                      73818
EmployeeName                Christine  Martin
JobTitle            Clinical Nurse Specialist
BasePay                             178435.99
OvertimePay                           3165.67
OtherPay                              4281.84
Benefits                             53380.27
TotalPay                             185883.5
TotalPayBenefits                    239263.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73817, dtype: object)
(73818, Id                             73819
EmployeeName        Dariush S Kayhan
JobTitle                 Manager VII
BasePay                    178421.05
OvertimePay                      0.0
OtherPay                     4807.66
Benefits                    56031.99
TotalPay                   183228.71
TotalPayBenefits            239260.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73818, dtype: object)
(73819, Id                            73820
EmployeeName        Robert  Velarde
JobTitle                Inspector 3
BasePay                    143289.0
OvertimePay                26423.66
OtherPay                   29627.78
Benefits                   39898.17
TotalPay                  199340.44
TotalPayBenefits          239238.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73819, dtype: object)
(73820, Id                          73821
EmployeeName        Dennis J Kern
JobTitle               Dep Dir IV
BasePay                 191446.08
OvertimePay                   0.0
OtherPay                    750.0
Benefits                 47041.25
TotalPay                192196.08
TotalPayBenefits        239237.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73820, dtype: object)
(73821, Id                             73822
EmployeeName            Thomas J Lee
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 48991.07
OtherPay                    32534.85
Benefits                    36571.12
TotalPay                   202593.92
TotalPayBenefits           239165.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73821, dtype: object)
(73822, Id                                        73823
EmployeeName                Salvatore  Taormina
JobTitle            Captain, Emergency Med Svcs
BasePay                               155404.58
OvertimePay                            18088.99
OtherPay                               17763.49
Benefits                               47832.08
TotalPay                              191257.06
TotalPayBenefits                      239089.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73822, dtype: object)
(73823, Id                          73824
EmployeeName        Karen  Acosta
JobTitle            Nurse Manager
BasePay                 172125.67
OvertimePay                   0.0
OtherPay                  17547.9
Benefits                  49405.5
TotalPay                189673.57
TotalPayBenefits        239079.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73823, dtype: object)
(73824, Id                                      73825
EmployeeName                      Leon  White
JobTitle            EMT/Paramedic/Firefighter
BasePay                             128120.86
OvertimePay                           45292.2
OtherPay                             22617.44
Benefits                             43029.12
TotalPay                             196030.5
TotalPayBenefits                    239059.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73824, dtype: object)
(73825, Id                                 73826
EmployeeName                 Zhi H Huang
JobTitle            Physician Specialist
BasePay                        183559.68
OvertimePay                          0.0
OtherPay                          6120.0
Benefits                        49373.73
TotalPay                       189679.68
TotalPayBenefits               239053.41
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73825, dtype: object)
(73826, Id                          73827
EmployeeName            Maria  Su
JobTitle             Dept Head II
BasePay                 178245.76
OvertimePay                   0.0
OtherPay                   3500.0
Benefits                 57269.82
TotalPay                181745.76
TotalPayBenefits        239015.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73826, dtype: object)
(73827, Id                             73828
EmployeeName        Thomas J Cunnane
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                 63863.63
OtherPay                    13229.92
Benefits                    38406.02
TotalPay                   200564.71
TotalPayBenefits           238970.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73827, dtype: object)
(73828, Id                                  73829
EmployeeName                Alvin H Young
JobTitle            Senior Deputy Sheriff
BasePay                         105436.53
OvertimePay                      80290.65
OtherPay                         16362.33
Benefits                         36835.18
TotalPay                        202089.51
TotalPayBenefits                238924.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73828, dtype: object)
(73829, Id                          73830
EmployeeName        Robert C Yick
JobTitle             Lieutenant 3
BasePay                 163674.08
OvertimePay              25102.86
OtherPay                   5444.5
Benefits                 44660.87
TotalPay                194221.44
TotalPayBenefits        238882.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73829, dtype: object)
(73830, Id                               73831
EmployeeName              Kim M Schoen
JobTitle            Nurse Practitioner
BasePay                       158512.5
OvertimePay                    4007.98
OtherPay                      29787.09
Benefits                      46533.72
TotalPay                     192307.57
TotalPayBenefits             238841.29
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73830, dtype: object)
(73831, Id                                        73832
EmployeeName                   Stephanie  Cohen
JobTitle            Senior Physician Specialist
BasePay                                187101.5
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               51682.45
TotalPay                               187101.5
TotalPayBenefits                      238783.95
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73831, dtype: object)
(73832, Id                               73833
EmployeeName          Clara  Shayevich
JobTitle            Nurse Practitioner
BasePay                      182885.26
OvertimePay                        0.0
OtherPay                        2107.8
Benefits                      53783.65
TotalPay                     184993.06
TotalPayBenefits             238776.71
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73832, dtype: object)
(73833, Id                                         73834
EmployeeName                   Anesto R Estrella
JobTitle            Lieutenant, Fire Suppression
BasePay                                135198.21
OvertimePay                             33347.06
OtherPay                                23688.15
Benefits                                46515.19
TotalPay                               192233.42
TotalPayBenefits                       238748.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73833, dtype: object)
(73834, Id                            73835
EmployeeName        Sofia M Mathews
JobTitle            Lieut,Fire Prev
BasePay                    152820.0
OvertimePay                32397.84
OtherPay                     9169.2
Benefits                   44278.09
TotalPay                  194387.04
TotalPayBenefits          238665.13
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73834, dtype: object)
(73835, Id                               73836
EmployeeName          Julia A Galletly
JobTitle            Nurse Practitioner
BasePay                      171587.69
OvertimePay                    5590.53
OtherPay                       8651.78
Benefits                      52778.63
TotalPay                      185830.0
TotalPayBenefits             238608.63
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73835, dtype: object)
(73836, Id                                         73837
EmployeeName                 Bridget H Cullinane
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.45
OvertimePay                             48182.77
OtherPay                                11693.93
Benefits                                44026.91
TotalPay                               194544.15
TotalPayBenefits                       238571.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73836, dtype: object)
(73837, Id                               73838
EmployeeName               David  Paul
JobTitle            Nurse Practitioner
BasePay                       176670.7
OvertimePay                    6832.95
OtherPay                       3276.17
Benefits                      51772.77
TotalPay                     186779.82
TotalPayBenefits             238552.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73837, dtype: object)
(73838, Id                               73839
EmployeeName         Laurie  Nobilette
JobTitle            Nurse Practitioner
BasePay                       184410.0
OvertimePay                        0.0
OtherPay                        284.15
Benefits                      53857.85
TotalPay                     184694.15
TotalPayBenefits              238552.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73838, dtype: object)
(73839, Id                           73840
EmployeeName        Kevin J Knoble
JobTitle                Sergeant 3
BasePay                  143289.05
OvertimePay                35751.8
OtherPay                  18675.92
Benefits                  40811.58
TotalPay                 197716.77
TotalPayBenefits         238528.35
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73839, dtype: object)
(73840, Id                               73841
EmployeeName             Meghan  White
JobTitle            Nurse Practitioner
BasePay                      166134.07
OvertimePay                   13734.31
OtherPay                       7373.75
Benefits                      51275.13
TotalPay                     187242.13
TotalPayBenefits             238517.26
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73840, dtype: object)
(73841, Id                            73842
EmployeeName        Denis F O'Leary
JobTitle                  Captain 3
BasePay                     76600.0
OvertimePay                     0.0
OtherPay                  142461.26
Benefits                   19436.58
TotalPay                  219061.26
TotalPayBenefits          238497.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73841, dtype: object)
(73842, Id                             73843
EmployeeName             Gordon  Yee
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 61783.75
OtherPay                    14862.52
Benefits                    38335.61
TotalPay                   200117.31
TotalPayBenefits           238452.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73842, dtype: object)
(73843, Id                          73844
EmployeeName          Harry H Yee
JobTitle              Firefighter
BasePay                 115893.49
OvertimePay              66746.84
OtherPay                 15353.56
Benefits                 40414.94
TotalPay                197993.89
TotalPayBenefits        238408.83
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73843, dtype: object)
(73844, Id                                      73845
EmployeeName                 Leonard  Caulder
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          41568.82
OtherPay                             16486.67
Benefits                             45206.17
TotalPay                            193199.76
TotalPayBenefits                    238405.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73844, dtype: object)
(73845, Id                               73846
EmployeeName        Elizabeth J Potter
JobTitle                    Manager VI
BasePay                      181279.92
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      57041.77
TotalPay                     181279.92
TotalPayBenefits             238321.69
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73845, dtype: object)
(73846, Id                             73847
EmployeeName          Glenn A Ortega
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 72421.29
OtherPay                     5365.93
Benefits                    37055.22
TotalPay                   201258.37
TotalPayBenefits           238313.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73846, dtype: object)
(73847, Id                             73848
EmployeeName        Esther  Gonzalez
JobTitle                  Sergeant 2
BasePay                     130532.0
OvertimePay                 51130.47
OtherPay                    17926.33
Benefits                    38719.66
TotalPay                    199588.8
TotalPayBenefits           238308.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73847, dtype: object)
(73848, Id                                      73849
EmployeeName                  Luis Z Belicena
JobTitle            Clinical Nurse Specialist
BasePay                              184356.0
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             53701.39
TotalPay                             184606.0
TotalPayBenefits                    238307.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73848, dtype: object)
(73849, Id                                  73850
EmployeeName        Michael J Borovina-Jr
JobTitle            Senior Deputy Sheriff
BasePay                         105436.53
OvertimePay                      84525.69
OtherPay                         11671.64
Benefits                          36551.0
TotalPay                        201633.86
TotalPayBenefits                238184.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 73849, dtype: object)
(73850, Id                              73851
EmployeeName        Dennis M Martinez
JobTitle             Police Officer 3
BasePay                     123471.05
OvertimePay                  64393.32
OtherPay                     13260.77
Benefits                     37047.87
TotalPay                    201125.14
TotalPayBenefits            238173.01
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73850, dtype: object)
(73851, Id                                          73852
EmployeeName                       Scott A Broder
JobTitle            Heating/Ventilating Inspector
BasePay                                  110300.4
OvertimePay                              92782.11
OtherPay                                      0.0
Benefits                                 35069.76
TotalPay                                203082.51
TotalPayBenefits                        238152.27
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 73851, dtype: object)
(73852, Id                             73853
EmployeeName        Mark J Hutchings
JobTitle                  Sergeant 3
BasePay                    143289.03
OvertimePay                  36218.2
OtherPay                    17824.11
Benefits                     40795.9
TotalPay                   197331.34
TotalPayBenefits           238127.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73852, dtype: object)
(73853, Id                               73854
EmployeeName            Linda  Creegan
JobTitle            Nurse Practitioner
BasePay                      184080.42
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      53784.34
TotalPay                     184330.42
TotalPayBenefits             238114.76
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73853, dtype: object)
(73854, Id                                    73855
EmployeeName              Manuel J Pegueros
JobTitle            Fire Safety Inspector 2
BasePay                           136151.62
OvertimePay                        52219.11
OtherPay                            8169.09
Benefits                           41532.95
TotalPay                          196539.82
TotalPayBenefits                  238072.77
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 73854, dtype: object)
(73855, Id                              73856
EmployeeName        Michael A Dearman
JobTitle                  Manager VII
BasePay                     180711.61
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     57239.12
TotalPay                    180711.61
TotalPayBenefits            237950.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73855, dtype: object)
(73856, Id                              73857
EmployeeName         Donald E Ellison
JobTitle            Deputy Dir I, MTA
BasePay                      189487.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     48406.86
TotalPay                     189487.0
TotalPayBenefits            237893.86
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73856, dtype: object)
(73857, Id                                 73858
EmployeeName          Albert B Waters II
JobTitle            Chief Deputy Sheriff
BasePay                        166164.56
OvertimePay                      6182.48
OtherPay                        17351.49
Benefits                        48140.33
TotalPay                       189698.53
TotalPayBenefits               237838.86
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73857, dtype: object)
(73858, Id                              73859
EmployeeName        Elizabeth  Murray
JobTitle                 Dept Head II
BasePay                     180802.28
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     56933.42
TotalPay                    180802.28
TotalPayBenefits             237735.7
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73858, dtype: object)
(73859, Id                            73860
EmployeeName        Evita D Mullins
JobTitle              Nurse Manager
BasePay                   186912.01
OvertimePay                     0.0
OtherPay                      910.0
Benefits                   49897.56
TotalPay                  187822.01
TotalPayBenefits          237719.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73859, dtype: object)
(73860, Id                                      73861
EmployeeName                Fernando  De Alba
JobTitle            Captain, Fire Suppression
BasePay                               82440.0
OvertimePay                            850.17
OtherPay                            132301.43
Benefits                             22075.88
TotalPay                             215591.6
TotalPayBenefits                    237667.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73860, dtype: object)
(73861, Id                                73862
EmployeeName          Leonard F Broberg
JobTitle            Assistant Inspector
BasePay                       135270.17
OvertimePay                    35459.49
OtherPay                       27602.68
Benefits                       39295.75
TotalPay                      198332.34
TotalPayBenefits              237628.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73861, dtype: object)
(73862, Id                                         73863
EmployeeName                      James B Draper
JobTitle            Lieutenant, Fire Suppression
BasePay                                142669.57
OvertimePay                             31096.39
OtherPay                                18111.83
Benefits                                45749.96
TotalPay                               191877.79
TotalPayBenefits                       237627.75
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73862, dtype: object)
(73863, Id                            73864
EmployeeName          Brett F Evart
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                25659.61
OtherPay                   30104.21
Benefits                    42183.0
TotalPay                  195407.82
TotalPayBenefits          237590.82
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73863, dtype: object)
(73864, Id                          73865
EmployeeName          Jack K Chow
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay               59892.5
OtherPay                 19297.75
Benefits                 41406.58
TotalPay                196146.94
TotalPayBenefits        237553.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73864, dtype: object)
(73865, Id                                         73866
EmployeeName                    Frederick W Putt
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             38116.92
OtherPay                                18015.28
Benefits                                 45434.3
TotalPay                               192035.19
TotalPayBenefits                       237469.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73865, dtype: object)
(73866, Id                                        73867
EmployeeName                       Karen  Kirby
JobTitle            Head Atty, Civil & Criminal
BasePay                               182596.02
OvertimePay                                 0.0
OtherPay                                4252.99
Benefits                               50500.15
TotalPay                              186849.01
TotalPayBenefits                      237349.16
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73866, dtype: object)
(73867, Id                           73868
EmployeeName        Michael A Juan
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               59975.43
OtherPay                   19037.3
Benefits                   41339.9
TotalPay                 195969.45
TotalPayBenefits         237309.35
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73867, dtype: object)
(73868, Id                            73869
EmployeeName        Andrew A Meehan
JobTitle                 Sergeant 2
BasePay                    140724.0
OvertimePay                36680.67
OtherPay                   19228.67
Benefits                   40661.58
TotalPay                  196633.34
TotalPayBenefits          237294.92
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73868, dtype: object)
(73869, Id                                 73870
EmployeeName        Gaetano  Caltagirone
JobTitle                    Lieutenant 3
BasePay                        163674.02
OvertimePay                     23746.61
OtherPay                         5223.49
Benefits                        44649.43
TotalPay                       192644.12
TotalPayBenefits               237293.55
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73869, dtype: object)
(73870, Id                                 73871
EmployeeName        Christopher T Nguyen
JobTitle            Physician Specialist
BasePay                        183559.72
OvertimePay                          0.0
OtherPay                          4590.0
Benefits                        49114.42
TotalPay                       188149.72
TotalPayBenefits               237264.14
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73870, dtype: object)
(73871, Id                               73872
EmployeeName             Nancy E Lewis
JobTitle            Nurse Practitioner
BasePay                       183397.4
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      53596.18
TotalPay                      183647.4
TotalPayBenefits             237243.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73871, dtype: object)
(73872, Id                             73873
EmployeeName        John C Greenwood
JobTitle                Lieutenant 3
BasePay                    166047.59
OvertimePay                 19233.29
OtherPay                     6233.33
Benefits                    45727.81
TotalPay                   191514.21
TotalPayBenefits           237242.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73872, dtype: object)
(73873, Id                                      73874
EmployeeName                   Jon J Del Bino
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          11990.75
OtherPay                             21501.85
Benefits                             48538.03
TotalPay                            188667.09
TotalPayBenefits                    237205.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73873, dtype: object)
(73874, Id                            73875
EmployeeName        Rosaly E Ferrer
JobTitle              Nurse Manager
BasePay                    165424.0
OvertimePay                     0.0
OtherPay                   22975.77
Benefits                   48776.13
TotalPay                  188399.77
TotalPayBenefits           237175.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73874, dtype: object)
(73875, Id                              73876
EmployeeName          Terrance  Fahey
JobTitle            Manager VIII, MTA
BasePay                     178273.01
OvertimePay                       0.0
OtherPay                       2000.0
Benefits                     56901.01
TotalPay                    180273.01
TotalPayBenefits            237174.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73875, dtype: object)
(73876, Id                          73877
EmployeeName          Norman  Yup
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              62757.43
OtherPay                 17710.04
Benefits                  40736.2
TotalPay                196360.92
TotalPayBenefits        237097.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73876, dtype: object)
(73877, Id                                        73878
EmployeeName                    Judith A Martin
JobTitle            Senior Physician Specialist
BasePay                                185740.1
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               51327.48
TotalPay                               185740.1
TotalPayBenefits                      237067.58
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73877, dtype: object)
(73878, Id                          73879
EmployeeName            Mark Y Im
JobTitle               Sergeant 3
BasePay                 143289.18
OvertimePay              31715.05
OtherPay                 20931.35
Benefits                 41131.73
TotalPay                195935.58
TotalPayBenefits        237067.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73878, dtype: object)
(73879, Id                            73880
EmployeeName        Carlos  Salazar
JobTitle              Nurse Manager
BasePay                   170640.01
OvertimePay                 1136.34
OtherPay                   15447.76
Benefits                    49823.1
TotalPay                  187224.11
TotalPayBenefits          237047.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73879, dtype: object)
(73880, Id                                        73881
EmployeeName                  Daniel M Beckwith
JobTitle            Captain, Emergency Med Svcs
BasePay                               154575.11
OvertimePay                            28654.72
OtherPay                                 9274.5
Benefits                               44533.14
TotalPay                              192504.33
TotalPayBenefits                      237037.47
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73880, dtype: object)
(73881, Id                               73882
EmployeeName        Alice B Villagomez
JobTitle                    Manager IV
BasePay                       92695.79
OvertimePay                        0.0
OtherPay                     115526.64
Benefits                      28767.08
TotalPay                     208222.43
TotalPayBenefits             236989.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73881, dtype: object)
(73882, Id                                      73883
EmployeeName             Christine M Schenone
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              6730.25
Benefits                             50187.59
TotalPay                            186781.25
TotalPayBenefits                    236968.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73882, dtype: object)
(73883, Id                                         73884
EmployeeName              Manouchehr  Boozarpour
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                10888.98
Benefits                                48143.66
TotalPay                               188808.98
TotalPayBenefits                       236952.64
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73883, dtype: object)
(73884, Id                                 73885
EmployeeName        Christopher R Porter
JobTitle                      Sergeant 2
BasePay                         126892.0
OvertimePay                     58600.05
OtherPay                        13638.58
Benefits                        37784.02
TotalPay                       199130.63
TotalPayBenefits               236914.65
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73884, dtype: object)
(73885, Id                               73886
EmployeeName        Deborah J Williams
JobTitle                 Nurse Manager
BasePay                      186912.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      49940.04
TotalPay                     186912.02
TotalPayBenefits             236852.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73885, dtype: object)
(73886, Id                                73887
EmployeeName        Daniel F Mc Auliffe
JobTitle                      Manager V
BasePay                        179979.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       56843.98
TotalPay                       179979.2
TotalPayBenefits              236823.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73886, dtype: object)
(73887, Id                                      73888
EmployeeName                  Kevin J Pardini
JobTitle            Captain, Fire Suppression
BasePay                             153763.84
OvertimePay                           14018.6
OtherPay                             19935.99
Benefits                             49099.61
TotalPay                            187718.43
TotalPayBenefits                    236818.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73887, dtype: object)
(73888, Id                            73889
EmployeeName        Mariano A Elias
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                61434.96
OtherPay                    19055.5
Benefits                   40294.33
TotalPay                  196383.91
TotalPayBenefits          236678.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73888, dtype: object)
(73889, Id                                      73890
EmployeeName                  James  Ferrante
JobTitle            EMT/Paramedic/Firefighter
BasePay                             114076.08
OvertimePay                          72422.69
OtherPay                             12497.53
Benefits                             37660.56
TotalPay                             198996.3
TotalPayBenefits                    236656.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73889, dtype: object)
(73890, Id                          73891
EmployeeName          Jane  Evans
JobTitle            Nurse Manager
BasePay                 186912.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49723.29
TotalPay                186912.01
TotalPayBenefits         236635.3
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73890, dtype: object)
(73891, Id                                         73892
EmployeeName              Alexander P Douglas Jr
JobTitle            Lieutenant, Fire Suppression
BasePay                                137246.59
OvertimePay                             35891.26
OtherPay                                17649.54
Benefits                                45838.59
TotalPay                               190787.39
TotalPayBenefits                       236625.98
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73891, dtype: object)
(73892, Id                               73893
EmployeeName         Jeffrey A Schmidt
JobTitle            Nursing Supervisor
BasePay                      178971.71
OvertimePay                        0.0
OtherPay                       7903.63
Benefits                      49739.73
TotalPay                     186875.34
TotalPayBenefits             236615.07
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73892, dtype: object)
(73893, Id                           73894
EmployeeName        Kathryn D Jung
JobTitle                Manager VI
BasePay                  178098.36
OvertimePay                    0.0
OtherPay                   1648.18
Benefits                  56861.69
TotalPay                 179746.54
TotalPayBenefits         236608.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73893, dtype: object)
(73894, Id                          73895
EmployeeName            Sara  Coe
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              51086.86
OtherPay                 26779.96
Benefits                 41775.16
TotalPay                194823.55
TotalPayBenefits        236598.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73894, dtype: object)
(73895, Id                                           73896
EmployeeName                       Carol A Wolther
JobTitle            Electrical Transit Shop Sprv 1
BasePay                                  119722.09
OvertimePay                               80010.17
OtherPay                                       0.0
Benefits                                  36861.18
TotalPay                                 199732.26
TotalPayBenefits                         236593.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 73895, dtype: object)
(73896, Id                                      73897
EmployeeName               Jonathan W Huggins
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.65
OvertimePay                          46669.29
OtherPay                             11947.96
Benefits                              44027.2
TotalPay                             192532.9
TotalPayBenefits                     236560.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73896, dtype: object)
(73897, Id                                      73898
EmployeeName                Michael E Maloney
JobTitle            Captain, Fire Suppression
BasePay                             153763.81
OvertimePay                           18730.7
OtherPay                             15833.94
Benefits                             48224.66
TotalPay                            188328.45
TotalPayBenefits                    236553.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73897, dtype: object)
(73898, Id                          73899
EmployeeName        Charles  Perl
JobTitle               Manager VI
BasePay                 177182.85
OvertimePay                   0.0
OtherPay                   2500.0
Benefits                 56859.14
TotalPay                179682.85
TotalPayBenefits        236541.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73898, dtype: object)
(73899, Id                              73900
EmployeeName        Louis A Cassanego
JobTitle                    Captain 3
BasePay                      84260.01
OvertimePay                       0.0
OtherPay                    130872.91
Benefits                     21393.65
TotalPay                    215132.92
TotalPayBenefits            236526.57
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73899, dtype: object)
(73900, Id                                73901
EmployeeName        Timothy  Papandreou
JobTitle              Manager VIII, MTA
BasePay                        178273.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       58233.25
TotalPay                       178273.0
TotalPayBenefits              236506.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73900, dtype: object)
(73901, Id                                        73902
EmployeeName        Jacqueline E Spencer-Davies
JobTitle                     Nursing Supervisor
BasePay                                158306.0
OvertimePay                                 0.0
OtherPay                               29455.09
Benefits                               48736.53
TotalPay                              187761.09
TotalPayBenefits                      236497.62
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73901, dtype: object)
(73902, Id                            73903
EmployeeName        David A Crespin
JobTitle                Firefighter
BasePay                   115893.47
OvertimePay                59272.18
OtherPay                   20347.56
Benefits                   40932.02
TotalPay                  195513.21
TotalPayBenefits          236445.23
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73902, dtype: object)
(73903, Id                          73904
EmployeeName          Fanny K Lee
JobTitle               Manager VI
BasePay                 177182.84
OvertimePay                   0.0
OtherPay                   2500.0
Benefits                  56760.6
TotalPay                179682.84
TotalPayBenefits        236443.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73903, dtype: object)
(73904, Id                                      73905
EmployeeName                  Michael J Simon
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.29
OvertimePay                          39126.77
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            191164.07
TotalPayBenefits                    236437.06
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73904, dtype: object)
(73905, Id                                 73906
EmployeeName        Kathleen C McElheney
JobTitle                     Firefighter
BasePay                        116956.73
OvertimePay                     55434.99
OtherPay                        22189.75
Benefits                        41848.61
TotalPay                       194581.47
TotalPayBenefits               236430.08
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73905, dtype: object)
(73906, Id                          73907
EmployeeName         Kaeo K Nacua
JobTitle              Firefighter
BasePay                  116987.7
OvertimePay              58078.79
OtherPay                 19964.01
Benefits                 41363.53
TotalPay                 195030.5
TotalPayBenefits        236394.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73906, dtype: object)
(73907, Id                               73908
EmployeeName               Suk Y Chung
JobTitle            Nurse Practitioner
BasePay                       178351.2
OvertimePay                        0.0
OtherPay                        4563.6
Benefits                      53439.37
TotalPay                      182914.8
TotalPayBenefits             236354.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73907, dtype: object)
(73908, Id                                73909
EmployeeName        Gregory D McFarland
JobTitle                    Firefighter
BasePay                       108839.31
OvertimePay                    70635.28
OtherPay                       18336.31
Benefits                       38532.65
TotalPay                       197810.9
TotalPayBenefits              236343.55
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73908, dtype: object)
(73909, Id                               73910
EmployeeName        Stephen H Nakajima
JobTitle                    Manager VI
BasePay                      179559.38
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      56681.67
TotalPay                     179559.38
TotalPayBenefits             236241.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73909, dtype: object)
(73910, Id                                         73911
EmployeeName                       Donald K Chan
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                 8492.15
Benefits                                49776.23
TotalPay                               186412.15
TotalPayBenefits                       236188.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73910, dtype: object)
(73911, Id                             73912
EmployeeName        Amador A Herrera
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                  58228.4
OtherPay                    19493.92
Benefits                     41497.3
TotalPay                   194679.03
TotalPayBenefits           236176.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73911, dtype: object)
(73912, Id                                        73913
EmployeeName                Katherine M Mahoney
JobTitle            Head Atty, Civil & Criminal
BasePay                               182596.02
OvertimePay                                 0.0
OtherPay                                3456.19
Benefits                               50119.05
TotalPay                              186052.21
TotalPayBenefits                      236171.26
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73912, dtype: object)
(73913, Id                              73914
EmployeeName        Michael G Kirtley
JobTitle                  Firefighter
BasePay                     110629.98
OvertimePay                  68096.02
OtherPay                     18356.18
Benefits                     39088.63
TotalPay                    197082.18
TotalPayBenefits            236170.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73913, dtype: object)
(73914, Id                          73915
EmployeeName         Mirian  Saez
JobTitle              Dep Dir III
BasePay                 179345.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  56654.4
TotalPay                179345.52
TotalPayBenefits        235999.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73914, dtype: object)
(73915, Id                                         73916
EmployeeName                       Shon M Buford
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.45
OvertimePay                             44868.55
OtherPay                                12329.12
Benefits                                44100.72
TotalPay                               191865.12
TotalPayBenefits                       235965.84
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73915, dtype: object)
(73916, Id                                         73917
EmployeeName                        Dawn  DeWitt
JobTitle            Lieutenant, Fire Suppression
BasePay                                155064.48
OvertimePay                             20712.31
OtherPay                                 13430.1
Benefits                                46730.63
TotalPay                               189206.89
TotalPayBenefits                       235937.52
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73916, dtype: object)
(73917, Id                             73918
EmployeeName         Daniel P Rosaia
JobTitle            Police Officer 2
BasePay                    115209.16
OvertimePay                 60299.58
OtherPay                    24938.28
Benefits                    35478.19
TotalPay                   200447.02
TotalPayBenefits           235925.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73917, dtype: object)
(73918, Id                           73919
EmployeeName        Tracy A McCray
JobTitle                Sergeant 3
BasePay                  143289.15
OvertimePay               32926.84
OtherPay                  17729.46
Benefits                  41940.56
TotalPay                 193945.45
TotalPayBenefits         235886.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73918, dtype: object)
(73919, Id                                         73920
EmployeeName                  Mojgan  Yousefkhan
JobTitle            Engineer/Architect Principal
BasePay                                 177916.8
OvertimePay                                  0.0
OtherPay                                 8245.91
Benefits                                49720.97
TotalPay                               186162.71
TotalPayBenefits                       235883.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73919, dtype: object)
(73920, Id                          73921
EmployeeName        Sergio K Chin
JobTitle             Lieutenant 3
BasePay                  162919.0
OvertimePay                   0.0
OtherPay                 28424.97
Benefits                 44528.56
TotalPay                191343.97
TotalPayBenefits        235872.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73920, dtype: object)
(73921, Id                               73922
EmployeeName        Michael D Peterson
JobTitle                   Firefighter
BasePay                      115013.18
OvertimePay                    61168.2
OtherPay                      18887.28
Benefits                      40785.04
TotalPay                     195068.66
TotalPayBenefits              235853.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73921, dtype: object)
(73922, Id                            73923
EmployeeName        Gavin R Marconi
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                59919.89
OtherPay                   17748.95
Benefits                   41196.33
TotalPay                  194625.55
TotalPayBenefits          235821.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 73922, dtype: object)
(73923, Id                                      73924
EmployeeName                  Britton L Smith
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                          21392.93
OtherPay                             11295.48
Benefits                             47883.09
TotalPay                             187862.9
TotalPayBenefits                    235745.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73923, dtype: object)
(73924, Id                          73925
EmployeeName         Vakil  Kuner
JobTitle              Manager VII
BasePay                 178273.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 57406.92
TotalPay                178273.05
TotalPayBenefits        235679.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73924, dtype: object)
(73925, Id                                73926
EmployeeName            Stephen  Engler
JobTitle            Invstgtor,Fire Dept
BasePay                       141885.83
OvertimePay                    30059.28
OtherPay                       17415.75
Benefits                       46294.77
TotalPay                      189360.86
TotalPayBenefits              235655.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 73925, dtype: object)
(73926, Id                          73927
EmployeeName        Linda S Yeung
JobTitle              Dep Dir III
BasePay                 179020.47
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 56592.16
TotalPay                179020.47
TotalPayBenefits        235612.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73926, dtype: object)
(73927, Id                          73928
EmployeeName          Alan J Levy
JobTitle               Sergeant 3
BasePay                 142227.62
OvertimePay               35834.8
OtherPay                 17006.04
Benefits                 40497.35
TotalPay                195068.46
TotalPayBenefits        235565.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73927, dtype: object)
(73928, Id                                      73929
EmployeeName                Cheryl L Matthews
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.82
Benefits                             50644.84
TotalPay                            184902.85
TotalPayBenefits                    235547.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73928, dtype: object)
(73929, Id                                        73930
EmployeeName                      Adine K Varah
JobTitle            Head Atty, Civil & Criminal
BasePay                               182596.06
OvertimePay                                 0.0
OtherPay                                3057.79
Benefits                               49892.49
TotalPay                              185653.85
TotalPayBenefits                      235546.34
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73929, dtype: object)
(73930, Id                                 73931
EmployeeName        Winona J Mindolovich
JobTitle                      IS Manager
BasePay                        176341.03
OvertimePay                          0.0
OtherPay                         2444.04
Benefits                        56711.07
TotalPay                       178785.07
TotalPayBenefits               235496.14
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73930, dtype: object)
(73931, Id                                      73932
EmployeeName                    Abdul  Khadir
JobTitle            Captain, Fire Suppression
BasePay                             153763.82
OvertimePay                          11814.43
OtherPay                             20490.05
Benefits                             49399.01
TotalPay                             186068.3
TotalPayBenefits                    235467.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73931, dtype: object)
(73932, Id                          73933
EmployeeName         John F Doyle
JobTitle               Manager VI
BasePay                 178776.15
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 56619.79
TotalPay                178776.15
TotalPayBenefits        235395.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73932, dtype: object)
(73933, Id                               73934
EmployeeName             Jun Ting  Liu
JobTitle            Nurse Practitioner
BasePay                       177523.2
OvertimePay                    1266.84
OtherPay                       3623.32
Benefits                      52925.37
TotalPay                     182413.36
TotalPayBenefits             235338.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73933, dtype: object)
(73934, Id                                      73935
EmployeeName                Katherine T Asada
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.07
OvertimePay                               0.0
OtherPay                              4851.81
Benefits                             50370.77
TotalPay                            184902.88
TotalPayBenefits                    235273.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73934, dtype: object)
(73935, Id                                      73936
EmployeeName                    Steven  Gayle
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4851.85
Benefits                             50370.77
TotalPay                            184902.85
TotalPayBenefits                    235273.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73935, dtype: object)
(73936, Id                                      73937
EmployeeName                    Donn W Furman
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.34
Benefits                             50370.69
TotalPay                            184902.37
TotalPayBenefits                    235273.06
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73936, dtype: object)
(73937, Id                                      73938
EmployeeName                   Robin  Reitzes
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.31
Benefits                             50370.69
TotalPay                            184902.33
TotalPayBenefits                    235273.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73937, dtype: object)
(73938, Id                                      73939
EmployeeName                     John S Roddy
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.22
Benefits                             50370.69
TotalPay                            184902.24
TotalPayBenefits                    235272.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73938, dtype: object)
(73939, Id                                      73940
EmployeeName                 Michael  Ferrara
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          37790.13
OtherPay                             16997.35
Benefits                             45293.28
TotalPay                            189931.75
TotalPayBenefits                    235225.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73939, dtype: object)
(73940, Id                                      73941
EmployeeName                    Frank  Agnost
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4851.31
Benefits                             50252.13
TotalPay                            184902.32
TotalPayBenefits                    235154.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73940, dtype: object)
(73941, Id                                      73942
EmployeeName                    Marie C Blits
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4851.27
Benefits                             50252.12
TotalPay                            184902.28
TotalPayBenefits                     235154.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73941, dtype: object)
(73942, Id                                        73943
EmployeeName                    Bruce E Krejcik
JobTitle            Power Generation Supervisor
BasePay                               130116.31
OvertimePay                            45429.78
OtherPay                               19374.62
Benefits                               40199.16
TotalPay                              194920.71
TotalPayBenefits                      235119.87
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73942, dtype: object)
(73943, Id                             73944
EmployeeName        Gloria H Cornejo
JobTitle            Registered Nurse
BasePay                     141489.0
OvertimePay                  9704.29
OtherPay                    33641.06
Benefits                    50277.46
TotalPay                   184834.35
TotalPayBenefits           235111.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73943, dtype: object)
(73944, Id                                      73945
EmployeeName                    Raymond  Fong
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                              4851.85
Benefits                             50195.03
TotalPay                            184902.89
TotalPayBenefits                    235097.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73944, dtype: object)
(73945, Id                               73946
EmployeeName        Kevin P McNaughton
JobTitle                  Lieutenant 3
BasePay                      163674.01
OvertimePay                    5062.75
OtherPay                      19384.93
Benefits                      46959.01
TotalPay                     188121.69
TotalPayBenefits              235080.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73945, dtype: object)
(73946, Id                                      73947
EmployeeName               Brook A Mancinelli
JobTitle            EMT/Paramedic/Firefighter
BasePay                              98286.72
OvertimePay                          92917.51
OtherPay                             11233.38
Benefits                             32642.38
TotalPay                            202437.61
TotalPayBenefits                    235079.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73946, dtype: object)
(73947, Id                                      73948
EmployeeName                    Greg L Wyrsch
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                           7279.09
OtherPay                             22500.22
Benefits                             50117.54
TotalPay                             184953.8
TotalPayBenefits                    235071.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73947, dtype: object)
(73948, Id                                 73949
EmployeeName            Richard W Martin
JobTitle            Physician Specialist
BasePay                        183994.04
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        51044.78
TotalPay                       183994.04
TotalPayBenefits               235038.82
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 73948, dtype: object)
(73949, Id                                        73950
EmployeeName                   Pamela E Swedlow
JobTitle            Senior Physician Specialist
BasePay                               177737.49
OvertimePay                                 0.0
OtherPay                                8887.57
Benefits                               48393.48
TotalPay                              186625.06
TotalPayBenefits                      235018.54
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73949, dtype: object)
(73950, Id                                      73951
EmployeeName                  Judith M Garvey
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.84
Benefits                             50094.91
TotalPay                            184902.89
TotalPayBenefits                     234997.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73950, dtype: object)
(73951, Id                                      73952
EmployeeName                 Donna L Chignell
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.84
Benefits                             50094.91
TotalPay                            184902.89
TotalPayBenefits                     234997.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73951, dtype: object)
(73952, Id                                      73953
EmployeeName                     Kathy M Bull
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.82
Benefits                             50094.91
TotalPay                            184902.85
TotalPayBenefits                    234997.76
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73952, dtype: object)
(73953, Id                                      73954
EmployeeName                      Lisa A Clay
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.09
OvertimePay                               0.0
OtherPay                               4851.3
Benefits                             50094.83
TotalPay                            184902.39
TotalPayBenefits                    234997.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73953, dtype: object)
(73954, Id                                      73955
EmployeeName                 William  Sanders
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.34
Benefits                             50094.83
TotalPay                            184902.37
TotalPayBenefits                     234997.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73954, dtype: object)
(73955, Id                                      73956
EmployeeName                Timothy L Yoshida
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.32
Benefits                             50094.83
TotalPay                            184902.37
TotalPayBenefits                     234997.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73955, dtype: object)
(73956, Id                                      73957
EmployeeName                 Richard T Handel
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4851.35
Benefits                             50094.83
TotalPay                            184902.36
TotalPayBenefits                    234997.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73956, dtype: object)
(73957, Id                                      73958
EmployeeName                Christine  Sacino
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4851.34
Benefits                             50094.83
TotalPay                            184902.34
TotalPayBenefits                    234997.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73957, dtype: object)
(73958, Id                                      73959
EmployeeName                    Thomas J Owen
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.29
Benefits                             50094.82
TotalPay                            184902.34
TotalPayBenefits                    234997.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73958, dtype: object)
(73959, Id                                      73960
EmployeeName                   Mariam  Morley
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                              4851.28
Benefits                             50094.82
TotalPay                            184902.32
TotalPayBenefits                    234997.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73959, dtype: object)
(73960, Id                                      73961
EmployeeName                David A Greenburg
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.23
Benefits                             50094.83
TotalPay                            184902.28
TotalPayBenefits                    234997.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73960, dtype: object)
(73961, Id                                      73962
EmployeeName               Virginia  Elizondo
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.22
Benefits                             50094.84
TotalPay                            184902.25
TotalPayBenefits                    234997.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73961, dtype: object)
(73962, Id                             73963
EmployeeName        Theresa L Sparks
JobTitle                Dept Head II
BasePay                    178437.37
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     56489.9
TotalPay                   178437.37
TotalPayBenefits           234927.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73962, dtype: object)
(73963, Id                                         73964
EmployeeName                   Aaron C Stevenson
JobTitle            Lieutenant, Fire Suppression
BasePay                                134537.75
OvertimePay                             40139.78
OtherPay                                15512.61
Benefits                                44643.61
TotalPay                               190190.14
TotalPayBenefits                       234833.75
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 73963, dtype: object)
(73964, Id                               73965
EmployeeName        Teresita M Navarro
JobTitle             Manager VIII, MTA
BasePay                      178273.06
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      56546.81
TotalPay                     178273.06
TotalPayBenefits             234819.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 73964, dtype: object)
(73965, Id                           73966
EmployeeName        John T Noguchi
JobTitle              Dept Head II
BasePay                  178273.01
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  56546.81
TotalPay                 178273.01
TotalPayBenefits         234819.82
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 73965, dtype: object)
(73966, Id                              73967
EmployeeName              Neal G Popp
JobTitle            Manager VIII, MTA
BasePay                      178273.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     56546.81
TotalPay                     178273.0
TotalPayBenefits            234819.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73966, dtype: object)
(73967, Id                              73968
EmployeeName             David C Hill
JobTitle            Manager VIII, MTA
BasePay                      178273.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     56546.81
TotalPay                     178273.0
TotalPayBenefits            234819.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73967, dtype: object)
(73968, Id                             73969
EmployeeName        Brian T Philpott
JobTitle                Lieutenant 3
BasePay                     153104.1
OvertimePay                  5495.26
OtherPay                    32868.99
Benefits                     43337.2
TotalPay                   191468.35
TotalPayBenefits           234805.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73968, dtype: object)
(73969, Id                              73970
EmployeeName         Kerstin F Magary
JobTitle            Manager VIII, MTA
BasePay                     178273.03
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     56529.91
TotalPay                    178273.03
TotalPayBenefits            234802.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73969, dtype: object)
(73970, Id                          73971
EmployeeName           Idy W Chan
JobTitle            Nurse Manager
BasePay                 165424.02
OvertimePay                   0.0
OtherPay                 20589.07
Benefits                 48776.13
TotalPay                186013.09
TotalPayBenefits        234789.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73970, dtype: object)
(73971, Id                                      73972
EmployeeName              Joseph  Sandoval Jr
JobTitle            Attorney (Civil/Criminal)
BasePay                             179885.09
OvertimePay                               0.0
OtherPay                              4847.79
Benefits                             50052.31
TotalPay                            184732.88
TotalPayBenefits                    234785.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73971, dtype: object)
(73972, Id                                      73973
EmployeeName                   Evan H Ackiron
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.83
Benefits                             49854.93
TotalPay                            184902.86
TotalPayBenefits                    234757.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73972, dtype: object)
(73973, Id                                      73974
EmployeeName                    Andrew  Clark
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4851.82
Benefits                             49854.93
TotalPay                            184902.82
TotalPayBenefits                    234757.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73973, dtype: object)
(73974, Id                                      73975
EmployeeName                   Diane P Knoles
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.79
Benefits                             49854.93
TotalPay                            184902.81
TotalPayBenefits                    234757.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73974, dtype: object)
(73975, Id                                      73976
EmployeeName                   David A Delbon
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.33
Benefits                             49854.85
TotalPay                            184902.36
TotalPayBenefits                    234757.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73975, dtype: object)
(73976, Id                                      73977
EmployeeName                   John D Malamut
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.29
Benefits                             49854.86
TotalPay                            184902.34
TotalPayBenefits                     234757.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73976, dtype: object)
(73977, Id                                      73978
EmployeeName                  Elaine M O'Neil
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.32
Benefits                             49854.85
TotalPay                            184902.34
TotalPayBenefits                    234757.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73977, dtype: object)
(73978, Id                                      73979
EmployeeName                Terence J Howzell
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4851.29
Benefits                             49854.85
TotalPay                            184902.34
TotalPayBenefits                    234757.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73978, dtype: object)
(73979, Id                                      73980
EmployeeName                 Thomas S Lakritz
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4851.33
Benefits                             49854.85
TotalPay                            184902.33
TotalPayBenefits                    234757.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73979, dtype: object)
(73980, Id                                      73981
EmployeeName                Jonathan  Rolnick
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4851.26
Benefits                             49854.85
TotalPay                            184902.27
TotalPayBenefits                    234757.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73980, dtype: object)
(73981, Id                                      73982
EmployeeName           Frederick P Sheinfield
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              4851.23
Benefits                             49854.85
TotalPay                            184902.26
TotalPayBenefits                    234757.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73981, dtype: object)
(73982, Id                              73983
EmployeeName            Ashish  Patel
JobTitle            Manager VIII, MTA
BasePay                     178300.03
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     56453.25
TotalPay                    178300.03
TotalPayBenefits            234753.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 73982, dtype: object)
(73983, Id                             73984
EmployeeName           Ryan R Crosby
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                 50738.77
OtherPay                    23488.54
Benefits                     37040.2
TotalPay                   197698.43
TotalPayBenefits           234738.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73983, dtype: object)
(73984, Id                                      73985
EmployeeName                      Lisa L Katz
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4586.19
Benefits                             50047.86
TotalPay                            184637.19
TotalPayBenefits                    234685.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73984, dtype: object)
(73985, Id                          73986
EmployeeName        Rebecca  Katz
JobTitle             Dept Head II
BasePay                  178242.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 56441.81
TotalPay                 178242.0
TotalPayBenefits        234683.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73985, dtype: object)
(73986, Id                             73987
EmployeeName            David J Goff
JobTitle            Police Officer 3
BasePay                     115216.8
OvertimePay                      0.0
OtherPay                    85139.71
Benefits                    34317.68
TotalPay                   200356.51
TotalPayBenefits           234674.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73986, dtype: object)
(73987, Id                                      73988
EmployeeName                   Laura L Meyers
JobTitle            Attorney (Civil/Criminal)
BasePay                             179985.69
OvertimePay                               0.0
OtherPay                              4850.48
Benefits                             49836.17
TotalPay                            184836.17
TotalPayBenefits                    234672.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73987, dtype: object)
(73988, Id                                      73989
EmployeeName                   Nicole J Solis
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               4851.8
Benefits                             49758.73
TotalPay                             184902.8
TotalPayBenefits                    234661.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73988, dtype: object)
(73989, Id                                      73990
EmployeeName              Jennifer K Williams
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.77
Benefits                             49758.73
TotalPay                            184902.79
TotalPayBenefits                    234661.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73989, dtype: object)
(73990, Id                                      73991
EmployeeName                  Francis M Brass
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              4851.34
Benefits                             49758.65
TotalPay                            184902.34
TotalPayBenefits                    234660.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73990, dtype: object)
(73991, Id                                      73992
EmployeeName                      Ruth M Bond
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              4851.29
Benefits                             49758.65
TotalPay                            184902.31
TotalPayBenefits                    234660.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73991, dtype: object)
(73992, Id                                        73993
EmployeeName                      Mark E Jacobs
JobTitle            Head Atty, Civil & Criminal
BasePay                               179961.91
OvertimePay                                 0.0
OtherPay                                4850.08
Benefits                               49836.01
TotalPay                              184811.99
TotalPayBenefits                       234648.0
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 73992, dtype: object)
(73993, Id                                      73994
EmployeeName            Margaret  Baumgartner
JobTitle            Attorney (Civil/Criminal)
BasePay                             179967.21
OvertimePay                               0.0
OtherPay                              4822.84
Benefits                              49825.2
TotalPay                            184790.05
TotalPayBenefits                    234615.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73993, dtype: object)
(73994, Id                                      73995
EmployeeName                   David W Ammons
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               4851.3
Benefits                             49698.86
TotalPay                            184902.33
TotalPayBenefits                    234601.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73994, dtype: object)
(73995, Id                                      73996
EmployeeName                 Richard B Forman
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.06
OvertimePay                               0.0
OtherPay                              4851.81
Benefits                             49671.76
TotalPay                            184902.87
TotalPayBenefits                    234574.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 73995, dtype: object)
(73996, Id                             73997
EmployeeName        Richard J Araujo
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 70365.48
OtherPay                     6514.86
Benefits                    36600.59
TotalPay                   197948.34
TotalPayBenefits           234548.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73996, dtype: object)
(73997, Id                             73998
EmployeeName        James L Arnswald
JobTitle            Police Officer 3
BasePay                    126998.04
OvertimePay                 59781.57
OtherPay                     9585.35
Benefits                    38183.62
TotalPay                   196364.96
TotalPayBenefits           234548.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 73997, dtype: object)
(73998, Id                                          73999
EmployeeName                     Lawrence K Freed
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                  105487.5
OvertimePay                              83281.99
OtherPay                                  9516.55
Benefits                                 36237.24
TotalPay                                198286.04
TotalPayBenefits                        234523.28
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 73998, dtype: object)
(73999, Id                          74000
EmployeeName         Jon  McMahon
JobTitle               Sergeant 3
BasePay                 143554.43
OvertimePay              19772.77
OtherPay                 30280.27
Benefits                 40912.66
TotalPay                193607.47
TotalPayBenefits        234520.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 73999, dtype: object)
(74000, Id                                      74001
EmployeeName              Kimberly T Williams
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4719.02
Benefits                             49735.21
TotalPay                            184770.07
TotalPayBenefits                    234505.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74000, dtype: object)
(74001, Id                             74002
EmployeeName        Arthur  Stellini
JobTitle                Lieutenant 3
BasePay                     84868.05
OvertimePay                  4537.05
OtherPay                   122087.62
Benefits                    22984.87
TotalPay                   211492.72
TotalPayBenefits           234477.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74001, dtype: object)
(74002, Id                                      74003
EmployeeName                  Paul C Crawford
JobTitle            Captain, Fire Suppression
BasePay                              155174.5
OvertimePay                          17013.68
OtherPay                             13899.95
Benefits                             48362.73
TotalPay                            186088.13
TotalPayBenefits                    234450.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74002, dtype: object)
(74003, Id                             74004
EmployeeName        Michael J Martin
JobTitle                 Manager VII
BasePay                    178245.76
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    56202.23
TotalPay                   178245.76
TotalPayBenefits           234447.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74003, dtype: object)
(74004, Id                          74005
EmployeeName        Magaly  Saade
JobTitle              Firefighter
BasePay                 116956.75
OvertimePay              57024.85
OtherPay                 18988.06
Benefits                  41459.5
TotalPay                192969.66
TotalPayBenefits        234429.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74004, dtype: object)
(74005, Id                             74006
EmployeeName            James  Kelly
JobTitle            Manager VII, MTA
BasePay                    172382.68
OvertimePay                      0.0
OtherPay                     5683.42
Benefits                    56362.44
TotalPay                    178066.1
TotalPayBenefits           234428.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74005, dtype: object)
(74006, Id                                         74007
EmployeeName                     Leonel J Tingin
JobTitle            Lieutenant, Fire Suppression
BasePay                                142669.53
OvertimePay                             32142.49
OtherPay                                14395.81
Benefits                                45219.63
TotalPay                               189207.83
TotalPayBenefits                       234427.46
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74006, dtype: object)
(74007, Id                                      74008
EmployeeName                    Linda J Allen
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4719.03
Benefits                             49655.67
TotalPay                            184770.04
TotalPayBenefits                    234425.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74007, dtype: object)
(74008, Id                             74009
EmployeeName         Nelia Q Basanes
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  7714.69
OtherPay                     32313.7
Benefits                    51966.45
TotalPay                   182453.39
TotalPayBenefits           234419.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74008, dtype: object)
(74009, Id                             74010
EmployeeName        Henry L Thompson
JobTitle                 Manager VII
BasePay                     178013.7
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    56402.34
TotalPay                    178013.7
TotalPayBenefits           234416.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74009, dtype: object)
(74010, Id                                      74011
EmployeeName              Kristine  Poplawski
JobTitle            Attorney (Civil/Criminal)
BasePay                             179380.61
OvertimePay                               0.0
OtherPay                              4837.89
Benefits                             50178.19
TotalPay                             184218.5
TotalPayBenefits                    234396.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74010, dtype: object)
(74011, Id                          74012
EmployeeName           John W Yee
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              53793.38
OtherPay                 21763.15
Benefits                 41848.62
TotalPay                192513.26
TotalPayBenefits        234361.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74011, dtype: object)
(74012, Id                               74013
EmployeeName        Michael  Llewellyn
JobTitle                    Manager VI
BasePay                      177823.49
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      56504.79
TotalPay                     177823.49
TotalPayBenefits             234328.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74012, dtype: object)
(74013, Id                             74014
EmployeeName        Michael A Serujo
JobTitle                 Inspector 3
BasePay                    143289.12
OvertimePay                  19460.1
OtherPay                     28923.0
Benefits                    42641.27
TotalPay                   191672.22
TotalPayBenefits           234313.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74013, dtype: object)
(74014, Id                                      74015
EmployeeName                  Michael S Weiss
JobTitle            Attorney (Civil/Criminal)
BasePay                             179968.05
OvertimePay                               0.0
OtherPay                              4514.65
Benefits                             49774.24
TotalPay                             184482.7
TotalPayBenefits                    234256.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74014, dtype: object)
(74015, Id                                      74016
EmployeeName                  Joel M Blackman
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              3696.41
Benefits                             50505.67
TotalPay                            183747.44
TotalPayBenefits                    234253.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74015, dtype: object)
(74016, Id                           74017
EmployeeName        Tracy L Frantz
JobTitle               Firefighter
BasePay                  115893.47
OvertimePay               67276.67
OtherPay                  11342.94
Benefits                  39729.67
TotalPay                 194513.08
TotalPayBenefits         234242.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74016, dtype: object)
(74017, Id                             74018
EmployeeName        Rodrigo R Palaad
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                   8545.5
OtherPay                    31430.08
Benefits                    51831.38
TotalPay                   182400.58
TotalPayBenefits           234231.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74017, dtype: object)
(74018, Id                                      74019
EmployeeName               Michael M Menesini
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               4055.0
Benefits                             50111.09
TotalPay                             184106.0
TotalPayBenefits                    234217.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74018, dtype: object)
(74019, Id                               74020
EmployeeName        Gavin J McGoldrick
JobTitle                   Firefighter
BasePay                      116956.71
OvertimePay                   58211.43
OtherPay                      17561.09
Benefits                      41406.59
TotalPay                     192729.23
TotalPayBenefits             234135.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74019, dtype: object)
(74020, Id                                 74021
EmployeeName             James B Morales
JobTitle            Special Assistant 19
BasePay                         176280.0
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        57826.63
TotalPay                        176280.0
TotalPayBenefits               234106.63
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74020, dtype: object)
(74021, Id                                 74022
EmployeeName         Katherine L Johnson
JobTitle            Chief Deputy Sheriff
BasePay                        166164.52
OvertimePay                      5633.74
OtherPay                        14142.71
Benefits                        48145.63
TotalPay                       185940.97
TotalPayBenefits                234086.6
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74021, dtype: object)
(74022, Id                             74023
EmployeeName        Antonio V Flores
JobTitle                 Manager VII
BasePay                    177609.45
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    56451.14
TotalPay                   177609.45
TotalPayBenefits           234060.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74022, dtype: object)
(74023, Id                           74024
EmployeeName        Linda D Marini
JobTitle                Manager VI
BasePay                  177707.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  56340.56
TotalPay                 177707.24
TotalPayBenefits          234047.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74023, dtype: object)
(74024, Id                           74025
EmployeeName        Jose  Cisneros
JobTitle                 Treasurer
BasePay                  177635.65
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  56343.06
TotalPay                 177635.65
TotalPayBenefits         233978.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74024, dtype: object)
(74025, Id                              74026
EmployeeName        Narda M Gillespie
JobTitle                  Inspector 3
BasePay                     143289.12
OvertimePay                  38115.71
OtherPay                     11271.27
Benefits                     41262.69
TotalPay                     192676.1
TotalPayBenefits            233938.79
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74025, dtype: object)
(74026, Id                          74027
EmployeeName          Edward T Yu
JobTitle             Lieutenant 3
BasePay                 153104.14
OvertimePay                6475.1
OtherPay                 31010.91
Benefits                 43345.41
TotalPay                190590.15
TotalPayBenefits        233935.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74026, dtype: object)
(74027, Id                                      74028
EmployeeName                      Corey B Yeh
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133951.54
OvertimePay                          35803.14
OtherPay                             18930.89
Benefits                             45213.84
TotalPay                            188685.57
TotalPayBenefits                    233899.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74027, dtype: object)
(74028, Id                                      74029
EmployeeName               Tiffaney Y Chaplin
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              4320.65
Benefits                             49488.91
TotalPay                             184371.7
TotalPayBenefits                    233860.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74028, dtype: object)
(74029, Id                            74030
EmployeeName        David W Johnson
JobTitle               Lieutenant 3
BasePay                   163674.03
OvertimePay                 4297.22
OtherPay                   18620.37
Benefits                   47233.08
TotalPay                  186591.62
TotalPayBenefits           233824.7
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74029, dtype: object)
(74030, Id                                 74031
EmployeeName        Mami  Suzuki-Vidalon
JobTitle                     Firefighter
BasePay                         116859.7
OvertimePay                      61008.5
OtherPay                        15270.11
Benefits                        40685.43
TotalPay                       193138.31
TotalPayBenefits               233823.74
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74030, dtype: object)
(74031, Id                                         74032
EmployeeName                   Erica C Arteseros
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135378.0
OvertimePay                             49610.82
OtherPay                                 8122.68
Benefits                                40683.57
TotalPay                                193111.5
TotalPayBenefits                       233795.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74031, dtype: object)
(74032, Id                            74033
EmployeeName        Thomas W Carter
JobTitle                Dep Dir III
BasePay                   174720.86
OvertimePay                     0.0
OtherPay                     2500.0
Benefits                    56521.5
TotalPay                  177220.86
TotalPayBenefits          233742.36
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74032, dtype: object)
(74033, Id                                      74034
EmployeeName           Carolyn Johnson  Stein
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                               3523.3
Benefits                             50135.49
TotalPay                            183574.34
TotalPayBenefits                    233709.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74033, dtype: object)
(74034, Id                                        74035
EmployeeName                 Katharine A Porter
JobTitle            Head Atty, Civil & Criminal
BasePay                               182596.02
OvertimePay                                 0.0
OtherPay                                1455.75
Benefits                               49641.45
TotalPay                              184051.77
TotalPayBenefits                      233693.22
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74034, dtype: object)
(74035, Id                                  74036
EmployeeName        Jacqueline S Selinger
JobTitle                 Police Officer 3
BasePay                         123471.16
OvertimePay                      62821.66
OtherPay                          9840.73
Benefits                         37511.79
TotalPay                        196133.55
TotalPayBenefits                233645.34
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74035, dtype: object)
(74036, Id                                      74037
EmployeeName             Margarita  Gutierrez
JobTitle            Attorney (Civil/Criminal)
BasePay                             179233.73
OvertimePay                               0.0
OtherPay                              4834.94
Benefits                             49549.29
TotalPay                            184068.67
TotalPayBenefits                    233617.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74036, dtype: object)
(74037, Id                              74038
EmployeeName        Shawn A Zimmerman
JobTitle                  Firefighter
BasePay                     116956.69
OvertimePay                  53453.25
OtherPay                     21799.49
Benefits                     41406.59
TotalPay                    192209.43
TotalPayBenefits            233616.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74037, dtype: object)
(74038, Id                              74039
EmployeeName        Justin J Apostoli
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  56301.68
OtherPay                     18992.99
Benefits                     41294.25
TotalPay                     192251.4
TotalPayBenefits            233545.65
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74038, dtype: object)
(74039, Id                               74040
EmployeeName        Fanta Nadia  Sesay
JobTitle                   Dep Dir III
BasePay                      175582.05
OvertimePay                        0.0
OtherPay                        1500.0
Benefits                      56344.22
TotalPay                     177082.05
TotalPayBenefits             233426.27
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74039, dtype: object)
(74040, Id                                         74041
EmployeeName                       John G Murphy
JobTitle            Lieutenant, Fire Suppression
BasePay                                134380.76
OvertimePay                             49428.09
OtherPay                                18861.33
Benefits                                30710.56
TotalPay                               202670.18
TotalPayBenefits                       233380.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74040, dtype: object)
(74041, Id                          74042
EmployeeName         Ronald T Lau
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay               57793.7
OtherPay                 18736.07
Benefits                 40932.02
TotalPay                192423.23
TotalPayBenefits        233355.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74041, dtype: object)
(74042, Id                                      74043
EmployeeName                   Kenneth D Roux
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              3788.95
Benefits                             49510.69
TotalPay                            183839.95
TotalPayBenefits                    233350.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74042, dtype: object)
(74043, Id                                      74044
EmployeeName                  Rafal  Ofierski
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              3656.09
Benefits                             49643.18
TotalPay                             183707.1
TotalPayBenefits                    233350.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74043, dtype: object)
(74044, Id                             74045
EmployeeName        Daniel A Manning
JobTitle                  Sergeant 3
BasePay                    143289.09
OvertimePay                 42902.79
OtherPay                     6320.51
Benefits                    40797.65
TotalPay                   192512.39
TotalPayBenefits           233310.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74044, dtype: object)
(74045, Id                                         74046
EmployeeName                    Lester A Lesavoy
JobTitle            Lieutenant, Fire Suppression
BasePay                                134382.82
OvertimePay                             40067.23
OtherPay                                14429.59
Benefits                                 44426.3
TotalPay                               188879.64
TotalPayBenefits                       233305.94
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74045, dtype: object)
(74046, Id                                      74047
EmployeeName                    Mark D Lipton
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              3656.13
Benefits                             49546.97
TotalPay                            183707.16
TotalPayBenefits                    233254.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74046, dtype: object)
(74047, Id                                      74048
EmployeeName                     Anita L Wood
JobTitle            Attorney (Civil/Criminal)
BasePay                             178710.25
OvertimePay                               0.0
OtherPay                              4824.46
Benefits                             49709.82
TotalPay                            183534.71
TotalPayBenefits                    233244.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74047, dtype: object)
(74048, Id                                      74049
EmployeeName                   Jennifer  Choi
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              3656.12
Benefits                             49487.17
TotalPay                            183707.15
TotalPayBenefits                    233194.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74048, dtype: object)
(74049, Id                                74050
EmployeeName        Celerina V Valiente
JobTitle               Registered Nurse
BasePay                       137749.49
OvertimePay                    16749.14
OtherPay                       40932.37
Benefits                       37741.24
TotalPay                       195431.0
TotalPayBenefits              233172.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74049, dtype: object)
(74050, Id                                      74051
EmployeeName                Richard  Wendland
JobTitle            EMT/Paramedic/Firefighter
BasePay                              135144.3
OvertimePay                           35813.2
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            187850.51
TotalPayBenefits                     233123.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74050, dtype: object)
(74051, Id                                      74052
EmployeeName                 Jean H Alexander
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                              3124.94
Benefits                             49946.37
TotalPay                            183175.98
TotalPayBenefits                    233122.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74051, dtype: object)
(74052, Id                                74053
EmployeeName        Michael G McEachern
JobTitle                    Inspector 3
BasePay                       143289.07
OvertimePay                    41149.96
OtherPay                        7359.93
Benefits                       41278.61
TotalPay                      191798.96
TotalPayBenefits              233077.57
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74052, dtype: object)
(74053, Id                           74054
EmployeeName        Noel J Moroney
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               72452.93
OtherPay                   4939.07
Benefits                  38706.72
TotalPay                 194348.72
TotalPayBenefits         233055.44
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74053, dtype: object)
(74054, Id                                      74055
EmployeeName                  Sherri S Kaiser
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              3390.51
Benefits                             49596.12
TotalPay                            183441.52
TotalPayBenefits                    233037.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74054, dtype: object)
(74055, Id                                74056
EmployeeName        Christopher K Pratt
JobTitle                    Firefighter
BasePay                       116956.72
OvertimePay                     59294.6
OtherPay                       15982.65
Benefits                       40768.62
TotalPay                      192233.97
TotalPayBenefits              233002.59
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74055, dtype: object)
(74056, Id                               74057
EmployeeName        Teresita S Poblete
JobTitle              Registered Nurse
BasePay                      141106.25
OvertimePay                    11196.2
OtherPay                      29787.16
Benefits                      50901.38
TotalPay                     182089.61
TotalPayBenefits             232990.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74056, dtype: object)
(74057, Id                                      74058
EmployeeName                    Sally P Gratz
JobTitle            Attorney (Civil/Criminal)
BasePay                             179590.11
OvertimePay                               0.0
OtherPay                              3514.52
Benefits                             49884.67
TotalPay                            183104.63
TotalPayBenefits                     232989.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74057, dtype: object)
(74058, Id                              74059
EmployeeName        Terri L Ellenberg
JobTitle                Nurse Manager
BasePay                      174580.6
OvertimePay                       0.0
OtherPay                      9998.98
Benefits                     48306.95
TotalPay                    184579.58
TotalPayBenefits            232886.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74058, dtype: object)
(74059, Id                                          74060
EmployeeName                     Richard W Currie
JobTitle            Marine Engineer of Fire Boats
BasePay                                  155174.5
OvertimePay                              25295.78
OtherPay                                 19396.81
Benefits                                  32987.6
TotalPay                                199867.09
TotalPayBenefits                        232854.69
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74059, dtype: object)
(74060, Id                                      74061
EmployeeName                    Stacey  Lucas
JobTitle            Attorney (Civil/Criminal)
BasePay                             179109.71
OvertimePay                               0.0
OtherPay                              4049.05
Benefits                             49690.71
TotalPay                            183158.76
TotalPayBenefits                    232849.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74060, dtype: object)
(74061, Id                             74062
EmployeeName         Michael J Fewer
JobTitle            Police Officer 3
BasePay                    123471.17
OvertimePay                 68161.01
OtherPay                     4146.84
Benefits                     37040.2
TotalPay                   195779.02
TotalPayBenefits           232819.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74061, dtype: object)
(74062, Id                           74063
EmployeeName        Glen  Zorrilla
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               54661.29
OtherPay                  19723.11
Benefits                   41437.8
TotalPay                  191341.1
TotalPayBenefits          232778.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74062, dtype: object)
(74063, Id                          74064
EmployeeName           Ivy V Fine
JobTitle               Manager VI
BasePay                 174496.75
OvertimePay                   0.0
OtherPay                  2019.19
Benefits                 56250.79
TotalPay                176515.94
TotalPayBenefits        232766.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74063, dtype: object)
(74064, Id                          74065
EmployeeName          Albert  Lum
JobTitle              Inspector 3
BasePay                  68991.06
OvertimePay              11381.07
OtherPay                132941.31
Benefits                 19452.79
TotalPay                213313.44
TotalPayBenefits        232766.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74064, dtype: object)
(74065, Id                                      74066
EmployeeName                 Nicholas A Payne
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                          43354.68
OtherPay                             11548.68
Benefits                             43946.06
TotalPay                            188819.03
TotalPayBenefits                    232765.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74065, dtype: object)
(74066, Id                            74067
EmployeeName        Teresa J Gracie
JobTitle               Lieutenant 3
BasePay                   163370.96
OvertimePay                18894.06
OtherPay                    5922.95
Benefits                   44574.25
TotalPay                  188187.97
TotalPayBenefits          232762.22
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74066, dtype: object)
(74067, Id                          74068
EmployeeName        Ollie D Banks
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              54509.69
OtherPay                 19864.84
Benefits                 41406.59
TotalPay                191331.26
TotalPayBenefits        232737.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74067, dtype: object)
(74068, Id                                      74069
EmployeeName                James  Mulholland
JobTitle            EMT/Paramedic/Firefighter
BasePay                             120626.51
OvertimePay                          56873.18
OtherPay                              14724.7
Benefits                              40502.7
TotalPay                            192224.39
TotalPayBenefits                    232727.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74068, dtype: object)
(74069, Id                                      74070
EmployeeName                     Mark D Blake
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              3124.95
Benefits                             49549.09
TotalPay                            183175.96
TotalPayBenefits                    232725.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74069, dtype: object)
(74070, Id                            74071
EmployeeName        Karen L Napitan
JobTitle              Nurse Manager
BasePay                   156556.61
OvertimePay                     0.0
OtherPay                   29752.73
Benefits                   46395.07
TotalPay                  186309.34
TotalPayBenefits          232704.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74070, dtype: object)
(74071, Id                               74072
EmployeeName           Shirley C Banks
JobTitle            Nurse Practitioner
BasePay                      179753.53
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      52685.47
TotalPay                     180003.53
TotalPayBenefits              232689.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74071, dtype: object)
(74072, Id                               74073
EmployeeName        Joseph L Goldenson
JobTitle                  Manager VIII
BasePay                      178403.48
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      54278.94
TotalPay                     178403.48
TotalPayBenefits             232682.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74072, dtype: object)
(74073, Id                          74074
EmployeeName        Chris C Dugan
JobTitle              Firefighter
BasePay                 117187.94
OvertimePay              55310.85
OtherPay                 18723.83
Benefits                 41459.45
TotalPay                191222.62
TotalPayBenefits        232682.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74073, dtype: object)
(74074, Id                                         74075
EmployeeName                          Anson S Wu
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.48
OvertimePay                             46099.93
OtherPay                                 8451.56
Benefits                                43458.19
TotalPay                               189218.97
TotalPayBenefits                       232677.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74074, dtype: object)
(74075, Id                                      74076
EmployeeName                Andrew M Gschwind
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              3124.94
Benefits                             49452.89
TotalPay                            183175.96
TotalPayBenefits                    232628.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74075, dtype: object)
(74076, Id                              74077
EmployeeName          Lisette E Adams
JobTitle            Sheriff's Captain
BasePay                     149290.04
OvertimePay                  25838.84
OtherPay                     12792.75
Benefits                     44656.52
TotalPay                    187921.63
TotalPayBenefits            232578.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74076, dtype: object)
(74077, Id                                      74078
EmployeeName                       Celia  Lee
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              3124.92
Benefits                              49393.1
TotalPay                            183175.97
TotalPayBenefits                    232569.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74077, dtype: object)
(74078, Id                                        74079
EmployeeName                          Hue  Khuu
JobTitle            Electr Maint Tech Asst Sprv
BasePay                               114058.01
OvertimePay                            72416.66
OtherPay                                8622.16
Benefits                               37429.85
TotalPay                              195096.83
TotalPayBenefits                      232526.68
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74078, dtype: object)
(74079, Id                                        74080
EmployeeName                  Anthony  Taormina
JobTitle            Captain, Emergency Med Svcs
BasePay                               150379.01
OvertimePay                            18868.43
OtherPay                               17504.87
Benefits                               45761.93
TotalPay                              186752.31
TotalPayBenefits                      232514.24
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74079, dtype: object)
(74080, Id                                      74081
EmployeeName                  Gregory D Jones
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                            6417.4
OtherPay                             21017.39
Benefits                             49860.39
TotalPay                            182609.28
TotalPayBenefits                    232469.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74080, dtype: object)
(74081, Id                                  74082
EmployeeName        Philip J Katzenberger
JobTitle                       Manager VI
BasePay                          163144.9
OvertimePay                           0.0
OtherPay                         11704.71
Benefits                         57598.37
TotalPay                        174849.61
TotalPayBenefits                232447.98
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74081, dtype: object)
(74082, Id                                      74083
EmployeeName                  Hardy H Golston
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              2456.38
Benefits                             49931.93
TotalPay                            182507.38
TotalPayBenefits                    232439.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74082, dtype: object)
(74083, Id                          74084
EmployeeName        Jacalyn  Fong
JobTitle              Dep Dir III
BasePay                 172577.11
OvertimePay                   0.0
OtherPay                  3634.34
Benefits                 56224.43
TotalPay                176211.45
TotalPayBenefits        232435.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74083, dtype: object)
(74084, Id                             74085
EmployeeName        Roberta J Boomer
JobTitle             Board Scty, MTA
BasePay                    173327.43
OvertimePay                      0.0
OtherPay                     3038.46
Benefits                    56040.06
TotalPay                   176365.89
TotalPayBenefits           232405.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74084, dtype: object)
(74085, Id                          74086
EmployeeName        Byron A Rhett
JobTitle              Dep Dir III
BasePay                 174720.84
OvertimePay                   0.0
OtherPay                   1500.0
Benefits                 56179.32
TotalPay                176220.84
TotalPayBenefits        232400.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74085, dtype: object)
(74086, Id                               74087
EmployeeName        Valerie L Matthews
JobTitle                  Lieutenant 3
BasePay                       163674.0
OvertimePay                   14825.87
OtherPay                       9151.82
Benefits                      44737.82
TotalPay                     187651.69
TotalPayBenefits             232389.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74086, dtype: object)
(74087, Id                          74088
EmployeeName          Sola  Chuop
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              55290.93
OtherPay                 18677.47
Benefits                 41437.81
TotalPay                190925.11
TotalPayBenefits        232362.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74087, dtype: object)
(74088, Id                             74089
EmployeeName        Scott A Heidohrn
JobTitle                Lieutenant 2
BasePay                    159912.09
OvertimePay                 12577.48
OtherPay                    15552.71
Benefits                    44308.66
TotalPay                   188042.28
TotalPayBenefits           232350.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74088, dtype: object)
(74089, Id                                74090
EmployeeName        Jennifer K Dorantes
JobTitle                   Lieutenant 3
BasePay                       163674.06
OvertimePay                    20478.21
OtherPay                        3506.85
Benefits                       44660.87
TotalPay                      187659.12
TotalPayBenefits              232319.99
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74089, dtype: object)
(74090, Id                                         74091
EmployeeName                     Angela N Romero
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.52
OvertimePay                             49926.36
OtherPay                                17227.78
Benefits                                30473.49
TotalPay                               201821.66
TotalPayBenefits                       232295.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74090, dtype: object)
(74091, Id                             74092
EmployeeName        Michael A Teupel
JobTitle                 Firefighter
BasePay                    115757.95
OvertimePay                 67209.59
OtherPay                    10691.58
Benefits                     38635.0
TotalPay                   193659.12
TotalPayBenefits           232294.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74091, dtype: object)
(74092, Id                             74093
EmployeeName          Murray P Daggs
JobTitle            Police Officer 3
BasePay                    118962.05
OvertimePay                 44481.84
OtherPay                    31821.24
Benefits                    36973.11
TotalPay                   195265.13
TotalPayBenefits           232238.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74092, dtype: object)
(74093, Id                               74094
EmployeeName        Nicholas  Shihadeh
JobTitle              Police Officer 3
BasePay                      123471.03
OvertimePay                   61941.53
OtherPay                       8849.96
Benefits                      37974.57
TotalPay                     194262.52
TotalPayBenefits             232237.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74093, dtype: object)
(74094, Id                                      74095
EmployeeName                   Sharon H Bacon
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2658.03
Benefits                             49522.29
TotalPay                            182709.04
TotalPayBenefits                    232231.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74094, dtype: object)
(74095, Id                                        74096
EmployeeName                      Ma Mya  Sabai
JobTitle            Senior Physician Specialist
BasePay                                178790.7
OvertimePay                                 0.0
OtherPay                                 3780.0
Benefits                                49653.3
TotalPay                               182570.7
TotalPayBenefits                       232224.0
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74095, dtype: object)
(74096, Id                                        74097
EmployeeName                      Yee Bun B Lui
JobTitle            Senior Physician Specialist
BasePay                               178104.79
OvertimePay                                 0.0
OtherPay                                 4670.0
Benefits                               49436.76
TotalPay                              182774.79
TotalPayBenefits                      232211.55
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74096, dtype: object)
(74097, Id                               74098
EmployeeName           Colleen M Bales
JobTitle            Nurse Practitioner
BasePay                      179466.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       52740.8
TotalPay                     179466.01
TotalPayBenefits             232206.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74097, dtype: object)
(74098, Id                          74099
EmployeeName           Dennis  Yu
JobTitle              Firefighter
BasePay                 116941.64
OvertimePay               48806.2
OtherPay                 25114.18
Benefits                 41303.33
TotalPay                190862.02
TotalPayBenefits        232165.35
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74098, dtype: object)
(74099, Id                              74100
EmployeeName        Stephen N Paulsen
JobTitle                  Inspector 3
BasePay                     143289.19
OvertimePay                  21636.77
OtherPay                      25765.8
Benefits                     41441.99
TotalPay                    190691.76
TotalPayBenefits            232133.75
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74099, dtype: object)
(74100, Id                            74101
EmployeeName        David  Almaguer
JobTitle                 Sergeant 2
BasePay                   128389.16
OvertimePay                47851.59
OtherPay                   17762.37
Benefits                   38126.23
TotalPay                  194003.12
TotalPayBenefits          232129.35
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74100, dtype: object)
(74101, Id                                      74102
EmployeeName              Sally Anne  Johnson
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             50821.83
TotalPay                            181300.55
TotalPayBenefits                    232122.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74101, dtype: object)
(74102, Id                                        74103
EmployeeName                     Namita  Kansal
JobTitle            Senior Physician Specialist
BasePay                               181893.58
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               50196.23
TotalPay                              181893.58
TotalPayBenefits                      232089.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74102, dtype: object)
(74103, Id                                        74104
EmployeeName                         Emily  Lee
JobTitle            Senior Physician Specialist
BasePay                               182324.34
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               49747.01
TotalPay                              182324.34
TotalPayBenefits                      232071.35
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74103, dtype: object)
(74104, Id                             74105
EmployeeName             Jay K Dowke
JobTitle            Police Officer 3
BasePay                    123471.06
OvertimePay                 44850.97
OtherPay                    25351.96
Benefits                    38322.56
TotalPay                   193673.99
TotalPayBenefits           231996.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74104, dtype: object)
(74105, Id                                        74106
EmployeeName                          Wing W Ng
JobTitle            Electronic Maintenance Tech
BasePay                                105509.2
OvertimePay                            77876.76
OtherPay                               11908.14
Benefits                               36673.71
TotalPay                               195294.1
TotalPayBenefits                      231967.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74105, dtype: object)
(74106, Id                               74107
EmployeeName        Richard J Van Koll
JobTitle                   Inspector 3
BasePay                       68991.02
OvertimePay                    22426.2
OtherPay                     121134.25
Benefits                      19410.99
TotalPay                     212551.47
TotalPayBenefits             231962.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74106, dtype: object)
(74107, Id                                      74108
EmployeeName                   Paul  Zarefsky
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2054.08
Benefits                             49848.16
TotalPay                            182105.09
TotalPayBenefits                    231953.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74107, dtype: object)
(74108, Id                                      74109
EmployeeName                 James R Thompson
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.07
OvertimePay                               0.0
OtherPay                               2591.0
Benefits                             49288.09
TotalPay                            182642.07
TotalPayBenefits                    231930.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74108, dtype: object)
(74109, Id                               74110
EmployeeName        Kenneth  MacDonald
JobTitle              Police Officer 3
BasePay                      122759.11
OvertimePay                   42114.85
OtherPay                      29904.47
Benefits                      37145.11
TotalPay                     194778.43
TotalPayBenefits             231923.54
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74109, dtype: object)
(74110, Id                                      74111
EmployeeName                    Todd  Barrett
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2590.99
Benefits                             49268.35
TotalPay                             182642.0
TotalPayBenefits                    231910.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74110, dtype: object)
(74111, Id                                74112
EmployeeName        Dorothy L Christian
JobTitle             Nurse Practitioner
BasePay                        178848.0
OvertimePay                         0.0
OtherPay                         382.48
Benefits                        52677.7
TotalPay                      179230.48
TotalPayBenefits              231908.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74111, dtype: object)
(74112, Id                           74113
EmployeeName        Bobby C Cheung
JobTitle                Sergeant 3
BasePay                  143289.15
OvertimePay               26915.92
OtherPay                  19309.38
Benefits                  42379.95
TotalPay                 189514.45
TotalPayBenefits          231894.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74112, dtype: object)
(74113, Id                           74114
EmployeeName        Leo M Levenson
JobTitle                 Manager V
BasePay                  175835.01
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  56057.86
TotalPay                 175835.01
TotalPayBenefits         231892.87
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74113, dtype: object)
(74114, Id                                         74115
EmployeeName                  Xenophon O Davidis
JobTitle            Engineer/Architect Principal
BasePay                                182312.56
OvertimePay                                  0.0
OtherPay                                  503.25
Benefits                                49072.84
TotalPay                               182815.81
TotalPayBenefits                       231888.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74114, dtype: object)
(74115, Id                               74116
EmployeeName            Nancy A Orcutt
JobTitle            Nurse Practitioner
BasePay                       178848.0
OvertimePay                      124.2
OtherPay                         250.0
Benefits                      52646.81
TotalPay                      179222.2
TotalPayBenefits             231869.01
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74115, dtype: object)
(74116, Id                                      74117
EmployeeName                    Bassam  Totah
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2389.81
Benefits                             49402.21
TotalPay                            182440.82
TotalPayBenefits                    231843.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74116, dtype: object)
(74117, Id                          74118
EmployeeName        John S Miller
JobTitle              Inspector 3
BasePay                 143289.08
OvertimePay              19585.02
OtherPay                  27599.0
Benefits                 41339.56
TotalPay                 190473.1
TotalPayBenefits        231812.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74117, dtype: object)
(74118, Id                                  74119
EmployeeName        Evette M Geer-Stevens
JobTitle               Transit Supervisor
BasePay                           91787.7
OvertimePay                     102939.11
OtherPay                          4241.68
Benefits                         32840.08
TotalPay                        198968.49
TotalPayBenefits                231808.57
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74118, dtype: object)
(74119, Id                                      74120
EmployeeName                      Teresa  Tan
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                              1517.68
Benefits                             50239.62
TotalPay                            181568.73
TotalPayBenefits                    231808.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74119, dtype: object)
(74120, Id                                      74121
EmployeeName              Constance M Menefee
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1920.0
Benefits                             49820.25
TotalPay                             181971.0
TotalPayBenefits                    231791.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74120, dtype: object)
(74121, Id                            74122
EmployeeName        Bernard M Corry
JobTitle                 Sergeant 3
BasePay                   143289.05
OvertimePay                42926.67
OtherPay                    4765.75
Benefits                   40797.64
TotalPay                  190981.47
TotalPayBenefits          231779.11
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74121, dtype: object)
(74122, Id                             74123
EmployeeName        Matthew J Hanley
JobTitle                 Inspector 3
BasePay                     76951.61
OvertimePay                  3808.19
OtherPay                   128815.91
Benefits                    22175.81
TotalPay                   209575.71
TotalPayBenefits           231751.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74122, dtype: object)
(74123, Id                               74124
EmployeeName          Michael V Amodeo
JobTitle            Nurse Practitioner
BasePay                       178848.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      52646.81
TotalPay                      179098.0
TotalPayBenefits             231744.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74123, dtype: object)
(74124, Id                               74125
EmployeeName         Meredith  Florian
JobTitle            Nurse Practitioner
BasePay                       178848.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      52646.81
TotalPay                      179098.0
TotalPayBenefits             231744.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74124, dtype: object)
(74125, Id                                      74126
EmployeeName              Antonio J Hernandez
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2564.18
Benefits                             49106.77
TotalPay                            182615.19
TotalPayBenefits                    231721.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74125, dtype: object)
(74126, Id                           74127
EmployeeName        Elena O Tinloy
JobTitle                 Manager V
BasePay                  174512.09
OvertimePay                    0.0
OtherPay                     13.26
Benefits                  57188.21
TotalPay                 174525.35
TotalPayBenefits         231713.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74126, dtype: object)
(74127, Id                                          74128
EmployeeName                   Manuel  Bonilla Jr
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.14
OvertimePay                               45345.4
OtherPay                                 11817.78
Benefits                                 39278.95
TotalPay                                192433.32
TotalPayBenefits                        231712.27
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74127, dtype: object)
(74128, Id                               74129
EmployeeName        Michael L Robinson
JobTitle              Police Officer 3
BasePay                       128556.0
OvertimePay                   53466.55
OtherPay                      11233.12
Benefits                      38443.79
TotalPay                     193255.67
TotalPayBenefits             231699.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74128, dtype: object)
(74129, Id                                      74130
EmployeeName                     Piera C Wong
JobTitle            Clinical Nurse Specialist
BasePay                              178767.0
OvertimePay                               0.0
OtherPay                               283.11
Benefits                             52636.03
TotalPay                            179050.11
TotalPayBenefits                    231686.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74129, dtype: object)
(74130, Id                                          74131
EmployeeName                          Steve J Lin
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                   88881.3
OvertimePay                              83423.37
OtherPay                                  26679.9
Benefits                                 32631.75
TotalPay                                198984.57
TotalPayBenefits                        231616.32
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74130, dtype: object)
(74131, Id                            74132
EmployeeName         Janice J Hayes
JobTitle            Lieut,Fire Prev
BasePay                   143084.28
OvertimePay                38570.95
OtherPay                    9300.56
Benefits                    40594.1
TotalPay                  190955.79
TotalPayBenefits          231549.89
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74131, dtype: object)
(74132, Id                                      74133
EmployeeName                   David  Stevens
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                              2188.18
Benefits                             49264.05
TotalPay                             182239.2
TotalPayBenefits                    231503.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74132, dtype: object)
(74133, Id                                      74134
EmployeeName                 Scott W Eberhart
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.28
OvertimePay                          33518.03
OtherPay                             17441.23
Benefits                             45382.08
TotalPay                            186103.54
TotalPayBenefits                    231485.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74133, dtype: object)
(74134, Id                                      74135
EmployeeName              Brian A Bringardner
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              2161.88
Benefits                             49258.55
TotalPay                            182212.89
TotalPayBenefits                    231471.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74134, dtype: object)
(74135, Id                           74136
EmployeeName        Jignesh  Desai
JobTitle                  Engineer
BasePay                  182325.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  49128.64
TotalPay                 182325.24
TotalPayBenefits         231453.88
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74135, dtype: object)
(74136, Id                          74137
EmployeeName         Arnold P Woo
JobTitle              Firefighter
BasePay                 134679.08
OvertimePay              47366.71
OtherPay                  8750.52
Benefits                 40656.96
TotalPay                190796.31
TotalPayBenefits        231453.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74136, dtype: object)
(74137, Id                          74138
EmployeeName         Kevin K Kone
JobTitle               Manager VI
BasePay                 175396.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 55996.37
TotalPay                175396.12
TotalPayBenefits        231392.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74137, dtype: object)
(74138, Id                            74139
EmployeeName        Daniel G Romero
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                53472.69
OtherPay                   19499.81
Benefits                   41458.42
TotalPay                  189929.21
TotalPayBenefits          231387.63
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74138, dtype: object)
(74139, Id                            74140
EmployeeName        Daniel J Molloy
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                50871.21
OtherPay                   21457.49
Benefits                   42067.18
TotalPay                  189285.41
TotalPayBenefits          231352.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74139, dtype: object)
(74140, Id                                   74141
EmployeeName          Rigoberto  Hernandez
JobTitle            Track Maint Wrk Sprv 1
BasePay                            85128.0
OvertimePay                      101794.36
OtherPay                          11909.51
Benefits                          32509.24
TotalPay                         198831.87
TotalPayBenefits                 231341.11
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74140, dtype: object)
(74141, Id                             74142
EmployeeName        John P Jaimerena
JobTitle                Lieutenant 3
BasePay                    162919.01
OvertimePay                  6571.93
OtherPay                    17296.97
Benefits                    44528.57
TotalPay                   186787.91
TotalPayBenefits           231316.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74141, dtype: object)
(74142, Id                                      74143
EmployeeName                        Art  Ruiz
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.24
OvertimePay                          34729.98
OtherPay                             16261.05
Benefits                             45161.07
TotalPay                            186135.27
TotalPayBenefits                    231296.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74142, dtype: object)
(74143, Id                                      74144
EmployeeName                  Sallie P Gibson
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              1919.95
Benefits                              49304.4
TotalPay                            181970.96
TotalPayBenefits                    231275.36
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74143, dtype: object)
(74144, Id                              74145
EmployeeName        Matthew G O'Leary
JobTitle                   Sergeant 3
BasePay                     143289.15
OvertimePay                  22363.45
OtherPay                     24144.09
Benefits                     41442.82
TotalPay                    189796.69
TotalPayBenefits            231239.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74144, dtype: object)
(74145, Id                              74146
EmployeeName        Martien J Verhaeg
JobTitle                  Firefighter
BasePay                     116956.74
OvertimePay                  50649.32
OtherPay                     21933.51
Benefits                     41697.41
TotalPay                    189539.57
TotalPayBenefits            231236.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74145, dtype: object)
(74146, Id                                         74147
EmployeeName                    Timothy J Farmer
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             32823.13
OtherPay                                16987.97
Benefits                                45434.28
TotalPay                               185714.05
TotalPayBenefits                       231148.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74146, dtype: object)
(74147, Id                                      74148
EmployeeName                Steven A Weinkauf
JobTitle            Attorney (Civil/Criminal)
BasePay                             179380.61
OvertimePay                               0.0
OtherPay                              2094.75
Benefits                             49666.92
TotalPay                            181475.36
TotalPayBenefits                    231142.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74147, dtype: object)
(74148, Id                            74149
EmployeeName        Robert L Steger
JobTitle                Inspector 3
BasePay                    143289.1
OvertimePay                41427.85
OtherPay                     5611.8
Benefits                   40813.35
TotalPay                  190328.75
TotalPayBenefits           231142.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74148, dtype: object)
(74149, Id                              74150
EmployeeName        Ramon  Barreto Jr
JobTitle                  Firefighter
BasePay                     116374.66
OvertimePay                  51024.21
OtherPay                     22284.98
Benefits                     41457.89
TotalPay                    189683.85
TotalPayBenefits            231141.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74149, dtype: object)
(74150, Id                           74151
EmployeeName        James D Quirke
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               53674.88
OtherPay                  19058.53
Benefits                  41406.59
TotalPay                 189690.13
TotalPayBenefits         231096.72
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74150, dtype: object)
(74151, Id                                 74152
EmployeeName        Margaret A Stevenson
JobTitle                     Dep Dir III
BasePay                         175079.5
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        55935.62
TotalPay                        175079.5
TotalPayBenefits               231015.12
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74151, dtype: object)
(74152, Id                          74153
EmployeeName           Kit M Chan
JobTitle            Nurse Manager
BasePay                 181263.03
OvertimePay                   0.0
OtherPay                    910.0
Benefits                 48815.64
TotalPay                182173.03
TotalPayBenefits        230988.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74152, dtype: object)
(74153, Id                                      74154
EmployeeName                  Ines V Fraenkel
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49680.73
TotalPay                            181301.01
TotalPayBenefits                    230981.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74153, dtype: object)
(74154, Id                                      74155
EmployeeName                    Lela W Harris
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49680.73
TotalPay                             181301.0
TotalPayBenefits                    230981.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74154, dtype: object)
(74155, Id                                      74156
EmployeeName                  Loretta A Wider
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49680.65
TotalPay                            181300.52
TotalPayBenefits                    230981.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74155, dtype: object)
(74156, Id                                      74157
EmployeeName                    Linda J Sakai
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49680.65
TotalPay                            181300.52
TotalPayBenefits                    230981.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74156, dtype: object)
(74157, Id                               74158
EmployeeName        Matthew D Sullivan
JobTitle                    Sergeant 3
BasePay                      127557.02
OvertimePay                   31936.57
OtherPay                      33581.28
Benefits                      37904.48
TotalPay                     193074.87
TotalPayBenefits             230979.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74157, dtype: object)
(74158, Id                                 74159
EmployeeName          Raymond P Macaulay
JobTitle            Sheriff's Lieutenant
BasePay                         131410.2
OvertimePay                     33827.38
OtherPay                        21294.38
Benefits                        44434.35
TotalPay                       186531.96
TotalPayBenefits               230966.31
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74158, dtype: object)
(74159, Id                             74160
EmployeeName        Melanie L Nutter
JobTitle                Dept Head II
BasePay                    173634.45
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    57296.49
TotalPay                   173634.45
TotalPayBenefits           230930.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74159, dtype: object)
(74160, Id                                      74161
EmployeeName                 Scarlet R Gordon
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49562.17
TotalPay                            181301.01
TotalPayBenefits                    230863.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74160, dtype: object)
(74161, Id                                      74162
EmployeeName                   Michael J Berg
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49562.17
TotalPay                             181301.0
TotalPayBenefits                    230863.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74161, dtype: object)
(74162, Id                             74163
EmployeeName        Grace  Fortaleza
JobTitle            Registered Nurse
BasePay                    140512.81
OvertimePay                  9692.82
OtherPay                    29821.34
Benefits                    50834.28
TotalPay                   180026.97
TotalPayBenefits           230861.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74162, dtype: object)
(74163, Id                                      74164
EmployeeName                      Erik  Brown
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.66
OvertimePay                          33705.07
OtherPay                             18314.94
Benefits                             44877.83
TotalPay                            185935.67
TotalPayBenefits                     230813.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74163, dtype: object)
(74164, Id                             74165
EmployeeName           Sean F Rogers
JobTitle            Police Officer 3
BasePay                    125564.09
OvertimePay                 61786.44
OtherPay                     5881.04
Benefits                    37564.25
TotalPay                   193231.57
TotalPayBenefits           230795.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74164, dtype: object)
(74165, Id                                      74166
EmployeeName                      John  Drake
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                          36026.16
OtherPay                             16100.56
Benefits                             44748.01
TotalPay                            186042.39
TotalPayBenefits                     230790.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74165, dtype: object)
(74166, Id                                         74167
EmployeeName                   Dominic  Ottoboni
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                              24651.3
OtherPay                                24762.65
Benefits                                45469.21
TotalPay                               185316.94
TotalPayBenefits                       230786.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74166, dtype: object)
(74167, Id                              74168
EmployeeName        Charles R Ricardo
JobTitle                   Manager VI
BasePay                      174854.4
OvertimePay                       0.0
OtherPay                          0.0
Benefits                      55892.7
TotalPay                     174854.4
TotalPayBenefits             230747.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74167, dtype: object)
(74168, Id                                      74169
EmployeeName                 Sandra  Gartzman
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49404.87
TotalPay                            181301.04
TotalPayBenefits                    230705.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74168, dtype: object)
(74169, Id                                      74170
EmployeeName                     Gale J Leung
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49404.87
TotalPay                            181301.03
TotalPayBenefits                     230705.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74169, dtype: object)
(74170, Id                                      74171
EmployeeName                    Stephen  Olmo
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49404.87
TotalPay                            181301.02
TotalPayBenefits                    230705.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74170, dtype: object)
(74171, Id                                      74172
EmployeeName                  Jeffrey  Eckber
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49404.87
TotalPay                             181301.0
TotalPayBenefits                    230705.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74171, dtype: object)
(74172, Id                                      74173
EmployeeName                  Hilary  Winslow
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49404.87
TotalPay                             181301.0
TotalPayBenefits                    230705.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74172, dtype: object)
(74173, Id                                      74174
EmployeeName                  Nancy  Tavernit
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49404.79
TotalPay                            181300.52
TotalPayBenefits                    230705.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74173, dtype: object)
(74174, Id                                      74175
EmployeeName                   Adrianne  Tong
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49404.79
TotalPay                             181300.5
TotalPayBenefits                    230705.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74174, dtype: object)
(74175, Id                                 74176
EmployeeName           Matthew S Freeman
JobTitle            Chief Deputy Sheriff
BasePay                        166164.52
OvertimePay                      3075.32
OtherPay                         14027.6
Benefits                        47367.17
TotalPay                       183267.44
TotalPayBenefits               230634.61
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74175, dtype: object)
(74176, Id                                      74177
EmployeeName                   Diana M Garcia
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                              1384.09
Benefits                             49192.81
TotalPay                            181435.09
TotalPayBenefits                     230627.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74176, dtype: object)
(74177, Id                                      74178
EmployeeName         Curtis F Christy-Cirillo
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                              1383.59
Benefits                             49192.73
TotalPay                            181434.62
TotalPayBenefits                    230627.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74177, dtype: object)
(74178, Id                                    74179
EmployeeName               Marta M McGovern
JobTitle            Fire Safety Inspector 2
BasePay                           139644.01
OvertimePay                         40192.3
OtherPay                            8378.64
Benefits                           42403.14
TotalPay                          188214.95
TotalPayBenefits                  230618.09
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74178, dtype: object)
(74179, Id                                           74180
EmployeeName                         Micki A Jones
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                  160860.01
OvertimePay                               14073.74
OtherPay                                    9651.6
Benefits                                  46019.06
TotalPay                                 184585.35
TotalPayBenefits                         230604.41
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74179, dtype: object)
(74180, Id                          74181
EmployeeName        Brian Y Kyono
JobTitle              Firefighter
BasePay                 126233.99
OvertimePay              43096.47
OtherPay                  17807.6
Benefits                 43459.55
TotalPay                187138.06
TotalPayBenefits        230597.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74180, dtype: object)
(74181, Id                           74182
EmployeeName        Nora M Brennan
JobTitle             Nurse Manager
BasePay                   162810.0
OvertimePay                    0.0
OtherPay                  18773.86
Benefits                  48983.59
TotalPay                 181583.86
TotalPayBenefits         230567.45
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74181, dtype: object)
(74182, Id                                      74183
EmployeeName                 Connie J Brandon
JobTitle            Attorney (Civil/Criminal)
BasePay                              179925.4
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49382.63
TotalPay                             181175.4
TotalPayBenefits                    230558.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74182, dtype: object)
(74183, Id                                      74184
EmployeeName                 J Michael  Swart
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1384.1
Benefits                             49096.61
TotalPay                             181435.1
TotalPayBenefits                    230531.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74183, dtype: object)
(74184, Id                               74185
EmployeeName         Cynthia D Johnson
JobTitle            Nurse Practitioner
BasePay                      173674.12
OvertimePay                        0.0
OtherPay                       4407.51
Benefits                      52431.07
TotalPay                     178081.63
TotalPayBenefits              230512.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74184, dtype: object)
(74185, Id                              74186
EmployeeName        Stephen A Maguire
JobTitle                  Firefighter
BasePay                     115893.43
OvertimePay                  54844.25
OtherPay                     18696.78
Benefits                     41076.69
TotalPay                    189434.46
TotalPayBenefits            230511.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74185, dtype: object)
(74186, Id                           74187
EmployeeName        Peter A Dailey
JobTitle               Dep Dir III
BasePay                  174720.83
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  55768.48
TotalPay                 174720.83
TotalPayBenefits         230489.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74186, dtype: object)
(74187, Id                                      74188
EmployeeName             Dorothy K Bustamante
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49164.89
TotalPay                            181301.01
TotalPayBenefits                     230465.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74187, dtype: object)
(74188, Id                                      74189
EmployeeName                    Peter  Kearns
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49164.89
TotalPay                             181301.0
TotalPayBenefits                    230465.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74188, dtype: object)
(74189, Id                                      74190
EmployeeName           Gregory Alton  Feldman
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49164.89
TotalPay                             181301.0
TotalPayBenefits                    230465.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74189, dtype: object)
(74190, Id                                      74191
EmployeeName                  Adena S Gilbert
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49164.89
TotalPay                             181301.0
TotalPayBenefits                    230465.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74190, dtype: object)
(74191, Id                                      74192
EmployeeName                    Andrew G Yick
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49164.89
TotalPay                             181301.0
TotalPayBenefits                    230465.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74191, dtype: object)
(74192, Id                                      74193
EmployeeName                James F Hannawalt
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49164.81
TotalPay                            181300.53
TotalPayBenefits                    230465.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74192, dtype: object)
(74193, Id                                      74194
EmployeeName                Kathleen E Murphy
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49164.81
TotalPay                            181300.51
TotalPayBenefits                    230465.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74193, dtype: object)
(74194, Id                                      74195
EmployeeName                    Robert  Stone
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49164.81
TotalPay                            181300.51
TotalPayBenefits                    230465.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74194, dtype: object)
(74195, Id                                74196
EmployeeName        Ulysses R Vinson Jr
JobTitle                    Dep Dir III
BasePay                       174614.54
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       55846.49
TotalPay                      174614.54
TotalPayBenefits              230461.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74195, dtype: object)
(74196, Id                          74197
EmployeeName        Ana M Alvarez
JobTitle              Dep Dir III
BasePay                 172389.77
OvertimePay                   0.0
OtherPay                    750.0
Benefits                 57307.87
TotalPay                173139.77
TotalPayBenefits        230447.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74196, dtype: object)
(74197, Id                            74198
EmployeeName        David O Elliott
JobTitle                 Sergeant 3
BasePay                   143289.22
OvertimePay                19518.71
OtherPay                   24869.11
Benefits                   42732.59
TotalPay                  187677.04
TotalPayBenefits          230409.63
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74197, dtype: object)
(74198, Id                                   74199
EmployeeName        Charles H Cloniger III
JobTitle                Nurse Practitioner
BasePay                          175701.95
OvertimePay                            0.0
OtherPay                           2844.86
Benefits                          51840.65
TotalPay                         178546.81
TotalPayBenefits                 230387.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74198, dtype: object)
(74199, Id                                      74200
EmployeeName                 Ashley L Worsham
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                            181301.03
TotalPayBenefits                    230369.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74199, dtype: object)
(74200, Id                                      74201
EmployeeName                 Rebecca D Wagner
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                            181301.01
TotalPayBenefits                     230369.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74200, dtype: object)
(74201, Id                                      74202
EmployeeName                      Sujung  Kim
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                            181301.01
TotalPayBenefits                     230369.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74201, dtype: object)
(74202, Id                                      74203
EmployeeName                  Sandy  Feinland
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                            181301.01
TotalPayBenefits                     230369.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74202, dtype: object)
(74203, Id                                      74204
EmployeeName                Gregory H Goldman
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                             181301.0
TotalPayBenefits                    230369.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74203, dtype: object)
(74204, Id                                      74205
EmployeeName             Katherine K Hathaway
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49068.69
TotalPay                             181301.0
TotalPayBenefits                    230369.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74204, dtype: object)
(74205, Id                                      74206
EmployeeName                  Carol R.G. Wong
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49068.61
TotalPay                            181300.52
TotalPayBenefits                    230369.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74205, dtype: object)
(74206, Id                                      74207
EmployeeName                   Erik  Rapoport
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49068.61
TotalPay                             181300.5
TotalPayBenefits                    230369.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74206, dtype: object)
(74207, Id                                      74208
EmployeeName                   John I Kennedy
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49068.61
TotalPay                             181300.5
TotalPayBenefits                    230369.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74207, dtype: object)
(74208, Id                               74209
EmployeeName              Dawn M Nance
JobTitle            Nurse Practitioner
BasePay                      164108.99
OvertimePay                   16592.01
OtherPay                        490.81
Benefits                      49175.11
TotalPay                     181191.81
TotalPayBenefits             230366.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74208, dtype: object)
(74209, Id                                      74210
EmployeeName                   Simin  O'Brien
JobTitle            Attorney (Civil/Criminal)
BasePay                             180013.68
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49059.27
TotalPay                            181263.68
TotalPayBenefits                    230322.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74209, dtype: object)
(74210, Id                                      74211
EmployeeName                  Lorenzo  Donati
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49018.48
TotalPay                             181300.5
TotalPayBenefits                    230318.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74210, dtype: object)
(74211, Id                                      74212
EmployeeName                 Sharon M Reardon
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.06
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                              49008.9
TotalPay                            181301.06
TotalPayBenefits                    230309.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74211, dtype: object)
(74212, Id                                      74213
EmployeeName                  Archibald  Wong
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49008.89
TotalPay                            181301.05
TotalPayBenefits                    230309.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74212, dtype: object)
(74213, Id                                      74214
EmployeeName             Paul Adam  Spraggins
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.04
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49008.89
TotalPay                            181301.04
TotalPayBenefits                    230309.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74213, dtype: object)
(74214, Id                                      74215
EmployeeName                     John W Alden
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                              49008.9
TotalPay                            181301.03
TotalPayBenefits                    230309.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74214, dtype: object)
(74215, Id                                      74216
EmployeeName                      Phong  Wang
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49008.89
TotalPay                            181301.03
TotalPayBenefits                    230309.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74215, dtype: object)
(74216, Id                                      74217
EmployeeName               Lawrence  De Souza
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49008.89
TotalPay                             181301.0
TotalPayBenefits                    230309.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74216, dtype: object)
(74217, Id                                      74218
EmployeeName               Christopher C Hite
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49008.89
TotalPay                             181301.0
TotalPayBenefits                    230309.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74217, dtype: object)
(74218, Id                                      74219
EmployeeName             Christine B Van Aken
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.82
TotalPay                            181300.52
TotalPayBenefits                    230309.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74218, dtype: object)
(74219, Id                                      74220
EmployeeName                    Jill L Cannon
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                            181300.53
TotalPayBenefits                    230309.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74219, dtype: object)
(74220, Id                                      74221
EmployeeName                   Victoria  Wong
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                            181300.52
TotalPayBenefits                    230309.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74220, dtype: object)
(74221, Id                                      74222
EmployeeName                  Marlena A Byrne
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                            181300.52
TotalPayBenefits                    230309.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74221, dtype: object)
(74222, Id                                      74223
EmployeeName                     Peter  Keith
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                            181300.51
TotalPayBenefits                    230309.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74222, dtype: object)
(74223, Id                                      74224
EmployeeName                   Mario  Vazquez
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                             181300.5
TotalPayBenefits                    230309.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74223, dtype: object)
(74224, Id                                      74225
EmployeeName            David  Serrano-Sewell
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49008.81
TotalPay                             181300.5
TotalPayBenefits                    230309.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74224, dtype: object)
(74225, Id                              74226
EmployeeName        Lauifi F Seumaala
JobTitle                  Firefighter
BasePay                     115862.88
OvertimePay                  51354.77
OtherPay                     21633.45
Benefits                     41447.06
TotalPay                     188851.1
TotalPayBenefits            230298.16
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74225, dtype: object)
(74226, Id                                      74227
EmployeeName                       Tyler H Vu
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48996.68
TotalPay                            181301.01
TotalPayBenefits                    230297.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74226, dtype: object)
(74227, Id                                      74228
EmployeeName                Warren  Metlitzky
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             48996.59
TotalPay                             181300.5
TotalPayBenefits                    230297.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74227, dtype: object)
(74228, Id                          74229
EmployeeName          Frank S Lee
JobTitle              Inspector 3
BasePay                 143289.16
OvertimePay              21545.84
OtherPay                  23799.0
Benefits                 41580.19
TotalPay                 188634.0
TotalPayBenefits        230214.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74228, dtype: object)
(74229, Id                             74230
EmployeeName           Aaron A Foltz
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                  52300.3
OtherPay                     20222.2
Benefits                    36571.11
TotalPay                    193590.5
TotalPayBenefits           230161.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74229, dtype: object)
(74230, Id                                      74231
EmployeeName                   Leslie A Cogan
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48833.15
TotalPay                            181301.03
TotalPayBenefits                    230134.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74230, dtype: object)
(74231, Id                             74232
EmployeeName        Anthony J Holder
JobTitle                  Sergeant 2
BasePay                     140724.0
OvertimePay                 31558.12
OtherPay                    17461.43
Benefits                    40388.11
TotalPay                   189743.55
TotalPayBenefits           230131.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74231, dtype: object)
(74232, Id                           74233
EmployeeName        Juan S Daniels
JobTitle              Lieutenant 3
BasePay                  162919.02
OvertimePay               12092.14
OtherPay                  10622.78
Benefits                  44494.09
TotalPay                 185633.94
TotalPayBenefits         230128.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74232, dtype: object)
(74233, Id                                       74234
EmployeeName                    Carolyn C Foon
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              181970.68
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              48118.63
TotalPay                             181970.68
TotalPayBenefits                     230089.31
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74233, dtype: object)
(74234, Id                                         74235
EmployeeName                    Brent W Stuckert
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             30673.17
OtherPay                                17922.26
Benefits                                45582.96
TotalPay                               184498.37
TotalPayBenefits                       230081.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74234, dtype: object)
(74235, Id                                74236
EmployeeName        Patricia M McCarthy
JobTitle             Nurse Practitioner
BasePay                       173153.86
OvertimePay                         0.0
OtherPay                        4570.14
Benefits                       52328.83
TotalPay                       177724.0
TotalPayBenefits              230052.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74235, dtype: object)
(74236, Id                                          74237
EmployeeName                          Pascal  Szu
JobTitle            Senior Comm Systems Technican
BasePay                                  127116.0
OvertimePay                              52494.22
OtherPay                                 12093.67
Benefits                                 38269.08
TotalPay                                191703.89
TotalPayBenefits                        229972.97
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74236, dtype: object)
(74237, Id                               74238
EmployeeName              Mark  Buhler
JobTitle            Nurse Practitioner
BasePay                      160441.56
OvertimePay                    3568.68
OtherPay                      15519.91
Benefits                      50437.16
TotalPay                     179530.15
TotalPayBenefits             229967.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74237, dtype: object)
(74238, Id                          74239
EmployeeName         Julia D Ford
JobTitle              Inspector 3
BasePay                 143289.04
OvertimePay              27619.22
OtherPay                 18223.71
Benefits                 40795.92
TotalPay                189131.97
TotalPayBenefits        229927.89
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74238, dtype: object)
(74239, Id                             74240
EmployeeName        Ricardo E Duarte
JobTitle               Nurse Manager
BasePay                    181242.07
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     48636.1
TotalPay                   181242.07
TotalPayBenefits           229878.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74239, dtype: object)
(74240, Id                               74241
EmployeeName        Elizabeth J Dayrit
JobTitle                 Nurse Manager
BasePay                      164344.02
OvertimePay                        0.0
OtherPay                      17182.06
Benefits                      48326.24
TotalPay                     181526.08
TotalPayBenefits             229852.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74240, dtype: object)
(74241, Id                                      74242
EmployeeName                  Ronnie M Wagner
JobTitle            Attorney (Civil/Criminal)
BasePay                             179380.63
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49215.16
TotalPay                            180630.63
TotalPayBenefits                    229845.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74241, dtype: object)
(74242, Id                                    74243
EmployeeName                   Allen  Nance
JobTitle            Chf Prob Ofc, Juv Court
BasePay                           186753.64
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           43073.78
TotalPay                          186753.64
TotalPayBenefits                  229827.42
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74242, dtype: object)
(74243, Id                                        74244
EmployeeName              Clementino L Avila II
JobTitle            Captain, Emergency Med Svcs
BasePay                               153966.86
OvertimePay                            22270.65
OtherPay                                 9238.0
Benefits                               44348.86
TotalPay                              185475.51
TotalPayBenefits                      229824.37
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74243, dtype: object)
(74244, Id                                      74245
EmployeeName                Susan B Christian
JobTitle            Attorney (Civil/Criminal)
BasePay                              179764.8
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48746.11
TotalPay                             181014.8
TotalPayBenefits                    229760.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74244, dtype: object)
(74245, Id                               74246
EmployeeName             Gail L Norman
JobTitle            Nurse Practitioner
BasePay                      162751.68
OvertimePay                   10575.63
OtherPay                       7041.75
Benefits                      49372.83
TotalPay                     180369.06
TotalPayBenefits             229741.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74245, dtype: object)
(74246, Id                           74247
EmployeeName        Steven J Balma
JobTitle              Lieutenant 3
BasePay                  163674.08
OvertimePay                 2908.4
OtherPay                  16342.07
Benefits                  46808.11
TotalPay                 182924.55
TotalPayBenefits         229732.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74246, dtype: object)
(74247, Id                                         74248
EmployeeName              Walter P Villavicencio
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             30087.31
OtherPay                                18269.71
Benefits                                45470.56
TotalPay                               184259.96
TotalPayBenefits                       229730.52
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74247, dtype: object)
(74248, Id                                      74249
EmployeeName                    Jerry  Threet
JobTitle            Attorney (Civil/Criminal)
BasePay                             179423.01
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             49053.58
TotalPay                            180672.51
TotalPayBenefits                    229726.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74248, dtype: object)
(74249, Id                                       74250
EmployeeName                    Nelson E Aceto
JobTitle            Wire Rope Cable Maint Sprv
BasePay                               95716.51
OvertimePay                           81313.49
OtherPay                              16661.79
Benefits                              35986.83
TotalPay                             193691.79
TotalPayBenefits                     229678.62
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74249, dtype: object)
(74250, Id                                      74251
EmployeeName                   George A Cerna
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                           32305.0
OtherPay                             16927.51
Benefits                             45279.81
TotalPay                            184376.76
TotalPayBenefits                    229656.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74250, dtype: object)
(74251, Id                          74252
EmployeeName        Carl A Bonner
JobTitle              Inspector 3
BasePay                  143289.1
OvertimePay              20183.21
OtherPay                 25383.23
Benefits                 40797.66
TotalPay                188855.54
TotalPayBenefits         229653.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74251, dtype: object)
(74252, Id                              74253
EmployeeName             Terry  Saltz
JobTitle            Project Manager 3
BasePay                      180927.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     48720.12
TotalPay                     180927.5
TotalPayBenefits            229647.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74252, dtype: object)
(74253, Id                             74254
EmployeeName           Steven  Landi
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 53594.91
OtherPay                     8816.75
Benefits                    38675.99
TotalPay                   190967.66
TotalPayBenefits           229643.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74253, dtype: object)
(74254, Id                           74255
EmployeeName        Robert J Vigil
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               54180.73
OtherPay                  18612.42
Benefits                  40953.72
TotalPay                 188686.61
TotalPayBenefits         229640.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74254, dtype: object)
(74255, Id                          74256
EmployeeName        Carl M Jepsen
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              54386.41
OtherPay                 17011.83
Benefits                  41262.6
TotalPay                188354.96
TotalPayBenefits        229617.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74255, dtype: object)
(74256, Id                                      74257
EmployeeName                   Sarah B Wilner
JobTitle            Attorney (Civil/Criminal)
BasePay                              179109.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             49238.04
TotalPay                             180359.0
TotalPayBenefits                    229597.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74256, dtype: object)
(74257, Id                          74258
EmployeeName          Victor  Hui
JobTitle               Sergeant 3
BasePay                 133013.07
OvertimePay              25105.98
OtherPay                 32469.94
Benefits                 38991.24
TotalPay                190588.99
TotalPayBenefits        229580.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74257, dtype: object)
(74258, Id                                  74259
EmployeeName           Steven J Spagnuolo
JobTitle            Assistant Inspector 3
BasePay                          143289.1
OvertimePay                      24419.51
OtherPay                          21033.0
Benefits                         40797.67
TotalPay                        188741.61
TotalPayBenefits                229539.28
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74258, dtype: object)
(74259, Id                                         74260
EmployeeName                  Michael B Charlton
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             31155.24
OtherPay                                16987.95
Benefits                                45470.57
TotalPay                               184046.11
TotalPayBenefits                       229516.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74259, dtype: object)
(74260, Id                            74261
EmployeeName        Timothy J Kiely
JobTitle                 Sergeant 3
BasePay                   142695.08
OvertimePay                32494.04
OtherPay                    13578.6
Benefits                   40708.12
TotalPay                  188767.72
TotalPayBenefits          229475.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74260, dtype: object)
(74261, Id                                74262
EmployeeName        Ferdinand T Meneses
JobTitle                    Firefighter
BasePay                       116956.74
OvertimePay                    49058.22
OtherPay                        21610.3
Benefits                       41848.62
TotalPay                      187625.26
TotalPayBenefits              229473.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74261, dtype: object)
(74262, Id                          74263
EmployeeName        Harald S Sims
JobTitle            Nurse Manager
BasePay                  174179.5
OvertimePay                   0.0
OtherPay                 11840.73
Benefits                 43377.08
TotalPay                186020.23
TotalPayBenefits        229397.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74262, dtype: object)
(74263, Id                             74264
EmployeeName        Herbert G Carney
JobTitle            Police Officer 3
BasePay                    123471.21
OvertimePay                 52090.16
OtherPay                    15610.47
Benefits                    38222.68
TotalPay                   191171.84
TotalPayBenefits           229394.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74263, dtype: object)
(74264, Id                                       74265
EmployeeName                    Clifton C Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              160933.47
OvertimePay                                0.0
OtherPay                              19777.91
Benefits                              48640.34
TotalPay                             180711.38
TotalPayBenefits                     229351.72
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74264, dtype: object)
(74265, Id                            74266
EmployeeName        Richard J Jones
JobTitle                 Sergeant 2
BasePay                   140724.01
OvertimePay                31974.44
OtherPay                    16340.8
Benefits                   40302.09
TotalPay                  189039.25
TotalPayBenefits          229341.34
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74265, dtype: object)
(74266, Id                                      74267
EmployeeName                 Thorin  Shattuck
JobTitle            Captain, Fire Suppression
BasePay                             155174.51
OvertimePay                           4485.96
OtherPay                             20112.32
Benefits                             49531.06
TotalPay                            179772.79
TotalPayBenefits                    229303.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74266, dtype: object)
(74267, Id                              74268
EmployeeName        Nicholas J Donati
JobTitle             Police Officer 3
BasePay                     123471.18
OvertimePay                  53993.55
OtherPay                     14718.22
Benefits                     37055.23
TotalPay                    192182.95
TotalPayBenefits            229238.18
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74267, dtype: object)
(74268, Id                                         74269
EmployeeName                         Julie C Mau
JobTitle            Lieutenant, Fire Suppression
BasePay                                 142488.2
OvertimePay                             27242.55
OtherPay                                14410.39
Benefits                                45085.46
TotalPay                               184141.14
TotalPayBenefits                        229226.6
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74268, dtype: object)
(74269, Id                             74270
EmployeeName                Ana  Lee
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                  57800.1
OtherPay                    10444.34
Benefits                    37491.67
TotalPay                   191715.58
TotalPayBenefits           229207.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74269, dtype: object)
(74270, Id                           74271
EmployeeName        Kevin A Edison
JobTitle                Sergeant 3
BasePay                  143289.09
OvertimePay               32016.14
OtherPay                  13114.55
Benefits                  40786.78
TotalPay                 188419.78
TotalPayBenefits         229206.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74270, dtype: object)
(74271, Id                              74272
EmployeeName        Edward E Delcarlo
JobTitle                 Lieutenant 3
BasePay                     163674.07
OvertimePay                  11090.47
OtherPay                       8881.2
Benefits                     45472.93
TotalPay                    183645.74
TotalPayBenefits            229118.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74271, dtype: object)
(74272, Id                             74273
EmployeeName           James D Jones
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 59575.83
OtherPay                     8304.72
Benefits                    37762.91
TotalPay                    191351.6
TotalPayBenefits           229114.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74272, dtype: object)
(74273, Id                               74274
EmployeeName        Charles G Farrugia
JobTitle                   Firefighter
BasePay                      116956.68
OvertimePay                   48594.18
OtherPay                       21707.8
Benefits                      41848.62
TotalPay                     187258.66
TotalPayBenefits             229107.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74273, dtype: object)
(74274, Id                                74275
EmployeeName            Eric S Bellfort
JobTitle            Physician Assistant
BasePay                       162976.21
OvertimePay                    31334.94
OtherPay                         1375.0
Benefits                       33417.17
TotalPay                      195686.15
TotalPayBenefits              229103.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74274, dtype: object)
(74275, Id                                      74276
EmployeeName                  Mikael  Bayless
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.64
OvertimePay                          35053.54
OtherPay                             15489.31
Benefits                             44640.29
TotalPay                            184458.49
TotalPayBenefits                    229098.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74275, dtype: object)
(74276, Id                            74277
EmployeeName        Eric M Stiveson
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                54959.32
OtherPay                   16392.22
Benefits                   40777.86
TotalPay                  188308.24
TotalPayBenefits           229086.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74276, dtype: object)
(74277, Id                                 74278
EmployeeName        Christopher M Servat
JobTitle                      Sergeant 2
BasePay                        126887.53
OvertimePay                      53156.9
OtherPay                        11222.24
Benefits                        37753.22
TotalPay                       191266.67
TotalPayBenefits               229019.89
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74277, dtype: object)
(74278, Id                                 74279
EmployeeName            Joseph  Engelman
JobTitle            Physician Specialist
BasePay                        181056.71
OvertimePay                          0.0
OtherPay                           558.9
Benefits                        47388.43
TotalPay                       181615.61
TotalPayBenefits               229004.04
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74278, dtype: object)
(74279, Id                            74280
EmployeeName        Paul R Gallegos
JobTitle                Firefighter
BasePay                   117173.82
OvertimePay                50400.07
OtherPay                   20501.25
Benefits                   40907.35
TotalPay                  188075.14
TotalPayBenefits          228982.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74279, dtype: object)
(74280, Id                            74281
EmployeeName        Keith G Almirol
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                50332.97
OtherPay                   21252.39
Benefits                   41482.64
TotalPay                  187478.81
TotalPayBenefits          228961.45
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74280, dtype: object)
(74281, Id                                      74282
EmployeeName                    Eric R Storey
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134651.79
OvertimePay                          42724.47
OtherPay                              8079.11
Benefits                             43494.34
TotalPay                            185455.37
TotalPayBenefits                    228949.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74281, dtype: object)
(74282, Id                               74283
EmployeeName        Douglas B Manguiat
JobTitle                   Firefighter
BasePay                       116956.7
OvertimePay                   52068.45
OtherPay                      18599.12
Benefits                      41314.23
TotalPay                     187624.27
TotalPayBenefits              228938.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74282, dtype: object)
(74283, Id                                         74284
EmployeeName                    Neal J Cavellini
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             29859.16
OtherPay                                17834.68
Benefits                                45338.63
TotalPay                               183596.79
TotalPayBenefits                       228935.42
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74283, dtype: object)
(74284, Id                                 74285
EmployeeName           Linette  Martinez
JobTitle            Physician Specialist
BasePay                        175160.91
OvertimePay                          0.0
OtherPay                          7159.4
Benefits                        46614.93
TotalPay                       182320.31
TotalPayBenefits               228935.24
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74284, dtype: object)
(74285, Id                             74286
EmployeeName        Martin S Bandvik
JobTitle                  Sergeant 3
BasePay                    143289.21
OvertimePay                  36697.1
OtherPay                      8156.1
Benefits                    40791.74
TotalPay                   188142.41
TotalPayBenefits           228934.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74285, dtype: object)
(74286, Id                          74287
EmployeeName        Cary A Rogers
JobTitle               Pharmacist
BasePay                  139169.7
OvertimePay               9763.23
OtherPay                 32318.03
Benefits                 47647.39
TotalPay                181250.96
TotalPayBenefits        228898.35
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74286, dtype: object)
(74287, Id                                 74288
EmployeeName        Michele L Grindstaff
JobTitle                     Firefighter
BasePay                        115893.47
OvertimePay                      55943.4
OtherPay                         16692.9
Benefits                        40356.25
TotalPay                       188529.77
TotalPayBenefits               228886.02
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74287, dtype: object)
(74288, Id                               74289
EmployeeName              Mary A Angel
JobTitle            Nurse Practitioner
BasePay                      177381.85
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      51208.58
TotalPay                     177631.85
TotalPayBenefits             228840.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74288, dtype: object)
(74289, Id                          74290
EmployeeName         Daniel  Lehr
JobTitle                Manager V
BasePay                 160592.83
OvertimePay                   0.0
OtherPay                 14516.48
Benefits                 53723.94
TotalPay                175109.31
TotalPayBenefits        228833.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74289, dtype: object)
(74290, Id                             74291
EmployeeName          John R Torrise
JobTitle            Police Officer 3
BasePay                    123471.13
OvertimePay                 16791.51
OtherPay                    51539.79
Benefits                    37025.18
TotalPay                   191802.43
TotalPayBenefits           228827.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74290, dtype: object)
(74291, Id                                      74292
EmployeeName             Kimberly K Hiroshima
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.29
OvertimePay                          31471.18
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            183508.48
TotalPayBenefits                    228781.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74291, dtype: object)
(74292, Id                                         74293
EmployeeName                     Terence G White
JobTitle            Lieutenant, Fire Suppression
BasePay                                135778.38
OvertimePay                             28880.42
OtherPay                                18564.13
Benefits                                 45511.3
TotalPay                               183222.93
TotalPayBenefits                       228734.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74292, dtype: object)
(74293, Id                             74294
EmployeeName          Vicente  Mayor
JobTitle            Train Controller
BasePay                     105867.0
OvertimePay                 64715.34
OtherPay                     8559.84
Benefits                    49587.91
TotalPay                   179142.18
TotalPayBenefits           228730.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74293, dtype: object)
(74294, Id                               74295
EmployeeName        Kevin G Labanowski
JobTitle                    Sergeant 3
BasePay                      143289.08
OvertimePay                   33054.82
OtherPay                      11567.48
Benefits                      40797.65
TotalPay                     187911.38
TotalPayBenefits             228709.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74294, dtype: object)
(74295, Id                             74296
EmployeeName        John M Robertson
JobTitle                  Sergeant 3
BasePay                    143289.09
OvertimePay                 29930.18
OtherPay                    14107.69
Benefits                    41321.56
TotalPay                   187326.96
TotalPayBenefits           228648.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74295, dtype: object)
(74296, Id                               74297
EmployeeName        Marilynn E Mendoza
JobTitle              Registered Nurse
BasePay                      134360.79
OvertimePay                    1689.26
OtherPay                       54033.0
Benefits                      38556.33
TotalPay                     190083.05
TotalPayBenefits             228639.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74296, dtype: object)
(74297, Id                                 74298
EmployeeName        Pauline O Buencamino
JobTitle                Registered Nurse
BasePay                         142425.0
OvertimePay                       5697.0
OtherPay                         30420.5
Benefits                        50054.61
TotalPay                        178542.5
TotalPayBenefits               228597.11
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74297, dtype: object)
(74298, Id                           74299
EmployeeName        Kevin M Mannix
JobTitle                Sergeant 3
BasePay                   143289.1
OvertimePay               37683.88
OtherPay                   6674.66
Benefits                  40945.57
TotalPay                 187647.64
TotalPayBenefits         228593.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74298, dtype: object)
(74299, Id                             74300
EmployeeName         Erna J Facultad
JobTitle            Registered Nurse
BasePay                    142425.02
OvertimePay                  3916.69
OtherPay                    31736.33
Benefits                    50493.86
TotalPay                   178078.04
TotalPayBenefits            228571.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74299, dtype: object)
(74300, Id                          74301
EmployeeName        Andre L Brown
JobTitle              Firefighter
BasePay                  127392.1
OvertimePay              42336.76
OtherPay                  15321.9
Benefits                 43502.71
TotalPay                185050.76
TotalPayBenefits        228553.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74300, dtype: object)
(74301, Id                             74302
EmployeeName        Jason S Robinson
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 54459.83
OtherPay                    13582.63
Benefits                    37035.87
TotalPay                   191513.49
TotalPayBenefits           228549.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74301, dtype: object)
(74302, Id                             74303
EmployeeName        Carmelo  Dangelo
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 47647.46
OtherPay                    13443.85
Benefits                    38899.58
TotalPay                   189647.31
TotalPayBenefits           228546.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74302, dtype: object)
(74303, Id                             74304
EmployeeName        Rafael J Centeno
JobTitle                  Manager VI
BasePay                     166528.1
OvertimePay                      0.0
OtherPay                      6451.0
Benefits                    55542.16
TotalPay                    172979.1
TotalPayBenefits           228521.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74303, dtype: object)
(74304, Id                                          74305
EmployeeName                        John M Marian
JobTitle            Senior Comm Systems Technican
BasePay                                  127116.0
OvertimePay                              52656.11
OtherPay                                 10445.89
Benefits                                 38269.08
TotalPay                                 190218.0
TotalPayBenefits                        228487.08
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74304, dtype: object)
(74305, Id                            74306
EmployeeName        James B Garrity
JobTitle                Inspector 3
BasePay                   143289.05
OvertimePay                15333.87
OtherPay                    28517.3
Benefits                    41337.8
TotalPay                  187140.22
TotalPayBenefits          228478.02
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74305, dtype: object)
(74306, Id                             74307
EmployeeName        Patricia A Green
JobTitle               Nurse Manager
BasePay                    180097.86
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    48347.93
TotalPay                   180097.86
TotalPayBenefits           228445.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74306, dtype: object)
(74307, Id                              74308
EmployeeName        Grace P Cabauatan
JobTitle             Registered Nurse
BasePay                     141820.36
OvertimePay                   8664.19
OtherPay                     32143.44
Benefits                     45762.91
TotalPay                    182627.99
TotalPayBenefits             228390.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74307, dtype: object)
(74308, Id                            74309
EmployeeName        Michael  Caplan
JobTitle               Lieutenant 3
BasePay                    163674.0
OvertimePay                 6899.82
OtherPay                   11853.47
Benefits                   45914.03
TotalPay                  182427.29
TotalPayBenefits          228341.32
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74308, dtype: object)
(74309, Id                                74310
EmployeeName        Lawrence  Henderson
JobTitle               Police Officer 3
BasePay                       121291.65
OvertimePay                    50826.24
OtherPay                       19217.73
Benefits                       37001.08
TotalPay                      191335.62
TotalPayBenefits               228336.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74309, dtype: object)
(74310, Id                              74311
EmployeeName        Timothy M Ramirez
JobTitle                  Manager VII
BasePay                     183034.87
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     45284.28
TotalPay                    183034.87
TotalPayBenefits            228319.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74310, dtype: object)
(74311, Id                                      74312
EmployeeName                   Jonathan C Low
JobTitle            Captain, Fire Suppression
BasePay                             155174.49
OvertimePay                           4174.43
OtherPay                             19396.82
Benefits                             49572.48
TotalPay                            178745.74
TotalPayBenefits                    228318.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74311, dtype: object)
(74312, Id                          74313
EmployeeName          Amen Y Chow
JobTitle               Pharmacist
BasePay                 146048.71
OvertimePay              16101.18
OtherPay                 20276.68
Benefits                 45825.57
TotalPay                182426.57
TotalPayBenefits        228252.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74312, dtype: object)
(74313, Id                                      74314
EmployeeName                  Richard B Faust
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.18
OvertimePay                           40687.2
OtherPay                              8687.74
Benefits                             43730.75
TotalPay                            184519.12
TotalPayBenefits                    228249.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74313, dtype: object)
(74314, Id                           74315
EmployeeName        Zihong  Gorman
JobTitle                Manager VI
BasePay                  172690.64
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  55499.46
TotalPay                 172690.64
TotalPayBenefits          228190.1
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74314, dtype: object)
(74315, Id                             74316
EmployeeName        Susan M Reynolds
JobTitle                 Dep Dir III
BasePay                    172779.95
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    55396.65
TotalPay                   172779.95
TotalPayBenefits            228176.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74315, dtype: object)
(74316, Id                                         74317
EmployeeName                    Janeen M Pirosko
JobTitle            Lieutenant, Fire Suppression
BasePay                                135377.77
OvertimePay                              23709.4
OtherPay                                26003.21
Benefits                                42992.95
TotalPay                               185090.38
TotalPayBenefits                       228083.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74316, dtype: object)
(74317, Id                              74318
EmployeeName        Charles F Schuler
JobTitle                   Manager VI
BasePay                     171228.65
OvertimePay                       0.0
OtherPay                          0.0
Benefits                      56811.8
TotalPay                    171228.65
TotalPayBenefits            228040.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74317, dtype: object)
(74318, Id                                      74319
EmployeeName            Nicolette S Divecchio
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.24
OvertimePay                          36464.33
OtherPay                             12021.68
Benefits                             44408.23
TotalPay                            183630.25
TotalPayBenefits                    228038.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74318, dtype: object)
(74319, Id                                         74320
EmployeeName                  Richard F Slattery
JobTitle            Lieutenant, Fire Suppression
BasePay                                 154548.0
OvertimePay                             12337.03
OtherPay                                 15454.8
Benefits                                45697.23
TotalPay                               182339.83
TotalPayBenefits                       228037.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74319, dtype: object)
(74320, Id                             74321
EmployeeName        Margarita M Hill
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                   3798.0
OtherPay                    33841.12
Benefits                     47952.6
TotalPay                   180064.12
TotalPayBenefits           228016.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74320, dtype: object)
(74321, Id                          74322
EmployeeName          Joe M Naldo
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              49846.51
OtherPay                 19802.76
Benefits                 41406.58
TotalPay                186605.97
TotalPayBenefits        228012.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74321, dtype: object)
(74322, Id                             74323
EmployeeName        Davide F Puglisi
JobTitle             Manager VI, MTA
BasePay                    163184.62
OvertimePay                      0.0
OtherPay                      7992.0
Benefits                     56832.1
TotalPay                   171176.62
TotalPayBenefits           228008.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74322, dtype: object)
(74323, Id                              74324
EmployeeName        Vincent P Repetto
JobTitle                  Inspector 3
BasePay                      74298.06
OvertimePay                  23351.85
OtherPay                    109498.76
Benefits                     20847.07
TotalPay                    207148.67
TotalPayBenefits            227995.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74323, dtype: object)
(74324, Id                             74325
EmployeeName           Robert  Royer
JobTitle            Police Officer 3
BasePay                    123471.13
OvertimePay                 52194.18
OtherPay                    15240.46
Benefits                    37025.18
TotalPay                   190905.77
TotalPayBenefits           227930.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74324, dtype: object)
(74325, Id                            74326
EmployeeName        Troy M Carrasco
JobTitle                 Sergeant 2
BasePay                    139945.5
OvertimePay                31105.08
OtherPay                   16652.93
Benefits                   40164.22
TotalPay                  187703.51
TotalPayBenefits          227867.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74325, dtype: object)
(74326, Id                          74327
EmployeeName        John M Powell
JobTitle               Manager VI
BasePay                 170825.05
OvertimePay                   0.0
OtherPay                   1500.0
Benefits                 55541.94
TotalPay                172325.05
TotalPayBenefits        227866.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74326, dtype: object)
(74327, Id                                        74328
EmployeeName                      Rita J Gurley
JobTitle            Senior Physician Specialist
BasePay                                180803.3
OvertimePay                                 0.0
OtherPay                                  48.04
Benefits                               46998.08
TotalPay                              180851.34
TotalPayBenefits                      227849.42
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74327, dtype: object)
(74328, Id                          74329
EmployeeName        Rowland  Wing
JobTitle               Sergeant 3
BasePay                  71422.09
OvertimePay              12450.92
OtherPay                124078.66
Benefits                 19841.32
TotalPay                207951.67
TotalPayBenefits        227792.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74328, dtype: object)
(74329, Id                             74330
EmployeeName        Carl E Drake III
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 53938.77
OtherPay                    16195.01
Benefits                    40690.48
TotalPay                   187090.49
TotalPayBenefits           227780.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74329, dtype: object)
(74330, Id                             74331
EmployeeName            Rey C Jacala
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  8782.87
OtherPay                     31634.1
Benefits                    44916.74
TotalPay                   182841.97
TotalPayBenefits           227758.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74330, dtype: object)
(74331, Id                                      74332
EmployeeName                    Marc  Pearson
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.23
OvertimePay                          39671.33
OtherPay                              9313.06
Benefits                             43613.09
TotalPay                            184128.62
TotalPayBenefits                    227741.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74331, dtype: object)
(74332, Id                                         74333
EmployeeName                     Heather A Piper
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135903.0
OvertimePay                             28429.45
OtherPay                                17900.61
Benefits                                45469.22
TotalPay                               182233.06
TotalPayBenefits                       227702.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74332, dtype: object)
(74333, Id                                         74334
EmployeeName                        Dat C Truong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.94
OvertimePay                             39833.99
OtherPay                                 8154.28
Benefits                                43799.22
TotalPay                               183891.21
TotalPayBenefits                       227690.43
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74333, dtype: object)
(74334, Id                             74335
EmployeeName            Kevin K Chin
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 52686.59
OtherPay                    14030.39
Benefits                    37490.36
TotalPay                    190188.0
TotalPayBenefits           227678.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74334, dtype: object)
(74335, Id                                74336
EmployeeName        Donaldson  Shumpert
JobTitle               Train Controller
BasePay                        106651.2
OvertimePay                    71796.23
OtherPay                       12118.97
Benefits                       37070.72
TotalPay                       190566.4
TotalPayBenefits              227637.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74335, dtype: object)
(74336, Id                                      74337
EmployeeName                  Garreth  Miller
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                          30007.15
OtherPay                             17020.63
Benefits                              45298.9
TotalPay                            182172.04
TotalPayBenefits                    227470.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74336, dtype: object)
(74337, Id                                      74338
EmployeeName               Jennifer K Johnson
JobTitle            Attorney (Civil/Criminal)
BasePay                             177727.71
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48481.77
TotalPay                            178977.71
TotalPayBenefits                    227459.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74337, dtype: object)
(74338, Id                              74339
EmployeeName        Anthony S Pedroza
JobTitle                   Sergeant 3
BasePay                      143289.1
OvertimePay                  34603.35
OtherPay                      8395.33
Benefits                     41123.99
TotalPay                    186287.78
TotalPayBenefits            227411.77
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74338, dtype: object)
(74339, Id                             74340
EmployeeName           Michael S Lee
JobTitle            Police Officer 3
BasePay                    123471.17
OvertimePay                 59985.02
OtherPay                     6849.53
Benefits                    37055.22
TotalPay                   190305.72
TotalPayBenefits           227360.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74339, dtype: object)
(74340, Id                                      74341
EmployeeName                   Tara M Steeley
JobTitle            Attorney (Civil/Criminal)
BasePay                             177539.03
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             48551.71
TotalPay                            178788.53
TotalPayBenefits                    227340.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74340, dtype: object)
(74341, Id                             74342
EmployeeName        Kathryn L Miller
JobTitle                 Manager VII
BasePay                    179093.13
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    48233.49
TotalPay                   179093.13
TotalPayBenefits           227326.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74341, dtype: object)
(74342, Id                           74343
EmployeeName        Ronald E Banta
JobTitle                Sergeant 3
BasePay                  143289.01
OvertimePay               19600.15
OtherPay                  23089.87
Benefits                  41346.34
TotalPay                 185979.03
TotalPayBenefits         227325.37
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74342, dtype: object)
(74343, Id                                74344
EmployeeName        Claudio N Rivieccio
JobTitle                    Firefighter
BasePay                       116956.72
OvertimePay                    48275.01
OtherPay                       20308.24
Benefits                       41762.17
TotalPay                      185539.97
TotalPayBenefits              227302.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74343, dtype: object)
(74344, Id                                        74345
EmployeeName                    Beth M Goudreau
JobTitle            Captain, Emergency Med Svcs
BasePay                               154692.41
OvertimePay                              196.32
OtherPay                               25458.88
Benefits                               46908.89
TotalPay                              180347.61
TotalPayBenefits                       227256.5
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74344, dtype: object)
(74345, Id                               74346
EmployeeName        Douglas I Calderon
JobTitle                   Firefighter
BasePay                       116956.7
OvertimePay                   53861.78
OtherPay                      15691.68
Benefits                      40620.57
TotalPay                     186510.16
TotalPayBenefits             227130.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74345, dtype: object)
(74346, Id                                      74347
EmployeeName                       Paul J Jug
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          29794.18
OtherPay                             16893.01
Benefits                              45273.0
TotalPay                            181831.44
TotalPayBenefits                    227104.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74346, dtype: object)
(74347, Id                                         74348
EmployeeName                      Ruben  Montero
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             39233.74
OtherPay                                 8154.26
Benefits                                43799.21
TotalPay                               183290.95
TotalPayBenefits                       227090.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74347, dtype: object)
(74348, Id                            74349
EmployeeName        Armando D Limon
JobTitle                Firefighter
BasePay                   115934.49
OvertimePay                55453.06
OtherPay                   16173.93
Benefits                   39441.09
TotalPay                  187561.48
TotalPayBenefits          227002.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74348, dtype: object)
(74349, Id                           74350
EmployeeName        Imelda M Prado
JobTitle             Nurse Manager
BasePay                   168999.5
OvertimePay                    0.0
OtherPay                  10621.84
Benefits                  47334.59
TotalPay                 179621.34
TotalPayBenefits         226955.93
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74349, dtype: object)
(74350, Id                          74351
EmployeeName        John R Updike
JobTitle              Dep Dir III
BasePay                 170515.11
OvertimePay                   0.0
OtherPay                  1162.56
Benefits                 55275.56
TotalPay                171677.67
TotalPayBenefits        226953.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74350, dtype: object)
(74351, Id                            74352
EmployeeName        Gillian P Otway
JobTitle              Nurse Manager
BasePay                   163143.78
OvertimePay                     0.0
OtherPay                    16334.8
Benefits                   47463.83
TotalPay                  179478.58
TotalPayBenefits          226942.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74351, dtype: object)
(74352, Id                           74353
EmployeeName        Molly A Pengel
JobTitle              Lieutenant 3
BasePay                  160596.03
OvertimePay               14747.76
OtherPay                   7107.18
Benefits                  44489.11
TotalPay                 182450.97
TotalPayBenefits         226940.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74352, dtype: object)
(74353, Id                                         74354
EmployeeName                       Matthew J Lee
JobTitle            Lieutenant, Fire Suppression
BasePay                                 143252.1
OvertimePay                              8693.35
OtherPay                                 26462.4
Benefits                                48520.52
TotalPay                               178407.85
TotalPayBenefits                       226928.37
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74353, dtype: object)
(74354, Id                            74355
EmployeeName        Michael F Digre
JobTitle                Firefighter
BasePay                   115893.47
OvertimePay                54776.66
OtherPay                   15762.98
Benefits                   40478.33
TotalPay                  186433.11
TotalPayBenefits          226911.44
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74354, dtype: object)
(74355, Id                               74356
EmployeeName        Luisito O Baybayan
JobTitle              Registered Nurse
BasePay                       142425.0
OvertimePay                    7859.75
OtherPay                      32411.83
Benefits                      44153.87
TotalPay                     182696.58
TotalPayBenefits             226850.45
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74355, dtype: object)
(74356, Id                               74357
EmployeeName        Nicholas B Apodaca
JobTitle              Police Officer 2
BasePay                       121068.0
OvertimePay                   37686.64
OtherPay                      29963.07
Benefits                      38129.79
TotalPay                     188717.71
TotalPayBenefits              226847.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74356, dtype: object)
(74357, Id                          74358
EmployeeName          Ja Han  Kim
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              27605.81
OtherPay                 14664.72
Benefits                 41176.13
TotalPay                185559.65
TotalPayBenefits        226735.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74357, dtype: object)
(74358, Id                          74359
EmployeeName        Gregory L Mar
JobTitle             Lieutenant 3
BasePay                 163674.17
OvertimePay               6284.63
OtherPay                 12111.53
Benefits                 44651.19
TotalPay                182070.33
TotalPayBenefits        226721.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74358, dtype: object)
(74359, Id                                      74360
EmployeeName                   Rudy  Guajardo
JobTitle            Captain, Fire Suppression
BasePay                             148278.03
OvertimePay                          23115.12
OtherPay                              9757.12
Benefits                             45563.63
TotalPay                            181150.27
TotalPayBenefits                     226713.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74359, dtype: object)
(74360, Id                                         74361
EmployeeName                  Anthony D Martinez
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             27608.19
OtherPay                                17765.25
Benefits                                 45434.3
TotalPay                               181276.41
TotalPayBenefits                       226710.71
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74360, dtype: object)
(74361, Id                                           74362
EmployeeName                          Jake  Peters
JobTitle            Transmission Line Supervisor 1
BasePay                                  117786.06
OvertimePay                               56223.77
OtherPay                                  15929.77
Benefits                                  36677.41
TotalPay                                  189939.6
TotalPayBenefits                         226617.01
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74361, dtype: object)
(74362, Id                                      74363
EmployeeName                    Rema M Breall
JobTitle            Attorney (Civil/Criminal)
BasePay                             177050.02
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48301.66
TotalPay                            178300.02
TotalPayBenefits                    226601.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74362, dtype: object)
(74363, Id                             74364
EmployeeName            Stanley  Lee
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 54491.01
OtherPay                    11542.25
Benefits                    37025.18
TotalPay                   189504.41
TotalPayBenefits           226529.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74363, dtype: object)
(74364, Id                          74365
EmployeeName        Gerald  Darcy
JobTitle               Sergeant 3
BasePay                  68991.04
OvertimePay              10792.38
OtherPay                127307.84
Benefits                 19403.62
TotalPay                207091.26
TotalPayBenefits        226494.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74364, dtype: object)
(74365, Id                               74366
EmployeeName        Jonathan E Okamura
JobTitle                   Firefighter
BasePay                      116956.72
OvertimePay                   49067.19
OtherPay                      19090.43
Benefits                      41363.27
TotalPay                     185114.34
TotalPayBenefits             226477.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74365, dtype: object)
(74366, Id                                         74367
EmployeeName                           Anne  Tam
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             24268.47
OtherPay                                20435.21
Benefits                                45869.77
TotalPay                               180606.63
TotalPayBenefits                        226476.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74366, dtype: object)
(74367, Id                             74368
EmployeeName        Lewis S Harrison
JobTitle                  Manager VI
BasePay                    169648.64
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                    55320.75
TotalPay                   171148.64
TotalPayBenefits           226469.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74367, dtype: object)
(74368, Id                             74369
EmployeeName            Louis W Wong
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 63459.38
OtherPay                     2452.45
Benefits                     37040.2
TotalPay                   189382.98
TotalPayBenefits           226423.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74368, dtype: object)
(74369, Id                                      74370
EmployeeName                 James W Perry II
JobTitle            EMT/Paramedic/Firefighter
BasePay                             154575.08
OvertimePay                          18101.24
OtherPay                               9274.5
Benefits                             44465.97
TotalPay                            181950.82
TotalPayBenefits                    226416.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74369, dtype: object)
(74370, Id                             74371
EmployeeName          John M Barcojo
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 44765.98
OtherPay                     23943.0
Benefits                    36637.14
TotalPay                   189776.98
TotalPayBenefits           226414.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74370, dtype: object)
(74371, Id                             74372
EmployeeName          John J Norment
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 59047.09
OtherPay                      9713.8
Benefits                    36571.11
TotalPay                   189828.89
TotalPayBenefits            226400.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74371, dtype: object)
(74372, Id                                      74373
EmployeeName                   Manohar P Raju
JobTitle            Attorney (Civil/Criminal)
BasePay                              172162.7
OvertimePay                               0.0
OtherPay                               5780.0
Benefits                             48445.37
TotalPay                             177942.7
TotalPayBenefits                    226388.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74372, dtype: object)
(74373, Id                                  74374
EmployeeName        Francis L Vallesteros
JobTitle                 Registered Nurse
BasePay                         141567.84
OvertimePay                      19538.83
OtherPay                         27479.58
Benefits                         37783.05
TotalPay                        188586.25
TotalPayBenefits                 226369.3
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74373, dtype: object)
(74374, Id                          74375
EmployeeName         Perry P Choy
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              47832.28
OtherPay                 20092.97
Benefits                 41437.81
TotalPay                184881.97
TotalPayBenefits        226319.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74374, dtype: object)
(74375, Id                              74376
EmployeeName        John J Applegarth
JobTitle                   Manager VI
BasePay                     171174.15
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     55122.58
TotalPay                    171174.15
TotalPayBenefits            226296.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74375, dtype: object)
(74376, Id                            74377
EmployeeName        Michael  Lawson
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                49672.24
OtherPay                   18333.27
Benefits                   41330.34
TotalPay                  184962.21
TotalPayBenefits          226292.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74376, dtype: object)
(74377, Id                                       74378
EmployeeName        Sheryl Calixta P Ronquillo
JobTitle                         Nurse Manager
BasePay                               165208.0
OvertimePay                                0.0
OtherPay                              14703.48
Benefits                              46378.21
TotalPay                             179911.48
TotalPayBenefits                     226289.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74377, dtype: object)
(74378, Id                           74379
EmployeeName        Duane J Rivera
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               49603.74
OtherPay                  19705.79
Benefits                  41066.05
TotalPay                 185202.99
TotalPayBenefits         226269.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74378, dtype: object)
(74379, Id                             74380
EmployeeName         Michael B Ellis
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 44121.89
OtherPay                    24454.87
Benefits                     36600.6
TotalPay                   189644.77
TotalPayBenefits           226245.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74379, dtype: object)
(74380, Id                                         74381
EmployeeName                     Joseph A Birrer
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48276.83
TotalPay                                177920.0
TotalPayBenefits                       226196.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74380, dtype: object)
(74381, Id                                         74382
EmployeeName                       Amir  Koleini
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48263.76
TotalPay                                177920.0
TotalPayBenefits                       226183.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74381, dtype: object)
(74382, Id                                         74383
EmployeeName                   Brian J Henderson
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48231.54
TotalPay                                177920.0
TotalPayBenefits                       226151.54
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74382, dtype: object)
(74383, Id                                      74384
EmployeeName           Roberto Manuel  Fortes
JobTitle            Attorney (Civil/Criminal)
BasePay                              174705.5
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             50193.11
TotalPay                             175955.5
TotalPayBenefits                    226148.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74383, dtype: object)
(74384, Id                              74385
EmployeeName        Carlos  Gutierrez
JobTitle                   Sergeant 3
BasePay                     143289.13
OvertimePay                  16694.28
OtherPay                     24925.92
Benefits                     41228.84
TotalPay                    184909.33
TotalPayBenefits            226138.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74384, dtype: object)
(74385, Id                          74386
EmployeeName        Eric  Mahoney
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              31545.56
OtherPay                 10504.09
Benefits                 40797.67
TotalPay                185338.77
TotalPayBenefits        226136.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74385, dtype: object)
(74386, Id                                      74387
EmployeeName                   Tina M Seibert
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.65
OvertimePay                          30844.09
OtherPay                             16500.41
Benefits                             44845.57
TotalPay                            181260.15
TotalPayBenefits                    226105.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74386, dtype: object)
(74387, Id                             74388
EmployeeName        Donald W Peoples
JobTitle                 Firefighter
BasePay                    115893.45
OvertimePay                  54889.7
OtherPay                    15028.91
Benefits                    40272.39
TotalPay                   185812.06
TotalPayBenefits           226084.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74387, dtype: object)
(74388, Id                                         74389
EmployeeName                        Arthur K Lee
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74388, dtype: object)
(74389, Id                                         74390
EmployeeName                         Elson S Hao
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74389, dtype: object)
(74390, Id                                         74391
EmployeeName                       Norman W Chan
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74390, dtype: object)
(74391, Id                                         74392
EmployeeName                    Benjamin K Leung
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74391, dtype: object)
(74392, Id                                         74393
EmployeeName                   Margaret H Divine
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74392, dtype: object)
(74393, Id                                         74394
EmployeeName                       Ricardo  Olea
JobTitle            Engineer/Architect Principal
BasePay                                 177920.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                48143.66
TotalPay                                177920.0
TotalPayBenefits                       226063.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74393, dtype: object)
(74394, Id                             74395
EmployeeName           Joo Han P Kim
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 57299.84
OtherPay                     2198.11
Benefits                     37997.5
TotalPay                   188053.95
TotalPayBenefits           226051.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74394, dtype: object)
(74395, Id                                      74396
EmployeeName                 Jeffrey A Covitz
JobTitle            EMT/Paramedic/Firefighter
BasePay                              154575.1
OvertimePay                          17503.86
OtherPay                               9274.5
Benefits                             44533.14
TotalPay                            181353.46
TotalPayBenefits                     225886.6
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74395, dtype: object)
(74396, Id                          74397
EmployeeName          Tajel  Shah
JobTitle              Dep Dir III
BasePay                 170760.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 55108.22
TotalPay                170760.24
TotalPayBenefits        225868.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74396, dtype: object)
(74397, Id                           74398
EmployeeName        Daniel R Laval
JobTitle                Sergeant 3
BasePay                  143289.14
OvertimePay               25869.54
OtherPay                  15891.15
Benefits                   40804.5
TotalPay                 185049.83
TotalPayBenefits         225854.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74397, dtype: object)
(74398, Id                                      74399
EmployeeName                   Samara  Marion
JobTitle            Attorney (Civil/Criminal)
BasePay                              176126.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48469.77
TotalPay                             177376.0
TotalPayBenefits                    225845.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74398, dtype: object)
(74399, Id                                      74400
EmployeeName                  Sangeeta  Sinha
JobTitle            Attorney (Civil/Criminal)
BasePay                              176251.6
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48336.01
TotalPay                             177501.6
TotalPayBenefits                    225837.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74399, dtype: object)
(74400, Id                                         74401
EmployeeName                       Karen J Heald
JobTitle            Lieutenant, Fire Suppression
BasePay                                135581.77
OvertimePay                             27409.19
OtherPay                                17675.06
Benefits                                45169.12
TotalPay                               180666.02
TotalPayBenefits                       225835.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74400, dtype: object)
(74401, Id                                      74402
EmployeeName                       Ira H Barg
JobTitle            Attorney (Civil/Criminal)
BasePay                              175655.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48902.19
TotalPay                             176905.0
TotalPayBenefits                    225807.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74401, dtype: object)
(74402, Id                          74403
EmployeeName         Eva P Cheong
JobTitle              Manager VII
BasePay                 169335.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 56456.15
TotalPay                169335.53
TotalPayBenefits        225791.68
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74402, dtype: object)
(74403, Id                          74404
EmployeeName        Philip M Pera
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              37451.71
OtherPay                  4217.74
Benefits                 40804.47
TotalPay                184958.57
TotalPayBenefits        225763.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74403, dtype: object)
(74404, Id                              74405
EmployeeName        Maurice E Castain
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  48572.21
OtherPay                     18904.41
Benefits                     41308.66
TotalPay                    184433.33
TotalPayBenefits            225741.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74404, dtype: object)
(74405, Id                              74406
EmployeeName         Stella  Pantazis
JobTitle            Managing Attorney
BasePay                      160613.1
OvertimePay                       0.0
OtherPay                      7615.13
Benefits                     57509.91
TotalPay                    168228.23
TotalPayBenefits            225738.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74405, dtype: object)
(74406, Id                                         74407
EmployeeName                        Frank  Hsieh
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             37460.32
OtherPay                                 8525.68
Benefits                                43830.81
TotalPay                               181888.96
TotalPayBenefits                       225719.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74406, dtype: object)
(74407, Id                              74408
EmployeeName        Neil C Cunningham
JobTitle                   Sergeant 3
BasePay                      143289.1
OvertimePay                  31988.01
OtherPay                      9645.31
Benefits                     40796.96
TotalPay                    184922.42
TotalPayBenefits            225719.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74407, dtype: object)
(74408, Id                           74409
EmployeeName        Gregory R Kane
JobTitle              Lieutenant 3
BasePay                  163674.05
OvertimePay                8853.85
OtherPay                   8535.13
Benefits                  44621.16
TotalPay                 181063.03
TotalPayBenefits         225684.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74408, dtype: object)
(74409, Id                             74410
EmployeeName        Conrad T Benitez
JobTitle                 Firefighter
BasePay                    116255.42
OvertimePay                 50387.96
OtherPay                    17872.19
Benefits                    41167.66
TotalPay                   184515.57
TotalPayBenefits           225683.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74409, dtype: object)
(74410, Id                                         74411
EmployeeName                Stephen A Mc Partlan
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.49
OvertimePay                             23203.36
OtherPay                                22768.99
Benefits                                45037.76
TotalPay                               180639.84
TotalPayBenefits                        225677.6
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74410, dtype: object)
(74411, Id                               74412
EmployeeName        Rebecca L Wightman
JobTitle            Court Commissioner
BasePay                      157211.28
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      68444.64
TotalPay                     157211.28
TotalPayBenefits             225655.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74411, dtype: object)
(74412, Id                             74413
EmployeeName        Jeffrey T Aloise
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                  44624.3
OtherPay                    20498.02
Benefits                    37055.11
TotalPay                   188593.33
TotalPayBenefits           225648.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74412, dtype: object)
(74413, Id                            74414
EmployeeName        Michael D Jones
JobTitle                Firefighter
BasePay                    135351.0
OvertimePay                41497.36
OtherPay                    8121.06
Benefits                   40678.07
TotalPay                  184969.42
TotalPayBenefits          225647.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74413, dtype: object)
(74414, Id                              74415
EmployeeName        William B Griffin
JobTitle                 Lieutenant 3
BasePay                     163674.01
OvertimePay                    937.72
OtherPay                     14513.99
Benefits                     46490.83
TotalPay                    179125.72
TotalPayBenefits            225616.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74414, dtype: object)
(74415, Id                             74416
EmployeeName        Trenia L Wearing
JobTitle                Lieutenant 3
BasePay                    163674.01
OvertimePay                  9130.93
OtherPay                     7564.52
Benefits                    45212.87
TotalPay                   180369.46
TotalPayBenefits           225582.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74415, dtype: object)
(74416, Id                                         74417
EmployeeName                   Robert J Neuneker
JobTitle            Lieutenant, Fire Suppression
BasePay                                135378.05
OvertimePay                             41347.84
OtherPay                                 8122.68
Benefits                                40683.57
TotalPay                               184848.57
TotalPayBenefits                       225532.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74416, dtype: object)
(74417, Id                                          74418
EmployeeName                    Robert A Kaprosch
JobTitle            Sergeant, (Police Department)
BasePay                                  135270.0
OvertimePay                              33055.31
OtherPay                                 17194.55
Benefits                                  39998.5
TotalPay                                185519.86
TotalPayBenefits                        225518.36
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74417, dtype: object)
(74418, Id                             74419
EmployeeName           Steven D Maes
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 58002.14
OtherPay                     6957.56
Benefits                    37061.42
TotalPay                   188430.81
TotalPayBenefits           225492.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74418, dtype: object)
(74419, Id                             74420
EmployeeName        Michelle D Craig
JobTitle                  Sergeant 3
BasePay                    143289.02
OvertimePay                 33760.59
OtherPay                     7625.38
Benefits                    40804.34
TotalPay                   184674.99
TotalPayBenefits           225479.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74419, dtype: object)
(74420, Id                          74421
EmployeeName         Daryl S Fong
JobTitle             Lieutenant 3
BasePay                  163674.0
OvertimePay              11250.24
OtherPay                  5868.46
Benefits                 44660.87
TotalPay                 180792.7
TotalPayBenefits        225453.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74420, dtype: object)
(74421, Id                                 74422
EmployeeName        Maria Roella D Antoc
JobTitle                   Nurse Manager
BasePay                         165208.0
OvertimePay                          0.0
OtherPay                        14317.92
Benefits                         45917.5
TotalPay                       179525.92
TotalPayBenefits               225443.42
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74421, dtype: object)
(74422, Id                                 74423
EmployeeName        Ferdinand B Cadelina
JobTitle              Transit Supervisor
BasePay                          91449.0
OvertimePay                     97465.34
OtherPay                         3816.97
Benefits                        32664.61
TotalPay                       192731.31
TotalPayBenefits               225395.92
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74422, dtype: object)
(74423, Id                            74424
EmployeeName        Lain  Salstrand
JobTitle                Firefighter
BasePay                   114403.17
OvertimePay                53738.26
OtherPay                   16784.17
Benefits                   40464.89
TotalPay                   184925.6
TotalPayBenefits          225390.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74423, dtype: object)
(74424, Id                           74425
EmployeeName          Michael C Li
JobTitle            Deputy Sheriff
BasePay                   94295.02
OvertimePay               83484.34
OtherPay                  12567.13
Benefits                  35036.37
TotalPay                 190346.49
TotalPayBenefits         225382.86
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74424, dtype: object)
(74425, Id                          74426
EmployeeName           Barry R Lo
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay              44740.13
OtherPay                 23654.87
Benefits                 41044.36
TotalPay                184288.47
TotalPayBenefits        225332.83
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74425, dtype: object)
(74426, Id                            74427
EmployeeName        Miriam B Pengel
JobTitle               Lieutenant 3
BasePay                    163674.0
OvertimePay                 2320.62
OtherPay                   13964.69
Benefits                   45320.12
TotalPay                  179959.31
TotalPayBenefits          225279.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74426, dtype: object)
(74427, Id                               74428
EmployeeName         Carol S Taniguchi
JobTitle            Nurse Practitioner
BasePay                      173475.01
OvertimePay                        0.0
OtherPay                         276.1
Benefits                      51489.01
TotalPay                     173751.11
TotalPayBenefits             225240.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74427, dtype: object)
(74428, Id                              74429
EmployeeName        Ronan F Shouldice
JobTitle                  Inspector 3
BasePay                     143289.04
OvertimePay                  10959.76
OtherPay                     29650.63
Benefits                     41323.59
TotalPay                    183899.43
TotalPayBenefits            225223.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74428, dtype: object)
(74429, Id                          74430
EmployeeName        Sean P Oleary
JobTitle             Lieutenant 3
BasePay                 163674.04
OvertimePay               5924.66
OtherPay                 10830.72
Benefits                 44775.15
TotalPay                180429.42
TotalPayBenefits        225204.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74429, dtype: object)
(74430, Id                                         74431
EmployeeName                     Bridget B Smith
JobTitle            Engineer/Architect Principal
BasePay                                177234.42
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                47949.02
TotalPay                               177234.42
TotalPayBenefits                       225183.44
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74430, dtype: object)
(74431, Id                            74432
EmployeeName        Thomas G Holton
JobTitle              Nurse Manager
BasePay                    175803.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49353.74
TotalPay                   175803.0
TotalPayBenefits          225156.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74431, dtype: object)
(74432, Id                          74433
EmployeeName           John K Won
JobTitle              Firefighter
BasePay                 127207.77
OvertimePay               38597.9
OtherPay                 15862.87
Benefits                 43481.33
TotalPay                181668.54
TotalPayBenefits        225149.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74432, dtype: object)
(74433, Id                               74434
EmployeeName                Olson  Lee
JobTitle            Mayoral Staff XVII
BasePay                      168816.84
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       56325.0
TotalPay                     168816.84
TotalPayBenefits             225141.84
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74433, dtype: object)
(74434, Id                                      74435
EmployeeName                  Carole F Ruwart
JobTitle            Attorney (Civil/Criminal)
BasePay                              174071.5
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                              49814.7
TotalPay                             175321.0
TotalPayBenefits                     225135.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74434, dtype: object)
(74435, Id                          74436
EmployeeName        Richard B Jue
JobTitle               Sergeant 3
BasePay                 142555.15
OvertimePay               4072.08
OtherPay                 37371.26
Benefits                 41125.13
TotalPay                183998.49
TotalPayBenefits        225123.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74435, dtype: object)
(74436, Id                               74437
EmployeeName        David W Batchelder
JobTitle                    Sergeant 3
BasePay                      143289.13
OvertimePay                   23825.53
OtherPay                      17058.13
Benefits                      40938.46
TotalPay                     184172.79
TotalPayBenefits             225111.25
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74436, dtype: object)
(74437, Id                               74438
EmployeeName        Suzette F Humphrey
JobTitle                Deputy Sheriff
BasePay                       95126.51
OvertimePay                   72097.95
OtherPay                      20997.74
Benefits                      36846.79
TotalPay                      188222.2
TotalPayBenefits             225068.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74437, dtype: object)
(74438, Id                           74439
EmployeeName        Gil M Intengan
JobTitle               Firefighter
BasePay                  115893.47
OvertimePay               48086.69
OtherPay                  20006.01
Benefits                  41064.06
TotalPay                 183986.17
TotalPayBenefits         225050.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74438, dtype: object)
(74439, Id                              74440
EmployeeName        Ravinder K Aulakh
JobTitle             Registered Nurse
BasePay                      141897.5
OvertimePay                    9495.0
OtherPay                     28688.71
Benefits                     44884.17
TotalPay                    180081.21
TotalPayBenefits            224965.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74439, dtype: object)
(74440, Id                             74441
EmployeeName        Michelle M Fouts
JobTitle                   Manager V
BasePay                    168116.13
OvertimePay                      0.0
OtherPay                     2739.36
Benefits                    54091.08
TotalPay                   170855.49
TotalPayBenefits           224946.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74440, dtype: object)
(74441, Id                             74442
EmployeeName        Stephen C Murphy
JobTitle                 Inspector 3
BasePay                     143289.0
OvertimePay                  25652.6
OtherPay                    13599.99
Benefits                    42382.11
TotalPay                   182541.59
TotalPayBenefits            224923.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74441, dtype: object)
(74442, Id                              74443
EmployeeName        Mitchell J Sutton
JobTitle                   IS Manager
BasePay                     166588.01
OvertimePay                       0.0
OtherPay                      3317.29
Benefits                     55004.24
TotalPay                     169905.3
TotalPayBenefits            224909.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74442, dtype: object)
(74443, Id                          74444
EmployeeName        Janet L Brock
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              46931.18
OtherPay                  19409.4
Benefits                  41534.3
TotalPay                183297.28
TotalPayBenefits        224831.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74443, dtype: object)
(74444, Id                                  74445
EmployeeName            Richard  Gonzales
JobTitle            Water Const&Main Supt
BasePay                         126561.84
OvertimePay                      27254.08
OtherPay                         30717.97
Benefits                          40295.0
TotalPay                        184533.89
TotalPayBenefits                224828.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74444, dtype: object)
(74445, Id                            74446
EmployeeName        Damon A Jackson
JobTitle                 Sergeant 3
BasePay                   142518.01
OvertimePay                24423.58
OtherPay                   17160.75
Benefits                   40650.47
TotalPay                  184102.34
TotalPayBenefits          224752.81
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74445, dtype: object)
(74446, Id                                           74447
EmployeeName                         John H Monroe
JobTitle            Inspector, (Police Department)
BasePay                                   135270.0
OvertimePay                               13620.97
OtherPay                                  31509.13
Benefits                                  44304.99
TotalPay                                  180400.1
TotalPayBenefits                         224705.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74446, dtype: object)
(74447, Id                                         74448
EmployeeName                         Tyson G Yee
JobTitle            Lieutenant, Fire Suppression
BasePay                                148353.76
OvertimePay                             21354.58
OtherPay                                10328.24
Benefits                                44663.15
TotalPay                               180036.58
TotalPayBenefits                       224699.73
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74447, dtype: object)
(74448, Id                             74449
EmployeeName          Hsinmei S Chen
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  8664.19
OtherPay                    29201.07
Benefits                    44384.03
TotalPay                   180290.26
TotalPayBenefits           224674.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74448, dtype: object)
(74449, Id                                      74450
EmployeeName                 Phoenix  Streets
JobTitle            Attorney (Civil/Criminal)
BasePay                              175212.7
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             48202.95
TotalPay                             176462.7
TotalPayBenefits                    224665.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74449, dtype: object)
(74450, Id                                 74451
EmployeeName        Nicholas D Rainsford
JobTitle                    Lieutenant 3
BasePay                        162919.04
OvertimePay                      4679.12
OtherPay                        12509.47
Benefits                        44527.19
TotalPay                       180107.63
TotalPayBenefits               224634.82
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74450, dtype: object)
(74451, Id                           74452
EmployeeName        Keith R Onishi
JobTitle               Firefighter
BasePay                  116355.99
OvertimePay               48813.67
OtherPay                  18445.03
Benefits                  41014.87
TotalPay                 183614.69
TotalPayBenefits         224629.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74451, dtype: object)
(74452, Id                             74453
EmployeeName        Noah D Mallinger
JobTitle                  Sergeant 3
BasePay                    143289.08
OvertimePay                  29570.0
OtherPay                    10908.87
Benefits                    40859.97
TotalPay                   183767.95
TotalPayBenefits           224627.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74452, dtype: object)
(74453, Id                             74454
EmployeeName          Britt D Elmore
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 53456.98
OtherPay                    10630.74
Benefits                     37055.1
TotalPay                   187558.72
TotalPayBenefits           224613.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74453, dtype: object)
(74454, Id                             74455
EmployeeName           Brent M Cader
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 54839.72
OtherPay                    11927.38
Benefits                    36760.15
TotalPay                    187835.1
TotalPayBenefits           224595.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74454, dtype: object)
(74455, Id                               74456
EmployeeName        Charles M Thompson
JobTitle                    Manager VI
BasePay                      166528.01
OvertimePay                        0.0
OtherPay                        3000.0
Benefits                      55047.98
TotalPay                     169528.01
TotalPayBenefits             224575.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74455, dtype: object)
(74456, Id                                    74457
EmployeeName            William  Siffermann
JobTitle            Chf Prob Ofc, Juv Court
BasePay                           147232.51
OvertimePay                             0.0
OtherPay                           35136.36
Benefits                           42194.21
TotalPay                          182368.87
TotalPayBenefits                  224563.08
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74456, dtype: object)
(74457, Id                              74458
EmployeeName        Adetokunbo  Ajike
JobTitle            Project Manager 3
BasePay                     168853.53
OvertimePay                       0.0
OtherPay                       7833.0
Benefits                     47842.72
TotalPay                    176686.53
TotalPayBenefits            224529.25
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74457, dtype: object)
(74458, Id                          74459
EmployeeName         Paul J Saitz
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              52543.28
OtherPay                  15652.6
Benefits                 40370.32
TotalPay                184089.34
TotalPayBenefits        224459.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74458, dtype: object)
(74459, Id                           74460
EmployeeName        Mark E Mahoney
JobTitle              Lieutenant 3
BasePay                  163674.07
OvertimePay                4304.03
OtherPay                  10126.35
Benefits                  46304.07
TotalPay                 178104.45
TotalPayBenefits         224408.52
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74459, dtype: object)
(74460, Id                          74461
EmployeeName        Marco F Nocon
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              47010.77
OtherPay                 19031.87
Benefits                 41406.58
TotalPay                182999.33
TotalPayBenefits        224405.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74460, dtype: object)
(74461, Id                             74462
EmployeeName           Evelyn  Andes
JobTitle            Registered Nurse
BasePay                     141897.5
OvertimePay                  7055.33
OtherPay                     25234.8
Benefits                     50196.1
TotalPay                   174187.63
TotalPayBenefits           224383.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74461, dtype: object)
(74462, Id                               74463
EmployeeName        Timothy A Flaherty
JobTitle                    Sergeant 3
BasePay                       65674.17
OvertimePay                    4991.88
OtherPay                     135160.66
Benefits                      18548.21
TotalPay                     205826.71
TotalPayBenefits             224374.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74462, dtype: object)
(74463, Id                            74464
EmployeeName        James A Omalley
JobTitle                 Sergeant 3
BasePay                   143289.16
OvertimePay                14695.06
OtherPay                   25026.13
Benefits                   41352.53
TotalPay                  183010.35
TotalPayBenefits          224362.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74463, dtype: object)
(74464, Id                                      74465
EmployeeName                Patrick  Sullivan
JobTitle            Captain, Fire Suppression
BasePay                              153846.1
OvertimePay                           2242.98
OtherPay                             19230.77
Benefits                             49018.16
TotalPay                            175319.85
TotalPayBenefits                    224338.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74464, dtype: object)
(74465, Id                             74466
EmployeeName        Robert D Kellogg
JobTitle            Police Officer 3
BasePay                     123471.2
OvertimePay                 53907.85
OtherPay                     9927.41
Benefits                    37025.19
TotalPay                   187306.46
TotalPayBenefits           224331.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74465, dtype: object)
(74466, Id                          74467
EmployeeName            Kirk  Yin
JobTitle             Lieutenant 3
BasePay                  163674.0
OvertimePay               9943.14
OtherPay                   5962.8
Benefits                 44689.17
TotalPay                179579.94
TotalPayBenefits        224269.11
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74466, dtype: object)
(74467, Id                            74468
EmployeeName        Michael J Deely
JobTitle               Lieutenant 3
BasePay                   161896.08
OvertimePay                 7774.08
OtherPay                   10238.04
Benefits                   44334.57
TotalPay                   179908.2
TotalPayBenefits          224242.77
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74467, dtype: object)
(74468, Id                            74469
EmployeeName        Joseph H Minner
JobTitle                 Sergeant 3
BasePay                   143289.14
OvertimePay                12668.38
OtherPay                   27415.76
Benefits                   40855.63
TotalPay                  183373.28
TotalPayBenefits          224228.91
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74468, dtype: object)
(74469, Id                             74470
EmployeeName         Gary J Moriyama
JobTitle            Police Officer 3
BasePay                     123070.9
OvertimePay                 40459.06
OtherPay                    23764.35
Benefits                     36924.2
TotalPay                   187294.31
TotalPayBenefits           224218.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74469, dtype: object)
(74470, Id                             74471
EmployeeName        Georgia A Sawyer
JobTitle                  Sergeant 3
BasePay                     143289.1
OvertimePay                  31887.3
OtherPay                     7958.71
Benefits                    41060.52
TotalPay                   183135.11
TotalPayBenefits           224195.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74470, dtype: object)
(74471, Id                           74472
EmployeeName        Anthony L West
JobTitle               Firefighter
BasePay                  103269.71
OvertimePay               66991.83
OtherPay                  17374.32
Benefits                  36539.89
TotalPay                 187635.86
TotalPayBenefits         224175.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74471, dtype: object)
(74472, Id                                         74473
EmployeeName                      David L Murray
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                             26342.01
OtherPay                                16542.65
Benefits                                45360.57
TotalPay                               178787.63
TotalPayBenefits                        224148.2
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74472, dtype: object)
(74473, Id                           74474
EmployeeName        Tonia G Lediju
JobTitle               Dep Dir III
BasePay                  166322.02
OvertimePay                    0.0
OtherPay                    1904.0
Benefits                  55908.52
TotalPay                 168226.02
TotalPayBenefits         224134.54
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74473, dtype: object)
(74474, Id                          74475
EmployeeName        Peter D Walsh
JobTitle             Lieutenant 3
BasePay                 163674.02
OvertimePay               5990.99
OtherPay                  9841.97
Benefits                 44621.14
TotalPay                179506.98
TotalPayBenefits        224128.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74474, dtype: object)
(74475, Id                                 74476
EmployeeName             Deborah E Brown
JobTitle            Physician Specialist
BasePay                         171554.9
OvertimePay                          0.0
OtherPay                          7510.5
Benefits                         45042.9
TotalPay                        179065.4
TotalPayBenefits                224108.3
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74475, dtype: object)
(74476, Id                          74477
EmployeeName        Gregory B Yee
JobTitle             Lieutenant 3
BasePay                 163674.08
OvertimePay               8412.26
OtherPay                  7069.03
Benefits                 44936.44
TotalPay                179155.37
TotalPayBenefits        224091.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74476, dtype: object)
(74477, Id                             74478
EmployeeName        David G O'Connor
JobTitle                Lieutenant 3
BasePay                    162919.08
OvertimePay                  5963.08
OtherPay                    10661.36
Benefits                    44527.17
TotalPay                   179543.52
TotalPayBenefits           224070.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74477, dtype: object)
(74478, Id                          74479
EmployeeName        Carl P Fabbri
JobTitle             Lieutenant 3
BasePay                 163674.07
OvertimePay               5470.04
OtherPay                  9478.99
Benefits                 45403.58
TotalPay                 178623.1
TotalPayBenefits        224026.68
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74478, dtype: object)
(74479, Id                                      74480
EmployeeName                 Kristen A Jensen
JobTitle            Attorney (Civil/Criminal)
BasePay                             171600.47
OvertimePay                               0.0
OtherPay                              4682.25
Benefits                             47688.77
TotalPay                            176282.72
TotalPayBenefits                    223971.49
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74479, dtype: object)
(74480, Id                          74481
EmployeeName         Michael  Lau
JobTitle               Sergeant 3
BasePay                 143289.14
OvertimePay              16730.65
OtherPay                 21899.34
Benefits                 42036.64
TotalPay                181919.13
TotalPayBenefits        223955.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74480, dtype: object)
(74481, Id                                        74482
EmployeeName                 Victoria A Behrman
JobTitle            Senior Physician Specialist
BasePay                               175477.04
OvertimePay                                 0.0
OtherPay                                 2835.0
Benefits                               45635.59
TotalPay                              178312.04
TotalPayBenefits                      223947.63
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74481, dtype: object)
(74482, Id                             74483
EmployeeName        Joseph B Sallady
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 45958.42
OtherPay                    19616.77
Benefits                    41406.59
TotalPay                    182531.9
TotalPayBenefits           223938.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74482, dtype: object)
(74483, Id                          74484
EmployeeName          Dean R Ries
JobTitle             Lieutenant 3
BasePay                 153104.07
OvertimePay               12023.4
OtherPay                  16018.7
Benefits                 42789.02
TotalPay                181146.17
TotalPayBenefits        223935.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74483, dtype: object)
(74484, Id                               74485
EmployeeName        Roshawn D McKeever
JobTitle                    Sergeant 3
BasePay                      143289.05
OvertimePay                   25555.39
OtherPay                      14164.14
Benefits                      40911.81
TotalPay                     183008.58
TotalPayBenefits             223920.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74484, dtype: object)
(74485, Id                             74486
EmployeeName        Walter R Miranda
JobTitle            Police Officer 3
BasePay                    126686.05
OvertimePay                 53244.74
OtherPay                     6146.85
Benefits                    37811.28
TotalPay                   186077.64
TotalPayBenefits           223888.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74485, dtype: object)
(74486, Id                           74487
EmployeeName        Kevin P Murray
JobTitle                Sergeant 3
BasePay                  143289.07
OvertimePay               27250.21
OtherPay                  12462.87
Benefits                   40811.6
TotalPay                 183002.15
TotalPayBenefits         223813.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74486, dtype: object)
(74487, Id                               74488
EmployeeName        Natalee K Ernstrom
JobTitle            Nurse Practitioner
BasePay                      171050.02
OvertimePay                        0.0
OtherPay                        1475.0
Benefits                      51262.31
TotalPay                     172525.02
TotalPayBenefits             223787.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74487, dtype: object)
(74488, Id                             74489
EmployeeName        Douglas N Farmer
JobTitle                  Sergeant 3
BasePay                    129343.01
OvertimePay                 21224.12
OtherPay                    34671.64
Benefits                    38526.16
TotalPay                   185238.77
TotalPayBenefits           223764.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74488, dtype: object)
(74489, Id                             74490
EmployeeName        Anthony J Damato
JobTitle                  Sergeant 3
BasePay                     143289.1
OvertimePay                 23162.97
OtherPay                     15967.3
Benefits                    41345.34
TotalPay                   182419.37
TotalPayBenefits           223764.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74489, dtype: object)
(74490, Id                                    74491
EmployeeName                 David A Planka
JobTitle            Fire Safety Inspector 2
BasePay                            139644.0
OvertimePay                        33305.08
OtherPay                            8378.64
Benefits                           42403.14
TotalPay                          181327.72
TotalPayBenefits                  223730.86
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74490, dtype: object)
(74491, Id                            74492
EmployeeName        Reyner I Medina
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                53661.17
OtherPay                   12801.41
Benefits                   40287.76
TotalPay                  183419.29
TotalPayBenefits          223707.05
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74491, dtype: object)
(74492, Id                             74493
EmployeeName          Peter A Albert
JobTitle            Manager VII, MTA
BasePay                     164032.0
OvertimePay                      0.0
OtherPay                      5000.0
Benefits                    54642.48
TotalPay                    169032.0
TotalPayBenefits           223674.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74492, dtype: object)
(74493, Id                           74494
EmployeeName            John  Choi
JobTitle            Deputy Sheriff
BasePay                   94896.83
OvertimePay               78121.71
OtherPay                   15308.9
Benefits                  35313.58
TotalPay                 188327.44
TotalPayBenefits         223641.02
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74493, dtype: object)
(74494, Id                             74495
EmployeeName        William D Powell
JobTitle                 Firefighter
BasePay                    132718.18
OvertimePay                 21779.56
OtherPay                    26635.26
Benefits                    42500.08
TotalPay                    181133.0
TotalPayBenefits           223633.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74494, dtype: object)
(74495, Id                            74496
EmployeeName        Michael A Horta
JobTitle                Firefighter
BasePay                   116835.38
OvertimePay                46778.83
OtherPay                   19321.54
Benefits                    40660.9
TotalPay                  182935.75
TotalPayBenefits          223596.65
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74495, dtype: object)
(74496, Id                              74497
EmployeeName        William F Escobar
JobTitle                 Lieutenant 3
BasePay                     163674.01
OvertimePay                   4698.07
OtherPay                     10531.34
Benefits                     44660.88
TotalPay                    178903.42
TotalPayBenefits             223564.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74496, dtype: object)
(74497, Id                          74498
EmployeeName        Jorge A Solis
JobTitle            Nurse Manager
BasePay                 175124.96
OvertimePay                   0.0
OtherPay                    805.0
Benefits                 47620.08
TotalPay                175929.96
TotalPayBenefits        223550.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74497, dtype: object)
(74498, Id                                         74499
EmployeeName                     Brice P Peoples
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             30510.22
OtherPay                                12595.52
Benefits                                44538.91
TotalPay                                179008.7
TotalPayBenefits                       223547.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74498, dtype: object)
(74499, Id                          74500
EmployeeName         Steve A Ford
JobTitle             Lieutenant 3
BasePay                 163674.08
OvertimePay              10494.87
OtherPay                  4715.12
Benefits                 44660.87
TotalPay                178884.07
TotalPayBenefits        223544.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74499, dtype: object)
(74500, Id                             74501
EmployeeName             Howard  Chu
JobTitle            Police Officer 3
BasePay                    123471.21
OvertimePay                 56447.98
OtherPay                     6554.05
Benefits                    37055.22
TotalPay                   186473.24
TotalPayBenefits           223528.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74500, dtype: object)
(74501, Id                                      74502
EmployeeName                  Regina T Morley
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          31492.71
OtherPay                             12339.72
Benefits                             44472.84
TotalPay                            178976.68
TotalPayBenefits                    223449.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74501, dtype: object)
(74502, Id                             74503
EmployeeName          Gerald P Lyons
JobTitle            Police Officer 3
BasePay                    123471.19
OvertimePay                 41691.16
OtherPay                    21222.31
Benefits                    37055.22
TotalPay                   186384.66
TotalPayBenefits           223439.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74502, dtype: object)
(74503, Id                             74504
EmployeeName        Michael V Cleary
JobTitle                Lieutenant 3
BasePay                    163674.01
OvertimePay                  5808.64
OtherPay                     8688.38
Benefits                     45239.9
TotalPay                   178171.03
TotalPayBenefits           223410.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74503, dtype: object)
(74504, Id                             74505
EmployeeName        John R Mambretti
JobTitle            Police Officer 3
BasePay                      69317.5
OvertimePay                  9078.18
OtherPay                   123246.23
Benefits                     21767.7
TotalPay                   201641.91
TotalPayBenefits           223409.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74504, dtype: object)
(74505, Id                          74506
EmployeeName        Rohan  Knight
JobTitle              Firefighter
BasePay                 120154.06
OvertimePay              33482.38
OtherPay                 26129.65
Benefits                  43608.4
TotalPay                179766.09
TotalPayBenefits        223374.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74505, dtype: object)
(74506, Id                                        74507
EmployeeName                      Nash D Quinto
JobTitle            Captain, Emergency Med Svcs
BasePay                               154575.09
OvertimePay                            26013.72
OtherPay                                    0.0
Benefits                                42778.6
TotalPay                              180588.81
TotalPayBenefits                      223367.41
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74506, dtype: object)
(74507, Id                            74508
EmployeeName        Carlos A Jacobo
JobTitle                 Manager VI
BasePay                   166528.05
OvertimePay                     0.0
OtherPay                     2000.0
Benefits                    54714.0
TotalPay                  168528.05
TotalPayBenefits          223242.05
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74507, dtype: object)
(74508, Id                          74509
EmployeeName        David C Saitz
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              40001.61
OtherPay                 24797.94
Benefits                 41437.82
TotalPay                181756.28
TotalPayBenefits         223194.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74508, dtype: object)
(74509, Id                              74510
EmployeeName        Eric P Caracciolo
JobTitle             Police Officer 3
BasePay                     123471.16
OvertimePay                  61776.59
OtherPay                       876.06
Benefits                     37055.23
TotalPay                    186123.81
TotalPayBenefits            223179.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74509, dtype: object)
(74510, Id                                         74511
EmployeeName                   Julie C DeJarlais
JobTitle            Lieutenant, Fire Suppression
BasePay                                127369.86
OvertimePay                             47091.41
OtherPay                                 7642.26
Benefits                                41066.01
TotalPay                               182103.53
TotalPayBenefits                       223169.54
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74510, dtype: object)
(74511, Id                              74512
EmployeeName        Almir L Guimaraes
JobTitle                    Manager V
BasePay                     166645.36
OvertimePay                       0.0
OtherPay                      1878.32
Benefits                     54617.64
TotalPay                    168523.68
TotalPayBenefits            223141.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74511, dtype: object)
(74512, Id                             74513
EmployeeName        Matthew S Reeves
JobTitle                  Manager VI
BasePay                    168537.12
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    54598.26
TotalPay                   168537.12
TotalPayBenefits           223135.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74512, dtype: object)
(74513, Id                              74514
EmployeeName        Rebecca A Atwater
JobTitle                  Firefighter
BasePay                     116956.69
OvertimePay                  45191.14
OtherPay                     19531.67
Benefits                     41406.59
TotalPay                     181679.5
TotalPayBenefits            223086.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74513, dtype: object)
(74514, Id                                74515
EmployeeName        Ricardo J Ballin II
JobTitle                  Nurse Manager
BasePay                        154643.5
OvertimePay                         0.0
OtherPay                       20548.07
Benefits                       47881.82
TotalPay                      175191.57
TotalPayBenefits              223073.39
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74514, dtype: object)
(74515, Id                            74516
EmployeeName        Elaine C Forbes
JobTitle                Dep Dir III
BasePay                   166835.69
OvertimePay                     0.0
OtherPay                     1615.4
Benefits                   54599.44
TotalPay                  168451.09
TotalPayBenefits          223050.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74515, dtype: object)
(74516, Id                              74517
EmployeeName        Michael  Martinez
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  45905.82
OtherPay                     18837.88
Benefits                     41339.89
TotalPay                    181700.43
TotalPayBenefits            223040.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74516, dtype: object)
(74517, Id                           74518
EmployeeName        James D Aherne
JobTitle              Lieutenant 3
BasePay                  162919.02
OvertimePay                4511.02
OtherPay                   10885.5
Benefits                  44690.95
TotalPay                 178315.54
TotalPayBenefits         223006.49
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74517, dtype: object)
(74518, Id                               74519
EmployeeName         Susanne I Killing
JobTitle            Nurse Practitioner
BasePay                      171999.61
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      50715.19
TotalPay                     172249.61
TotalPayBenefits              222964.8
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74518, dtype: object)
(74519, Id                                      74520
EmployeeName                   Asit S Panwala
JobTitle            Attorney (Civil/Criminal)
BasePay                              119212.6
OvertimePay                               0.0
OtherPay                              72209.4
Benefits                             31532.93
TotalPay                             191422.0
TotalPayBenefits                    222954.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74519, dtype: object)
(74520, Id                             74521
EmployeeName        Kevin  McPherson
JobTitle                  Sergeant 3
BasePay                    143289.06
OvertimePay                 32057.63
OtherPay                     6797.35
Benefits                    40795.91
TotalPay                   182144.04
TotalPayBenefits           222939.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74520, dtype: object)
(74521, Id                               74522
EmployeeName        James F Cunningham
JobTitle              Police Officer 3
BasePay                      123471.14
OvertimePay                   55253.79
OtherPay                        6710.0
Benefits                      37491.67
TotalPay                     185434.93
TotalPayBenefits              222926.6
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74521, dtype: object)
(74522, Id                             74523
EmployeeName        Brian E McCarthy
JobTitle                 Firefighter
BasePay                    115893.46
OvertimePay                  49255.7
OtherPay                    16871.78
Benefits                    40819.68
TotalPay                   182020.94
TotalPayBenefits           222840.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74522, dtype: object)
(74523, Id                           74524
EmployeeName        James R Fewell
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               36452.44
OtherPay                   26367.4
Benefits                   43006.7
TotalPay                 179776.55
TotalPayBenefits         222783.25
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74523, dtype: object)
(74524, Id                              74525
EmployeeName        Deborah L Gizdich
JobTitle                 Lieutenant 3
BasePay                      163674.0
OvertimePay                   8363.77
OtherPay                      5286.33
Benefits                     45412.93
TotalPay                     177324.1
TotalPayBenefits            222737.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74524, dtype: object)
(74525, Id                               74526
EmployeeName           Kathleen M Ryan
JobTitle            Nurse Practitioner
BasePay                      166363.64
OvertimePay                     7161.2
OtherPay                        506.05
Benefits                       48701.5
TotalPay                     174030.89
TotalPayBenefits             222732.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74525, dtype: object)
(74526, Id                              74527
EmployeeName        Matthew E Rodgers
JobTitle                   Sergeant 3
BasePay                     143289.09
OvertimePay                  14438.93
OtherPay                     23948.35
Benefits                     41042.05
TotalPay                    181676.37
TotalPayBenefits            222718.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74526, dtype: object)
(74527, Id                              74528
EmployeeName        Matthew D Tarlach
JobTitle                  Firefighter
BasePay                     116956.74
OvertimePay                  45175.83
OtherPay                     19138.31
Benefits                     41437.82
TotalPay                    181270.88
TotalPayBenefits             222708.7
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74527, dtype: object)
(74528, Id                                  74529
EmployeeName                Kenny E Lewis
JobTitle            Senior Deputy Sheriff
BasePay                         105432.61
OvertimePay                      67930.06
OtherPay                         12584.02
Benefits                         36731.97
TotalPay                        185946.69
TotalPayBenefits                222678.66
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74528, dtype: object)
(74529, Id                                      74530
EmployeeName                Thomas M Cullinan
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               4851.8
Benefits                             37767.48
TotalPay                             184902.8
TotalPayBenefits                    222670.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74529, dtype: object)
(74530, Id                          74531
EmployeeName          Craig A Lee
JobTitle               Manager VI
BasePay                 166528.02
OvertimePay                   0.0
OtherPay                   1500.0
Benefits                  54609.9
TotalPay                168028.02
TotalPayBenefits        222637.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74530, dtype: object)
(74531, Id                            74532
EmployeeName        Maria S Nilsson
JobTitle                Firefighter
BasePay                   115893.49
OvertimePay                46129.23
OtherPay                   19563.57
Benefits                   41044.37
TotalPay                  181586.29
TotalPayBenefits          222630.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74531, dtype: object)
(74532, Id                          74533
EmployeeName        John R Sikora
JobTitle              Firefighter
BasePay                 115893.48
OvertimePay              46922.93
OtherPay                  18766.1
Benefits                 41044.37
TotalPay                181582.51
TotalPayBenefits        222626.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74532, dtype: object)
(74533, Id                           74534
EmployeeName        Anne M Ruggels
JobTitle                Manager VI
BasePay                   166727.8
OvertimePay                    0.0
OtherPay                   1273.53
Benefits                  54604.34
TotalPay                 168001.33
TotalPayBenefits         222605.67
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74533, dtype: object)
(74534, Id                                74535
EmployeeName        Thomas D Harvey III
JobTitle                     Sergeant 3
BasePay                       133013.09
OvertimePay                    14467.83
OtherPay                        36145.4
Benefits                       38976.76
TotalPay                      183626.32
TotalPayBenefits              222603.08
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74534, dtype: object)
(74535, Id                              74536
EmployeeName            Tara D Lamont
JobTitle            Project Manager 3
BasePay                      173582.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     49011.87
TotalPay                     173582.0
TotalPayBenefits            222593.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74535, dtype: object)
(74536, Id                             74537
EmployeeName        Anthony  Montoya
JobTitle                  Sergeant 3
BasePay                    143289.14
OvertimePay                 20677.51
OtherPay                    17665.42
Benefits                    40923.53
TotalPay                   181632.07
TotalPayBenefits            222555.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74536, dtype: object)
(74537, Id                           74538
EmployeeName           Jimmy D Bui
JobTitle            Deputy Sheriff
BasePay                    95119.5
OvertimePay               83035.48
OtherPay                   9621.32
Benefits                  34778.55
TotalPay                  187776.3
TotalPayBenefits         222554.85
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74537, dtype: object)
(74538, Id                                         74539
EmployeeName                   Cynthia H Rickert
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             23504.52
OtherPay                                17556.46
Benefits                                 45576.4
TotalPay                               176963.94
TotalPayBenefits                       222540.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74538, dtype: object)
(74539, Id                            74540
EmployeeName        Blake E Summers
JobTitle                 Manager VI
BasePay                   178176.74
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   44342.98
TotalPay                  178176.74
TotalPayBenefits          222519.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74539, dtype: object)
(74540, Id                                      74541
EmployeeName                     Grace H Park
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.01
OvertimePay                               0.0
OtherPay                              4850.66
Benefits                             37611.31
TotalPay                            184901.67
TotalPayBenefits                    222512.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74540, dtype: object)
(74541, Id                          74542
EmployeeName           Tony J Lee
JobTitle               Manager VI
BasePay                 166528.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 55962.89
TotalPay                166528.03
TotalPayBenefits        222490.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74541, dtype: object)
(74542, Id                                      74543
EmployeeName               Artricia D Jenkins
JobTitle            Attorney (Civil/Criminal)
BasePay                              170486.0
OvertimePay                               0.0
OtherPay                               4270.0
Benefits                             47731.47
TotalPay                             174756.0
TotalPayBenefits                    222487.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74542, dtype: object)
(74543, Id                                  74544
EmployeeName                 Johnny G Lim
JobTitle            IS Engineer-Principal
BasePay                          140889.0
OvertimePay                           0.0
OtherPay                         40520.15
Benefits                         41064.39
TotalPay                        181409.15
TotalPayBenefits                222473.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74543, dtype: object)
(74544, Id                             74545
EmployeeName        Sophia A Billote
JobTitle            Registered Nurse
BasePay                     140842.5
OvertimePay                  10978.6
OtherPay                    29090.78
Benefits                    41547.98
TotalPay                   180911.88
TotalPayBenefits           222459.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74544, dtype: object)
(74545, Id                                   74546
EmployeeName        Daisy Mae M Quitoriano
JobTitle                     Nurse Manager
BasePay                          162688.01
OvertimePay                            0.0
OtherPay                          14645.16
Benefits                          45119.42
TotalPay                         177333.17
TotalPayBenefits                 222452.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74545, dtype: object)
(74546, Id                              74547
EmployeeName        Rosemarie C Tibay
JobTitle             Registered Nurse
BasePay                     139375.41
OvertimePay                   7714.69
OtherPay                     28543.26
Benefits                     46817.97
TotalPay                    175633.36
TotalPayBenefits            222451.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74546, dtype: object)
(74547, Id                          74548
EmployeeName         Tami  Turner
JobTitle              Firefighter
BasePay                 115261.73
OvertimePay              58170.16
OtherPay                  9709.75
Benefits                 39291.11
TotalPay                183141.64
TotalPayBenefits        222432.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74547, dtype: object)
(74548, Id                             74549
EmployeeName             Kevin A Lee
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                  57560.9
OtherPay                     4345.91
Benefits                    37035.84
TotalPay                   185377.84
TotalPayBenefits           222413.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74548, dtype: object)
(74549, Id                              74550
EmployeeName        David E Sostarich
JobTitle                   Manager IV
BasePay                      166497.0
OvertimePay                       0.0
OtherPay                         31.0
Benefits                     55864.35
TotalPay                     166528.0
TotalPayBenefits            222392.35
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74549, dtype: object)
(74550, Id                               74551
EmployeeName        Denise J Pemberton
JobTitle                   Firefighter
BasePay                       87182.37
OvertimePay                   85355.31
OtherPay                      18259.17
Benefits                      31582.66
TotalPay                     190796.85
TotalPayBenefits             222379.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74550, dtype: object)
(74551, Id                                74552
EmployeeName        Shireen L McSpadden
JobTitle                    Dep Dir III
BasePay                       165702.84
OvertimePay                         0.0
OtherPay                         2139.0
Benefits                        54504.0
TotalPay                      167841.84
TotalPayBenefits              222345.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74551, dtype: object)
(74552, Id                          74553
EmployeeName          Carmen  Chu
JobTitle                 Assessor
BasePay                 167345.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 54997.82
TotalPay                167345.09
TotalPayBenefits        222342.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74552, dtype: object)
(74553, Id                                74554
EmployeeName        Lissette A Waterman
JobTitle                  Nurse Manager
BasePay                        174232.2
OvertimePay                         0.0
OtherPay                          875.0
Benefits                       47215.08
TotalPay                       175107.2
TotalPayBenefits              222322.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74553, dtype: object)
(74554, Id                          74555
EmployeeName         John  Pai Jr
JobTitle               Sergeant 3
BasePay                 129343.12
OvertimePay              21142.78
OtherPay                 33568.27
Benefits                 38233.41
TotalPay                184054.17
TotalPayBenefits        222287.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74554, dtype: object)
(74555, Id                                       74556
EmployeeName                     Uday S Prasad
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              156858.49
OvertimePay                                0.0
OtherPay                              17821.46
Benefits                              47598.93
TotalPay                             174679.95
TotalPayBenefits                     222278.88
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74555, dtype: object)
(74556, Id                             74557
EmployeeName        Edward P Barbero
JobTitle                 Firefighter
BasePay                    116956.69
OvertimePay                 43764.81
OtherPay                    19972.02
Benefits                    41585.27
TotalPay                   180693.52
TotalPayBenefits           222278.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74556, dtype: object)
(74557, Id                                  74558
EmployeeName          Joseph A Leonardini
JobTitle            Senior Deputy Sheriff
BasePay                         105187.73
OvertimePay                       68601.6
OtherPay                         12091.82
Benefits                         36379.72
TotalPay                        185881.15
TotalPayBenefits                222260.87
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74557, dtype: object)
(74558, Id                             74559
EmployeeName        Leonard F Poggio
JobTitle                  Sergeant 3
BasePay                    143289.06
OvertimePay                 22175.46
OtherPay                    15974.99
Benefits                     40795.9
TotalPay                   181439.51
TotalPayBenefits           222235.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74558, dtype: object)
(74559, Id                            74560
EmployeeName        Curtis S Nakano
JobTitle                 Sergeant 3
BasePay                   142555.15
OvertimePay                 4374.13
OtherPay                   34466.89
Benefits                   40794.24
TotalPay                  181396.17
TotalPayBenefits          222190.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74559, dtype: object)
(74560, Id                                 74561
EmployeeName        Patrick G Overstreet
JobTitle                     Inspector 3
BasePay                        143449.53
OvertimePay                     20214.78
OtherPay                        17218.41
Benefits                        41306.16
TotalPay                       180882.72
TotalPayBenefits               222188.88
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74560, dtype: object)
(74561, Id                             74562
EmployeeName        Michael M Murphy
JobTitle                 Firefighter
BasePay                    115893.46
OvertimePay                 55322.83
OtherPay                    11303.92
Benefits                    39631.76
TotalPay                   182520.21
TotalPayBenefits           222151.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74561, dtype: object)
(74562, Id                                      74563
EmployeeName                   Jason  Simmons
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.68
OvertimePay                           26483.9
OtherPay                             16849.81
Benefits                             44900.25
TotalPay                            177249.39
TotalPayBenefits                    222149.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74562, dtype: object)
(74563, Id                          74564
EmployeeName         James T Onoe
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              43653.19
OtherPay                 19974.53
Benefits                 41539.51
TotalPay                180584.42
TotalPayBenefits        222123.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74563, dtype: object)
(74564, Id                               74565
EmployeeName                Yin B Chan
JobTitle            Transit Supervisor
BasePay                       91787.71
OvertimePay                   95110.65
OtherPay                       2683.03
Benefits                      32540.84
TotalPay                     189581.39
TotalPayBenefits             222122.23
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74564, dtype: object)
(74565, Id                                   74566
EmployeeName                  Mark S Jones
JobTitle            Supervising Pharmacist
BasePay                          169336.92
OvertimePay                            0.0
OtherPay                           6118.64
Benefits                          46639.94
TotalPay                         175455.56
TotalPayBenefits                  222095.5
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74565, dtype: object)
(74566, Id                              74567
EmployeeName        Gregory M Cutcher
JobTitle                Nurse Manager
BasePay                      158796.7
OvertimePay                       0.0
OtherPay                     15879.68
Benefits                      47407.9
TotalPay                    174676.38
TotalPayBenefits            222084.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74566, dtype: object)
(74567, Id                                       74568
EmployeeName                   Maxwell  Bunuan
JobTitle            Bldgs & Grounds Maint Supt
BasePay                              114249.03
OvertimePay                           26028.64
OtherPay                              42754.84
Benefits                              39041.51
TotalPay                             183032.51
TotalPayBenefits                     222074.02
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74567, dtype: object)
(74568, Id                                           74569
EmployeeName                      James P Kerrigan
JobTitle            Chf District Atty Investigator
BasePay                                  148252.21
OvertimePay                                    0.0
OtherPay                                  23747.11
Benefits                                  50072.38
TotalPay                                 171999.32
TotalPayBenefits                          222071.7
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74568, dtype: object)
(74569, Id                                      74570
EmployeeName                  Karen  Catalona
JobTitle            Attorney (Civil/Criminal)
BasePay                             173120.53
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47695.35
TotalPay                            174370.53
TotalPayBenefits                    222065.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74569, dtype: object)
(74570, Id                             74571
EmployeeName        Maureen P Barron
JobTitle                  Sergeant 3
BasePay                    142555.16
OvertimePay                  5456.27
OtherPay                    33288.31
Benefits                    40715.99
TotalPay                   181299.74
TotalPayBenefits           222015.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74570, dtype: object)
(74571, Id                                        74572
EmployeeName                Stuart J Washington
JobTitle            Senior Physician Specialist
BasePay                               167848.56
OvertimePay                                 0.0
OtherPay                                8392.51
Benefits                               45736.08
TotalPay                              176241.07
TotalPayBenefits                      221977.15
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74571, dtype: object)
(74572, Id                            74573
EmployeeName        Nicole M Greely
JobTitle               Lieutenant 3
BasePay                    84868.04
OvertimePay                 5133.76
OtherPay                  108951.96
Benefits                   22993.49
TotalPay                  198953.76
TotalPayBenefits          221947.25
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74572, dtype: object)
(74573, Id                             74574
EmployeeName        Maureen E Gannon
JobTitle                 Dep Dir III
BasePay                    166528.01
OvertimePay                      0.0
OtherPay                      1000.0
Benefits                    54407.26
TotalPay                   167528.01
TotalPayBenefits           221935.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74573, dtype: object)
(74574, Id                              74575
EmployeeName        Donald D Anderson
JobTitle                   Sergeant 3
BasePay                     133013.14
OvertimePay                  13621.36
OtherPay                     36255.91
Benefits                     39042.13
TotalPay                    182890.41
TotalPayBenefits            221932.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74574, dtype: object)
(74575, Id                            74576
EmployeeName        Rowena P Wilson
JobTitle                 Sergeant 3
BasePay                   143289.15
OvertimePay                22524.28
OtherPay                   14140.57
Benefits                   41969.27
TotalPay                   179954.0
TotalPayBenefits          221923.27
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74575, dtype: object)
(74576, Id                              74577
EmployeeName        Eileen  McCrystle
JobTitle              Insp, Fire Dept
BasePay                      139644.0
OvertimePay                  27890.05
OtherPay                     12102.48
Benefits                     42256.58
TotalPay                    179636.53
TotalPayBenefits            221893.11
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74576, dtype: object)
(74577, Id                               74578
EmployeeName           Genell D Hilton
JobTitle            Nurse Practitioner
BasePay                      156448.77
OvertimePay                    9615.04
OtherPay                       7754.76
Benefits                      48061.31
TotalPay                     173818.57
TotalPayBenefits             221879.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74577, dtype: object)
(74578, Id                                      74579
EmployeeName            Stephen E Silvestrich
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                          24548.13
OtherPay                             16906.81
Benefits                             45275.79
TotalPay                            176599.19
TotalPayBenefits                    221874.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74578, dtype: object)
(74579, Id                          74580
EmployeeName           Adam  Choy
JobTitle               Sergeant 3
BasePay                 142555.16
OvertimePay              11629.03
OtherPay                 26973.52
Benefits                 40696.82
TotalPay                181157.71
TotalPayBenefits        221854.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74579, dtype: object)
(74580, Id                               74581
EmployeeName             Steven W Seto
JobTitle            Transit Supervisor
BasePay                        94158.6
OvertimePay                   87657.29
OtherPay                       5991.55
Benefits                      33997.77
TotalPay                     187807.44
TotalPayBenefits             221805.21
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74580, dtype: object)
(74581, Id                                      74582
EmployeeName                 Danielle  Harris
JobTitle            Attorney (Civil/Criminal)
BasePay                              172848.5
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47679.11
TotalPay                             174098.5
TotalPayBenefits                    221777.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74581, dtype: object)
(74582, Id                            74583
EmployeeName        Michael S Craig
JobTitle                Firefighter
BasePay                   102048.79
OvertimePay                62746.61
OtherPay                    16495.3
Benefits                   40478.91
TotalPay                   181290.7
TotalPayBenefits          221769.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74582, dtype: object)
(74583, Id                          74584
EmployeeName         Dale M Riley
JobTitle               IS Manager
BasePay                 166299.51
OvertimePay                   0.0
OtherPay                   1000.0
Benefits                 54461.72
TotalPay                167299.51
TotalPayBenefits        221761.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74583, dtype: object)
(74584, Id                             74585
EmployeeName            Daniel  Gray
JobTitle            Police Officer 3
BasePay                     123471.1
OvertimePay                 54414.05
OtherPay                     6352.98
Benefits                    37506.95
TotalPay                   184238.13
TotalPayBenefits           221745.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74584, dtype: object)
(74585, Id                          74586
EmployeeName         Ivan C Gomez
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              46320.49
OtherPay                  18473.7
Benefits                 41044.35
TotalPay                180687.64
TotalPayBenefits        221731.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74585, dtype: object)
(74586, Id                                74587
EmployeeName        Michael J Mikolasek
JobTitle                  Nurse Manager
BasePay                       163264.02
OvertimePay                         0.0
OtherPay                       13224.42
Benefits                       45225.35
TotalPay                      176488.44
TotalPayBenefits              221713.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74586, dtype: object)
(74587, Id                               74588
EmployeeName        Michael D Nevin Jr
JobTitle                  Lieutenant 3
BasePay                      163674.08
OvertimePay                    8609.96
OtherPay                       4734.15
Benefits                      44660.87
TotalPay                     177018.19
TotalPayBenefits             221679.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74587, dtype: object)
(74588, Id                                      74589
EmployeeName               Heather A Trevisan
JobTitle            Attorney (Civil/Criminal)
BasePay                             172727.95
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47638.07
TotalPay                            173977.95
TotalPayBenefits                    221616.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74588, dtype: object)
(74589, Id                             74590
EmployeeName           Dustin L Daza
JobTitle            Police Officer 2
BasePay                    121628.51
OvertimePay                  36288.9
OtherPay                    26924.32
Benefits                    36748.48
TotalPay                   184841.73
TotalPayBenefits           221590.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74589, dtype: object)
(74590, Id                              74591
EmployeeName        Renota C Martinez
JobTitle                 Lieutenant 2
BasePay                     160650.01
OvertimePay                   7356.18
OtherPay                      9415.23
Benefits                     44123.54
TotalPay                    177421.42
TotalPayBenefits            221544.96
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74590, dtype: object)
(74591, Id                                     74592
EmployeeName        Katherine L Alba-Swanson
JobTitle                         Firefighter
BasePay                            116956.69
OvertimePay                         43261.81
OtherPay                            19918.02
Benefits                            41406.59
TotalPay                           180136.52
TotalPayBenefits                   221543.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 74591, dtype: object)
(74592, Id                                 74593
EmployeeName        Robert J Forester Jr
JobTitle                       Manager V
BasePay                        165733.82
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        55802.57
TotalPay                       165733.82
TotalPayBenefits               221536.39
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74592, dtype: object)
(74593, Id                               74594
EmployeeName        Jennifer E Jackson
JobTitle                  Lieutenant 3
BasePay                      163674.04
OvertimePay                    8171.92
OtherPay                       4954.61
Benefits                      44660.89
TotalPay                     176800.57
TotalPayBenefits             221461.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74593, dtype: object)
(74594, Id                                      74595
EmployeeName                   Michael D Kirk
JobTitle            EMT/Paramedic/Firefighter
BasePay                              135144.2
OvertimePay                          33850.78
OtherPay                              8824.17
Benefits                             43613.09
TotalPay                            177819.15
TotalPayBenefits                    221432.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74594, dtype: object)
(74595, Id                            74596
EmployeeName              Amy M Eng
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                13979.92
OtherPay                   26230.94
Benefits                   41539.01
TotalPay                  179854.86
TotalPayBenefits          221393.87
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74595, dtype: object)
(74596, Id                          74597
EmployeeName        Julia  Dawson
JobTitle               Dep Dir IV
BasePay                 166993.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 54394.43
TotalPay                166993.09
TotalPayBenefits        221387.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74596, dtype: object)
(74597, Id                              74598
EmployeeName          Jason H Jackson
JobTitle            Sheriff's Captain
BasePay                     150712.08
OvertimePay                  12883.67
OtherPay                     12906.49
Benefits                     44871.96
TotalPay                    176502.24
TotalPayBenefits             221374.2
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74597, dtype: object)
(74598, Id                             74599
EmployeeName           Steven H Uang
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 52498.14
OtherPay                     11199.7
Benefits                    36600.57
TotalPay                   184765.84
TotalPayBenefits           221366.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74598, dtype: object)
(74599, Id                                        74600
EmployeeName               Michael A De Lorenzo
JobTitle            Communications Systems Tech
BasePay                                109809.1
OvertimePay                            60080.18
OtherPay                               16258.75
Benefits                               35209.61
TotalPay                              186148.03
TotalPayBenefits                      221357.64
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74599, dtype: object)
(74600, Id                          74601
EmployeeName         Darryl S Loo
JobTitle              Firefighter
BasePay                 116203.59
OvertimePay              46526.11
OtherPay                 18034.82
Benefits                 40581.63
TotalPay                180764.52
TotalPayBenefits        221346.15
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74600, dtype: object)
(74601, Id                             74602
EmployeeName           Kevin A Byrne
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 48855.59
OtherPay                     14838.9
Benefits                    36571.11
TotalPay                    184762.5
TotalPayBenefits           221333.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74601, dtype: object)
(74602, Id                                         74603
EmployeeName                      Ramon  Serrano
JobTitle            Lieutenant, Fire Suppression
BasePay                                135503.44
OvertimePay                             23476.73
OtherPay                                17017.52
Benefits                                45306.05
TotalPay                               175997.69
TotalPayBenefits                       221303.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74602, dtype: object)
(74603, Id                             74604
EmployeeName          Michael A Hara
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 35699.86
OtherPay                    24966.67
Benefits                    37123.03
TotalPay                   184137.56
TotalPayBenefits           221260.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74603, dtype: object)
(74604, Id                           74605
EmployeeName        Marina  Chacon
JobTitle                Sergeant 3
BasePay                  143289.09
OvertimePay               16449.65
OtherPay                  20703.73
Benefits                  40811.26
TotalPay                 180442.47
TotalPayBenefits         221253.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74604, dtype: object)
(74605, Id                               74606
EmployeeName             Shelley S Hom
JobTitle            Nurse Practitioner
BasePay                       178848.0
OvertimePay                        0.0
OtherPay                        1550.0
Benefits                      40842.38
TotalPay                      180398.0
TotalPayBenefits             221240.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74605, dtype: object)
(74606, Id                                        74607
EmployeeName                    Deborah E Borne
JobTitle            Senior Physician Specialist
BasePay                               167954.86
OvertimePay                                 0.0
OtherPay                                 9180.0
Benefits                               44087.11
TotalPay                              177134.86
TotalPayBenefits                      221221.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74606, dtype: object)
(74607, Id                                        74608
EmployeeName                        Lisa  Inman
JobTitle            Senior Physician Specialist
BasePay                                142509.4
OvertimePay                                 0.0
OtherPay                               36775.63
Benefits                               41911.95
TotalPay                              179285.03
TotalPayBenefits                      221196.98
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74607, dtype: object)
(74608, Id                                         74609
EmployeeName                         Ricky A Yee
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                              23900.4
OtherPay                                17549.06
Benefits                                45037.77
TotalPay                               176116.96
TotalPayBenefits                       221154.73
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74608, dtype: object)
(74609, Id                          74610
EmployeeName            Dean  Lee
JobTitle               Sergeant 3
BasePay                 143289.22
OvertimePay               13848.8
OtherPay                 22920.52
Benefits                 41095.67
TotalPay                180058.54
TotalPayBenefits        221154.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74609, dtype: object)
(74610, Id                          74611
EmployeeName         Wendy J Bear
JobTitle               Sergeant 3
BasePay                 143289.08
OvertimePay              31540.37
OtherPay                  5507.98
Benefits                 40813.33
TotalPay                180337.43
TotalPayBenefits        221150.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74610, dtype: object)
(74611, Id                           74612
EmployeeName        Leslie  Holpit
JobTitle             Nurse Manager
BasePay                  159314.31
OvertimePay                    0.0
OtherPay                  15938.11
Benefits                  45898.32
TotalPay                 175252.42
TotalPayBenefits         221150.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74611, dtype: object)
(74612, Id                            74613
EmployeeName        Randy A Caturay
JobTitle               Lieutenant 3
BasePay                   163674.17
OvertimePay                 7591.71
OtherPay                    5199.45
Benefits                    44651.2
TotalPay                  176465.33
TotalPayBenefits          221116.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74612, dtype: object)
(74613, Id                          74614
EmployeeName         John P Keane
JobTitle              Inspector 3
BasePay                 143289.08
OvertimePay              32990.49
OtherPay                  3969.73
Benefits                 40795.91
TotalPay                 180249.3
TotalPayBenefits        221045.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74613, dtype: object)
(74614, Id                            74615
EmployeeName        Attica D Bowden
JobTitle            Lieut,Fire Prev
BasePay                   152820.08
OvertimePay                13574.12
OtherPay                   10466.73
Benefits                   44181.23
TotalPay                  176860.93
TotalPayBenefits          221042.16
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74614, dtype: object)
(74615, Id                              74616
EmployeeName          David P Myerson
JobTitle            Project Manager 3
BasePay                      172210.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     48772.15
TotalPay                     172210.5
TotalPayBenefits            220982.65
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74615, dtype: object)
(74616, Id                          74617
EmployeeName          Ken J Dever
JobTitle              Firefighter
BasePay                 110612.72
OvertimePay              57398.24
OtherPay                 14460.47
Benefits                 38496.38
TotalPay                182471.43
TotalPayBenefits        220967.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74616, dtype: object)
(74617, Id                              74618
EmployeeName          Carlie L Magill
JobTitle            Project Manager 3
BasePay                     172210.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     48755.25
TotalPay                    172210.53
TotalPayBenefits            220965.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74617, dtype: object)
(74618, Id                             74619
EmployeeName            Ryan J Jones
JobTitle            Police Officer 2
BasePay                    120048.01
OvertimePay                  41629.7
OtherPay                    22782.74
Benefits                     36502.6
TotalPay                   184460.45
TotalPayBenefits           220963.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74618, dtype: object)
(74619, Id                             74620
EmployeeName        Desmond J Cotter
JobTitle                 Firefighter
BasePay                    116987.76
OvertimePay                 44080.42
OtherPay                    18432.11
Benefits                    41434.12
TotalPay                   179500.29
TotalPayBenefits           220934.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74619, dtype: object)
(74620, Id                          74621
EmployeeName          Ricky M Hui
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              43570.16
OtherPay                 18978.78
Benefits                 41406.59
TotalPay                179505.67
TotalPayBenefits        220912.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74620, dtype: object)
(74621, Id                                   74622
EmployeeName        Christopher  McDaniels
JobTitle                        Manager VI
BasePay                          166528.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          54319.45
TotalPay                         166528.01
TotalPayBenefits                 220847.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74621, dtype: object)
(74622, Id                                         74623
EmployeeName                 Johnathan  Ashbrook
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.47
OvertimePay                             34486.43
OtherPay                                 8265.86
Benefits                                43420.44
TotalPay                               177419.76
TotalPayBenefits                        220840.2
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74622, dtype: object)
(74623, Id                          74624
EmployeeName         Albert N Lee
JobTitle               Sergeant 3
BasePay                 143289.11
OvertimePay              12500.93
OtherPay                 22312.66
Benefits                 42732.94
TotalPay                 178102.7
TotalPayBenefits        220835.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74623, dtype: object)
(74624, Id                             74625
EmployeeName             Steven  Lee
JobTitle            Manager VII, MTA
BasePay                    166528.07
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     54297.6
TotalPay                   166528.07
TotalPayBenefits           220825.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74624, dtype: object)
(74625, Id                          74626
EmployeeName          Sophia  Hom
JobTitle               Manager VI
BasePay                 166528.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  54297.6
TotalPay                166528.03
TotalPayBenefits        220825.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74625, dtype: object)
(74626, Id                          74627
EmployeeName         Anne M Okubo
JobTitle               Manager VI
BasePay                 166497.03
OvertimePay                   0.0
OtherPay                     31.0
Benefits                  54297.6
TotalPay                166528.03
TotalPayBenefits        220825.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74626, dtype: object)
(74627, Id                          74628
EmployeeName        Jo C Robinson
JobTitle               Manager IV
BasePay                 166497.02
OvertimePay                   0.0
OtherPay                     31.0
Benefits                  54297.6
TotalPay                166528.02
TotalPayBenefits        220825.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74627, dtype: object)
(74628, Id                          74629
EmployeeName        Bevan D Dufty
JobTitle               Manager VI
BasePay                  166528.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  54297.6
TotalPay                 166528.0
TotalPayBenefits         220825.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74628, dtype: object)
(74629, Id                            74630
EmployeeName        Spencer K Nakao
JobTitle                Firefighter
BasePay                   116956.74
OvertimePay                40081.99
OtherPay                   21938.13
Benefits                   41848.62
TotalPay                  178976.86
TotalPayBenefits          220825.48
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74629, dtype: object)
(74630, Id                           74631
EmployeeName        Marc H Deville
JobTitle               Firefighter
BasePay                  115893.47
OvertimePay                44503.8
OtherPay                  19360.22
Benefits                  41066.05
TotalPay                 179757.49
TotalPayBenefits         220823.54
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74630, dtype: object)
(74631, Id                          74632
EmployeeName        Aaron  Lozada
JobTitle               Sergeant 3
BasePay                 143289.15
OvertimePay              24546.98
OtherPay                 12190.88
Benefits                  40788.8
TotalPay                180027.01
TotalPayBenefits        220815.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74631, dtype: object)
(74632, Id                                        74633
EmployeeName                    Rajesh A Parekh
JobTitle            Senior Physician Specialist
BasePay                               166979.84
OvertimePay                                 0.0
OtherPay                                 8349.7
Benefits                               45431.67
TotalPay                              175329.54
TotalPayBenefits                      220761.21
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74632, dtype: object)
(74633, Id                           74634
EmployeeName        Pamela J Levin
JobTitle               Dep Dir III
BasePay                  166528.07
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  54199.06
TotalPay                 166528.07
TotalPayBenefits         220727.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74633, dtype: object)
(74634, Id                              74635
EmployeeName        Walter A Calcagno
JobTitle                   Manager VI
BasePay                     166528.06
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     54199.06
TotalPay                    166528.06
TotalPayBenefits            220727.12
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74634, dtype: object)
(74635, Id                             74636
EmployeeName         Diana L Hammons
JobTitle            Manager VII, MTA
BasePay                    166528.01
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    54199.06
TotalPay                   166528.01
TotalPayBenefits           220727.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74635, dtype: object)
(74636, Id                           74637
EmployeeName        Adrienne G Pon
JobTitle                Manager VI
BasePay                  166528.01
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  54199.06
TotalPay                 166528.01
TotalPayBenefits         220727.07
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74636, dtype: object)
(74637, Id                           74638
EmployeeName        Bruce R Storrs
JobTitle                Manager VI
BasePay                   166528.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  54199.06
TotalPay                  166528.0
TotalPayBenefits         220727.06
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74637, dtype: object)
(74638, Id                               74639
EmployeeName        Edwin  Batongbacal
JobTitle                    Manager VI
BasePay                       166497.0
OvertimePay                        0.0
OtherPay                          31.0
Benefits                      54199.06
TotalPay                      166528.0
TotalPayBenefits             220727.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74638, dtype: object)
(74639, Id                           74640
EmployeeName        Tetyana V Kemp
JobTitle                Manager VI
BasePay                  163958.64
OvertimePay                    0.0
OtherPay                    2500.0
Benefits                  54264.45
TotalPay                 166458.64
TotalPayBenefits         220723.09
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74639, dtype: object)
(74640, Id                             74641
EmployeeName        Sidney K Sakurai
JobTitle                 Inspector 3
BasePay                    148374.16
OvertimePay                 24623.71
OtherPay                     5370.85
Benefits                    42322.15
TotalPay                   178368.72
TotalPayBenefits           220690.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74640, dtype: object)
(74641, Id                                         74642
EmployeeName                       Marc T Kasper
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                             20906.82
OtherPay                                19651.41
Benefits                                45464.94
TotalPay                               175225.73
TotalPayBenefits                       220690.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74641, dtype: object)
(74642, Id                                         74643
EmployeeName                     Rocco  Pallante
JobTitle            Engineer/Architect Principal
BasePay                                173350.01
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                47333.23
TotalPay                               173350.01
TotalPayBenefits                       220683.24
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74642, dtype: object)
(74643, Id                          74644
EmployeeName        Jerry R Shear
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              43425.12
OtherPay                 18892.37
Benefits                 41406.59
TotalPay                 179274.2
TotalPayBenefits        220680.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74643, dtype: object)
(74644, Id                             74645
EmployeeName        Jeremy  Hallisey
JobTitle                  Manager VI
BasePay                    166489.61
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    54191.05
TotalPay                   166489.61
TotalPayBenefits           220680.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74644, dtype: object)
(74645, Id                              74646
EmployeeName        Jocelyn B Quintos
JobTitle                   Manager VI
BasePay                     166528.02
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     54127.28
TotalPay                    166528.02
TotalPayBenefits             220655.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74645, dtype: object)
(74646, Id                                74647
EmployeeName        Cornelius H Johnson
JobTitle                   Lieutenant 3
BasePay                       162139.64
OvertimePay                     7455.42
OtherPay                        5916.92
Benefits                       45115.59
TotalPay                      175511.98
TotalPayBenefits              220627.57
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74646, dtype: object)
(74647, Id                               74648
EmployeeName        Antonia C Malgieri
JobTitle                     Manager V
BasePay                       166299.3
OvertimePay                        0.0
OtherPay                         30.66
Benefits                       54259.5
TotalPay                     166329.96
TotalPayBenefits             220589.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74647, dtype: object)
(74648, Id                               74649
EmployeeName        Troy J Dangerfield
JobTitle                  Lieutenant 3
BasePay                      163674.02
OvertimePay                    5602.63
OtherPay                       6422.92
Benefits                      44887.27
TotalPay                     175699.57
TotalPayBenefits             220586.84
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74648, dtype: object)
(74649, Id                          74650
EmployeeName        Alex  Takaoka
JobTitle               Sergeant 3
BasePay                 143289.23
OvertimePay              25527.49
OtherPay                 10834.19
Benefits                 40928.09
TotalPay                179650.91
TotalPayBenefits         220579.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74649, dtype: object)
(74650, Id                                 74651
EmployeeName        Elizabeth A Gatewood
JobTitle              Nurse Practitioner
BasePay                         149133.6
OvertimePay                      19586.7
OtherPay                         3310.12
Benefits                        48538.03
TotalPay                       172030.42
TotalPayBenefits               220568.45
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74650, dtype: object)
(74651, Id                            74652
EmployeeName        Paul  Karawanny
JobTitle                 IS Manager
BasePay                   166299.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   54253.52
TotalPay                  166299.53
TotalPayBenefits          220553.05
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74651, dtype: object)
(74652, Id                           74653
EmployeeName        Anita  Sevilla
JobTitle                IS Manager
BasePay                  166299.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  54253.52
TotalPay                 166299.52
TotalPayBenefits         220553.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74652, dtype: object)
(74653, Id                          74654
EmployeeName        Kjeld  Molvig
JobTitle               IS Manager
BasePay                  166299.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 54253.52
TotalPay                 166299.5
TotalPayBenefits        220553.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74653, dtype: object)
(74654, Id                             74655
EmployeeName        Norman L Goldwyn
JobTitle                  IS Manager
BasePay                     166299.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    54253.52
TotalPay                    166299.5
TotalPayBenefits           220553.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74654, dtype: object)
(74655, Id                             74656
EmployeeName          Romulo L Adiao
JobTitle            Registered Nurse
BasePay                    138317.59
OvertimePay                  7742.08
OtherPay                    36624.34
Benefits                    37862.75
TotalPay                   182684.01
TotalPayBenefits           220546.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74655, dtype: object)
(74656, Id                              74657
EmployeeName        Eric H Washington
JobTitle                   Sergeant 3
BasePay                      143289.2
OvertimePay                  29835.36
OtherPay                      6627.64
Benefits                     40786.35
TotalPay                     179752.2
TotalPayBenefits            220538.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74656, dtype: object)
(74657, Id                              74658
EmployeeName        Monique E Webster
JobTitle             Manager VII, MTA
BasePay                     160415.35
OvertimePay                       0.0
OtherPay                      5866.12
Benefits                     54202.38
TotalPay                    166281.47
TotalPayBenefits            220483.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74657, dtype: object)
(74658, Id                               74659
EmployeeName                Betty K Ng
JobTitle            Nurse Practitioner
BasePay                       168688.5
OvertimePay                        0.0
OtherPay                        1450.0
Benefits                      50338.94
TotalPay                      170138.5
TotalPayBenefits             220477.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74658, dtype: object)
(74659, Id                          74660
EmployeeName        Marco C Bruno
JobTitle               IS Manager
BasePay                 166299.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 54154.98
TotalPay                166299.53
TotalPayBenefits        220454.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74659, dtype: object)
(74660, Id                          74661
EmployeeName         Nancy Y Wong
JobTitle               IS Manager
BasePay                 166299.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 54154.98
TotalPay                166299.51
TotalPayBenefits        220454.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74660, dtype: object)
(74661, Id                                 74662
EmployeeName        Frederick J McGregor
JobTitle                      IS Manager
BasePay                         166299.5
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        54145.88
TotalPay                        166299.5
TotalPayBenefits               220445.38
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74661, dtype: object)
(74662, Id                                      74663
EmployeeName                    Alvin E Selva
JobTitle            EMT/Paramedic/Firefighter
BasePay                             121753.19
OvertimePay                          44465.51
OtherPay                             13986.74
Benefits                             40201.04
TotalPay                            180205.44
TotalPayBenefits                    220406.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74662, dtype: object)
(74663, Id                          74664
EmployeeName        Rodney R Chan
JobTitle               Sergeant 3
BasePay                 142517.99
OvertimePay               9723.12
OtherPay                 27431.26
Benefits                 40688.08
TotalPay                179672.37
TotalPayBenefits        220360.45
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74663, dtype: object)
(74664, Id                               74665
EmployeeName               Julie K Tse
JobTitle            Nurse Practitioner
BasePay                      168237.02
OvertimePay                        0.0
OtherPay                        1500.0
Benefits                      50620.95
TotalPay                     169737.02
TotalPayBenefits             220357.97
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74664, dtype: object)
(74665, Id                                      74666
EmployeeName                  Megan C Franzen
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135125.82
OvertimePay                           33479.9
OtherPay                              8107.57
Benefits                             43607.37
TotalPay                            176713.29
TotalPayBenefits                    220320.66
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74665, dtype: object)
(74666, Id                             74667
EmployeeName              Uwem  Obot
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 56964.57
OtherPay                     5643.37
Benefits                    36571.11
TotalPay                   183675.94
TotalPayBenefits           220247.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74666, dtype: object)
(74667, Id                              74668
EmployeeName        Patrick T Griffin
JobTitle                   Sergeant 2
BasePay                      126892.0
OvertimePay                  20796.33
OtherPay                     34597.73
Benefits                      37924.3
TotalPay                    182286.06
TotalPayBenefits            220210.36
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74667, dtype: object)
(74668, Id                                      74669
EmployeeName                     Jana J Clark
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.02
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             38890.38
TotalPay                            181300.52
TotalPayBenefits                     220190.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74668, dtype: object)
(74669, Id                                 74670
EmployeeName             Naveena R Bobba
JobTitle            Physician Specialist
BasePay                        148419.22
OvertimePay                          0.0
OtherPay                        28883.52
Benefits                        42871.49
TotalPay                       177302.74
TotalPayBenefits               220174.23
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74669, dtype: object)
(74670, Id                                        74671
EmployeeName                     Eric R Jamison
JobTitle            Senior Physician Specialist
BasePay                               172605.98
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               47538.57
TotalPay                              172605.98
TotalPayBenefits                      220144.55
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74670, dtype: object)
(74671, Id                            74672
EmployeeName        Alexa L O'Brien
JobTitle               Lieutenant 3
BasePay                   163674.08
OvertimePay                 9985.74
OtherPay                    1696.33
Benefits                   44767.02
TotalPay                  175356.15
TotalPayBenefits          220123.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74671, dtype: object)
(74672, Id                               74673
EmployeeName        Nicholas C Buckley
JobTitle              Police Officer 2
BasePay                       120218.0
OvertimePay                   22525.82
OtherPay                      40623.37
Benefits                      36699.87
TotalPay                     183367.19
TotalPayBenefits             220067.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74672, dtype: object)
(74673, Id                           74674
EmployeeName        Yvonne L Pratt
JobTitle              Lieutenant 3
BasePay                  163674.04
OvertimePay                7463.85
OtherPay                   4303.47
Benefits                  44621.13
TotalPay                 175441.36
TotalPayBenefits         220062.49
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74673, dtype: object)
(74674, Id                             74675
EmployeeName           William B Pon
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 34356.54
OtherPay                    25190.07
Benefits                    37040.21
TotalPay                   183017.72
TotalPayBenefits           220057.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74674, dtype: object)
(74675, Id                             74676
EmployeeName        Steven M Mannina
JobTitle                Lieutenant 3
BasePay                    163674.02
OvertimePay                  7089.71
OtherPay                     4632.71
Benefits                    44641.01
TotalPay                   175396.44
TotalPayBenefits           220037.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74675, dtype: object)
(74676, Id                              74677
EmployeeName        Christopher  Woon
JobTitle                 Lieutenant 3
BasePay                     162919.02
OvertimePay                   6322.51
OtherPay                      6308.12
Benefits                     44487.42
TotalPay                    175549.65
TotalPayBenefits            220037.07
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74676, dtype: object)
(74677, Id                                         74678
EmployeeName                      Helen  Kieffer
JobTitle            Lieutenant, Fire Suppression
BasePay                                136243.75
OvertimePay                              31867.2
OtherPay                                  8174.7
Benefits                                43728.73
TotalPay                               176285.65
TotalPayBenefits                       220014.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74677, dtype: object)
(74678, Id                                         74679
EmployeeName                     Aisha E Krieger
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             20786.83
OtherPay                                17888.77
Benefits                                 45434.3
TotalPay                               174578.52
TotalPayBenefits                       220012.82
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74678, dtype: object)
(74679, Id                               74680
EmployeeName        Yulanda D Williams
JobTitle                    Sergeant 3
BasePay                      143289.18
OvertimePay                   22782.94
OtherPay                      12828.89
Benefits                      41103.56
TotalPay                     178901.01
TotalPayBenefits             220004.57
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74679, dtype: object)
(74680, Id                              74681
EmployeeName        Charles F Limbert
JobTitle                 Lieutenant 3
BasePay                     152763.06
OvertimePay                  11010.74
OtherPay                     13487.29
Benefits                     42719.65
TotalPay                    177261.09
TotalPayBenefits            219980.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74680, dtype: object)
(74681, Id                          74682
EmployeeName        Robert M Doss
JobTitle              Inspector 3
BasePay                  143289.0
OvertimePay              26562.11
OtherPay                  8644.88
Benefits                 41483.11
TotalPay                178495.99
TotalPayBenefits         219979.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74681, dtype: object)
(74682, Id                                         74683
EmployeeName                      George D Smith
JobTitle            Lieutenant, Fire Suppression
BasePay                                142488.24
OvertimePay                              17190.2
OtherPay                                15178.08
Benefits                                45106.19
TotalPay                               174856.52
TotalPayBenefits                       219962.71
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74682, dtype: object)
(74683, Id                               74684
EmployeeName        Andrew J Howard IV
JobTitle              Manager VII, MTA
BasePay                      159363.51
OvertimePay                        0.0
OtherPay                       9344.64
Benefits                      51208.76
TotalPay                     168708.15
TotalPayBenefits             219916.91
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74683, dtype: object)
(74684, Id                            74685
EmployeeName        Lindsey K Adams
JobTitle                 Manager VI
BasePay                   165713.99
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   54153.42
TotalPay                  165713.99
TotalPayBenefits          219867.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74684, dtype: object)
(74685, Id                                  74686
EmployeeName             Victor C Zarazua
JobTitle            IS Engineer-Principal
BasePay                          140889.0
OvertimePay                           0.0
OtherPay                         37912.34
Benefits                         41064.39
TotalPay                        178801.34
TotalPayBenefits                219865.73
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74685, dtype: object)
(74686, Id                               74687
EmployeeName           Jesse G Housley
JobTitle            Transit Supervisor
BasePay                        93481.2
OvertimePay                   82637.56
OtherPay                       9306.23
Benefits                       34421.8
TotalPay                     185424.99
TotalPayBenefits             219846.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74686, dtype: object)
(74687, Id                             74688
EmployeeName         Trent D Collins
JobTitle            Police Officer 2
BasePay                    105906.55
OvertimePay                 66141.96
OtherPay                    11360.44
Benefits                     36409.0
TotalPay                   183408.95
TotalPayBenefits           219817.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74687, dtype: object)
(74688, Id                                         74689
EmployeeName                   Stephen F Cassidy
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.45
OvertimePay                              9683.21
OtherPay                                28218.22
Benefits                                47208.29
TotalPay                               172568.88
TotalPayBenefits                       219777.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74688, dtype: object)
(74689, Id                            74690
EmployeeName        Edric D Talusan
JobTitle             Police Officer
BasePay                   115938.75
OvertimePay                59978.08
OtherPay                    8293.95
Benefits                   35531.63
TotalPay                  184210.78
TotalPayBenefits          219742.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74689, dtype: object)
(74690, Id                          74691
EmployeeName           Peter  Lee
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              41429.25
OtherPay                  19874.1
Benefits                 41456.71
TotalPay                178260.06
TotalPayBenefits        219716.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74690, dtype: object)
(74691, Id                             74692
EmployeeName         Kevin M Omalley
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 35357.03
OtherPay                    22648.14
Benefits                    38237.06
TotalPay                   181476.21
TotalPayBenefits           219713.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74691, dtype: object)
(74692, Id                                         74693
EmployeeName                  Joseph M Schiebold
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.99
OvertimePay                             13769.43
OtherPay                                23375.08
Benefits                                46660.51
TotalPay                                173047.5
TotalPayBenefits                       219708.01
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74692, dtype: object)
(74693, Id                          74694
EmployeeName        Seth J Riskin
JobTitle               Sergeant 3
BasePay                 143289.21
OvertimePay               5799.32
OtherPay                 28354.32
Benefits                 42238.14
TotalPay                177442.85
TotalPayBenefits        219680.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74693, dtype: object)
(74694, Id                              74695
EmployeeName         Takafumi M Ideta
JobTitle            Sheriff's Captain
BasePay                      150712.0
OvertimePay                   8327.23
OtherPay                      15816.8
Benefits                     44811.92
TotalPay                    174856.03
TotalPayBenefits            219667.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74694, dtype: object)
(74695, Id                                      74696
EmployeeName                  Brook  Mebrahtu
JobTitle            Architectural Associate 1
BasePay                              172210.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             47450.79
TotalPay                             172210.5
TotalPayBenefits                    219661.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74695, dtype: object)
(74696, Id                           74697
EmployeeName        Pilar E Torres
JobTitle                Sergeant 3
BasePay                  143289.14
OvertimePay                20272.3
OtherPay                  15206.08
Benefits                  40796.24
TotalPay                 178767.52
TotalPayBenefits         219563.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74696, dtype: object)
(74697, Id                          74698
EmployeeName          Joel S Soto
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              50446.99
OtherPay                 12152.73
Benefits                 39997.79
TotalPay                179556.43
TotalPayBenefits        219554.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74697, dtype: object)
(74698, Id                          74699
EmployeeName           Simon  Kim
JobTitle               Sergeant 3
BasePay                 143289.14
OvertimePay              28292.97
OtherPay                  7144.68
Benefits                 40786.36
TotalPay                178726.79
TotalPayBenefits        219513.15
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74698, dtype: object)
(74699, Id                           74700
EmployeeName        Bruce D Martin
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               41485.12
OtherPay                  19656.62
Benefits                  41406.59
TotalPay                 178098.46
TotalPayBenefits         219505.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74699, dtype: object)
(74700, Id                             74701
EmployeeName        Nancy P Barsotti
JobTitle                 Firefighter
BasePay                    117187.97
OvertimePay                 39096.09
OtherPay                    21582.76
Benefits                    41616.93
TotalPay                   177866.82
TotalPayBenefits           219483.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74700, dtype: object)
(74701, Id                          74702
EmployeeName        Marcia R Bell
JobTitle            Law Librarian
BasePay                 155687.41
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 63769.79
TotalPay                155687.41
TotalPayBenefits         219457.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74701, dtype: object)
(74702, Id                            74703
EmployeeName         Angela C Howes
JobTitle            Manager VI, MTA
BasePay                   165452.81
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   53992.74
TotalPay                  165452.81
TotalPayBenefits          219445.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74702, dtype: object)
(74703, Id                              74704
EmployeeName        Yolanda B Vallero
JobTitle             Registered Nurse
BasePay                      139260.0
OvertimePay                   8189.45
OtherPay                     31124.38
Benefits                     40855.41
TotalPay                    178573.83
TotalPayBenefits            219429.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74703, dtype: object)
(74704, Id                                      74705
EmployeeName                   Mark  Nicholas
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.25
OvertimePay                           22059.7
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            174096.96
TotalPayBenefits                    219369.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74704, dtype: object)
(74705, Id                                         74706
EmployeeName                         John  Grant
JobTitle            Lieutenant, Fire Suppression
BasePay                                136440.38
OvertimePay                              19535.0
OtherPay                                17770.62
Benefits                                45593.41
TotalPay                                173746.0
TotalPayBenefits                       219339.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74705, dtype: object)
(74706, Id                                     74707
EmployeeName        Maria Corazon V Munsayac
JobTitle                    Registered Nurse
BasePay                             138213.0
OvertimePay                          8407.96
OtherPay                            26831.66
Benefits                            45856.23
TotalPay                           173452.62
TotalPayBenefits                   219308.85
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 74706, dtype: object)
(74707, Id                            74708
EmployeeName        Gregory L Mayer
JobTitle                 Manager VI
BasePay                   165313.28
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   53983.26
TotalPay                  165313.28
TotalPayBenefits          219296.54
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74707, dtype: object)
(74708, Id                            74709
EmployeeName        Lydia M Faidiga
JobTitle                 Sergeant 3
BasePay                   129343.07
OvertimePay                26574.88
OtherPay                   25110.75
Benefits                   38248.41
TotalPay                   181028.7
TotalPayBenefits          219277.11
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74708, dtype: object)
(74709, Id                              74710
EmployeeName          Peter  Gabancho
JobTitle            Project Manager 3
BasePay                     172213.73
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     47060.57
TotalPay                    172213.73
TotalPayBenefits             219274.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74709, dtype: object)
(74710, Id                            74711
EmployeeName        Triscila F Cael
JobTitle             Assoc Engineer
BasePay                   172210.56
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   47050.05
TotalPay                  172210.56
TotalPayBenefits          219260.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74710, dtype: object)
(74711, Id                           74712
EmployeeName           Bessie  Tam
JobTitle            Assoc Engineer
BasePay                  172210.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  47050.04
TotalPay                 172210.55
TotalPayBenefits         219260.59
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74711, dtype: object)
(74712, Id                              74713
EmployeeName           David F Tsztoo
JobTitle            Project Manager 3
BasePay                     172210.54
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     47050.04
TotalPay                    172210.54
TotalPayBenefits            219260.58
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74712, dtype: object)
(74713, Id                          74714
EmployeeName           Joe H Chin
JobTitle                 Engineer
BasePay                 172210.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 47050.04
TotalPay                172210.53
TotalPayBenefits        219260.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74713, dtype: object)
(74714, Id                                       74715
EmployeeName                      Saed  Toloui
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              172210.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              47050.05
TotalPay                             172210.52
TotalPayBenefits                     219260.57
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74714, dtype: object)
(74715, Id                          74716
EmployeeName         Calvin  Huey
JobTitle                 Engineer
BasePay                 172210.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 47050.04
TotalPay                172210.52
TotalPayBenefits        219260.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74715, dtype: object)
(74716, Id                           74717
EmployeeName        Joseph L Ortiz
JobTitle            Assoc Engineer
BasePay                  172210.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  47050.04
TotalPay                 172210.51
TotalPayBenefits         219260.55
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74716, dtype: object)
(74717, Id                          74718
EmployeeName         Ramon S Kong
JobTitle                 Engineer
BasePay                  172210.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 47050.04
TotalPay                 172210.5
TotalPayBenefits        219260.54
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74717, dtype: object)
(74718, Id                             74719
EmployeeName        Ravi  Krishnaiah
JobTitle              Assoc Engineer
BasePay                     172210.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    47050.04
TotalPay                    172210.5
TotalPayBenefits           219260.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74718, dtype: object)
(74719, Id                                   74720
EmployeeName        Anastasios G Mavroudis
JobTitle                          Engineer
BasePay                           172210.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          47050.04
TotalPay                          172210.5
TotalPayBenefits                 219260.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74719, dtype: object)
(74720, Id                                           74721
EmployeeName                            Gin  Louie
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                               95662.74
OtherPay                                   9026.26
Benefits                                  31895.23
TotalPay                                  187363.9
TotalPayBenefits                         219259.13
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74720, dtype: object)
(74721, Id                           74722
EmployeeName        John P Sheehan
JobTitle                Sergeant 3
BasePay                  142555.16
OvertimePay                 6008.8
OtherPay                  30001.41
Benefits                  40693.66
TotalPay                 178565.37
TotalPayBenefits         219259.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74721, dtype: object)
(74722, Id                                      74723
EmployeeName                       Kerby  Lau
JobTitle            Captain, Fire Suppression
BasePay                             155174.46
OvertimePay                           6728.93
OtherPay                              9609.73
Benefits                             47724.91
TotalPay                            171513.12
TotalPayBenefits                    219238.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74722, dtype: object)
(74723, Id                                        74724
EmployeeName                    Christina J Lee
JobTitle            Senior Physician Specialist
BasePay                               173894.51
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               45340.51
TotalPay                              173894.51
TotalPayBenefits                      219235.02
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74723, dtype: object)
(74724, Id                               74725
EmployeeName        Joseph K McCloskey
JobTitle                    Sergeant 3
BasePay                      143289.18
OvertimePay                   19074.27
OtherPay                      15138.71
Benefits                      41719.81
TotalPay                     177502.16
TotalPayBenefits             219221.97
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74724, dtype: object)
(74725, Id                                   74726
EmployeeName                 Swati B Patel
JobTitle            Supervising Pharmacist
BasePay                          169336.86
OvertimePay                            0.0
OtherPay                           3216.43
Benefits                          46639.83
TotalPay                         172553.29
TotalPayBenefits                 219193.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74725, dtype: object)
(74726, Id                          74727
EmployeeName        Raymond  Cruz
JobTitle               Sergeant 3
BasePay                 143289.18
OvertimePay              12557.38
OtherPay                  22249.1
Benefits                 41081.52
TotalPay                178095.66
TotalPayBenefits        219177.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74726, dtype: object)
(74727, Id                             74728
EmployeeName             Carol K Kuo
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  8153.37
OtherPay                    34239.87
Benefits                    42748.67
TotalPay                   176421.24
TotalPayBenefits           219169.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74727, dtype: object)
(74728, Id                           74729
EmployeeName        Raymond L Lock
JobTitle                Sergeant 3
BasePay                  143289.13
OvertimePay               19076.45
OtherPay                  15096.57
Benefits                  41695.63
TotalPay                 177462.15
TotalPayBenefits         219157.78
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74728, dtype: object)
(74729, Id                          74730
EmployeeName          Mark A Cota
JobTitle             Lieutenant 3
BasePay                 163674.17
OvertimePay               5915.19
OtherPay                  4863.67
Benefits                 44696.44
TotalPay                174453.03
TotalPayBenefits        219149.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74729, dtype: object)
(74730, Id                             74731
EmployeeName        Minerva  Barrion
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  8153.37
OtherPay                    31874.23
Benefits                    45083.65
TotalPay                    174055.6
TotalPayBenefits           219139.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74730, dtype: object)
(74731, Id                              74732
EmployeeName        Victor C Gonzales
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  40242.34
OtherPay                     20531.13
Benefits                     41406.59
TotalPay                    177730.19
TotalPayBenefits            219136.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74731, dtype: object)
(74732, Id                          74733
EmployeeName         Jameson  Pon
JobTitle              Inspector 3
BasePay                 143289.05
OvertimePay              19397.52
OtherPay                 15095.98
Benefits                 41353.22
TotalPay                177782.55
TotalPayBenefits        219135.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74732, dtype: object)
(74733, Id                          74734
EmployeeName        Thomas  Fogle
JobTitle              Firefighter
BasePay                 116956.75
OvertimePay              40964.35
OtherPay                 19680.88
Benefits                 41511.25
TotalPay                177601.98
TotalPayBenefits        219113.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74733, dtype: object)
(74734, Id                             74735
EmployeeName        Ricardo H Valdez
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 37768.85
OtherPay                    20807.18
Benefits                    37055.22
TotalPay                   182047.17
TotalPayBenefits           219102.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74734, dtype: object)
(74735, Id                             74736
EmployeeName         David D Nastari
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 47559.18
OtherPay                      4964.5
Benefits                    38010.03
TotalPay                   181079.68
TotalPayBenefits           219089.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74735, dtype: object)
(74736, Id                                74737
EmployeeName             Florence C Toy
JobTitle            Clinical Pharmacist
BasePay                       165501.29
OvertimePay                         0.0
OtherPay                        6670.25
Benefits                       46872.94
TotalPay                      172171.54
TotalPayBenefits              219044.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74736, dtype: object)
(74737, Id                             74738
EmployeeName           Joan C Grippo
JobTitle            Registered Nurse
BasePay                    140319.62
OvertimePay                  4154.07
OtherPay                    25373.59
Benefits                    49171.82
TotalPay                   169847.28
TotalPayBenefits            219019.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74737, dtype: object)
(74738, Id                           74739
EmployeeName        Vincent  Davis
JobTitle               Firefighter
BasePay                  113907.91
OvertimePay               57054.63
OtherPay                   9728.56
Benefits                  38324.11
TotalPay                  180691.1
TotalPayBenefits         219015.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74738, dtype: object)
(74739, Id                          74740
EmployeeName        Dawn  Rosales
JobTitle              Firefighter
BasePay                 114221.52
OvertimePay              46651.91
OtherPay                 17865.63
Benefits                 40270.84
TotalPay                178739.06
TotalPayBenefits         219009.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74739, dtype: object)
(74740, Id                                   74741
EmployeeName              Jessica F Galens
JobTitle            Supervising Pharmacist
BasePay                          169311.36
OvertimePay                            0.0
OtherPay                           3066.95
Benefits                          46613.51
TotalPay                         172378.31
TotalPayBenefits                 218991.82
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74740, dtype: object)
(74741, Id                             74742
EmployeeName        Melissa M Fields
JobTitle             Lieut,Fire Prev
BasePay                    143548.02
OvertimePay                 21951.28
OtherPay                    10656.32
Benefits                    42777.56
TotalPay                   176155.62
TotalPayBenefits           218933.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74741, dtype: object)
(74742, Id                             74743
EmployeeName          Anadelia B Kim
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                   3798.0
OtherPay                    29426.18
Benefits                    43244.32
TotalPay                   175649.18
TotalPayBenefits            218893.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74742, dtype: object)
(74743, Id                               74744
EmployeeName        Teresita  Cosmiano
JobTitle              Registered Nurse
BasePay                       139260.0
OvertimePay                    5802.51
OtherPay                      25181.78
Benefits                       48644.0
TotalPay                     170244.29
TotalPayBenefits             218888.29
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74743, dtype: object)
(74744, Id                          74745
EmployeeName         Donny  Bendo
JobTitle              Firefighter
BasePay                 116951.83
OvertimePay              47284.27
OtherPay                 13993.71
Benefits                  40642.5
TotalPay                178229.81
TotalPayBenefits        218872.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74744, dtype: object)
(74745, Id                                74746
EmployeeName        Christopher M Giles
JobTitle               Police Officer 2
BasePay                       119028.01
OvertimePay                    52949.48
OtherPay                       10073.58
Benefits                       36802.42
TotalPay                      182051.07
TotalPayBenefits              218853.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74745, dtype: object)
(74746, Id                             74747
EmployeeName         Miriam T Isidro
JobTitle            Registered Nurse
BasePay                     140842.5
OvertimePay                  9811.52
OtherPay                    19738.42
Benefits                    48440.57
TotalPay                   170392.44
TotalPayBenefits           218833.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74746, dtype: object)
(74747, Id                                  74748
EmployeeName        David B Colclough III
JobTitle                 Police Officer 2
BasePay                         121068.01
OvertimePay                      50639.63
OtherPay                         10551.21
Benefits                         36571.11
TotalPay                        182258.85
TotalPayBenefits                218829.96
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74747, dtype: object)
(74748, Id                                         74749
EmployeeName                       Michael B Day
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                              25210.0
OtherPay                                13052.98
Benefits                                44634.69
TotalPay                               174165.93
TotalPayBenefits                       218800.62
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74748, dtype: object)
(74749, Id                                      74750
EmployeeName                Armando M Miranda
JobTitle            Attorney (Civil/Criminal)
BasePay                             170297.31
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47218.08
TotalPay                            171547.31
TotalPayBenefits                    218765.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74749, dtype: object)
(74750, Id                                      74751
EmployeeName               Azita  Ghafourpour
JobTitle            Attorney (Civil/Criminal)
BasePay                              170327.5
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47163.63
TotalPay                             171577.5
TotalPayBenefits                    218741.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74750, dtype: object)
(74751, Id                                         74752
EmployeeName                     Jonathan W Chow
JobTitle            Engineer/Architect Principal
BasePay                                172230.47
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 46506.8
TotalPay                               172230.47
TotalPayBenefits                       218737.27
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74751, dtype: object)
(74752, Id                          74753
EmployeeName            Tony S Ng
JobTitle               Sergeant 3
BasePay                 143289.02
OvertimePay              28931.41
OtherPay                  5676.05
Benefits                 40811.58
TotalPay                177896.48
TotalPayBenefits        218708.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74752, dtype: object)
(74753, Id                           74754
EmployeeName        Peter  Shields
JobTitle                Sergeant 3
BasePay                  143289.06
OvertimePay               17227.06
OtherPay                  17374.41
Benefits                  40797.63
TotalPay                 177890.53
TotalPayBenefits         218688.16
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74753, dtype: object)
(74754, Id                                74755
EmployeeName        Gianrico C Pierucci
JobTitle                    Inspector 3
BasePay                       143289.05
OvertimePay                    15706.31
OtherPay                       18350.37
Benefits                       41339.52
TotalPay                      177345.73
TotalPayBenefits              218685.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74754, dtype: object)
(74755, Id                            74756
EmployeeName        Andrew  Gleason
JobTitle                Firefighter
BasePay                    115170.9
OvertimePay                53098.79
OtherPay                   10956.75
Benefits                   39423.09
TotalPay                  179226.44
TotalPayBenefits          218649.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74755, dtype: object)
(74756, Id                                74757
EmployeeName        Albert J Johnson Jr
JobTitle               Police Officer 2
BasePay                        121068.0
OvertimePay                    53116.33
OtherPay                        7871.31
Benefits                       36571.11
TotalPay                      182055.64
TotalPayBenefits              218626.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74756, dtype: object)
(74757, Id                          74758
EmployeeName          Una  Bailey
JobTitle             Lieutenant 3
BasePay                 163674.02
OvertimePay               2339.56
OtherPay                  7921.81
Benefits                 44641.02
TotalPay                173935.39
TotalPayBenefits        218576.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74757, dtype: object)
(74758, Id                             74759
EmployeeName        Peggy W Sugarman
JobTitle                 Dep Dir III
BasePay                    163203.41
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     55340.9
TotalPay                   163203.41
TotalPayBenefits           218544.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74758, dtype: object)
(74759, Id                                 74760
EmployeeName           Kevin J McConnell
JobTitle            Sheriff's Lieutenant
BasePay                        131174.01
OvertimePay                     32467.43
OtherPay                        14061.46
Benefits                        40823.38
TotalPay                        177702.9
TotalPayBenefits               218526.28
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74759, dtype: object)
(74760, Id                             74761
EmployeeName          Steven C Ratto
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 44275.97
OtherPay                    12383.59
Benefits                    38380.12
TotalPay                   180130.71
TotalPayBenefits           218510.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74760, dtype: object)
(74761, Id                              74762
EmployeeName            Candace A Sue
JobTitle            Manager VIII, MTA
BasePay                      164467.6
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     53942.23
TotalPay                     164467.6
TotalPayBenefits            218409.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74761, dtype: object)
(74762, Id                          74763
EmployeeName          Thomas S Ly
JobTitle               Sergeant 2
BasePay                  126892.0
OvertimePay              40585.22
OtherPay                  13063.5
Benefits                  37840.8
TotalPay                180540.72
TotalPayBenefits        218381.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74762, dtype: object)
(74763, Id                             74764
EmployeeName              Jason  Hui
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 44480.52
OtherPay                     7340.56
Benefits                     37997.5
TotalPay                   180377.08
TotalPayBenefits           218374.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74763, dtype: object)
(74764, Id                                74765
EmployeeName        Christopher E Hayes
JobTitle               Police Officer 3
BasePay                       123471.08
OvertimePay                    47934.45
OtherPay                        9932.76
Benefits                       37034.36
TotalPay                      181338.29
TotalPayBenefits              218372.65
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74764, dtype: object)
(74765, Id                             74766
EmployeeName        Theresa  Fogarty
JobTitle             Insp, Fire Dept
BasePay                     139644.0
OvertimePay                 28679.38
OtherPay                     8378.64
Benefits                    41668.21
TotalPay                   176702.02
TotalPayBenefits           218370.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74765, dtype: object)
(74766, Id                            74767
EmployeeName        Richard L Lopes
JobTitle                Firefighter
BasePay                    116956.7
OvertimePay                41072.96
OtherPay                   19010.74
Benefits                   41308.66
TotalPay                   177040.4
TotalPayBenefits          218349.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74766, dtype: object)
(74767, Id                                 74768
EmployeeName               Ronald  Terry
JobTitle            Sheriff's Lieutenant
BasePay                        131410.21
OvertimePay                     21440.18
OtherPay                         21240.0
Benefits                        44256.31
TotalPay                       174090.39
TotalPayBenefits                218346.7
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74767, dtype: object)
(74768, Id                           74769
EmployeeName        Lori A Cadigan
JobTitle               Inspector 3
BasePay                  143289.11
OvertimePay               13754.94
OtherPay                  20018.28
Benefits                   41262.3
TotalPay                 177062.33
TotalPayBenefits         218324.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74768, dtype: object)
(74769, Id                             74770
EmployeeName        William J Elieff
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 38735.81
OtherPay                    19052.56
Benefits                    37035.85
TotalPay                   181259.42
TotalPayBenefits           218295.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74769, dtype: object)
(74770, Id                                      74771
EmployeeName                     John G White
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.03
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             36981.16
TotalPay                            181300.53
TotalPayBenefits                    218281.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74770, dtype: object)
(74771, Id                                      74772
EmployeeName            Rebecca  Marcus-Woods
JobTitle            Attorney (Civil/Criminal)
BasePay                              180051.0
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             36921.44
TotalPay                             181301.0
TotalPayBenefits                    218222.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74771, dtype: object)
(74772, Id                                74773
EmployeeName        Jeffrey S Rosenberg
JobTitle               Police Officer 2
BasePay                        121068.0
OvertimePay                    41982.29
OtherPay                       18551.91
Benefits                       36600.58
TotalPay                       181602.2
TotalPayBenefits              218202.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74772, dtype: object)
(74773, Id                                      74774
EmployeeName           Michele  Dawson-Talley
JobTitle            Attorney (Civil/Criminal)
BasePay                             169814.12
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             47132.53
TotalPay                            171064.12
TotalPayBenefits                    218196.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74773, dtype: object)
(74774, Id                                           74775
EmployeeName                       Martin J Krizay
JobTitle            Chief Dep Adlt Prob Of (SFERS)
BasePay                                   162953.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  55241.99
TotalPay                                  162953.5
TotalPayBenefits                         218195.49
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74774, dtype: object)
(74775, Id                          74776
EmployeeName         Tyrone T Jue
JobTitle               Manager VI
BasePay                 164290.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 53896.26
TotalPay                164290.55
TotalPayBenefits        218186.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74775, dtype: object)
(74776, Id                             74777
EmployeeName        Ofelia  Thompson
JobTitle            Registered Nurse
BasePay                    141633.75
OvertimePay                  8308.14
OtherPay                    19359.72
Benefits                    48883.88
TotalPay                   169301.61
TotalPayBenefits           218185.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74776, dtype: object)
(74777, Id                          74778
EmployeeName        Luke T Martin
JobTitle             Lieutenant 3
BasePay                 151676.03
OvertimePay               15278.4
OtherPay                  8704.64
Benefits                  42496.0
TotalPay                175659.07
TotalPayBenefits        218155.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74777, dtype: object)
(74778, Id                              74779
EmployeeName        Christopher  Yock
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  38994.08
OtherPay                     20410.78
Benefits                     41750.23
TotalPay                    176361.59
TotalPayBenefits            218111.82
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74778, dtype: object)
(74779, Id                               74780
EmployeeName            Diane C Putney
JobTitle            Nurse Practitioner
BasePay                      166406.64
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      51442.08
TotalPay                     166656.64
TotalPayBenefits             218098.72
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74779, dtype: object)
(74780, Id                          74781
EmployeeName        Julie A Lynch
JobTitle               Sergeant 3
BasePay                 143289.04
OvertimePay              25394.87
OtherPay                  8492.56
Benefits                 40881.14
TotalPay                177176.47
TotalPayBenefits        218057.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74780, dtype: object)
(74781, Id                          74782
EmployeeName         Liza D Tiffe
JobTitle               Sergeant 3
BasePay                  140724.0
OvertimePay              29328.73
OtherPay                  7655.19
Benefits                 40327.86
TotalPay                177707.92
TotalPayBenefits        218035.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74781, dtype: object)
(74782, Id                              74783
EmployeeName        Maribeth R Jensen
JobTitle                  Firefighter
BasePay                     115893.49
OvertimePay                  41999.38
OtherPay                     19085.15
Benefits                     41044.37
TotalPay                    176978.02
TotalPayBenefits            218022.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74782, dtype: object)
(74783, Id                             74784
EmployeeName        Erik R Zammarchi
JobTitle                 Firefighter
BasePay                    115893.46
OvertimePay                 40757.59
OtherPay                    20108.16
Benefits                    41241.07
TotalPay                   176759.21
TotalPayBenefits           218000.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74783, dtype: object)
(74784, Id                              74785
EmployeeName        Steven L Matthias
JobTitle             Police Officer 3
BasePay                     123471.14
OvertimePay                  53713.14
OtherPay                      3755.75
Benefits                     37055.22
TotalPay                    180940.03
TotalPayBenefits            217995.25
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74784, dtype: object)
(74785, Id                                      74786
EmployeeName                   Kenneth H Dunn
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.64
OvertimePay                          22338.71
OtherPay                             16839.44
Benefits                             44877.83
TotalPay                            173093.79
TotalPayBenefits                    217971.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74785, dtype: object)
(74786, Id                                         74787
EmployeeName                       Peter L Gross
JobTitle            Lieutenant, Fire Suppression
BasePay                                143467.91
OvertimePay                              8907.99
OtherPay                                18596.89
Benefits                                46978.62
TotalPay                               170972.79
TotalPayBenefits                       217951.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74786, dtype: object)
(74787, Id                          74788
EmployeeName          Marc H Chan
JobTitle               Sergeant 3
BasePay                 142555.12
OvertimePay               6531.47
OtherPay                 28181.14
Benefits                 40658.48
TotalPay                177267.73
TotalPayBenefits        217926.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74787, dtype: object)
(74788, Id                                        74789
EmployeeName                    Timothy F Lipps
JobTitle            Trnst Power Line Wrk Sprv 2
BasePay                               115796.02
OvertimePay                             66006.1
OtherPay                                  10.04
Benefits                               36111.06
TotalPay                              181812.16
TotalPayBenefits                      217923.22
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74788, dtype: object)
(74789, Id                              74790
EmployeeName        Brendan D Cormack
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                   39942.4
OtherPay                     19563.59
Benefits                      41437.8
TotalPay                    176462.71
TotalPayBenefits            217900.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74789, dtype: object)
(74790, Id                              74791
EmployeeName        Daniel E Gonzales
JobTitle                   Manager VI
BasePay                      164244.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     53637.56
TotalPay                     164244.5
TotalPayBenefits            217882.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74790, dtype: object)
(74791, Id                             74792
EmployeeName        Robert J Coleman
JobTitle                 Firefighter
BasePay                    116956.69
OvertimePay                 32974.55
OtherPay                    25499.07
Benefits                     42427.2
TotalPay                   175430.31
TotalPayBenefits           217857.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74791, dtype: object)
(74792, Id                             74793
EmployeeName         Luis P De Jesus
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 35812.69
OtherPay                    24156.23
Benefits                     36820.2
TotalPay                   181036.92
TotalPayBenefits           217857.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74792, dtype: object)
(74793, Id                            74794
EmployeeName        Michelle L Jean
JobTitle               Lieutenant 3
BasePay                   163674.01
OvertimePay                 5775.52
OtherPay                    3247.57
Benefits                    45127.1
TotalPay                   172697.1
TotalPayBenefits           217824.2
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74793, dtype: object)
(74794, Id                                         74795
EmployeeName                    Daniel B Griffin
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135378.0
OvertimePay                                  0.0
OtherPay                                41716.48
Benefits                                40683.57
TotalPay                               177094.48
TotalPayBenefits                       217778.05
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74794, dtype: object)
(74795, Id                           74796
EmployeeName        Nancy C Alfaro
JobTitle               Dep Dir III
BasePay                  164359.92
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  53395.67
TotalPay                 164359.92
TotalPayBenefits         217755.59
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74795, dtype: object)
(74796, Id                          74797
EmployeeName          Jody L Kato
JobTitle               Sergeant 3
BasePay                 143289.19
OvertimePay               6794.83
OtherPay                 25085.72
Benefits                 42583.04
TotalPay                175169.74
TotalPayBenefits        217752.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74796, dtype: object)
(74797, Id                          74798
EmployeeName          Kim L Lewis
JobTitle              Inspector 3
BasePay                  143289.1
OvertimePay              27876.65
OtherPay                  5231.02
Benefits                 41337.78
TotalPay                176396.77
TotalPayBenefits        217734.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74797, dtype: object)
(74798, Id                                74799
EmployeeName                 Joyce A Go
JobTitle            Clinical Pharmacist
BasePay                        161757.0
OvertimePay                      1258.1
OtherPay                        8207.67
Benefits                       46479.29
TotalPay                      171222.77
TotalPayBenefits              217702.06
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74798, dtype: object)
(74799, Id                                         74800
EmployeeName                   Chadwick C Ertola
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                             29138.84
OtherPay                                 8869.76
Benefits                                43765.03
TotalPay                               173911.56
TotalPayBenefits                       217676.59
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74799, dtype: object)
(74800, Id                            74801
EmployeeName        James R Kimball
JobTitle                Firefighter
BasePay                    62731.31
OvertimePay                44329.37
OtherPay                   86940.42
Benefits                   23657.08
TotalPay                   194001.1
TotalPayBenefits          217658.18
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74800, dtype: object)
(74801, Id                               74802
EmployeeName        Nicholas  Ferrando
JobTitle              Police Officer 3
BasePay                      123471.17
OvertimePay                   42314.52
OtherPay                      14798.61
Benefits                      37055.22
TotalPay                      180584.3
TotalPayBenefits             217639.52
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74801, dtype: object)
(74802, Id                               74803
EmployeeName            Annette  Burns
JobTitle            Nurse Practitioner
BasePay                       165217.7
OvertimePay                        0.0
OtherPay                       3429.08
Benefits                       48962.5
TotalPay                     168646.78
TotalPayBenefits             217609.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74802, dtype: object)
(74803, Id                           74804
EmployeeName          Joselito  Sy
JobTitle            Police Officer
BasePay                   116478.0
OvertimePay               59243.41
OtherPay                   6142.41
Benefits                  35718.05
TotalPay                 181863.82
TotalPayBenefits         217581.87
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74803, dtype: object)
(74804, Id                                         74805
EmployeeName                   Annie L Hoddinott
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             19990.63
OtherPay                                16345.51
Benefits                                45340.04
TotalPay                               172239.06
TotalPayBenefits                        217579.1
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74804, dtype: object)
(74805, Id                               74806
EmployeeName        Joshua Ely  Cusick
JobTitle                   Firefighter
BasePay                       116956.7
OvertimePay                   47540.65
OtherPay                      12997.98
Benefits                      40080.59
TotalPay                     177495.33
TotalPayBenefits             217575.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74805, dtype: object)
(74806, Id                                     74807
EmployeeName                Marcus  Santiago
JobTitle            Head Park Patrol Officer
BasePay                             76042.64
OvertimePay                        102301.67
OtherPay                            10142.14
Benefits                            29079.18
TotalPay                           188486.45
TotalPayBenefits                   217565.63
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 74806, dtype: object)
(74807, Id                                        74808
EmployeeName                    Justin H Schorr
JobTitle            Captain, Emergency Med Svcs
BasePay                               154575.01
OvertimePay                             9125.38
OtherPay                                 9274.5
Benefits                               44533.14
TotalPay                              172974.89
TotalPayBenefits                      217508.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74807, dtype: object)
(74808, Id                                74809
EmployeeName        Kathryn M Cardinale
JobTitle                    Firefighter
BasePay                        127392.1
OvertimePay                    39266.72
OtherPay                        8660.21
Benefits                       42153.51
TotalPay                      175319.03
TotalPayBenefits              217472.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74808, dtype: object)
(74809, Id                              74810
EmployeeName        Michael D Burkley
JobTitle                   Sergeant 3
BasePay                      143289.1
OvertimePay                  15757.83
OtherPay                     15862.15
Benefits                     42559.28
TotalPay                    174909.08
TotalPayBenefits            217468.36
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74809, dtype: object)
(74810, Id                                74811
EmployeeName        Villamor F Corrales
JobTitle               Registered Nurse
BasePay                       136986.02
OvertimePay                     1787.04
OtherPay                       29016.34
Benefits                       49677.18
TotalPay                       167789.4
TotalPayBenefits              217466.58
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74810, dtype: object)
(74811, Id                           74812
EmployeeName        Edward D Banks
JobTitle               Firefighter
BasePay                  115893.47
OvertimePay               41331.46
OtherPay                  19191.42
Benefits                  41044.37
TotalPay                 176416.35
TotalPayBenefits         217460.72
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74811, dtype: object)
(74812, Id                                        74813
EmployeeName                  Frederick M Salan
JobTitle            Captain, Emergency Med Svcs
BasePay                               152108.05
OvertimePay                             2242.98
OtherPay                               15435.31
Benefits                               47672.08
TotalPay                              169786.34
TotalPayBenefits                      217458.42
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74812, dtype: object)
(74813, Id                          74814
EmployeeName        Raj P Vaswani
JobTitle             Lieutenant 3
BasePay                 163674.06
OvertimePay               7421.23
OtherPay                  1658.08
Benefits                 44660.87
TotalPay                172753.37
TotalPayBenefits        217414.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74813, dtype: object)
(74814, Id                                        74815
EmployeeName                    Lawrence T Chau
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            58181.55
OtherPay                               16182.22
Benefits                               37523.07
TotalPay                              179877.27
TotalPayBenefits                      217400.34
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74814, dtype: object)
(74815, Id                          74816
EmployeeName        Antonio  Lugo
JobTitle               Manager VI
BasePay                 163708.93
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 53672.01
TotalPay                163708.93
TotalPayBenefits        217380.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74815, dtype: object)
(74816, Id                                      74817
EmployeeName                   Damon  O'Brien
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.22
OvertimePay                          20895.62
OtherPay                             16181.19
Benefits                             45147.11
TotalPay                            172221.03
TotalPayBenefits                    217368.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74816, dtype: object)
(74817, Id                             74818
EmployeeName        Maricela  Sainez
JobTitle                  Sergeant 3
BasePay                    143289.04
OvertimePay                 25492.28
OtherPay                     7738.72
Benefits                    40817.81
TotalPay                   176520.04
TotalPayBenefits           217337.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74817, dtype: object)
(74818, Id                                      74819
EmployeeName                  Natasha J Parks
JobTitle            Captain, Fire Suppression
BasePay                              155174.5
OvertimePay                           4485.96
OtherPay                              10025.9
Benefits                             47625.05
TotalPay                            169686.36
TotalPayBenefits                    217311.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74818, dtype: object)
(74819, Id                                      74820
EmployeeName               Christopher S Chen
JobTitle            Attorney (Civil/Criminal)
BasePay                              167609.5
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             48430.64
TotalPay                             168859.0
TotalPayBenefits                    217289.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74819, dtype: object)
(74820, Id                               74821
EmployeeName        Hector M Jusino Jr
JobTitle                    Sergeant 3
BasePay                      143289.14
OvertimePay                   11470.11
OtherPay                      20547.43
Benefits                      41922.46
TotalPay                     175306.68
TotalPayBenefits             217229.14
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74820, dtype: object)
(74821, Id                          74822
EmployeeName        Paula A Kehoe
JobTitle               Manager IV
BasePay                 163591.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 53636.21
TotalPay                163591.12
TotalPayBenefits        217227.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74821, dtype: object)
(74822, Id                               74823
EmployeeName        Shirley V Gervacio
JobTitle              Registered Nurse
BasePay                       142425.0
OvertimePay                    5222.28
OtherPay                      20596.79
Benefits                      48959.33
TotalPay                     168244.07
TotalPayBenefits              217203.4
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74822, dtype: object)
(74823, Id                          74824
EmployeeName        Lisa M Frazer
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              16337.65
OtherPay                 16801.91
Benefits                 40769.57
TotalPay                176428.68
TotalPayBenefits        217198.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74823, dtype: object)
(74824, Id                            74825
EmployeeName        Stephen M Roche
JobTitle                 Sergeant 3
BasePay                    67719.21
OvertimePay                14916.85
OtherPay                  115666.19
Benefits                   18876.74
TotalPay                  198302.25
TotalPayBenefits          217178.99
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74824, dtype: object)
(74825, Id                          74826
EmployeeName         Eigil  Qwist
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              40309.56
OtherPay                 18590.32
Benefits                 41304.45
TotalPay                175856.58
TotalPayBenefits        217161.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74825, dtype: object)
(74826, Id                            74827
EmployeeName        Timothy D Paine
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                12738.88
OtherPay                   19830.64
Benefits                   41243.65
TotalPay                  175858.63
TotalPayBenefits          217102.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74826, dtype: object)
(74827, Id                             74828
EmployeeName           Charles  Wong
JobTitle            Police Officer 3
BasePay                    123471.09
OvertimePay                 44181.42
OtherPay                    12377.24
Benefits                    37055.36
TotalPay                   180029.75
TotalPayBenefits           217085.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74827, dtype: object)
(74828, Id                                           74829
EmployeeName                     Daniel E Decossio
JobTitle            Capt,Fire Prev or Fire Invsgtn
BasePay                                   156840.0
OvertimePay                                5781.88
OtherPay                                    9410.4
Benefits                                  45047.08
TotalPay                                 172032.28
TotalPayBenefits                         217079.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 74828, dtype: object)
(74829, Id                          74830
EmployeeName        Kevin M Horan
JobTitle               Sergeant 3
BasePay                 142719.06
OvertimePay               14380.3
OtherPay                 18922.95
Benefits                 41046.44
TotalPay                176022.31
TotalPayBenefits        217068.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74829, dtype: object)
(74830, Id                             74831
EmployeeName         Joseph P Coggan
JobTitle            Police Officer 3
BasePay                     114264.0
OvertimePay                      0.0
OtherPay                     67925.0
Benefits                    34824.02
TotalPay                    182189.0
TotalPayBenefits           217013.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74830, dtype: object)
(74831, Id                                      74832
EmployeeName                    John  Christy
JobTitle            EMT/Paramedic/Firefighter
BasePay                              134622.0
OvertimePay                               0.0
OtherPay                             41857.47
Benefits                              40531.8
TotalPay                            176479.47
TotalPayBenefits                    217011.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74831, dtype: object)
(74832, Id                          74833
EmployeeName        Kevin B Walsh
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay              45349.91
OtherPay                 15428.39
Benefits                 40337.51
TotalPay                176671.77
TotalPayBenefits        217009.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74832, dtype: object)
(74833, Id                             74834
EmployeeName        Brian E Schaffer
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 36608.49
OtherPay                    19871.82
Benefits                    37055.22
TotalPay                   179951.45
TotalPayBenefits           217006.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74833, dtype: object)
(74834, Id                               74835
EmployeeName           Gerardo A Pinto
JobTitle            Transit Supervisor
BasePay                        92126.4
OvertimePay                   89145.01
OtherPay                       3021.84
Benefits                      32710.64
TotalPay                     184293.25
TotalPayBenefits             217003.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74834, dtype: object)
(74835, Id                                  74836
EmployeeName        Raquel M Nicdao-Icban
JobTitle                 Registered Nurse
BasePay                         142425.01
OvertimePay                       9574.18
OtherPay                         20569.05
Benefits                         44413.16
TotalPay                        172568.24
TotalPayBenefits                 216981.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74835, dtype: object)
(74836, Id                              74837
EmployeeName        Shelby L Campbell
JobTitle                    Manager V
BasePay                     162018.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     54955.22
TotalPay                    162018.51
TotalPayBenefits            216973.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74836, dtype: object)
(74837, Id                          74838
EmployeeName        Lisa M Ghotbi
JobTitle              Dep Dir III
BasePay                 164378.47
OvertimePay                   0.0
OtherPay                   7538.5
Benefits                 45029.23
TotalPay                171916.97
TotalPayBenefits         216946.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74837, dtype: object)
(74838, Id                                      74839
EmployeeName                Michael  Hoelsken
JobTitle            EMT/Paramedic/Firefighter
BasePay                              134811.5
OvertimePay                          22490.23
OtherPay                             15980.87
Benefits                             43649.01
TotalPay                             173282.6
TotalPayBenefits                    216931.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74838, dtype: object)
(74839, Id                             74840
EmployeeName            Ana  Morales
JobTitle            Police Officer 3
BasePay                    123471.23
OvertimePay                 49897.97
OtherPay                     6287.57
Benefits                    37264.98
TotalPay                   179656.77
TotalPayBenefits           216921.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74839, dtype: object)
(74840, Id                          74841
EmployeeName        Sean  Griffin
JobTitle               Sergeant 3
BasePay                 143289.18
OvertimePay              18440.34
OtherPay                 14408.79
Benefits                 40769.62
TotalPay                176138.31
TotalPayBenefits        216907.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74840, dtype: object)
(74841, Id                          74842
EmployeeName           David Q Do
JobTitle               Sergeant 3
BasePay                 143289.03
OvertimePay              20083.71
OtherPay                 12672.39
Benefits                 40811.58
TotalPay                176045.13
TotalPayBenefits        216856.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74841, dtype: object)
(74842, Id                               74843
EmployeeName        Arlin J Vanderbilt
JobTitle                    Sergeant 3
BasePay                      143289.21
OvertimePay                   17970.08
OtherPay                      14094.58
Benefits                       41496.3
TotalPay                     175353.87
TotalPayBenefits             216850.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74842, dtype: object)
(74843, Id                               74844
EmployeeName        Pureza  Panlasigui
JobTitle              Registered Nurse
BasePay                      142408.52
OvertimePay                    7833.42
OtherPay                      18019.92
Benefits                       48578.6
TotalPay                     168261.86
TotalPayBenefits             216840.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74843, dtype: object)
(74844, Id                                      74845
EmployeeName                Kulvindar K Singh
JobTitle            Attorney (Civil/Criminal)
BasePay                             180051.05
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             35473.34
TotalPay                            181301.05
TotalPayBenefits                    216774.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74844, dtype: object)
(74845, Id                              74846
EmployeeName        Gregory K Simpson
JobTitle                  Firefighter
BasePay                      97584.01
OvertimePay                  36447.08
OtherPay                     47821.42
Benefits                     34789.32
TotalPay                    181852.51
TotalPayBenefits            216641.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74845, dtype: object)
(74846, Id                          74847
EmployeeName          Carlos  Hoy
JobTitle              Firefighter
BasePay                 105261.07
OvertimePay              48419.93
OtherPay                 23830.97
Benefits                  39112.8
TotalPay                177511.97
TotalPayBenefits        216624.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74846, dtype: object)
(74847, Id                                        74848
EmployeeName                         Lisa D Hoo
JobTitle            Senior Physician Specialist
BasePay                               172121.65
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               44502.18
TotalPay                              172121.65
TotalPayBenefits                      216623.83
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74847, dtype: object)
(74848, Id                                  74849
EmployeeName        Catherine A Spaulding
JobTitle                        Manager V
BasePay                         162968.21
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         53614.98
TotalPay                        162968.21
TotalPayBenefits                216583.19
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74848, dtype: object)
(74849, Id                          74850
EmployeeName        Lorge R Quant
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              38692.92
OtherPay                  19510.4
Benefits                 41406.58
TotalPay                175160.02
TotalPayBenefits         216566.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74849, dtype: object)
(74850, Id                             74851
EmployeeName              Alan F Hom
JobTitle            Police Officer 3
BasePay                      86887.0
OvertimePay                 19928.48
OtherPay                    83664.55
Benefits                    26042.48
TotalPay                   190480.03
TotalPayBenefits           216522.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74850, dtype: object)
(74851, Id                           74852
EmployeeName        Donna L Kotake
JobTitle                Dep Dir II
BasePay                  162953.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  53566.97
TotalPay                 162953.54
TotalPayBenefits         216520.51
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74851, dtype: object)
(74852, Id                                       74853
EmployeeName                Michael L Williams
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153859.48
OvertimePay                              517.2
OtherPay                              18333.45
Benefits                              43777.92
TotalPay                             172710.13
TotalPayBenefits                     216488.05
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74852, dtype: object)
(74853, Id                          74854
EmployeeName        Mark L Macias
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              31697.66
OtherPay                  24985.1
Benefits                 42840.89
TotalPay                173639.45
TotalPayBenefits        216480.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74853, dtype: object)
(74854, Id                          74855
EmployeeName          Henry D Lam
JobTitle               Sergeant 3
BasePay                 143289.09
OvertimePay              18018.99
OtherPay                  14310.9
Benefits                 40787.04
TotalPay                175618.98
TotalPayBenefits        216406.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74854, dtype: object)
(74855, Id                              74856
EmployeeName        Gregory P Collaco
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  44920.43
OtherPay                     14047.17
Benefits                     40462.89
TotalPay                    175924.32
TotalPayBenefits            216387.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74855, dtype: object)
(74856, Id                                         74857
EmployeeName                      Kathy A Austin
JobTitle            Lieutenant, Fire Suppression
BasePay                                131802.66
OvertimePay                             18176.92
OtherPay                                21432.12
Benefits                                44958.19
TotalPay                                171411.7
TotalPayBenefits                       216369.89
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74856, dtype: object)
(74857, Id                             74858
EmployeeName             Beng H Teng
JobTitle            Registered Nurse
BasePay                    123150.17
OvertimePay                  4154.07
OtherPay                    47591.84
Benefits                    41343.69
TotalPay                   174896.08
TotalPayBenefits           216239.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74857, dtype: object)
(74858, Id                              74859
EmployeeName        Vitani J Benjamin
JobTitle                  Firefighter
BasePay                     103573.19
OvertimePay                  59912.82
OtherPay                     16125.68
Benefits                     36503.73
TotalPay                    179611.69
TotalPayBenefits            216115.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74858, dtype: object)
(74859, Id                          74860
EmployeeName        James P Kelly
JobTitle              Inspector 3
BasePay                  74298.12
OvertimePay               1194.08
OtherPay                119413.61
Benefits                 21200.65
TotalPay                194905.81
TotalPayBenefits        216106.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74859, dtype: object)
(74860, Id                                  74861
EmployeeName        Magdalena O Sarmiento
JobTitle                 Registered Nurse
BasePay                          142425.0
OvertimePay                       6963.04
OtherPay                         17802.63
Benefits                         48868.53
TotalPay                        167190.67
TotalPayBenefits                 216059.2
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74860, dtype: object)
(74861, Id                                         74862
EmployeeName                  Patricia Yuen  Lui
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             27355.89
OtherPay                                  8897.1
Benefits                                43901.44
TotalPay                               172155.91
TotalPayBenefits                       216057.35
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74861, dtype: object)
(74862, Id                             74863
EmployeeName             Cliff  Chiu
JobTitle            Police Officer 3
BasePay                    123471.18
OvertimePay                 49836.81
OtherPay                     5687.73
Benefits                     37040.2
TotalPay                   178995.72
TotalPayBenefits           216035.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74862, dtype: object)
(74863, Id                                      74864
EmployeeName                 Nathan H Shapiro
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                           18714.9
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            170752.17
TotalPayBenefits                    216025.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74863, dtype: object)
(74864, Id                            74865
EmployeeName        Yvette E Ortega
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                37898.14
OtherPay                   19696.47
Benefits                   41406.58
TotalPay                  174551.32
TotalPayBenefits           215957.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74864, dtype: object)
(74865, Id                                   74866
EmployeeName               Julie C Russell
JobTitle            Supervising Pharmacist
BasePay                          168164.53
OvertimePay                            0.0
OtherPay                            1650.0
Benefits                          46142.04
TotalPay                         169814.53
TotalPayBenefits                 215956.57
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74865, dtype: object)
(74866, Id                          74867
EmployeeName         Philip A Fee
JobTitle              Inspector 3
BasePay                 146504.07
OvertimePay              17269.27
OtherPay                  9844.08
Benefits                 42337.48
TotalPay                173617.42
TotalPayBenefits         215954.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74866, dtype: object)
(74867, Id                               74868
EmployeeName                Paul K Lau
JobTitle            Transit Supervisor
BasePay                        92803.8
OvertimePay                   79746.59
OtherPay                       9234.78
Benefits                      34153.79
TotalPay                     181785.17
TotalPayBenefits             215938.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74867, dtype: object)
(74868, Id                                      74869
EmployeeName              Matthew J Sotorosen
JobTitle            Attorney (Civil/Criminal)
BasePay                              167881.3
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             46790.24
TotalPay                             169131.3
TotalPayBenefits                    215921.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74868, dtype: object)
(74869, Id                             74870
EmployeeName           Oscar G Bueno
JobTitle            Registered Nurse
BasePay                     132957.7
OvertimePay                  9541.17
OtherPay                    25719.67
Benefits                    47682.18
TotalPay                   168218.54
TotalPayBenefits           215900.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74869, dtype: object)
(74870, Id                                      74871
EmployeeName                  Sean M Sullivan
JobTitle            Attorney (Civil/Criminal)
BasePay                              167911.5
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             46735.71
TotalPay                             169161.0
TotalPayBenefits                    215896.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74870, dtype: object)
(74871, Id                           74872
EmployeeName        Sasha A Grande
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               47314.26
OtherPay                  11651.37
Benefits                  39970.05
TotalPay                 175922.35
TotalPayBenefits          215892.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74871, dtype: object)
(74872, Id                             74873
EmployeeName            Frank  Latko
JobTitle            Registered Nurse
BasePay                    141321.87
OvertimePay                  2789.16
OtherPay                    22572.74
Benefits                    49192.87
TotalPay                   166683.77
TotalPayBenefits           215876.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74872, dtype: object)
(74873, Id                                         74874
EmployeeName                        Wayne J Wong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                             27829.25
OtherPay                                 8339.97
Benefits                                43797.92
TotalPay                               172072.15
TotalPayBenefits                       215870.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74873, dtype: object)
(74874, Id                              74875
EmployeeName        Joshua A Espinoza
JobTitle                   Sergeant 3
BasePay                     142580.62
OvertimePay                  13644.34
OtherPay                     18696.35
Benefits                     40934.85
TotalPay                    174921.31
TotalPayBenefits            215856.16
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74874, dtype: object)
(74875, Id                           74876
EmployeeName          Tedman  Mark
JobTitle            Police Officer
BasePay                   116478.2
OvertimePay               59133.18
OtherPay                   4134.48
Benefits                  36093.38
TotalPay                 179745.86
TotalPayBenefits         215839.24
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74875, dtype: object)
(74876, Id                               74877
EmployeeName        Kenneth M Ferrigno
JobTitle             Sheriff's Captain
BasePay                      150713.42
OvertimePay                    4475.66
OtherPay                      15818.05
Benefits                      44812.57
TotalPay                     171007.13
TotalPayBenefits              215819.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74876, dtype: object)
(74877, Id                            74878
EmployeeName        James A Genevro
JobTitle                  Manager V
BasePay                   162250.01
OvertimePay                     0.0
OtherPay                      28.21
Benefits                   53538.98
TotalPay                  162278.22
TotalPayBenefits           215817.2
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74877, dtype: object)
(74878, Id                                  74879
EmployeeName        Ferdinand M Dimapasoc
JobTitle                 Police Officer 3
BasePay                         123471.19
OvertimePay                      43123.77
OtherPay                          12162.1
Benefits                         37055.22
TotalPay                        178757.06
TotalPayBenefits                215812.28
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74878, dtype: object)
(74879, Id                                74880
EmployeeName                Edward  Lor
JobTitle            Clinical Pharmacist
BasePay                        161757.0
OvertimePay                      901.05
OtherPay                        6907.55
Benefits                        46222.9
TotalPay                       169565.6
TotalPayBenefits               215788.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74879, dtype: object)
(74880, Id                               74881
EmployeeName          Stephanie A Tsao
JobTitle            Nurse Practitioner
BasePay                       162578.8
OvertimePay                        0.0
OtherPay                        2750.0
Benefits                      50458.32
TotalPay                      165328.8
TotalPayBenefits             215787.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74880, dtype: object)
(74881, Id                             74882
EmployeeName           Albert K Lieu
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 36176.76
OtherPay                    19082.06
Benefits                    37049.36
TotalPay                   178729.83
TotalPayBenefits           215779.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74881, dtype: object)
(74882, Id                          74883
EmployeeName         John D Evans
JobTitle              Inspector 3
BasePay                 143289.06
OvertimePay              11804.95
OtherPay                 19444.17
Benefits                 41229.63
TotalPay                174538.18
TotalPayBenefits        215767.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74882, dtype: object)
(74883, Id                                      74884
EmployeeName                   Philip  Benson
JobTitle            EMT/Paramedic/Firefighter
BasePay                             130352.79
OvertimePay                          26191.81
OtherPay                             15682.83
Benefits                             43531.41
TotalPay                            172227.43
TotalPayBenefits                    215758.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74883, dtype: object)
(74884, Id                             74885
EmployeeName        Osmundo  Hurtado
JobTitle            Registered Nurse
BasePay                    135937.43
OvertimePay                 11431.94
OtherPay                    25441.33
Benefits                    42944.45
TotalPay                    172810.7
TotalPayBenefits           215755.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74884, dtype: object)
(74885, Id                                       74886
EmployeeName                   Randy A Manning
JobTitle            Diagnostic Imaging Tech II
BasePay                              108634.27
OvertimePay                           27799.69
OtherPay                              45208.28
Benefits                               34065.2
TotalPay                             181642.24
TotalPayBenefits                     215707.44
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74885, dtype: object)
(74886, Id                             74887
EmployeeName            May M Devera
JobTitle            Registered Nurse
BasePay                    136886.25
OvertimePay                  7635.58
OtherPay                    22854.31
Benefits                    48267.17
TotalPay                   167376.14
TotalPayBenefits           215643.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74886, dtype: object)
(74887, Id                                74888
EmployeeName        Lawrence F McDevitt
JobTitle                     Sergeant 3
BasePay                       143289.18
OvertimePay                    28199.69
OtherPay                        3384.32
Benefits                       40769.64
TotalPay                      174873.19
TotalPayBenefits              215642.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74887, dtype: object)
(74888, Id                             74889
EmployeeName        Darren K Bortmas
JobTitle                 Firefighter
BasePay                    115893.47
OvertimePay                 37178.27
OtherPay                    21084.02
Benefits                    41482.63
TotalPay                   174155.76
TotalPayBenefits           215638.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74888, dtype: object)
(74889, Id                            74890
EmployeeName        Daniel M Bright
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                34175.26
OtherPay                   22459.21
Benefits                   42040.33
TotalPay                  173591.18
TotalPayBenefits          215631.51
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74889, dtype: object)
(74890, Id                            74891
EmployeeName        Matthew M Perez
JobTitle                Inspector 3
BasePay                    76951.53
OvertimePay                     0.0
OtherPay                  116876.57
Benefits                   21795.78
TotalPay                   193828.1
TotalPayBenefits          215623.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74890, dtype: object)
(74891, Id                           74892
EmployeeName        David J Lester
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               37770.63
OtherPay                  19475.02
Benefits                  41406.59
TotalPay                 174202.37
TotalPayBenefits         215608.96
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74891, dtype: object)
(74892, Id                                      74893
EmployeeName                 Thomas D Kiernan
JobTitle            Captain, Fire Suppression
BasePay                             153763.84
OvertimePay                           4611.06
OtherPay                             10011.79
Benefits                             47209.83
TotalPay                            168386.69
TotalPayBenefits                    215596.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74892, dtype: object)
(74893, Id                           74894
EmployeeName        Larry C Jacobs
JobTitle               Firefighter
BasePay                  115893.45
OvertimePay               47497.24
OtherPay                  12466.46
Benefits                  39729.68
TotalPay                 175857.15
TotalPayBenefits         215586.83
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74893, dtype: object)
(74894, Id                          74895
EmployeeName        Mark W Sikora
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay              42162.95
OtherPay                 16960.48
Benefits                 40560.41
TotalPay                 175016.9
TotalPayBenefits        215577.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74894, dtype: object)
(74895, Id                           74896
EmployeeName        Wallace W Tang
JobTitle                 Manager V
BasePay                  158877.69
OvertimePay                    0.0
OtherPay                   3252.82
Benefits                  53420.77
TotalPay                 162130.51
TotalPayBenefits         215551.28
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74895, dtype: object)
(74896, Id                           74897
EmployeeName        Joseph  Cordes
JobTitle              Lieutenant 3
BasePay                  163674.01
OvertimePay                    0.0
OtherPay                   6137.18
Benefits                  45677.64
TotalPay                 169811.19
TotalPayBenefits         215488.83
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74896, dtype: object)
(74897, Id                          74898
EmployeeName         Sean D Frost
JobTitle               Sergeant 2
BasePay                 129963.87
OvertimePay              22374.89
OtherPay                 24545.68
Benefits                 38550.16
TotalPay                176884.44
TotalPayBenefits         215434.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74897, dtype: object)
(74898, Id                                       74899
EmployeeName                     Raymond R Lui
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                              15684.43
Benefits                              46429.17
TotalPay                             168975.96
TotalPayBenefits                     215405.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74898, dtype: object)
(74899, Id                                       74900
EmployeeName                     Patrick K Lau
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                              15684.43
Benefits                              46429.17
TotalPay                             168975.93
TotalPayBenefits                      215405.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74899, dtype: object)
(74900, Id                             74901
EmployeeName         Joseph J Toomey
JobTitle            Police Officer 3
BasePay                    121602.05
OvertimePay                 51134.67
OtherPay                     5962.17
Benefits                    36694.38
TotalPay                   178698.89
TotalPayBenefits           215393.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74900, dtype: object)
(74901, Id                               74902
EmployeeName        Robert J Imbellino
JobTitle                    Sergeant 3
BasePay                      142555.15
OvertimePay                   14717.64
OtherPay                      16833.98
Benefits                      41265.97
TotalPay                     174106.77
TotalPayBenefits             215372.74
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74901, dtype: object)
(74902, Id                               74903
EmployeeName               Prem  Singh
JobTitle            Transit Supervisor
BasePay                        92465.1
OvertimePay                   84857.14
OtherPay                       4788.33
Benefits                      33191.36
TotalPay                     182110.57
TotalPayBenefits             215301.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74902, dtype: object)
(74903, Id                            74904
EmployeeName        Daniel W Tauber
JobTitle                Firefighter
BasePay                   116079.56
OvertimePay                 41268.3
OtherPay                   17380.89
Benefits                   40560.11
TotalPay                  174728.75
TotalPayBenefits          215288.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74903, dtype: object)
(74904, Id                                       74905
EmployeeName                       Luke  Cheng
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                              15568.34
Benefits                              46408.61
TotalPay                             168859.86
TotalPayBenefits                     215268.47
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 74904, dtype: object)
(74905, Id                                  74906
EmployeeName              Daniel B Silver
JobTitle            Assistant Inspector 2
BasePay                         138378.64
OvertimePay                      26418.41
OtherPay                          10854.4
Benefits                         39608.57
TotalPay                        175651.45
TotalPayBenefits                215260.02
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74905, dtype: object)
(74906, Id                                     74907
EmployeeName        Cristina M Santo Domingo
JobTitle                    Registered Nurse
BasePay                            138336.88
OvertimePay                           4747.5
OtherPay                             31620.5
Benefits                            40539.32
TotalPay                           174704.88
TotalPayBenefits                    215244.2
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 74906, dtype: object)
(74907, Id                             74908
EmployeeName            Jihyeon  Rim
JobTitle            Registered Nurse
BasePay                    130772.24
OvertimePay                 11975.65
OtherPay                    28661.51
Benefits                    43734.84
TotalPay                    171409.4
TotalPayBenefits           215144.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74907, dtype: object)
(74908, Id                                        74909
EmployeeName                 Leonette  Morrison
JobTitle            Senior Physician Specialist
BasePay                               162968.09
OvertimePay                                 0.0
OtherPay                                8149.37
Benefits                               44022.06
TotalPay                              171117.46
TotalPayBenefits                      215139.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74908, dtype: object)
(74909, Id                               74910
EmployeeName        Gavin D Estupinian
JobTitle                   Firefighter
BasePay                      116956.71
OvertimePay                   36935.51
OtherPay                      19809.45
Benefits                      41437.82
TotalPay                     173701.67
TotalPayBenefits             215139.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74909, dtype: object)
(74910, Id                             74911
EmployeeName        Brent D Bradford
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 43181.33
OtherPay                    14292.04
Benefits                    36594.45
TotalPay                   178541.37
TotalPayBenefits           215135.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74910, dtype: object)
(74911, Id                              74912
EmployeeName        Fernando R Juarez
JobTitle                  Firefighter
BasePay                     115893.46
OvertimePay                  39516.36
OtherPay                     18738.29
Benefits                     40977.66
TotalPay                    174148.11
TotalPayBenefits            215125.77
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74911, dtype: object)
(74912, Id                               74913
EmployeeName                 Dafna  Wu
JobTitle            Nurse Practitioner
BasePay                       163323.0
OvertimePay                        0.0
OtherPay                       2069.59
Benefits                      49660.94
TotalPay                     165392.59
TotalPayBenefits             215053.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74912, dtype: object)
(74913, Id                                      74914
EmployeeName                   Rosa M Sanchez
JobTitle            Attorney (Civil/Criminal)
BasePay                             167156.57
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             46602.03
TotalPay                            168406.07
TotalPayBenefits                     215008.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74913, dtype: object)
(74914, Id                                      74915
EmployeeName        Cassandra E Chapman-Tabor
JobTitle                     Train Controller
BasePay                             106638.95
OvertimePay                          59867.47
OtherPay                             11526.85
Benefits                             36974.18
TotalPay                            178033.27
TotalPayBenefits                    215007.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74914, dtype: object)
(74915, Id                             74916
EmployeeName           Raymond K Lee
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 41759.29
OtherPay                    12716.13
Benefits                    37052.63
TotalPay                   177946.47
TotalPayBenefits            214999.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74915, dtype: object)
(74916, Id                          74917
EmployeeName        Jason T Lynch
JobTitle               Sergeant 3
BasePay                 143289.19
OvertimePay              14755.94
OtherPay                 15725.56
Benefits                 41201.24
TotalPay                173770.69
TotalPayBenefits        214971.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74916, dtype: object)
(74917, Id                          74918
EmployeeName         Jesus A Mora
JobTitle                Manager V
BasePay                 160452.77
OvertimePay                   0.0
OtherPay                  1153.91
Benefits                 53362.23
TotalPay                161606.68
TotalPayBenefits        214968.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74917, dtype: object)
(74918, Id                              74919
EmployeeName        Joseph R Viglizzo
JobTitle                  Firefighter
BasePay                     114560.01
OvertimePay                  39978.72
OtherPay                     19692.07
Benefits                     40736.29
TotalPay                     174230.8
TotalPayBenefits            214967.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74918, dtype: object)
(74919, Id                               74920
EmployeeName        Kimber H Von Blohn
JobTitle                      Engineer
BasePay                      176501.55
OvertimePay                        0.0
OtherPay                       2212.53
Benefits                      36245.34
TotalPay                     178714.08
TotalPayBenefits             214959.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74919, dtype: object)
(74920, Id                                         74921
EmployeeName           Catherine A Emmons-Samson
JobTitle            Lieutenant, Fire Suppression
BasePay                                135299.69
OvertimePay                             24923.28
OtherPay                                11680.68
Benefits                                42987.47
TotalPay                               171903.65
TotalPayBenefits                       214891.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74920, dtype: object)
(74921, Id                                      74922
EmployeeName                Judith A Klofstad
JobTitle            EMT/Paramedic/Firefighter
BasePay                             154575.09
OvertimePay                           6485.74
OtherPay                               9274.5
Benefits                             44533.14
TotalPay                            170335.33
TotalPayBenefits                    214868.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74921, dtype: object)
(74922, Id                          74923
EmployeeName        William  Chin
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              38654.44
OtherPay                 19304.81
Benefits                 41013.12
TotalPay                173852.71
TotalPayBenefits        214865.83
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74922, dtype: object)
(74923, Id                          74924
EmployeeName        Eddie J Hagan
JobTitle               Sergeant 3
BasePay                 145382.11
OvertimePay              20279.14
OtherPay                  7748.43
Benefits                 41436.74
TotalPay                173409.68
TotalPayBenefits        214846.42
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74923, dtype: object)
(74924, Id                          74925
EmployeeName           C M  Breen
JobTitle               Sergeant 3
BasePay                 143289.19
OvertimePay               9723.32
OtherPay                 19264.52
Benefits                 42509.76
TotalPay                172277.03
TotalPayBenefits        214786.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74924, dtype: object)
(74925, Id                             74926
EmployeeName        Thomas A McGuire
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 29396.76
OtherPay                    26156.09
Benefits                    42255.12
TotalPay                   172509.56
TotalPayBenefits           214764.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74925, dtype: object)
(74926, Id                          74927
EmployeeName        Mario  Molina
JobTitle               Sergeant 3
BasePay                 143289.13
OvertimePay              13563.94
OtherPay                 16909.87
Benefits                 40995.28
TotalPay                173762.94
TotalPayBenefits        214758.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74926, dtype: object)
(74927, Id                                    74928
EmployeeName        Morgen B Elizabethchild
JobTitle                      Nurse Manager
BasePay                           159352.82
OvertimePay                             0.0
OtherPay                           10351.85
Benefits                           44968.59
TotalPay                          169704.67
TotalPayBenefits                  214673.26
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74927, dtype: object)
(74928, Id                               74929
EmployeeName        James  Franicevich
JobTitle            Nurse Practitioner
BasePay                      162230.16
OvertimePay                        0.0
OtherPay                       4453.62
Benefits                      47984.95
TotalPay                     166683.78
TotalPayBenefits             214668.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74928, dtype: object)
(74929, Id                           74930
EmployeeName        William J Wong
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               36863.03
OtherPay                  19386.41
Benefits                  41437.81
TotalPay                 173206.15
TotalPayBenefits         214643.96
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74929, dtype: object)
(74930, Id                                      74931
EmployeeName                 Joseph P Clement
JobTitle            Clinical Nurse Specialist
BasePay                             163439.01
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             50949.22
TotalPay                            163689.01
TotalPayBenefits                    214638.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74930, dtype: object)
(74931, Id                          74932
EmployeeName        Stanley H Lee
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              34410.15
OtherPay                  22054.7
Benefits                  41198.5
TotalPay                173421.55
TotalPayBenefits        214620.05
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74931, dtype: object)
(74932, Id                                 74933
EmployeeName            Stephen S Tilton
JobTitle            Sheriff's Lieutenant
BasePay                        131415.05
OvertimePay                     31907.33
OtherPay                        10326.58
Benefits                        40970.24
TotalPay                       173648.96
TotalPayBenefits                214619.2
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74932, dtype: object)
(74933, Id                              74934
EmployeeName        Zenaida C Cajilig
JobTitle             Registered Nurse
BasePay                     139181.53
OvertimePay                   6963.04
OtherPay                     20248.69
Benefits                     48191.63
TotalPay                    166393.26
TotalPayBenefits            214584.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74933, dtype: object)
(74934, Id                               74935
EmployeeName        Kimberly A Hatcher
JobTitle                   Firefighter
BasePay                      114299.93
OvertimePay                    50590.8
OtherPay                      10614.76
Benefits                      39031.99
TotalPay                     175505.49
TotalPayBenefits             214537.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74934, dtype: object)
(74935, Id                              74936
EmployeeName        Shante C Williams
JobTitle             Police Officer 3
BasePay                     123471.12
OvertimePay                  46760.83
OtherPay                      7259.02
Benefits                      37040.2
TotalPay                    177490.97
TotalPayBenefits            214531.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74935, dtype: object)
(74936, Id                             74937
EmployeeName           Mary J Esmero
JobTitle            Registered Nurse
BasePay                    138930.36
OvertimePay                  6923.45
OtherPay                    25203.68
Benefits                    43456.46
TotalPay                   171057.49
TotalPayBenefits           214513.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74936, dtype: object)
(74937, Id                               74938
EmployeeName        Michael  Rodriguez
JobTitle                    Sergeant 2
BasePay                      145809.08
OvertimePay                   13562.69
OtherPay                      13083.66
Benefits                      42057.56
TotalPay                     172455.43
TotalPayBenefits             214512.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74937, dtype: object)
(74938, Id                                        74939
EmployeeName                       Vicky  Young
JobTitle            Senior Physician Specialist
BasePay                               170721.13
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               43788.27
TotalPay                              170721.13
TotalPayBenefits                       214509.4
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74938, dtype: object)
(74939, Id                                      74940
EmployeeName                  Kevin T Nielsen
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.26
OvertimePay                          17146.91
OtherPay                             16893.02
Benefits                             45309.07
TotalPay                            169184.19
TotalPayBenefits                    214493.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74939, dtype: object)
(74940, Id                              74941
EmployeeName        Gregory J Zanders
JobTitle                  Firefighter
BasePay                      116956.7
OvertimePay                  34711.33
OtherPay                     20998.97
Benefits                     41819.85
TotalPay                     172667.0
TotalPayBenefits            214486.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74940, dtype: object)
(74941, Id                          74942
EmployeeName        William J Lau
JobTitle              Firefighter
BasePay                 115893.48
OvertimePay              43299.03
OtherPay                 14976.53
Benefits                 40310.21
TotalPay                174169.04
TotalPayBenefits        214479.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74941, dtype: object)
(74942, Id                                      74943
EmployeeName                     Evan A Gross
JobTitle            Attorney (Civil/Criminal)
BasePay                             166699.04
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             46494.55
TotalPay                            167948.54
TotalPayBenefits                    214443.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74942, dtype: object)
(74943, Id                                    74944
EmployeeName        Katherine  Schwarz-Choy
JobTitle                         Sergeant 2
BasePay                            140724.0
OvertimePay                         5209.97
OtherPay                           27569.19
Benefits                           40875.81
TotalPay                          173503.16
TotalPayBenefits                  214378.97
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74943, dtype: object)
(74944, Id                             74945
EmployeeName        Cynthia M Lucero
JobTitle                 Firefighter
BasePay                    115893.47
OvertimePay                 36804.47
OtherPay                    20530.59
Benefits                    41112.99
TotalPay                   173228.53
TotalPayBenefits           214341.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74944, dtype: object)
(74945, Id                              74946
EmployeeName        Matthew M Gardner
JobTitle             Police Officer 3
BasePay                      128556.0
OvertimePay                   24190.2
OtherPay                     20703.03
Benefits                     40869.39
TotalPay                    173449.23
TotalPayBenefits            214318.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74945, dtype: object)
(74946, Id                             74947
EmployeeName        Patrick M Hannan
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 44066.29
OtherPay                    13184.13
Benefits                    40110.16
TotalPay                   174207.13
TotalPayBenefits           214317.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74946, dtype: object)
(74947, Id                             74948
EmployeeName        Marrialee A Salm
JobTitle            Registered Nurse
BasePay                    137885.51
OvertimePay                  9168.64
OtherPay                    30154.29
Benefits                    37103.61
TotalPay                   177208.44
TotalPayBenefits           214312.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74947, dtype: object)
(74948, Id                                74949
EmployeeName        Jennifer A Streegan
JobTitle                     Sergeant 3
BasePay                       143289.12
OvertimePay                    19335.29
OtherPay                       10731.52
Benefits                       40949.11
TotalPay                      173355.93
TotalPayBenefits              214305.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74948, dtype: object)
(74949, Id                             74950
EmployeeName        Michael C Vieira
JobTitle                 Firefighter
BasePay                    117187.96
OvertimePay                 36143.95
OtherPay                    19415.64
Benefits                    41512.36
TotalPay                   172747.55
TotalPayBenefits           214259.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74949, dtype: object)
(74950, Id                               74951
EmployeeName        Nicholas J Chorley
JobTitle                    Sergeant 3
BasePay                      143289.08
OvertimePay                   12838.44
OtherPay                      17313.85
Benefits                      40811.56
TotalPay                     173441.37
TotalPayBenefits             214252.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74950, dtype: object)
(74951, Id                          74952
EmployeeName        Joshua  Kumli
JobTitle               Sergeant 3
BasePay                 143289.17
OvertimePay              22019.92
OtherPay                   8018.0
Benefits                 40887.34
TotalPay                173327.09
TotalPayBenefits        214214.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74951, dtype: object)
(74952, Id                                 74953
EmployeeName              Larry D Dorsey
JobTitle            Sheriff's Lieutenant
BasePay                         131410.2
OvertimePay                     26726.41
OtherPay                        13419.89
Benefits                         42646.3
TotalPay                        171556.5
TotalPayBenefits                214202.8
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74952, dtype: object)
(74953, Id                          74954
EmployeeName        Anna C Robert
JobTitle            Nurse Manager
BasePay                  142195.3
OvertimePay                   0.0
OtherPay                 24695.75
Benefits                 47297.85
TotalPay                166891.05
TotalPayBenefits         214188.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74953, dtype: object)
(74954, Id                                74955
EmployeeName        Erlinda M De Guzman
JobTitle               Registered Nurse
BasePay                        142425.0
OvertimePay                     9574.18
OtherPay                       20851.28
Benefits                       41227.79
TotalPay                      172850.46
TotalPayBenefits              214078.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 74954, dtype: object)
(74955, Id                             74956
EmployeeName        Sayumi S Brannan
JobTitle                 Firefighter
BasePay                    116956.69
OvertimePay                 34585.16
OtherPay                    20614.71
Benefits                    41899.26
TotalPay                   172156.56
TotalPayBenefits           214055.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74955, dtype: object)
(74956, Id                          74957
EmployeeName         Joseph  Fong
JobTitle              Inspector 3
BasePay                 143289.07
OvertimePay              19760.96
OtherPay                  9542.63
Benefits                 41451.81
TotalPay                172592.66
TotalPayBenefits        214044.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74956, dtype: object)
(74957, Id                               74958
EmployeeName        Maurice S Williams
JobTitle                     Manager V
BasePay                      160939.25
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      53103.48
TotalPay                     160939.25
TotalPayBenefits             214042.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74957, dtype: object)
(74958, Id                                      74959
EmployeeName                 Kimberly A Bliss
JobTitle            Attorney (Civil/Criminal)
BasePay                             167292.41
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             45444.39
TotalPay                            168541.91
TotalPayBenefits                     213986.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74958, dtype: object)
(74959, Id                             74960
EmployeeName          Jesusa C Abuan
JobTitle            Registered Nurse
BasePay                    142380.82
OvertimePay                  6963.04
OtherPay                    17513.34
Benefits                    47127.99
TotalPay                    166857.2
TotalPayBenefits           213985.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74959, dtype: object)
(74960, Id                             74961
EmployeeName            Jordan K Hom
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 40343.21
OtherPay                     6585.27
Benefits                    38496.29
TotalPay                   175484.48
TotalPayBenefits           213980.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74960, dtype: object)
(74961, Id                               74962
EmployeeName        Frederick R Schiff
JobTitle                  Lieutenant 3
BasePay                       163143.7
OvertimePay                    1433.86
OtherPay                       4263.26
Benefits                      45128.46
TotalPay                     168840.82
TotalPayBenefits             213969.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74961, dtype: object)
(74962, Id                          74963
EmployeeName        Brett K Thorp
JobTitle               Sergeant 3
BasePay                 143289.16
OvertimePay              11366.59
OtherPay                 18429.62
Benefits                 40882.93
TotalPay                173085.37
TotalPayBenefits         213968.3
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74962, dtype: object)
(74963, Id                             74964
EmployeeName         Gerard  Arquero
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 41521.48
OtherPay                     11891.0
Benefits                    37050.47
TotalPay                   176883.52
TotalPayBenefits           213933.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74963, dtype: object)
(74964, Id                             74965
EmployeeName        Joseph L Garbayo
JobTitle            Police Officer 3
BasePay                    123471.06
OvertimePay                  42539.7
OtherPay                    10881.87
Benefits                    37034.38
TotalPay                   176892.63
TotalPayBenefits           213927.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74964, dtype: object)
(74965, Id                             74966
EmployeeName            Jose  Pubill
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 35762.75
OtherPay                    11004.55
Benefits                    38541.07
TotalPay                    175323.3
TotalPayBenefits           213864.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74965, dtype: object)
(74966, Id                              74967
EmployeeName        Joseph  Giacomini
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  37080.74
OtherPay                     18527.02
Benefits                     41296.43
TotalPay                    172564.47
TotalPayBenefits             213860.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74966, dtype: object)
(74967, Id                             74968
EmployeeName          Maria  Antonio
JobTitle            Registered Nurse
BasePay                    142161.29
OvertimePay                 15246.45
OtherPay                    20578.45
Benefits                    35851.86
TotalPay                   177986.19
TotalPayBenefits           213838.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74967, dtype: object)
(74968, Id                                         74969
EmployeeName                     Cecilia L Jiang
JobTitle            Lieutenant, Fire Suppression
BasePay                                137138.43
OvertimePay                             11240.81
OtherPay                                19234.43
Benefits                                46201.35
TotalPay                               167613.67
TotalPayBenefits                       213815.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74968, dtype: object)
(74969, Id                           74970
EmployeeName        Kendrick C Low
JobTitle               Firefighter
BasePay                  116956.69
OvertimePay               36022.61
OtherPay                  19239.23
Benefits                  41566.09
TotalPay                 172218.53
TotalPayBenefits         213784.62
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74969, dtype: object)
(74970, Id                              74971
EmployeeName        Gaylord A Gabriel
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  44775.35
OtherPay                     12019.27
Benefits                     39997.79
TotalPay                    173751.34
TotalPayBenefits            213749.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74970, dtype: object)
(74971, Id                                         74972
EmployeeName                  Kimberly D Mc Keon
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                             25892.07
OtherPay                                 8154.27
Benefits                                43799.21
TotalPay                               169949.26
TotalPayBenefits                       213748.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74971, dtype: object)
(74972, Id                           74973
EmployeeName        Josey  Russell
JobTitle                Sergeant 3
BasePay                  133013.09
OvertimePay                8955.02
OtherPay                  32749.22
Benefits                  38984.53
TotalPay                 174717.33
TotalPayBenefits         213701.86
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74972, dtype: object)
(74973, Id                               74974
EmployeeName        Monica E Macdonald
JobTitle                    Sergeant 3
BasePay                      141769.03
OvertimePay                    8642.65
OtherPay                      22347.62
Benefits                      40936.08
TotalPay                      172759.3
TotalPayBenefits             213695.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74973, dtype: object)
(74974, Id                             74975
EmployeeName             Craig  Dong
JobTitle            Police Officer 3
BasePay                     123471.2
OvertimePay                 45460.37
OtherPay                     7646.24
Benefits                    37055.22
TotalPay                   176577.81
TotalPayBenefits           213633.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74974, dtype: object)
(74975, Id                          74976
EmployeeName          Jack R Wood
JobTitle               IS Manager
BasePay                 161766.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 51807.52
TotalPay                161766.56
TotalPayBenefits        213574.08
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74975, dtype: object)
(74976, Id                          74977
EmployeeName        John J Conway
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              18864.72
OtherPay                 10538.78
Benefits                  40831.2
TotalPay                172692.62
TotalPayBenefits        213523.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74976, dtype: object)
(74977, Id                                      74978
EmployeeName                  David L Spencer
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135125.27
OvertimePay                          27343.13
OtherPay                              7517.82
Benefits                             43502.25
TotalPay                            169986.22
TotalPayBenefits                    213488.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 74977, dtype: object)
(74978, Id                               74979
EmployeeName             Erica V Eshoo
JobTitle            Nurse Practitioner
BasePay                       165416.0
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      47799.56
TotalPay                      165666.0
TotalPayBenefits             213465.56
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74978, dtype: object)
(74979, Id                               74980
EmployeeName        Nathaniel B Steger
JobTitle                    Sergeant 3
BasePay                      143289.03
OvertimePay                   23379.83
OtherPay                       5968.98
Benefits                      40804.38
TotalPay                     172637.84
TotalPayBenefits             213442.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74979, dtype: object)
(74980, Id                           74981
EmployeeName         Richard H Lee
JobTitle            Deputy Sheriff
BasePay                   95123.01
OvertimePay               68697.21
OtherPay                  14470.51
Benefits                  35146.69
TotalPay                 178290.73
TotalPayBenefits         213437.42
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74980, dtype: object)
(74981, Id                           74982
EmployeeName        Derek B Oleary
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               29822.04
OtherPay                  26238.58
Benefits                  41482.63
TotalPay                 171954.08
TotalPayBenefits         213436.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 74981, dtype: object)
(74982, Id                                         74983
EmployeeName                      Justin D Brown
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                              15105.3
OtherPay                                16987.99
Benefits                                 45434.3
TotalPay                               167996.25
TotalPayBenefits                       213430.55
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74982, dtype: object)
(74983, Id                                        74984
EmployeeName                     David W Harbin
JobTitle            Electr Maint Tech Asst Sprv
BasePay                               116756.02
OvertimePay                            52944.17
OtherPay                                 6593.2
Benefits                               37136.79
TotalPay                              176293.39
TotalPayBenefits                      213430.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 74983, dtype: object)
(74984, Id                             74985
EmployeeName              Vien T Lam
JobTitle            Police Officer 3
BasePay                     122327.9
OvertimePay                  40487.1
OtherPay                    13900.18
Benefits                    36712.41
TotalPay                   176715.18
TotalPayBenefits           213427.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74984, dtype: object)
(74985, Id                                         74986
EmployeeName                       Leslie A Wong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                             25319.13
OtherPay                                 8339.97
Benefits                                43836.95
TotalPay                               169562.05
TotalPayBenefits                        213399.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74985, dtype: object)
(74986, Id                          74987
EmployeeName          Scott C Lau
JobTitle               Sergeant 3
BasePay                 143289.06
OvertimePay              15121.64
OtherPay                  13887.6
Benefits                 41092.16
TotalPay                 172298.3
TotalPayBenefits        213390.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 74986, dtype: object)
(74987, Id                               74988
EmployeeName          Kathleen E Leyva
JobTitle            Nurse Practitioner
BasePay                      162516.23
OvertimePay                        0.0
OtherPay                       1534.02
Benefits                      49325.91
TotalPay                     164050.25
TotalPayBenefits             213376.16
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74987, dtype: object)
(74988, Id                               74989
EmployeeName        Belena R Cabuntala
JobTitle              Registered Nurse
BasePay                      139255.08
OvertimePay                    9471.18
OtherPay                      17917.94
Benefits                       46708.0
TotalPay                      166644.2
TotalPayBenefits              213352.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 74988, dtype: object)
(74989, Id                                  74990
EmployeeName        Bridgette H Hargarten
JobTitle                    Nurse Manager
BasePay                          142367.0
OvertimePay                           0.0
OtherPay                         27040.37
Benefits                         43935.17
TotalPay                        169407.37
TotalPayBenefits                213342.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 74989, dtype: object)
(74990, Id                              74991
EmployeeName        Keith F Pasquinzo
JobTitle                   Sergeant 3
BasePay                     143289.17
OvertimePay                  11801.82
OtherPay                     16772.95
Benefits                     41453.18
TotalPay                    171863.94
TotalPayBenefits            213317.12
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 74990, dtype: object)
(74991, Id                             74992
EmployeeName        Michael  Montero
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                 33109.64
OtherPay                    19668.15
Benefits                     37040.2
TotalPay                   176248.95
TotalPayBenefits           213289.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74991, dtype: object)
(74992, Id                                 74993
EmployeeName         Franklin J Winch Jr
JobTitle            Sheriff's Lieutenant
BasePay                        131410.22
OvertimePay                     20330.84
OtherPay                        18899.77
Benefits                        42641.21
TotalPay                       170640.83
TotalPayBenefits               213282.04
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 74992, dtype: object)
(74993, Id                                         74994
EmployeeName                     James A Heppert
JobTitle            Utility Plumber Supervisor 2
BasePay                                119420.51
OvertimePay                             43045.17
OtherPay                                12615.61
Benefits                                38188.35
TotalPay                               175081.29
TotalPayBenefits                       213269.64
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74993, dtype: object)
(74994, Id                                         74995
EmployeeName                  Robert J Turnquist
JobTitle            Lieutenant, Fire Suppression
BasePay                                149073.18
OvertimePay                              2387.16
OtherPay                                16344.23
Benefits                                45454.66
TotalPay                               167804.57
TotalPayBenefits                       213259.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 74994, dtype: object)
(74995, Id                                   74996
EmployeeName          Eugenio T Ocampo III
JobTitle            Supervising Pharmacist
BasePay                          160845.04
OvertimePay                            0.0
OtherPay                           5311.54
Benefits                          47079.16
TotalPay                         166156.58
TotalPayBenefits                 213235.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 74995, dtype: object)
(74996, Id                                          74997
EmployeeName                     Dion J McDonnell
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.12
OvertimePay                              26642.07
OtherPay                                 12041.21
Benefits                                 39280.94
TotalPay                                 173953.4
TotalPayBenefits                        213234.34
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 74996, dtype: object)
(74997, Id                             74998
EmployeeName        James E Mellberg
JobTitle                 Firefighter
BasePay                    121220.65
OvertimePay                 27399.48
OtherPay                    22282.66
Benefits                    42296.51
TotalPay                   170902.79
TotalPayBenefits            213199.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 74997, dtype: object)
(74998, Id                                    74999
EmployeeName        Christopher B Boutilier
JobTitle                        Firefighter
BasePay                           105189.94
OvertimePay                        57984.51
OtherPay                           10140.27
Benefits                           39882.75
TotalPay                          173314.72
TotalPayBenefits                  213197.47
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 74998, dtype: object)
(74999, Id                            75000
EmployeeName        Ronald L Cupido
JobTitle                Firefighter
BasePay                   116956.74
OvertimePay                35253.92
OtherPay                   19510.46
Benefits                   41437.82
TotalPay                  171721.12
TotalPayBenefits          213158.94
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 74999, dtype: object)
(75000, Id                             75001
EmployeeName           Carl J Bryant
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 51341.87
OtherPay                     4158.09
Benefits                    36571.13
TotalPay                   176567.97
TotalPayBenefits            213139.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75000, dtype: object)
(75001, Id                             75002
EmployeeName        Fitzgerald  Wong
JobTitle                  Sergeant 3
BasePay                     143952.5
OvertimePay                  7686.09
OtherPay                    19130.22
Benefits                    42369.85
TotalPay                   170768.81
TotalPayBenefits           213138.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75001, dtype: object)
(75002, Id                              75003
EmployeeName        Feliks R Gasanyan
JobTitle                   Sergeant 3
BasePay                      143289.1
OvertimePay                  19718.84
OtherPay                       9304.7
Benefits                     40803.75
TotalPay                    172312.64
TotalPayBenefits            213116.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75002, dtype: object)
(75003, Id                                             75004
EmployeeName        Purificacion I Quevedo-Maghinang
JobTitle                               Nurse Manager
BasePay                                     142367.0
OvertimePay                                      0.0
OtherPay                                    26814.21
Benefits                                    43935.17
TotalPay                                   169181.21
TotalPayBenefits                           213116.38
Year                                            2013
Notes                                            NaN
Agency                                 San Francisco
Status                                           NaN
Name: 75003, dtype: object)
(75004, Id                           75005
EmployeeName        Renee J Pagano
JobTitle              Lieutenant 3
BasePay                  163674.05
OvertimePay                 2278.0
OtherPay                   2501.52
Benefits                  44660.91
TotalPay                 168453.57
TotalPayBenefits         213114.48
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75004, dtype: object)
(75005, Id                                 75006
EmployeeName        Michelle M Henderson
JobTitle                      Sergeant 3
BasePay                        143289.14
OvertimePay                      9549.01
OtherPay                        19285.99
Benefits                        40974.62
TotalPay                       172124.14
TotalPayBenefits               213098.76
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75005, dtype: object)
(75006, Id                             75007
EmployeeName          Leroy E Thomas
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 31496.62
OtherPay                    21057.89
Benefits                    37061.38
TotalPay                   176025.56
TotalPayBenefits           213086.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75006, dtype: object)
(75007, Id                                         75008
EmployeeName                    Anthony W Rivera
JobTitle            Lieutenant, Fire Suppression
BasePay                                142763.18
OvertimePay                             10858.85
OtherPay                                15618.51
Benefits                                43799.69
TotalPay                               169240.54
TotalPayBenefits                       213040.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75007, dtype: object)
(75008, Id                             75009
EmployeeName        Adriano E Castro
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 40271.84
OtherPay                      6019.4
Benefits                    38112.92
TotalPay                   174847.24
TotalPayBenefits           212960.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75008, dtype: object)
(75009, Id                           75010
EmployeeName        Michael  Moody
JobTitle                Sergeant 3
BasePay                  129343.16
OvertimePay               27083.49
OtherPay                  18269.94
Benefits                  38248.46
TotalPay                 174696.59
TotalPayBenefits         212945.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75009, dtype: object)
(75010, Id                              75011
EmployeeName        Tadao T Yamaguchi
JobTitle                   Sergeant 3
BasePay                      143289.0
OvertimePay                  23330.58
OtherPay                      4958.11
Benefits                     41346.28
TotalPay                    171577.69
TotalPayBenefits            212923.97
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75010, dtype: object)
(75011, Id                                         75012
EmployeeName                        Jose A Zalba
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                              23092.0
OtherPay                                10088.85
Benefits                                43786.99
TotalPay                               169083.82
TotalPayBenefits                       212870.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75011, dtype: object)
(75012, Id                                   75013
EmployeeName              Baotram N Nguyen
JobTitle            Supervising Pharmacist
BasePay                          167009.58
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          45844.14
TotalPay                         167009.58
TotalPayBenefits                 212853.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75012, dtype: object)
(75013, Id                                         75014
EmployeeName                       Brian P Walsh
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                              20244.4
OtherPay                                12089.29
Benefits                                44598.84
TotalPay                               168236.64
TotalPayBenefits                       212835.48
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75013, dtype: object)
(75014, Id                           75015
EmployeeName        Ivan J Cordoba
JobTitle            Deputy Sheriff
BasePay                    95007.3
OvertimePay               66971.51
OtherPay                  15349.12
Benefits                  35507.28
TotalPay                 177327.93
TotalPayBenefits         212835.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75014, dtype: object)
(75015, Id                          75016
EmployeeName         John F Crudo
JobTitle               Sergeant 3
BasePay                 143289.02
OvertimePay               5614.87
OtherPay                 23088.36
Benefits                 40804.34
TotalPay                171992.25
TotalPayBenefits        212796.59
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75015, dtype: object)
(75016, Id                          75017
EmployeeName        Damon Z Keeve
JobTitle               Sergeant 3
BasePay                 143289.21
OvertimePay               21912.7
OtherPay                  6309.81
Benefits                 41256.98
TotalPay                171511.72
TotalPayBenefits         212768.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75016, dtype: object)
(75017, Id                                         75018
EmployeeName                    Robert  McDonald
JobTitle            Lieutenant, Fire Suppression
BasePay                                 135903.0
OvertimePay                              5893.23
OtherPay                                24137.46
Benefits                                46824.18
TotalPay                               165933.69
TotalPayBenefits                       212757.87
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75017, dtype: object)
(75018, Id                              75019
EmployeeName        Edgardo M Vergara
JobTitle             Registered Nurse
BasePay                     140578.75
OvertimePay                  11300.07
OtherPay                     22939.07
Benefits                     37910.95
TotalPay                    174817.89
TotalPayBenefits            212728.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75018, dtype: object)
(75019, Id                                 75020
EmployeeName             James M Shannon
JobTitle            Sheriff's Lieutenant
BasePay                        131405.45
OvertimePay                     20494.54
OtherPay                        18866.51
Benefits                        41936.67
TotalPay                        170766.5
TotalPayBenefits               212703.17
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75019, dtype: object)
(75020, Id                                         75021
EmployeeName                 Andrew T Sobozinsky
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                             16845.82
OtherPay                                14807.41
Benefits                                45113.05
TotalPay                               167556.16
TotalPayBenefits                       212669.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75020, dtype: object)
(75021, Id                                        75022
EmployeeName                     Trudy  Singzon
JobTitle            Senior Physician Specialist
BasePay                                161802.1
OvertimePay                                 0.0
OtherPay                                6285.94
Benefits                                44573.8
TotalPay                              168088.04
TotalPayBenefits                      212661.84
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75021, dtype: object)
(75022, Id                              75023
EmployeeName        Armando  Cuaresma
JobTitle             Registered Nurse
BasePay                      139260.0
OvertimePay                  14493.08
OtherPay                     18320.69
Benefits                     40582.33
TotalPay                    172073.77
TotalPayBenefits             212656.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75022, dtype: object)
(75023, Id                             75024
EmployeeName        Edward  Martinez
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 33577.47
OtherPay                    20713.26
Benefits                    41406.59
TotalPay                   171247.44
TotalPayBenefits           212654.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75023, dtype: object)
(75024, Id                                         75025
EmployeeName                       Jamie H Young
JobTitle            Electrical Trnst Mech Sprv 1
BasePay                                112163.94
OvertimePay                             62867.88
OtherPay                                 1681.83
Benefits                                35932.58
TotalPay                               176713.65
TotalPayBenefits                       212646.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75024, dtype: object)
(75025, Id                           75026
EmployeeName        Scott T Doonan
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               44952.99
OtherPay                   12034.0
Benefits                  39729.67
TotalPay                 172880.45
TotalPayBenefits         212610.12
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75025, dtype: object)
(75026, Id                                         75027
EmployeeName                    Joseph M Barbero
JobTitle            Lieutenant, Fire Suppression
BasePay                                 154575.0
OvertimePay                                  0.0
OtherPay                                 12824.0
Benefits                                45211.11
TotalPay                                167399.0
TotalPayBenefits                       212610.11
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75026, dtype: object)
(75027, Id                             75028
EmployeeName        Zenaida  Puentes
JobTitle            Registered Nurse
BasePay                    137611.56
OvertimePay                  4272.76
OtherPay                    23925.25
Benefits                    46775.13
TotalPay                   165809.57
TotalPayBenefits            212584.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75027, dtype: object)
(75028, Id                             75029
EmployeeName                 Lin  Li
JobTitle            Registered Nurse
BasePay                    129560.41
OvertimePay                  8721.67
OtherPay                    31842.26
Benefits                    42456.48
TotalPay                   170124.34
TotalPayBenefits           212580.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75028, dtype: object)
(75029, Id                               75030
EmployeeName                  Jia  Liu
JobTitle            Transit Supervisor
BasePay                       92105.24
OvertimePay                   80219.96
OtherPay                        6785.2
Benefits                      33454.04
TotalPay                      179110.4
TotalPayBenefits             212564.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75029, dtype: object)
(75030, Id                                      75031
EmployeeName             Kathleen A Gilbraith
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.21
OvertimePay                          16006.39
OtherPay                             16254.13
Benefits                             45143.17
TotalPay                            167404.73
TotalPayBenefits                     212547.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75030, dtype: object)
(75031, Id                                       75032
EmployeeName                   Mark P Costanzo
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              161751.51
OvertimePay                                0.0
OtherPay                                4743.6
Benefits                              46037.82
TotalPay                             166495.11
TotalPayBenefits                     212532.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75031, dtype: object)
(75032, Id                           75033
EmployeeName        Carla L Hurley
JobTitle                Sergeant 3
BasePay                  133013.11
OvertimePay               10887.26
OtherPay                  29581.66
Benefits                  39038.22
TotalPay                 173482.03
TotalPayBenefits         212520.25
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75032, dtype: object)
(75033, Id                                    75034
EmployeeName        Cristobal R Guajardo Jr
JobTitle                        Firefighter
BasePay                           117359.91
OvertimePay                        37383.86
OtherPay                           17024.32
Benefits                           40699.68
TotalPay                          171768.09
TotalPayBenefits                  212467.77
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75033, dtype: object)
(75034, Id                                  75035
EmployeeName               Irene A Ybarra
JobTitle            Fire Rescue Paramedic
BasePay                         127833.07
OvertimePay                      27032.83
OtherPay                         16841.43
Benefits                         40740.14
TotalPay                        171707.33
TotalPayBenefits                212447.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75034, dtype: object)
(75035, Id                                75036
EmployeeName        Lawrence  Kempinski
JobTitle                     Sergeant 3
BasePay                       143289.14
OvertimePay                    17770.15
OtherPay                       10584.39
Benefits                       40787.04
TotalPay                      171643.68
TotalPayBenefits              212430.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75035, dtype: object)
(75036, Id                              75037
EmployeeName        Wilfred  Williams
JobTitle                   Sergeant 3
BasePay                     143289.22
OvertimePay                  16193.33
OtherPay                     11377.38
Benefits                     41556.45
TotalPay                    170859.93
TotalPayBenefits            212416.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75036, dtype: object)
(75037, Id                                 75038
EmployeeName        Thomas E DeCaigny II
JobTitle                     Dept Head I
BasePay                        147904.43
OvertimePay                          0.0
OtherPay                        10325.64
Benefits                        54143.66
TotalPay                       158230.07
TotalPayBenefits               212373.73
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75037, dtype: object)
(75038, Id                          75039
EmployeeName         Tracy C Boes
JobTitle               Sergeant 3
BasePay                 143289.09
OvertimePay              20852.82
OtherPay                  7319.93
Benefits                 40879.56
TotalPay                171461.84
TotalPayBenefits         212341.4
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75038, dtype: object)
(75039, Id                             75040
EmployeeName        Angelene M Canas
JobTitle               Nurse Manager
BasePay                     141608.0
OvertimePay                      0.0
OtherPay                    26931.17
Benefits                    43768.34
TotalPay                   168539.17
TotalPayBenefits           212307.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75039, dtype: object)
(75040, Id                                         75041
EmployeeName                    Matthew M Cannon
JobTitle            Lieutenant, Fire Suppression
BasePay                                135440.73
OvertimePay                             15933.58
OtherPay                                16475.47
Benefits                                 44417.1
TotalPay                               167849.78
TotalPayBenefits                       212266.88
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75040, dtype: object)
(75041, Id                                   75042
EmployeeName        Christopher A Schaffer
JobTitle                        Sergeant 2
BasePay                           140724.0
OvertimePay                       17647.57
OtherPay                          13356.26
Benefits                          40531.34
TotalPay                         171727.83
TotalPayBenefits                 212259.17
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75041, dtype: object)
(75042, Id                            75043
EmployeeName         Gerald J White
JobTitle            Insp, Fire Dept
BasePay                   139644.01
OvertimePay                18145.97
OtherPay                   12102.48
Benefits                   42361.99
TotalPay                  169892.46
TotalPayBenefits          212254.45
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75042, dtype: object)
(75043, Id                                   75044
EmployeeName        Kevin T Fisher-Paulson
JobTitle                 Sheriff's Captain
BasePay                          150712.01
OvertimePay                        3205.41
OtherPay                          13521.85
Benefits                           44812.1
TotalPay                         167439.27
TotalPayBenefits                 212251.37
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75043, dtype: object)
(75044, Id                          75045
EmployeeName         Kevin  Lyons
JobTitle                Manager V
BasePay                 159409.45
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52841.02
TotalPay                159409.45
TotalPayBenefits        212250.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75044, dtype: object)
(75045, Id                                 75046
EmployeeName               Kelly V Eagen
JobTitle            Physician Specialist
BasePay                        160907.21
OvertimePay                          0.0
OtherPay                          4830.0
Benefits                        46481.83
TotalPay                       165737.21
TotalPayBenefits               212219.04
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75045, dtype: object)
(75046, Id                           75047
EmployeeName        Tammy M Halley
JobTitle                Sergeant 3
BasePay                  143289.22
OvertimePay               13606.34
OtherPay                  13743.52
Benefits                   41573.6
TotalPay                 170639.08
TotalPayBenefits         212212.68
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75046, dtype: object)
(75047, Id                          75048
EmployeeName           Leo  Kiang
JobTitle               Sergeant 3
BasePay                 142555.16
OvertimePay               2300.28
OtherPay                 26660.95
Benefits                 40689.15
TotalPay                171516.39
TotalPayBenefits        212205.54
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75047, dtype: object)
(75048, Id                               75049
EmployeeName        Ian J Derammelaere
JobTitle                   Firefighter
BasePay                       116956.7
OvertimePay                   33176.72
OtherPay                      20605.75
Benefits                      41445.95
TotalPay                     170739.17
TotalPayBenefits             212185.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75048, dtype: object)
(75049, Id                          75050
EmployeeName        Harald  Matej
JobTitle                Manager V
BasePay                 155208.54
OvertimePay                   0.0
OtherPay                   4000.0
Benefits                 52961.19
TotalPay                159208.54
TotalPayBenefits        212169.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75049, dtype: object)
(75050, Id                              75051
EmployeeName            Edwin R James
JobTitle            Sheriff's Captain
BasePay                     150713.41
OvertimePay                   3686.83
OtherPay                     12906.88
Benefits                     44812.55
TotalPay                    167307.12
TotalPayBenefits            212119.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75050, dtype: object)
(75051, Id                              75052
EmployeeName        Michael  Guajardo
JobTitle                  Firefighter
BasePay                     116956.69
OvertimePay                  34137.76
OtherPay                     19590.11
Benefits                     41406.58
TotalPay                    170684.56
TotalPayBenefits            212091.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75051, dtype: object)
(75052, Id                           75053
EmployeeName        Donna E Jacobs
JobTitle                IS Manager
BasePay                  153915.53
OvertimePay                    0.0
OtherPay                   7894.03
Benefits                  50237.06
TotalPay                 161809.56
TotalPayBenefits         212046.62
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75052, dtype: object)
(75053, Id                          75054
EmployeeName         Rexie  Megia
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay               37797.1
OtherPay                  16614.8
Benefits                  40665.8
TotalPay                171368.59
TotalPayBenefits        212034.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75053, dtype: object)
(75054, Id                                  75055
EmployeeName            Leonard O Maloney
JobTitle            Senior Deputy Sheriff
BasePay                          105436.5
OvertimePay                      60832.15
OtherPay                          9656.25
Benefits                         36109.04
TotalPay                         175924.9
TotalPayBenefits                212033.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75054, dtype: object)
(75055, Id                              75056
EmployeeName        Patrick M Zapponi
JobTitle                   Sergeant 3
BasePay                     143289.16
OvertimePay                  18943.49
OtherPay                      8673.89
Benefits                      41102.6
TotalPay                    170906.54
TotalPayBenefits            212009.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75055, dtype: object)
(75056, Id                              75057
EmployeeName        Angelo J Spagnoli
JobTitle             Police Officer 3
BasePay                     122327.75
OvertimePay                  45049.58
OtherPay                      7352.07
Benefits                     37242.42
TotalPay                     174729.4
TotalPayBenefits            211971.82
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75056, dtype: object)
(75057, Id                                       75058
EmployeeName                  Ramon J Terrazas
JobTitle            Supervising Physician Spec
BasePay                              168516.16
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43448.95
TotalPay                             168516.16
TotalPayBenefits                     211965.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75057, dtype: object)
(75058, Id                             75059
EmployeeName        Joseph A Sharlow
JobTitle              Police Officer
BasePay                    116478.01
OvertimePay                 41242.62
OtherPay                     18508.8
Benefits                    35732.23
TotalPay                   176229.43
TotalPayBenefits           211961.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75058, dtype: object)
(75059, Id                             75060
EmployeeName        Michael D Petuya
JobTitle                  Sergeant 3
BasePay                    133013.17
OvertimePay                 14357.15
OtherPay                    25428.93
Benefits                    39138.05
TotalPay                   172799.25
TotalPayBenefits            211937.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75059, dtype: object)
(75060, Id                              75061
EmployeeName        Rosanna S Russell
JobTitle                   Manager VI
BasePay                      166528.0
OvertimePay                       0.0
OtherPay                       2500.0
Benefits                      42874.3
TotalPay                     169028.0
TotalPayBenefits             211902.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75060, dtype: object)
(75061, Id                             75062
EmployeeName         Joseph J Robles
JobTitle            Police Officer 2
BasePay                     126153.1
OvertimePay                 34414.99
OtherPay                    12337.06
Benefits                    38941.54
TotalPay                   172905.15
TotalPayBenefits           211846.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75061, dtype: object)
(75062, Id                          75063
EmployeeName          Justin  Erb
JobTitle               Sergeant 3
BasePay                 143289.06
OvertimePay              19857.73
OtherPay                  7868.06
Benefits                 40813.32
TotalPay                171014.85
TotalPayBenefits        211828.17
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75062, dtype: object)
(75063, Id                                 75064
EmployeeName        Bernardita U Arrieta
JobTitle             IS Project Director
BasePay                        146883.34
OvertimePay                          0.0
OtherPay                        22718.49
Benefits                        42198.16
TotalPay                       169601.83
TotalPayBenefits               211799.99
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75063, dtype: object)
(75064, Id                              75065
EmployeeName        Richard K Stevens
JobTitle                  Firefighter
BasePay                     109781.17
OvertimePay                  42181.82
OtherPay                     20376.55
Benefits                     39441.63
TotalPay                    172339.54
TotalPayBenefits            211781.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75064, dtype: object)
(75065, Id                          75066
EmployeeName        Derrick J Lew
JobTitle               Sergeant 3
BasePay                 143289.12
OvertimePay              16304.55
OtherPay                 11124.85
Benefits                 41045.87
TotalPay                170718.52
TotalPayBenefits        211764.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75065, dtype: object)
(75066, Id                          75067
EmployeeName         Conroy H Tam
JobTitle               Sergeant 2
BasePay                  130330.0
OvertimePay              19522.37
OtherPay                 23409.32
Benefits                 38473.12
TotalPay                173261.69
TotalPayBenefits        211734.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75066, dtype: object)
(75067, Id                           75068
EmployeeName        Paul F Doherty
JobTitle                Sergeant 3
BasePay                  143289.07
OvertimePay               15115.97
OtherPay                  12518.45
Benefits                  40795.69
TotalPay                 170923.49
TotalPayBenefits         211719.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75067, dtype: object)
(75068, Id                               75069
EmployeeName          Sharon A Legenza
JobTitle            Nurse Practitioner
BasePay                      136694.52
OvertimePay                   16150.14
OtherPay                      15465.26
Benefits                      43400.67
TotalPay                     168309.92
TotalPayBenefits             211710.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75068, dtype: object)
(75069, Id                             75070
EmployeeName         Brian D Michaud
JobTitle            Police Officer 3
BasePay                    123471.13
OvertimePay                 44272.37
OtherPay                     6929.93
Benefits                    37025.18
TotalPay                   174673.43
TotalPayBenefits           211698.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75069, dtype: object)
(75070, Id                             75071
EmployeeName             Ryan N Hart
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 49480.16
OtherPay                      4571.4
Benefits                    36571.12
TotalPay                   175119.56
TotalPayBenefits           211690.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75070, dtype: object)
(75071, Id                                    75072
EmployeeName        Francine Maiko  Bristow
JobTitle                        Firefighter
BasePay                            116956.7
OvertimePay                        43376.35
OtherPay                           11347.43
Benefits                            40008.3
TotalPay                          171680.48
TotalPayBenefits                  211688.78
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75071, dtype: object)
(75072, Id                                         75073
EmployeeName                       Ramon  Garcia
JobTitle            Engineer/Architect Principal
BasePay                                 175947.9
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                35690.83
TotalPay                                175947.9
TotalPayBenefits                       211638.73
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75072, dtype: object)
(75073, Id                             75074
EmployeeName         Robert A Deleon
JobTitle            Police Officer 3
BasePay                    123070.92
OvertimePay                 49051.02
OtherPay                     2569.08
Benefits                     36922.7
TotalPay                   174691.02
TotalPayBenefits           211613.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75073, dtype: object)
(75074, Id                                        75075
EmployeeName                      Kenneth L Lim
JobTitle            Electronic Maintenance Tech
BasePay                                105509.2
OvertimePay                            61025.93
OtherPay                                8968.14
Benefits                               36109.74
TotalPay                              175503.27
TotalPayBenefits                      211613.01
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75074, dtype: object)
(75075, Id                            75076
EmployeeName        Charles K Kwong
JobTitle                Firefighter
BasePay                   115893.48
OvertimePay                34642.16
OtherPay                   19853.61
Benefits                   41201.84
TotalPay                  170389.25
TotalPayBenefits          211591.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75075, dtype: object)
(75076, Id                                      75077
EmployeeName                James  Kucharszky
JobTitle            EMT/Paramedic/Firefighter
BasePay                             128870.28
OvertimePay                          27090.52
OtherPay                              13175.4
Benefits                             42430.25
TotalPay                             169136.2
TotalPayBenefits                    211566.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75076, dtype: object)
(75077, Id                                      75078
EmployeeName                    Michael  Song
JobTitle            EMT/Paramedic/Firefighter
BasePay                             124868.13
OvertimePay                          34348.14
OtherPay                             11235.16
Benefits                             41114.31
TotalPay                            170451.43
TotalPayBenefits                    211565.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75077, dtype: object)
(75078, Id                                 75079
EmployeeName        Scott A Hoey-Custock
JobTitle                Police Officer 3
BasePay                        123471.19
OvertimePay                     44179.54
OtherPay                         6856.68
Benefits                        37025.18
TotalPay                       174507.41
TotalPayBenefits               211532.59
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75078, dtype: object)
(75079, Id                               75080
EmployeeName        Robert D Scheppler
JobTitle                   Firefighter
BasePay                      116602.29
OvertimePay                   30537.32
OtherPay                      23105.49
Benefits                      41285.83
TotalPay                      170245.1
TotalPayBenefits             211530.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75079, dtype: object)
(75080, Id                             75081
EmployeeName              Nelson  Yu
JobTitle            Police Officer 2
BasePay                     119947.0
OvertimePay                 39758.69
OtherPay                    15545.08
Benefits                    36276.73
TotalPay                   175250.77
TotalPayBenefits            211527.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75080, dtype: object)
(75081, Id                                      75082
EmployeeName                 Shilu E Ramchand
JobTitle            Clinical Nurse Specialist
BasePay                             162593.77
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             48921.01
TotalPay                            162593.77
TotalPayBenefits                    211514.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75081, dtype: object)
(75082, Id                                 75083
EmployeeName        Karen  Triandafyllis
JobTitle              Nurse Practitioner
BasePay                        160298.54
OvertimePay                          0.0
OtherPay                          2750.0
Benefits                        48423.86
TotalPay                       163048.54
TotalPayBenefits                211472.4
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75082, dtype: object)
(75083, Id                             75084
EmployeeName          Jessie A Ortiz
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 43090.48
OtherPay                    10712.53
Benefits                    36600.58
TotalPay                   174871.01
TotalPayBenefits           211471.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75083, dtype: object)
(75084, Id                             75085
EmployeeName          Brian J Guiney
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 34913.89
OtherPay                     15713.5
Benefits                    37370.38
TotalPay                   174098.54
TotalPayBenefits           211468.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75084, dtype: object)
(75085, Id                          75086
EmployeeName           Tom Y Fung
JobTitle                Manager V
BasePay                 155208.53
OvertimePay                   0.0
OtherPay                   3500.0
Benefits                 52758.53
TotalPay                158708.53
TotalPayBenefits        211467.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75085, dtype: object)
(75086, Id                          75087
EmployeeName         Kevin H Wong
JobTitle               Sergeant 3
BasePay                 143289.08
OvertimePay              18625.31
OtherPay                  8689.81
Benefits                 40816.76
TotalPay                 170604.2
TotalPayBenefits        211420.96
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75086, dtype: object)
(75087, Id                             75088
EmployeeName        Christine P Tang
JobTitle              Assoc Engineer
BasePay                    166112.73
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    45303.73
TotalPay                   166112.73
TotalPayBenefits           211416.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75087, dtype: object)
(75088, Id                                      75089
EmployeeName                     John A Orkes
JobTitle            Transit Power Line Worker
BasePay                              106045.0
OvertimePay                          58220.45
OtherPay                              10604.5
Benefits                              36544.8
TotalPay                            174869.95
TotalPayBenefits                    211414.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75088, dtype: object)
(75089, Id                           75090
EmployeeName        Frank P Roldan
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay                33503.6
OtherPay                  19483.86
Benefits                  41406.58
TotalPay                 169944.18
TotalPayBenefits         211350.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75089, dtype: object)
(75090, Id                             75091
EmployeeName           Noel P Deleon
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 42383.49
OtherPay                     2399.38
Benefits                     37997.5
TotalPay                   173338.87
TotalPayBenefits           211336.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75090, dtype: object)
(75091, Id                             75092
EmployeeName        Robert R Bohanan
JobTitle                  Sergeant 3
BasePay                     66337.59
OvertimePay                  3072.24
OtherPay                   123087.72
Benefits                    18763.06
TotalPay                   192497.55
TotalPayBenefits           211260.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75091, dtype: object)
(75092, Id                            75093
EmployeeName        Steven  Pomatto
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                11117.76
OtherPay                   16013.58
Benefits                   40837.38
TotalPay                  170420.45
TotalPayBenefits          211257.83
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75092, dtype: object)
(75093, Id                                75094
EmployeeName        Christopher D Creed
JobTitle                   Lieutenant 3
BasePay                       152307.48
OvertimePay                     4439.81
OtherPay                       11791.97
Benefits                       42704.73
TotalPay                      168539.26
TotalPayBenefits              211243.99
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75093, dtype: object)
(75094, Id                             75095
EmployeeName         Lenin A Pabiona
JobTitle            Registered Nurse
BasePay                    137667.84
OvertimePay                   3608.9
OtherPay                    23524.64
Benefits                    46436.08
TotalPay                   164801.38
TotalPayBenefits           211237.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75094, dtype: object)
(75095, Id                            75096
EmployeeName        Matthew  Kenney
JobTitle                 Sergeant 3
BasePay                   142555.16
OvertimePay                 9867.73
OtherPay                   18125.02
Benefits                   40657.05
TotalPay                  170547.91
TotalPayBenefits          211204.96
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75095, dtype: object)
(75096, Id                                         75097
EmployeeName                   Richard A Fonseca
JobTitle            Automotive Trnst Shop Sprv 1
BasePay                                 116205.5
OvertimePay                             58145.71
OtherPay                                   550.0
Benefits                                36303.17
TotalPay                               174901.21
TotalPayBenefits                       211204.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75096, dtype: object)
(75097, Id                             75098
EmployeeName        Rosario P Flores
JobTitle            Registered Nurse
BasePay                    142408.52
OvertimePay                  6963.04
OtherPay                     17909.6
Benefits                    43914.04
TotalPay                   167281.16
TotalPayBenefits            211195.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75097, dtype: object)
(75098, Id                             75099
EmployeeName        William K Toomey
JobTitle                  Sergeant 3
BasePay                    143289.11
OvertimePay                 17563.91
OtherPay                     9428.97
Benefits                    40912.77
TotalPay                   170281.99
TotalPayBenefits           211194.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75098, dtype: object)
(75099, Id                             75100
EmployeeName            James  Lewis
JobTitle            Police Officer 2
BasePay                    126153.09
OvertimePay                 36361.13
OtherPay                     9677.57
Benefits                    38994.59
TotalPay                   172191.79
TotalPayBenefits           211186.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75099, dtype: object)
(75100, Id                             75101
EmployeeName        Gerald B Newbeck
JobTitle                  Sergeant 2
BasePay                     140724.0
OvertimePay                 16708.97
OtherPay                    13287.44
Benefits                    40458.85
TotalPay                   170720.41
TotalPayBenefits           211179.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75100, dtype: object)
(75101, Id                             75102
EmployeeName              Chee K Lam
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  9119.18
OtherPay                    17336.07
Benefits                    42292.13
TotalPay                   168880.25
TotalPayBenefits           211172.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75101, dtype: object)
(75102, Id                                         75103
EmployeeName                      Robert T Kishi
JobTitle            Lieutenant, Fire Suppression
BasePay                                135670.27
OvertimePay                             13205.22
OtherPay                                 16958.9
Benefits                                45335.73
TotalPay                               165834.39
TotalPayBenefits                       211170.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75102, dtype: object)
(75103, Id                                75104
EmployeeName            Troy A Drysdale
JobTitle            Clinical Pharmacist
BasePay                       156162.21
OvertimePay                     6885.86
OtherPay                        2185.93
Benefits                       45926.78
TotalPay                       165234.0
TotalPayBenefits              211160.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75103, dtype: object)
(75104, Id                             75105
EmployeeName        Marissa F Orbino
JobTitle            Registered Nurse
BasePay                     139471.0
OvertimePay                 12429.24
OtherPay                    21634.84
Benefits                    37593.68
TotalPay                   173535.08
TotalPayBenefits           211128.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75104, dtype: object)
(75105, Id                            75106
EmployeeName        Samuel A Christ
JobTitle                 Sergeant 3
BasePay                    143289.1
OvertimePay                18661.61
OtherPay                    8379.04
Benefits                   40782.01
TotalPay                  170329.75
TotalPayBenefits          211111.76
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75105, dtype: object)
(75106, Id                                75107
EmployeeName        Michael D Alexander
JobTitle               Police Officer 2
BasePay                       126153.06
OvertimePay                    40730.89
OtherPay                        6661.34
Benefits                       37563.08
TotalPay                      173545.29
TotalPayBenefits              211108.37
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75106, dtype: object)
(75107, Id                                       75108
EmployeeName                   Kristin L Allen
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              162104.02
OvertimePay                                0.0
OtherPay                                3136.5
Benefits                              45815.63
TotalPay                             165240.52
TotalPayBenefits                     211056.15
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75107, dtype: object)
(75108, Id                             75109
EmployeeName        Marilyn G Dobbas
JobTitle            Registered Nurse
BasePay                    126982.46
OvertimePay                  6930.05
OtherPay                    30995.16
Benefits                     46144.6
TotalPay                   164907.67
TotalPayBenefits           211052.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75108, dtype: object)
(75109, Id                          75110
EmployeeName         Scott F Ryan
JobTitle             Lieutenant 2
BasePay                 150318.06
OvertimePay              11981.98
OtherPay                  6445.45
Benefits                 42293.48
TotalPay                168745.49
TotalPayBenefits        211038.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75109, dtype: object)
(75110, Id                               75111
EmployeeName          Cynthia D Thomas
JobTitle            Transit Supervisor
BasePay                        92126.4
OvertimePay                   77601.91
OtherPay                       7672.61
Benefits                       33634.5
TotalPay                     177400.92
TotalPayBenefits             211035.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75110, dtype: object)
(75111, Id                           75112
EmployeeName        Trevor B Kelly
JobTitle                Sergeant 3
BasePay                  143289.13
OvertimePay               16198.83
OtherPay                  10729.84
Benefits                  40813.28
TotalPay                  170217.8
TotalPayBenefits         211031.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75111, dtype: object)
(75112, Id                          75113
EmployeeName        Danny L Lopez
JobTitle               Sergeant 3
BasePay                 143289.01
OvertimePay               9584.44
OtherPay                  15458.3
Benefits                 42691.51
TotalPay                168331.75
TotalPayBenefits        211023.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75112, dtype: object)
(75113, Id                          75114
EmployeeName         Sara  Conrad
JobTitle               Pharmacist
BasePay                 146745.01
OvertimePay              21098.74
OtherPay                   934.06
Benefits                 42202.68
TotalPay                168777.81
TotalPayBenefits        210980.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75113, dtype: object)
(75114, Id                                75115
EmployeeName        Josephine C Cabrera
JobTitle               Registered Nurse
BasePay                       139963.57
OvertimePay                     9692.82
OtherPay                       21243.62
Benefits                       40059.34
TotalPay                      170900.01
TotalPayBenefits              210959.35
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75114, dtype: object)
(75115, Id                                 75116
EmployeeName        Carol L Conley-Bodin
JobTitle                     Firefighter
BasePay                         127392.1
OvertimePay                     24713.88
OtherPay                         15321.9
Benefits                         43502.7
TotalPay                       167427.88
TotalPayBenefits               210930.58
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75115, dtype: object)
(75116, Id                            75117
EmployeeName        Thomas P Feledy
JobTitle               Lieutenant 3
BasePay                    87899.04
OvertimePay                   28.41
OtherPay                   99137.65
Benefits                   23860.42
TotalPay                   187065.1
TotalPayBenefits          210925.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75116, dtype: object)
(75117, Id                              75118
EmployeeName        Damon M Robertson
JobTitle                  Firefighter
BasePay                     103887.97
OvertimePay                  49210.76
OtherPay                     16887.91
Benefits                     40926.13
TotalPay                    169986.64
TotalPayBenefits            210912.77
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75117, dtype: object)
(75118, Id                                75119
EmployeeName           Christina S Wang
JobTitle            Clinical Pharmacist
BasePay                       161757.03
OvertimePay                     3967.17
OtherPay                         269.59
Benefits                       44918.83
TotalPay                      165993.79
TotalPayBenefits              210912.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75118, dtype: object)
(75119, Id                                 75120
EmployeeName        Joseph J Fischer III
JobTitle                      Sergeant 3
BasePay                        143289.19
OvertimePay                     15876.89
OtherPay                        10604.36
Benefits                        41127.51
TotalPay                       169770.44
TotalPayBenefits               210897.95
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75119, dtype: object)
(75120, Id                                         75121
EmployeeName                   Michael  Fucciolo
JobTitle            Lieutenant, Fire Suppression
BasePay                                136207.77
OvertimePay                             12710.94
OtherPay                                16763.15
Benefits                                45205.15
TotalPay                               165681.86
TotalPayBenefits                       210887.01
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75120, dtype: object)
(75121, Id                              75122
EmployeeName         Michele D Fisher
JobTitle            Sheriff's Captain
BasePay                      150712.0
OvertimePay                   2443.92
OtherPay                     12906.51
Benefits                      44812.1
TotalPay                    166062.43
TotalPayBenefits            210874.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75121, dtype: object)
(75122, Id                              75123
EmployeeName        Joseph T Barretta
JobTitle                   Sergeant 3
BasePay                      143289.2
OvertimePay                    8366.3
OtherPay                     18033.74
Benefits                      41175.0
TotalPay                    169689.24
TotalPayBenefits            210864.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75122, dtype: object)
(75123, Id                                75124
EmployeeName        Vincente G Zambrana
JobTitle                 Deputy Sheriff
BasePay                        94947.65
OvertimePay                     65739.2
OtherPay                       14591.41
Benefits                       35561.47
TotalPay                      175278.26
TotalPayBenefits              210839.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75123, dtype: object)
(75124, Id                               75125
EmployeeName              Patsy C Cain
JobTitle            Transit Supervisor
BasePay                        91787.7
OvertimePay                   62817.81
OtherPay                       9241.44
Benefits                      46967.07
TotalPay                     163846.95
TotalPayBenefits             210814.02
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75124, dtype: object)
(75125, Id                                          75126
EmployeeName                     Dennis J Omahony
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.16
OvertimePay                              21073.12
OtherPay                                 13650.84
Benefits                                 40812.98
TotalPay                                169994.12
TotalPayBenefits                         210807.1
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75125, dtype: object)
(75126, Id                                75127
EmployeeName        Michele  Rutherford
JobTitle                     Manager IV
BasePay                       147866.98
OvertimePay                         0.0
OtherPay                       10231.07
Benefits                       52704.97
TotalPay                      158098.05
TotalPayBenefits              210803.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75126, dtype: object)
(75127, Id                            75128
EmployeeName        Francis J Hagan
JobTitle                 Sergeant 3
BasePay                   143289.14
OvertimePay                 8891.33
OtherPay                   17812.78
Benefits                   40787.06
TotalPay                  169993.25
TotalPayBenefits          210780.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75127, dtype: object)
(75128, Id                                75129
EmployeeName        Robert C Dotson III
JobTitle                    Firefighter
BasePay                       116956.71
OvertimePay                    33598.75
OtherPay                       18801.59
Benefits                       41406.58
TotalPay                      169357.05
TotalPayBenefits              210763.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75128, dtype: object)
(75129, Id                          75130
EmployeeName        Nancy  Brewer
JobTitle               Sergeant 3
BasePay                 143289.06
OvertimePay               4059.85
OtherPay                 20198.75
Benefits                 43159.95
TotalPay                167547.66
TotalPayBenefits        210707.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75129, dtype: object)
(75130, Id                             75131
EmployeeName             Harry K Lee
JobTitle            Police Officer 3
BasePay                    123471.17
OvertimePay                 46196.39
OtherPay                     3978.27
Benefits                    37025.18
TotalPay                   173645.83
TotalPayBenefits           210671.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75130, dtype: object)
(75131, Id                                 75132
EmployeeName        Bernadette  Robinson
JobTitle                      Sergeant 3
BasePay                        127652.02
OvertimePay                     18783.92
OtherPay                        26012.47
Benefits                        38213.05
TotalPay                       172448.41
TotalPayBenefits               210661.46
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75131, dtype: object)
(75132, Id                            75133
EmployeeName         Paul D Orlando
JobTitle            Insp, Fire Dept
BasePay                   139644.05
OvertimePay                20250.38
OtherPay                    9215.94
Benefits                   41539.01
TotalPay                  169110.37
TotalPayBenefits          210649.38
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75132, dtype: object)
(75133, Id                             75134
EmployeeName         Andrew M Bryant
JobTitle            Police Officer 2
BasePay                    121013.75
OvertimePay                 43974.73
OtherPay                     9064.03
Benefits                    36561.51
TotalPay                   174052.51
TotalPayBenefits           210614.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75133, dtype: object)
(75134, Id                                          75135
EmployeeName                       Duane M Silver
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                   94658.4
OvertimePay                              73277.56
OtherPay                                  8595.89
Benefits                                 34069.17
TotalPay                                176531.85
TotalPayBenefits                        210601.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75134, dtype: object)
(75135, Id                            75136
EmployeeName        Maria H Ciriaco
JobTitle                 Sergeant 3
BasePay                   129343.04
OvertimePay                14360.97
OtherPay                   28636.73
Benefits                   38248.38
TotalPay                  172340.74
TotalPayBenefits          210589.12
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75135, dtype: object)
(75136, Id                           75137
EmployeeName        Edna C Paredes
JobTitle             Nurse Manager
BasePay                   157975.9
OvertimePay                    0.0
OtherPay                    6728.4
Benefits                   45862.7
TotalPay                  164704.3
TotalPayBenefits          210567.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75136, dtype: object)
(75137, Id                             75138
EmployeeName         Teresita G Pira
JobTitle            Registered Nurse
BasePay                    141089.77
OvertimePay                  7915.02
OtherPay                    13797.63
Benefits                    47722.04
TotalPay                   162802.42
TotalPayBenefits           210524.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75137, dtype: object)
(75138, Id                           75139
EmployeeName        Elisha A Perez
JobTitle             Nurse Manager
BasePay                  161997.92
OvertimePay                    0.0
OtherPay                    1442.3
Benefits                   47045.7
TotalPay                 163440.22
TotalPayBenefits         210485.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75138, dtype: object)
(75139, Id                                        75140
EmployeeName                Madhanika L Srirama
JobTitle            Senior Physician Specialist
BasePay                               152249.79
OvertimePay                                 0.0
OtherPay                               22837.91
Benefits                               35384.61
TotalPay                               175087.7
TotalPayBenefits                      210472.31
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75139, dtype: object)
(75140, Id                             75141
EmployeeName        Marge S Vizcarra
JobTitle                  Manager VI
BasePay                    166528.02
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                    42423.91
TotalPay                   168028.02
TotalPayBenefits           210451.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75140, dtype: object)
(75141, Id                            75142
EmployeeName        Daniel J Simone
JobTitle                 Sergeant 3
BasePay                   143289.07
OvertimePay                13475.19
OtherPay                   12874.19
Benefits                   40811.56
TotalPay                  169638.45
TotalPayBenefits          210450.01
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75141, dtype: object)
(75142, Id                             75143
EmployeeName        Steven P Ambrose
JobTitle                     Dentist
BasePay                    163282.71
OvertimePay                      0.0
OtherPay                     1973.08
Benefits                    45184.25
TotalPay                   165255.79
TotalPayBenefits           210440.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75142, dtype: object)
(75143, Id                             75144
EmployeeName          Eden B Barredo
JobTitle            Registered Nurse
BasePay                    138793.11
OvertimePay                   8549.3
OtherPay                    21709.11
Benefits                    41376.55
TotalPay                   169051.52
TotalPayBenefits           210428.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75143, dtype: object)
(75144, Id                             75145
EmployeeName          Kelly R Wesley
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 39978.09
OtherPay                      9939.9
Benefits                    37034.34
TotalPay                   173389.03
TotalPayBenefits           210423.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75144, dtype: object)
(75145, Id                          75146
EmployeeName        Mark J Moreno
JobTitle               Sergeant 3
BasePay                 143289.17
OvertimePay              21926.65
OtherPay                  4379.41
Benefits                 40804.48
TotalPay                169595.23
TotalPayBenefits        210399.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75145, dtype: object)
(75146, Id                          75147
EmployeeName        Radhika K Fox
JobTitle                Manager V
BasePay                 155285.42
OvertimePay                   0.0
OtherPay                  1403.87
Benefits                 53664.67
TotalPay                156689.29
TotalPayBenefits        210353.96
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75146, dtype: object)
(75147, Id                          75148
EmployeeName        Alex  Rodatos
JobTitle               Sergeant 3
BasePay                 142555.08
OvertimePay               5928.06
OtherPay                 21146.18
Benefits                 40715.86
TotalPay                169629.32
TotalPayBenefits        210345.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75147, dtype: object)
(75148, Id                              75149
EmployeeName        Kenneth S Epstein
JobTitle                   Manager IV
BasePay                     156461.84
OvertimePay                       0.0
OtherPay                        28.84
Benefits                     53840.85
TotalPay                    156490.68
TotalPayBenefits            210331.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75148, dtype: object)
(75149, Id                              75150
EmployeeName        Tauva'a L Johnson
JobTitle             Police Officer 2
BasePay                      118518.1
OvertimePay                  43266.42
OtherPay                     11823.56
Benefits                     36693.03
TotalPay                    173608.08
TotalPayBenefits            210301.11
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75149, dtype: object)
(75150, Id                             75151
EmployeeName         Kevin E Needham
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 25951.49
OtherPay                    23327.73
Benefits                    37550.66
TotalPay                   172750.25
TotalPayBenefits           210300.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75150, dtype: object)
(75151, Id                                 75152
EmployeeName        Merceditas P Sarzaba
JobTitle                Registered Nurse
BasePay                        136615.26
OvertimePay                       5499.2
OtherPay                        22108.44
Benefits                        46069.39
TotalPay                        164222.9
TotalPayBenefits               210292.29
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75151, dtype: object)
(75152, Id                          75153
EmployeeName        Delene S Wolf
JobTitle              Dept Head I
BasePay                 156450.51
OvertimePay                   0.0
OtherPay                   1211.0
Benefits                 52622.75
TotalPay                157661.51
TotalPayBenefits        210284.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75152, dtype: object)
(75153, Id                             75154
EmployeeName          Justina  Dizon
JobTitle            Registered Nurse
BasePay                    138201.76
OvertimePay                  4103.21
OtherPay                    21577.41
Benefits                    46392.76
TotalPay                   163882.38
TotalPayBenefits           210275.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75153, dtype: object)
(75154, Id                            75155
EmployeeName        William J Boyle
JobTitle                Firefighter
BasePay                   115893.49
OvertimePay                34455.53
OtherPay                   18930.94
Benefits                   40946.46
TotalPay                  169279.96
TotalPayBenefits          210226.42
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75154, dtype: object)
(75155, Id                               75156
EmployeeName           Charles A Scott
JobTitle            Transit Supervisor
BasePay                        92126.4
OvertimePay                    75878.8
OtherPay                       8392.02
Benefits                      33760.28
TotalPay                     176397.22
TotalPayBenefits              210157.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75155, dtype: object)
(75156, Id                          75157
EmployeeName         Lynn  Reilly
JobTitle               Sergeant 3
BasePay                  129343.1
OvertimePay               11831.1
OtherPay                 30749.29
Benefits                 38218.38
TotalPay                171923.49
TotalPayBenefits        210141.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75156, dtype: object)
(75157, Id                            75158
EmployeeName        Milanda Z Moore
JobTitle               Lieutenant 3
BasePay                   163674.05
OvertimePay                  577.79
OtherPay                    1203.89
Benefits                    44660.9
TotalPay                  165455.73
TotalPayBenefits          210116.63
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75157, dtype: object)
(75158, Id                                         75159
EmployeeName                   Theresa R Wolowic
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.92
OvertimePay                              14367.1
OtherPay                                14739.37
Benefits                                45080.72
TotalPay                               165009.39
TotalPayBenefits                       210090.11
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75158, dtype: object)
(75159, Id                                         75160
EmployeeName        David Francis James  Hopkins
JobTitle                         Manager VI, MTA
BasePay                                155208.51
OvertimePay                                  0.0
OtherPay                                  1000.0
Benefits                                53867.57
TotalPay                               156208.51
TotalPayBenefits                       210076.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75159, dtype: object)
(75160, Id                          75161
EmployeeName         Jason K Chan
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              32762.36
OtherPay                 19010.73
Benefits                 41339.89
TotalPay                168729.81
TotalPayBenefits         210069.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75160, dtype: object)
(75161, Id                               75162
EmployeeName           Amy M Winkelman
JobTitle            Nurse Practitioner
BasePay                      152170.17
OvertimePay                    4558.48
OtherPay                       6110.46
Benefits                      47220.76
TotalPay                     162839.11
TotalPayBenefits             210059.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75161, dtype: object)
(75162, Id                            75163
EmployeeName        Ephrem  Naizghi
JobTitle                 Manager VI
BasePay                   160541.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49436.37
TotalPay                  160541.52
TotalPayBenefits          209977.89
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75162, dtype: object)
(75163, Id                           75164
EmployeeName        John G Shanley
JobTitle               Firefighter
BasePay                  116956.73
OvertimePay               24095.41
OtherPay                  26022.35
Benefits                  42889.77
TotalPay                 167074.49
TotalPayBenefits         209964.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75163, dtype: object)
(75164, Id                                  75165
EmployeeName        Evangeline G Anacleto
JobTitle                 Registered Nurse
BasePay                          132290.6
OvertimePay                       9959.02
OtherPay                         25152.39
Benefits                         42555.23
TotalPay                        167402.01
TotalPayBenefits                209957.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75164, dtype: object)
(75165, Id                                75166
EmployeeName            Jennifer H Chon
JobTitle            Clinical Pharmacist
BasePay                        161757.0
OvertimePay                     3145.27
OtherPay                         119.82
Benefits                       44927.71
TotalPay                      165022.09
TotalPayBenefits               209949.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75165, dtype: object)
(75166, Id                                      75167
EmployeeName                  Perry J Bonelli
JobTitle            Chief Stationary Engineer
BasePay                             100715.61
OvertimePay                          66485.89
OtherPay                              7545.22
Benefits                             35174.22
TotalPay                            174746.72
TotalPayBenefits                    209920.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75166, dtype: object)
(75167, Id                                75168
EmployeeName                Amy A Logan
JobTitle            Clinical Pharmacist
BasePay                       161757.01
OvertimePay                     3257.61
OtherPay                            0.0
Benefits                       44902.77
TotalPay                      165014.62
TotalPayBenefits              209917.39
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75167, dtype: object)
(75168, Id                             75169
EmployeeName         Jocelyn C Ramos
JobTitle            Registered Nurse
BasePay                    135897.19
OvertimePay                   8347.7
OtherPay                     21405.4
Benefits                    44241.96
TotalPay                   165650.29
TotalPayBenefits           209892.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75168, dtype: object)
(75169, Id                                      75170
EmployeeName                    Eric S Quandt
JobTitle            Attorney (Civil/Criminal)
BasePay                             162903.01
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45730.22
TotalPay                            164153.01
TotalPayBenefits                    209883.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75169, dtype: object)
(75170, Id                          75171
EmployeeName           Henry  Woo
JobTitle               Sergeant 3
BasePay                 143289.21
OvertimePay              13180.43
OtherPay                 12519.84
Benefits                 40827.18
TotalPay                168989.48
TotalPayBenefits        209816.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75170, dtype: object)
(75171, Id                             75172
EmployeeName        Julio D Delucchi
JobTitle                 Firefighter
BasePay                    115893.45
OvertimePay                 29966.59
OtherPay                     22219.5
Benefits                    41714.92
TotalPay                   168079.54
TotalPayBenefits           209794.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75171, dtype: object)
(75172, Id                             75173
EmployeeName         Robert M Valdez
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 38455.73
OtherPay                     4270.96
Benefits                    38496.31
TotalPay                   171282.69
TotalPayBenefits            209779.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75172, dtype: object)
(75173, Id                          75174
EmployeeName        Leo G Solomon
JobTitle                Manager V
BasePay                  155208.5
OvertimePay                   0.0
OtherPay                   1000.0
Benefits                 53559.77
TotalPay                 156208.5
TotalPayBenefits        209768.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75173, dtype: object)
(75174, Id                          75175
EmployeeName        Eric V O'Neal
JobTitle               Sergeant 3
BasePay                 142555.16
OvertimePay               1452.08
OtherPay                 25103.57
Benefits                 40657.06
TotalPay                169110.81
TotalPayBenefits        209767.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75174, dtype: object)
(75175, Id                                      75176
EmployeeName                  Gabriel H Lopez
JobTitle            EMT/Paramedic/Firefighter
BasePay                              133723.2
OvertimePay                          16332.96
OtherPay                             15935.24
Benefits                             43775.11
TotalPay                             165991.4
TotalPayBenefits                    209766.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75175, dtype: object)
(75176, Id                              75177
EmployeeName        Angelina M Paguio
JobTitle             Registered Nurse
BasePay                      142425.0
OvertimePay                   6963.04
OtherPay                     12860.15
Benefits                     47502.28
TotalPay                    162248.19
TotalPayBenefits            209750.47
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75176, dtype: object)
(75177, Id                            75178
EmployeeName             Lisa M Moy
JobTitle            Lieut,Fire Prev
BasePay                   141722.82
OvertimePay                 6571.16
OtherPay                   15740.38
Benefits                   45665.39
TotalPay                  164034.36
TotalPayBenefits          209699.75
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75177, dtype: object)
(75178, Id                           75179
EmployeeName        Paul J Sandigo
JobTitle               Firefighter
BasePay                  107669.57
OvertimePay               52236.22
OtherPay                   9646.78
Benefits                   40134.7
TotalPay                 169552.57
TotalPayBenefits         209687.27
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75178, dtype: object)
(75179, Id                             75180
EmployeeName             Daisy  Cruz
JobTitle            Registered Nurse
BasePay                    140315.01
OvertimePay                  9823.07
OtherPay                    12572.89
Benefits                    46946.57
TotalPay                   162710.97
TotalPayBenefits           209657.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75179, dtype: object)
(75180, Id                                       75181
EmployeeName                         Foo O Eng
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               160087.4
OvertimePay                                0.0
OtherPay                                4103.1
Benefits                              45458.43
TotalPay                              164190.5
TotalPayBenefits                     209648.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75180, dtype: object)
(75181, Id                                       75182
EmployeeName                   Roger J Ritland
JobTitle            Court Computer Sys Manager
BasePay                              150933.53
OvertimePay                                0.0
OtherPay                                7328.0
Benefits                              51372.92
TotalPay                             158261.53
TotalPayBenefits                     209634.45
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75181, dtype: object)
(75182, Id                                       75183
EmployeeName                   Timothy R Slack
JobTitle            Court Computer Sys Manager
BasePay                               150933.5
OvertimePay                                0.0
OtherPay                                7328.0
Benefits                              51372.93
TotalPay                              158261.5
TotalPayBenefits                     209634.43
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75182, dtype: object)
(75183, Id                               75184
EmployeeName              Levis  Owens
JobTitle            Nurse Practitioner
BasePay                      161807.76
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      47566.21
TotalPay                     162057.76
TotalPayBenefits             209623.97
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75183, dtype: object)
(75184, Id                             75185
EmployeeName        Dominic R Panina
JobTitle                  Sergeant 3
BasePay                    143289.11
OvertimePay                 16948.91
OtherPay                     7896.93
Benefits                     41487.3
TotalPay                   168134.95
TotalPayBenefits           209622.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75184, dtype: object)
(75185, Id                               75186
EmployeeName        Philip J Telesforo
JobTitle                   Firefighter
BasePay                      110095.26
OvertimePay                   44859.06
OtherPay                      16360.51
Benefits                      38213.28
TotalPay                     171314.83
TotalPayBenefits             209528.11
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75185, dtype: object)
(75186, Id                              75187
EmployeeName        William A Wyckoff
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  39767.03
OtherPay                     12719.76
Benefits                     40080.59
TotalPay                     169443.5
TotalPayBenefits            209524.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75186, dtype: object)
(75187, Id                            75188
EmployeeName        Scott E Edwards
JobTitle                 Sergeant 3
BasePay                   143289.12
OvertimePay                 4108.76
OtherPay                    21106.9
Benefits                   41015.17
TotalPay                  168504.78
TotalPayBenefits          209519.95
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75187, dtype: object)
(75188, Id                               75189
EmployeeName        Timothy D O'Connor
JobTitle                    Sergeant 3
BasePay                      129343.12
OvertimePay                   19797.39
OtherPay                       22156.9
Benefits                      38218.38
TotalPay                     171297.41
TotalPayBenefits             209515.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75188, dtype: object)
(75189, Id                               75190
EmployeeName                Jim  Giang
JobTitle            Transit Supervisor
BasePay                        92803.8
OvertimePay                    78565.7
OtherPay                       4817.98
Benefits                      33307.65
TotalPay                     176187.48
TotalPayBenefits             209495.13
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75189, dtype: object)
(75190, Id                                      75191
EmployeeName               Terry  Fitzsimmons
JobTitle            EMT/Paramedic/Firefighter
BasePay                             132687.09
OvertimePay                           20307.7
OtherPay                             12752.69
Benefits                             43703.74
TotalPay                            165747.48
TotalPayBenefits                    209451.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75190, dtype: object)
(75191, Id                                      75192
EmployeeName             Roberto  Evangelista
JobTitle            Attorney (Civil/Criminal)
BasePay                             162535.55
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45665.12
TotalPay                            163785.55
TotalPayBenefits                    209450.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75191, dtype: object)
(75192, Id                               75193
EmployeeName        Timothy V Sullivan
JobTitle                   Firefighter
BasePay                      116161.05
OvertimePay                   31681.94
OtherPay                      20137.53
Benefits                      41464.55
TotalPay                     167980.52
TotalPayBenefits             209445.07
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75192, dtype: object)
(75193, Id                          75194
EmployeeName           Jimmy  Lee
JobTitle               Sergeant 2
BasePay                  130532.0
OvertimePay               5563.92
OtherPay                 34218.69
Benefits                 39125.55
TotalPay                170314.61
TotalPayBenefits        209440.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75193, dtype: object)
(75194, Id                                  75195
EmployeeName        Marcella D Mc Cormack
JobTitle                      Firefighter
BasePay                         116956.71
OvertimePay                      31500.76
OtherPay                         19563.56
Benefits                         41406.58
TotalPay                        168021.03
TotalPayBenefits                209427.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75194, dtype: object)
(75195, Id                                      75196
EmployeeName                     Carla  Gomez
JobTitle            Attorney (Civil/Criminal)
BasePay                             162506.11
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45659.91
TotalPay                            163756.11
TotalPayBenefits                    209416.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75195, dtype: object)
(75196, Id                             75197
EmployeeName        Katherine  Breen
JobTitle              Manager V, MTA
BasePay                    154952.06
OvertimePay                      0.0
OtherPay                     2076.92
Benefits                    52338.42
TotalPay                   157028.98
TotalPayBenefits            209367.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75196, dtype: object)
(75197, Id                             75198
EmployeeName        Keith R Matthews
JobTitle                  Sergeant 3
BasePay                    143289.04
OvertimePay                 19367.74
OtherPay                     5926.65
Benefits                    40781.98
TotalPay                   168583.43
TotalPayBenefits           209365.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75197, dtype: object)
(75198, Id                                      75199
EmployeeName                   Diana M Strait
JobTitle            Attorney (Civil/Criminal)
BasePay                             162462.01
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             45652.02
TotalPay                            163711.51
TotalPayBenefits                    209363.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75198, dtype: object)
(75199, Id                             75200
EmployeeName        Esther V Marania
JobTitle            Registered Nurse
BasePay                    137855.54
OvertimePay                  8426.82
OtherPay                     16089.9
Benefits                    46989.77
TotalPay                   162372.26
TotalPayBenefits           209362.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75199, dtype: object)
(75200, Id                                     75201
EmployeeName               Steve D Vallotton
JobTitle            Sr Power Generation Tech
BasePay                            109957.22
OvertimePay                         58091.98
OtherPay                             5026.18
Benefits                            36286.14
TotalPay                           173075.38
TotalPayBenefits                   209361.52
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75200, dtype: object)
(75201, Id                             75202
EmployeeName              Shui Y Yan
JobTitle            Registered Nurse
BasePay                    131117.83
OvertimePay                  6074.43
OtherPay                    25043.28
Benefits                     47107.5
TotalPay                   162235.54
TotalPayBenefits           209343.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75201, dtype: object)
(75202, Id                             75203
EmployeeName             Mark A Roan
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 41550.59
OtherPay                    10115.08
Benefits                    36593.33
TotalPay                   172733.67
TotalPayBenefits            209327.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75202, dtype: object)
(75203, Id                          75204
EmployeeName         John F Lewis
JobTitle               Sergeant 3
BasePay                 143289.14
OvertimePay               5419.84
OtherPay                  18231.8
Benefits                 42381.46
TotalPay                166940.78
TotalPayBenefits        209322.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75203, dtype: object)
(75204, Id                                75205
EmployeeName                   Nam D Do
JobTitle            Clinical Pharmacist
BasePay                       161569.78
OvertimePay                     2048.17
OtherPay                         711.61
Benefits                       44983.22
TotalPay                      164329.56
TotalPayBenefits              209312.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75204, dtype: object)
(75205, Id                             75206
EmployeeName        Benjamin M Smith
JobTitle                  Sergeant 3
BasePay                    143289.19
OvertimePay                  5771.37
OtherPay                    18729.35
Benefits                    41477.42
TotalPay                   167789.91
TotalPayBenefits           209267.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75205, dtype: object)
(75206, Id                                         75207
EmployeeName                    Joshua M Pereira
JobTitle            Lieutenant, Fire Suppression
BasePay                                118334.64
OvertimePay                             26143.71
OtherPay                                22280.83
Benefits                                42500.88
TotalPay                               166759.18
TotalPayBenefits                       209260.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75206, dtype: object)
(75207, Id                                         75208
EmployeeName                     Jason T Mishler
JobTitle            Lieutenant, Fire Suppression
BasePay                                 130896.7
OvertimePay                             27601.06
OtherPay                                 8569.36
Benefits                                42173.93
TotalPay                               167067.12
TotalPayBenefits                       209241.05
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75207, dtype: object)
(75208, Id                                 75209
EmployeeName        Michelle R Liddicoet
JobTitle                Police Officer 3
BasePay                        123471.03
OvertimePay                     35926.63
OtherPay                        12650.66
Benefits                        37175.56
TotalPay                       172048.32
TotalPayBenefits               209223.88
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75208, dtype: object)
(75209, Id                           75210
EmployeeName        Walter D Cuddy
JobTitle              Lieutenant 3
BasePay                  153104.09
OvertimePay                 133.21
OtherPay                  12020.04
Benefits                  43933.85
TotalPay                 165257.34
TotalPayBenefits         209191.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75209, dtype: object)
(75210, Id                             75211
EmployeeName           James P Trail
JobTitle            Police Officer 3
BasePay                     123471.1
OvertimePay                 39713.97
OtherPay                     8936.02
Benefits                    37055.22
TotalPay                   172121.09
TotalPayBenefits           209176.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75210, dtype: object)
(75211, Id                             75212
EmployeeName        Scott K Scholzen
JobTitle                 Firefighter
BasePay                    111352.13
OvertimePay                  38451.4
OtherPay                    19386.88
Benefits                    39972.41
TotalPay                   169190.41
TotalPayBenefits           209162.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75211, dtype: object)
(75212, Id                             75213
EmployeeName        Matthew J Dudley
JobTitle                  Sergeant 2
BasePay                     126892.0
OvertimePay                 24876.52
OtherPay                    19754.99
Benefits                    37617.25
TotalPay                   171523.51
TotalPayBenefits           209140.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75212, dtype: object)
(75213, Id                          75214
EmployeeName        Joshua  Hinds
JobTitle               Sergeant 3
BasePay                 129343.06
OvertimePay              17945.26
OtherPay                 23582.98
Benefits                 38242.56
TotalPay                 170871.3
TotalPayBenefits        209113.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75213, dtype: object)
(75214, Id                           75215
EmployeeName        Timothy J Neff
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               31818.61
OtherPay                  18908.28
Benefits                  41428.27
TotalPay                 167683.61
TotalPayBenefits         209111.88
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75214, dtype: object)
(75215, Id                            75216
EmployeeName            Derek Y Kim
JobTitle            Manager VI, MTA
BasePay                   155208.53
OvertimePay                     0.0
OtherPay                     1500.0
Benefits                   52394.04
TotalPay                  156708.53
TotalPayBenefits          209102.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75215, dtype: object)
(75216, Id                             75217
EmployeeName           Scott F Korte
JobTitle            Police Officer 3
BasePay                    123471.18
OvertimePay                  41838.5
OtherPay                     6767.39
Benefits                    37025.19
TotalPay                   172077.07
TotalPayBenefits           209102.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75216, dtype: object)
(75217, Id                                      75218
EmployeeName                    Mark  Gradney
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134939.48
OvertimePay                          12012.54
OtherPay                             16874.31
Benefits                             45238.41
TotalPay                            163826.33
TotalPayBenefits                    209064.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75217, dtype: object)
(75218, Id                               75219
EmployeeName           Diane E Robbins
JobTitle            Nurse Practitioner
BasePay                      160717.86
OvertimePay                        0.0
OtherPay                         825.0
Benefits                      47517.13
TotalPay                     161542.86
TotalPayBenefits             209059.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75218, dtype: object)
(75219, Id                             75220
EmployeeName        Carmen  Le Franc
JobTitle                   Manager V
BasePay                    155208.58
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                    52342.19
TotalPay                   156708.58
TotalPayBenefits           209050.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75219, dtype: object)
(75220, Id                            75221
EmployeeName        Marla A Jurosek
JobTitle                  Manager V
BasePay                   155208.59
OvertimePay                     0.0
OtherPay                     1500.0
Benefits                   52342.15
TotalPay                  156708.59
TotalPayBenefits          209050.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75220, dtype: object)
(75221, Id                             75222
EmployeeName            Steven Y Lee
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 33425.67
OtherPay                     8468.13
Benefits                    38589.67
TotalPay                    170449.8
TotalPayBenefits           209039.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75221, dtype: object)
(75222, Id                            75223
EmployeeName        Maria L Newport
JobTitle                  Manager V
BasePay                   155208.54
OvertimePay                     0.0
OtherPay                     1500.0
Benefits                   52317.96
TotalPay                  156708.54
TotalPayBenefits           209026.5
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75222, dtype: object)
(75223, Id                              75224
EmployeeName        Felicidad J Dilag
JobTitle             Registered Nurse
BasePay                      137515.1
OvertimePay                   6885.79
OtherPay                      18659.3
Benefits                     45941.34
TotalPay                    163060.19
TotalPayBenefits            209001.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75223, dtype: object)
(75224, Id                                      75225
EmployeeName                 Marifi D Esteves
JobTitle            EMT/Paramedic/Firefighter
BasePay                              130911.8
OvertimePay                          19338.92
OtherPay                             15110.92
Benefits                              43636.8
TotalPay                            165361.64
TotalPayBenefits                    208998.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75224, dtype: object)
(75225, Id                                           75226
EmployeeName                     Orlando R Encinas
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                               87100.66
OtherPay                                    7578.0
Benefits                                   31599.1
TotalPay                                 177360.16
TotalPayBenefits                         208959.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 75225, dtype: object)
(75226, Id                               75227
EmployeeName             Davey S Lacap
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                   74557.19
OtherPay                       9226.32
Benefits                      33716.44
TotalPay                     175232.51
TotalPayBenefits             208948.95
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75226, dtype: object)
(75227, Id                           75228
EmployeeName        James I Dudley
JobTitle            Deputy Chief 3
BasePay                    25830.0
OvertimePay                    0.0
OtherPay                 176988.05
Benefits                   6116.19
TotalPay                 202818.05
TotalPayBenefits         208934.24
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75227, dtype: object)
(75228, Id                                      75229
EmployeeName                   Emily  Goldman
JobTitle            Attorney (Civil/Criminal)
BasePay                              161997.7
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45670.72
TotalPay                             163247.7
TotalPayBenefits                    208918.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75228, dtype: object)
(75229, Id                                         75230
EmployeeName                         Allen  Wong
JobTitle            Lieutenant, Fire Suppression
BasePay                                135377.77
OvertimePay                               3788.8
OtherPay                                26764.61
Benefits                                42968.47
TotalPay                               165931.18
TotalPayBenefits                       208899.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75229, dtype: object)
(75230, Id                           75231
EmployeeName        James A Parker
JobTitle               Manager III
BasePay                  155181.04
OvertimePay                    0.0
OtherPay                      27.5
Benefits                   53680.5
TotalPay                 155208.54
TotalPayBenefits         208889.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75230, dtype: object)
(75231, Id                             75232
EmployeeName          Debbie Y Sison
JobTitle            Registered Nurse
BasePay                    125017.51
OvertimePay                 13846.89
OtherPay                    25238.34
Benefits                    44781.42
TotalPay                   164102.74
TotalPayBenefits           208884.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75231, dtype: object)
(75232, Id                               75233
EmployeeName        Stanley J Perriatt
JobTitle                   Firefighter
BasePay                      115893.46
OvertimePay                   33517.34
OtherPay                      18541.07
Benefits                      40932.02
TotalPay                     167951.87
TotalPayBenefits             208883.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75232, dtype: object)
(75233, Id                                       75234
EmployeeName                Jeffrey M Ishikawa
JobTitle            Court Computer Sys Manager
BasePay                              151015.69
OvertimePay                                0.0
OtherPay                               7245.83
Benefits                              50617.92
TotalPay                             158261.52
TotalPayBenefits                     208879.44
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75233, dtype: object)
(75234, Id                             75235
EmployeeName          Jean B Ancheta
JobTitle            Registered Nurse
BasePay                     126838.8
OvertimePay                  8509.68
OtherPay                    29915.34
Benefits                     43612.5
TotalPay                   165263.82
TotalPayBenefits           208876.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75234, dtype: object)
(75235, Id                            75236
EmployeeName        Martha M Juarez
JobTitle                 Sergeant 3
BasePay                   143289.12
OvertimePay                 7732.48
OtherPay                   16041.81
Benefits                   41806.25
TotalPay                  167063.41
TotalPayBenefits          208869.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75235, dtype: object)
(75236, Id                              75237
EmployeeName        Bradford J Benson
JobTitle                   Manager IV
BasePay                     156490.46
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     52374.48
TotalPay                    156490.46
TotalPayBenefits            208864.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75236, dtype: object)
(75237, Id                             75238
EmployeeName           Paul  Ospital
JobTitle            Police Officer 3
BasePay                    122899.54
OvertimePay                 44653.14
OtherPay                     4291.97
Benefits                    37019.35
TotalPay                   171844.65
TotalPayBenefits            208864.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75237, dtype: object)
(75238, Id                               75239
EmployeeName        Martha Z Whetstone
JobTitle                     Manager V
BasePay                      155208.57
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      53581.96
TotalPay                     155208.57
TotalPayBenefits             208790.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75238, dtype: object)
(75239, Id                           75240
EmployeeName        Chhunmeng  Tov
JobTitle            Police Officer
BasePay                  107188.43
OvertimePay                54351.6
OtherPay                  13234.94
Benefits                  33984.24
TotalPay                 174774.97
TotalPayBenefits         208759.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75239, dtype: object)
(75240, Id                          75241
EmployeeName        Bijan  Karimi
JobTitle                Manager V
BasePay                 155181.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 53575.96
TotalPay                155181.04
TotalPayBenefits         208757.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75240, dtype: object)
(75241, Id                           75242
EmployeeName        William  Yeung
JobTitle               Firefighter
BasePay                   115893.5
OvertimePay               32225.63
OtherPay                   19590.2
Benefits                  41044.37
TotalPay                 167709.33
TotalPayBenefits          208753.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75241, dtype: object)
(75242, Id                                 75243
EmployeeName        Michael A Andraychak
JobTitle                      Sergeant 3
BasePay                        143289.04
OvertimePay                     11235.92
OtherPay                        13409.54
Benefits                        40813.05
TotalPay                        167934.5
TotalPayBenefits               208747.55
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75242, dtype: object)
(75243, Id                              75244
EmployeeName        Melonee A Alvarez
JobTitle                   Sergeant 3
BasePay                     143289.18
OvertimePay                   14063.6
OtherPay                     10546.72
Benefits                     40821.89
TotalPay                     167899.5
TotalPayBenefits            208721.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75243, dtype: object)
(75244, Id                                75245
EmployeeName             Lok Shun  Chan
JobTitle            Clinical Pharmacist
BasePay                       161757.01
OvertimePay                         0.0
OtherPay                         1724.0
Benefits                       45232.24
TotalPay                      163481.01
TotalPayBenefits              208713.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75244, dtype: object)
(75245, Id                             75246
EmployeeName          Gene P Gabriel
JobTitle            Police Officer 2
BasePay                    121068.02
OvertimePay                 21621.27
OtherPay                    27890.98
Benefits                    38126.34
TotalPay                   170580.27
TotalPayBenefits           208706.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75245, dtype: object)
(75246, Id                              75247
EmployeeName        Ronald A Robinson
JobTitle                  Firefighter
BasePay                     128478.54
OvertimePay                  16986.96
OtherPay                     18939.03
Benefits                     44282.43
TotalPay                    164404.53
TotalPayBenefits            208686.96
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75246, dtype: object)
(75247, Id                                           75248
EmployeeName                      Charles L Rowles
JobTitle            Transmission Line Supervisor 1
BasePay                                  117786.04
OvertimePay                               10594.85
OtherPay                                  43705.95
Benefits                                  36491.18
TotalPay                                 172086.84
TotalPayBenefits                         208578.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 75247, dtype: object)
(75248, Id                                         75249
EmployeeName                          Joe N Chan
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.98
OvertimePay                             19862.42
OtherPay                                 8897.11
Benefits                                43911.14
TotalPay                               164662.51
TotalPayBenefits                       208573.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75248, dtype: object)
(75249, Id                          75250
EmployeeName        Paul E Gambon
JobTitle                Manager V
BasePay                  155208.6
OvertimePay                   0.0
OtherPay                   1000.0
Benefits                 52342.07
TotalPay                 156208.6
TotalPayBenefits        208550.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75249, dtype: object)
(75250, Id                             75251
EmployeeName        Gordon W Brussow
JobTitle                   Manager V
BasePay                    155208.57
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    53341.63
TotalPay                   155208.57
TotalPayBenefits            208550.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75250, dtype: object)
(75251, Id                          75252
EmployeeName        Joseph E Beam
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              30363.64
OtherPay                 19648.66
Benefits                 41437.81
TotalPay                 166969.0
TotalPayBenefits        208406.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75251, dtype: object)
(75252, Id                                      75253
EmployeeName             Nicholas  Gregoratos
JobTitle            Attorney (Civil/Criminal)
BasePay                             161506.52
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45638.84
TotalPay                            162756.52
TotalPayBenefits                    208395.36
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75252, dtype: object)
(75253, Id                             75254
EmployeeName            Kelvin K Tso
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 35558.72
OtherPay                     6231.89
Benefits                    38019.25
TotalPay                   170346.61
TotalPayBenefits           208365.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75253, dtype: object)
(75254, Id                             75255
EmployeeName        Melvin  Thornton
JobTitle            Police Officer 3
BasePay                    123471.08
OvertimePay                 41078.27
OtherPay                     6292.61
Benefits                    37522.31
TotalPay                   170841.96
TotalPayBenefits           208364.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75254, dtype: object)
(75255, Id                             75256
EmployeeName        Thomas J O'Brien
JobTitle                 Firefighter
BasePay                    104796.33
OvertimePay                 47648.28
OtherPay                    18690.06
Benefits                    37221.37
TotalPay                   171134.67
TotalPayBenefits           208356.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75255, dtype: object)
(75256, Id                                       75257
EmployeeName                 Enio G Sebastiani
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.6
OvertimePay                                0.0
OtherPay                              11628.66
Benefits                              43425.42
TotalPay                             164920.26
TotalPayBenefits                     208345.68
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75256, dtype: object)
(75257, Id                             75258
EmployeeName        Angela M Wilhelm
JobTitle                  Sergeant 3
BasePay                    129343.08
OvertimePay                 18907.51
OtherPay                     21818.3
Benefits                    38254.55
TotalPay                   170068.89
TotalPayBenefits           208323.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75257, dtype: object)
(75258, Id                             75259
EmployeeName        Alan D Camarillo
JobTitle                 Firefighter
BasePay                    116956.68
OvertimePay                 31222.23
OtherPay                    18833.48
Benefits                    41308.65
TotalPay                   167012.39
TotalPayBenefits           208321.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75258, dtype: object)
(75259, Id                          75260
EmployeeName        David S Maron
JobTitle               Sergeant 3
BasePay                 143289.17
OvertimePay              11045.23
OtherPay                 13199.12
Benefits                 40787.04
TotalPay                167533.52
TotalPayBenefits        208320.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75259, dtype: object)
(75260, Id                            75261
EmployeeName        Sarah M Ballard
JobTitle                 Dep Dir II
BasePay                   155208.54
OvertimePay                     0.0
OtherPay                      750.0
Benefits                   52284.55
TotalPay                  155958.54
TotalPayBenefits          208243.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75260, dtype: object)
(75261, Id                                 75262
EmployeeName            Imelda A Johnson
JobTitle            Sheriff's Lieutenant
BasePay                        131410.23
OvertimePay                     19194.67
OtherPay                        14843.43
Benefits                        42788.68
TotalPay                       165448.33
TotalPayBenefits               208237.01
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75261, dtype: object)
(75262, Id                                      75263
EmployeeName                  Timothy  McHale
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                          10907.28
OtherPay                              16897.6
Benefits                              45273.8
TotalPay                            162949.15
TotalPayBenefits                    208222.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75262, dtype: object)
(75263, Id                            75264
EmployeeName        Conrad R Brosas
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                32239.57
OtherPay                   19014.21
Benefits                   41044.37
TotalPay                  167147.24
TotalPayBenefits          208191.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75263, dtype: object)
(75264, Id                            75265
EmployeeName        Pamela M Husing
JobTitle                  Manager V
BasePay                   155323.94
OvertimePay                     0.0
OtherPay                     605.81
Benefits                   52179.99
TotalPay                  155929.75
TotalPayBenefits          208109.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75264, dtype: object)
(75265, Id                          75266
EmployeeName        Shaughn  Ryan
JobTitle               Sergeant 3
BasePay                 143289.18
OvertimePay               7137.43
OtherPay                 16526.67
Benefits                  41144.2
TotalPay                166953.28
TotalPayBenefits        208097.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75265, dtype: object)
(75266, Id                              75267
EmployeeName        John M Tuiasosopo
JobTitle                  Firefighter
BasePay                     127767.71
OvertimePay                  28267.12
OtherPay                     11433.28
Benefits                     40607.21
TotalPay                    167468.11
TotalPayBenefits            208075.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75266, dtype: object)
(75267, Id                             75268
EmployeeName        Evelyn G Mendoza
JobTitle            Registered Nurse
BasePay                    136070.54
OvertimePay                 11071.36
OtherPay                    25147.21
Benefits                    35777.64
TotalPay                   172289.11
TotalPayBenefits           208066.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75267, dtype: object)
(75268, Id                          75269
EmployeeName         Eric S Balmy
JobTitle               Sergeant 3
BasePay                 143289.09
OvertimePay              12359.53
OtherPay                 11569.43
Benefits                 40795.87
TotalPay                167218.05
TotalPayBenefits        208013.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75268, dtype: object)
(75269, Id                            75270
EmployeeName        Jonathan T Ozol
JobTitle                 Sergeant 2
BasePay                    129962.4
OvertimePay                19414.59
OtherPay                   19865.47
Benefits                   38761.73
TotalPay                  169242.46
TotalPayBenefits          208004.19
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75269, dtype: object)
(75270, Id                                       75271
EmployeeName        Jennifer L Hennessey-Jones
JobTitle                            Sergeant 2
BasePay                               130532.0
OvertimePay                           24882.43
OtherPay                              14061.96
Benefits                              38522.83
TotalPay                             169476.39
TotalPayBenefits                     207999.22
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75270, dtype: object)
(75271, Id                                75272
EmployeeName            Shiaw-Huei E Lo
JobTitle            Clinical Pharmacist
BasePay                       161757.04
OvertimePay                      340.63
OtherPay                         862.99
Benefits                       45029.45
TotalPay                      162960.66
TotalPayBenefits              207990.11
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75271, dtype: object)
(75272, Id                            75273
EmployeeName        Salvador  Perez
JobTitle                 Sergeant 3
BasePay                    143289.0
OvertimePay                22262.49
OtherPay                    1622.68
Benefits                   40804.33
TotalPay                  167174.17
TotalPayBenefits           207978.5
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75272, dtype: object)
(75273, Id                          75274
EmployeeName        Mark L O'Hara
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              31500.29
OtherPay                 19537.04
Benefits                 41044.36
TotalPay                166930.79
TotalPayBenefits        207975.15
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75273, dtype: object)
(75274, Id                                           75275
EmployeeName                   Christopher C Chong
JobTitle            Wire Rope Cable Maint Mechanic
BasePay                                   91739.03
OvertimePay                               65096.75
OtherPay                                  16053.66
Benefits                                  35070.45
TotalPay                                 172889.44
TotalPayBenefits                         207959.89
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 75274, dtype: object)
(75275, Id                             75276
EmployeeName          Maria C Castro
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  5222.28
OtherPay                    12860.14
Benefits                     47437.6
TotalPay                   160507.42
TotalPayBenefits           207945.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75275, dtype: object)
(75276, Id                           75277
EmployeeName        Lyn E O'Connor
JobTitle                Sergeant 3
BasePay                  143289.11
OvertimePay               11298.15
OtherPay                  12531.52
Benefits                  40795.92
TotalPay                 167118.78
TotalPayBenefits          207914.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75276, dtype: object)
(75277, Id                             75278
EmployeeName            Dennis Z Lai
JobTitle            Police Officer 3
BasePay                    121691.01
OvertimePay                 23409.57
OtherPay                    26064.97
Benefits                    36712.47
TotalPay                   171165.55
TotalPayBenefits           207878.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75277, dtype: object)
(75278, Id                                        75279
EmployeeName                         Hong D Luu
JobTitle            Electronic Maintenance Tech
BasePay                               105513.52
OvertimePay                            54066.32
OtherPay                               11646.29
Benefits                               36649.25
TotalPay                              171226.13
TotalPayBenefits                      207875.38
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75278, dtype: object)
(75279, Id                                      75280
EmployeeName                  Gregory  Flores
JobTitle            Attorney (Civil/Criminal)
BasePay                              161138.5
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45475.15
TotalPay                             162388.5
TotalPayBenefits                    207863.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75279, dtype: object)
(75280, Id                          75281
EmployeeName         Steven  Wong
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              29659.96
OtherPay                 19838.29
Benefits                 41406.59
TotalPay                166454.96
TotalPayBenefits        207861.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75280, dtype: object)
(75281, Id                           75282
EmployeeName        Jason C Sawyer
JobTitle                Sergeant 3
BasePay                  143289.22
OvertimePay                 8845.7
OtherPay                  14704.04
Benefits                  41022.47
TotalPay                 166838.96
TotalPayBenefits         207861.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75281, dtype: object)
(75282, Id                            75283
EmployeeName        Patrick M Tobin
JobTitle                 Sergeant 3
BasePay                   143289.15
OvertimePay                 9728.29
OtherPay                   13174.53
Benefits                   41647.66
TotalPay                  166191.97
TotalPayBenefits          207839.63
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75282, dtype: object)
(75283, Id                             75284
EmployeeName        Cristina  Franco
JobTitle                  Sergeant 2
BasePay                    140724.01
OvertimePay                 19227.49
OtherPay                     7543.42
Benefits                    40326.09
TotalPay                   167494.92
TotalPayBenefits           207821.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75283, dtype: object)
(75284, Id                            75285
EmployeeName        Chahmal R Kerow
JobTitle                 Sergeant 2
BasePay                    126892.0
OvertimePay                 29499.6
OtherPay                   13591.98
Benefits                   37798.82
TotalPay                  169983.58
TotalPayBenefits           207782.4
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75284, dtype: object)
(75285, Id                                 75286
EmployeeName        Eddieberto  Martinez
JobTitle                Police Officer 3
BasePay                        121691.04
OvertimePay                     43355.46
OtherPay                         6003.65
Benefits                        36727.21
TotalPay                       171050.15
TotalPayBenefits               207777.36
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75285, dtype: object)
(75286, Id                             75287
EmployeeName          Scott P Hurley
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 17707.68
OtherPay                    28909.39
Benefits                    37679.81
TotalPay                    170088.1
TotalPayBenefits           207767.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75286, dtype: object)
(75287, Id                                75288
EmployeeName        Omar A Alvarenga Jr
JobTitle               Police Officer 2
BasePay                        121068.0
OvertimePay                     31372.8
OtherPay                       18555.87
Benefits                        36769.2
TotalPay                      170996.67
TotalPayBenefits              207765.87
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75287, dtype: object)
(75288, Id                                      75289
EmployeeName                   Nicholas  Holl
JobTitle            EMT/Paramedic/Firefighter
BasePay                              133298.3
OvertimePay                          16801.49
OtherPay                             13771.89
Benefits                             43884.11
TotalPay                            163871.68
TotalPayBenefits                    207755.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75288, dtype: object)
(75289, Id                                      75290
EmployeeName                    Evyn L Shomer
JobTitle            Attorney (Civil/Criminal)
BasePay                             160753.72
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45731.22
TotalPay                            162003.72
TotalPayBenefits                    207734.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75289, dtype: object)
(75290, Id                              75291
EmployeeName        Melvyn E Henry Jr
JobTitle              Manager VI, MTA
BasePay                     154564.67
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     53164.73
TotalPay                    154564.67
TotalPayBenefits             207729.4
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75290, dtype: object)
(75291, Id                                    75292
EmployeeName                    Judy  Louie
JobTitle            Sr Court Staff Attorney
BasePay                           152798.01
OvertimePay                             0.0
OtherPay                            9585.07
Benefits                           45307.82
TotalPay                          162383.08
TotalPayBenefits                   207690.9
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75291, dtype: object)
(75292, Id                           75293
EmployeeName        Diane Y Oshima
JobTitle                Manager IV
BasePay                  153634.63
OvertimePay                    0.0
OtherPay                   1817.51
Benefits                  52211.19
TotalPay                 155452.14
TotalPayBenefits         207663.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75292, dtype: object)
(75293, Id                             75294
EmployeeName          Scott P Cairel
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 43909.91
OtherPay                     6098.72
Benefits                    36585.84
TotalPay                   171076.63
TotalPayBenefits           207662.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75293, dtype: object)
(75294, Id                           75295
EmployeeName        James M Hudson
JobTitle               Firefighter
BasePay                  115894.38
OvertimePay               36894.98
OtherPay                  14385.59
Benefits                  40475.27
TotalPay                 167174.95
TotalPayBenefits         207650.22
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75294, dtype: object)
(75295, Id                            75296
EmployeeName        Arnold J Borgen
JobTitle             Police Officer
BasePay                    116478.0
OvertimePay                40031.74
OtherPay                    15404.2
Benefits                   35718.05
TotalPay                  171913.94
TotalPayBenefits          207631.99
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75295, dtype: object)
(75296, Id                              75297
EmployeeName        Gregory A Ginotti
JobTitle                  Firefighter
BasePay                     104017.74
OvertimePay                   49796.0
OtherPay                     13526.08
Benefits                     40260.58
TotalPay                    167339.82
TotalPayBenefits             207600.4
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75296, dtype: object)
(75297, Id                               75298
EmployeeName        Augustine W Cheung
JobTitle            Transit Supervisor
BasePay                       84862.57
OvertimePay                   85025.52
OtherPay                       6874.86
Benefits                      30831.69
TotalPay                     176762.95
TotalPayBenefits             207594.64
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75297, dtype: object)
(75298, Id                            75299
EmployeeName        Thomas  DiSanto
JobTitle                Dep Dir III
BasePay                   154153.95
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    53398.9
TotalPay                  154153.95
TotalPayBenefits          207552.85
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75298, dtype: object)
(75299, Id                                75300
EmployeeName        Mitchell O Campbell
JobTitle                     Sergeant 3
BasePay                        143289.2
OvertimePay                     10579.4
OtherPay                       12425.28
Benefits                       41197.01
TotalPay                      166293.88
TotalPayBenefits              207490.89
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75299, dtype: object)
(75300, Id                          75301
EmployeeName          Don T Lampe
JobTitle                Manager V
BasePay                 155208.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  52256.1
TotalPay                155208.53
TotalPayBenefits        207464.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75300, dtype: object)
(75301, Id                             75302
EmployeeName        Reginald L Scott
JobTitle            Police Officer 3
BasePay                    125564.04
OvertimePay                 32670.94
OtherPay                    11652.04
Benefits                    37564.28
TotalPay                   169887.02
TotalPayBenefits            207451.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75301, dtype: object)
(75302, Id                           75303
EmployeeName        Cary P Butcher
JobTitle               Firefighter
BasePay                  110135.13
OvertimePay               37030.39
OtherPay                  21172.56
Benefits                  39103.11
TotalPay                 168338.08
TotalPayBenefits         207441.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75302, dtype: object)
(75303, Id                                75304
EmployeeName                  Rita  Lam
JobTitle            Clinical Pharmacist
BasePay                       161757.05
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       45026.81
TotalPay                      162405.05
TotalPayBenefits              207431.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75303, dtype: object)
(75304, Id                                75305
EmployeeName          Stephen A Echaves
JobTitle            Clinical Pharmacist
BasePay                        161757.0
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       45026.78
TotalPay                       162405.0
TotalPayBenefits              207431.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75304, dtype: object)
(75305, Id                                      75306
EmployeeName             Allyson H Villanueva
JobTitle            Clinical Nurse Specialist
BasePay                              158974.2
OvertimePay                               0.0
OtherPay                                250.0
Benefits                             48192.98
TotalPay                             159224.2
TotalPayBenefits                    207417.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75305, dtype: object)
(75306, Id                          75307
EmployeeName        Jason  Garden
JobTitle               Sergeant 3
BasePay                 129343.08
OvertimePay              12649.39
OtherPay                 27128.48
Benefits                 38287.09
TotalPay                169120.95
TotalPayBenefits        207408.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75306, dtype: object)
(75307, Id                             75308
EmployeeName         Mathew J Pashby
JobTitle            Police Officer 3
BasePay                    121691.04
OvertimePay                 44156.33
OtherPay                      4821.9
Benefits                    36727.21
TotalPay                   170669.27
TotalPayBenefits           207396.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75307, dtype: object)
(75308, Id                              75309
EmployeeName            Johna C Pecot
JobTitle            Sheriff's Captain
BasePay                      150294.7
OvertimePay                       0.0
OtherPay                     12872.77
Benefits                     44228.27
TotalPay                    163167.47
TotalPayBenefits            207395.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75308, dtype: object)
(75309, Id                            75310
EmployeeName        Abubaker E Azam
JobTitle                  Manager V
BasePay                   155254.21
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52136.48
TotalPay                  155254.21
TotalPayBenefits          207390.69
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75309, dtype: object)
(75310, Id                               75311
EmployeeName        Richard M Stephens
JobTitle                     Manager V
BasePay                      149960.85
OvertimePay                        0.0
OtherPay                       4092.82
Benefits                       53329.8
TotalPay                     154053.67
TotalPayBenefits             207383.47
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75310, dtype: object)
(75311, Id                            75312
EmployeeName        David N Sweeney
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                 30463.6
OtherPay                   18535.69
Benefits                   41406.59
TotalPay                   165956.0
TotalPayBenefits          207362.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75311, dtype: object)
(75312, Id                           75313
EmployeeName        Joel H Zermeno
JobTitle               Firefighter
BasePay                  115893.45
OvertimePay               35131.51
OtherPay                  15980.51
Benefits                   40339.1
TotalPay                 167005.47
TotalPayBenefits         207344.57
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75312, dtype: object)
(75313, Id                           75314
EmployeeName        Douglas B Legg
JobTitle                 Manager V
BasePay                  155208.59
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  52128.41
TotalPay                 155208.59
TotalPayBenefits          207337.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75313, dtype: object)
(75314, Id                           75315
EmployeeName        John S Sanchez
JobTitle                 Manager V
BasePay                   155208.6
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  52128.39
TotalPay                  155208.6
TotalPayBenefits         207336.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75314, dtype: object)
(75315, Id                               75316
EmployeeName        Rodrigo B Castillo
JobTitle                     Manager V
BasePay                      155208.56
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       52128.4
TotalPay                     155208.56
TotalPayBenefits             207336.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75315, dtype: object)
(75316, Id                             75317
EmployeeName        Harry L Mitchell
JobTitle                   Manager V
BasePay                    155208.56
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    52128.39
TotalPay                   155208.56
TotalPayBenefits           207336.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75316, dtype: object)
(75317, Id                            75318
EmployeeName        Susan M Kearney
JobTitle                  Manager V
BasePay                   155208.54
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52128.39
TotalPay                  155208.54
TotalPayBenefits          207336.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75317, dtype: object)
(75318, Id                          75319
EmployeeName        Gerald  Alley
JobTitle                Manager V
BasePay                 155208.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52128.39
TotalPay                155208.52
TotalPayBenefits        207336.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75318, dtype: object)
(75319, Id                            75320
EmployeeName        Glen V Schwartz
JobTitle                  Manager V
BasePay                   155208.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52128.39
TotalPay                  155208.52
TotalPayBenefits          207336.91
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75319, dtype: object)
(75320, Id                          75321
EmployeeName         Kevin D Dyer
JobTitle                Manager V
BasePay                 155208.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52128.37
TotalPay                155208.51
TotalPayBenefits        207336.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75320, dtype: object)
(75321, Id                              75322
EmployeeName        Theodore D Aranas
JobTitle              Manager VI, MTA
BasePay                     155208.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     52128.37
TotalPay                    155208.51
TotalPayBenefits            207336.88
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75321, dtype: object)
(75322, Id                             75323
EmployeeName        Andrew A Maimoni
JobTitle                   Manager V
BasePay                     155208.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    52128.37
TotalPay                    155208.5
TotalPayBenefits           207336.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75322, dtype: object)
(75323, Id                                75324
EmployeeName        Mary E Travis-Allen
JobTitle                Manager VI, MTA
BasePay                        155208.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       52127.09
TotalPay                       155208.5
TotalPayBenefits              207335.59
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75323, dtype: object)
(75324, Id                            75325
EmployeeName        Richard J Piket
JobTitle                  Manager V
BasePay                   155208.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52111.49
TotalPay                  155208.53
TotalPayBenefits          207320.02
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75324, dtype: object)
(75325, Id                              75326
EmployeeName        Masood  Ordikhani
JobTitle                   Manager IV
BasePay                     155271.48
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     52042.39
TotalPay                    155271.48
TotalPayBenefits            207313.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75325, dtype: object)
(75326, Id                             75327
EmployeeName        William B Dorsey
JobTitle                 Firefighter
BasePay                    115893.47
OvertimePay                 31638.52
OtherPay                    18694.08
Benefits                    41083.74
TotalPay                   166226.07
TotalPayBenefits           207309.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75326, dtype: object)
(75327, Id                                     75328
EmployeeName                   Eddy  Pinales
JobTitle            Transit Power Line Sprv1
BasePay                            106029.48
OvertimePay                         66786.97
OtherPay                                 0.0
Benefits                            34470.01
TotalPay                           172816.45
TotalPayBenefits                   207286.46
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75327, dtype: object)
(75328, Id                             75329
EmployeeName         Michael C Lynch
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 39448.11
OtherPay                      6829.4
Benefits                    37528.77
TotalPay                   169748.54
TotalPayBenefits           207277.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75328, dtype: object)
(75329, Id                            75330
EmployeeName        Lawrence T Chan
JobTitle                 Sergeant 3
BasePay                   143289.14
OvertimePay                 9915.38
OtherPay                   13062.11
Benefits                   41003.47
TotalPay                  166266.63
TotalPayBenefits           207270.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75329, dtype: object)
(75330, Id                                       75331
EmployeeName                  Jacquelyne J Cho
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              152079.53
OvertimePay                                0.0
OtherPay                              12111.14
Benefits                              43068.72
TotalPay                             164190.67
TotalPayBenefits                     207259.39
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75330, dtype: object)
(75331, Id                             75332
EmployeeName          Patrick S Dudy
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 35547.96
OtherPay                    13704.84
Benefits                    36924.86
TotalPay                   170320.81
TotalPayBenefits           207245.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75331, dtype: object)
(75332, Id                               75333
EmployeeName        Geoffrey R Quesada
JobTitle                   Firefighter
BasePay                      116956.74
OvertimePay                   30528.81
OtherPay                      18349.65
Benefits                      41406.59
TotalPay                      165835.2
TotalPayBenefits             207241.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75332, dtype: object)
(75333, Id                                        75334
EmployeeName               Christopher J Hobart
JobTitle            Senior Physician Specialist
BasePay                               156831.47
OvertimePay                                 0.0
OtherPay                                7842.18
Benefits                               42566.34
TotalPay                              164673.65
TotalPayBenefits                      207239.99
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75333, dtype: object)
(75334, Id                          75335
EmployeeName         Veronica  Ng
JobTitle                Manager V
BasePay                 155208.61
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52029.91
TotalPay                155208.61
TotalPayBenefits        207238.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75334, dtype: object)
(75335, Id                             75336
EmployeeName        Antoinette M Coe
JobTitle             Manager VI, MTA
BasePay                    155208.62
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    52029.87
TotalPay                   155208.62
TotalPayBenefits           207238.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75335, dtype: object)
(75336, Id                              75337
EmployeeName        Margaret S Sansom
JobTitle                    Manager V
BasePay                     155208.58
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     52029.86
TotalPay                    155208.58
TotalPayBenefits            207238.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75336, dtype: object)
(75337, Id                             75338
EmployeeName        Jeana L Pieralde
JobTitle                   Manager V
BasePay                    155208.56
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    52029.87
TotalPay                   155208.56
TotalPayBenefits           207238.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75337, dtype: object)
(75338, Id                          75339
EmployeeName        Donna  Levitt
JobTitle                Manager V
BasePay                 155208.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52029.84
TotalPay                155208.55
TotalPayBenefits        207238.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75338, dtype: object)
(75339, Id                            75340
EmployeeName        Rodney T Miller
JobTitle                  Manager V
BasePay                   155208.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52029.85
TotalPay                  155208.53
TotalPayBenefits          207238.38
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75339, dtype: object)
(75340, Id                            75341
EmployeeName        John M Bergener
JobTitle                  Manager V
BasePay                   155208.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52029.85
TotalPay                  155208.53
TotalPayBenefits          207238.38
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75340, dtype: object)
(75341, Id                          75342
EmployeeName          Jack J Chin
JobTitle                Manager V
BasePay                 155208.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52029.84
TotalPay                155208.54
TotalPayBenefits        207238.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75341, dtype: object)
(75342, Id                           75343
EmployeeName        Wilfredo D Lim
JobTitle               Manager III
BasePay                  155181.04
OvertimePay                    0.0
OtherPay                     27.49
Benefits                  52029.85
TotalPay                 155208.53
TotalPayBenefits         207238.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75342, dtype: object)
(75343, Id                          75344
EmployeeName           Paul T Ito
JobTitle                Manager V
BasePay                 155208.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 52029.85
TotalPay                155208.52
TotalPayBenefits        207238.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75343, dtype: object)
(75344, Id                           75345
EmployeeName        Florence M Mar
JobTitle                 Manager V
BasePay                  155208.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  52029.84
TotalPay                 155208.51
TotalPayBenefits         207238.35
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75344, dtype: object)
(75345, Id                              75346
EmployeeName        Tristan M Levardo
JobTitle                   Manager IV
BasePay                     155207.82
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     52029.69
TotalPay                    155207.82
TotalPayBenefits            207237.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75345, dtype: object)
(75346, Id                             75347
EmployeeName        Sandra  Crumpler
JobTitle                   Manager V
BasePay                    155208.55
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    52026.59
TotalPay                   155208.55
TotalPayBenefits           207235.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75346, dtype: object)
(75347, Id                                75348
EmployeeName        Maria-Idalia O Lens
JobTitle             Nurse Practitioner
BasePay                       157803.32
OvertimePay                         0.0
OtherPay                          250.0
Benefits                       49164.33
TotalPay                      158053.32
TotalPayBenefits              207217.65
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75347, dtype: object)
(75348, Id                           75349
EmployeeName        Kenneth J Rich
JobTitle                 Manager V
BasePay                  155183.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  52024.57
TotalPay                 155183.24
TotalPayBenefits         207207.81
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75348, dtype: object)
(75349, Id                            75350
EmployeeName        Allison L Magee
JobTitle                Dep Dir III
BasePay                   166528.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   40663.51
TotalPay                  166528.01
TotalPayBenefits          207191.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75349, dtype: object)
(75350, Id                                75351
EmployeeName        Virginia H Fernando
JobTitle               Registered Nurse
BasePay                       127061.57
OvertimePay                      7570.3
OtherPay                       26901.99
Benefits                       45653.85
TotalPay                      161533.86
TotalPayBenefits              207187.71
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75350, dtype: object)
(75351, Id                                        75352
EmployeeName                      Godfrey G Lew
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            54462.77
OtherPay                               10656.55
Benefits                               36541.85
TotalPay                              170632.82
TotalPayBenefits                      207174.67
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75351, dtype: object)
(75352, Id                              75353
EmployeeName        Angela  Rodriguez
JobTitle                   Sergeant 3
BasePay                     132955.89
OvertimePay                   7324.27
OtherPay                     27864.67
Benefits                      39020.9
TotalPay                    168144.83
TotalPayBenefits            207165.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75352, dtype: object)
(75353, Id                             75354
EmployeeName             Aaron J Yoo
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                  45742.6
OtherPay                      861.89
Benefits                    37055.23
TotalPay                   170075.61
TotalPayBenefits           207130.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75353, dtype: object)
(75354, Id                           75355
EmployeeName        Karen G Watson
JobTitle                Manager IV
BasePay                  155103.57
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  52019.16
TotalPay                 155103.57
TotalPayBenefits         207122.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75354, dtype: object)
(75355, Id                                      75356
EmployeeName                Pamela  Underwood
JobTitle            Attorney (Civil/Criminal)
BasePay                             158598.25
OvertimePay                               0.0
OtherPay                              4422.65
Benefits                             44099.14
TotalPay                             163020.9
TotalPayBenefits                    207120.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75355, dtype: object)
(75356, Id                             75357
EmployeeName        Caroline A Priem
JobTitle                 Firefighter
BasePay                    116956.74
OvertimePay                 28518.79
OtherPay                    20152.24
Benefits                    41484.08
TotalPay                   165627.77
TotalPayBenefits           207111.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75356, dtype: object)
(75357, Id                             75358
EmployeeName        John W Hernandez
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 24333.91
OtherPay                    24382.67
Benefits                    41436.64
TotalPay                   165673.29
TotalPayBenefits           207109.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75357, dtype: object)
(75358, Id                                       75359
EmployeeName                       Lisa L Chow
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              156858.44
OvertimePay                                0.0
OtherPay                               5117.34
Benefits                              45127.76
TotalPay                             161975.78
TotalPayBenefits                     207103.54
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75358, dtype: object)
(75359, Id                              75360
EmployeeName        Paul J Weggenmann
JobTitle                   Sergeant 3
BasePay                     143289.15
OvertimePay                   7885.85
OtherPay                     14804.16
Benefits                     41119.55
TotalPay                    165979.16
TotalPayBenefits            207098.71
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75359, dtype: object)
(75360, Id                             75361
EmployeeName        Vitus C.W. Leung
JobTitle                  Manager IV
BasePay                    149208.41
OvertimePay                      0.0
OtherPay                      5800.0
Benefits                    52088.43
TotalPay                   155008.41
TotalPayBenefits           207096.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75360, dtype: object)
(75361, Id                                75362
EmployeeName              Lucy D.M. Luu
JobTitle            Clinical Pharmacist
BasePay                       161757.04
OvertimePay                         0.0
OtherPay                          392.0
Benefits                        44942.7
TotalPay                      162149.04
TotalPayBenefits              207091.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75361, dtype: object)
(75362, Id                              75363
EmployeeName        Richard  Espinoza
JobTitle                  Firefighter
BasePay                      116204.9
OvertimePay                  30605.42
OtherPay                     19086.83
Benefits                     41180.22
TotalPay                    165897.15
TotalPayBenefits            207077.37
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75362, dtype: object)
(75363, Id                             75364
EmployeeName        Theresa E Okorie
JobTitle            Registered Nurse
BasePay                     129978.0
OvertimePay                  6607.22
OtherPay                    29542.77
Benefits                    40936.18
TotalPay                   166127.99
TotalPayBenefits           207064.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75363, dtype: object)
(75364, Id                                 75365
EmployeeName            Sushma  Magnuson
JobTitle            Physician Specialist
BasePay                        160939.21
OvertimePay                          0.0
OtherPay                          4050.0
Benefits                        42071.01
TotalPay                       164989.21
TotalPayBenefits               207060.22
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75364, dtype: object)
(75365, Id                             75366
EmployeeName        Victor G Hurtado
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 22808.83
OtherPay                    25417.47
Benefits                    41851.48
TotalPay                   165183.01
TotalPayBenefits           207034.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75365, dtype: object)
(75366, Id                                         75367
EmployeeName                      Steven M Meier
JobTitle            Utility Plumber Supervisor 2
BasePay                                122137.52
OvertimePay                              21245.3
OtherPay                                24956.19
Benefits                                38665.94
TotalPay                               168339.01
TotalPayBenefits                       207004.95
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75366, dtype: object)
(75367, Id                          75368
EmployeeName        Gloria  Louie
JobTitle               Manager IV
BasePay                 155006.15
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 51991.58
TotalPay                155006.15
TotalPayBenefits        206997.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75367, dtype: object)
(75368, Id                              75369
EmployeeName        Michael E Peregoy
JobTitle             Police Officer 3
BasePay                     123471.19
OvertimePay                  39137.04
OtherPay                      7324.72
Benefits                     37055.22
TotalPay                    169932.95
TotalPayBenefits            206988.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75368, dtype: object)
(75369, Id                           75370
EmployeeName        Lloyd E Martin
JobTitle                Sergeant 3
BasePay                  142555.12
OvertimePay                8702.67
OtherPay                  15018.77
Benefits                  40705.13
TotalPay                 166276.56
TotalPayBenefits         206981.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75369, dtype: object)
(75370, Id                             75371
EmployeeName        Richard A Dalton
JobTitle                 Inspector 3
BasePay                     74298.02
OvertimePay                  1826.93
OtherPay                   109804.75
Benefits                    21035.74
TotalPay                    185929.7
TotalPayBenefits           206965.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75370, dtype: object)
(75371, Id                                75372
EmployeeName           Katherine C Pang
JobTitle            Clinical Pharmacist
BasePay                       161757.02
OvertimePay                       56.17
OtherPay                          202.2
Benefits                       44944.85
TotalPay                      162015.39
TotalPayBenefits              206960.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75371, dtype: object)
(75372, Id                          75373
EmployeeName          Jesus  Pena
JobTitle               Sergeant 2
BasePay                 137290.01
OvertimePay              10999.82
OtherPay                 17751.54
Benefits                 40873.55
TotalPay                166041.37
TotalPayBenefits        206914.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75372, dtype: object)
(75373, Id                            75374
EmployeeName        Nelson A Artiga
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                11911.73
OtherPay                   10713.07
Benefits                   40999.95
TotalPay                  165913.91
TotalPayBenefits          206913.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75373, dtype: object)
(75374, Id                                75375
EmployeeName              Laura R Kelly
JobTitle            Invstgtor,Fire Dept
BasePay                       138911.11
OvertimePay                     15309.7
OtherPay                        8414.32
Benefits                       44233.15
TotalPay                      162635.13
TotalPayBenefits              206868.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75374, dtype: object)
(75375, Id                                75376
EmployeeName          Thi Tram N Nguyen
JobTitle            Clinical Pharmacist
BasePay                       161757.01
OvertimePay                         0.0
OtherPay                          168.0
Benefits                        44937.7
TotalPay                      161925.01
TotalPayBenefits              206862.71
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75375, dtype: object)
(75376, Id                           75377
EmployeeName        Brian D Barden
JobTitle               Firefighter
BasePay                  116956.69
OvertimePay               25040.95
OtherPay                  22668.12
Benefits                  42194.04
TotalPay                 164665.76
TotalPayBenefits          206859.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75376, dtype: object)
(75377, Id                             75378
EmployeeName           Nellie  Sarte
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  7148.16
OtherPay                    28814.23
Benefits                    36852.46
TotalPay                   169990.39
TotalPayBenefits           206842.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75377, dtype: object)
(75378, Id                              75379
EmployeeName        John H Danner III
JobTitle                  Firefighter
BasePay                     115893.44
OvertimePay                   30622.6
OtherPay                     19271.23
Benefits                     41044.36
TotalPay                    165787.27
TotalPayBenefits            206831.63
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75378, dtype: object)
(75379, Id                            75380
EmployeeName        Robert R Potter
JobTitle                Firefighter
BasePay                   107211.95
OvertimePay                39035.62
OtherPay                    18986.1
Benefits                   41597.91
TotalPay                  165233.67
TotalPayBenefits          206831.58
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75379, dtype: object)
(75380, Id                            75381
EmployeeName        Robert S Thomas
JobTitle                 Pharmacist
BasePay                   146745.01
OvertimePay                  968.11
OtherPay                   12979.46
Benefits                   46116.35
TotalPay                  160692.58
TotalPayBenefits          206808.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75380, dtype: object)
(75381, Id                             75382
EmployeeName        Tigran  Antonian
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 31777.02
OtherPay                    17340.71
Benefits                    36594.81
TotalPay                   170185.73
TotalPayBenefits           206780.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75381, dtype: object)
(75382, Id                            75383
EmployeeName        Michael Y Zhang
JobTitle                 Sergeant 3
BasePay                   129343.09
OvertimePay                20722.87
OtherPay                   18344.06
Benefits                   38321.66
TotalPay                  168410.02
TotalPayBenefits          206731.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75382, dtype: object)
(75383, Id                            75384
EmployeeName        Peter L Walford
JobTitle                 Pharmacist
BasePay                    146745.0
OvertimePay                 1813.93
OtherPay                   13533.15
Benefits                   44617.28
TotalPay                  162092.08
TotalPayBenefits          206709.36
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75383, dtype: object)
(75384, Id                             75385
EmployeeName           Craig  Canton
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 40544.29
OtherPay                     5646.37
Benefits                    37035.86
TotalPay                   169661.69
TotalPayBenefits           206697.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75384, dtype: object)
(75385, Id                           75386
EmployeeName        Kirk J Tomioka
JobTitle               Inspector 3
BasePay                  143289.04
OvertimePay               17227.02
OtherPay                   5223.03
Benefits                  40957.76
TotalPay                 165739.09
TotalPayBenefits         206696.85
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75385, dtype: object)
(75386, Id                                          75387
EmployeeName                       John A Haggett
JobTitle            Sergeant, (Police Department)
BasePay                                 128757.01
OvertimePay                              24290.69
OtherPay                                 14618.49
Benefits                                 39008.52
TotalPay                                167666.19
TotalPayBenefits                        206674.71
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75386, dtype: object)
(75387, Id                                      75388
EmployeeName                   Osnat  Gabriel
JobTitle            Clinical Nurse Specialist
BasePay                              158402.2
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             48266.56
TotalPay                             158402.2
TotalPayBenefits                    206668.76
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75387, dtype: object)
(75388, Id                                75389
EmployeeName             James J Gasper
JobTitle            Clinical Pharmacist
BasePay                       161757.05
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       44902.78
TotalPay                      161757.05
TotalPayBenefits              206659.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75388, dtype: object)
(75389, Id                                75390
EmployeeName           Heather M Houska
JobTitle            Clinical Pharmacist
BasePay                       161757.05
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       44902.77
TotalPay                      161757.05
TotalPayBenefits              206659.82
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75389, dtype: object)
(75390, Id                                75391
EmployeeName              Daniel H Deck
JobTitle            Clinical Pharmacist
BasePay                       161757.01
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       44902.77
TotalPay                      161757.01
TotalPayBenefits              206659.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75390, dtype: object)
(75391, Id                              75392
EmployeeName        William M Siebert
JobTitle                  Inspector 3
BasePay                     143289.06
OvertimePay                   8913.11
OtherPay                     13128.05
Benefits                     41328.65
TotalPay                    165330.22
TotalPayBenefits            206658.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75391, dtype: object)
(75392, Id                             75393
EmployeeName         Elmer C Najarro
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                  35498.0
OtherPay                    10663.11
Benefits                    37025.14
TotalPay                   169632.26
TotalPayBenefits            206657.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75392, dtype: object)
(75393, Id                          75394
EmployeeName           Diane  Lim
JobTitle               Manager IV
BasePay                 155934.26
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50721.29
TotalPay                155934.26
TotalPayBenefits        206655.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75393, dtype: object)
(75394, Id                             75395
EmployeeName        Dominic  Shanley
JobTitle                 Firefighter
BasePay                    116310.85
OvertimePay                 31073.03
OtherPay                    18419.09
Benefits                    40839.89
TotalPay                   165802.97
TotalPayBenefits           206642.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75394, dtype: object)
(75395, Id                             75396
EmployeeName         John M Ferrando
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 39576.14
OtherPay                     6565.43
Benefits                    37025.18
TotalPay                   169612.72
TotalPayBenefits            206637.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75395, dtype: object)
(75396, Id                             75397
EmployeeName        Stevie R Bacolot
JobTitle            Police Officer 3
BasePay                    123471.18
OvertimePay                 37115.24
OtherPay                     8985.28
Benefits                    37055.22
TotalPay                    169571.7
TotalPayBenefits           206626.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75396, dtype: object)
(75397, Id                            75398
EmployeeName        Gerald  Robbins
JobTitle            Manager VI, MTA
BasePay                    154630.7
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   51957.94
TotalPay                   154630.7
TotalPayBenefits          206588.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75397, dtype: object)
(75398, Id                                         75399
EmployeeName                   Anthony J Mazzola
JobTitle            Utility Plumber Supervisor 1
BasePay                                 102602.0
OvertimePay                             46414.91
OtherPay                                23738.08
Benefits                                 33833.0
TotalPay                               172754.99
TotalPayBenefits                       206587.99
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75398, dtype: object)
(75399, Id                               75400
EmployeeName        Leslie C Forrestal
JobTitle                    Sergeant 3
BasePay                      143289.12
OvertimePay                     6474.5
OtherPay                      15046.21
Benefits                      41731.36
TotalPay                     164809.83
TotalPayBenefits             206541.19
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75399, dtype: object)
(75400, Id                            75401
EmployeeName        Dennis L Toomer
JobTitle                 Sergeant 3
BasePay                   143289.07
OvertimePay                 8225.85
OtherPay                    14039.9
Benefits                   40958.17
TotalPay                  165554.82
TotalPayBenefits          206512.99
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75400, dtype: object)
(75401, Id                             75402
EmployeeName        George K Ferraez
JobTitle                  Sergeant 3
BasePay                    143289.17
OvertimePay                  4581.44
OtherPay                    17832.56
Benefits                    40806.25
TotalPay                   165703.17
TotalPayBenefits           206509.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75401, dtype: object)
(75402, Id                                  75403
EmployeeName               Matthew K Wong
JobTitle            Senior Deputy Sheriff
BasePay                         105237.37
OvertimePay                      51636.26
OtherPay                          12456.1
Benefits                         37153.16
TotalPay                        169329.73
TotalPayBenefits                206482.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75402, dtype: object)
(75403, Id                             75404
EmployeeName         Evelyn T Sabugo
JobTitle            Registered Nurse
BasePay                    140709.01
OvertimePay                  6885.79
OtherPay                    13671.43
Benefits                    45186.11
TotalPay                   161266.23
TotalPayBenefits           206452.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75403, dtype: object)
(75404, Id                             75405
EmployeeName            Stephen  Hom
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 24590.17
OtherPay                     24185.1
Benefits                    36600.58
TotalPay                   169843.27
TotalPayBenefits           206443.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75404, dtype: object)
(75405, Id                                  75406
EmployeeName                Ronald P Bell
JobTitle            IS Engineer-Principal
BasePay                         139889.02
OvertimePay                           0.0
OtherPay                         25692.27
Benefits                         40856.21
TotalPay                        165581.29
TotalPayBenefits                 206437.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75405, dtype: object)
(75406, Id                             75407
EmployeeName        David J Dorantes
JobTitle                  Sergeant 3
BasePay                    143289.11
OvertimePay                  5796.24
OtherPay                    15814.05
Benefits                    41533.13
TotalPay                    164899.4
TotalPayBenefits           206432.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75406, dtype: object)
(75407, Id                             75408
EmployeeName        Gabriel  Alcaraz
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 28843.69
OtherPay                    19925.65
Benefits                    36571.11
TotalPay                   169837.34
TotalPayBenefits           206408.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75407, dtype: object)
(75408, Id                                75409
EmployeeName        Huckleberry  Ramsay
JobTitle                    Firefighter
BasePay                        116956.7
OvertimePay                    29536.18
OtherPay                        18500.3
Benefits                       41406.59
TotalPay                      164993.18
TotalPayBenefits              206399.77
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75408, dtype: object)
(75409, Id                              75410
EmployeeName        Nicole L Bruckert
JobTitle                   Sergeant 3
BasePay                     142227.63
OvertimePay                  21246.66
OtherPay                      2411.28
Benefits                     40488.42
TotalPay                    165885.57
TotalPayBenefits            206373.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75409, dtype: object)
(75410, Id                                   75411
EmployeeName                  James A Shih
JobTitle            Track Maint Wrk Sprv 1
BasePay                           83724.02
OvertimePay                       82819.79
OtherPay                            7933.5
Benefits                           31895.6
TotalPay                         174477.31
TotalPayBenefits                 206372.91
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75410, dtype: object)
(75411, Id                          75412
EmployeeName         David  Smith
JobTitle             Lieutenant 3
BasePay                 155416.79
OvertimePay                   0.0
OtherPay                  7989.11
Benefits                 42934.92
TotalPay                 163405.9
TotalPayBenefits        206340.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75411, dtype: object)
(75412, Id                                       75413
EmployeeName                    Thomas W Biber
JobTitle            Automotive Mechanic Sprv 1
BasePay                              105320.73
OvertimePay                           41673.34
OtherPay                               20953.0
Benefits                              38374.14
TotalPay                             167947.07
TotalPayBenefits                     206321.21
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75412, dtype: object)
(75413, Id                               75414
EmployeeName        Michele A Martinez
JobTitle                    Sergeant 3
BasePay                      131197.01
OvertimePay                   25361.18
OtherPay                      11096.87
Benefits                      38632.24
TotalPay                     167655.06
TotalPayBenefits              206287.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75413, dtype: object)
(75414, Id                            75415
EmployeeName        Leonard M Cueba
JobTitle                 Sergeant 3
BasePay                   143289.24
OvertimePay                15311.53
OtherPay                    6447.12
Benefits                   41235.95
TotalPay                  165047.89
TotalPayBenefits          206283.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75414, dtype: object)
(75415, Id                             75416
EmployeeName            Joshua N Fry
JobTitle            Police Officer 2
BasePay                    119033.68
OvertimePay                 24681.75
OtherPay                    26078.19
Benefits                    36476.06
TotalPay                   169793.62
TotalPayBenefits           206269.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75415, dtype: object)
(75416, Id                             75417
EmployeeName        Carlos M Recinos
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 25325.23
OtherPay                     13476.0
Benefits                    38881.88
TotalPay                   167357.23
TotalPayBenefits           206239.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75416, dtype: object)
(75417, Id                             75418
EmployeeName        Ronald T Liberta
JobTitle                  Sergeant 3
BasePay                    143289.14
OvertimePay                  9293.47
OtherPay                    12641.01
Benefits                    41013.28
TotalPay                   165223.62
TotalPayBenefits            206236.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75417, dtype: object)
(75418, Id                           75419
EmployeeName        Jeremy J Silva
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               28585.23
OtherPay                  19227.69
Benefits                  41449.97
TotalPay                 164769.63
TotalPayBenefits          206219.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75418, dtype: object)
(75419, Id                           75420
EmployeeName        Crystal  Chang
JobTitle                 Manager V
BasePay                  154339.84
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   51876.0
TotalPay                 154339.84
TotalPayBenefits         206215.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75419, dtype: object)
(75420, Id                             75421
EmployeeName          Marife A Welsh
JobTitle            Registered Nurse
BasePay                    141623.86
OvertimePay                  6339.73
OtherPay                    11461.79
Benefits                    46761.99
TotalPay                   159425.38
TotalPayBenefits           206187.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75420, dtype: object)
(75421, Id                                          75422
EmployeeName                   Ricardo S Castillo
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.08
OvertimePay                              21532.01
OtherPay                                  9824.97
Benefits                                  39554.8
TotalPay                                166627.06
TotalPayBenefits                        206181.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75421, dtype: object)
(75422, Id                             75423
EmployeeName         Marilyn  Valius
JobTitle            Registered Nurse
BasePay                    142390.71
OvertimePay                  6784.95
OtherPay                    12925.46
Benefits                    44078.48
TotalPay                   162101.12
TotalPayBenefits            206179.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75422, dtype: object)
(75423, Id                                      75424
EmployeeName                      Albert  Hom
JobTitle            Sprv Electronic Main Tech
BasePay                             122137.53
OvertimePay                          38116.34
OtherPay                               8464.0
Benefits                             37419.51
TotalPay                            168717.87
TotalPayBenefits                    206137.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75423, dtype: object)
(75424, Id                                    75425
EmployeeName               Julie A Nicholls
JobTitle            Sr Court Staff Attorney
BasePay                           152798.01
OvertimePay                             0.0
OtherPay                            8023.13
Benefits                           45254.42
TotalPay                          160821.14
TotalPayBenefits                  206075.56
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75424, dtype: object)
(75425, Id                                75426
EmployeeName        Matthew P Inocencio
JobTitle                     Sergeant 3
BasePay                       143289.18
OvertimePay                     9796.19
OtherPay                       12072.62
Benefits                       40887.36
TotalPay                      165157.99
TotalPayBenefits              206045.35
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75425, dtype: object)
(75426, Id                          75427
EmployeeName        Brian P Greer
JobTitle               Sergeant 3
BasePay                  133013.1
OvertimePay               7329.28
OtherPay                 26534.23
Benefits                 39163.89
TotalPay                166876.61
TotalPayBenefits         206040.5
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75426, dtype: object)
(75427, Id                          75428
EmployeeName         Richard  Lee
JobTitle               Manager IV
BasePay                 151014.59
OvertimePay                   0.0
OtherPay                  3027.84
Benefits                 51955.34
TotalPay                154042.43
TotalPayBenefits        205997.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75427, dtype: object)
(75428, Id                            75429
EmployeeName        Patrick E Reyes
JobTitle                Firefighter
BasePay                   102968.38
OvertimePay                46464.66
OtherPay                   15895.62
Benefits                    40652.9
TotalPay                  165328.66
TotalPayBenefits          205981.56
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75428, dtype: object)
(75429, Id                                      75430
EmployeeName                  Martin M Spalka
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.63
OvertimePay                          16061.66
OtherPay                             11947.98
Benefits                             44027.19
TotalPay                            161925.27
TotalPayBenefits                    205952.46
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75429, dtype: object)
(75430, Id                                          75431
EmployeeName                        Walter C Ware
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.04
OvertimePay                               25224.2
OtherPay                                  5830.43
Benefits                                 39627.67
TotalPay                                166324.67
TotalPayBenefits                        205952.34
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75430, dtype: object)
(75431, Id                              75432
EmployeeName        William B Clinton
JobTitle                   Sergeant 3
BasePay                     143289.19
OvertimePay                   8980.39
OtherPay                     12542.36
Benefits                     41131.72
TotalPay                    164811.94
TotalPayBenefits            205943.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75431, dtype: object)
(75432, Id                            75433
EmployeeName        Milen S Banegas
JobTitle             Police Officer
BasePay                   116478.12
OvertimePay                36173.56
OtherPay                   17572.08
Benefits                   35714.06
TotalPay                  170223.76
TotalPayBenefits          205937.82
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75432, dtype: object)
(75433, Id                          75434
EmployeeName        Gigi N George
JobTitle               Sergeant 3
BasePay                 142555.17
OvertimePay              13910.16
OtherPay                  8652.42
Benefits                 40813.71
TotalPay                165117.75
TotalPayBenefits        205931.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75433, dtype: object)
(75434, Id                               75435
EmployeeName           Eric B Mitchell
JobTitle            IS Engineer-Senior
BasePay                      130038.03
OvertimePay                        0.0
OtherPay                      36955.68
Benefits                      38936.28
TotalPay                     166993.71
TotalPayBenefits             205929.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75434, dtype: object)
(75435, Id                              75436
EmployeeName        David J Loustalot
JobTitle                    Manager V
BasePay                     155208.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     50705.24
TotalPay                    155208.53
TotalPayBenefits            205913.77
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75435, dtype: object)
(75436, Id                              75437
EmployeeName        Kevin M Whitfield
JobTitle                  Inspector 3
BasePay                     143289.02
OvertimePay                  10494.64
OtherPay                     10748.25
Benefits                     41379.02
TotalPay                    164531.91
TotalPayBenefits            205910.93
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75436, dtype: object)
(75437, Id                                         75438
EmployeeName                         Susan R Yee
JobTitle            Engineer/Architect Principal
BasePay                                 147762.4
OvertimePay                                  0.0
OtherPay                                15175.19
Benefits                                42944.31
TotalPay                               162937.59
TotalPayBenefits                        205881.9
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75437, dtype: object)
(75438, Id                             75439
EmployeeName         Larry  Bertrand
JobTitle            Police Officer 3
BasePay                    123442.78
OvertimePay                 33570.52
OtherPay                    11839.69
Benefits                    37019.42
TotalPay                   168852.99
TotalPayBenefits           205872.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75438, dtype: object)
(75439, Id                          75440
EmployeeName          Elaine  Lee
JobTitle               Manager IV
BasePay                 151014.57
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                  51851.0
TotalPay                154014.57
TotalPayBenefits        205865.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75439, dtype: object)
(75440, Id                                       75441
EmployeeName                     Mark M Dorian
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              160947.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              44892.18
TotalPay                             160947.52
TotalPayBenefits                      205839.7
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75440, dtype: object)
(75441, Id                             75442
EmployeeName              David  Yee
JobTitle            Train Controller
BasePay                     106259.1
OvertimePay                 52829.66
OtherPay                    10170.39
Benefits                    36577.34
TotalPay                   169259.15
TotalPayBenefits           205836.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75441, dtype: object)
(75442, Id                              75443
EmployeeName        Richard G Daniele
JobTitle                  Inspector 3
BasePay                      68991.02
OvertimePay                  10041.84
OtherPay                    107364.85
Benefits                     19429.59
TotalPay                    186397.71
TotalPayBenefits             205827.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75442, dtype: object)
(75443, Id                              75444
EmployeeName        Kevin J Rightmire
JobTitle             Police Officer 3
BasePay                     123471.18
OvertimePay                  42302.33
OtherPay                      3016.09
Benefits                     37025.18
TotalPay                     168789.6
TotalPayBenefits            205814.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75443, dtype: object)
(75444, Id                                      75445
EmployeeName                  Erin  Bernstein
JobTitle            Attorney (Civil/Criminal)
BasePay                             159510.56
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             45052.18
TotalPay                            160760.06
TotalPayBenefits                    205812.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75444, dtype: object)
(75445, Id                             75446
EmployeeName          Fern L Ebeling
JobTitle            Registered Nurse
BasePay                    141897.56
OvertimePay                      0.0
OtherPay                    15996.13
Benefits                     47905.8
TotalPay                   157893.69
TotalPayBenefits           205799.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75445, dtype: object)
(75446, Id                               75447
EmployeeName        Carol L Wyley Wong
JobTitle               Insp, Fire Dept
BasePay                      135967.88
OvertimePay                   15207.31
OtherPay                      13366.19
Benefits                      41249.95
TotalPay                     164541.38
TotalPayBenefits             205791.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75446, dtype: object)
(75447, Id                                 75448
EmployeeName                 Rex D Olson
JobTitle            Sheriff's Lieutenant
BasePay                         131410.2
OvertimePay                     10922.04
OtherPay                        19641.08
Benefits                        43814.31
TotalPay                       161973.32
TotalPayBenefits               205787.63
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75447, dtype: object)
(75448, Id                           75449
EmployeeName        Anthony R Orge
JobTitle            Police Officer
BasePay                  116478.01
OvertimePay                44051.7
OtherPay                   9538.02
Benefits                  35703.87
TotalPay                 170067.73
TotalPayBenefits          205771.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75448, dtype: object)
(75449, Id                              75450
EmployeeName        Alejandro  Cortes
JobTitle                   Sergeant 3
BasePay                     129343.05
OvertimePay                  17715.38
OtherPay                      20459.5
Benefits                     38242.55
TotalPay                    167517.93
TotalPayBenefits            205760.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75449, dtype: object)
(75450, Id                             75451
EmployeeName             Linda  Kopp
JobTitle            Registered Nurse
BasePay                    133325.68
OvertimePay                 14260.66
OtherPay                    13423.86
Benefits                    44744.63
TotalPay                    161010.2
TotalPayBenefits           205754.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75450, dtype: object)
(75451, Id                                      75452
EmployeeName                  Lisa  Holdcroft
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.19
OvertimePay                           8410.68
OtherPay                              16893.0
Benefits                             45272.99
TotalPay                            160447.87
TotalPayBenefits                    205720.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75451, dtype: object)
(75452, Id                              75453
EmployeeName        Bettrietta E Kime
JobTitle                  Firefighter
BasePay                     115893.46
OvertimePay                  35818.79
OtherPay                     14193.39
Benefits                     39780.28
TotalPay                    165905.64
TotalPayBenefits            205685.92
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75452, dtype: object)
(75453, Id                              75454
EmployeeName        Wesley  Villaruel
JobTitle             Police Officer 3
BasePay                     127096.03
OvertimePay                  35274.78
OtherPay                      5091.26
Benefits                     38222.42
TotalPay                    167462.07
TotalPayBenefits            205684.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75453, dtype: object)
(75454, Id                              75455
EmployeeName        Darryl F Brewster
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  28931.18
OtherPay                     18479.11
Benefits                     41308.67
TotalPay                    164367.02
TotalPayBenefits            205675.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75454, dtype: object)
(75455, Id                              75456
EmployeeName        Thomas P Macmahon
JobTitle                   Sergeant 2
BasePay                     126892.02
OvertimePay                  18530.52
OtherPay                      22276.4
Benefits                     37930.35
TotalPay                    167698.94
TotalPayBenefits            205629.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75455, dtype: object)
(75456, Id                             75457
EmployeeName         Belen E Ferraro
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                  5222.28
OtherPay                    13915.16
Benefits                    44063.93
TotalPay                   161562.45
TotalPayBenefits           205626.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75456, dtype: object)
(75457, Id                            75458
EmployeeName         Jeffrey J Chin
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                16035.78
OtherPay                    8378.64
Benefits                   41539.01
TotalPay                  164058.42
TotalPayBenefits          205597.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75457, dtype: object)
(75458, Id                             75459
EmployeeName         Celsa B Alvarez
JobTitle            Registered Nurse
BasePay                    141106.25
OvertimePay                   6132.2
OtherPay                    11655.31
Benefits                     46697.2
TotalPay                   158893.76
TotalPayBenefits           205590.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75458, dtype: object)
(75459, Id                            75460
EmployeeName        Joseph L Devaty
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                38568.25
OtherPay                   11406.79
Benefits                   39694.05
TotalPay                   165868.5
TotalPayBenefits          205562.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75459, dtype: object)
(75460, Id                                      75461
EmployeeName                 Jason J Reichard
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.64
OvertimePay                           9056.66
OtherPay                             17768.25
Benefits                             44764.68
TotalPay                            160740.55
TotalPayBenefits                    205505.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75460, dtype: object)
(75461, Id                          75462
EmployeeName         Robert K Lee
JobTitle              Inspector 3
BasePay                  68991.06
OvertimePay               3441.25
OtherPay                113535.25
Benefits                  19526.8
TotalPay                185967.56
TotalPayBenefits        205494.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75461, dtype: object)
(75462, Id                           75463
EmployeeName        Scott H Gaines
JobTitle                Sergeant 3
BasePay                  143289.16
OvertimePay               12929.92
OtherPay                   8442.99
Benefits                  40829.69
TotalPay                 164662.07
TotalPayBenefits         205491.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75462, dtype: object)
(75463, Id                                  75464
EmployeeName        Chirstopher  Anderson
JobTitle                 Police Officer 3
BasePay                         123471.24
OvertimePay                      38707.94
OtherPay                          6252.91
Benefits                          37040.2
TotalPay                        168432.09
TotalPayBenefits                205472.29
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75463, dtype: object)
(75464, Id                                      75465
EmployeeName             Clifford C Smethurst
JobTitle            Transit Power Line Worker
BasePay                               98942.4
OvertimePay                          60673.31
OtherPay                             10454.24
Benefits                             35398.63
TotalPay                            170069.95
TotalPayBenefits                    205468.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75464, dtype: object)
(75465, Id                                 75466
EmployeeName        Michael P Radanovich
JobTitle                      Sergeant 3
BasePay                        143289.03
OvertimePay                     17189.74
OtherPay                         4167.45
Benefits                        40804.34
TotalPay                       164646.22
TotalPayBenefits               205450.56
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75465, dtype: object)
(75466, Id                                75467
EmployeeName           Melissa N Nguyen
JobTitle            Clinical Pharmacist
BasePay                       156325.33
OvertimePay                     1605.09
OtherPay                        1679.86
Benefits                       45817.73
TotalPay                      159610.28
TotalPayBenefits              205428.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75466, dtype: object)
(75467, Id                          75468
EmployeeName        Shirley Y Lee
JobTitle               Pharmacist
BasePay                  146745.0
OvertimePay                815.25
OtherPay                 13292.52
Benefits                 44569.15
TotalPay                160852.77
TotalPayBenefits        205421.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75467, dtype: object)
(75468, Id                             75469
EmployeeName         Joseph A Juarez
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 39511.93
OtherPay                     5372.26
Benefits                    37055.22
TotalPay                   168355.33
TotalPayBenefits           205410.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75468, dtype: object)
(75469, Id                          75470
EmployeeName        Karl J Jurado
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              28119.21
OtherPay                  18925.6
Benefits                 41406.58
TotalPay                164001.51
TotalPayBenefits        205408.09
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75469, dtype: object)
(75470, Id                                         75471
EmployeeName                           Kan F Yip
JobTitle            Utility Plumber Supervisor 1
BasePay                                 110789.0
OvertimePay                             49255.99
OtherPay                                 8426.19
Benefits                                36921.48
TotalPay                               168471.18
TotalPayBenefits                       205392.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75470, dtype: object)
(75471, Id                             75472
EmployeeName        Jeffrey R Skover
JobTitle                 Inspector 3
BasePay                    143289.14
OvertimePay                  5173.31
OtherPay                    14750.09
Benefits                    42152.12
TotalPay                   163212.54
TotalPayBenefits           205364.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75471, dtype: object)
(75472, Id                          75473
EmployeeName        Edmund A Egan
JobTitle              Manager III
BasePay                 151453.91
OvertimePay                   0.0
OtherPay                   2510.0
Benefits                 51392.03
TotalPay                153963.91
TotalPayBenefits        205355.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75472, dtype: object)
(75473, Id                             75474
EmployeeName        Noel S Barrantes
JobTitle              Deputy Sheriff
BasePay                     95126.54
OvertimePay                 67744.85
OtherPay                     8696.52
Benefits                    33787.34
TotalPay                   171567.91
TotalPayBenefits           205355.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75473, dtype: object)
(75474, Id                            75475
EmployeeName        Randy L Tiffany
JobTitle             Police Officer
BasePay                   114348.09
OvertimePay                47145.26
OtherPay                    8489.38
Benefits                   35355.05
TotalPay                  169982.73
TotalPayBenefits          205337.78
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75474, dtype: object)
(75475, Id                             75476
EmployeeName          Keith M Parker
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                 39000.41
OtherPay                      5838.5
Benefits                    37025.18
TotalPay                   168310.03
TotalPayBenefits           205335.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75475, dtype: object)
(75476, Id                              75477
EmployeeName        Guadalupe O Marin
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                   27316.9
OtherPay                      19615.6
Benefits                     41445.96
TotalPay                    163889.21
TotalPayBenefits            205335.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75476, dtype: object)
(75477, Id                          75478
EmployeeName        Andrea L Weyl
JobTitle               Sergeant 3
BasePay                 133013.05
OvertimePay              15211.89
OtherPay                 18121.31
Benefits                 38967.25
TotalPay                166346.25
TotalPayBenefits         205313.5
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75477, dtype: object)
(75478, Id                                         75479
EmployeeName                     John M Mercurio
JobTitle            Utility Plumber Supervisor 1
BasePay                                116116.02
OvertimePay                             28192.42
OtherPay                                23570.23
Benefits                                37423.64
TotalPay                               167878.67
TotalPayBenefits                       205302.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75478, dtype: object)
(75479, Id                             75480
EmployeeName         Jason M Maxwell
JobTitle            Police Officer 2
BasePay                     119368.0
OvertimePay                 28998.34
OtherPay                    20165.58
Benefits                     36765.3
TotalPay                   168531.92
TotalPayBenefits           205297.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75479, dtype: object)
(75480, Id                              75481
EmployeeName        Michael A Shavers
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  35097.91
OtherPay                     12530.94
Benefits                     36581.47
TotalPay                    168696.85
TotalPayBenefits            205278.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75480, dtype: object)
(75481, Id                          75482
EmployeeName        Joan M Cronin
JobTitle               Sergeant 3
BasePay                 131856.08
OvertimePay               8449.24
OtherPay                 25876.24
Benefits                 39090.57
TotalPay                166181.56
TotalPayBenefits        205272.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75481, dtype: object)
(75482, Id                             75483
EmployeeName              George  So
JobTitle            Registered Nurse
BasePay                    140051.25
OvertimePay                 11037.95
OtherPay                     8402.02
Benefits                    45765.79
TotalPay                   159491.22
TotalPayBenefits           205257.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75482, dtype: object)
(75483, Id                                         75484
EmployeeName                      Andrew G Saitz
JobTitle            Lieutenant, Fire Suppression
BasePay                                134925.96
OvertimePay                             11969.77
OtherPay                                15601.12
Benefits                                42758.21
TotalPay                               162496.85
TotalPayBenefits                       205255.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75483, dtype: object)
(75484, Id                                75485
EmployeeName        Patrick M McCormick
JobTitle                     Sergeant 3
BasePay                       143289.08
OvertimePay                     3124.73
OtherPay                       17482.09
Benefits                       41294.14
TotalPay                       163895.9
TotalPayBenefits              205190.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75484, dtype: object)
(75485, Id                                      75486
EmployeeName                 Brendon  O'Neill
JobTitle            Attorney (Civil/Criminal)
BasePay                             158939.51
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44970.64
TotalPay                            160189.01
TotalPayBenefits                    205159.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75485, dtype: object)
(75486, Id                               75487
EmployeeName        Rafael  Labutan Jr
JobTitle              Police Officer 3
BasePay                      123471.14
OvertimePay                   39483.99
OtherPay                       4582.37
Benefits                      37619.54
TotalPay                      167537.5
TotalPayBenefits             205157.04
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75486, dtype: object)
(75487, Id                             75488
EmployeeName              Hong  Yuan
JobTitle            Registered Nurse
BasePay                     126838.8
OvertimePay                  7222.86
OtherPay                    29951.81
Benefits                    41134.31
TotalPay                   164013.47
TotalPayBenefits           205147.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75487, dtype: object)
(75488, Id                           75489
EmployeeName        Nicolas A Pena
JobTitle                Sergeant 2
BasePay                  128443.43
OvertimePay                8833.73
OtherPay                  29299.13
Benefits                  38527.62
TotalPay                 166576.29
TotalPayBenefits         205103.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75488, dtype: object)
(75489, Id                             75490
EmployeeName         Edward M Browne
JobTitle            Police Officer 3
BasePay                    123471.19
OvertimePay                 37114.85
OtherPay                     7008.99
Benefits                    37507.02
TotalPay                   167595.03
TotalPayBenefits           205102.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75489, dtype: object)
(75490, Id                           75491
EmployeeName        Warren W House
JobTitle               Firefighter
BasePay                   86053.55
OvertimePay               64220.41
OtherPay                  24527.05
Benefits                   30232.1
TotalPay                 174801.01
TotalPayBenefits         205033.11
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75490, dtype: object)
(75491, Id                           75492
EmployeeName        Eric  Altorfer
JobTitle                Sergeant 3
BasePay                  141294.09
OvertimePay               11775.88
OtherPay                  11338.47
Benefits                  40623.51
TotalPay                 164408.44
TotalPayBenefits         205031.95
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75491, dtype: object)
(75492, Id                             75493
EmployeeName        Jason F Kirchner
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                  40572.9
OtherPay                     3915.79
Benefits                     37055.1
TotalPay                    167959.7
TotalPayBenefits            205014.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75492, dtype: object)
(75493, Id                                         75494
EmployeeName                     Daniel M Cotter
JobTitle            Utility Plumber Supervisor 1
BasePay                                 110789.0
OvertimePay                             37592.66
OtherPay                                20127.01
Benefits                                36468.75
TotalPay                               168508.67
TotalPayBenefits                       204977.42
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75493, dtype: object)
(75494, Id                             75495
EmployeeName        Stephen V Kirwan
JobTitle            Police Officer 3
BasePay                     123471.1
OvertimePay                 35242.53
OtherPay                     9214.64
Benefits                    37047.88
TotalPay                   167928.27
TotalPayBenefits           204976.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75494, dtype: object)
(75495, Id                            75496
EmployeeName        Michael S Young
JobTitle                 Sergeant 3
BasePay                    131686.4
OvertimePay                13770.85
OtherPay                   20745.27
Benefits                   38685.56
TotalPay                  166202.52
TotalPayBenefits          204888.08
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75495, dtype: object)
(75496, Id                          75497
EmployeeName          Holly  Cost
JobTitle            Nurse Midwife
BasePay                  153207.0
OvertimePay                5283.0
OtherPay                  1738.52
Benefits                 44622.91
TotalPay                160228.52
TotalPayBenefits        204851.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75496, dtype: object)
(75497, Id                                     75498
EmployeeName                    Tim P McNeil
JobTitle            Transit Power Line Sprv1
BasePay                             106041.2
OvertimePay                         51669.96
OtherPay                            10604.12
Benefits                            36528.38
TotalPay                           168315.28
TotalPayBenefits                   204843.66
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75497, dtype: object)
(75498, Id                          75499
EmployeeName        Frank R Bonal
JobTitle              Firefighter
BasePay                 116956.68
OvertimePay              14445.58
OtherPay                 30294.72
Benefits                 43107.22
TotalPay                161696.98
TotalPayBenefits         204804.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75498, dtype: object)
(75499, Id                           75500
EmployeeName        Heidi M Bohler
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               26454.72
OtherPay                  19587.44
Benefits                  41784.35
TotalPay                 162998.87
TotalPayBenefits         204783.22
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75499, dtype: object)
(75500, Id                              75501
EmployeeName        Michael P Orlando
JobTitle                  Firefighter
BasePay                     116956.69
OvertimePay                  26156.63
OtherPay                     20252.38
Benefits                     41406.58
TotalPay                     163365.7
TotalPayBenefits            204772.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75500, dtype: object)
(75501, Id                             75502
EmployeeName        Mario C Flaviani
JobTitle                 Firefighter
BasePay                     116404.7
OvertimePay                  28431.0
OtherPay                    18801.64
Benefits                    41123.36
TotalPay                   163637.34
TotalPayBenefits            204760.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75501, dtype: object)
(75502, Id                              75503
EmployeeName        Rufina B Hipolito
JobTitle             Registered Nurse
BasePay                     142425.01
OvertimePay                   7121.25
OtherPay                     10756.81
Benefits                     44442.06
TotalPay                    160303.07
TotalPayBenefits            204745.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75502, dtype: object)
(75503, Id                             75504
EmployeeName         Michael V Roxas
JobTitle            Registered Nurse
BasePay                    129872.69
OvertimePay                   4332.6
OtherPay                    23491.38
Benefits                    47045.26
TotalPay                   157696.67
TotalPayBenefits           204741.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75503, dtype: object)
(75504, Id                                75505
EmployeeName              David E Smith
JobTitle            Clinical Pharmacist
BasePay                        156503.0
OvertimePay                     2610.75
OtherPay                         114.14
Benefits                        45513.9
TotalPay                      159227.89
TotalPayBenefits              204741.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75504, dtype: object)
(75505, Id                                      75506
EmployeeName                   Jacque  Wilson
JobTitle            Attorney (Civil/Criminal)
BasePay                             158565.54
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44924.47
TotalPay                            159815.54
TotalPayBenefits                    204740.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75505, dtype: object)
(75506, Id                               75507
EmployeeName        Gregory M McCarthy
JobTitle                      Engineer
BasePay                      152524.98
OvertimePay                        0.0
OtherPay                        7614.7
Benefits                      44595.85
TotalPay                     160139.68
TotalPayBenefits             204735.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75506, dtype: object)
(75507, Id                             75508
EmployeeName        Michael D Nelson
JobTitle                  Sergeant 3
BasePay                    143289.15
OvertimePay                 14700.89
OtherPay                      5623.9
Benefits                    41097.27
TotalPay                   163613.94
TotalPayBenefits           204711.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75507, dtype: object)
(75508, Id                            75509
EmployeeName        Rachel A Marcic
JobTitle                Firefighter
BasePay                   112070.22
OvertimePay                38619.82
OtherPay                   14915.78
Benefits                   39061.39
TotalPay                  165605.82
TotalPayBenefits          204667.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75508, dtype: object)
(75509, Id                                        75510
EmployeeName                          San C Gee
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            54051.79
OtherPay                                 8968.5
Benefits                               36125.96
TotalPay                              168533.79
TotalPayBenefits                      204659.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75509, dtype: object)
(75510, Id                                       75511
EmployeeName                     Cheong L Yuen
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                6666.2
Benefits                              44698.36
TotalPay                              159957.7
TotalPayBenefits                     204656.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75510, dtype: object)
(75511, Id                                75512
EmployeeName        Anthony M Winnicker
JobTitle             Mayoral Staff XVII
BasePay                       151742.05
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       52905.21
TotalPay                      151742.05
TotalPayBenefits              204647.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75511, dtype: object)
(75512, Id                              75513
EmployeeName        Audrey R Lawrence
JobTitle                   Manager IV
BasePay                     151333.53
OvertimePay                       0.0
OtherPay                      1554.23
Benefits                      51723.7
TotalPay                    152887.76
TotalPayBenefits            204611.46
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75512, dtype: object)
(75513, Id                             75514
EmployeeName         Lizelle  Cuenco
JobTitle            Registered Nurse
BasePay                    133159.31
OvertimePay                   8190.6
OtherPay                    19688.47
Benefits                    43546.91
TotalPay                   161038.38
TotalPayBenefits           204585.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75513, dtype: object)
(75514, Id                             75515
EmployeeName        Louis W Ferrigno
JobTitle              Deputy Sheriff
BasePay                      91334.4
OvertimePay                 70701.16
OtherPay                     9473.33
Benefits                     33056.7
TotalPay                   171508.89
TotalPayBenefits           204565.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75514, dtype: object)
(75515, Id                                 75516
EmployeeName         Darrin L Martindale
JobTitle            Sheriff's Lieutenant
BasePay                        130651.57
OvertimePay                     11752.57
OtherPay                        19777.24
Benefits                        42358.05
TotalPay                       162181.38
TotalPayBenefits               204539.43
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75515, dtype: object)
(75516, Id                            75517
EmployeeName        Mary K Dunnigan
JobTitle                 Sergeant 3
BasePay                   143289.02
OvertimePay                 4761.79
OtherPay                   14062.79
Benefits                   42419.13
TotalPay                   162113.6
TotalPayBenefits          204532.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75516, dtype: object)
(75517, Id                            75518
EmployeeName        Timothy  Brophy
JobTitle                Inspector 3
BasePay                    74895.05
OvertimePay                13611.65
OtherPay                   94898.39
Benefits                   21124.17
TotalPay                  183405.09
TotalPayBenefits          204529.26
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75517, dtype: object)
(75518, Id                            75519
EmployeeName         Michael D Patt
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                11600.17
OtherPay                   11171.52
Benefits                    42067.4
TotalPay                  162415.69
TotalPayBenefits          204483.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75518, dtype: object)
(75519, Id                              75520
EmployeeName        Nancie B Guillory
JobTitle             Police Officer 3
BasePay                     123471.18
OvertimePay                  41173.19
OtherPay                      2787.41
Benefits                      37040.2
TotalPay                    167431.78
TotalPayBenefits            204471.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75519, dtype: object)
(75520, Id                                         75521
EmployeeName                        John F Chung
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.44
OvertimePay                               8457.9
OtherPay                                16376.82
Benefits                                44944.96
TotalPay                               159502.16
TotalPayBenefits                       204447.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75520, dtype: object)
(75521, Id                               75522
EmployeeName        Kathleen  Flanagan
JobTitle                 Nurse Manager
BasePay                      159926.96
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      44511.05
TotalPay                     159926.96
TotalPayBenefits             204438.01
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75521, dtype: object)
(75522, Id                          75523
EmployeeName        Craig M Louie
JobTitle              Firefighter
BasePay                 115893.47
OvertimePay               25788.9
OtherPay                 21242.69
Benefits                 41489.42
TotalPay                162925.06
TotalPayBenefits        204414.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75522, dtype: object)
(75523, Id                                        75524
EmployeeName                 Elisabeth J Filiss
JobTitle            Captain, Emergency Med Svcs
BasePay                                149024.4
OvertimePay                                 0.0
OtherPay                                11674.2
Benefits                               43683.99
TotalPay                               160698.6
TotalPayBenefits                      204382.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75523, dtype: object)
(75524, Id                           75525
EmployeeName        Mario A Romero
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               26559.92
OtherPay                   19169.3
Benefits                   41696.1
TotalPay                 162685.92
TotalPayBenefits         204382.02
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75524, dtype: object)
(75525, Id                                        75526
EmployeeName                     Allen  Barlaan
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            54891.07
OtherPay                                7770.33
Benefits                               36200.07
TotalPay                               168174.9
TotalPayBenefits                      204374.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75525, dtype: object)
(75526, Id                              75527
EmployeeName        Michael R Robison
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  45731.62
OtherPay                       948.95
Benefits                     36600.63
TotalPay                    167748.57
TotalPayBenefits             204349.2
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75526, dtype: object)
(75527, Id                                75528
EmployeeName            Justin  Quintal
JobTitle            Clinical Pharmacist
BasePay                       154089.01
OvertimePay                     2375.54
OtherPay                        2396.95
Benefits                       45482.87
TotalPay                       158861.5
TotalPayBenefits              204344.37
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75527, dtype: object)
(75528, Id                           75529
EmployeeName        Mark W Pandori
JobTitle                Manager IV
BasePay                  134957.86
OvertimePay                    0.0
OtherPay                  17775.49
Benefits                  51589.32
TotalPay                 152733.35
TotalPayBenefits         204322.67
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75528, dtype: object)
(75529, Id                            75530
EmployeeName        Denise M Sasaki
JobTitle                 Pharmacist
BasePay                   144571.01
OvertimePay                 1716.83
OtherPay                   13964.79
Benefits                   44049.06
TotalPay                  160252.63
TotalPayBenefits          204301.69
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75529, dtype: object)
(75530, Id                          75531
EmployeeName          Chia Yu  Ma
JobTitle               Manager IV
BasePay                 149652.86
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                 51590.65
TotalPay                152652.86
TotalPayBenefits        204243.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75530, dtype: object)
(75531, Id                             75532
EmployeeName        Steven G Haskell
JobTitle                  Sergeant 3
BasePay                    143289.25
OvertimePay                   7574.9
OtherPay                    11965.54
Benefits                     41392.1
TotalPay                   162829.69
TotalPayBenefits           204221.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75531, dtype: object)
(75532, Id                                      75533
EmployeeName                 Brian F Crossman
JobTitle            Attorney (Civil/Criminal)
BasePay                              156817.5
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                              46135.8
TotalPay                             158067.0
TotalPayBenefits                     204202.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75532, dtype: object)
(75533, Id                             75534
EmployeeName        Thomas J Johnson
JobTitle                  Sergeant 3
BasePay                    143289.15
OvertimePay                  6637.91
OtherPay                    13080.65
Benefits                    41190.35
TotalPay                   163007.71
TotalPayBenefits           204198.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75533, dtype: object)
(75534, Id                                75535
EmployeeName        Hemalatha  Nekkanti
JobTitle            IS Project Director
BasePay                       150631.05
OvertimePay                         0.0
OtherPay                       10644.24
Benefits                       42916.13
TotalPay                      161275.29
TotalPayBenefits              204191.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75534, dtype: object)
(75535, Id                             75536
EmployeeName        Serafin  Estrada
JobTitle            Registered Nurse
BasePay                    142392.03
OvertimePay                  5877.68
OtherPay                     9024.84
Benefits                    46891.54
TotalPay                   157294.55
TotalPayBenefits           204186.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75535, dtype: object)
(75536, Id                                       75537
EmployeeName                       Frank W Lau
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.56
OvertimePay                                0.0
OtherPay                               6257.77
Benefits                              44624.56
TotalPay                             159549.33
TotalPayBenefits                     204173.89
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75536, dtype: object)
(75537, Id                              75538
EmployeeName        Joycelyn  Peralta
JobTitle                Nurse Manager
BasePay                     150186.47
OvertimePay                       0.0
OtherPay                     11862.27
Benefits                     42094.21
TotalPay                    162048.74
TotalPayBenefits            204142.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75537, dtype: object)
(75538, Id                               75539
EmployeeName             Mary K Howard
JobTitle            Mayoral Staff XVII
BasePay                      152593.83
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      51546.82
TotalPay                     152593.83
TotalPayBenefits             204140.65
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75538, dtype: object)
(75539, Id                                      75540
EmployeeName                   Hansjuerg  Enz
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                           7625.91
OtherPay                              16174.3
Benefits                             45163.03
TotalPay                            158944.48
TotalPayBenefits                    204107.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75539, dtype: object)
(75540, Id                                        75541
EmployeeName                  Antonio R Huggins
JobTitle            Electr Maint Tech Asst Sprv
BasePay                               114062.04
OvertimePay                            54215.75
OtherPay                                  36.09
Benefits                               35785.03
TotalPay                              168313.88
TotalPayBenefits                      204098.91
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75540, dtype: object)
(75541, Id                            75542
EmployeeName          Warren J Cole
JobTitle            Manager IV, MTA
BasePay                   150657.52
OvertimePay                     0.0
OtherPay                    1892.68
Benefits                   51497.39
TotalPay                   152550.2
TotalPayBenefits          204047.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75541, dtype: object)
(75542, Id                              75543
EmployeeName        Charles A Bonnici
JobTitle             Police Officer 3
BasePay                     123471.09
OvertimePay                  28364.21
OtherPay                     13811.27
Benefits                     38366.64
TotalPay                    165646.57
TotalPayBenefits            204013.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75542, dtype: object)
(75543, Id                             75544
EmployeeName         Jesse C Heredia
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                 35385.37
OtherPay                     8124.95
Benefits                    37025.18
TotalPay                   166981.44
TotalPayBenefits           204006.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75543, dtype: object)
(75544, Id                                75545
EmployeeName           Margaret M Moran
JobTitle            Public Health Nurse
BasePay                       142425.02
OvertimePay                         0.0
OtherPay                       13867.96
Benefits                       47697.96
TotalPay                      156292.98
TotalPayBenefits              203990.94
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75544, dtype: object)
(75545, Id                                75546
EmployeeName        Thomas C McWilliams
JobTitle               Police Officer 3
BasePay                       123471.18
OvertimePay                    35021.03
OtherPay                        8421.49
Benefits                       37055.22
TotalPay                       166913.7
TotalPayBenefits              203968.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75545, dtype: object)
(75546, Id                                         75547
EmployeeName                  Robert P Zlatunich
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                              7427.81
OtherPay                                16833.58
Benefits                                45037.79
TotalPay                                158928.9
TotalPayBenefits                       203966.69
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75546, dtype: object)
(75547, Id                              75548
EmployeeName        Maureen T Leonard
JobTitle                   Sergeant 3
BasePay                     141484.05
OvertimePay                   15278.3
OtherPay                       6412.8
Benefits                      40768.0
TotalPay                    163175.15
TotalPayBenefits            203943.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75547, dtype: object)
(75548, Id                          75549
EmployeeName        Wendy H Iwata
JobTitle              Manager III
BasePay                 152347.94
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  51581.0
TotalPay                152347.94
TotalPayBenefits        203928.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75548, dtype: object)
(75549, Id                                        75550
EmployeeName                      Victor C Siao
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            53403.09
OtherPay                                8887.44
Benefits                               36119.42
TotalPay                              167804.03
TotalPayBenefits                      203923.45
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75549, dtype: object)
(75550, Id                                       75551
EmployeeName                      Andrew  Shum
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                               6026.37
Benefits                              44583.51
TotalPay                             159317.87
TotalPayBenefits                     203901.38
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75550, dtype: object)
(75551, Id                           75552
EmployeeName        Susan M Nangle
JobTitle                Sergeant 3
BasePay                  143289.18
OvertimePay                6326.91
OtherPay                  12943.87
Benefits                  41305.78
TotalPay                 162559.96
TotalPayBenefits         203865.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75551, dtype: object)
(75552, Id                           75553
EmployeeName        Faiva S Afeaki
JobTitle            Deputy Sheriff
BasePay                   94605.24
OvertimePay                58449.3
OtherPay                  15136.37
Benefits                  35669.01
TotalPay                 168190.91
TotalPayBenefits         203859.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75552, dtype: object)
(75553, Id                            75554
EmployeeName        John  St. Croix
JobTitle                Dept Head I
BasePay                   149890.42
OvertimePay                     0.0
OtherPay                     2500.0
Benefits                    51454.2
TotalPay                  152390.42
TotalPayBenefits          203844.62
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75553, dtype: object)
(75554, Id                              75555
EmployeeName        Raycardo A Aviles
JobTitle                  Firefighter
BasePay                     101371.36
OvertimePay                  51991.08
OtherPay                     14817.29
Benefits                     35641.27
TotalPay                    168179.73
TotalPayBenefits             203821.0
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75554, dtype: object)
(75555, Id                            75556
EmployeeName        Alan R Marshall
JobTitle                  Manager V
BasePay                   152743.29
OvertimePay                     0.0
OtherPay                    1804.94
Benefits                   49253.94
TotalPay                  154548.23
TotalPayBenefits          203802.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75555, dtype: object)
(75556, Id                           75557
EmployeeName        Gregory F Neal
JobTitle            Police Officer
BasePay                   116478.0
OvertimePay               43945.62
OtherPay                   7621.99
Benefits                  35732.23
TotalPay                 168045.61
TotalPayBenefits         203777.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75556, dtype: object)
(75557, Id                             75558
EmployeeName        Chuck I Watanabe
JobTitle                 Firefighter
BasePay                     116956.7
OvertimePay                 25776.99
OtherPay                    19431.44
Benefits                    41612.46
TotalPay                   162165.13
TotalPayBenefits           203777.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75557, dtype: object)
(75558, Id                                  75559
EmployeeName                 Samson  Chan
JobTitle            Assistant Inspector 3
BasePay                         141759.52
OvertimePay                      11065.56
OtherPay                           9955.4
Benefits                         40988.86
TotalPay                        162780.48
TotalPayBenefits                203769.34
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75558, dtype: object)
(75559, Id                             75560
EmployeeName         Michael J White
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 29043.29
OtherPay                     8142.75
Benefits                    38010.03
TotalPay                   165742.04
TotalPayBenefits           203752.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75559, dtype: object)
(75560, Id                          75561
EmployeeName            Kin W Gee
JobTitle               Manager IV
BasePay                 152694.51
OvertimePay                   0.0
OtherPay                    767.6
Benefits                 50261.64
TotalPay                153462.11
TotalPayBenefits        203723.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75560, dtype: object)
(75561, Id                             75562
EmployeeName             Perry P Law
JobTitle            Train Controller
BasePay                    108219.62
OvertimePay                 51153.18
OtherPay                     7604.09
Benefits                    36713.49
TotalPay                   166976.89
TotalPayBenefits           203690.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75561, dtype: object)
(75562, Id                                        75563
EmployeeName                          Joe  Tong
JobTitle            Electronic Maintenance Tech
BasePay                               105509.23
OvertimePay                            49825.76
OtherPay                               11688.21
Benefits                                36641.6
TotalPay                               167023.2
TotalPayBenefits                       203664.8
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75562, dtype: object)
(75563, Id                             75564
EmployeeName         Iheoma P Anoruo
JobTitle            Registered Nurse
BasePay                    142425.02
OvertimePay                  5538.75
OtherPay                     8940.24
Benefits                    46755.87
TotalPay                   156904.01
TotalPayBenefits           203659.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75563, dtype: object)
(75564, Id                             75565
EmployeeName         Brian F Nannery
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 32705.62
OtherPay                     4126.65
Benefits                    38258.42
TotalPay                   165388.27
TotalPayBenefits           203646.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75564, dtype: object)
(75565, Id                                       75566
EmployeeName                       Jane M Wang
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.54
OvertimePay                                0.0
OtherPay                               5805.04
Benefits                               44536.9
TotalPay                             159096.58
TotalPayBenefits                     203633.48
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75565, dtype: object)
(75566, Id                              75567
EmployeeName        Ronald E Reynolds
JobTitle                  Inspector 3
BasePay                      74298.11
OvertimePay                   6084.64
OtherPay                    102702.45
Benefits                     20517.94
TotalPay                     183085.2
TotalPayBenefits            203603.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75566, dtype: object)
(75567, Id                                      75568
EmployeeName                  Douglas C Welch
JobTitle            Attorney (Civil/Criminal)
BasePay                             157585.92
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44731.01
TotalPay                            158835.92
TotalPayBenefits                    203566.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75567, dtype: object)
(75568, Id                                         75569
EmployeeName                    Dean J Whittaker
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.96
OvertimePay                              5238.43
OtherPay                                16987.98
Benefits                                 45434.3
TotalPay                               158129.37
TotalPayBenefits                       203563.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75568, dtype: object)
(75569, Id                             75570
EmployeeName            Anh V Nguyen
JobTitle            Police Officer 2
BasePay                    111570.95
OvertimePay                  50513.6
OtherPay                     4800.54
Benefits                    36672.97
TotalPay                   166885.09
TotalPayBenefits           203558.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75569, dtype: object)
(75570, Id                          75571
EmployeeName        Darren W Choy
JobTitle               Sergeant 3
BasePay                  143289.1
OvertimePay               5847.93
OtherPay                 12452.96
Benefits                 41937.32
TotalPay                161589.99
TotalPayBenefits        203527.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75570, dtype: object)
(75571, Id                               75572
EmployeeName        Christine E Falvey
JobTitle            Mayoral Staff XVII
BasePay                      151987.78
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      51531.73
TotalPay                     151987.78
TotalPayBenefits             203519.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75571, dtype: object)
(75572, Id                               75573
EmployeeName         Kimberly A Pelish
JobTitle            Nurse Practitioner
BasePay                      154646.51
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      48618.92
TotalPay                     154896.51
TotalPayBenefits             203515.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75572, dtype: object)
(75573, Id                                75574
EmployeeName        Howard D Weathersby
JobTitle                     Sergeant 3
BasePay                       143289.15
OvertimePay                    10932.41
OtherPay                        7874.06
Benefits                       41414.35
TotalPay                      162095.62
TotalPayBenefits              203509.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75573, dtype: object)
(75574, Id                                       75575
EmployeeName                 Antonio T Lansang
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.55
OvertimePay                                0.0
OtherPay                               5693.92
Benefits                              44521.96
TotalPay                             158985.47
TotalPayBenefits                     203507.43
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75574, dtype: object)
(75575, Id                                       75576
EmployeeName               Joseph F Carlevaris
JobTitle            Bldgs & Grounds Maint Supt
BasePay                              114249.04
OvertimePay                            4551.65
OtherPay                              47555.02
Benefits                              37131.56
TotalPay                             166355.71
TotalPayBenefits                     203487.27
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75575, dtype: object)
(75576, Id                          75577
EmployeeName           Kevin  Lee
JobTitle               Sergeant 3
BasePay                  129343.1
OvertimePay               11789.8
OtherPay                 24060.81
Benefits                 38256.14
TotalPay                165193.71
TotalPayBenefits        203449.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75576, dtype: object)
(75577, Id                          75578
EmployeeName         Warren K Der
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              28969.86
OtherPay                 17637.34
Benefits                 40946.44
TotalPay                162500.65
TotalPayBenefits        203447.09
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75577, dtype: object)
(75578, Id                              75579
EmployeeName        William A Morales
JobTitle                   Sergeant 3
BasePay                     143289.08
OvertimePay                   3653.64
OtherPay                     15446.69
Benefits                      41052.4
TotalPay                    162389.41
TotalPayBenefits            203441.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75578, dtype: object)
(75579, Id                           75580
EmployeeName        Mary K Minogue
JobTitle               Firefighter
BasePay                  115893.46
OvertimePay               26813.19
OtherPay                  19652.21
Benefits                  41044.35
TotalPay                 162358.86
TotalPayBenefits         203403.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75579, dtype: object)
(75580, Id                           75581
EmployeeName        Stephen  Moran
JobTitle               Firefighter
BasePay                  116398.04
OvertimePay               27316.45
OtherPay                  18558.03
Benefits                  41125.86
TotalPay                 162272.52
TotalPayBenefits         203398.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75580, dtype: object)
(75581, Id                           75582
EmployeeName        Joshua E Parks
JobTitle               Firefighter
BasePay                  110553.32
OvertimePay               37147.12
OtherPay                  16758.95
Benefits                   38894.4
TotalPay                 164459.39
TotalPayBenefits         203353.79
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75581, dtype: object)
(75582, Id                             75583
EmployeeName           Eric R Tapang
JobTitle            Police Officer 3
BasePay                    123471.19
OvertimePay                 39172.46
OtherPay                     3589.48
Benefits                    37055.21
TotalPay                   166233.13
TotalPayBenefits           203288.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75582, dtype: object)
(75583, Id                                      75584
EmployeeName               Louise Raye  Ogden
JobTitle            Attorney (Civil/Criminal)
BasePay                             156174.06
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             45816.68
TotalPay                            157424.06
TotalPayBenefits                    203240.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75583, dtype: object)
(75584, Id                             75585
EmployeeName         Socrates  Sison
JobTitle            Registered Nurse
BasePay                    126283.51
OvertimePay                  9236.24
OtherPay                    22794.86
Benefits                    44881.18
TotalPay                   158314.61
TotalPayBenefits           203195.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75584, dtype: object)
(75585, Id                             75586
EmployeeName        Matthew D Hansen
JobTitle                   Manager V
BasePay                    152007.25
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    51182.48
TotalPay                   152007.25
TotalPayBenefits           203189.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75585, dtype: object)
(75586, Id                                      75587
EmployeeName               Alexander D Lilien
JobTitle            Attorney (Civil/Criminal)
BasePay                             157260.81
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44671.66
TotalPay                            158510.81
TotalPayBenefits                    203182.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75586, dtype: object)
(75587, Id                             75588
EmployeeName         Anthony B Gomes
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 16612.84
OtherPay                    25981.77
Benefits                    37047.83
TotalPay                   166065.61
TotalPayBenefits           203113.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75587, dtype: object)
(75588, Id                             75589
EmployeeName         Alec P Cardenas
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 32218.02
OtherPay                     3769.33
Benefits                    38542.89
TotalPay                   164543.35
TotalPayBenefits           203086.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75588, dtype: object)
(75589, Id                           75590
EmployeeName        Sean P Perdomo
JobTitle                Sergeant 3
BasePay                  129343.08
OvertimePay               20137.42
OtherPay                  15365.51
Benefits                  38218.44
TotalPay                 164846.01
TotalPayBenefits         203064.45
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75589, dtype: object)
(75590, Id                                75591
EmployeeName        Christopher M Dunne
JobTitle               Police Officer 3
BasePay                        123242.4
OvertimePay                     30608.8
OtherPay                       12171.12
Benefits                       36989.79
TotalPay                      166022.32
TotalPayBenefits              203012.11
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75590, dtype: object)
(75591, Id                             75592
EmployeeName        Sanjay S Shastri
JobTitle            Police Officer 3
BasePay                    123471.17
OvertimePay                 38365.02
OtherPay                      4150.4
Benefits                    37025.18
TotalPay                   165986.59
TotalPayBenefits           203011.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75591, dtype: object)
(75592, Id                           75593
EmployeeName         Percy L Grant
JobTitle            Deputy Sheriff
BasePay                   95126.55
OvertimePay               58522.25
OtherPay                  13791.67
Benefits                  35568.57
TotalPay                 167440.47
TotalPayBenefits         203009.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75592, dtype: object)
(75593, Id                               75594
EmployeeName         Janis B Mandac-Dy
JobTitle            Nurse Practitioner
BasePay                      155367.08
OvertimePay                        0.0
OtherPay                        1100.0
Benefits                      46520.35
TotalPay                     156467.08
TotalPayBenefits             202987.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75593, dtype: object)
(75594, Id                             75595
EmployeeName         Marilou A Dario
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  5222.28
OtherPay                    16104.01
Benefits                    39232.07
TotalPay                   163751.29
TotalPayBenefits           202983.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75594, dtype: object)
(75595, Id                            75596
EmployeeName        Michael D Clark
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                 25434.5
OtherPay                   19173.73
Benefits                   41406.59
TotalPay                  161564.94
TotalPayBenefits          202971.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75595, dtype: object)
(75596, Id                              75597
EmployeeName        Fateeha M Shariff
JobTitle                   Pharmacist
BasePay                     144885.57
OvertimePay                   2690.34
OtherPay                     11683.54
Benefits                     43706.59
TotalPay                    159259.45
TotalPayBenefits            202966.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75596, dtype: object)
(75597, Id                             75598
EmployeeName           Ralph  Kugler
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                 16225.11
OtherPay                    24860.24
Benefits                    38389.91
TotalPay                   164556.51
TotalPayBenefits           202946.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75597, dtype: object)
(75598, Id                              75599
EmployeeName        Emmanuel  Bulatao
JobTitle             Registered Nurse
BasePay                     133079.26
OvertimePay                   3369.32
OtherPay                     22316.85
Benefits                     44154.47
TotalPay                    158765.43
TotalPayBenefits             202919.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75598, dtype: object)
(75599, Id                             75600
EmployeeName          Eugenio  Obina
JobTitle            Registered Nurse
BasePay                    125861.51
OvertimePay                 13108.39
OtherPay                    19550.79
Benefits                     44387.4
TotalPay                   158520.69
TotalPayBenefits           202908.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75599, dtype: object)
(75600, Id                            75601
EmployeeName        David E Russell
JobTitle                Firefighter
BasePay                   115893.44
OvertimePay                28237.36
OtherPay                   17926.22
Benefits                   40834.11
TotalPay                  162057.02
TotalPayBenefits          202891.13
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75600, dtype: object)
(75601, Id                              75602
EmployeeName        Trace K McCulloch
JobTitle                  Firefighter
BasePay                     115468.16
OvertimePay                  22954.01
OtherPay                     22767.72
Benefits                      41698.5
TotalPay                    161189.89
TotalPayBenefits            202888.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75601, dtype: object)
(75602, Id                                       75603
EmployeeName                       Sam W Young
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                               5173.42
Benefits                              44415.81
TotalPay                             158464.94
TotalPayBenefits                     202880.75
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75602, dtype: object)
(75603, Id                          75604
EmployeeName        Donyale  Hoye
JobTitle              Firefighter
BasePay                 117142.82
OvertimePay              29649.48
OtherPay                 15536.35
Benefits                 40539.81
TotalPay                162328.65
TotalPayBenefits        202868.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75603, dtype: object)
(75604, Id                             75605
EmployeeName        Sonia M Curameng
JobTitle            Registered Nurse
BasePay                    125795.57
OvertimePay                 11723.71
OtherPay                    23852.86
Benefits                     41491.1
TotalPay                   161372.14
TotalPayBenefits           202863.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75604, dtype: object)
(75605, Id                                  75606
EmployeeName               James L Aragon
JobTitle            Senior Deputy Sheriff
BasePay                          105428.7
OvertimePay                      52283.04
OtherPay                          9605.03
Benefits                         35533.38
TotalPay                        167316.77
TotalPayBenefits                202850.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75605, dtype: object)
(75606, Id                             75607
EmployeeName        Joseph M Salazar
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 27080.84
OtherPay                    15238.94
Benefits                    37049.38
TotalPay                   165790.79
TotalPayBenefits           202840.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75606, dtype: object)
(75607, Id                             75608
EmployeeName            Troy P Peele
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 38332.87
OtherPay                     3968.19
Benefits                    37055.22
TotalPay                   165772.17
TotalPayBenefits           202827.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75607, dtype: object)
(75608, Id                            75609
EmployeeName        Nicholas A Yuen
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                24437.74
OtherPay                   19922.75
Benefits                   41508.37
TotalPay                   161317.2
TotalPayBenefits          202825.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75608, dtype: object)
(75609, Id                              75610
EmployeeName        Anthony J Breslin
JobTitle                     Engineer
BasePay                     155420.04
OvertimePay                       0.0
OtherPay                       2803.0
Benefits                     44572.79
TotalPay                    158223.04
TotalPayBenefits            202795.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75609, dtype: object)
(75610, Id                                       75611
EmployeeName                 Chung Shing  Tang
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                               5102.13
Benefits                              44401.21
TotalPay                             158393.65
TotalPayBenefits                     202794.86
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75610, dtype: object)
(75611, Id                          75612
EmployeeName            Dien X Ha
JobTitle               Sergeant 3
BasePay                 143289.15
OvertimePay              10180.74
OtherPay                  8509.73
Benefits                 40811.64
TotalPay                161979.62
TotalPayBenefits        202791.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75611, dtype: object)
(75612, Id                                         75613
EmployeeName                      Theresa E Kwan
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.51
OvertimePay                              4045.14
OtherPay                                18882.01
Benefits                                45190.81
TotalPay                               157594.66
TotalPayBenefits                       202785.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75612, dtype: object)
(75613, Id                              75614
EmployeeName        Kevin G Stancombe
JobTitle                   Sergeant 3
BasePay                     132833.71
OvertimePay                   11916.0
OtherPay                     19120.13
Benefits                     38872.85
TotalPay                    163869.84
TotalPayBenefits            202742.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75613, dtype: object)
(75614, Id                                      75615
EmployeeName                  Na'il  Benjamin
JobTitle            Attorney (Civil/Criminal)
BasePay                             155687.94
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             45801.02
TotalPay                            156937.44
TotalPayBenefits                    202738.46
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75614, dtype: object)
(75615, Id                                75616
EmployeeName        Raymond P Poydessus
JobTitle                Insp, Fire Dept
BasePay                        139644.0
OvertimePay                    13157.55
OtherPay                        8378.64
Benefits                       41539.01
TotalPay                      161180.19
TotalPayBenefits               202719.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75615, dtype: object)
(75616, Id                           75617
EmployeeName        Steven  Strong
JobTitle               Firefighter
BasePay                  115057.48
OvertimePay               19749.21
OtherPay                  26730.06
Benefits                  41181.61
TotalPay                 161536.75
TotalPayBenefits         202718.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75616, dtype: object)
(75617, Id                                     75618
EmployeeName              David G Summerhill
JobTitle            Transit Power Line Sprv1
BasePay                             106041.2
OvertimePay                         51437.87
OtherPay                             9014.47
Benefits                            36220.36
TotalPay                           166493.54
TotalPayBenefits                    202713.9
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75617, dtype: object)
(75618, Id                              75619
EmployeeName        Stephen J Gritsch
JobTitle               Police Officer
BasePay                     116478.02
OvertimePay                   34429.5
OtherPay                     16044.25
Benefits                     35732.23
TotalPay                    166951.77
TotalPayBenefits             202684.0
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75618, dtype: object)
(75619, Id                             75620
EmployeeName           Ruby S Martin
JobTitle            Registered Nurse
BasePay                     132675.5
OvertimePay                  4569.47
OtherPay                    19134.01
Benefits                    46284.48
TotalPay                   156378.98
TotalPayBenefits           202663.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75619, dtype: object)
(75620, Id                            75621
EmployeeName        John F Peterson
JobTitle                Inspector 3
BasePay                    143289.1
OvertimePay                11578.02
OtherPay                    6402.78
Benefits                   41385.62
TotalPay                   161269.9
TotalPayBenefits          202655.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75620, dtype: object)
(75621, Id                          75622
EmployeeName        John R Keesor
JobTitle               Sergeant 3
BasePay                 129228.78
OvertimePay              14947.32
OtherPay                 20248.02
Benefits                 38215.52
TotalPay                164424.12
TotalPayBenefits        202639.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75621, dtype: object)
(75622, Id                               75623
EmployeeName           Joseph M Garcia
JobTitle            Plumbing Inspector
BasePay                      110296.57
OvertimePay                   11973.32
OtherPay                      42851.87
Benefits                      37510.82
TotalPay                     165121.76
TotalPayBenefits             202632.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75622, dtype: object)
(75623, Id                                75624
EmployeeName        Sean S Matsubayashi
JobTitle                    Firefighter
BasePay                       116956.72
OvertimePay                    24656.09
OtherPay                       19572.48
Benefits                       41406.59
TotalPay                      161185.29
TotalPayBenefits              202591.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75623, dtype: object)
(75624, Id                                75625
EmployeeName          Jeanette M Cavano
JobTitle            Clinical Pharmacist
BasePay                        158530.9
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       44050.92
TotalPay                       158530.9
TotalPayBenefits              202581.82
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75624, dtype: object)
(75625, Id                                75626
EmployeeName        Carolino F Munsayac
JobTitle               Registered Nurse
BasePay                        126090.0
OvertimePay                      5884.2
OtherPay                        25902.9
Benefits                       44665.42
TotalPay                       157877.1
TotalPayBenefits              202542.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75625, dtype: object)
(75626, Id                            75627
EmployeeName        Rachel A Murphy
JobTitle                 Sergeant 3
BasePay                   143289.16
OvertimePay                10628.52
OtherPay                    7787.41
Benefits                   40831.23
TotalPay                  161705.09
TotalPayBenefits          202536.32
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75626, dtype: object)
(75627, Id                                      75628
EmployeeName                 Carmen M Aguirre
JobTitle            Attorney (Civil/Criminal)
BasePay                              156697.1
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44581.36
TotalPay                             157947.1
TotalPayBenefits                    202528.46
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75627, dtype: object)
(75628, Id                                         75629
EmployeeName                 Anthony A Garibaldi
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                              3928.82
OtherPay                                17185.09
Benefits                                45510.63
TotalPay                               157016.86
TotalPayBenefits                       202527.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75628, dtype: object)
(75629, Id                             75630
EmployeeName        Gliceria A Reyes
JobTitle            Registered Nurse
BasePay                     133948.1
OvertimePay                  9732.39
OtherPay                    21473.94
Benefits                    37330.99
TotalPay                   165154.43
TotalPayBenefits           202485.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75629, dtype: object)
(75630, Id                             75631
EmployeeName           Fely E Jamili
JobTitle            Registered Nurse
BasePay                     132063.0
OvertimePay                  4021.05
OtherPay                    19673.33
Benefits                    46696.42
TotalPay                   155757.38
TotalPayBenefits            202453.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75630, dtype: object)
(75631, Id                           75632
EmployeeName        Gail M Readdie
JobTitle               Firefighter
BasePay                  102003.46
OvertimePay               50877.28
OtherPay                   10559.1
Benefits                  39003.18
TotalPay                 163439.84
TotalPayBenefits         202443.02
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75631, dtype: object)
(75632, Id                             75633
EmployeeName        Anthony L Ravano
JobTitle                  Sergeant 2
BasePay                     130532.0
OvertimePay                 20864.75
OtherPay                    12316.98
Benefits                    38727.31
TotalPay                   163713.73
TotalPayBenefits           202441.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75632, dtype: object)
(75633, Id                                 75634
EmployeeName        Holly Marie  Stoumen
JobTitle                Police Officer 3
BasePay                        123471.02
OvertimePay                     39933.76
OtherPay                         1979.96
Benefits                         37055.2
TotalPay                       165384.74
TotalPayBenefits               202439.94
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75633, dtype: object)
(75634, Id                            75635
EmployeeName              Daisy  Yu
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                12746.37
OtherPay                    8378.64
Benefits                   41653.87
TotalPay                  160769.01
TotalPayBenefits          202422.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75634, dtype: object)
(75635, Id                          75636
EmployeeName         Omar J Bueno
JobTitle               Sergeant 3
BasePay                 143134.64
OvertimePay               7916.85
OtherPay                  9849.58
Benefits                 41519.25
TotalPay                160901.07
TotalPayBenefits        202420.32
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75635, dtype: object)
(75636, Id                             75637
EmployeeName        Peter D Hamilton
JobTitle                  Sergeant 2
BasePay                    129474.17
OvertimePay                 12337.85
OtherPay                    22232.42
Benefits                    38359.16
TotalPay                   164044.44
TotalPayBenefits            202403.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75636, dtype: object)
(75637, Id                              75638
EmployeeName        Cecilia  Bautista
JobTitle             Registered Nurse
BasePay                      142425.0
OvertimePay                    7912.5
OtherPay                      6065.64
Benefits                     45985.88
TotalPay                    156403.14
TotalPayBenefits            202389.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75637, dtype: object)
(75638, Id                                      75639
EmployeeName                      Mark  Nicco
JobTitle            Attorney (Civil/Criminal)
BasePay                              156231.2
OvertimePay                               0.0
OtherPay                                937.5
Benefits                             45213.46
TotalPay                             157168.7
TotalPayBenefits                    202382.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75638, dtype: object)
(75639, Id                           75640
EmployeeName        Willa H Ortega
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               25454.74
OtherPay                  18603.14
Benefits                  41308.67
TotalPay                 161014.59
TotalPayBenefits         202323.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75639, dtype: object)
(75640, Id                            75641
EmployeeName        Michael  Niland
JobTitle                Inspector 3
BasePay                    74298.04
OvertimePay                 3098.43
OtherPay                  102713.23
Benefits                   22206.67
TotalPay                   180109.7
TotalPayBenefits          202316.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75640, dtype: object)
(75641, Id                                      75642
EmployeeName                    Andrew N Shen
JobTitle            Attorney (Civil/Criminal)
BasePay                             156531.51
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44507.53
TotalPay                            157781.01
TotalPayBenefits                    202288.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75641, dtype: object)
(75642, Id                                      75643
EmployeeName                  Sabine O Balden
JobTitle            EMT/Paramedic/Firefighter
BasePay                              124140.8
OvertimePay                               0.0
OtherPay                             40716.65
Benefits                              37418.0
TotalPay                            164857.45
TotalPayBenefits                    202275.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75642, dtype: object)
(75643, Id                               75644
EmployeeName        Matthew  MacKenzie
JobTitle              Police Officer 3
BasePay                      123471.16
OvertimePay                   37371.83
OtherPay                       4373.71
Benefits                      37055.22
TotalPay                      165216.7
TotalPayBenefits             202271.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75643, dtype: object)
(75644, Id                                  75645
EmployeeName           Stephen J Senatori
JobTitle            IS Engineer-Principal
BasePay                          139889.0
OvertimePay                           0.0
OtherPay                         21526.41
Benefits                         40856.19
TotalPay                        161415.41
TotalPayBenefits                 202271.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75644, dtype: object)
(75645, Id                                         75646
EmployeeName                        Herman J Woo
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                              3928.82
OtherPay                                16987.99
Benefits                                45434.32
TotalPay                               156819.76
TotalPayBenefits                       202254.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75645, dtype: object)
(75646, Id                                         75647
EmployeeName                      James T Kotter
JobTitle            Lieutenant, Fire Suppression
BasePay                                118506.85
OvertimePay                              19282.2
OtherPay                                21897.22
Benefits                                42540.24
TotalPay                               159686.27
TotalPayBenefits                       202226.51
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75646, dtype: object)
(75647, Id                                          75648
EmployeeName                Theresa J San Giacomo
JobTitle            Sergeant, (Police Department)
BasePay                                 133898.54
OvertimePay                               9198.07
OtherPay                                 19586.69
Benefits                                 39529.02
TotalPay                                 162683.3
TotalPayBenefits                        202212.32
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75647, dtype: object)
(75648, Id                               75649
EmployeeName             Erik L Morris
JobTitle            Transit Supervisor
BasePay                        82098.4
OvertimePay                   80850.26
OtherPay                       7036.22
Benefits                      32220.82
TotalPay                     169984.88
TotalPayBenefits              202205.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75648, dtype: object)
(75649, Id                                      75650
EmployeeName                  Heidi J Gewertz
JobTitle            Attorney (Civil/Criminal)
BasePay                             155993.29
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44935.76
TotalPay                            157242.79
TotalPayBenefits                    202178.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75649, dtype: object)
(75650, Id                              75651
EmployeeName        William S O'Brien
JobTitle                   Sergeant 2
BasePay                      140724.0
OvertimePay                   6793.02
OtherPay                     14151.09
Benefits                     40510.05
TotalPay                    161668.11
TotalPayBenefits            202178.16
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75650, dtype: object)
(75651, Id                                75652
EmployeeName        Jaime B Flores-Lovo
JobTitle                     Manager VI
BasePay                       129322.02
OvertimePay                         0.0
OtherPay                        31005.0
Benefits                        41839.7
TotalPay                      160327.02
TotalPayBenefits              202166.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75651, dtype: object)
(75652, Id                                       75653
EmployeeName               Christopher R Nocon
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.58
OvertimePay                                0.0
OtherPay                               4550.36
Benefits                               44284.1
TotalPay                             157841.94
TotalPayBenefits                     202126.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75652, dtype: object)
(75653, Id                                      75654
EmployeeName                   Timothy G Howe
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134380.48
OvertimePay                           8790.51
OtherPay                             14775.55
Benefits                             44172.14
TotalPay                            157946.54
TotalPayBenefits                    202118.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75653, dtype: object)
(75654, Id                             75655
EmployeeName        Anne F Mackenzie
JobTitle                 Inspector 3
BasePay                    143289.03
OvertimePay                  8652.21
OtherPay                     8827.22
Benefits                    41346.31
TotalPay                   160768.46
TotalPayBenefits           202114.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75654, dtype: object)
(75655, Id                            75656
EmployeeName        Richard A Ernst
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                 7240.86
OtherPay                   10251.12
Benefits                   41295.16
TotalPay                  160781.09
TotalPayBenefits          202076.25
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75655, dtype: object)
(75656, Id                             75657
EmployeeName            Delos C Putz
JobTitle            Police Officer 3
BasePay                    128556.01
OvertimePay                 25460.96
OtherPay                    10000.94
Benefits                    38010.02
TotalPay                   164017.91
TotalPayBenefits           202027.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75656, dtype: object)
(75657, Id                          75658
EmployeeName        Miles C Young
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              22809.18
OtherPay                 21329.33
Benefits                 40902.85
TotalPay                161095.21
TotalPayBenefits        201998.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75657, dtype: object)
(75658, Id                                75659
EmployeeName                Dan F Mauer
JobTitle            Landscape Architect
BasePay                       157763.02
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        44209.5
TotalPay                      157763.02
TotalPayBenefits              201972.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75658, dtype: object)
(75659, Id                          75660
EmployeeName            Joe K Lui
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              23410.94
OtherPay                 21084.55
Benefits                 41577.38
TotalPay                160388.94
TotalPayBenefits        201966.32
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75659, dtype: object)
(75660, Id                               75661
EmployeeName             Ralf  Burgert
JobTitle            Nurse Practitioner
BasePay                      150220.81
OvertimePay                     1728.0
OtherPay                       1829.98
Benefits                       48172.1
TotalPay                     153778.79
TotalPayBenefits             201950.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75660, dtype: object)
(75661, Id                             75662
EmployeeName          Ryan P Doherty
JobTitle            Police Officer 2
BasePay                     117158.1
OvertimePay                 34021.55
OtherPay                    14888.39
Benefits                    35864.98
TotalPay                   166068.04
TotalPayBenefits           201933.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75661, dtype: object)
(75662, Id                          75663
EmployeeName          Kevin  Shea
JobTitle              Firefighter
BasePay                 116034.39
OvertimePay              28039.99
OtherPay                 17425.46
Benefits                  40408.4
TotalPay                161499.84
TotalPayBenefits        201908.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75662, dtype: object)
(75663, Id                                         75664
EmployeeName                      Patricia F Lee
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.43
OvertimePay                              15551.6
OtherPay                                 8265.85
Benefits                                43415.59
TotalPay                               158484.88
TotalPayBenefits                       201900.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75663, dtype: object)
(75664, Id                          75665
EmployeeName         Charlie K Ng
JobTitle               Sergeant 2
BasePay                  126892.0
OvertimePay              10067.27
OtherPay                 26963.25
Benefits                  37964.1
TotalPay                163922.52
TotalPayBenefits        201886.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75664, dtype: object)
(75665, Id                             75666
EmployeeName        Deanna J DeSedas
JobTitle              Manager V, MTA
BasePay                    145064.69
OvertimePay                      0.0
OtherPay                     5719.62
Benefits                    51082.69
TotalPay                   150784.31
TotalPayBenefits            201867.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75665, dtype: object)
(75666, Id                          75667
EmployeeName          Karen K Liu
JobTitle            Nurse Manager
BasePay                 152883.61
OvertimePay                   0.0
OtherPay                  4806.08
Benefits                 44170.65
TotalPay                157689.69
TotalPayBenefits        201860.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75666, dtype: object)
(75667, Id                                      75668
EmployeeName                   Paul  Mangiola
JobTitle            EMT/Paramedic/Firefighter
BasePay                             130592.84
OvertimePay                          11612.15
OtherPay                              15911.2
Benefits                             43739.36
TotalPay                            158116.19
TotalPayBenefits                    201855.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75667, dtype: object)
(75668, Id                             75669
EmployeeName        Luke R Michaelis
JobTitle                 Firefighter
BasePay                     116956.7
OvertimePay                 32173.35
OtherPay                    12521.64
Benefits                    40192.41
TotalPay                   161651.69
TotalPayBenefits            201844.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75668, dtype: object)
(75669, Id                             75670
EmployeeName           Richard  Ruiz
JobTitle            Police Officer 3
BasePay                    123471.19
OvertimePay                 35583.71
OtherPay                     5709.39
Benefits                     37040.2
TotalPay                   164764.29
TotalPayBenefits           201804.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75669, dtype: object)
(75670, Id                                       75671
EmployeeName                 Bijan  Ahmadzadeh
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               156456.7
OvertimePay                                0.0
OtherPay                                1130.4
Benefits                              44186.16
TotalPay                              157587.1
TotalPayBenefits                     201773.26
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75670, dtype: object)
(75671, Id                               75672
EmployeeName        Robert L Walker Jr
JobTitle                    Sergeant 3
BasePay                      143289.15
OvertimePay                    5626.25
OtherPay                      11808.94
Benefits                      41037.14
TotalPay                     160724.34
TotalPayBenefits             201761.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75671, dtype: object)
(75672, Id                             75673
EmployeeName        Timothy K Yee Jr
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 30896.36
OtherPay                    10129.22
Benefits                    37251.86
TotalPay                   164496.62
TotalPayBenefits           201748.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75672, dtype: object)
(75673, Id                                      75674
EmployeeName                     Dennis  Chow
JobTitle            Attorney (Civil/Criminal)
BasePay                             156131.17
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                              44316.1
TotalPay                            157381.17
TotalPayBenefits                    201697.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75673, dtype: object)
(75674, Id                               75675
EmployeeName                 Leon  Kuo
JobTitle            Transit Supervisor
BasePay                       91110.31
OvertimePay                   70956.32
OtherPay                       6534.51
Benefits                      33041.51
TotalPay                     168601.14
TotalPayBenefits             201642.65
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75674, dtype: object)
(75675, Id                          75676
EmployeeName          Raymond  Ng
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              23908.31
OtherPay                 19359.79
Benefits                 41406.59
TotalPay                 160224.8
TotalPayBenefits        201631.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75675, dtype: object)
(75676, Id                          75677
EmployeeName        Sean E Visser
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              23907.87
OtherPay                 19315.43
Benefits                 41406.59
TotalPay                160180.01
TotalPayBenefits         201586.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75676, dtype: object)
(75677, Id                                      75678
EmployeeName                   Joshua S White
JobTitle            Attorney (Civil/Criminal)
BasePay                             155958.84
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44372.16
TotalPay                            157208.34
TotalPayBenefits                     201580.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75677, dtype: object)
(75678, Id                              75679
EmployeeName        Martin D Halloran
JobTitle                  Inspector 3
BasePay                     143289.03
OvertimePay                   5381.47
OtherPay                     11545.23
Benefits                     41353.78
TotalPay                    160215.73
TotalPayBenefits            201569.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75678, dtype: object)
(75679, Id                           75680
EmployeeName         Daniel  Saenz
JobTitle            Deputy Sheriff
BasePay                   95126.53
OvertimePay                60584.7
OtherPay                  11606.32
Benefits                  34199.11
TotalPay                 167317.55
TotalPayBenefits         201516.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75679, dtype: object)
(75680, Id                              75681
EmployeeName           Gigi M Whitley
JobTitle            Mayoral Staff XVI
BasePay                     150362.61
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     51134.11
TotalPay                    150362.61
TotalPayBenefits            201496.72
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75680, dtype: object)
(75681, Id                              75682
EmployeeName        Raymond A Padmore
JobTitle             Police Officer 3
BasePay                     115209.03
OvertimePay                  45564.38
OtherPay                      3517.42
Benefits                      37135.0
TotalPay                    164290.83
TotalPayBenefits            201425.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75681, dtype: object)
(75682, Id                                      75683
EmployeeName                  Alicia  Cabrera
JobTitle            Attorney (Civil/Criminal)
BasePay                             155816.54
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44358.68
TotalPay                            157066.04
TotalPayBenefits                    201424.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75682, dtype: object)
(75683, Id                                      75684
EmployeeName              Francesca R Gessner
JobTitle            Attorney (Civil/Criminal)
BasePay                             155816.53
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             44358.68
TotalPay                            157066.03
TotalPayBenefits                    201424.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75683, dtype: object)
(75684, Id                             75685
EmployeeName        Timothy F Fowlie
JobTitle                  Sergeant 2
BasePay                    140724.01
OvertimePay                  7249.99
OtherPay                    12953.36
Benefits                    40450.69
TotalPay                   160927.36
TotalPayBenefits           201378.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75684, dtype: object)
(75685, Id                                75686
EmployeeName               Julie W Shih
JobTitle            Clinical Pharmacist
BasePay                        154089.0
OvertimePay                     2140.12
OtherPay                         121.27
Benefits                       45023.05
TotalPay                      156350.39
TotalPayBenefits              201373.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75685, dtype: object)
(75686, Id                               75687
EmployeeName        Anthony L Manfreda
JobTitle                    Sergeant 3
BasePay                      143819.93
OvertimePay                    4198.73
OtherPay                      11408.82
Benefits                      41935.87
TotalPay                     159427.48
TotalPayBenefits             201363.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75686, dtype: object)
(75687, Id                             75688
EmployeeName          Roger D Peters
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 32236.11
OtherPay                     8630.52
Benefits                    37025.18
TotalPay                   164337.74
TotalPayBenefits           201362.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75687, dtype: object)
(75688, Id                                       75689
EmployeeName               Mohammed D Kohgadai
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.54
OvertimePay                                0.0
OtherPay                               3885.93
Benefits                              44165.46
TotalPay                             157177.47
TotalPayBenefits                     201342.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75688, dtype: object)
(75689, Id                              75690
EmployeeName        Rosalyn J Stovall
JobTitle             Registered Nurse
BasePay                     137637.12
OvertimePay                   3316.15
OtherPay                     15017.78
Benefits                      45364.0
TotalPay                    155971.05
TotalPayBenefits            201335.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75689, dtype: object)
(75690, Id                                         75691
EmployeeName                      Michael  Barry
JobTitle            Lieutenant, Fire Suppression
BasePay                                135856.69
OvertimePay                              4671.66
OtherPay                                17497.98
Benefits                                43261.35
TotalPay                               158026.33
TotalPayBenefits                       201287.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75690, dtype: object)
(75691, Id                          75692
EmployeeName        Ava J Garrick
JobTitle               Sergeant 3
BasePay                 143289.16
OvertimePay               8504.38
OtherPay                  7649.16
Benefits                  41841.5
TotalPay                 159442.7
TotalPayBenefits         201284.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75691, dtype: object)
(75692, Id                             75693
EmployeeName        Dale C Winniford
JobTitle                 Firefighter
BasePay                    106245.78
OvertimePay                 36678.89
OtherPay                    17162.72
Benefits                    41162.43
TotalPay                   160087.39
TotalPayBenefits           201249.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75692, dtype: object)
(75693, Id                                75694
EmployeeName            Wayne D Parinas
JobTitle            Court Administrator
BasePay                        144061.5
OvertimePay                         0.0
OtherPay                        7128.63
Benefits                       50035.92
TotalPay                      151190.13
TotalPayBenefits              201226.05
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75693, dtype: object)
(75694, Id                                      75695
EmployeeName                   Charles  Daley
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.22
OvertimePay                            3906.9
OtherPay                             16893.01
Benefits                             45272.99
TotalPay                            155944.13
TotalPayBenefits                    201217.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75694, dtype: object)
(75695, Id                             75696
EmployeeName        Yong Chao  Zhang
JobTitle            Registered Nurse
BasePay                    136677.26
OvertimePay                  9188.65
OtherPay                    14407.43
Benefits                    40935.64
TotalPay                   160273.34
TotalPayBenefits           201208.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75695, dtype: object)
(75696, Id                             75697
EmployeeName         Rodrigo C Conel
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  3481.52
OtherPay                    12728.31
Benefits                    42565.62
TotalPay                   158634.83
TotalPayBenefits           201200.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75696, dtype: object)
(75697, Id                             75698
EmployeeName          Patrick T Faye
JobTitle            Police Officer 2
BasePay                    115670.28
OvertimePay                 30712.92
OtherPay                    17548.81
Benefits                    37211.23
TotalPay                   163932.01
TotalPayBenefits           201143.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75697, dtype: object)
(75698, Id                                      75699
EmployeeName                    Dennis G Gama
JobTitle            EMT/Paramedic/Firefighter
BasePay                             111775.82
OvertimePay                          43512.81
OtherPay                              9313.02
Benefits                             36531.42
TotalPay                            164601.65
TotalPayBenefits                    201133.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75698, dtype: object)
(75699, Id                                      75700
EmployeeName                 Timothy  Tiernan
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.63
OvertimePay                           5552.68
OtherPay                             16753.23
Benefits                             44880.27
TotalPay                            156221.54
TotalPayBenefits                    201101.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75699, dtype: object)
(75700, Id                                75701
EmployeeName        Christina E Johnson
JobTitle               Police Officer 2
BasePay                        121068.0
OvertimePay                    34183.48
OtherPay                        9241.44
Benefits                       36571.11
TotalPay                      164492.92
TotalPayBenefits              201064.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75700, dtype: object)
(75701, Id                                      75702
EmployeeName                Stephen  Marcotte
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.68
OvertimePay                            6030.3
OtherPay                             17013.93
Benefits                             44100.14
TotalPay                            156959.91
TotalPayBenefits                    201060.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75701, dtype: object)
(75702, Id                             75703
EmployeeName         Rosie L Legaspi
JobTitle            Registered Nurse
BasePay                    133280.12
OvertimePay                  6092.66
OtherPay                    16496.84
Benefits                    45182.33
TotalPay                   155869.62
TotalPayBenefits           201051.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75702, dtype: object)
(75703, Id                             75704
EmployeeName          Steven G Zukor
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 24716.63
OtherPay                     8632.04
Benefits                    39097.91
TotalPay                   161904.67
TotalPayBenefits           201002.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75703, dtype: object)
(75704, Id                          75705
EmployeeName            Mary  Hao
JobTitle              Manager III
BasePay                 144887.24
OvertimePay                   0.0
OtherPay                   5000.0
Benefits                 51093.97
TotalPay                149887.24
TotalPayBenefits        200981.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75704, dtype: object)
(75705, Id                             75706
EmployeeName           Martin  Garay
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 32422.26
OtherPay                    10861.34
Benefits                    36600.58
TotalPay                    164351.6
TotalPayBenefits           200952.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75705, dtype: object)
(75706, Id                           75707
EmployeeName        Jody R Jimenez
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               26337.87
OtherPay                  17493.86
Benefits                  40145.93
TotalPay                 160788.43
TotalPayBenefits         200934.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75706, dtype: object)
(75707, Id                                75708
EmployeeName             Curtis J Geier
JobTitle            Clinical Pharmacist
BasePay                        140632.6
OvertimePay                     4579.83
OtherPay                       11977.28
Benefits                       43735.75
TotalPay                      157189.71
TotalPayBenefits              200925.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75707, dtype: object)
(75708, Id                           75709
EmployeeName        John J Fogarty
JobTitle               Firefighter
BasePay                  116956.69
OvertimePay               28403.13
OtherPay                  14896.01
Benefits                  40658.13
TotalPay                 160255.83
TotalPayBenefits         200913.96
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75708, dtype: object)
(75709, Id                          75710
EmployeeName          Ruth C Wang
JobTitle            Nurse Manager
BasePay                 152972.01
OvertimePay                   0.0
OtherPay                  2868.44
Benefits                 45068.63
TotalPay                155840.45
TotalPayBenefits        200909.08
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75709, dtype: object)
(75710, Id                                         75711
EmployeeName                      Trinh T Nguyen
JobTitle            Engineer/Architect Principal
BasePay                                155215.56
OvertimePay                                  0.0
OtherPay                                 1555.17
Benefits                                44136.93
TotalPay                               156770.73
TotalPayBenefits                       200907.66
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75710, dtype: object)
(75711, Id                          75712
EmployeeName         Norman  Wong
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              23160.06
OtherPay                 19332.06
Benefits                 41445.96
TotalPay                159448.83
TotalPayBenefits        200894.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75711, dtype: object)
(75712, Id                          75713
EmployeeName         Allen K Wong
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              24083.23
OtherPay                 18447.12
Benefits                 41406.59
TotalPay                159487.07
TotalPayBenefits        200893.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75712, dtype: object)
(75713, Id                            75714
EmployeeName        Philip A Papale
JobTitle             Police Officer
BasePay                   118571.03
OvertimePay                41166.68
OtherPay                    4870.08
Benefits                    36276.7
TotalPay                  164607.79
TotalPayBenefits          200884.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75713, dtype: object)
(75714, Id                          75715
EmployeeName        Sanjai D Nath
JobTitle                Manager V
BasePay                 150154.38
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50703.41
TotalPay                150154.38
TotalPayBenefits        200857.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75714, dtype: object)
(75715, Id                             75716
EmployeeName        Steven M Needham
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                  30521.0
OtherPay                    12641.13
Benefits                    36615.31
TotalPay                   164230.13
TotalPayBenefits           200845.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75715, dtype: object)
(75716, Id                          75717
EmployeeName        Sidney D Laws
JobTitle              Inspector 3
BasePay                 143289.18
OvertimePay               4291.24
OtherPay                 12476.72
Benefits                 40787.04
TotalPay                160057.14
TotalPayBenefits        200844.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75716, dtype: object)
(75717, Id                              75718
EmployeeName        Paul B Mc Dermott
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  19835.66
OtherPay                     21891.33
Benefits                     42156.95
TotalPay                     158683.7
TotalPayBenefits            200840.65
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75717, dtype: object)
(75718, Id                             75719
EmployeeName          George D Perez
JobTitle            Police Officer 3
BasePay                    123471.13
OvertimePay                 25405.16
OtherPay                    14907.48
Benefits                    37055.22
TotalPay                   163783.77
TotalPayBenefits           200838.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75718, dtype: object)
(75719, Id                                    75720
EmployeeName                Alan K De Bella
JobTitle            Fire Safety Inspector 2
BasePay                           139126.81
OvertimePay                         11101.7
OtherPay                             8347.6
Benefits                           42251.65
TotalPay                          158576.11
TotalPayBenefits                  200827.76
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75719, dtype: object)
(75720, Id                           75721
EmployeeName         Sarah M James
JobTitle            Deputy Sheriff
BasePay                   95126.53
OvertimePay               62009.27
OtherPay                   9093.92
Benefits                   34586.9
TotalPay                 166229.72
TotalPayBenefits         200816.62
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75720, dtype: object)
(75721, Id                              75722
EmployeeName        Noreen C Dunleavy
JobTitle             Registered Nurse
BasePay                     141633.89
OvertimePay                   1018.73
OtherPay                     11210.29
Benefits                     46948.08
TotalPay                    153862.91
TotalPayBenefits            200810.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75721, dtype: object)
(75722, Id                             75723
EmployeeName              Hank A Lum
JobTitle            Police Officer 3
BasePay                    123471.13
OvertimePay                 36207.11
OtherPay                     4016.46
Benefits                    37055.22
TotalPay                    163694.7
TotalPayBenefits           200749.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75722, dtype: object)
(75723, Id                          75724
EmployeeName         Frank A Patt
JobTitle              Manager III
BasePay                 149719.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50978.28
TotalPay                149719.09
TotalPayBenefits        200697.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75723, dtype: object)
(75724, Id                             75725
EmployeeName        Timothy A Dalton
JobTitle                  Sergeant 3
BasePay                    143289.07
OvertimePay                  7574.95
OtherPay                     9018.67
Benefits                     40804.4
TotalPay                   159882.69
TotalPayBenefits           200687.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75724, dtype: object)
(75725, Id                          75726
EmployeeName        David M Curto
JobTitle               Manager IV
BasePay                 147634.11
OvertimePay                   0.0
OtherPay                   2000.0
Benefits                 51044.93
TotalPay                149634.11
TotalPayBenefits        200679.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75725, dtype: object)
(75726, Id                              75727
EmployeeName        Patrick B Higgins
JobTitle              Insp, Fire Dept
BasePay                      139644.0
OvertimePay                  11101.69
OtherPay                      8378.64
Benefits                     41539.01
TotalPay                    159124.33
TotalPayBenefits            200663.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75726, dtype: object)
(75727, Id                               75728
EmployeeName        Matthew P Sullivan
JobTitle              Police Officer 2
BasePay                      118464.05
OvertimePay                   25941.78
OtherPay                      20109.91
Benefits                      36133.65
TotalPay                     164515.74
TotalPayBenefits             200649.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75727, dtype: object)
(75728, Id                                 75729
EmployeeName              John A Ramirez
JobTitle            Sheriff's Lieutenant
BasePay                        131415.05
OvertimePay                     13373.45
OtherPay                        14845.82
Benefits                        41008.61
TotalPay                       159634.32
TotalPayBenefits               200642.93
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75728, dtype: object)
(75729, Id                                           75730
EmployeeName                       Steven M Ponder
JobTitle            Manager,Employee Relations Div
BasePay                                  146702.35
OvertimePay                                    0.0
OtherPay                                    2927.9
Benefits                                  51011.61
TotalPay                                 149630.25
TotalPayBenefits                         200641.86
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 75729, dtype: object)
(75730, Id                               75731
EmployeeName        Dante  Giovannelli
JobTitle                Police Officer
BasePay                       116478.1
OvertimePay                   47529.88
OtherPay                        868.02
Benefits                      35732.23
TotalPay                      164876.0
TotalPayBenefits             200608.23
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75730, dtype: object)
(75731, Id                                      75732
EmployeeName                     Jon  Sargent
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.23
OvertimePay                           4022.08
OtherPay                             16254.14
Benefits                             45159.87
TotalPay                            155420.45
TotalPayBenefits                    200580.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75731, dtype: object)
(75732, Id                               75733
EmployeeName        Donald W McCarrell
JobTitle              Registered Nurse
BasePay                      121453.38
OvertimePay                   14425.99
OtherPay                      22873.37
Benefits                      41813.15
TotalPay                     158752.74
TotalPayBenefits             200565.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75732, dtype: object)
(75733, Id                           75734
EmployeeName        Heath L Stoyer
JobTitle                Pharmacist
BasePay                  146303.46
OvertimePay                 3362.9
OtherPay                   7622.89
Benefits                  43261.98
TotalPay                 157289.25
TotalPayBenefits         200551.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75733, dtype: object)
(75734, Id                          75735
EmployeeName        Vickie  Wells
JobTitle               Manager IV
BasePay                 149554.15
OvertimePay                   0.0
OtherPay                    27.57
Benefits                  50952.4
TotalPay                149581.72
TotalPayBenefits        200534.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75734, dtype: object)
(75735, Id                            75736
EmployeeName        Garret K Lucier
JobTitle                Firefighter
BasePay                   105512.24
OvertimePay                44510.18
OtherPay                    13658.5
Benefits                   36823.15
TotalPay                  163680.92
TotalPayBenefits          200504.07
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75735, dtype: object)
(75736, Id                                        75737
EmployeeName                   Gregory E Hansen
JobTitle            Power Generation Supervisor
BasePay                               129096.35
OvertimePay                            23296.41
OtherPay                                6652.26
Benefits                               41450.66
TotalPay                              159045.02
TotalPayBenefits                      200495.68
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75736, dtype: object)
(75737, Id                                75738
EmployeeName           Kristin L Harter
JobTitle            Clinical Pharmacist
BasePay                        140244.9
OvertimePay                    10481.45
OtherPay                         7093.7
Benefits                       42674.28
TotalPay                      157820.05
TotalPayBenefits              200494.33
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75737, dtype: object)
(75738, Id                                          75739
EmployeeName                      Kenneth L Payne
JobTitle            Chief Water Service Inspector
BasePay                                  126937.0
OvertimePay                               9650.34
OtherPay                                 23880.78
Benefits                                 40002.49
TotalPay                                160468.12
TotalPayBenefits                        200470.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75738, dtype: object)
(75739, Id                                75740
EmployeeName        William M Robertson
JobTitle                Manager VI, MTA
BasePay                       148158.86
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       52290.18
TotalPay                      148158.86
TotalPayBenefits              200449.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75739, dtype: object)
(75740, Id                                 75741
EmployeeName          Roderick V Wallace
JobTitle            Sheriff's Lieutenant
BasePay                        131415.05
OvertimePay                     10724.23
OtherPay                        16798.97
Benefits                        41495.01
TotalPay                       158938.25
TotalPayBenefits               200433.26
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75740, dtype: object)
(75741, Id                                       75742
EmployeeName                  Shailen N Talati
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              151921.84
OvertimePay                                0.0
OtherPay                               4606.17
Benefits                               43891.9
TotalPay                             156528.01
TotalPayBenefits                     200419.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75741, dtype: object)
(75742, Id                              75743
EmployeeName        Alicia A Castillo
JobTitle                   Sergeant 3
BasePay                      143289.2
OvertimePay                  13333.86
OtherPay                      3007.03
Benefits                     40787.05
TotalPay                    159630.09
TotalPayBenefits            200417.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75742, dtype: object)
(75743, Id                              75744
EmployeeName        Myrna P Mangaccat
JobTitle             Registered Nurse
BasePay                     140578.76
OvertimePay                   9112.58
OtherPay                      5367.76
Benefits                     45346.33
TotalPay                     155059.1
TotalPayBenefits            200405.43
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75743, dtype: object)
(75744, Id                               75745
EmployeeName        Kevin P Brugaletta
JobTitle              Police Officer 2
BasePay                       121068.0
OvertimePay                   25348.58
OtherPay                      17395.85
Benefits                      36571.12
TotalPay                     163812.43
TotalPayBenefits             200383.55
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75744, dtype: object)
(75745, Id                          75746
EmployeeName        David P Parry
JobTitle               Sergeant 3
BasePay                 142555.13
OvertimePay               4712.18
OtherPay                 12249.15
Benefits                  40854.6
TotalPay                159516.46
TotalPayBenefits        200371.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75745, dtype: object)
(75746, Id                          75747
EmployeeName        Laura C Attia
JobTitle              Firefighter
BasePay                 112034.36
OvertimePay              30424.52
OtherPay                  18297.3
Benefits                 39614.52
TotalPay                160756.18
TotalPayBenefits         200370.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75746, dtype: object)
(75747, Id                              75748
EmployeeName        Stephen M Coleman
JobTitle             Police Officer 3
BasePay                     123471.15
OvertimePay                  28297.76
OtherPay                     11536.77
Benefits                      37040.2
TotalPay                    163305.68
TotalPayBenefits            200345.88
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75747, dtype: object)
(75748, Id                            75749
EmployeeName        Marilyn  Barton
JobTitle                Firefighter
BasePay                   102968.37
OvertimePay                49889.77
OtherPay                   10245.25
Benefits                   37208.27
TotalPay                  163103.39
TotalPayBenefits          200311.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75748, dtype: object)
(75749, Id                             75750
EmployeeName            Kirk C Bozin
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 34249.27
OtherPay                     5518.44
Benefits                    37070.03
TotalPay                   163238.73
TotalPayBenefits           200308.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75749, dtype: object)
(75750, Id                              75751
EmployeeName        Humberto  Pilarte
JobTitle                  Firefighter
BasePay                     116805.18
OvertimePay                  23479.03
OtherPay                     18763.14
Benefits                     41255.34
TotalPay                    159047.35
TotalPayBenefits            200302.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75750, dtype: object)
(75751, Id                            75752
EmployeeName        Jeffrey  Joslin
JobTitle                 Dep Dir II
BasePay                    148144.2
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   52158.47
TotalPay                   148144.2
TotalPayBenefits          200302.67
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75751, dtype: object)
(75752, Id                          75753
EmployeeName        David  Kamita
JobTitle              Inspector 3
BasePay                 143289.02
OvertimePay               6500.54
OtherPay                  8369.63
Benefits                 42140.18
TotalPay                158159.19
TotalPayBenefits        200299.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75752, dtype: object)
(75753, Id                             75754
EmployeeName         Philip C Helmer
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 35447.94
OtherPay                     4319.59
Benefits                     37055.1
TotalPay                   163238.54
TotalPayBenefits           200293.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75753, dtype: object)
(75754, Id                                75755
EmployeeName        Cecilia F Crisologo
JobTitle               Registered Nurse
BasePay                        138213.0
OvertimePay                     4223.15
OtherPay                        14424.8
Benefits                       43427.28
TotalPay                      156860.95
TotalPayBenefits              200288.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75754, dtype: object)
(75755, Id                             75756
EmployeeName        Michelle D McCoy
JobTitle                 Firefighter
BasePay                    116956.68
OvertimePay                 22793.55
OtherPay                    19108.16
Benefits                    41406.57
TotalPay                   158858.39
TotalPayBenefits           200264.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75755, dtype: object)
(75756, Id                                75757
EmployeeName             Martin K Taras
JobTitle            IS Project Director
BasePay                       156245.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       44011.66
TotalPay                      156245.52
TotalPayBenefits              200257.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75756, dtype: object)
(75757, Id                                 75758
EmployeeName        Cynthia B Gaabucayan
JobTitle                Registered Nurse
BasePay                        141518.36
OvertimePay                      3639.75
OtherPay                         8859.64
Benefits                        46237.22
TotalPay                       154017.75
TotalPayBenefits               200254.97
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75757, dtype: object)
(75758, Id                             75759
EmployeeName        Michael R Parker
JobTitle                 Firefighter
BasePay                     116956.7
OvertimePay                 21861.59
OtherPay                    19928.71
Benefits                    41498.75
TotalPay                    158747.0
TotalPayBenefits           200245.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75758, dtype: object)
(75759, Id                           75760
EmployeeName        William A Bush
JobTitle                Sergeant 3
BasePay                  143289.13
OvertimePay                6870.73
OtherPay                   8331.18
Benefits                  41743.46
TotalPay                 158491.04
TotalPayBenefits          200234.5
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75759, dtype: object)
(75760, Id                                 75761
EmployeeName               David C Hardy
JobTitle            Sheriff's Lieutenant
BasePay                        131415.01
OvertimePay                     14063.95
OtherPay                        13900.75
Benefits                         40828.0
TotalPay                       159379.71
TotalPayBenefits               200207.71
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75760, dtype: object)
(75761, Id                             75762
EmployeeName        Sherman  Tillman
JobTitle                 Firefighter
BasePay                    117701.05
OvertimePay                  22381.0
OtherPay                    19216.97
Benefits                    40901.39
TotalPay                   159299.02
TotalPayBenefits           200200.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75761, dtype: object)
(75762, Id                          75763
EmployeeName          Ron E Meyer
JobTitle               Sergeant 3
BasePay                 141484.02
OvertimePay               8669.82
OtherPay                  8956.38
Benefits                 41061.51
TotalPay                159110.22
TotalPayBenefits        200171.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75762, dtype: object)
(75763, Id                           75764
EmployeeName        Gillian  Smith
JobTitle               Firefighter
BasePay                  115893.44
OvertimePay               25631.17
OtherPay                   17708.2
Benefits                  40932.01
TotalPay                 159232.81
TotalPayBenefits         200164.82
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75763, dtype: object)
(75764, Id                                      75765
EmployeeName                    Joel T Newton
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.22
OvertimePay                           7542.48
OtherPay                             12979.99
Benefits                             44477.86
TotalPay                            155666.69
TotalPayBenefits                    200144.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75764, dtype: object)
(75765, Id                           75766
EmployeeName        Rachel  Ezirim
JobTitle                Sergeant 3
BasePay                  143289.09
OvertimePay               10533.16
OtherPay                   5092.08
Benefits                  41226.12
TotalPay                 158914.33
TotalPayBenefits         200140.45
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75765, dtype: object)
(75766, Id                             75767
EmployeeName           Alvaro R Mora
JobTitle            Police Officer 2
BasePay                    115814.53
OvertimePay                 34899.96
OtherPay                    13207.54
Benefits                    36213.29
TotalPay                   163922.03
TotalPayBenefits           200135.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75766, dtype: object)
(75767, Id                                      75768
EmployeeName           Aleem Ullah Khan  Raja
JobTitle            Attorney (Civil/Criminal)
BasePay                              154714.5
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44166.93
TotalPay                             155964.5
TotalPayBenefits                    200131.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75767, dtype: object)
(75768, Id                           75769
EmployeeName        Phillip K Wong
JobTitle               Inspector 3
BasePay                   68991.04
OvertimePay                2160.12
OtherPay                 109447.54
Benefits                  19519.45
TotalPay                  180598.7
TotalPayBenefits         200118.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75768, dtype: object)
(75769, Id                             75770
EmployeeName             Moli  Finau
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 38720.95
OtherPay                     3714.05
Benefits                    36600.57
TotalPay                    163503.0
TotalPayBenefits           200103.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75769, dtype: object)
(75770, Id                              75771
EmployeeName        Andrew J Birkhoff
JobTitle                  Firefighter
BasePay                      115165.6
OvertimePay                  21294.53
OtherPay                      22829.8
Benefits                     40805.05
TotalPay                    159289.93
TotalPayBenefits            200094.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75770, dtype: object)
(75771, Id                               75772
EmployeeName        Jeffrey B Ferreira
JobTitle              Police Officer 3
BasePay                      123471.13
OvertimePay                   36385.75
OtherPay                       3175.14
Benefits                      37055.22
TotalPay                     163032.02
TotalPayBenefits             200087.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75771, dtype: object)
(75772, Id                                        75773
EmployeeName                    Eriberto T Ison
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            44194.79
OtherPay                               13381.35
Benefits                               36982.02
TotalPay                              163089.64
TotalPayBenefits                      200071.66
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75772, dtype: object)
(75773, Id                                     75774
EmployeeName                 Jesse J Hoffman
JobTitle            Electrician Supervisor 1
BasePay                            112957.42
OvertimePay                         40718.94
OtherPay                             10650.0
Benefits                            35725.64
TotalPay                           164326.36
TotalPayBenefits                    200052.0
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75773, dtype: object)
(75774, Id                           75775
EmployeeName        Joseph A Obidi
JobTitle            Police Officer
BasePay                  115572.81
OvertimePay               33722.19
OtherPay                  15180.05
Benefits                  35571.92
TotalPay                 164475.05
TotalPayBenefits         200046.97
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75774, dtype: object)
(75775, Id                           75776
EmployeeName        Daniel  Miller
JobTitle                Sergeant 3
BasePay                  143289.15
OvertimePay                9610.65
OtherPay                   5894.85
Benefits                  41212.15
TotalPay                 158794.65
TotalPayBenefits          200006.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75775, dtype: object)
(75776, Id                           75777
EmployeeName         Bryan E Lujan
JobTitle            Police Officer
BasePay                  116478.15
OvertimePay               36709.45
OtherPay                  11078.82
Benefits                  35738.14
TotalPay                 164266.42
TotalPayBenefits         200004.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75776, dtype: object)
(75777, Id                                   75778
EmployeeName        Diane A Van Der Heiden
JobTitle                       Firefighter
BasePay                           125301.2
OvertimePay                       23477.44
OtherPay                          11131.26
Benefits                          40087.76
TotalPay                          159909.9
TotalPayBenefits                 199997.66
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75777, dtype: object)
(75778, Id                                75779
EmployeeName        Alexander D Untalan
JobTitle                    Firefighter
BasePay                       113921.13
OvertimePay                    39633.35
OtherPay                        8143.79
Benefits                       38292.56
TotalPay                      161698.27
TotalPayBenefits              199990.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75778, dtype: object)
(75779, Id                                     75780
EmployeeName        Grace A Capistrano-Giron
JobTitle                    Registered Nurse
BasePay                             142097.4
OvertimePay                          8261.35
OtherPay                            10265.39
Benefits                            39356.42
TotalPay                           160624.14
TotalPayBenefits                   199980.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 75779, dtype: object)
(75780, Id                          75781
EmployeeName         Joyce D Crum
JobTitle               Manager IV
BasePay                 147495.34
OvertimePay                   0.0
OtherPay                   1500.0
Benefits                 50963.47
TotalPay                148995.34
TotalPayBenefits        199958.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75780, dtype: object)
(75781, Id                            75782
EmployeeName        Val  Altamirano
JobTitle                 Sergeant 3
BasePay                    133013.2
OvertimePay                 6182.61
OtherPay                   21703.42
Benefits                   39045.65
TotalPay                  160899.23
TotalPayBenefits          199944.88
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75781, dtype: object)
(75782, Id                             75783
EmployeeName          Yukio C Oshita
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 25164.87
OtherPay                    16892.37
Benefits                    36801.59
TotalPay                   163125.24
TotalPayBenefits           199926.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75782, dtype: object)
(75783, Id                                    75784
EmployeeName        Janeellen Gacilan  Gama
JobTitle                   Registered Nurse
BasePay                           130404.96
OvertimePay                        17562.58
OtherPay                           18219.56
Benefits                           33738.63
TotalPay                           166187.1
TotalPayBenefits                  199925.73
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75783, dtype: object)
(75784, Id                                  75785
EmployeeName                Jeffrey  Dong
JobTitle            Senior Deputy Sheriff
BasePay                         105436.51
OvertimePay                      46098.24
OtherPay                         12145.82
Benefits                          36238.0
TotalPay                        163680.57
TotalPayBenefits                199918.57
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75784, dtype: object)
(75785, Id                          75786
EmployeeName         Mary A Kucel
JobTitle              Firefighter
BasePay                 115893.44
OvertimePay              23654.49
OtherPay                 19324.37
Benefits                 41044.36
TotalPay                 158872.3
TotalPayBenefits        199916.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75785, dtype: object)
(75786, Id                          75787
EmployeeName        Anthony D Yee
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              23774.66
OtherPay                 19200.28
Benefits                 41044.37
TotalPay                 158868.4
TotalPayBenefits        199912.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75786, dtype: object)
(75787, Id                                         75788
EmployeeName                     Heather M Buren
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.47
OvertimePay                             12932.38
OtherPay                                 8901.65
Benefits                                43382.71
TotalPay                                156501.5
TotalPayBenefits                       199884.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75787, dtype: object)
(75788, Id                           75789
EmployeeName        Gideon G Price
JobTitle               Firefighter
BasePay                  116124.72
OvertimePay               25150.96
OtherPay                  17729.88
Benefits                  40877.78
TotalPay                 159005.56
TotalPayBenefits         199883.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75788, dtype: object)
(75789, Id                                      75790
EmployeeName                       Sue W Wong
JobTitle            Director, Fiscal Services
BasePay                             142960.11
OvertimePay                               0.0
OtherPay                              7096.73
Benefits                             49821.45
TotalPay                            150056.84
TotalPayBenefits                    199878.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75789, dtype: object)
(75790, Id                             75791
EmployeeName         Scott L McBride
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 32681.64
OtherPay                      9331.5
Benefits                     36782.8
TotalPay                   163081.14
TotalPayBenefits           199863.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75790, dtype: object)
(75791, Id                             75792
EmployeeName           Jordan C King
JobTitle            Police Officer 2
BasePay                     118518.0
OvertimePay                 35613.95
OtherPay                     9513.63
Benefits                    36203.69
TotalPay                   163645.58
TotalPayBenefits           199849.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75791, dtype: object)
(75792, Id                                75793
EmployeeName        Cynthia G Goldstein
JobTitle                    Dept Head I
BasePay                       148121.78
OvertimePay                         0.0
OtherPay                          769.0
Benefits                       50933.96
TotalPay                      148890.78
TotalPayBenefits              199824.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75792, dtype: object)
(75793, Id                          75794
EmployeeName          Jason M Woo
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              21726.46
OtherPay                 19723.03
Benefits                 41406.58
TotalPay                 158406.2
TotalPayBenefits        199812.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75793, dtype: object)
(75794, Id                                      75795
EmployeeName                Allison G Macbeth
JobTitle            Attorney (Civil/Criminal)
BasePay                              154442.6
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             44118.76
TotalPay                             155692.6
TotalPayBenefits                    199811.36
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75794, dtype: object)
(75795, Id                               75796
EmployeeName        Michael P Koniaris
JobTitle                    Sergeant 3
BasePay                      143289.18
OvertimePay                    9689.43
OtherPay                        5925.5
Benefits                      40906.46
TotalPay                     158904.11
TotalPayBenefits             199810.57
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75795, dtype: object)
(75796, Id                           75797
EmployeeName        Nathan M Szutu
JobTitle               Firefighter
BasePay                  115122.18
OvertimePay               24445.91
OtherPay                  19899.51
Benefits                   40320.0
TotalPay                  159467.6
TotalPayBenefits          199787.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75796, dtype: object)
(75797, Id                          75798
EmployeeName         Kim T Nguyen
JobTitle               Pharmacist
BasePay                 146728.03
OvertimePay              10220.02
OtherPay                   681.89
Benefits                 42154.47
TotalPay                157629.94
TotalPayBenefits        199784.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75797, dtype: object)
(75798, Id                                      75799
EmployeeName                 Benjamin  Franks
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.65
OvertimePay                          14596.59
OtherPay                              8034.97
Benefits                             43232.06
TotalPay                            156547.21
TotalPayBenefits                    199779.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75798, dtype: object)
(75799, Id                                      75800
EmployeeName           Christopher J Heuerman
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.65
OvertimePay                           6131.66
OtherPay                             15142.29
Benefits                             44567.88
TotalPay                             155189.6
TotalPayBenefits                    199757.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75799, dtype: object)
(75800, Id                           75801
EmployeeName        Lance H Martin
JobTitle               Firefighter
BasePay                  114830.24
OvertimePay               26010.42
OtherPay                  18346.21
Benefits                  40569.78
TotalPay                 159186.87
TotalPayBenefits         199756.65
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75800, dtype: object)
(75801, Id                                  75802
EmployeeName             Martin E Campion
JobTitle            Senior Deputy Sheriff
BasePay                          105432.6
OvertimePay                      50723.08
OtherPay                          7640.24
Benefits                         35950.17
TotalPay                        163795.92
TotalPayBenefits                199746.09
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75801, dtype: object)
(75802, Id                          75803
EmployeeName         Dana  Nelson
JobTitle            Nurse Manager
BasePay                  155936.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 43790.89
TotalPay                 155936.0
TotalPayBenefits        199726.89
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75802, dtype: object)
(75803, Id                          75804
EmployeeName         Erika I Gray
JobTitle               Pharmacist
BasePay                 138361.69
OvertimePay               1924.33
OtherPay                 15737.46
Benefits                 43696.34
TotalPay                156023.48
TotalPayBenefits        199719.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75803, dtype: object)
(75804, Id                          75805
EmployeeName         Bassey  Obot
JobTitle               Sergeant 3
BasePay                  143270.6
OvertimePay               4268.93
OtherPay                  11338.8
Benefits                 40801.25
TotalPay                158878.33
TotalPayBenefits        199679.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75804, dtype: object)
(75805, Id                             75806
EmployeeName        Ketric B Mahoney
JobTitle                 Firefighter
BasePay                    102003.45
OvertimePay                 47816.31
OtherPay                    10875.01
Benefits                    38975.74
TotalPay                   160694.77
TotalPayBenefits           199670.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75805, dtype: object)
(75806, Id                                75807
EmployeeName        Jennifer L Dudoroff
JobTitle                     Sergeant 3
BasePay                       143289.09
OvertimePay                     7674.42
OtherPay                        7302.11
Benefits                       41388.94
TotalPay                      158265.62
TotalPayBenefits              199654.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75806, dtype: object)
(75807, Id                                      75808
EmployeeName                Charles W Faciani
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.63
OvertimePay                           8814.49
OtherPay                             12852.05
Benefits                             44049.83
TotalPay                            155582.17
TotalPayBenefits                     199632.0
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75807, dtype: object)
(75808, Id                             75809
EmployeeName         Crispin S Jones
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 16983.94
OtherPay                    21958.25
Benefits                     37212.2
TotalPay                   162413.33
TotalPayBenefits           199625.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75808, dtype: object)
(75809, Id                             75810
EmployeeName        Michael P Palada
JobTitle            Police Officer 3
BasePay                    123471.08
OvertimePay                  31112.4
OtherPay                     7539.25
Benefits                     37502.6
TotalPay                   162122.73
TotalPayBenefits           199625.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75809, dtype: object)
(75810, Id                              75811
EmployeeName        Robert A Padrones
JobTitle                   Sergeant 3
BasePay                     143289.04
OvertimePay                  10344.51
OtherPay                      5181.59
Benefits                     40808.62
TotalPay                    158815.14
TotalPayBenefits            199623.76
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75810, dtype: object)
(75811, Id                                        75812
EmployeeName                       HanWin  Chou
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            46423.52
OtherPay                                11108.5
Benefits                               36534.89
TotalPay                              163045.52
TotalPayBenefits                      199580.41
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75811, dtype: object)
(75812, Id                            75813
EmployeeName        Edward J Melton
JobTitle                 Dep Dir II
BasePay                   145709.75
OvertimePay                     0.0
OtherPay                    2011.79
Benefits                   51857.86
TotalPay                  147721.54
TotalPayBenefits           199579.4
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75812, dtype: object)
(75813, Id                                    75814
EmployeeName        Armann Kenneth W Ramoso
JobTitle                   Police Officer 2
BasePay                           117763.02
OvertimePay                        27114.64
OtherPay                           18047.36
Benefits                           36619.07
TotalPay                          162925.02
TotalPayBenefits                  199544.09
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 75813, dtype: object)
(75814, Id                             75815
EmployeeName        Shawn A Phillips
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 37497.69
OtherPay                     4385.79
Benefits                    36571.14
TotalPay                   162951.48
TotalPayBenefits           199522.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75814, dtype: object)
(75815, Id                                         75816
EmployeeName                        John P Lopes
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.95
OvertimePay                              1964.41
OtherPay                                16345.54
Benefits                                45303.75
TotalPay                                154212.9
TotalPayBenefits                       199516.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75815, dtype: object)
(75816, Id                           75817
EmployeeName        Julio C Molina
JobTitle            Deputy Sheriff
BasePay                   92111.78
OvertimePay               57757.55
OtherPay                   15219.3
Benefits                  34395.57
TotalPay                 165088.63
TotalPayBenefits          199484.2
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75816, dtype: object)
(75817, Id                          75818
EmployeeName           Kevin  Tom
JobTitle              Firefighter
BasePay                 115893.44
OvertimePay              22822.59
OtherPay                 19696.53
Benefits                 41044.36
TotalPay                158412.56
TotalPayBenefits        199456.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75817, dtype: object)
(75818, Id                             75819
EmployeeName        Gerard F Padilla
JobTitle               Nurse Manager
BasePay                    141965.83
OvertimePay                      0.0
OtherPay                    15470.44
Benefits                    42013.19
TotalPay                   157436.27
TotalPayBenefits           199449.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75818, dtype: object)
(75819, Id                            75820
EmployeeName        Matthew J Scola
JobTitle                Firefighter
BasePay                   116956.69
OvertimePay                17084.08
OtherPay                   22963.05
Benefits                   42440.68
TotalPay                  157003.82
TotalPayBenefits           199444.5
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75819, dtype: object)
(75820, Id                               75821
EmployeeName        Robert J Malliaras
JobTitle              Police Officer 2
BasePay                      126153.06
OvertimePay                   28732.23
OtherPay                       6531.44
Benefits                       38020.3
TotalPay                     161416.73
TotalPayBenefits             199437.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75820, dtype: object)
(75821, Id                          75822
EmployeeName           Paul E Lee
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              21213.85
OtherPay                 19815.21
Benefits                 41451.15
TotalPay                157985.75
TotalPayBenefits         199436.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75821, dtype: object)
(75822, Id                             75823
EmployeeName         Linda R Munguia
JobTitle            Registered Nurse
BasePay                    141106.27
OvertimePay                   6330.0
OtherPay                     6551.37
Benefits                    45448.65
TotalPay                   153987.64
TotalPayBenefits           199436.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75822, dtype: object)
(75823, Id                             75824
EmployeeName        Michael A Rustia
JobTitle                 Firefighter
BasePay                    115893.45
OvertimePay                 18504.29
OtherPay                    23973.84
Benefits                    41044.35
TotalPay                   158371.58
TotalPayBenefits           199415.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75823, dtype: object)
(75824, Id                             75825
EmployeeName        Julius T Dempsky
JobTitle                  Sergeant 3
BasePay                    143289.12
OvertimePay                  4919.34
OtherPay                    10343.75
Benefits                    40830.77
TotalPay                   158552.21
TotalPayBenefits           199382.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75824, dtype: object)
(75825, Id                               75826
EmployeeName        Josephine N Borges
JobTitle                    Sergeant 3
BasePay                      144044.16
OvertimePay                    1082.13
OtherPay                      12825.52
Benefits                      41417.78
TotalPay                     157951.81
TotalPayBenefits             199369.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75825, dtype: object)
(75826, Id                                      75827
EmployeeName                      Eric R Soto
JobTitle            EMT/Paramedic/Firefighter
BasePay                              112900.0
OvertimePay                          33038.19
OtherPay                             15077.46
Benefits                             38342.98
TotalPay                            161015.65
TotalPayBenefits                    199358.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75826, dtype: object)
(75827, Id                              75828
EmployeeName        Colin J Mackenzie
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  22148.44
OtherPay                     18837.03
Benefits                     41406.58
TotalPay                     157942.2
TotalPayBenefits            199348.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75827, dtype: object)
(75828, Id                             75829
EmployeeName        Robert D Ramirez
JobTitle                 Firefighter
BasePay                    116956.72
OvertimePay                  20917.7
OtherPay                    20113.36
Benefits                    41316.19
TotalPay                   157987.78
TotalPayBenefits           199303.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75828, dtype: object)
(75829, Id                             75830
EmployeeName           Nicoh A Alday
JobTitle            Police Officer 2
BasePay                    103746.03
OvertimePay                 49667.02
OtherPay                    10215.61
Benefits                    35669.07
TotalPay                   163628.66
TotalPayBenefits           199297.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75829, dtype: object)
(75830, Id                             75831
EmployeeName        James L Mogannam
JobTitle                 Firefighter
BasePay                    116956.69
OvertimePay                 24331.19
OtherPay                    17915.52
Benefits                    40080.59
TotalPay                    159203.4
TotalPayBenefits           199283.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75830, dtype: object)
(75831, Id                                 75832
EmployeeName        Edward J Ghilardi Jr
JobTitle                     Firefighter
BasePay                        126233.99
OvertimePay                     10370.88
OtherPay                        18836.79
Benefits                        43837.28
TotalPay                       155441.66
TotalPayBenefits               199278.94
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75831, dtype: object)
(75832, Id                          75833
EmployeeName        Truc T Nguyen
JobTitle              Firefighter
BasePay                 101912.78
OvertimePay              40078.03
OtherPay                  17054.8
Benefits                 40223.82
TotalPay                159045.61
TotalPayBenefits        199269.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75832, dtype: object)
(75833, Id                            75834
EmployeeName        Mark F Obrochta
JobTitle                 Sergeant 3
BasePay                   143289.19
OvertimePay                 4809.46
OtherPay                    9470.35
Benefits                    41677.7
TotalPay                   157569.0
TotalPayBenefits           199246.7
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75833, dtype: object)
(75834, Id                                  75835
EmployeeName        Christine L Magayanes
JobTitle                 Police Officer 3
BasePay                         123471.18
OvertimePay                      37689.79
OtherPay                           1026.1
Benefits                         37055.22
TotalPay                        162187.07
TotalPayBenefits                199242.29
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75834, dtype: object)
(75835, Id                                         75836
EmployeeName                     Dwayne E Newton
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.97
OvertimePay                              4077.07
OtherPay                                14354.14
Benefits                                44899.12
TotalPay                               154334.18
TotalPayBenefits                        199233.3
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75835, dtype: object)
(75836, Id                              75837
EmployeeName        Dorian L McConico
JobTitle                   Sergeant 3
BasePay                     142555.15
OvertimePay                   6958.68
OtherPay                      8743.29
Benefits                     40965.39
TotalPay                    158257.12
TotalPayBenefits            199222.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75836, dtype: object)
(75837, Id                          75838
EmployeeName        Maura  Pengel
JobTitle               Sergeant 3
BasePay                 143289.14
OvertimePay               4991.89
OtherPay                  9846.11
Benefits                 41090.72
TotalPay                158127.14
TotalPayBenefits        199217.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75837, dtype: object)
(75838, Id                           75839
EmployeeName        John J Maguire
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               21968.57
OtherPay                  18881.22
Benefits                  41406.59
TotalPay                 157806.49
TotalPayBenefits         199213.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75838, dtype: object)
(75839, Id                                        75840
EmployeeName              Christopher A Hinnant
JobTitle            Senior Physician Specialist
BasePay                               158000.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               41212.23
TotalPay                              158000.02
TotalPayBenefits                      199212.25
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75839, dtype: object)
(75840, Id                             75841
EmployeeName        Anthony  Peppers
JobTitle              Deputy Sheriff
BasePay                     95022.94
OvertimePay                 53059.53
OtherPay                    15377.65
Benefits                    35742.03
TotalPay                   163460.12
TotalPayBenefits           199202.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75840, dtype: object)
(75841, Id                              75842
EmployeeName        Jeffrey M Fortuno
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  31323.25
OtherPay                      9966.61
Benefits                     36839.03
TotalPay                    162357.86
TotalPayBenefits            199196.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75841, dtype: object)
(75842, Id                                75843
EmployeeName        Francis  Villanueva
JobTitle               Registered Nurse
BasePay                       132659.82
OvertimePay                     1840.55
OtherPay                       21065.61
Benefits                       43614.87
TotalPay                      155565.98
TotalPayBenefits              199180.85
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75842, dtype: object)
(75843, Id                            75844
EmployeeName        Patrick J Tobin
JobTitle                Inspector 3
BasePay                    67782.32
OvertimePay                 4935.57
OtherPay                  107470.12
Benefits                   18968.51
TotalPay                  180188.01
TotalPayBenefits          199156.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75843, dtype: object)
(75844, Id                           75845
EmployeeName        Nelly E Gordon
JobTitle               Inspector 3
BasePay                  143289.03
OvertimePay               12645.62
OtherPay                   2405.88
Benefits                  40811.45
TotalPay                 158340.53
TotalPayBenefits         199151.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75844, dtype: object)
(75845, Id                              75846
EmployeeName        Michelle M Geddes
JobTitle                  Manager III
BasePay                     158493.03
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     40626.19
TotalPay                    158493.03
TotalPayBenefits            199119.22
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75845, dtype: object)
(75846, Id                                         75847
EmployeeName                   Kenneth  Buhagiar
JobTitle            Telecommunications Tech Supv
BasePay                                114062.04
OvertimePay                             22017.11
OtherPay                                27255.62
Benefits                                35777.52
TotalPay                               163334.77
TotalPayBenefits                       199112.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75846, dtype: object)
(75847, Id                                       75848
EmployeeName                      Mabal S Bhat
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153288.82
OvertimePay                                0.0
OtherPay                                1953.8
Benefits                              43822.83
TotalPay                             155242.62
TotalPayBenefits                     199065.45
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75847, dtype: object)
(75848, Id                          75849
EmployeeName        Susan J Rosen
JobTitle               Pharmacist
BasePay                 146745.02
OvertimePay               2498.74
OtherPay                  6564.17
Benefits                 43256.07
TotalPay                155807.93
TotalPayBenefits         199064.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75848, dtype: object)
(75849, Id                            75850
EmployeeName        Daniel U Greely
JobTitle                 Sergeant 3
BasePay                    72506.92
OvertimePay                 8058.43
OtherPay                   98039.92
Benefits                   20458.71
TotalPay                  178605.27
TotalPayBenefits          199063.98
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75849, dtype: object)
(75850, Id                              75851
EmployeeName        Brian D Rodriguez
JobTitle                   Sergeant 2
BasePay                     140724.03
OvertimePay                  14866.44
OtherPay                      3132.01
Benefits                     40319.19
TotalPay                    158722.48
TotalPayBenefits            199041.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75850, dtype: object)
(75851, Id                                       75852
EmployeeName              Surendrakuma A Mehta
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              155265.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43758.09
TotalPay                             155265.51
TotalPayBenefits                      199023.6
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75851, dtype: object)
(75852, Id                             75853
EmployeeName        Brian D Staehely
JobTitle              Deputy Sheriff
BasePay                     95126.54
OvertimePay                 53211.77
OtherPay                    15094.14
Benefits                    35590.99
TotalPay                   163432.45
TotalPayBenefits           199023.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75852, dtype: object)
(75853, Id                            75854
EmployeeName        Chris J Wilhelm
JobTitle                 Sergeant 3
BasePay                   143289.05
OvertimePay                 8487.07
OtherPay                    6353.51
Benefits                   40878.35
TotalPay                  158129.63
TotalPayBenefits          199007.98
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75853, dtype: object)
(75854, Id                             75855
EmployeeName        Pedro A Martinez
JobTitle                 Firefighter
BasePay                    116956.72
OvertimePay                 38103.47
OtherPay                     5245.34
Benefits                    38671.73
TotalPay                   160305.53
TotalPayBenefits           198977.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75854, dtype: object)
(75855, Id                           75856
EmployeeName        Robert A Terry
JobTitle                Sergeant 3
BasePay                  142555.18
OvertimePay                5904.03
OtherPay                   9828.31
Benefits                  40674.47
TotalPay                 158287.52
TotalPayBenefits         198961.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75855, dtype: object)
(75856, Id                               75857
EmployeeName        Elizabeth  Hewlett
JobTitle              Registered Nurse
BasePay                      133121.24
OvertimePay                    7358.64
OtherPay                      13415.76
Benefits                      45050.03
TotalPay                     153895.64
TotalPayBenefits             198945.67
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75856, dtype: object)
(75857, Id                               75858
EmployeeName        Kenneth S McCarthy
JobTitle                   Firefighter
BasePay                      116956.69
OvertimePay                   21698.11
OtherPay                      18994.69
Benefits                       41280.2
TotalPay                     157649.49
TotalPayBenefits             198929.69
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75857, dtype: object)
(75858, Id                            75859
EmployeeName        Timothy J Hines
JobTitle                 Manager IV
BasePay                   144312.13
OvertimePay                     0.0
OtherPay                    4092.59
Benefits                   50518.89
TotalPay                  148404.72
TotalPayBenefits          198923.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75858, dtype: object)
(75859, Id                              75860
EmployeeName        Charles E Collins
JobTitle                   Sergeant 3
BasePay                     143289.14
OvertimePay                   5526.73
OtherPay                      8899.58
Benefits                     41195.63
TotalPay                    157715.45
TotalPayBenefits            198911.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75859, dtype: object)
(75860, Id                             75861
EmployeeName        Nelson  Ramos Jr
JobTitle            Police Officer 2
BasePay                    121068.03
OvertimePay                 37295.91
OtherPay                     3705.39
Benefits                    36829.77
TotalPay                   162069.33
TotalPayBenefits            198899.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75860, dtype: object)
(75861, Id                             75862
EmployeeName         Brandon P Smith
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 33752.65
OtherPay                     7501.71
Benefits                    36571.11
TotalPay                   162322.37
TotalPayBenefits           198893.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75861, dtype: object)
(75862, Id                           75863
EmployeeName        Lawrence J Yup
JobTitle               Firefighter
BasePay                  116956.69
OvertimePay               20899.77
OtherPay                  19616.77
Benefits                  41406.58
TotalPay                 157473.23
TotalPayBenefits         198879.81
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75862, dtype: object)
(75863, Id                          75864
EmployeeName         Steve B Quon
JobTitle               Sergeant 3
BasePay                  66337.59
OvertimePay               3044.88
OtherPay                111139.38
Benefits                 18319.59
TotalPay                180521.85
TotalPayBenefits        198841.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75863, dtype: object)
(75864, Id                            75865
EmployeeName        Hendryck  Lasak
JobTitle                Firefighter
BasePay                   116956.73
OvertimePay                25802.87
OtherPay                   15358.23
Benefits                   40718.49
TotalPay                  158117.83
TotalPayBenefits          198836.32
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75864, dtype: object)
(75865, Id                                         75866
EmployeeName                   Gregory L Blatman
JobTitle            Lieutenant, Fire Suppression
BasePay                                130930.64
OvertimePay                              9785.53
OtherPay                                15554.85
Benefits                                42535.67
TotalPay                               156271.02
TotalPayBenefits                       198806.69
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75865, dtype: object)
(75866, Id                               75867
EmployeeName           Emilio A Orozco
JobTitle            Nurse Practitioner
BasePay                       150469.2
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      48050.14
TotalPay                      150719.2
TotalPayBenefits             198769.34
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75866, dtype: object)
(75867, Id                                         75868
EmployeeName                     Sean A Johnston
JobTitle            Lieutenant, Fire Suppression
BasePay                                 134667.5
OvertimePay                              6138.85
OtherPay                                13694.35
Benefits                                44254.46
TotalPay                                154500.7
TotalPayBenefits                       198755.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75867, dtype: object)
(75868, Id                                       75869
EmployeeName                     Bernard A Tse
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              154147.56
OvertimePay                                0.0
OtherPay                                827.53
Benefits                              43775.93
TotalPay                             154975.09
TotalPayBenefits                     198751.02
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75868, dtype: object)
(75869, Id                                         75870
EmployeeName                        Marc E Evans
JobTitle            Lieutenant, Fire Suppression
BasePay                                135424.26
OvertimePay                              7857.64
OtherPay                                12165.96
Benefits                                43288.23
TotalPay                               155447.86
TotalPayBenefits                       198736.09
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75869, dtype: object)
(75870, Id                                      75871
EmployeeName                 Wesley J Lemberg
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.27
OvertimePay                           1953.45
OtherPay                             16409.37
Benefits                             45227.46
TotalPay                            153507.09
TotalPayBenefits                    198734.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75870, dtype: object)
(75871, Id                                           75872
EmployeeName                        Michael  Haase
JobTitle            Asst Chf, Bur Clm Invest&Admin
BasePay                                   146938.0
OvertimePay                                    0.0
OtherPay                                    1000.0
Benefits                                  50786.36
TotalPay                                  147938.0
TotalPayBenefits                         198724.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 75871, dtype: object)
(75872, Id                              75873
EmployeeName        Michael G Aguilar
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  19931.82
OtherPay                     20388.93
Benefits                      41437.8
TotalPay                    157277.46
TotalPayBenefits            198715.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75872, dtype: object)
(75873, Id                             75874
EmployeeName        Robert N Ziegler
JobTitle                 Inspector 3
BasePay                    143023.66
OvertimePay                      0.0
OtherPay                    13917.89
Benefits                    41770.78
TotalPay                   156941.55
TotalPayBenefits           198712.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75873, dtype: object)
(75874, Id                             75875
EmployeeName          Darius T Jones
JobTitle            Police Officer 2
BasePay                    121068.02
OvertimePay                 30556.07
OtherPay                    10461.82
Benefits                    36600.59
TotalPay                   162085.91
TotalPayBenefits            198686.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75874, dtype: object)
(75875, Id                                75876
EmployeeName        Lourdes C Nicomedes
JobTitle                     Manager IV
BasePay                       143856.07
OvertimePay                         0.0
OtherPay                         4000.0
Benefits                       50787.03
TotalPay                      147856.07
TotalPayBenefits               198643.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75875, dtype: object)
(75876, Id                                75877
EmployeeName        Damon V Williams Jr
JobTitle               Police Officer 3
BasePay                       122899.49
OvertimePay                     34545.8
OtherPay                        4266.52
Benefits                       36891.33
TotalPay                      161711.81
TotalPayBenefits              198603.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75876, dtype: object)
(75877, Id                           75878
EmployeeName        Kevin C Sporer
JobTitle                Manager IV
BasePay                  143856.04
OvertimePay                    0.0
OtherPay                    4000.0
Benefits                  50718.81
TotalPay                 147856.04
TotalPayBenefits         198574.85
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75877, dtype: object)
(75878, Id                                       75879
EmployeeName                     Garrett S Low
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               152699.8
OvertimePay                                0.0
OtherPay                               2136.93
Benefits                              43731.21
TotalPay                             154836.73
TotalPayBenefits                     198567.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75878, dtype: object)
(75879, Id                             75880
EmployeeName        Darren J Nocetti
JobTitle                  Sergeant 3
BasePay                     129343.0
OvertimePay                 20395.19
OtherPay                    10580.95
Benefits                    38248.31
TotalPay                   160319.14
TotalPayBenefits           198567.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75879, dtype: object)
(75880, Id                                          75881
EmployeeName                      John R Catanach
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                  88975.81
OvertimePay                              47779.74
OtherPay                                 29201.33
Benefits                                 32592.97
TotalPay                                165956.88
TotalPayBenefits                        198549.85
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75880, dtype: object)
(75881, Id                               75882
EmployeeName        Patricia M Purcell
JobTitle            Nurse Practitioner
BasePay                      152752.96
OvertimePay                     896.44
OtherPay                         250.0
Benefits                      44638.72
TotalPay                      153899.4
TotalPayBenefits             198538.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75881, dtype: object)
(75882, Id                             75883
EmployeeName          Derrick  Liang
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 24570.96
OtherPay                    16311.46
Benefits                    36585.84
TotalPay                   161950.42
TotalPayBenefits           198536.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75882, dtype: object)
(75883, Id                           75884
EmployeeName        Anton  Shelton
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               21268.32
OtherPay                   18993.0
Benefits                  41294.25
TotalPay                 157218.02
TotalPayBenefits         198512.27
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75883, dtype: object)
(75884, Id                              75885
EmployeeName        Jason D Jefferson
JobTitle                   Sergeant 3
BasePay                     143289.16
OvertimePay                   5327.73
OtherPay                      9105.96
Benefits                     40787.05
TotalPay                    157722.85
TotalPayBenefits             198509.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75884, dtype: object)
(75885, Id                          75886
EmployeeName         John R Klein
JobTitle              Manager III
BasePay                 137206.57
OvertimePay                   0.0
OtherPay                 12614.76
Benefits                 48688.22
TotalPay                149821.33
TotalPayBenefits        198509.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75885, dtype: object)
(75886, Id                            75887
EmployeeName        Brian W Kneuker
JobTitle             Police Officer
BasePay                   106723.31
OvertimePay                36211.44
OtherPay                   21749.38
Benefits                   33813.41
TotalPay                  164684.13
TotalPayBenefits          198497.54
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75886, dtype: object)
(75887, Id                               75888
EmployeeName        Janet M Lacampagne
JobTitle                    Sergeant 3
BasePay                      143289.04
OvertimePay                        0.0
OtherPay                      12764.26
Benefits                      42430.76
TotalPay                      156053.3
TotalPayBenefits             198484.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75887, dtype: object)
(75888, Id                             75889
EmployeeName          Rene V Nielsen
JobTitle            Police Officer 3
BasePay                    121068.01
OvertimePay                  6999.22
OtherPay                    33783.43
Benefits                    36600.58
TotalPay                   161850.66
TotalPayBenefits           198451.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75888, dtype: object)
(75889, Id                            75890
EmployeeName          Therese E Gee
JobTitle            Insp, Fire Dept
BasePay                   139644.01
OvertimePay                 6507.01
OtherPay                    10344.0
Benefits                   41920.84
TotalPay                  156495.02
TotalPayBenefits          198415.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75889, dtype: object)
(75890, Id                                          75891
EmployeeName                       Clint M Turner
JobTitle            Senior Comm Systems Technican
BasePay                                 127116.03
OvertimePay                              20847.61
OtherPay                                 12115.76
Benefits                                 38332.52
TotalPay                                 160079.4
TotalPayBenefits                        198411.92
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 75890, dtype: object)
(75891, Id                                      75892
EmployeeName                  Timothy P Kelly
JobTitle            EMT/Paramedic/Firefighter
BasePay                              117045.0
OvertimePay                          36090.37
OtherPay                              8154.07
Benefits                             37098.29
TotalPay                            161289.44
TotalPayBenefits                    198387.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75891, dtype: object)
(75892, Id                             75893
EmployeeName         Chiu Chen  Chen
JobTitle            Registered Nurse
BasePay                     126824.4
OvertimePay                  8571.09
OtherPay                    21380.77
Benefits                    41601.64
TotalPay                   156776.26
TotalPayBenefits            198377.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75892, dtype: object)
(75893, Id                           75894
EmployeeName        Michael  Celis
JobTitle            Police Officer
BasePay                  116478.06
OvertimePay               44329.78
OtherPay                   1831.83
Benefits                  35732.23
TotalPay                 162639.67
TotalPayBenefits          198371.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75893, dtype: object)
(75894, Id                             75895
EmployeeName        Paget S Mitchell
JobTitle                  Sergeant 3
BasePay                    143289.18
OvertimePay                  6103.06
OtherPay                     7786.78
Benefits                    41178.68
TotalPay                   157179.02
TotalPayBenefits            198357.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75894, dtype: object)
(75895, Id                               75896
EmployeeName        Brendan F O'Connor
JobTitle              Police Officer 3
BasePay                      123471.01
OvertimePay                   24485.21
OtherPay                      13337.29
Benefits                      37035.84
TotalPay                     161293.51
TotalPayBenefits             198329.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75895, dtype: object)
(75896, Id                          75897
EmployeeName          Scott V Hua
JobTitle              Firefighter
BasePay                 116956.74
OvertimePay              29148.76
OtherPay                 12059.21
Benefits                 40155.54
TotalPay                158164.71
TotalPayBenefits        198320.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75896, dtype: object)
(75897, Id                                 75898
EmployeeName        Ermelina G Fernandez
JobTitle                Registered Nurse
BasePay                         137850.2
OvertimePay                     11342.16
OtherPay                        12955.16
Benefits                        36143.46
TotalPay                       162147.52
TotalPayBenefits               198290.98
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75897, dtype: object)
(75898, Id                            75899
EmployeeName           Darton T Ito
JobTitle            Manager VI, MTA
BasePay                   147645.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   50644.54
TotalPay                  147645.01
TotalPayBenefits          198289.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75898, dtype: object)
(75899, Id                                       75900
EmployeeName                     Johnny  Chinn
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              44958.33
TotalPay                              153291.5
TotalPayBenefits                     198249.83
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75899, dtype: object)
(75900, Id                                       75901
EmployeeName                  Jaswant S Bhatti
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153294.3
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              44943.54
TotalPay                              153294.3
TotalPayBenefits                     198237.84
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75900, dtype: object)
(75901, Id                                  75902
EmployeeName             Felisha M Thomas
JobTitle            Senior Deputy Sheriff
BasePay                         105428.75
OvertimePay                      38562.81
OtherPay                         16826.86
Benefits                         37406.47
TotalPay                        160818.42
TotalPayBenefits                198224.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75901, dtype: object)
(75902, Id                              75903
EmployeeName        Daniel R Martinez
JobTitle                  Firefighter
BasePay                     116956.73
OvertimePay                  28192.27
OtherPay                     12959.03
Benefits                     40110.15
TotalPay                    158108.03
TotalPayBenefits            198218.18
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75902, dtype: object)
(75903, Id                                 75904
EmployeeName              David L Pakter
JobTitle            Physician Specialist
BasePay                        145554.28
OvertimePay                          0.0
OtherPay                        11859.47
Benefits                        40803.01
TotalPay                       157413.75
TotalPayBenefits               198216.76
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75903, dtype: object)
(75904, Id                                75905
EmployeeName             Linda P Truong
JobTitle            Clinical Pharmacist
BasePay                        148676.2
OvertimePay                       428.0
OtherPay                        5114.14
Benefits                       43995.99
TotalPay                      154218.34
TotalPayBenefits              198214.33
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75904, dtype: object)
(75905, Id                             75906
EmployeeName           John E Murphy
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 25469.49
OtherPay                    15071.81
Benefits                    36585.84
TotalPay                    161609.3
TotalPayBenefits           198195.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75905, dtype: object)
(75906, Id                                        75907
EmployeeName                   Larry L Bezanson
JobTitle            Electronic Maintenance Tech
BasePay                               112472.03
OvertimePay                            46142.35
OtherPay                                1962.66
Benefits                               37614.86
TotalPay                              160577.04
TotalPayBenefits                       198191.9
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75906, dtype: object)
(75907, Id                                         75908
EmployeeName                  Christopher M Benz
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.48
OvertimePay                              7311.98
OtherPay                                12015.16
Benefits                                44182.33
TotalPay                               153994.62
TotalPayBenefits                       198176.95
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75907, dtype: object)
(75908, Id                               75909
EmployeeName        Raymond  Schnelker
JobTitle                   Firefighter
BasePay                       115206.8
OvertimePay                   24542.88
OtherPay                      19025.65
Benefits                      39375.04
TotalPay                     158775.33
TotalPayBenefits             198150.37
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75908, dtype: object)
(75909, Id                           75910
EmployeeName        Brian A Oliver
JobTitle                Sergeant 3
BasePay                   143289.2
OvertimePay                6490.71
OtherPay                   7463.92
Benefits                  40901.41
TotalPay                 157243.83
TotalPayBenefits         198145.24
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75909, dtype: object)
(75910, Id                          75911
EmployeeName           John J Woo
JobTitle               Manager IV
BasePay                 146973.74
OvertimePay                   0.0
OtherPay                    500.0
Benefits                 50655.47
TotalPay                147473.74
TotalPayBenefits        198129.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75910, dtype: object)
(75911, Id                              75912
EmployeeName        Kenneth M Esposto
JobTitle                  Inspector 3
BasePay                      68991.09
OvertimePay                  13458.25
OtherPay                     96209.34
Benefits                     19461.83
TotalPay                    178658.68
TotalPayBenefits            198120.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75911, dtype: object)
(75912, Id                              75913
EmployeeName        Steven M Brantley
JobTitle                  Firefighter
BasePay                     113569.39
OvertimePay                   48859.3
OtherPay                     11217.68
Benefits                     24472.13
TotalPay                    173646.37
TotalPayBenefits             198118.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75912, dtype: object)
(75913, Id                                75914
EmployeeName        Maureen P Singleton
JobTitle                    Manager III
BasePay                       146452.18
OvertimePay                         0.0
OtherPay                         1000.0
Benefits                       50659.16
TotalPay                      147452.18
TotalPayBenefits              198111.34
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75913, dtype: object)
(75914, Id                              75915
EmployeeName        Malcolm  Anderson
JobTitle                   Sergeant 3
BasePay                     143289.07
OvertimePay                   8319.14
OtherPay                      5666.64
Benefits                     40786.97
TotalPay                    157274.85
TotalPayBenefits            198061.82
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75914, dtype: object)
(75915, Id                             75916
EmployeeName          Thomas J Deely
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                  36676.9
OtherPay                      854.12
Benefits                    37055.13
TotalPay                   161002.04
TotalPayBenefits           198057.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75915, dtype: object)
(75916, Id                            75917
EmployeeName        Steven  Mulkeen
JobTitle                Inspector 3
BasePay                   143289.07
OvertimePay                 5848.51
OtherPay                    7563.04
Benefits                   41346.35
TotalPay                  156700.62
TotalPayBenefits          198046.97
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75916, dtype: object)
(75917, Id                             75918
EmployeeName            Lev  Shapiro
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  8116.14
OtherPay                    12093.15
Benefits                    43803.53
TotalPay                   154237.29
TotalPayBenefits           198040.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75917, dtype: object)
(75918, Id                               75919
EmployeeName            James C Flores
JobTitle            Transit Supervisor
BasePay                       91559.02
OvertimePay                   63137.18
OtherPay                      10161.98
Benefits                      33171.25
TotalPay                     164858.18
TotalPayBenefits             198029.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75918, dtype: object)
(75919, Id                             75920
EmployeeName           Lea R Angeles
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                      0.0
OtherPay                     8938.37
Benefits                    46646.58
TotalPay                   151363.37
TotalPayBenefits           198009.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75919, dtype: object)
(75920, Id                               75921
EmployeeName        Linda  Lee-Robbins
JobTitle                    Manager IV
BasePay                       143850.6
OvertimePay                        0.0
OtherPay                       3065.13
Benefits                      51092.95
TotalPay                     146915.73
TotalPayBenefits             198008.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75920, dtype: object)
(75921, Id                                 75922
EmployeeName         Donna A Steppe-Keys
JobTitle            Sheriff's Lieutenant
BasePay                         131415.0
OvertimePay                     12755.59
OtherPay                        12230.47
Benefits                         41580.9
TotalPay                       156401.06
TotalPayBenefits               197981.96
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75921, dtype: object)
(75922, Id                               75923
EmployeeName        Begonia C Knobloch
JobTitle              Registered Nurse
BasePay                      124793.32
OvertimePay                    9811.51
OtherPay                      19201.73
Benefits                      44169.95
TotalPay                     153806.56
TotalPayBenefits             197976.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75922, dtype: object)
(75923, Id                               75924
EmployeeName        Michele A Primiano
JobTitle                    Sergeant 2
BasePay                       139996.0
OvertimePay                    8760.64
OtherPay                       9014.58
Benefits                      40190.31
TotalPay                     157771.22
TotalPayBenefits             197961.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75923, dtype: object)
(75924, Id                               75925
EmployeeName        Lorraine  Thiebaud
JobTitle              Registered Nurse
BasePay                      127864.03
OvertimePay                   11209.39
OtherPay                      14900.39
Benefits                      43954.85
TotalPay                     153973.81
TotalPayBenefits             197928.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75924, dtype: object)
(75925, Id                          75926
EmployeeName         Dustin  Ruff
JobTitle              Firefighter
BasePay                 115893.45
OvertimePay              22714.83
OtherPay                 18392.65
Benefits                 40917.97
TotalPay                157000.93
TotalPayBenefits         197918.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75925, dtype: object)
(75926, Id                          75927
EmployeeName           Henry  Tam
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              13378.97
OtherPay                 25521.81
Benefits                 42033.52
TotalPay                155857.48
TotalPayBenefits         197891.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75926, dtype: object)
(75927, Id                             75928
EmployeeName         Janet M Kosewic
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                      0.0
OtherPay                     8825.09
Benefits                    46614.63
TotalPay                    151250.1
TotalPayBenefits           197864.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75927, dtype: object)
(75928, Id                             75929
EmployeeName        Liza G Fernandez
JobTitle            Registered Nurse
BasePay                    133919.09
OvertimePay                  7358.64
OtherPay                    12704.61
Benefits                    43868.53
TotalPay                   153982.34
TotalPayBenefits           197850.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75928, dtype: object)
(75929, Id                                       75930
EmployeeName                      Jesse D Blas
JobTitle            Trans and Dist Line Worker
BasePay                              105033.52
OvertimePay                            17224.1
OtherPay                              41071.89
Benefits                              34470.07
TotalPay                             163329.51
TotalPayBenefits                     197799.58
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75929, dtype: object)
(75930, Id                             75931
EmployeeName        Matthew W Elseth
JobTitle                  Sergeant 2
BasePay                    127900.96
OvertimePay                 19016.95
OtherPay                    12829.17
Benefits                    38048.22
TotalPay                   159747.08
TotalPayBenefits            197795.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75930, dtype: object)
(75931, Id                             75932
EmployeeName            Elsie  Zarza
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                   7912.5
OtherPay                     1990.94
Benefits                    45451.14
TotalPay                   152328.44
TotalPayBenefits           197779.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75931, dtype: object)
(75932, Id                             75933
EmployeeName            Ali  Misaghi
JobTitle            Police Officer 2
BasePay                    120923.27
OvertimePay                 22649.96
OtherPay                    17566.66
Benefits                    36608.85
TotalPay                   161139.89
TotalPayBenefits           197748.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75932, dtype: object)
(75933, Id                               75934
EmployeeName        Stephen J Gonzales
JobTitle               Insp, Fire Dept
BasePay                      139644.08
OvertimePay                    3733.54
OtherPay                      12102.48
Benefits                      42256.58
TotalPay                      155480.1
TotalPayBenefits             197736.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75933, dtype: object)
(75934, Id                                  75935
EmployeeName        Andrew M Martinez III
JobTitle                   Deputy Sheriff
BasePay                          95123.08
OvertimePay                      58169.75
OtherPay                          9949.31
Benefits                          34441.8
TotalPay                        163242.14
TotalPayBenefits                197683.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75934, dtype: object)
(75935, Id                               75936
EmployeeName        Alberto V Oliveros
JobTitle              Registered Nurse
BasePay                      129240.85
OvertimePay                     7943.1
OtherPay                      20449.23
Benefits                      40008.31
TotalPay                     157633.18
TotalPayBenefits             197641.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75935, dtype: object)
(75936, Id                             75937
EmployeeName            Felisa P Kho
JobTitle            Registered Nurse
BasePay                    141435.94
OvertimePay                  3679.32
OtherPay                     6653.77
Benefits                    45869.78
TotalPay                   151769.03
TotalPayBenefits           197638.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75936, dtype: object)
(75937, Id                             75938
EmployeeName           Edwin  Gaffud
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 36308.17
OtherPay                     3653.18
Benefits                    36600.58
TotalPay                   161029.36
TotalPayBenefits           197629.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75937, dtype: object)
(75938, Id                              75939
EmployeeName        Seleta J Reynolds
JobTitle               Manager V, MTA
BasePay                     143856.03
OvertimePay                       0.0
OtherPay                       2000.0
Benefits                      51767.0
TotalPay                    145856.03
TotalPayBenefits            197623.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75938, dtype: object)
(75939, Id                              75940
EmployeeName        Henry B Scoble Jr
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  19537.94
OtherPay                     19654.68
Benefits                     41471.94
TotalPay                    156149.34
TotalPayBenefits            197621.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75939, dtype: object)
(75940, Id                             75941
EmployeeName           John G Fergus
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 19153.45
OtherPay                    20822.58
Benefits                    36565.34
TotalPay                   161044.03
TotalPayBenefits           197609.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75940, dtype: object)
(75941, Id                            75942
EmployeeName        Maria L Cordero
JobTitle                 Manager IV
BasePay                    143856.0
OvertimePay                     0.0
OtherPay                     3500.0
Benefits                   50247.44
TotalPay                   147356.0
TotalPayBenefits          197603.44
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75941, dtype: object)
(75942, Id                          75943
EmployeeName        Mike A Murphy
JobTitle               Sergeant 3
BasePay                 143289.08
OvertimePay              12145.97
OtherPay                  1293.24
Benefits                  40867.3
TotalPay                156728.29
TotalPayBenefits        197595.59
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75942, dtype: object)
(75943, Id                                  75944
EmployeeName                John  Lertora
JobTitle            IS Engineer-Principal
BasePay                         139889.05
OvertimePay                           0.0
OtherPay                         16754.24
Benefits                         40917.42
TotalPay                        156643.29
TotalPayBenefits                197560.71
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75943, dtype: object)
(75944, Id                             75945
EmployeeName          Thomas C Moran
JobTitle            Police Officer 2
BasePay                    120525.54
OvertimePay                 19696.93
OtherPay                    20852.05
Benefits                    36475.03
TotalPay                   161074.52
TotalPayBenefits           197549.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75944, dtype: object)
(75945, Id                               75946
EmployeeName           Jose N Castillo
JobTitle            Transit Supervisor
BasePay                        95197.3
OvertimePay                   58123.53
OtherPay                       9840.43
Benefits                      34346.96
TotalPay                     163161.26
TotalPayBenefits             197508.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75945, dtype: object)
(75946, Id                            75947
EmployeeName        Leo S O'Farrell
JobTitle                 Manager IV
BasePay                   145930.33
OvertimePay                     0.0
OtherPay                     1000.0
Benefits                   50559.57
TotalPay                  146930.33
TotalPayBenefits           197489.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75946, dtype: object)
(75947, Id                                       75948
EmployeeName                      Harvey  Quan
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              44191.93
TotalPay                             153291.52
TotalPayBenefits                     197483.45
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75947, dtype: object)
(75948, Id                                       75949
EmployeeName                      Tedman C Lee
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              149940.33
OvertimePay                                0.0
OtherPay                               4061.73
Benefits                              43466.59
TotalPay                             154002.06
TotalPayBenefits                     197468.65
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75948, dtype: object)
(75949, Id                                 75950
EmployeeName        Anthony D Branchcomb
JobTitle                     Firefighter
BasePay                        117004.58
OvertimePay                      22649.7
OtherPay                        17112.08
Benefits                        40697.47
TotalPay                       156766.36
TotalPayBenefits               197463.83
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75949, dtype: object)
(75950, Id                             75951
EmployeeName           Lamar J Toney
JobTitle            Police Officer 3
BasePay                    123471.23
OvertimePay                 35048.75
OtherPay                     1879.99
Benefits                    37055.22
TotalPay                   160399.97
TotalPayBenefits           197455.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75950, dtype: object)
(75951, Id                          75952
EmployeeName        Sophia G Isom
JobTitle               Manager IV
BasePay                 143856.03
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                 50578.83
TotalPay                146856.03
TotalPayBenefits        197434.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75951, dtype: object)
(75952, Id                             75953
EmployeeName        John K Tsutakawa
JobTitle                  Manager IV
BasePay                     143856.0
OvertimePay                      0.0
OtherPay                      3000.0
Benefits                    50578.83
TotalPay                    146856.0
TotalPayBenefits           197434.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75952, dtype: object)
(75953, Id                             75954
EmployeeName        Arline M Gilmore
JobTitle                  Sergeant 3
BasePay                    143289.14
OvertimePay                   6822.4
OtherPay                      6511.9
Benefits                    40810.94
TotalPay                   156623.44
TotalPayBenefits           197434.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75953, dtype: object)
(75954, Id                             75955
EmployeeName        James M McGuigan
JobTitle                 Firefighter
BasePay                    102242.98
OvertimePay                 38287.15
OtherPay                    16494.17
Benefits                    40395.85
TotalPay                    157024.3
TotalPayBenefits           197420.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75954, dtype: object)
(75955, Id                          75956
EmployeeName        Kevin E Healy
JobTitle               Sergeant 3
BasePay                 141299.07
OvertimePay               12129.4
OtherPay                  3670.78
Benefits                 40309.74
TotalPay                157099.25
TotalPayBenefits        197408.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75955, dtype: object)
(75956, Id                                         75957
EmployeeName                       James J Reidy
JobTitle            Lieutenant, Fire Suppression
BasePay                                136155.26
OvertimePay                              1309.61
OtherPay                                15163.12
Benefits                                44780.59
TotalPay                               152627.99
TotalPayBenefits                       197408.58
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 75956, dtype: object)
(75957, Id                             75958
EmployeeName        Anthony J Voight
JobTitle                 Firefighter
BasePay                    106245.79
OvertimePay                 35746.97
OtherPay                    14938.06
Benefits                    40474.81
TotalPay                   156930.82
TotalPayBenefits           197405.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75957, dtype: object)
(75958, Id                           75959
EmployeeName        John  Conefrey
JobTitle               Inspector 3
BasePay                  143289.06
OvertimePay                 4094.1
OtherPay                   8658.17
Benefits                  41355.56
TotalPay                 156041.33
TotalPayBenefits         197396.89
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75958, dtype: object)
(75959, Id                          75960
EmployeeName        Magnus J Chow
JobTitle               Sergeant 2
BasePay                  126892.0
OvertimePay               6143.37
OtherPay                 26586.07
Benefits                 37754.55
TotalPay                159621.44
TotalPayBenefits        197375.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75959, dtype: object)
(75960, Id                             75961
EmployeeName            Yu-Ruo  Wang
JobTitle            Registered Nurse
BasePay                    138213.02
OvertimePay                  3263.36
OtherPay                    10819.54
Benefits                    45065.17
TotalPay                   152295.92
TotalPayBenefits           197361.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75960, dtype: object)
(75961, Id                          75962
EmployeeName        Sharon L Bell
JobTitle               Manager IV
BasePay                 143856.07
OvertimePay                   0.0
OtherPay                   3000.0
Benefits                 50480.29
TotalPay                146856.07
TotalPayBenefits        197336.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75961, dtype: object)
(75962, Id                                75963
EmployeeName        Diana L Christensen
JobTitle                     Manager IV
BasePay                       143856.03
OvertimePay                         0.0
OtherPay                         3000.0
Benefits                       50480.29
TotalPay                      146856.03
TotalPayBenefits              197336.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75962, dtype: object)
(75963, Id                          75964
EmployeeName         Kelly A Dunn
JobTitle               Sergeant 3
BasePay                 143289.09
OvertimePay               7178.96
OtherPay                  6042.73
Benefits                 40813.35
TotalPay                156510.78
TotalPayBenefits        197324.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75963, dtype: object)
(75964, Id                              75965
EmployeeName        Armando V Maracha
JobTitle             Police Officer 3
BasePay                     125546.35
OvertimePay                  30909.18
OtherPay                      3304.62
Benefits                     37563.31
TotalPay                    159760.15
TotalPayBenefits            197323.46
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75964, dtype: object)
(75965, Id                             75966
EmployeeName            Eric J Perez
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 17736.23
OtherPay                    18871.84
Benefits                    37226.66
TotalPay                   160079.08
TotalPayBenefits           197305.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75965, dtype: object)
(75966, Id                                   75967
EmployeeName        Montgomery H Singleton
JobTitle                    Police Officer
BasePay                          116478.11
OvertimePay                       40042.72
OtherPay                           5074.07
Benefits                          35703.89
TotalPay                          161594.9
TotalPayBenefits                 197298.79
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 75966, dtype: object)
(75967, Id                             75968
EmployeeName          Timothy R Faye
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 31185.75
OtherPay                     5552.66
Benefits                    37055.22
TotalPay                   160209.56
TotalPayBenefits           197264.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75967, dtype: object)
(75968, Id                              75969
EmployeeName        Jennifer A Marino
JobTitle                   Sergeant 3
BasePay                     133013.16
OvertimePay                  18037.34
OtherPay                      7209.91
Benefits                      38984.6
TotalPay                    158260.41
TotalPayBenefits            197245.01
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75968, dtype: object)
(75969, Id                               75970
EmployeeName        Richard V Thall Jr
JobTitle             Project Manager 2
BasePay                      152737.03
OvertimePay                        0.0
OtherPay                        1005.0
Benefits                      43497.35
TotalPay                     153742.03
TotalPayBenefits             197239.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75969, dtype: object)
(75970, Id                             75971
EmployeeName          Richard J Hunt
JobTitle            Police Officer 3
BasePay                    122937.01
OvertimePay                 22532.16
OtherPay                    14697.11
Benefits                    37070.01
TotalPay                   160166.28
TotalPayBenefits           197236.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75970, dtype: object)
(75971, Id                                       75972
EmployeeName                     Scott  Pepito
JobTitle            Trans and Dist Line Worker
BasePay                               104642.5
OvertimePay                           39709.69
OtherPay                              16468.66
Benefits                              36408.16
TotalPay                             160820.85
TotalPayBenefits                     197229.01
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 75971, dtype: object)
(75972, Id                             75973
EmployeeName            Gene  Cornyn
JobTitle            Police Officer 2
BasePay                    118518.03
OvertimePay                 34018.39
OtherPay                     8034.24
Benefits                    36640.98
TotalPay                   160570.66
TotalPayBenefits           197211.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75972, dtype: object)
(75973, Id                               75974
EmployeeName          Tyronne J Julian
JobTitle            Transit Supervisor
BasePay                        91927.0
OvertimePay                   64556.59
OtherPay                       7306.98
Benefits                       33415.1
TotalPay                     163790.57
TotalPayBenefits             197205.67
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75973, dtype: object)
(75974, Id                             75975
EmployeeName          Jeffery J Sung
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 24676.42
OtherPay                     5946.26
Benefits                    38017.75
TotalPay                   159178.68
TotalPayBenefits           197196.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75974, dtype: object)
(75975, Id                              75976
EmployeeName        Carlton S Tiamson
JobTitle               Deputy Sheriff
BasePay                      95119.51
OvertimePay                  49530.37
OtherPay                     16726.78
Benefits                     35811.82
TotalPay                    161376.66
TotalPayBenefits            197188.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75975, dtype: object)
(75976, Id                                  75977
EmployeeName               Baqir  Hussain
JobTitle            IS Engineer-Principal
BasePay                          139889.0
OvertimePay                           0.0
OtherPay                         16437.41
Benefits                         40856.19
TotalPay                        156326.41
TotalPayBenefits                 197182.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 75976, dtype: object)
(75977, Id                               75978
EmployeeName        Cleotilde C Pongol
JobTitle              Registered Nurse
BasePay                      141831.58
OvertimePay                    3896.91
OtherPay                        9174.7
Benefits                      42270.42
TotalPay                     154903.19
TotalPayBenefits             197173.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75977, dtype: object)
(75978, Id                          75979
EmployeeName        Kevin J Salas
JobTitle              Firefighter
BasePay                 115693.24
OvertimePay              19233.16
OtherPay                 21290.65
Benefits                 40954.32
TotalPay                156217.05
TotalPayBenefits        197171.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75978, dtype: object)
(75979, Id                           75980
EmployeeName        Andrea L Creed
JobTitle                Sergeant 3
BasePay                  143289.17
OvertimePay                9654.18
OtherPay                   3413.56
Benefits                  40787.07
TotalPay                 156356.91
TotalPayBenefits         197143.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75979, dtype: object)
(75980, Id                              75981
EmployeeName        Theodore R Carter
JobTitle                  Firefighter
BasePay                     110635.73
OvertimePay                  28058.72
OtherPay                     19084.42
Benefits                     39364.96
TotalPay                    157778.87
TotalPayBenefits            197143.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 75980, dtype: object)
(75981, Id                           75982
EmployeeName        David  Assmann
JobTitle                Dep Dir II
BasePay                  145622.95
OvertimePay                    0.0
OtherPay                    1000.0
Benefits                  50490.43
TotalPay                 146622.95
TotalPayBenefits         197113.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75981, dtype: object)
(75982, Id                             75983
EmployeeName        Adam P Bustillos
JobTitle                 Firefighter
BasePay                    116956.71
OvertimePay                 23911.62
OtherPay                    15578.23
Benefits                    40658.14
TotalPay                   156446.56
TotalPayBenefits            197104.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75982, dtype: object)
(75983, Id                             75984
EmployeeName         Marila M Aquino
JobTitle            Registered Nurse
BasePay                    132662.94
OvertimePay                 11370.74
OtherPay                    17523.31
Benefits                    35538.42
TotalPay                   161556.99
TotalPayBenefits           197095.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75983, dtype: object)
(75984, Id                             75985
EmployeeName         Edward  Zeltser
JobTitle            Police Officer 3
BasePay                    123185.41
OvertimePay                 19454.91
OtherPay                    17502.25
Benefits                    36943.24
TotalPay                   160142.57
TotalPayBenefits           197085.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75984, dtype: object)
(75985, Id                            75986
EmployeeName        Ian M Furminger
JobTitle                 Sergeant 3
BasePay                   143289.09
OvertimePay                10373.53
OtherPay                    2577.24
Benefits                   40831.14
TotalPay                  156239.86
TotalPayBenefits           197071.0
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 75985, dtype: object)
(75986, Id                             75987
EmployeeName         Solita M Ejanda
JobTitle            Registered Nurse
BasePay                    142589.85
OvertimePay                  7121.25
OtherPay                     8933.58
Benefits                    38378.98
TotalPay                   158644.68
TotalPayBenefits           197023.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75986, dtype: object)
(75987, Id                             75988
EmployeeName         Arceli P Pasalo
JobTitle            Registered Nurse
BasePay                     138213.0
OvertimePay                  6910.65
OtherPay                      9351.1
Benefits                    42531.92
TotalPay                   154474.75
TotalPayBenefits           197006.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75987, dtype: object)
(75988, Id                             75989
EmployeeName         Henry  Espinoza
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 33556.51
OtherPay                     5761.19
Benefits                    36593.33
TotalPay                    160385.7
TotalPayBenefits           196979.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75988, dtype: object)
(75989, Id                                75990
EmployeeName               Nina P Imura
JobTitle            Clinical Pharmacist
BasePay                        142834.5
OvertimePay                     3629.77
OtherPay                        7224.53
Benefits                       43282.84
TotalPay                       153688.8
TotalPayBenefits              196971.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 75989, dtype: object)
(75990, Id                          75991
EmployeeName        Brian M Ogawa
JobTitle              Inspector 3
BasePay                  74298.01
OvertimePay              18006.33
OtherPay                 84127.19
Benefits                  20517.8
TotalPay                176431.53
TotalPayBenefits        196949.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75990, dtype: object)
(75991, Id                                        75992
EmployeeName                      Benjamin H Ma
JobTitle            Electronic Maintenance Tech
BasePay                                105509.2
OvertimePay                            55030.34
OtherPay                                1663.89
Benefits                               34726.54
TotalPay                              162203.43
TotalPayBenefits                      196929.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 75991, dtype: object)
(75992, Id                                 75993
EmployeeName                 Myo S Chang
JobTitle            Physician Specialist
BasePay                        165575.66
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31344.19
TotalPay                       165575.66
TotalPayBenefits               196919.85
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 75992, dtype: object)
(75993, Id                             75994
EmployeeName        Fidel A Gonzalez
JobTitle            Police Officer 2
BasePay                    123426.64
OvertimePay                 31992.37
OtherPay                     4190.95
Benefits                    37286.84
TotalPay                   159609.96
TotalPayBenefits            196896.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75993, dtype: object)
(75994, Id                                      75995
EmployeeName                 Gregory N Perata
JobTitle            EMT/Paramedic/Firefighter
BasePay                             115986.73
OvertimePay                          39900.26
OtherPay                              5980.58
Benefits                              35008.4
TotalPay                            161867.57
TotalPayBenefits                    196875.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 75994, dtype: object)
(75995, Id                               75996
EmployeeName        Antonio B Balingit
JobTitle              Police Officer 2
BasePay                      117644.29
OvertimePay                   14003.39
OtherPay                      28425.45
Benefits                      36796.55
TotalPay                     160073.13
TotalPayBenefits             196869.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 75995, dtype: object)
(75996, Id                           75997
EmployeeName        Mike G Keohane
JobTitle            Manager V, MTA
BasePay                  144803.54
OvertimePay                    0.0
OtherPay                   1019.23
Benefits                  51046.14
TotalPay                 145822.77
TotalPayBenefits         196868.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 75996, dtype: object)
(75997, Id                             75998
EmployeeName           Jessica H Lee
JobTitle            Registered Nurse
BasePay                    135676.61
OvertimePay                  3276.24
OtherPay                    16605.04
Benefits                    41291.18
TotalPay                   155557.89
TotalPayBenefits           196849.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75997, dtype: object)
(75998, Id                             75999
EmployeeName        Robert J La Eace
JobTitle                 Firefighter
BasePay                    115893.46
OvertimePay                 25317.17
OtherPay                    15260.55
Benefits                    40370.32
TotalPay                   156471.18
TotalPayBenefits            196841.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 75998, dtype: object)
(75999, Id                          76000
EmployeeName        Bob M Palacio
JobTitle               Dep Dir II
BasePay                 143947.89
OvertimePay                   0.0
OtherPay                  2403.85
Benefits                 50473.44
TotalPay                146351.74
TotalPayBenefits        196825.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 75999, dtype: object)
(76000, Id                             76001
EmployeeName         John R Ruggeiro
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 31596.17
OtherPay                     7107.45
Benefits                    37028.66
TotalPay                   159771.63
TotalPayBenefits           196800.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76000, dtype: object)
(76001, Id                            76002
EmployeeName        Richard A Brown
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                 7229.81
OtherPay                    8378.64
Benefits                   41539.01
TotalPay                  155252.45
TotalPayBenefits          196791.46
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76001, dtype: object)
(76002, Id                                           76003
EmployeeName                            David E Lu
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                               71146.85
OtherPay                                   10738.0
Benefits                                  32220.04
TotalPay                                 164566.35
TotalPayBenefits                         196786.39
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76002, dtype: object)
(76003, Id                               76004
EmployeeName             Audrey H Tang
JobTitle            Nurse Practitioner
BasePay                      151259.04
OvertimePay                        0.0
OtherPay                         800.0
Benefits                      44695.64
TotalPay                     152059.04
TotalPayBenefits             196754.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76003, dtype: object)
(76004, Id                           76005
EmployeeName        Larry A Abella
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               19138.32
OtherPay                   19244.6
Benefits                  41406.59
TotalPay                 155339.64
TotalPayBenefits         196746.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76004, dtype: object)
(76005, Id                                  76006
EmployeeName          Joseph A Deleonardo
JobTitle            IS Engineer-Principal
BasePay                          139889.0
OvertimePay                           0.0
OtherPay                         14445.59
Benefits                         42399.54
TotalPay                        154334.59
TotalPayBenefits                196734.13
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76005, dtype: object)
(76006, Id                                       76007
EmployeeName                         Eddy P So
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153294.35
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43434.78
TotalPay                             153294.35
TotalPayBenefits                     196729.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76006, dtype: object)
(76007, Id                                       76008
EmployeeName                        John  Fong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153294.31
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43434.78
TotalPay                             153294.31
TotalPayBenefits                     196729.09
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76007, dtype: object)
(76008, Id                                       76009
EmployeeName               Fernando L Cisneros
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153294.27
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43434.78
TotalPay                             153294.27
TotalPayBenefits                     196729.05
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76008, dtype: object)
(76009, Id                                       76010
EmployeeName                    Thomas P Folks
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.63
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.63
TotalPayBenefits                     196717.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76009, dtype: object)
(76010, Id                                       76011
EmployeeName                    Gary A Fleming
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.62
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.62
TotalPayBenefits                     196717.03
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76010, dtype: object)
(76011, Id                                       76012
EmployeeName                        Annie E Li
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.58
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.58
TotalPayBenefits                     196716.99
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76011, dtype: object)
(76012, Id                                       76013
EmployeeName                     James R Buker
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.57
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.57
TotalPayBenefits                     196716.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76012, dtype: object)
(76013, Id                                       76014
EmployeeName                    Domingo  Jolis
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.57
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.57
TotalPayBenefits                     196716.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76013, dtype: object)
(76014, Id                                       76015
EmployeeName                      Edward H Yee
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.56
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.56
TotalPayBenefits                     196716.97
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76014, dtype: object)
(76015, Id                                       76016
EmployeeName                    Roger Q Nguyen
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.55
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.55
TotalPayBenefits                     196716.96
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76015, dtype: object)
(76016, Id                                       76017
EmployeeName                      Hector A Mau
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.54
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.54
TotalPayBenefits                     196716.95
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76016, dtype: object)
(76017, Id                                       76018
EmployeeName                  Meei Lih L Ahmad
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.53
TotalPayBenefits                     196716.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76017, dtype: object)
(76018, Id                                       76019
EmployeeName                        Boon C Lim
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.53
TotalPayBenefits                     196716.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76018, dtype: object)
(76019, Id                                       76020
EmployeeName              Melissa V Stephenson
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.53
TotalPayBenefits                     196716.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76019, dtype: object)
(76020, Id                                       76021
EmployeeName                        Albert  Ko
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.53
TotalPayBenefits                     196716.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76020, dtype: object)
(76021, Id                                       76022
EmployeeName                Marilyn M Thompson
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.53
TotalPayBenefits                     196716.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76021, dtype: object)
(76022, Id                                       76023
EmployeeName                 Rizal K Villareal
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.52
TotalPayBenefits                     196716.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76022, dtype: object)
(76023, Id                                       76024
EmployeeName                     Paul D Travis
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               43425.4
TotalPay                             153291.53
TotalPayBenefits                     196716.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76023, dtype: object)
(76024, Id                                       76025
EmployeeName                  Rudizon P Alegre
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.52
TotalPayBenefits                     196716.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76024, dtype: object)
(76025, Id                                       76026
EmployeeName                       Qinhua  Liu
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.51
TotalPayBenefits                     196716.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76025, dtype: object)
(76026, Id                                       76027
EmployeeName                        Will  Kwan
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.51
TotalPayBenefits                     196716.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76026, dtype: object)
(76027, Id                                       76028
EmployeeName                      Tony W Leung
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.51
TotalPayBenefits                     196716.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76027, dtype: object)
(76028, Id                                       76029
EmployeeName                     Sherman Y Hom
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.51
TotalPayBenefits                     196716.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76028, dtype: object)
(76029, Id                                       76030
EmployeeName                    Maurice H Chee
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                             153291.51
TotalPayBenefits                     196716.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76029, dtype: object)
(76030, Id                                       76031
EmployeeName                 Brian B Dusseault
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                              153291.5
TotalPayBenefits                     196716.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76030, dtype: object)
(76031, Id                                       76032
EmployeeName             Severino A Caranto-Jr
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                              153291.5
TotalPayBenefits                     196716.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76031, dtype: object)
(76032, Id                                        76033
EmployeeName                     Louis J Maffei
JobTitle            Sr Light Rail Veh Equip Eng
BasePay                                153291.5
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               43425.41
TotalPay                               153291.5
TotalPayBenefits                      196716.91
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76032, dtype: object)
(76033, Id                                       76034
EmployeeName                       Alan T Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43425.41
TotalPay                              153291.5
TotalPayBenefits                     196716.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76033, dtype: object)
(76034, Id                                       76035
EmployeeName                    Tamerat  Awetu
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43422.16
TotalPay                             153291.51
TotalPayBenefits                     196713.67
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76034, dtype: object)
(76035, Id                           76036
EmployeeName         Robert M Daly
JobTitle            Deputy Sheriff
BasePay                   95123.01
OvertimePay               58381.75
OtherPay                   8777.83
Benefits                  34429.56
TotalPay                 162282.59
TotalPayBenefits         196712.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76035, dtype: object)
(76036, Id                                       76037
EmployeeName                     Teming  Hsueh
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153294.27
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43416.76
TotalPay                             153294.27
TotalPayBenefits                     196711.03
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76036, dtype: object)
(76037, Id                                       76038
EmployeeName                      Peter K Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.6
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43418.92
TotalPay                              153291.6
TotalPayBenefits                     196710.52
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76037, dtype: object)
(76038, Id                                          76039
EmployeeName                          Patrick  Ho
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                  98017.51
OvertimePay                               54120.5
OtherPay                                  9539.63
Benefits                                 35030.76
TotalPay                                161677.64
TotalPayBenefits                         196708.4
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76038, dtype: object)
(76039, Id                             76040
EmployeeName            John A Smith
JobTitle            Registered Nurse
BasePay                    138700.59
OvertimePay                  8286.37
OtherPay                    13654.44
Benefits                    36064.94
TotalPay                    160641.4
TotalPayBenefits           196706.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76039, dtype: object)
(76040, Id                                         76041
EmployeeName                  Michael K Spillane
JobTitle            Utility Plumber Supervisor 1
BasePay                                111614.62
OvertimePay                             39167.25
OtherPay                                 8723.94
Benefits                                37199.82
TotalPay                               159505.81
TotalPayBenefits                       196705.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76040, dtype: object)
(76041, Id                                       76042
EmployeeName                 Iqbalbhai S Dhapa
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153288.8
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43416.05
TotalPay                              153288.8
TotalPayBenefits                     196704.85
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76041, dtype: object)
(76042, Id                                       76043
EmployeeName                    George B Poust
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153288.79
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43416.05
TotalPay                             153288.79
TotalPayBenefits                     196704.84
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76042, dtype: object)
(76043, Id                                       76044
EmployeeName                     Bonnie  Jones
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153288.78
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43416.05
TotalPay                             153288.78
TotalPayBenefits                     196704.83
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76043, dtype: object)
(76044, Id                                       76045
EmployeeName                  Andrzej  Wilczak
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153288.78
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43416.05
TotalPay                             153288.78
TotalPayBenefits                     196704.83
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76044, dtype: object)
(76045, Id                                       76046
EmployeeName                     Jorge  Garcia
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               153291.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43408.51
TotalPay                              153291.5
TotalPayBenefits                     196700.01
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76045, dtype: object)
(76046, Id                           76047
EmployeeName        Jeannie M Wong
JobTitle                Dep Dir II
BasePay                  144270.88
OvertimePay                    0.0
OtherPay                    2060.0
Benefits                  50367.19
TotalPay                 146330.88
TotalPayBenefits         196698.07
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76046, dtype: object)
(76047, Id                                76048
EmployeeName        Antonieta R Gaviola
JobTitle               Registered Nurse
BasePay                        142425.0
OvertimePay                      7912.5
OtherPay                        1585.44
Benefits                       44768.33
TotalPay                      151922.94
TotalPayBenefits              196691.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76047, dtype: object)
(76048, Id                          76049
EmployeeName        Barrett  Chan
JobTitle               Sergeant 3
BasePay                 143289.13
OvertimePay               8043.43
OtherPay                   4299.5
Benefits                 41051.97
TotalPay                155632.06
TotalPayBenefits        196684.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76048, dtype: object)
(76049, Id                             76050
EmployeeName          Adrian C Payne
JobTitle            Police Officer 2
BasePay                    112583.96
OvertimePay                 19974.77
OtherPay                    27591.53
Benefits                    36533.17
TotalPay                   160150.26
TotalPayBenefits           196683.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76049, dtype: object)
(76050, Id                                       76051
EmployeeName                 Houshang  Esmaili
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              153291.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              43391.61
TotalPay                             153291.51
TotalPayBenefits                     196683.12
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76050, dtype: object)
(76051, Id                           76052
EmployeeName        Darrell  Stone
JobTitle               Firefighter
BasePay                  116956.69
OvertimePay               20069.66
OtherPay                  18431.22
Benefits                  41210.74
TotalPay                 155457.57
TotalPayBenefits         196668.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76051, dtype: object)
(76052, Id                                76053
EmployeeName        Marianne K Schulman
JobTitle                     Manager IV
BasePay                       144240.61
OvertimePay                         0.0
OtherPay                        2019.19
Benefits                        50396.1
TotalPay                       146259.8
TotalPayBenefits               196655.9
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76052, dtype: object)
(76053, Id                           76054
EmployeeName        David J Chavez
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay               17011.86
OtherPay                  20807.63
Benefits                  41855.95
TotalPay                 154776.19
TotalPayBenefits         196632.14
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76053, dtype: object)
(76054, Id                               76055
EmployeeName        Crispin J Hollings
JobTitle                    Manager IV
BasePay                      144667.47
OvertimePay                        0.0
OtherPay                        1615.4
Benefits                       50345.3
TotalPay                     146282.87
TotalPayBenefits             196628.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76054, dtype: object)
(76055, Id                                   76056
EmployeeName        Raquel L Alfonzo-Yumul
JobTitle                  Registered Nurse
BasePay                          141633.75
OvertimePay                        3679.32
OtherPay                           6071.87
Benefits                          45238.88
TotalPay                         151384.94
TotalPayBenefits                 196623.82
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76055, dtype: object)
(76056, Id                           76057
EmployeeName        Nancy A George
JobTitle                Manager IV
BasePay                   144240.6
OvertimePay                    0.0
OtherPay                   2019.19
Benefits                  50356.15
TotalPay                 146259.79
TotalPayBenefits         196615.94
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76056, dtype: object)
(76057, Id                          76058
EmployeeName         Paul T Daijo
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              27926.48
OtherPay                 11606.94
Benefits                 40080.59
TotalPay                156490.13
TotalPayBenefits        196570.72
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76057, dtype: object)
(76058, Id                             76059
EmployeeName          Gian P Tozzini
JobTitle            Police Officer 3
BasePay                    125564.07
OvertimePay                 11103.67
OtherPay                    22329.59
Benefits                    37568.43
TotalPay                   158997.33
TotalPayBenefits           196565.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76058, dtype: object)
(76059, Id                              76060
EmployeeName        Gary G Buckner Jr
JobTitle                   Sergeant 2
BasePay                     126892.01
OvertimePay                   14821.6
OtherPay                     17045.89
Benefits                     37784.03
TotalPay                     158759.5
TotalPayBenefits            196543.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76059, dtype: object)
(76060, Id                           76061
EmployeeName           Victor T Le
JobTitle            Deputy Sheriff
BasePay                   91099.59
OvertimePay               56935.67
OtherPay                  14185.09
Benefits                  34306.62
TotalPay                 162220.35
TotalPayBenefits         196526.97
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76060, dtype: object)
(76061, Id                            76062
EmployeeName        Kenneth S Lomba
JobTitle             Deputy Sheriff
BasePay                     90851.4
OvertimePay                58676.21
OtherPay                   12787.25
Benefits                   34181.82
TotalPay                  162314.86
TotalPayBenefits          196496.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76061, dtype: object)
(76062, Id                                76063
EmployeeName        Geraldine M Peoples
JobTitle             Nurse Practitioner
BasePay                       152107.21
OvertimePay                         0.0
OtherPay                          250.0
Benefits                       44134.26
TotalPay                      152357.21
TotalPayBenefits              196491.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76062, dtype: object)
(76063, Id                            76064
EmployeeName        Michael L Brown
JobTitle                 Manager IV
BasePay                   146120.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   50360.36
TotalPay                  146120.01
TotalPayBenefits          196480.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76063, dtype: object)
(76064, Id                           76065
EmployeeName        Wayman  Duncan
JobTitle               Firefighter
BasePay                  116956.75
OvertimePay               18708.63
OtherPay                  19404.11
Benefits                  41406.59
TotalPay                 155069.49
TotalPayBenefits         196476.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76064, dtype: object)
(76065, Id                               76066
EmployeeName        Kimberly A Grinton
JobTitle                   Firefighter
BasePay                      115893.43
OvertimePay                   21232.81
OtherPay                      18399.34
Benefits                      40932.01
TotalPay                     155525.58
TotalPayBenefits             196457.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76065, dtype: object)
(76066, Id                             76067
EmployeeName          Roselo  Pascua
JobTitle            Police Officer 3
BasePay                    123471.07
OvertimePay                 23085.77
OtherPay                    12859.31
Benefits                    37035.84
TotalPay                   159416.15
TotalPayBenefits           196451.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76066, dtype: object)
(76067, Id                          76068
EmployeeName         John C Kraus
JobTitle               Manager IV
BasePay                 144887.23
OvertimePay                   0.0
OtherPay                   1250.0
Benefits                 50313.21
TotalPay                146137.23
TotalPayBenefits        196450.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76067, dtype: object)
(76068, Id                            76069
EmployeeName           Albert C Hom
JobTitle            Insp, Fire Dept
BasePay                    139644.0
OvertimePay                 6887.15
OtherPay                    8378.64
Benefits                   41539.01
TotalPay                  154909.79
TotalPayBenefits           196448.8
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76068, dtype: object)
(76069, Id                                           76070
EmployeeName                         John J Nelson
JobTitle            Transmission Line Supervisor 1
BasePay                                  117347.52
OvertimePay                               26780.89
OtherPay                                  15906.59
Benefits                                  36410.64
TotalPay                                  160035.0
TotalPayBenefits                         196445.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76069, dtype: object)
(76070, Id                                76071
EmployeeName        Melandro B Tiongson
JobTitle               Registered Nurse
BasePay                       129015.21
OvertimePay                     7518.89
OtherPay                       23959.56
Benefits                       35919.87
TotalPay                      160493.66
TotalPayBenefits              196413.53
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76070, dtype: object)
(76071, Id                                76072
EmployeeName        Stephen D Benzinger
JobTitle                     Sergeant 3
BasePay                       141253.17
OvertimePay                     6007.67
OtherPay                        8929.19
Benefits                       40212.43
TotalPay                      156190.03
TotalPayBenefits              196402.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76071, dtype: object)
(76072, Id                            76073
EmployeeName        Kerry E O'Neill
JobTitle                 Manager IV
BasePay                    143856.0
OvertimePay                     0.0
OtherPay                     2500.0
Benefits                   50041.09
TotalPay                   146356.0
TotalPayBenefits          196397.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76072, dtype: object)
(76073, Id                                          76074
EmployeeName                  Emmanuel Q Enriquez
JobTitle            Electrl Trnst Mech, Asst Sprv
BasePay                                  88756.51
OvertimePay                              50897.73
OtherPay                                 25076.27
Benefits                                 31664.88
TotalPay                                164730.51
TotalPayBenefits                        196395.39
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76073, dtype: object)
(76074, Id                             76075
EmployeeName           Marva E Wintz
JobTitle            Registered Nurse
BasePay                     141600.8
OvertimePay                  5697.01
OtherPay                     5993.39
Benefits                    43102.73
TotalPay                    153291.2
TotalPayBenefits           196393.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76074, dtype: object)
(76075, Id                           76076
EmployeeName        Gregory R Dare
JobTitle                Sergeant 3
BasePay                  143289.15
OvertimePay                5441.72
OtherPay                   6337.83
Benefits                  41306.27
TotalPay                  155068.7
TotalPayBenefits         196374.97
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76075, dtype: object)
(76076, Id                          76077
EmployeeName         Tomie A Kato
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              16697.75
OtherPay                 21193.78
Benefits                 41516.54
TotalPay                154848.23
TotalPayBenefits        196364.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76076, dtype: object)
(76077, Id                             76078
EmployeeName           Thomas M King
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 14231.83
OtherPay                    14158.79
Benefits                    39414.32
TotalPay                   156946.62
TotalPayBenefits           196360.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76077, dtype: object)
(76078, Id                            76079
EmployeeName        Janice  Hoaglin
JobTitle                Firefighter
BasePay                   116956.72
OvertimePay                 19124.2
OtherPay                   18872.48
Benefits                   41406.59
TotalPay                   154953.4
TotalPayBenefits          196359.99
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76078, dtype: object)
(76079, Id                          76080
EmployeeName        Bruce  Samson
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              18765.79
OtherPay                 19191.49
Benefits                 41437.81
TotalPay                154913.97
TotalPayBenefits        196351.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76079, dtype: object)
(76080, Id                                        76081
EmployeeName                       Cheung F Lee
JobTitle            Electronic Maintenance Tech
BasePay                                105504.9
OvertimePay                            43223.24
OtherPay                               11100.49
Benefits                               36504.18
TotalPay                              159828.63
TotalPayBenefits                      196332.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76080, dtype: object)
(76081, Id                                         76082
EmployeeName                     Mark A Hardeman
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.46
OvertimePay                                  0.0
OtherPay                                16654.21
Benefits                                45006.01
TotalPay                               151321.67
TotalPayBenefits                       196327.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76081, dtype: object)
(76082, Id                            76083
EmployeeName        Jayme  Campbell
JobTitle                 Sergeant 3
BasePay                   143289.07
OvertimePay                 2400.62
OtherPay                     9815.8
Benefits                    40811.6
TotalPay                  155505.49
TotalPayBenefits          196317.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76082, dtype: object)
(76083, Id                            76084
EmployeeName        Regiland S Pena
JobTitle             Police Officer
BasePay                   110228.45
OvertimePay                35400.32
OtherPay                   16132.32
Benefits                   34555.97
TotalPay                  161761.09
TotalPayBenefits          196317.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76083, dtype: object)
(76084, Id                            76085
EmployeeName        Sergio A Chavez
JobTitle             Deputy Sheriff
BasePay                    95119.52
OvertimePay                54907.35
OtherPay                   11693.15
Benefits                   34584.01
TotalPay                  161720.02
TotalPayBenefits          196304.03
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76084, dtype: object)
(76085, Id                             76086
EmployeeName         Phyllis A Leach
JobTitle            Registered Nurse
BasePay                    123264.91
OvertimePay                  7872.95
OtherPay                    24233.82
Benefits                    40927.75
TotalPay                   155371.68
TotalPayBenefits           196299.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76085, dtype: object)
(76086, Id                                76087
EmployeeName        Jennifer R Kanenaga
JobTitle             Nurse Practitioner
BasePay                       150852.52
OvertimePay                         0.0
OtherPay                          250.0
Benefits                       45187.46
TotalPay                      151102.52
TotalPayBenefits              196289.98
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76086, dtype: object)
(76087, Id                                         76088
EmployeeName                      Eugene D Adams
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.89
OvertimePay                              7584.82
OtherPay                                  8993.3
Benefits                                43765.03
TotalPay                               152481.01
TotalPayBenefits                       196246.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76087, dtype: object)
(76088, Id                             76089
EmployeeName        Kelvin A Sanders
JobTitle                  Sergeant 2
BasePay                     126892.0
OvertimePay                 18643.45
OtherPay                    12641.89
Benefits                    38048.56
TotalPay                   158177.34
TotalPayBenefits            196225.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76088, dtype: object)
(76089, Id                                       76090
EmployeeName                   Ryan P Cayabyab
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              146507.91
OvertimePay                                0.0
OtherPay                               6363.54
Benefits                              43352.47
TotalPay                             152871.45
TotalPayBenefits                     196223.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76089, dtype: object)
(76090, Id                             76091
EmployeeName          Bella L Diones
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                  7121.25
OtherPay                     1608.52
Benefits                    45061.07
TotalPay                   151154.78
TotalPayBenefits           196215.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76090, dtype: object)
(76091, Id                               76092
EmployeeName        Ricardo D Santiago
JobTitle              Police Officer 2
BasePay                       121068.0
OvertimePay                   34506.08
OtherPay                       4040.66
Benefits                      36600.58
TotalPay                     159614.74
TotalPayBenefits             196215.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76091, dtype: object)
(76092, Id                                        76093
EmployeeName                  Raymund N Ramirez
JobTitle            Communications Systems Tech
BasePay                                109809.0
OvertimePay                            42093.47
OtherPay                                9309.69
Benefits                               34954.79
TotalPay                              161212.16
TotalPayBenefits                      196166.95
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76092, dtype: object)
(76093, Id                           76094
EmployeeName        Tracy J Burris
JobTitle                Manager IV
BasePay                  142927.99
OvertimePay                    0.0
OtherPay                    3000.0
Benefits                  50228.22
TotalPay                 145927.99
TotalPayBenefits         196156.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76093, dtype: object)
(76094, Id                                      76095
EmployeeName                    Tal H Klement
JobTitle            Attorney (Civil/Criminal)
BasePay                              151339.9
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             43561.62
TotalPay                             152589.9
TotalPayBenefits                    196151.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76094, dtype: object)
(76095, Id                          76096
EmployeeName        Bruce F Seale
JobTitle               Manager IV
BasePay                 143856.02
OvertimePay                   0.0
OtherPay                  2094.59
Benefits                 50154.69
TotalPay                145950.61
TotalPayBenefits         196105.3
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76095, dtype: object)
(76096, Id                            76097
EmployeeName        Donna J Spirlin
JobTitle                Firefighter
BasePay                   115932.01
OvertimePay                25806.53
OtherPay                   14168.18
Benefits                   40194.47
TotalPay                  155906.72
TotalPayBenefits          196101.19
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76096, dtype: object)
(76097, Id                            76098
EmployeeName        Ketty S Fedigan
JobTitle            Insp, Fire Dept
BasePay                    142084.0
OvertimePay                  411.17
OtherPay                   11533.13
Benefits                   42064.56
TotalPay                   154028.3
TotalPayBenefits          196092.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76097, dtype: object)
(76098, Id                               76099
EmployeeName        Roberto M Lombardi
JobTitle                    Manager IV
BasePay                      143817.37
OvertimePay                        0.0
OtherPay                        2000.0
Benefits                      50264.06
TotalPay                     145817.37
TotalPayBenefits             196081.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76098, dtype: object)
(76099, Id                           76100
EmployeeName        Gerald C Gauer
JobTitle               Firefighter
BasePay                  116956.73
OvertimePay               21502.98
OtherPay                  16544.37
Benefits                  41075.56
TotalPay                 155004.08
TotalPayBenefits         196079.64
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76099, dtype: object)
(76100, Id                             76101
EmployeeName           Tim  Anderson
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 25412.36
OtherPay                    10094.32
Benefits                     37081.4
TotalPay                   158977.69
TotalPayBenefits           196059.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76100, dtype: object)
(76101, Id                               76102
EmployeeName        Catherine M Abrams
JobTitle                   Firefighter
BasePay                       101686.1
OvertimePay                   41121.69
OtherPay                      13656.62
Benefits                      39569.62
TotalPay                     156464.41
TotalPayBenefits             196034.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76101, dtype: object)
(76102, Id                             76103
EmployeeName        William J Conley
JobTitle                  Sergeant 3
BasePay                    143289.13
OvertimePay                  5831.47
OtherPay                     6036.42
Benefits                    40876.26
TotalPay                   155157.02
TotalPayBenefits           196033.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76102, dtype: object)
(76103, Id                               76104
EmployeeName        Norman G Del Prado
JobTitle             Project Manager 3
BasePay                       152528.6
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      43448.98
TotalPay                      152528.6
TotalPayBenefits             195977.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76103, dtype: object)
(76104, Id                             76105
EmployeeName               Ben  Chan
JobTitle            Train Controller
BasePay                     108219.6
OvertimePay                 35258.03
OtherPay                    14455.67
Benefits                    38038.77
TotalPay                    157933.3
TotalPayBenefits           195972.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76104, dtype: object)
(76105, Id                             76106
EmployeeName        Andrico Q Penick
JobTitle                   Manager V
BasePay                    154861.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    41102.01
TotalPay                   154861.51
TotalPayBenefits           195963.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76105, dtype: object)
(76106, Id                                     76107
EmployeeName                Yeoman I Elisaia
JobTitle            Communication Line Sprv1
BasePay                             95099.25
OvertimePay                         57670.85
OtherPay                            10109.86
Benefits                            33083.15
TotalPay                           162879.96
TotalPayBenefits                   195963.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76106, dtype: object)
(76107, Id                               76108
EmployeeName        Julie B Kirschbaum
JobTitle             Project Manager 3
BasePay                      154068.57
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      41854.49
TotalPay                     154068.57
TotalPayBenefits             195923.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76107, dtype: object)
(76108, Id                          76109
EmployeeName          Scott B Hom
JobTitle               Sergeant 2
BasePay                  130532.0
OvertimePay               12013.9
OtherPay                 14838.54
Benefits                 38534.56
TotalPay                157384.44
TotalPayBenefits         195919.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76108, dtype: object)
(76109, Id                           76110
EmployeeName        Mark A Yesitis
JobTitle                Sergeant 3
BasePay                  129343.16
OvertimePay                6212.78
OtherPay                  22113.52
Benefits                  38218.38
TotalPay                 157669.46
TotalPayBenefits         195887.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76109, dtype: object)
(76110, Id                             76111
EmployeeName        Stephanie M Long
JobTitle                  Sergeant 3
BasePay                    143289.02
OvertimePay                  6546.72
OtherPay                     5237.51
Benefits                    40804.33
TotalPay                   155073.25
TotalPayBenefits           195877.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76110, dtype: object)
(76111, Id                                  76112
EmployeeName                 Jerome S Hou
JobTitle            IS Engineer-Principal
BasePay                         149839.02
OvertimePay                           0.0
OtherPay                           2772.0
Benefits                         43266.49
TotalPay                        152611.02
TotalPayBenefits                195877.51
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76111, dtype: object)
(76112, Id                             76113
EmployeeName        Tracy L O'Keeffe
JobTitle                 Firefighter
BasePay                    116956.72
OvertimePay                  19046.2
OtherPay                    18643.86
Benefits                    41210.75
TotalPay                   154646.78
TotalPayBenefits           195857.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76112, dtype: object)
(76113, Id                             76114
EmployeeName        Joseph T Everson
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 24758.35
OtherPay                    13422.32
Benefits                    36600.59
TotalPay                   159248.68
TotalPayBenefits           195849.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76113, dtype: object)
(76114, Id                              76115
EmployeeName        Nicholas A Suslow
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  27573.13
OtherPay                     10604.33
Benefits                      36603.0
TotalPay                    159245.46
TotalPayBenefits            195848.46
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76114, dtype: object)
(76115, Id                                 76116
EmployeeName        Elizabeth  Rosenberg
JobTitle                Registered Nurse
BasePay                        140537.42
OvertimePay                          0.0
OtherPay                         9027.67
Benefits                        46280.08
TotalPay                       149565.09
TotalPayBenefits               195845.17
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76115, dtype: object)
(76116, Id                                76117
EmployeeName        Christopher  Candia
JobTitle                    Firefighter
BasePay                       115184.64
OvertimePay                    25963.16
OtherPay                       14515.87
Benefits                       40150.78
TotalPay                      155663.67
TotalPayBenefits              195814.45
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76116, dtype: object)
(76117, Id                            76118
EmployeeName        Brian R Hopkins
JobTitle             Police Officer
BasePay                   116478.03
OvertimePay                36746.57
OtherPay                    6846.86
Benefits                   35732.23
TotalPay                  160071.46
TotalPayBenefits          195803.69
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76117, dtype: object)
(76118, Id                             76119
EmployeeName           Francisco  Ho
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                  7972.39
OtherPay                    27164.44
Benefits                     37190.6
TotalPay                   158607.97
TotalPayBenefits           195798.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76118, dtype: object)
(76119, Id                          76120
EmployeeName         John  Cleary
JobTitle              Inspector 3
BasePay                  45374.87
OvertimePay              20013.54
OtherPay                118400.18
Benefits                 12000.26
TotalPay                183788.59
TotalPayBenefits        195788.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76119, dtype: object)
(76120, Id                             76121
EmployeeName          Angel G Lozano
JobTitle            Police Officer 3
BasePay                     120338.1
OvertimePay                 32822.94
OtherPay                     7143.95
Benefits                    35483.18
TotalPay                   160304.99
TotalPayBenefits           195788.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76120, dtype: object)
(76121, Id                              76122
EmployeeName        Geraldine M Rayca
JobTitle            Project Manager 2
BasePay                     150819.02
OvertimePay                       0.0
OtherPay                       1685.1
Benefits                     43263.22
TotalPay                    152504.12
TotalPayBenefits            195767.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76121, dtype: object)
(76122, Id                                  76123
EmployeeName        Mary Elizabeth  Lerma
JobTitle                       Manager IV
BasePay                          145463.1
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         50288.79
TotalPay                         145463.1
TotalPayBenefits                195751.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76122, dtype: object)
(76123, Id                            76124
EmployeeName        Kevin E Van Hoy
JobTitle                 Manager IV
BasePay                   144145.01
OvertimePay                     0.0
OtherPay                    1387.24
Benefits                   50204.68
TotalPay                  145532.25
TotalPayBenefits          195736.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76123, dtype: object)
(76124, Id                             76125
EmployeeName         Giuseppe  Festa
JobTitle            Police Officer 3
BasePay                     121068.0
OvertimePay                 21197.43
OtherPay                    16751.78
Benefits                    36714.68
TotalPay                   159017.21
TotalPayBenefits           195731.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76124, dtype: object)
(76125, Id                            76126
EmployeeName        Joseph M Horton
JobTitle                Firefighter
BasePay                   115446.87
OvertimePay                 29420.3
OtherPay                   11337.47
Benefits                   39512.55
TotalPay                  156204.64
TotalPayBenefits          195717.19
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76125, dtype: object)
(76126, Id                             76127
EmployeeName        Dung Hoa  Nguyen
JobTitle                  Manager IV
BasePay                    145446.99
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    50235.99
TotalPay                   145446.99
TotalPayBenefits           195682.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76126, dtype: object)
(76127, Id                           76128
EmployeeName        Shane M Murphy
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               21736.78
OtherPay                  16255.09
Benefits                  40732.54
TotalPay                 154948.58
TotalPayBenefits         195681.12
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76127, dtype: object)
(76128, Id                                      76129
EmployeeName                   Bryan J Hendon
JobTitle            EMT/Paramedic/Firefighter
BasePay                             132687.12
OvertimePay                           1953.45
OtherPay                             16585.85
Benefits                             44446.56
TotalPay                            151226.42
TotalPayBenefits                    195672.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76128, dtype: object)
(76129, Id                                    76130
EmployeeName              Raymond J Mattias
JobTitle            Sewer Repair Supervisor
BasePay                           106256.06
OvertimePay                        18090.21
OtherPay                           36180.81
Benefits                           35145.76
TotalPay                          160527.08
TotalPayBenefits                  195672.84
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76129, dtype: object)
(76130, Id                             76131
EmployeeName        Sunny O Schwartz
JobTitle                  Manager II
BasePay                    143843.93
OvertimePay                      0.0
OtherPay                      1500.0
Benefits                    50264.03
TotalPay                   145343.93
TotalPayBenefits           195607.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76130, dtype: object)
(76131, Id                                           76132
EmployeeName                        James T Ramsey
JobTitle            Inspector, (Police Department)
BasePay                                   65130.06
OvertimePay                                5166.27
OtherPay                                  106479.0
Benefits                                  18816.41
TotalPay                                 176775.33
TotalPayBenefits                         195591.74
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76131, dtype: object)
(76132, Id                             76133
EmployeeName        Russell K Gordon
JobTitle                  Sergeant 3
BasePay                    143289.15
OvertimePay                  7415.28
OtherPay                     3753.16
Benefits                    41119.43
TotalPay                   154457.59
TotalPayBenefits           195577.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76132, dtype: object)
(76133, Id                          76134
EmployeeName           Nelly  Lee
JobTitle              Manager III
BasePay                 143633.46
OvertimePay                   0.0
OtherPay                  1668.33
Benefits                 50263.41
TotalPay                145301.79
TotalPayBenefits         195565.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76133, dtype: object)
(76134, Id                             76135
EmployeeName         Susan  Rolovich
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 31244.63
OtherPay                     3339.36
Benefits                    37502.71
TotalPay                   158055.03
TotalPayBenefits           195557.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76134, dtype: object)
(76135, Id                               76136
EmployeeName             Johnnie  Wong
JobTitle            Transit Supervisor
BasePay                       86942.41
OvertimePay                   64635.79
OtherPay                      10531.35
Benefits                      33432.61
TotalPay                     162109.55
TotalPayBenefits             195542.16
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76135, dtype: object)
(76136, Id                           76137
EmployeeName        Sharon W Kwong
JobTitle               Manager III
BasePay                  145357.58
OvertimePay                    0.0
OtherPay                      26.8
Benefits                  50148.31
TotalPay                 145384.38
TotalPayBenefits         195532.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76136, dtype: object)
(76137, Id                           76138
EmployeeName        Philip A Galli
JobTitle                Manager IV
BasePay                  143850.63
OvertimePay                    0.0
OtherPay                   1451.84
Benefits                  50214.58
TotalPay                 145302.47
TotalPayBenefits         195517.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76137, dtype: object)
(76138, Id                               76139
EmployeeName        Susannah G Robbins
JobTitle                   Dept Head I
BasePay                      143054.26
OvertimePay                        0.0
OtherPay                        1069.0
Benefits                      51373.36
TotalPay                     144123.26
TotalPayBenefits             195496.62
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76138, dtype: object)
(76139, Id                                76140
EmployeeName                   Fang  Lu
JobTitle            IS Project Director
BasePay                       144686.27
OvertimePay                         0.0
OtherPay                        6311.76
Benefits                       44488.65
TotalPay                      150998.03
TotalPayBenefits              195486.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76139, dtype: object)
(76140, Id                             76141
EmployeeName        Martha L Knutzen
JobTitle                  Manager IV
BasePay                    144086.78
OvertimePay                      0.0
OtherPay                     1230.74
Benefits                    50159.96
TotalPay                   145317.52
TotalPayBenefits           195477.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76140, dtype: object)
(76141, Id                                     76142
EmployeeName        Patrick Joseph  Mulligan
JobTitle                         Manager III
BasePay                            142100.41
OvertimePay                              0.0
OtherPay                              2000.0
Benefits                            51364.13
TotalPay                           144100.41
TotalPayBenefits                   195464.54
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76141, dtype: object)
(76142, Id                                      76143
EmployeeName                  Donald  Barrick
JobTitle            EMT/Paramedic/Firefighter
BasePay                             130990.64
OvertimePay                           5589.03
OtherPay                             15207.01
Benefits                             43669.07
TotalPay                            151786.68
TotalPayBenefits                    195455.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76142, dtype: object)
(76143, Id                               76144
EmployeeName                Judy  Gaer
JobTitle            Nurse Practitioner
BasePay                      150558.07
OvertimePay                        0.0
OtherPay                       1007.21
Benefits                      43870.72
TotalPay                     151565.28
TotalPayBenefits              195436.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76143, dtype: object)
(76144, Id                           76145
EmployeeName        Herman P Jones
JobTitle               Inspector 3
BasePay                   68991.04
OvertimePay                1465.66
OtherPay                 105465.61
Benefits                  19509.95
TotalPay                 175922.31
TotalPayBenefits         195432.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76144, dtype: object)
(76145, Id                                     76146
EmployeeName                  Brian S Daniel
JobTitle            Sr Power Generation Tech
BasePay                            110608.59
OvertimePay                         41954.24
OtherPay                             6279.73
Benefits                            36533.15
TotalPay                           158842.56
TotalPayBenefits                   195375.71
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76145, dtype: object)
(76146, Id                                  76147
EmployeeName              Richie J Owyang
JobTitle            Senior Deputy Sheriff
BasePay                          105428.7
OvertimePay                      31046.26
OtherPay                         20011.52
Benefits                         38856.54
TotalPay                        156486.48
TotalPayBenefits                195343.02
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76146, dtype: object)
(76147, Id                          76148
EmployeeName        Linda C Simon
JobTitle               Dep Dir II
BasePay                 143870.97
OvertimePay                   0.0
OtherPay                   1250.0
Benefits                 50217.19
TotalPay                145120.97
TotalPayBenefits        195338.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76147, dtype: object)
(76148, Id                           76149
EmployeeName           Scott R Neu
JobTitle            Deputy Sheriff
BasePay                   95123.02
OvertimePay               55583.81
OtherPay                  10332.46
Benefits                  34229.28
TotalPay                 161039.29
TotalPayBenefits         195268.57
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76148, dtype: object)
(76149, Id                          76150
EmployeeName          Nancy L Hom
JobTitle               Manager IV
BasePay                 144048.34
OvertimePay                   0.0
OtherPay                   1009.6
Benefits                 50204.47
TotalPay                145057.94
TotalPayBenefits        195262.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76149, dtype: object)
(76150, Id                          76151
EmployeeName        John K F Choy
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay               12967.3
OtherPay                 23894.04
Benefits                 41406.58
TotalPay                153818.06
TotalPayBenefits        195224.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76150, dtype: object)
(76151, Id                             76152
EmployeeName        Michael J Warren
JobTitle                  Manager IV
BasePay                    143614.74
OvertimePay                      0.0
OtherPay                     1517.29
Benefits                    50087.71
TotalPay                   145132.03
TotalPayBenefits           195219.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76151, dtype: object)
(76152, Id                             76153
EmployeeName        Clifford T Chiba
JobTitle              Deputy Sheriff
BasePay                     94647.04
OvertimePay                 58422.76
OtherPay                     8300.38
Benefits                    33823.25
TotalPay                   161370.18
TotalPayBenefits           195193.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76152, dtype: object)
(76153, Id                             76154
EmployeeName            Bob  Massola
JobTitle            Police Officer 3
BasePay                     64022.01
OvertimePay                 17604.35
OtherPay                    96232.03
Benefits                    17333.97
TotalPay                   177858.39
TotalPayBenefits           195192.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76153, dtype: object)
(76154, Id                           76155
EmployeeName        Kendall W Gary
JobTitle                Manager IV
BasePay                  143856.03
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  51294.26
TotalPay                 143856.03
TotalPayBenefits         195150.29
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76154, dtype: object)
(76155, Id                          76156
EmployeeName        Laura  Pagano
JobTitle               Manager IV
BasePay                 143856.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 51294.26
TotalPay                143856.01
TotalPayBenefits        195150.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76155, dtype: object)
(76156, Id                           76157
EmployeeName        Daniel R Roach
JobTitle            Manager V, MTA
BasePay                   143856.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  51294.26
TotalPay                  143856.0
TotalPayBenefits         195150.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76156, dtype: object)
(76157, Id                             76158
EmployeeName          Marlin O Gomez
JobTitle            Registered Nurse
BasePay                    129195.73
OvertimePay                  2382.93
OtherPay                    18573.24
Benefits                    44974.16
TotalPay                    150151.9
TotalPayBenefits           195126.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76157, dtype: object)
(76158, Id                              76159
EmployeeName        Michal  Olkiewicz
JobTitle             Police Officer 3
BasePay                     123471.09
OvertimePay                  28286.59
OtherPay                      6306.46
Benefits                      37055.2
TotalPay                    158064.14
TotalPayBenefits            195119.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76158, dtype: object)
(76159, Id                          76160
EmployeeName        Raymond A Cox
JobTitle               Sergeant 3
BasePay                 143289.13
OvertimePay               7062.89
OtherPay                   3931.7
Benefits                  40825.4
TotalPay                154283.72
TotalPayBenefits        195109.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76159, dtype: object)
(76160, Id                               76161
EmployeeName        Romeo E De La Roca
JobTitle              Registered Nurse
BasePay                      137965.01
OvertimePay                        0.0
OtherPay                       10999.1
Benefits                      46142.62
TotalPay                     148964.11
TotalPayBenefits             195106.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76160, dtype: object)
(76161, Id                               76162
EmployeeName        Michelle  Allersma
JobTitle                   Dep Dir III
BasePay                       143373.9
OvertimePay                        0.0
OtherPay                        1540.0
Benefits                      50172.65
TotalPay                      144913.9
TotalPayBenefits             195086.55
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76161, dtype: object)
(76162, Id                             76163
EmployeeName        Peter W Schlegle
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                  12599.2
OtherPay                    20520.81
Benefits                    38492.71
TotalPay                   156591.13
TotalPayBenefits           195083.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76162, dtype: object)
(76163, Id                           76164
EmployeeName        Alan  Pavkovic
JobTitle                 Manager V
BasePay                  144908.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  50173.36
TotalPay                 144908.54
TotalPayBenefits          195081.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76163, dtype: object)
(76164, Id                                      76165
EmployeeName                Stephanie L Wargo
JobTitle            Attorney (Civil/Criminal)
BasePay                             150463.12
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             43366.85
TotalPay                            151713.12
TotalPayBenefits                    195079.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76164, dtype: object)
(76165, Id                             76166
EmployeeName           Romulo P Alog
JobTitle            Registered Nurse
BasePay                    142408.52
OvertimePay                   4747.5
OtherPay                     4265.65
Benefits                    43641.76
TotalPay                   151421.67
TotalPayBenefits           195063.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76165, dtype: object)
(76166, Id                             76167
EmployeeName             Glenn  Juco
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 20751.83
OtherPay                    13742.24
Benefits                    37047.85
TotalPay                   157965.09
TotalPayBenefits           195012.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76166, dtype: object)
(76167, Id                             76168
EmployeeName          Gared D Hansen
JobTitle            Police Officer 2
BasePay                     119947.0
OvertimePay                  24680.4
OtherPay                    13313.09
Benefits                    37059.59
TotalPay                   157940.49
TotalPayBenefits           195000.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76167, dtype: object)
(76168, Id                                76169
EmployeeName        Danielle C Sorrenti
JobTitle                    Firefighter
BasePay                       115893.49
OvertimePay                    21557.21
OtherPay                       16618.02
Benefits                        40927.0
TotalPay                      154068.72
TotalPayBenefits              194995.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76168, dtype: object)
(76169, Id                            76170
EmployeeName        Reese B Burrows
JobTitle                 Sergeant 3
BasePay                   143289.08
OvertimePay                 7525.18
OtherPay                    2939.83
Benefits                   41227.22
TotalPay                  153754.09
TotalPayBenefits          194981.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76169, dtype: object)
(76170, Id                              76171
EmployeeName        Garrett M Edwards
JobTitle               Deputy Sheriff
BasePay                       95123.0
OvertimePay                  52092.93
OtherPay                     13157.97
Benefits                     34584.14
TotalPay                     160373.9
TotalPayBenefits            194958.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76170, dtype: object)
(76171, Id                                76172
EmployeeName           Ileana  Burleson
JobTitle            Public Health Nurse
BasePay                       142425.01
OvertimePay                         0.0
OtherPay                        6432.66
Benefits                       46100.36
TotalPay                      148857.67
TotalPayBenefits              194958.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76171, dtype: object)
(76172, Id                          76173
EmployeeName           Elmen S Wu
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              17660.72
OtherPay                 19019.55
Benefits                 41294.26
TotalPay                153636.98
TotalPayBenefits        194931.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76172, dtype: object)
(76173, Id                          76174
EmployeeName          John M Tack
JobTitle               Sergeant 3
BasePay                 142555.13
OvertimePay                3905.6
OtherPay                  7784.96
Benefits                 40677.12
TotalPay                154245.69
TotalPayBenefits        194922.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76173, dtype: object)
(76174, Id                                      76175
EmployeeName                  Andre M Michaud
JobTitle            Clinical Nurse Specialist
BasePay                             146083.01
OvertimePay                               0.0
OtherPay                               1522.0
Benefits                             47316.93
TotalPay                            147605.01
TotalPayBenefits                    194921.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76174, dtype: object)
(76175, Id                                76176
EmployeeName        Mary Ellen  Carroll
JobTitle                     Manager IV
BasePay                       143749.38
OvertimePay                         0.0
OtherPay                         1009.6
Benefits                       50151.53
TotalPay                      144758.98
TotalPayBenefits              194910.51
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76175, dtype: object)
(76176, Id                                        76177
EmployeeName                        Sammy K Yee
JobTitle            Electr Maint Tech Asst Sprv
BasePay                                114062.0
OvertimePay                             45064.7
OtherPay                                    0.0
Benefits                               35777.52
TotalPay                               159126.7
TotalPayBenefits                      194904.22
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76176, dtype: object)
(76177, Id                          76178
EmployeeName          Derek L Chu
JobTitle               Manager IV
BasePay                  143743.2
OvertimePay                   0.0
OtherPay                   1000.0
Benefits                 50142.45
TotalPay                 144743.2
TotalPayBenefits        194885.65
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76177, dtype: object)
(76178, Id                            76179
EmployeeName        Albern R Ciudad
JobTitle             Police Officer
BasePay                    116478.0
OvertimePay                28779.11
OtherPay                   13894.06
Benefits                   35718.05
TotalPay                  159151.17
TotalPayBenefits          194869.22
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76178, dtype: object)
(76179, Id                             76180
EmployeeName        Glacier R Ybanez
JobTitle                  Manager IV
BasePay                    142933.54
OvertimePay                      0.0
OtherPay                     1798.87
Benefits                    50109.45
TotalPay                   144732.41
TotalPayBenefits           194841.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76179, dtype: object)
(76180, Id                                76181
EmployeeName           Ellen H Sakoloff
JobTitle            Public Health Nurse
BasePay                       142425.07
OvertimePay                         0.0
OtherPay                        6336.03
Benefits                       46079.95
TotalPay                       148761.1
TotalPayBenefits              194841.05
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76180, dtype: object)
(76181, Id                             76182
EmployeeName            Wilma R Cruz
JobTitle            Registered Nurse
BasePay                     140709.0
OvertimePay                  7051.05
OtherPay                     4293.68
Benefits                     42777.2
TotalPay                   152053.73
TotalPayBenefits           194830.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76181, dtype: object)
(76182, Id                           76183
EmployeeName        Aileen M Brady
JobTitle                Sergeant 3
BasePay                  143289.03
OvertimePay                7185.18
OtherPay                   3365.25
Benefits                  40988.96
TotalPay                 153839.46
TotalPayBenefits         194828.42
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76182, dtype: object)
(76183, Id                                    76184
EmployeeName        Hector A Garcia-Morales
JobTitle                   Police Officer 2
BasePay                            121068.0
OvertimePay                        12300.28
OtherPay                           24666.23
Benefits                           36769.75
TotalPay                          158034.51
TotalPayBenefits                  194804.26
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76183, dtype: object)
(76184, Id                          76185
EmployeeName        Eric F Sadler
JobTitle              Firefighter
BasePay                 115344.33
OvertimePay              14227.82
OtherPay                  23539.2
Benefits                 41666.07
TotalPay                153111.35
TotalPayBenefits        194777.42
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76184, dtype: object)
(76185, Id                          76186
EmployeeName         Arran A Pera
JobTitle               Sergeant 3
BasePay                 143289.08
OvertimePay                7369.7
OtherPay                  2972.21
Benefits                 41129.94
TotalPay                153630.99
TotalPayBenefits        194760.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76185, dtype: object)
(76186, Id                                         76187
EmployeeName                    William P Teahan
JobTitle            Utility Plumber Supervisor 1
BasePay                                 112904.5
OvertimePay                             31749.43
OtherPay                                13099.15
Benefits                                37006.17
TotalPay                               157753.08
TotalPayBenefits                       194759.25
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76186, dtype: object)
(76187, Id                             76188
EmployeeName        Merrick  Pascual
JobTitle                   Manager V
BasePay                     144686.4
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    50028.19
TotalPay                    144686.4
TotalPayBenefits           194714.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76187, dtype: object)
(76188, Id                                76189
EmployeeName                Alice W Yue
JobTitle            Public Health Nurse
BasePay                       142425.03
OvertimePay                         0.0
OtherPay                        6231.08
Benefits                       46057.95
TotalPay                      148656.11
TotalPayBenefits              194714.06
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76188, dtype: object)
(76189, Id                           76190
EmployeeName        Kevin M Cleary
JobTitle               Inspector 3
BasePay                  143289.03
OvertimePay                2128.59
OtherPay                   7392.24
Benefits                  41897.11
TotalPay                 152809.86
TotalPayBenefits         194706.97
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76189, dtype: object)
(76190, Id                             76191
EmployeeName          Alvaro D Schor
JobTitle            Police Officer 3
BasePay                     123471.2
OvertimePay                 20139.12
OtherPay                    14040.58
Benefits                    37055.22
TotalPay                    157650.9
TotalPayBenefits           194706.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76190, dtype: object)
(76191, Id                              76192
EmployeeName        Brian G Stansbury
JobTitle                   Sergeant 2
BasePay                     123854.05
OvertimePay                   19229.1
OtherPay                     14389.01
Benefits                     37231.28
TotalPay                    157472.16
TotalPayBenefits            194703.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76191, dtype: object)
(76192, Id                           76193
EmployeeName          Kenneth  Tan
JobTitle            Deputy Sheriff
BasePay                    95123.0
OvertimePay               55102.56
OtherPay                   9826.73
Benefits                  34625.63
TotalPay                 160052.29
TotalPayBenefits         194677.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76192, dtype: object)
(76193, Id                             76194
EmployeeName              Henry  Yee
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 20317.28
OtherPay                    12519.71
Benefits                    38363.98
TotalPay                   156308.14
TotalPayBenefits           194672.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76193, dtype: object)
(76194, Id                              76195
EmployeeName        Carl L Luckenbill
JobTitle                   Manager IV
BasePay                     143347.92
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     51297.74
TotalPay                    143347.92
TotalPayBenefits            194645.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76194, dtype: object)
(76195, Id                                          76196
EmployeeName                   Timothy R Hatfield
JobTitle            Airport Mechanical Maint Sprv
BasePay                                 140942.56
OvertimePay                                   0.0
OtherPay                                 10570.98
Benefits                                 43106.29
TotalPay                                151513.54
TotalPayBenefits                        194619.83
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76195, dtype: object)
(76196, Id                           76197
EmployeeName           Adam J Shaw
JobTitle            Police Officer
BasePay                  116478.04
OvertimePay               29552.64
OtherPay                  12876.86
Benefits                  35703.87
TotalPay                 158907.54
TotalPayBenefits         194611.41
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76196, dtype: object)
(76197, Id                                  76198
EmployeeName         Scott K Bergstresser
JobTitle            Senior Deputy Sheriff
BasePay                         105188.26
OvertimePay                      42245.27
OtherPay                         10787.72
Benefits                         36367.12
TotalPay                        158221.25
TotalPayBenefits                194588.37
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76197, dtype: object)
(76198, Id                                      76199
EmployeeName                     Luke B Bagan
JobTitle            Transit Power Line Worker
BasePay                               98946.0
OvertimePay                          52356.53
OtherPay                               8322.6
Benefits                             34960.51
TotalPay                            159625.13
TotalPayBenefits                    194585.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76198, dtype: object)
(76199, Id                                        76200
EmployeeName                         Mark A Lee
JobTitle            Electronic Maintenance Tech
BasePay                               105509.21
OvertimePay                            41681.48
OtherPay                               10874.87
Benefits                               36482.27
TotalPay                              158065.56
TotalPayBenefits                      194547.83
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76199, dtype: object)
(76200, Id                             76201
EmployeeName           Maria C Lucas
JobTitle            Registered Nurse
BasePay                     140709.0
OvertimePay                   7842.3
OtherPay                     3531.14
Benefits                    42447.49
TotalPay                   152082.44
TotalPayBenefits           194529.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76200, dtype: object)
(76201, Id                             76202
EmployeeName           Sylvia  Lange
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                  17557.1
OtherPay                    16429.51
Benefits                    37055.22
TotalPay                   157457.75
TotalPayBenefits           194512.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76201, dtype: object)
(76202, Id                             76203
EmployeeName           Marino  Mones
JobTitle            Registered Nurse
BasePay                    125683.47
OvertimePay                 11077.51
OtherPay                    19082.99
Benefits                    38661.26
TotalPay                   155843.97
TotalPayBenefits           194505.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76202, dtype: object)
(76203, Id                                      76204
EmployeeName                     Mary  Hobson
JobTitle            Architectural Associate 2
BasePay                             151448.15
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             43042.27
TotalPay                            151448.15
TotalPayBenefits                    194490.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76203, dtype: object)
(76204, Id                                  76205
EmployeeName                Frank A Gines
JobTitle            IS Engineer-Principal
BasePay                         139889.02
OvertimePay                           0.0
OtherPay                         12222.49
Benefits                         42377.33
TotalPay                        152111.51
TotalPayBenefits                194488.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76204, dtype: object)
(76205, Id                                       76206
EmployeeName                     Troy L Harris
JobTitle            Trans and Dist Line Worker
BasePay                               104642.5
OvertimePay                           36235.92
OtherPay                              17229.58
Benefits                               36376.1
TotalPay                              158108.0
TotalPayBenefits                      194484.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76205, dtype: object)
(76206, Id                                       76207
EmployeeName                     Robert S Nist
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              151579.45
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              42901.66
TotalPay                             151579.45
TotalPayBenefits                     194481.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76206, dtype: object)
(76207, Id                                76208
EmployeeName           Aline  Armstrong
JobTitle            Public Health Nurse
BasePay                        136275.5
OvertimePay                         0.0
OtherPay                       12138.63
Benefits                       46046.67
TotalPay                      148414.13
TotalPayBenefits               194460.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76207, dtype: object)
(76208, Id                             76209
EmployeeName         Romana B Tuliao
JobTitle            Registered Nurse
BasePay                    133428.01
OvertimePay                  6805.32
OtherPay                    11347.19
Benefits                    42806.85
TotalPay                   151580.52
TotalPayBenefits           194387.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76208, dtype: object)
(76209, Id                                      76210
EmployeeName             Jeffrey P Marcaletti
JobTitle            EMT/Paramedic/Firefighter
BasePay                              113885.0
OvertimePay                          31642.54
OtherPay                             12575.11
Benefits                             36257.36
TotalPay                            158102.65
TotalPayBenefits                    194360.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76209, dtype: object)
(76210, Id                             76211
EmployeeName            Debra D King
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 14349.34
OtherPay                    17416.52
Benefits                    39089.89
TotalPay                   155237.01
TotalPayBenefits            194326.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76210, dtype: object)
(76211, Id                              76212
EmployeeName        Patrick  Robinson
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  29091.68
OtherPay                      7555.97
Benefits                     36585.84
TotalPay                    157715.65
TotalPayBenefits            194301.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76211, dtype: object)
(76212, Id                          76213
EmployeeName         Edwin A Diaz
JobTitle              Firefighter
BasePay                 116997.73
OvertimePay              12200.72
OtherPay                 23778.56
Benefits                 41321.33
TotalPay                152977.01
TotalPayBenefits        194298.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76212, dtype: object)
(76213, Id                          76214
EmployeeName        James E Serna
JobTitle              Inspector 3
BasePay                  143222.7
OvertimePay               4403.16
OtherPay                  5799.06
Benefits                 40863.28
TotalPay                153424.92
TotalPayBenefits         194288.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76213, dtype: object)
(76214, Id                             76215
EmployeeName         Thomas J Minkel
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 20390.08
OtherPay                     16235.7
Benefits                    36581.55
TotalPay                   157693.78
TotalPayBenefits           194275.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76214, dtype: object)
(76215, Id                             76216
EmployeeName            Kevin  Lyons
JobTitle            Police Officer 2
BasePay                    121068.03
OvertimePay                 23031.21
OtherPay                    13362.36
Benefits                    36784.49
TotalPay                    157461.6
TotalPayBenefits           194246.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76215, dtype: object)
(76216, Id                             76217
EmployeeName            Nelson  Wong
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 22032.63
OtherPay                    11676.19
Benefits                    37062.76
TotalPay                   157179.86
TotalPayBenefits           194242.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76216, dtype: object)
(76217, Id                          76218
EmployeeName             Kam  Yan
JobTitle               Pharmacist
BasePay                 146745.02
OvertimePay               3415.76
OtherPay                   1728.0
Benefits                  42342.4
TotalPay                151888.78
TotalPayBenefits        194231.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76217, dtype: object)
(76218, Id                                     76219
EmployeeName        Alice  Gleghorn-Rothlind
JobTitle                          Manager IV
BasePay                            144177.29
OvertimePay                              0.0
OtherPay                               26.57
Benefits                            50020.67
TotalPay                           144203.86
TotalPayBenefits                   194224.53
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76218, dtype: object)
(76219, Id                             76220
EmployeeName           Jose  Jimenez
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 15748.24
OtherPay                    17880.21
Benefits                    37115.47
TotalPay                    157099.5
TotalPayBenefits           194214.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76219, dtype: object)
(76220, Id                             76221
EmployeeName            Duane  Allen
JobTitle            Transit Operator
BasePay                     71656.21
OvertimePay                 77180.55
OtherPay                     8473.89
Benefits                    36885.14
TotalPay                   157310.65
TotalPayBenefits           194195.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76220, dtype: object)
(76221, Id                             76222
EmployeeName           Michael  Wolf
JobTitle            Police Officer 3
BasePay                     123026.1
OvertimePay                 14859.38
OtherPay                    19122.82
Benefits                    37183.35
TotalPay                    157008.3
TotalPayBenefits           194191.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76221, dtype: object)
(76222, Id                                         76223
EmployeeName                       Paul M McHugh
JobTitle            Lieutenant, Fire Suppression
BasePay                                133855.94
OvertimePay                              2786.58
OtherPay                                 15834.6
Benefits                                41709.91
TotalPay                               152477.12
TotalPayBenefits                       194187.03
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76222, dtype: object)
(76223, Id                             76224
EmployeeName        Peter  Arnautoff
JobTitle             Insp, Fire Dept
BasePay                     139644.0
OvertimePay                  3906.15
OtherPay                     9094.14
Benefits                    41539.01
TotalPay                   152644.29
TotalPayBenefits            194183.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76223, dtype: object)
(76224, Id                             76225
EmployeeName        Phillip M Gordon
JobTitle                  Sergeant 3
BasePay                    126892.01
OvertimePay                  9471.33
OtherPay                    19808.78
Benefits                    37994.02
TotalPay                   156172.12
TotalPayBenefits           194166.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76224, dtype: object)
(76225, Id                           76226
EmployeeName        Lawrence M Jew
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               16299.03
OtherPay                   19501.6
Benefits                  41406.58
TotalPay                 152757.34
TotalPayBenefits         194163.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76225, dtype: object)
(76226, Id                              76227
EmployeeName              Brian  Cheu
JobTitle            Mayoral Staff XVI
BasePay                     144218.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     49924.51
TotalPay                    144218.51
TotalPayBenefits            194143.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76226, dtype: object)
(76227, Id                            76228
EmployeeName        Flynn H Bradley
JobTitle                Manager III
BasePay                   144192.33
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    49920.0
TotalPay                  144192.33
TotalPayBenefits          194112.33
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76227, dtype: object)
(76228, Id                           76229
EmployeeName        Gerardo  Fries
JobTitle                Manager IV
BasePay                  154338.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  39756.48
TotalPay                 154338.51
TotalPayBenefits         194094.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76228, dtype: object)
(76229, Id                           76230
EmployeeName        Michelle  Long
JobTitle                Manager IV
BasePay                  144142.85
OvertimePay                    0.0
OtherPay                     26.58
Benefits                  49915.57
TotalPay                 144169.43
TotalPayBenefits          194085.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76229, dtype: object)
(76230, Id                          76231
EmployeeName        John D Newman
JobTitle              Inspector 3
BasePay                 143289.02
OvertimePay               2400.76
OtherPay                  7040.49
Benefits                 41346.29
TotalPay                152730.27
TotalPayBenefits        194076.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76230, dtype: object)
(76231, Id                             76232
EmployeeName         David M Johnson
JobTitle            Police Officer 3
BasePay                     123471.2
OvertimePay                 19338.87
OtherPay                    14240.71
Benefits                    37025.18
TotalPay                   157050.78
TotalPayBenefits           194075.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76231, dtype: object)
(76232, Id                            76233
EmployeeName        Megan R Elliott
JobTitle                 Manager IV
BasePay                   143856.03
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   50214.19
TotalPay                  143856.03
TotalPayBenefits          194070.22
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76232, dtype: object)
(76233, Id                                   76234
EmployeeName              Miguel A Herrera
JobTitle            Senior Const Inspector
BasePay                           109459.5
OvertimePay                       49685.88
OtherPay                               0.0
Benefits                          34924.07
TotalPay                         159145.38
TotalPayBenefits                 194069.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76233, dtype: object)
(76234, Id                                76235
EmployeeName          Quynh-Huong T Bui
JobTitle            Clinical Pharmacist
BasePay                       140859.56
OvertimePay                       776.4
OtherPay                        9170.01
Benefits                       43236.19
TotalPay                      150805.97
TotalPayBenefits              194042.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76234, dtype: object)
(76235, Id                           76236
EmployeeName        David J Falzon
JobTitle               Inspector 3
BasePay                  143289.03
OvertimePay                9013.61
OtherPay                    925.82
Benefits                  40804.48
TotalPay                 153228.46
TotalPayBenefits         194032.94
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76235, dtype: object)
(76236, Id                                          76237
EmployeeName                       Kevin W Jensen
JobTitle            Disability Access Coordinator
BasePay                                  151046.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 42982.42
TotalPay                                 151046.4
TotalPayBenefits                        194028.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76236, dtype: object)
(76237, Id                                76238
EmployeeName        Josephine  Bautista
JobTitle               Registered Nurse
BasePay                        127314.0
OvertimePay                     5465.13
OtherPay                        18254.9
Benefits                       42971.65
TotalPay                      151034.03
TotalPayBenefits              194005.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76237, dtype: object)
(76238, Id                             76239
EmployeeName           Brian J Perry
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 20047.34
OtherPay                    12185.32
Benefits                    38298.42
TotalPay                    155703.8
TotalPayBenefits           194002.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76238, dtype: object)
(76239, Id                              76240
EmployeeName        Danielle R Schott
JobTitle                   Pharmacist
BasePay                      139752.0
OvertimePay                     776.4
OtherPay                     10253.64
Benefits                     43195.63
TotalPay                    150782.04
TotalPayBenefits            193977.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76239, dtype: object)
(76240, Id                            76241
EmployeeName        Patricia  Brown
JobTitle                 Sergeant 3
BasePay                   142555.14
OvertimePay                 4399.48
OtherPay                    6333.62
Benefits                   40675.53
TotalPay                  153288.24
TotalPayBenefits          193963.77
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76240, dtype: object)
(76241, Id                             76242
EmployeeName          Timothy K Wong
JobTitle            Registered Nurse
BasePay                    118855.25
OvertimePay                 19000.12
OtherPay                    14919.71
Benefits                    41187.91
TotalPay                   152775.08
TotalPayBenefits           193962.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76241, dtype: object)
(76242, Id                             76243
EmployeeName         Rigoberto  Haro
JobTitle            Police Officer 2
BasePay                    119006.54
OvertimePay                 25292.72
OtherPay                    13451.07
Benefits                    36206.03
TotalPay                   157750.33
TotalPayBenefits           193956.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76242, dtype: object)
(76243, Id                                      76244
EmployeeName        Isabelle  Allouko Fiankan
JobTitle                     Registered Nurse
BasePay                             119036.73
OvertimePay                           3871.92
OtherPay                             27471.88
Benefits                             43565.72
TotalPay                            150380.53
TotalPayBenefits                    193946.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76243, dtype: object)
(76244, Id                          76245
EmployeeName         Jose B Mejia
JobTitle               Manager IV
BasePay                 143856.03
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 50040.56
TotalPay                143856.03
TotalPayBenefits        193896.59
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76244, dtype: object)
(76245, Id                             76246
EmployeeName          Roel L Lapitan
JobTitle            Registered Nurse
BasePay                     126090.0
OvertimePay                 10437.45
OtherPay                    22963.28
Benefits                    34404.88
TotalPay                   159490.73
TotalPayBenefits           193895.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76245, dtype: object)
(76246, Id                               76247
EmployeeName        Marvin N Cabuntala
JobTitle              Police Officer 2
BasePay                      118858.11
OvertimePay                    18730.8
OtherPay                      19565.68
Benefits                      36740.79
TotalPay                     157154.59
TotalPayBenefits             193895.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76246, dtype: object)
(76247, Id                                 76248
EmployeeName        Matilde N Saquilayan
JobTitle                Registered Nurse
BasePay                         139305.0
OvertimePay                       4653.9
OtherPay                         9149.36
Benefits                        40778.53
TotalPay                       153108.26
TotalPayBenefits               193886.79
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76247, dtype: object)
(76248, Id                                          76249
EmployeeName                      Alan M Callaway
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.02
OvertimePay                               8565.98
OtherPay                                 10342.78
Benefits                                 39696.21
TotalPay                                154178.78
TotalPayBenefits                        193874.99
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76248, dtype: object)
(76249, Id                           76250
EmployeeName        Jason  Harrell
JobTitle               Firefighter
BasePay                  115893.48
OvertimePay               20515.78
OtherPay                  17488.89
Benefits                  39964.23
TotalPay                 153898.15
TotalPayBenefits         193862.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76249, dtype: object)
(76250, Id                              76251
EmployeeName        John L Centurioni
JobTitle             Police Officer 3
BasePay                     123471.04
OvertimePay                  24960.64
OtherPay                      7639.63
Benefits                     37782.64
TotalPay                    156071.31
TotalPayBenefits            193853.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76250, dtype: object)
(76251, Id                               76252
EmployeeName        William M Loeffler
JobTitle                    Manager IV
BasePay                      143856.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      49987.49
TotalPay                     143856.02
TotalPayBenefits             193843.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76251, dtype: object)
(76252, Id                             76253
EmployeeName           Nadine J Quan
JobTitle            Registered Nurse
BasePay                    142214.02
OvertimePay                      0.0
OtherPay                     7184.87
Benefits                    44443.08
TotalPay                   149398.89
TotalPayBenefits           193841.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76252, dtype: object)
(76253, Id                           76254
EmployeeName        Timothy F Wong
JobTitle               Firefighter
BasePay                  116956.72
OvertimePay               25577.18
OtherPay                  11305.81
Benefits                  39999.47
TotalPay                 153839.71
TotalPayBenefits         193839.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76253, dtype: object)
(76254, Id                                        76255
EmployeeName                      Robert N Chin
JobTitle            Electronic Maintenance Tech
BasePay                                105509.2
OvertimePay                            40172.03
OtherPay                               11535.92
Benefits                               36614.25
TotalPay                              157217.15
TotalPayBenefits                       193831.4
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76254, dtype: object)
(76255, Id                                  76256
EmployeeName                Albert W Jang
JobTitle            Senior Deputy Sheriff
BasePay                         105432.61
OvertimePay                      38128.03
OtherPay                         13566.14
Benefits                         36703.93
TotalPay                        157126.78
TotalPayBenefits                193830.71
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76255, dtype: object)
(76256, Id                               76257
EmployeeName        Evangeline R Silva
JobTitle              Registered Nurse
BasePay                       133035.2
OvertimePay                    7371.54
OtherPay                      11495.86
Benefits                       41914.6
TotalPay                      151902.6
TotalPayBenefits              193817.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76256, dtype: object)
(76257, Id                                 76258
EmployeeName        Josephine C F Pofsky
JobTitle                      Manager IV
BasePay                        143856.07
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        49954.24
TotalPay                       143856.07
TotalPayBenefits               193810.31
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76257, dtype: object)
(76258, Id                            76259
EmployeeName        Cynthia N Chono
JobTitle                 Manager IV
BasePay                   143856.08
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49954.23
TotalPay                  143856.08
TotalPayBenefits          193810.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76258, dtype: object)
(76259, Id                            76260
EmployeeName        Lavena M Holmes
JobTitle                 Manager IV
BasePay                   143856.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49954.23
TotalPay                  143856.05
TotalPayBenefits          193810.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76259, dtype: object)
(76260, Id                          76261
EmployeeName        Tamara J Wong
JobTitle               Manager IV
BasePay                 143856.05
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49954.23
TotalPay                143856.05
TotalPayBenefits        193810.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76260, dtype: object)
(76261, Id                                76262
EmployeeName             Mark W Lozovoy
JobTitle            Asst.Dep.Dir., Port
BasePay                       143856.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       49954.23
TotalPay                      143856.04
TotalPayBenefits              193810.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76261, dtype: object)
(76262, Id                                76263
EmployeeName               John M Davey
JobTitle            Asst.Dep.Dir., Port
BasePay                       143856.03
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       49954.23
TotalPay                      143856.03
TotalPayBenefits              193810.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76262, dtype: object)
(76263, Id                               76264
EmployeeName        Kenneth C Anderson
JobTitle                Manager V, MTA
BasePay                      143856.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      49954.23
TotalPay                     143856.02
TotalPayBenefits             193810.25
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76263, dtype: object)
(76264, Id                            76265
EmployeeName        Carolyn M Jones
JobTitle                 Manager IV
BasePay                   143856.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49954.23
TotalPay                  143856.02
TotalPayBenefits          193810.25
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76264, dtype: object)
(76265, Id                              76266
EmployeeName        Eloida P Leonardo
JobTitle               Manager V, MTA
BasePay                     143856.02
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     49954.23
TotalPay                    143856.02
TotalPayBenefits            193810.25
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76265, dtype: object)
(76266, Id                            76267
EmployeeName        Brian R Morelli
JobTitle                 Manager IV
BasePay                   143856.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49954.23
TotalPay                  143856.01
TotalPayBenefits          193810.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76266, dtype: object)
(76267, Id                           76268
EmployeeName        Clifton P Wong
JobTitle                Manager IV
BasePay                   143856.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  49954.23
TotalPay                  143856.0
TotalPayBenefits         193810.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76267, dtype: object)
(76268, Id                               76269
EmployeeName        Noime G Ventenilla
JobTitle              Registered Nurse
BasePay                       142425.0
OvertimePay                    2373.75
OtherPay                       3467.84
Benefits                      45531.84
TotalPay                     148266.59
TotalPayBenefits             193798.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76268, dtype: object)
(76269, Id                          76270
EmployeeName          Karen J Yee
JobTitle               Dep Dir II
BasePay                  143843.9
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49951.72
TotalPay                 143843.9
TotalPayBenefits        193795.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76269, dtype: object)
(76270, Id                          76271
EmployeeName        Emily  Murase
JobTitle              Dept Head I
BasePay                 143817.43
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49946.21
TotalPay                143817.43
TotalPayBenefits        193763.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76270, dtype: object)
(76271, Id                             76272
EmployeeName            Terence  Saw
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 24982.69
OtherPay                    11120.43
Benefits                    36581.55
TotalPay                   157171.12
TotalPayBenefits           193752.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76271, dtype: object)
(76272, Id                                         76273
EmployeeName                          Allen S Wu
JobTitle            Lieutenant, Fire Suppression
BasePay                                135902.93
OvertimePay                              5893.23
OtherPay                                 8154.26
Benefits                                43799.21
TotalPay                               149950.42
TotalPayBenefits                       193749.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76272, dtype: object)
(76273, Id                               76274
EmployeeName            Melissa A Gore
JobTitle            Nurse Practitioner
BasePay                      140942.16
OvertimePay                     9915.3
OtherPay                        928.96
Benefits                       41960.3
TotalPay                     151786.42
TotalPayBenefits             193746.72
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76273, dtype: object)
(76274, Id                                          76275
EmployeeName                        Irene  Cristi
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.01
OvertimePay                               4489.46
OtherPay                                 14161.71
Benefits                                 39799.35
TotalPay                                153921.18
TotalPayBenefits                        193720.53
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76274, dtype: object)
(76275, Id                           76276
EmployeeName        David M German
JobTitle                Manager IV
BasePay                  143856.07
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  49855.69
TotalPay                 143856.07
TotalPayBenefits         193711.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76275, dtype: object)
(76276, Id                             76277
EmployeeName        Paula L Florence
JobTitle              Manager V, MTA
BasePay                    143856.02
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    49855.69
TotalPay                   143856.02
TotalPayBenefits           193711.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76276, dtype: object)
(76277, Id                          76278
EmployeeName        Greg W Bartow
JobTitle               Manager IV
BasePay                 143856.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49855.69
TotalPay                143856.01
TotalPayBenefits         193711.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76277, dtype: object)
(76278, Id                            76279
EmployeeName        Kelley J Capone
JobTitle                 Manager IV
BasePay                   143856.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49855.69
TotalPay                  143856.01
TotalPayBenefits           193711.7
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76278, dtype: object)
(76279, Id                            76280
EmployeeName        Steve  Figueroa
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                28908.25
OtherPay                    8473.15
Benefits                   39369.48
TotalPay                  154338.11
TotalPayBenefits          193707.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76279, dtype: object)
(76280, Id                          76281
EmployeeName         Jill  Manton
JobTitle               Manager IV
BasePay                 143843.92
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49853.18
TotalPay                143843.92
TotalPayBenefits         193697.1
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76280, dtype: object)
(76281, Id                             76282
EmployeeName        Eileen C Shields
JobTitle                  Manager IV
BasePay                    143829.02
OvertimePay                      0.0
OtherPay                        27.0
Benefits                    49838.79
TotalPay                   143856.02
TotalPayBenefits           193694.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76281, dtype: object)
(76282, Id                            76283
EmployeeName        Severin V Rizzo
JobTitle                 Manager IV
BasePay                   143856.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49838.79
TotalPay                  143856.02
TotalPayBenefits          193694.81
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76282, dtype: object)
(76283, Id                          76284
EmployeeName         Luenna H Kim
JobTitle              Dep Dir III
BasePay                 143758.21
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49924.77
TotalPay                143758.21
TotalPayBenefits        193682.98
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76283, dtype: object)
(76284, Id                            76285
EmployeeName        Toni A Bernardi
JobTitle                 Manager IV
BasePay                   143817.42
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49847.67
TotalPay                  143817.42
TotalPayBenefits          193665.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76284, dtype: object)
(76285, Id                          76286
EmployeeName         Cecile  Soto
JobTitle               Manager II
BasePay                 143817.41
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49847.67
TotalPay                143817.41
TotalPayBenefits        193665.08
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76285, dtype: object)
(76286, Id                             76287
EmployeeName          Jeff W Gaughan
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  1638.12
OtherPay                    12441.16
Benefits                    45557.67
TotalPay                   148107.28
TotalPayBenefits           193664.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76286, dtype: object)
(76287, Id                             76288
EmployeeName        Maria X Martinez
JobTitle                 Manager III
BasePay                    141217.34
OvertimePay                      0.0
OtherPay                      2474.8
Benefits                    49971.06
TotalPay                   143692.14
TotalPayBenefits            193663.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76287, dtype: object)
(76288, Id                              76289
EmployeeName        Reginald L Prasad
JobTitle             Police Officer 3
BasePay                     123471.06
OvertimePay                  31978.92
OtherPay                      1162.67
Benefits                     37047.88
TotalPay                    156612.65
TotalPayBenefits            193660.53
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76288, dtype: object)
(76289, Id                           76290
EmployeeName        David J Kimmel
JobTitle               Firefighter
BasePay                  116997.73
OvertimePay                18732.2
OtherPay                   16571.2
Benefits                  41357.68
TotalPay                 152301.13
TotalPayBenefits         193658.81
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76289, dtype: object)
(76290, Id                                76291
EmployeeName        Marie Juris B Green
JobTitle               Registered Nurse
BasePay                        129978.0
OvertimePay                      830.42
OtherPay                       17117.13
Benefits                        45714.7
TotalPay                      147925.55
TotalPayBenefits              193640.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76290, dtype: object)
(76291, Id                                 76292
EmployeeName        Kathleen E Sakelaris
JobTitle                 Manager IV, MTA
BasePay                        135039.45
OvertimePay                          0.0
OtherPay                         8779.51
Benefits                        49820.86
TotalPay                       143818.96
TotalPayBenefits               193639.82
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76291, dtype: object)
(76292, Id                              76293
EmployeeName        Patrick P Cadigan
JobTitle                  Inspector 2
BasePay                      140724.0
OvertimePay                       0.0
OtherPay                     10988.43
Benefits                      41916.3
TotalPay                    151712.43
TotalPayBenefits            193628.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76292, dtype: object)
(76293, Id                            76294
EmployeeName        Laurel  Kloomok
JobTitle                Dept Head I
BasePay                   143775.49
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49840.57
TotalPay                  143775.49
TotalPayBenefits          193616.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76293, dtype: object)
(76294, Id                             76295
EmployeeName            Warren C Lee
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 28802.79
OtherPay                     4280.27
Benefits                     37055.1
TotalPay                   156554.06
TotalPayBenefits           193609.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76294, dtype: object)
(76295, Id                                76296
EmployeeName        Daisy L Evangelista
JobTitle               Registered Nurse
BasePay                       129492.18
OvertimePay                     9540.19
OtherPay                       20848.67
Benefits                        33716.6
TotalPay                      159881.04
TotalPayBenefits              193597.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76295, dtype: object)
(76296, Id                           76297
EmployeeName        Camron A Samii
JobTitle            Manager V, MTA
BasePay                  143668.39
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   49921.0
TotalPay                 143668.39
TotalPayBenefits         193589.39
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76296, dtype: object)
(76297, Id                             76298
EmployeeName           Robert L Ford
JobTitle            Police Officer 3
BasePay                    123471.06
OvertimePay                 20244.08
OtherPay                    11467.64
Benefits                    38404.51
TotalPay                   155182.78
TotalPayBenefits           193587.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76297, dtype: object)
(76298, Id                             76299
EmployeeName            Alicia  Tabo
JobTitle            Registered Nurse
BasePay                    132911.11
OvertimePay                  7371.54
OtherPay                    13565.85
Benefits                    39735.96
TotalPay                    153848.5
TotalPayBenefits           193584.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76298, dtype: object)
(76299, Id                             76300
EmployeeName          Estela R Burns
JobTitle            Registered Nurse
BasePay                    125650.52
OvertimePay                  9692.83
OtherPay                    18153.25
Benefits                    40086.21
TotalPay                    153496.6
TotalPayBenefits           193582.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76299, dtype: object)
(76300, Id                              76301
EmployeeName        Richard M Britton
JobTitle                  Firefighter
BasePay                     116956.69
OvertimePay                  15960.21
OtherPay                     19235.69
Benefits                     41406.58
TotalPay                    152152.59
TotalPayBenefits            193559.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76300, dtype: object)
(76301, Id                              76302
EmployeeName        David E Amituanai
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  15509.15
OtherPay                     19450.03
Benefits                     41635.66
TotalPay                    151915.89
TotalPayBenefits            193551.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76301, dtype: object)
(76302, Id                             76303
EmployeeName          Stephen P Ryan
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 23032.92
OtherPay                     9986.34
Benefits                    37047.85
TotalPay                   156490.28
TotalPayBenefits           193538.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76302, dtype: object)
(76303, Id                           76304
EmployeeName        Jared P Harris
JobTitle            Police Officer
BasePay                  116478.01
OvertimePay               33052.68
OtherPay                   8273.72
Benefits                  35718.05
TotalPay                 157804.41
TotalPayBenefits         193522.46
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76303, dtype: object)
(76304, Id                                 76305
EmployeeName          Richard R Ridgeway
JobTitle            Sheriff's Lieutenant
BasePay                        131415.02
OvertimePay                      6593.86
OtherPay                        13906.71
Benefits                        41606.23
TotalPay                       151915.59
TotalPayBenefits               193521.82
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76304, dtype: object)
(76305, Id                             76306
EmployeeName        Azarias R Castro
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 23194.22
OtherPay                    12658.86
Benefits                    36593.33
TotalPay                   156921.08
TotalPayBenefits           193514.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76305, dtype: object)
(76306, Id                             76307
EmployeeName         Marilyn M Matli
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 27889.98
OtherPay                     5097.93
Benefits                    37047.87
TotalPay                   156458.96
TotalPayBenefits           193506.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76306, dtype: object)
(76307, Id                          76308
EmployeeName        Michael L Tin
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              15653.13
OtherPay                 19448.31
Benefits                 41437.81
TotalPay                152058.16
TotalPayBenefits        193495.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76307, dtype: object)
(76308, Id                                         76309
EmployeeName                         Alison  Yee
JobTitle            Lieutenant, Fire Suppression
BasePay                                135178.27
OvertimePay                              6533.86
OtherPay                                 8296.51
Benefits                                43455.08
TotalPay                               150008.64
TotalPayBenefits                       193463.72
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76308, dtype: object)
(76309, Id                             76310
EmployeeName            Mengkry  Tea
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                      0.0
OtherPay                     5171.51
Benefits                     45819.8
TotalPay                   147596.51
TotalPayBenefits           193416.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76309, dtype: object)
(76310, Id                                 76311
EmployeeName        Cecilio  Evangelista
JobTitle                Registered Nurse
BasePay                        137941.25
OvertimePay                      6923.45
OtherPay                        12501.15
Benefits                        36040.39
TotalPay                       157365.85
TotalPayBenefits               193406.24
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76310, dtype: object)
(76311, Id                              76312
EmployeeName        Kenneth V Sanchez
JobTitle             Police Officer 3
BasePay                     123471.02
OvertimePay                  19179.84
OtherPay                     12351.33
Benefits                     38402.08
TotalPay                    155002.19
TotalPayBenefits            193404.27
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76311, dtype: object)
(76312, Id                                      76313
EmployeeName                David  Chudzinski
JobTitle            Transit Power Line Worker
BasePay                              98942.41
OvertimePay                          58712.44
OtherPay                               1972.0
Benefits                              33765.5
TotalPay                            159626.85
TotalPayBenefits                    193392.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76312, dtype: object)
(76313, Id                          76314
EmployeeName        Frances M Yam
JobTitle               Pharmacist
BasePay                 146201.55
OvertimePay               3133.61
OtherPay                  1848.34
Benefits                  42180.2
TotalPay                 151183.5
TotalPayBenefits         193363.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76313, dtype: object)
(76314, Id                             76315
EmployeeName         Ramon C Reynoso
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                 27235.61
OtherPay                     5564.51
Benefits                    37055.22
TotalPay                   156271.28
TotalPayBenefits            193326.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76314, dtype: object)
(76315, Id                           76316
EmployeeName            Fred W Lew
JobTitle            Deputy Sheriff
BasePay                    95126.5
OvertimePay               51108.27
OtherPay                  12150.36
Benefits                  34920.61
TotalPay                 158385.13
TotalPayBenefits         193305.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76315, dtype: object)
(76316, Id                              76317
EmployeeName        Michael D Zurcher
JobTitle                  Inspector 3
BasePay                     143289.02
OvertimePay                   4059.85
OtherPay                      4589.39
Benefits                     41346.29
TotalPay                    151938.26
TotalPayBenefits            193284.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76316, dtype: object)
(76317, Id                                        76318
EmployeeName                     Herbert G Dang
JobTitle            Sewage Treatment Plant Supt
BasePay                               144572.54
OvertimePay                                 0.0
OtherPay                                6952.32
Benefits                               41755.23
TotalPay                              151524.86
TotalPayBenefits                      193280.09
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76317, dtype: object)
(76318, Id                                76319
EmployeeName                  Kam  Chan
JobTitle            Public Health Nurse
BasePay                       142029.41
OvertimePay                         0.0
OtherPay                        5438.34
Benefits                        45772.6
TotalPay                      147467.75
TotalPayBenefits              193240.35
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76318, dtype: object)
(76319, Id                             76320
EmployeeName        Elaine  Economus
JobTitle                 Inspector 3
BasePay                      71644.6
OvertimePay                  4383.76
OtherPay                     97419.7
Benefits                    19785.17
TotalPay                   173448.06
TotalPayBenefits           193233.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76319, dtype: object)
(76320, Id                              76321
EmployeeName        Richard A Holback
JobTitle                  Firefighter
BasePay                      116956.7
OvertimePay                  19071.17
OtherPay                     16416.46
Benefits                     40749.72
TotalPay                    152444.33
TotalPayBenefits            193194.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76320, dtype: object)
(76321, Id                                          76322
EmployeeName                      Paris C Deshong
JobTitle            Sergeant, (Police Department)
BasePay                                 135270.09
OvertimePay                               3362.67
OtherPay                                 15100.23
Benefits                                 39431.52
TotalPay                                153732.99
TotalPayBenefits                        193164.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76321, dtype: object)
(76322, Id                             76323
EmployeeName          Ivan  Sequeira
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 27007.47
OtherPay                     5627.97
Benefits                    37055.11
TotalPay                   156106.44
TotalPayBenefits           193161.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76322, dtype: object)
(76323, Id                              76324
EmployeeName        Donald L Price Jr
JobTitle                  Firefighter
BasePay                     116956.74
OvertimePay                   14890.7
OtherPay                      19900.3
Benefits                     41406.59
TotalPay                    151747.74
TotalPayBenefits            193154.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76323, dtype: object)
(76324, Id                             76325
EmployeeName          Brian C Cotter
JobTitle            Police Officer 2
BasePay                     120819.7
OvertimePay                 24156.14
OtherPay                    11640.45
Benefits                    36528.85
TotalPay                   156616.29
TotalPayBenefits           193145.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76324, dtype: object)
(76325, Id                             76326
EmployeeName             Benny  Fong
JobTitle            Police Officer 3
BasePay                      59202.5
OvertimePay                  2282.06
OtherPay                   114257.29
Benefits                    17384.77
TotalPay                   175741.85
TotalPayBenefits           193126.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76325, dtype: object)
(76326, Id                               76327
EmployeeName              Vincent  Gin
JobTitle            Transit Supervisor
BasePay                       92465.11
OvertimePay                    62558.1
OtherPay                       4886.04
Benefits                       33208.8
TotalPay                     159909.25
TotalPayBenefits             193118.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76326, dtype: object)
(76327, Id                                    76328
EmployeeName                    John L Curd
JobTitle            Fire Safety Inspector 2
BasePay                            138480.3
OvertimePay                        17680.48
OtherPay                             8308.8
Benefits                           28632.07
TotalPay                          164469.58
TotalPayBenefits                  193101.65
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76327, dtype: object)
(76328, Id                            76329
EmployeeName        Elisha R Turner
JobTitle                 Sergeant 3
BasePay                   143289.11
OvertimePay                 2899.44
OtherPay                    5825.89
Benefits                   41085.26
TotalPay                  152014.44
TotalPayBenefits           193099.7
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76328, dtype: object)
(76329, Id                               76330
EmployeeName        Victoria  Sullivan
JobTitle                    Sergeant 3
BasePay                      143289.19
OvertimePay                    3706.62
OtherPay                       5297.89
Benefits                      40803.06
TotalPay                      152293.7
TotalPayBenefits             193096.76
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76329, dtype: object)
(76330, Id                              76331
EmployeeName        Rosemary  Redmond
JobTitle                   Pharmacist
BasePay                     146711.05
OvertimePay                    1635.3
OtherPay                      2291.02
Benefits                     42457.58
TotalPay                    150637.37
TotalPayBenefits            193094.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76330, dtype: object)
(76331, Id                            76332
EmployeeName        Mark C Williams
JobTitle             Police Officer
BasePay                   116478.15
OvertimePay                26226.51
OtherPay                   13998.98
Benefits                   36390.03
TotalPay                  156703.64
TotalPayBenefits          193093.67
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76331, dtype: object)
(76332, Id                              76333
EmployeeName        Megan G O'Connell
JobTitle                  Firefighter
BasePay                     115893.44
OvertimePay                  16273.82
OtherPay                     19786.92
Benefits                     41136.52
TotalPay                    151954.18
TotalPayBenefits             193090.7
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76332, dtype: object)
(76333, Id                                        76334
EmployeeName                         Sunny K Ma
JobTitle            Electronic Maintenance Tech
BasePay                               111518.01
OvertimePay                            25700.76
OtherPay                                17182.4
Benefits                               38676.51
TotalPay                              154401.17
TotalPayBenefits                      193077.68
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76333, dtype: object)
(76334, Id                           76335
EmployeeName        James T Wilson
JobTitle                Sergeant 3
BasePay                  143189.64
OvertimePay                3251.47
OtherPay                   5698.75
Benefits                  40934.43
TotalPay                 152139.86
TotalPayBenefits         193074.29
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76334, dtype: object)
(76335, Id                          76336
EmployeeName        Raymond W Luk
JobTitle              Inspector 3
BasePay                 143289.14
OvertimePay               4898.59
OtherPay                   3701.3
Benefits                  41183.1
TotalPay                151889.03
TotalPayBenefits        193072.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76335, dtype: object)
(76336, Id                                      76337
EmployeeName                 Michael  Johnson
JobTitle            Transit Power Line Worker
BasePay                              106045.0
OvertimePay                          52532.68
OtherPay                                  0.0
Benefits                             34488.56
TotalPay                            158577.68
TotalPayBenefits                    193066.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76336, dtype: object)
(76337, Id                                76338
EmployeeName        Christopher J Salas
JobTitle                    Firefighter
BasePay                       115893.46
OvertimePay                    17359.17
OtherPay                       18766.12
Benefits                       41044.35
TotalPay                      152018.75
TotalPayBenefits               193063.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76337, dtype: object)
(76338, Id                              76339
EmployeeName        Stephen E Smalley
JobTitle                   Sergeant 3
BasePay                     137982.07
OvertimePay                  10949.82
OtherPay                      4676.39
Benefits                     39428.86
TotalPay                    153608.28
TotalPayBenefits            193037.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76338, dtype: object)
(76339, Id                               76340
EmployeeName             Sonia H Reyes
JobTitle            Nurse Practitioner
BasePay                      142340.42
OvertimePay                        0.0
OtherPay                       3727.99
Benefits                      46965.62
TotalPay                     146068.41
TotalPayBenefits             193034.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76339, dtype: object)
(76340, Id                           76341
EmployeeName        Michael  Liang
JobTitle                Dep Dir II
BasePay                  142067.12
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  50932.89
TotalPay                 142067.12
TotalPayBenefits         193000.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76340, dtype: object)
(76341, Id                              76342
EmployeeName        Dolores L Ladores
JobTitle             Registered Nurse
BasePay                      142425.0
OvertimePay                    6330.0
OtherPay                      5525.77
Benefits                     38714.52
TotalPay                    154280.77
TotalPayBenefits            192995.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76341, dtype: object)
(76342, Id                           76343
EmployeeName        James T Nguyen
JobTitle                Sergeant 3
BasePay                  143289.24
OvertimePay                5970.37
OtherPay                   2655.24
Benefits                  41073.02
TotalPay                 151914.85
TotalPayBenefits         192987.87
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76342, dtype: object)
(76343, Id                               76344
EmployeeName        Lorraine  Killpack
JobTitle                   Manager III
BasePay                      143001.25
OvertimePay                        0.0
OtherPay                        332.32
Benefits                       49646.2
TotalPay                     143333.57
TotalPayBenefits             192979.77
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76343, dtype: object)
(76344, Id                           76345
EmployeeName        Mari E Shepard
JobTitle                Sergeant 2
BasePay                   130532.0
OvertimePay                8298.61
OtherPay                  15614.05
Benefits                   38519.1
TotalPay                 154444.66
TotalPayBenefits         192963.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76344, dtype: object)
(76345, Id                             76346
EmployeeName          Lauris  Jensen
JobTitle            Registered Nurse
BasePay                    142425.07
OvertimePay                  5439.85
OtherPay                      317.58
Benefits                    44777.17
TotalPay                    148182.5
TotalPayBenefits           192959.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76345, dtype: object)
(76346, Id                             76347
EmployeeName         Brent A Dittmer
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 20498.58
OtherPay                    14809.45
Benefits                    36571.19
TotalPay                   156376.03
TotalPayBenefits           192947.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76346, dtype: object)
(76347, Id                          76348
EmployeeName        Victor T Wong
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              15551.36
OtherPay                 19047.02
Benefits                 41383.28
TotalPay                 151555.1
TotalPayBenefits        192938.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76347, dtype: object)
(76348, Id                                       76349
EmployeeName                    Marilyn L Sage
JobTitle            Court Reporter Coordinator
BasePay                              137273.21
OvertimePay                                0.0
OtherPay                               6955.35
Benefits                              48703.64
TotalPay                             144228.56
TotalPayBenefits                      192932.2
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76348, dtype: object)
(76349, Id                             76350
EmployeeName         Steven P Murphy
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 20400.59
OtherPay                     5457.72
Benefits                    38505.79
TotalPay                   154414.31
TotalPayBenefits            192920.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76349, dtype: object)
(76350, Id                           76351
EmployeeName           Burton  Wan
JobTitle            Deputy Sheriff
BasePay                   95117.76
OvertimePay               47843.39
OtherPay                  14927.17
Benefits                  35021.86
TotalPay                 157888.32
TotalPayBenefits         192910.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76350, dtype: object)
(76351, Id                          76352
EmployeeName          Haeju H Kim
JobTitle               Pharmacist
BasePay                 146745.01
OvertimePay               1636.32
OtherPay                  2098.13
Benefits                 42384.82
TotalPay                150479.46
TotalPayBenefits        192864.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76351, dtype: object)
(76352, Id                                     76353
EmployeeName               Joshua C Uusitalo
JobTitle            Communication Line Sprv1
BasePay                             102454.0
OvertimePay                         45437.34
OtherPay                            10818.94
Benefits                            34152.27
TotalPay                           158710.28
TotalPayBenefits                   192862.55
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76352, dtype: object)
(76353, Id                             76354
EmployeeName         Mildred A Edgar
JobTitle            Registered Nurse
BasePay                    141963.44
OvertimePay                      0.0
OtherPay                    13196.51
Benefits                    37695.94
TotalPay                   155159.95
TotalPayBenefits           192855.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76353, dtype: object)
(76354, Id                                76355
EmployeeName          Kathleen M Shuton
JobTitle            Public Health Nurse
BasePay                       127302.86
OvertimePay                         0.0
OtherPay                       18792.16
Benefits                       46750.44
TotalPay                      146095.02
TotalPayBenefits              192845.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76354, dtype: object)
(76355, Id                             76356
EmployeeName           Benjamin  Tai
JobTitle            Registered Nurse
BasePay                     138481.1
OvertimePay                  7439.44
OtherPay                     5244.14
Benefits                    41653.79
TotalPay                   151164.68
TotalPayBenefits           192818.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76355, dtype: object)
(76356, Id                                 76357
EmployeeName              Hubert  Hunter
JobTitle            Sheriff's Lieutenant
BasePay                         131410.2
OvertimePay                       970.31
OtherPay                        18272.65
Benefits                        42157.52
TotalPay                       150653.16
TotalPayBenefits               192810.68
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76356, dtype: object)
(76357, Id                                      76358
EmployeeName            Andrea F Ruiz-Esquide
JobTitle            Attorney (Civil/Criminal)
BasePay                             159852.53
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                              31693.4
TotalPay                            161102.03
TotalPayBenefits                    192795.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76357, dtype: object)
(76358, Id                              76359
EmployeeName        James V Easterday
JobTitle                       Welder
BasePay                       83090.5
OvertimePay                  71615.09
OtherPay                      6586.22
Benefits                     31494.81
TotalPay                    161291.81
TotalPayBenefits            192786.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76358, dtype: object)
(76359, Id                             76360
EmployeeName        Benito L Manning
JobTitle            Police Officer 3
BasePay                    123471.07
OvertimePay                  20376.6
OtherPay                    10671.36
Benefits                    38263.02
TotalPay                   154519.03
TotalPayBenefits           192782.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76359, dtype: object)
(76360, Id                             76361
EmployeeName         Michael J Walsh
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                 28509.79
OtherPay                     3709.17
Benefits                    37055.22
TotalPay                   155690.12
TotalPayBenefits           192745.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76360, dtype: object)
(76361, Id                                   76362
EmployeeName                    Alan  Wong
JobTitle            Senior Const Inspector
BasePay                           109459.5
OvertimePay                       39663.72
OtherPay                           7476.41
Benefits                          36144.45
TotalPay                         156599.63
TotalPayBenefits                 192744.08
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76361, dtype: object)
(76362, Id                             76363
EmployeeName            Teresita  Co
JobTitle            Registered Nurse
BasePay                    126600.01
OvertimePay                  4154.07
OtherPay                    18324.67
Benefits                    43659.91
TotalPay                   149078.75
TotalPayBenefits           192738.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76362, dtype: object)
(76363, Id                          76364
EmployeeName         Sarah F Yang
JobTitle               Pharmacist
BasePay                 146745.07
OvertimePay               2190.98
OtherPay                  1443.47
Benefits                 42300.28
TotalPay                150379.52
TotalPayBenefits         192679.8
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76363, dtype: object)
(76364, Id                                     76365
EmployeeName             Adam B Mazurkiewicz
JobTitle            Water Operations Analyst
BasePay                            132510.72
OvertimePay                          4374.56
OtherPay                            15963.04
Benefits                            39817.58
TotalPay                           152848.32
TotalPayBenefits                    192665.9
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76364, dtype: object)
(76365, Id                                  76366
EmployeeName               Alisa M Zehner
JobTitle            Senior Deputy Sheriff
BasePay                         105367.85
OvertimePay                      33047.21
OtherPay                         16339.81
Benefits                         37895.88
TotalPay                        154754.87
TotalPayBenefits                192650.75
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76365, dtype: object)
(76366, Id                             76367
EmployeeName        David R Hamilton
JobTitle                  Sergeant 3
BasePay                    143289.17
OvertimePay                  5877.12
OtherPay                     2691.25
Benefits                    40787.04
TotalPay                   151857.54
TotalPayBenefits           192644.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76366, dtype: object)
(76367, Id                               76368
EmployeeName        Kimberlee N Kimura
JobTitle                    Dep Dir II
BasePay                      109585.93
OvertimePay                        0.0
OtherPay                       41880.1
Benefits                      41157.46
TotalPay                     151466.03
TotalPayBenefits             192623.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76367, dtype: object)
(76368, Id                                      76369
EmployeeName                      Mollie  Lee
JobTitle            Attorney (Civil/Criminal)
BasePay                             148435.54
OvertimePay                               0.0
OtherPay                               1249.5
Benefits                             42932.64
TotalPay                            149685.04
TotalPayBenefits                    192617.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76368, dtype: object)
(76369, Id                           76370
EmployeeName        Thomas P Haney
JobTitle               Firefighter
BasePay                   116604.1
OvertimePay               16666.32
OtherPay                  18627.09
Benefits                  40717.53
TotalPay                 151897.51
TotalPayBenefits         192615.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76369, dtype: object)
(76370, Id                            76371
EmployeeName        Lisa R Springer
JobTitle                 Sergeant 3
BasePay                   142526.26
OvertimePay                 1117.36
OtherPay                    8311.52
Benefits                   40656.59
TotalPay                  151955.14
TotalPayBenefits          192611.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76370, dtype: object)
(76371, Id                          76372
EmployeeName         Ramon L Chea
JobTitle              Firefighter
BasePay                 116956.68
OvertimePay              19905.32
OtherPay                 15059.86
Benefits                 40653.33
TotalPay                151921.86
TotalPayBenefits        192575.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76371, dtype: object)
(76372, Id                               76373
EmployeeName            Gregory  Pitts
JobTitle            Transit Supervisor
BasePay                        86284.2
OvertimePay                   70785.09
OtherPay                       3808.17
Benefits                      31691.14
TotalPay                     160877.46
TotalPayBenefits              192568.6
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76372, dtype: object)
(76373, Id                             76374
EmployeeName          Connie M Fiame
JobTitle            Registered Nurse
BasePay                    139053.62
OvertimePay                   6241.0
OtherPay                    10865.25
Benefits                    36357.87
TotalPay                   156159.87
TotalPayBenefits           192517.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76373, dtype: object)
(76374, Id                                         76375
EmployeeName                      Robert A Cappa
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.44
OvertimePay                              4114.13
OtherPay                                 9982.82
Benefits                                43751.97
TotalPay                               148764.39
TotalPayBenefits                       192516.36
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76374, dtype: object)
(76375, Id                                 76376
EmployeeName                Babe  Franey
JobTitle            Sheriff's Lieutenant
BasePay                        131415.13
OvertimePay                      1899.56
OtherPay                        18351.49
Benefits                        40827.87
TotalPay                       151666.18
TotalPayBenefits               192494.05
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76375, dtype: object)
(76376, Id                               76377
EmployeeName        R Martin  Ferreira
JobTitle              Police Officer 3
BasePay                      123211.27
OvertimePay                   27747.01
OtherPay                        4529.9
Benefits                      37003.34
TotalPay                     155488.18
TotalPayBenefits             192491.52
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76376, dtype: object)
(76377, Id                                  76378
EmployeeName              Anjie E Versher
JobTitle            Senior Deputy Sheriff
BasePay                          105432.6
OvertimePay                      32926.28
OtherPay                         16400.45
Benefits                         37699.98
TotalPay                        154759.33
TotalPayBenefits                192459.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76377, dtype: object)
(76378, Id                            76379
EmployeeName        Daniel P Murphy
JobTitle             Line Inspector
BasePay                   110219.51
OvertimePay                47207.15
OtherPay                        0.0
Benefits                   35030.87
TotalPay                  157426.66
TotalPayBenefits          192457.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76378, dtype: object)
(76379, Id                             76380
EmployeeName          Grace G Bondoc
JobTitle            Registered Nurse
BasePay                     140241.0
OvertimePay                 10236.92
OtherPay                     8456.16
Benefits                    33515.34
TotalPay                   158934.08
TotalPayBenefits           192449.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76379, dtype: object)
(76380, Id                               76381
EmployeeName        Jarome  Winesberry
JobTitle              Police Officer 3
BasePay                      121263.05
OvertimePay                    23545.7
OtherPay                      11022.21
Benefits                      36610.77
TotalPay                     155830.96
TotalPayBenefits             192441.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76380, dtype: object)
(76381, Id                              76382
EmployeeName        Nicholas K Helmer
JobTitle                  Firefighter
BasePay                      116956.7
OvertimePay                  23344.92
OtherPay                     12049.95
Benefits                     40080.61
TotalPay                    152351.57
TotalPayBenefits            192432.18
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76381, dtype: object)
(76382, Id                             76383
EmployeeName         Matthew L Cloud
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 23723.17
OtherPay                     10923.4
Benefits                    36707.55
TotalPay                   155714.57
TotalPayBenefits           192422.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76382, dtype: object)
(76383, Id                             76384
EmployeeName            Davin L Cole
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 14968.56
OtherPay                    16811.17
Benefits                    37164.26
TotalPay                   155250.73
TotalPayBenefits           192414.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76383, dtype: object)
(76384, Id                                      76385
EmployeeName                 Karl A Jurgenson
JobTitle            EMT/Paramedic/Firefighter
BasePay                             134138.89
OvertimePay                           1682.13
OtherPay                             14382.92
Benefits                             42178.51
TotalPay                            150203.94
TotalPayBenefits                    192382.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76384, dtype: object)
(76385, Id                          76386
EmployeeName        Kevin W Garry
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              14635.09
OtherPay                 19489.12
Benefits                 41294.25
TotalPay                151080.91
TotalPayBenefits        192375.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76385, dtype: object)
(76386, Id                                         76387
EmployeeName                  Jennifer M Mathews
JobTitle            Lieutenant, Fire Suppression
BasePay                                126581.17
OvertimePay                              6875.44
OtherPay                                16415.72
Benefits                                42491.69
TotalPay                               149872.33
TotalPayBenefits                       192364.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76386, dtype: object)
(76387, Id                             76388
EmployeeName        Ryan D Daugherty
JobTitle              Police Officer
BasePay                    116478.05
OvertimePay                 23204.76
OtherPay                    16971.18
Benefits                    35703.95
TotalPay                   156653.99
TotalPayBenefits           192357.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76387, dtype: object)
(76388, Id                                   76389
EmployeeName        Sirinirundor  Siriporn
JobTitle                  Registered Nurse
BasePay                          126019.76
OvertimePay                        8314.74
OtherPay                          18812.63
Benefits                          39206.41
TotalPay                         153147.13
TotalPayBenefits                 192353.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76388, dtype: object)
(76389, Id                                  76390
EmployeeName             Enrico  Bautista
JobTitle            IS Engineer-Principal
BasePay                          139889.0
OvertimePay                           0.0
OtherPay                         11607.32
Benefits                          40856.2
TotalPay                        151496.32
TotalPayBenefits                192352.52
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76389, dtype: object)
(76390, Id                             76391
EmployeeName           George  Leong
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                 21132.32
OtherPay                      4096.5
Benefits                    38511.22
TotalPay                   153784.82
TotalPayBenefits           192296.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76390, dtype: object)
(76391, Id                             76392
EmployeeName        Cynthia A Faenzi
JobTitle                 Firefighter
BasePay                    111207.65
OvertimePay                 24817.44
OtherPay                    17192.12
Benefits                    39068.33
TotalPay                   153217.21
TotalPayBenefits           192285.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76391, dtype: object)
(76392, Id                            76393
EmployeeName        Pauline  Hnatow
JobTitle                Inspector 3
BasePay                   143289.03
OvertimePay                     0.0
OtherPay                    7641.17
Benefits                    41346.3
TotalPay                   150930.2
TotalPayBenefits           192276.5
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76392, dtype: object)
(76393, Id                                76394
EmployeeName               Ocean R Berg
JobTitle            Public Health Nurse
BasePay                       142425.02
OvertimePay                         0.0
OtherPay                        5224.15
Benefits                       44625.77
TotalPay                      147649.17
TotalPayBenefits              192274.94
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76393, dtype: object)
(76394, Id                                       76395
EmployeeName        Clifford Jeffrey  Bramlett
JobTitle                            Manager IV
BasePay                               143856.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              48407.59
TotalPay                              143856.0
TotalPayBenefits                     192263.59
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76394, dtype: object)
(76395, Id                             76396
EmployeeName        Rolando  Canales
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 20280.65
OtherPay                    11000.76
Benefits                     37502.7
TotalPay                   154752.43
TotalPayBenefits           192255.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76395, dtype: object)
(76396, Id                             76397
EmployeeName        Hector L Basurto
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 27747.14
OtherPay                     3953.41
Benefits                    37055.11
TotalPay                   155171.56
TotalPayBenefits           192226.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76396, dtype: object)
(76397, Id                             76398
EmployeeName            Vivian  Curd
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                   4648.6
OtherPay                       362.1
Benefits                    44787.55
TotalPay                   147435.71
TotalPayBenefits           192223.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76397, dtype: object)
(76398, Id                           76399
EmployeeName        Robert J Totah
JobTitle                Sergeant 3
BasePay                   74298.04
OvertimePay                1149.63
OtherPay                  96013.95
Benefits                  20736.18
TotalPay                 171461.62
TotalPayBenefits          192197.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76398, dtype: object)
(76399, Id                             76400
EmployeeName           Paul L Ruetti
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 23159.18
OtherPay                    11329.18
Benefits                    36608.07
TotalPay                   155556.36
TotalPayBenefits           192164.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76399, dtype: object)
(76400, Id                          76401
EmployeeName        Amy L Hurwitz
JobTitle               Sergeant 2
BasePay                  130532.0
OvertimePay              11897.33
OtherPay                 11213.06
Benefits                 38497.06
TotalPay                153642.39
TotalPayBenefits        192139.45
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76400, dtype: object)
(76401, Id                              76402
EmployeeName        Louis  Staffaroni
JobTitle             Police Officer 3
BasePay                      123471.0
OvertimePay                  21766.64
OtherPay                       9033.9
Benefits                     37866.91
TotalPay                    154271.54
TotalPayBenefits            192138.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76401, dtype: object)
(76402, Id                                76403
EmployeeName        Michael D Hutchings
JobTitle                     Sergeant 3
BasePay                       143289.08
OvertimePay                     2064.74
OtherPay                        5663.63
Benefits                       41113.32
TotalPay                      151017.45
TotalPayBenefits              192130.77
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76402, dtype: object)
(76403, Id                             76404
EmployeeName         Matthew I Lopez
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 25945.95
OtherPay                      6683.7
Benefits                    38419.83
TotalPay                   153697.65
TotalPayBenefits           192117.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76403, dtype: object)
(76404, Id                            76405
EmployeeName        Daniel P Lowrey
JobTitle                Dep Dir III
BasePay                   142682.86
OvertimePay                     0.0
OtherPay                    6513.71
Benefits                   42872.52
TotalPay                  149196.57
TotalPayBenefits          192069.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76404, dtype: object)
(76405, Id                                  76406
EmployeeName                    Jin  Choi
JobTitle            Senior Deputy Sheriff
BasePay                         105436.54
OvertimePay                      40695.41
OtherPay                          10585.6
Benefits                         35336.78
TotalPay                        156717.55
TotalPayBenefits                192054.33
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76405, dtype: object)
(76406, Id                          76407
EmployeeName        Janet Y Seung
JobTitle               Pharmacist
BasePay                 137325.76
OvertimePay               5649.95
OtherPay                  6392.37
Benefits                  42685.5
TotalPay                149368.08
TotalPayBenefits        192053.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76406, dtype: object)
(76407, Id                             76408
EmployeeName        Robert K Richins
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 25610.65
OtherPay                     5927.62
Benefits                    37025.13
TotalPay                   155009.38
TotalPayBenefits           192034.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76407, dtype: object)
(76408, Id                          76409
EmployeeName          Dennis C Sy
JobTitle              Firefighter
BasePay                 115893.46
OvertimePay              16921.96
OtherPay                 18172.53
Benefits                 41044.36
TotalPay                150987.95
TotalPayBenefits        192032.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76408, dtype: object)
(76409, Id                          76410
EmployeeName        Angela I Tsai
JobTitle               Pharmacist
BasePay                 139752.01
OvertimePay                   0.0
OtherPay                 10077.64
Benefits                 42202.39
TotalPay                149829.65
TotalPayBenefits        192032.04
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76409, dtype: object)
(76410, Id                             76411
EmployeeName               Roger  Lu
JobTitle            Police Officer 3
BasePay                    123471.18
OvertimePay                 24884.06
OtherPay                     6181.68
Benefits                    37491.67
TotalPay                   154536.92
TotalPayBenefits           192028.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76410, dtype: object)
(76411, Id                                    76412
EmployeeName                 Mary J Boucher
JobTitle            Fire Safety Inspector 2
BasePay                           139644.04
OvertimePay                          1593.3
OtherPay                            8378.64
Benefits                           42403.14
TotalPay                          149615.98
TotalPayBenefits                  192019.12
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76411, dtype: object)
(76412, Id                             76413
EmployeeName        Krystle N Guzman
JobTitle            Police Officer 3
BasePay                    123471.17
OvertimePay                 13288.49
OtherPay                    18059.38
Benefits                    37199.75
TotalPay                   154819.04
TotalPayBenefits           192018.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76412, dtype: object)
(76413, Id                             76414
EmployeeName         Santiago G Hayo
JobTitle            Registered Nurse
BasePay                    138836.69
OvertimePay                  3956.25
OtherPay                    12990.91
Benefits                    36201.84
TotalPay                   155783.85
TotalPayBenefits           191985.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76413, dtype: object)
(76414, Id                          76415
EmployeeName        Brian  Danker
JobTitle              Inspector 3
BasePay                  74298.05
OvertimePay               7965.14
OtherPay                 89204.11
Benefits                 20517.94
TotalPay                 171467.3
TotalPayBenefits        191985.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76414, dtype: object)
(76415, Id                          76416
EmployeeName        James  Parish
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              13427.84
OtherPay                 20000.79
Benefits                 41593.36
TotalPay                150385.33
TotalPayBenefits        191978.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76415, dtype: object)
(76416, Id                             76417
EmployeeName        Marciel O Rivera
JobTitle                 Firefighter
BasePay                    115893.45
OvertimePay                 14806.52
OtherPay                     20151.9
Benefits                    41098.38
TotalPay                   150851.87
TotalPayBenefits           191950.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76416, dtype: object)
(76417, Id                             76418
EmployeeName          Aaron M Cowhig
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                 12127.73
OtherPay                    19204.86
Benefits                    37146.25
TotalPay                   154803.71
TotalPayBenefits           191949.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76417, dtype: object)
(76418, Id                          76419
EmployeeName            Eli  Chan
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              27884.12
OtherPay                  7745.66
Benefits                 39359.91
TotalPay                 152586.5
TotalPayBenefits        191946.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76418, dtype: object)
(76419, Id                             76420
EmployeeName        Thomas J Mannion
JobTitle                 Firefighter
BasePay                    115893.49
OvertimePay                 20796.37
OtherPay                    15426.24
Benefits                    39811.29
TotalPay                    152116.1
TotalPayBenefits           191927.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76419, dtype: object)
(76420, Id                               76421
EmployeeName             Larry  Porter
JobTitle            Transit Supervisor
BasePay                        92465.1
OvertimePay                   61146.64
OtherPay                       5040.66
Benefits                      33263.93
TotalPay                      158652.4
TotalPayBenefits             191916.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76420, dtype: object)
(76421, Id                          76422
EmployeeName          Emil B Cuan
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              16056.27
OtherPay                  17597.8
Benefits                 41305.21
TotalPay                150610.76
TotalPayBenefits        191915.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76421, dtype: object)
(76422, Id                             76423
EmployeeName           Thomas W Fong
JobTitle            Police Officer 3
BasePay                    123471.21
OvertimePay                 10519.68
OtherPay                    20733.67
Benefits                    37182.77
TotalPay                   154724.56
TotalPayBenefits           191907.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76422, dtype: object)
(76423, Id                                 76424
EmployeeName                John A Minor
JobTitle            Sheriff's Lieutenant
BasePay                        131410.26
OvertimePay                          0.0
OtherPay                        18299.59
Benefits                        42162.06
TotalPay                       149709.85
TotalPayBenefits               191871.91
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76423, dtype: object)
(76424, Id                          76425
EmployeeName          Samuel H Ho
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay               15148.8
OtherPay                  18340.8
Benefits                 41406.58
TotalPay                150446.31
TotalPayBenefits        191852.89
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76424, dtype: object)
(76425, Id                            76426
EmployeeName        Greg C Trumpler
JobTitle                Firefighter
BasePay                   115893.45
OvertimePay                25661.34
OtherPay                   10674.92
Benefits                   39620.08
TotalPay                  152229.71
TotalPayBenefits          191849.79
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76425, dtype: object)
(76426, Id                             76427
EmployeeName        Dennis S Rodelas
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                  8970.04
OtherPay                    22368.39
Benefits                    37035.85
TotalPay                   154809.48
TotalPayBenefits           191845.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76426, dtype: object)
(76427, Id                          76428
EmployeeName           Lloyd  Lew
JobTitle              Inspector 3
BasePay                 143289.12
OvertimePay               2549.86
OtherPay                  5180.12
Benefits                 40811.59
TotalPay                 151019.1
TotalPayBenefits        191830.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76427, dtype: object)
(76428, Id                                      76429
EmployeeName                Kristina R Nelson
JobTitle            EMT/Paramedic/Firefighter
BasePay                              135083.3
OvertimePay                           5046.41
OtherPay                              8105.01
Benefits                             43594.19
TotalPay                            148234.72
TotalPayBenefits                    191828.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76428, dtype: object)
(76429, Id                                76430
EmployeeName        Jacqueline  Gilbert
JobTitle             Nurse Practitioner
BasePay                       148260.83
OvertimePay                         0.0
OtherPay                          300.0
Benefits                       43262.47
TotalPay                      148560.83
TotalPayBenefits               191823.3
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76429, dtype: object)
(76430, Id                                       76431
EmployeeName                     James A Gumba
JobTitle            Senior Stationary Engineer
BasePay                                89768.7
OvertimePay                           62469.74
OtherPay                               6732.37
Benefits                              32827.25
TotalPay                             158970.81
TotalPayBenefits                     191798.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76430, dtype: object)
(76431, Id                           76432
EmployeeName        Charles  Leung
JobTitle                Pharmacist
BasePay                  146745.04
OvertimePay                1073.19
OtherPay                    1648.0
Benefits                  42325.75
TotalPay                 149466.23
TotalPayBenefits         191791.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76431, dtype: object)
(76432, Id                                76433
EmployeeName        Michael G Arsenault
JobTitle               Registered Nurse
BasePay                       117717.61
OvertimePay                     3830.41
OtherPay                       27144.83
Benefits                       43089.48
TotalPay                      148692.85
TotalPayBenefits              191782.33
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76432, dtype: object)
(76433, Id                             76434
EmployeeName         Andrea  Kozimor
JobTitle            Registered Nurse
BasePay                    142425.02
OvertimePay                  4228.25
OtherPay                      343.96
Benefits                    44783.32
TotalPay                   146997.23
TotalPayBenefits           191780.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76433, dtype: object)
(76434, Id                                76435
EmployeeName             Dontina  Oneal
JobTitle            Public Health Nurse
BasePay                       141306.05
OvertimePay                         0.0
OtherPay                        5018.27
Benefits                       45452.16
TotalPay                      146324.32
TotalPayBenefits              191776.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76434, dtype: object)
(76435, Id                                  76436
EmployeeName        Catherine M Fernandez
JobTitle                        Manager V
BasePay                         151263.27
OvertimePay                           0.0
OtherPay                           1000.0
Benefits                          39507.8
TotalPay                        152263.27
TotalPayBenefits                191771.07
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76435, dtype: object)
(76436, Id                             76437
EmployeeName           Huong  Nguyen
JobTitle            Registered Nurse
BasePay                    139083.96
OvertimePay                  4905.76
OtherPay                     6046.06
Benefits                    41681.89
TotalPay                   150035.78
TotalPayBenefits           191717.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76436, dtype: object)
(76437, Id                                   76438
EmployeeName        Gregory F Stechschulte
JobTitle                  Police Officer 2
BasePay                          118681.06
OvertimePay                       19070.86
OtherPay                          17786.74
Benefits                          36177.86
TotalPay                         155538.66
TotalPayBenefits                 191716.52
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76437, dtype: object)
(76438, Id                            76439
EmployeeName        James A Leonard
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                15108.89
OtherPay                   19658.81
Benefits                   41044.37
TotalPay                  150661.16
TotalPayBenefits          191705.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76438, dtype: object)
(76439, Id                             76440
EmployeeName           Alfred K Wong
JobTitle            Police Officer 3
BasePay                    123471.09
OvertimePay                 21651.52
OtherPay                     9556.93
Benefits                    37025.18
TotalPay                   154679.54
TotalPayBenefits           191704.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76439, dtype: object)
(76440, Id                                           76441
EmployeeName                    Amador M Gutierrez
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                               67874.56
OtherPay                                    7921.4
Benefits                                  33226.45
TotalPay                                 158470.86
TotalPayBenefits                         191697.31
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76440, dtype: object)
(76441, Id                          76442
EmployeeName        Richard  Goss
JobTitle               Sergeant 3
BasePay                 143289.07
OvertimePay               3250.55
OtherPay                   4019.8
Benefits                 41126.42
TotalPay                150559.42
TotalPayBenefits        191685.84
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76441, dtype: object)
(76442, Id                                     76443
EmployeeName               Michael J Denning
JobTitle            Communication Line Sprv1
BasePay                             105025.5
OvertimePay                         25526.57
OtherPay                            26065.64
Benefits                            35048.31
TotalPay                           156617.71
TotalPayBenefits                   191666.02
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76442, dtype: object)
(76443, Id                                    76444
EmployeeName                Timothy Y Leung
JobTitle            Administrative Engineer
BasePay                           142485.01
OvertimePay                             0.0
OtherPay                            6545.05
Benefits                           42634.63
TotalPay                          149030.06
TotalPayBenefits                  191664.69
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76443, dtype: object)
(76444, Id                             76445
EmployeeName        Hector R Rodarte
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 18706.67
OtherPay                    15017.84
Benefits                    36863.33
TotalPay                   154792.51
TotalPayBenefits           191655.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76444, dtype: object)
(76445, Id                                76446
EmployeeName                Mandy W Sen
JobTitle            Clinical Pharmacist
BasePay                        147159.7
OvertimePay                      815.25
OtherPay                          200.0
Benefits                       43387.84
TotalPay                      148174.95
TotalPayBenefits              191562.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76445, dtype: object)
(76446, Id                             76447
EmployeeName        Kirk R Edison Jr
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 21078.68
OtherPay                     9950.53
Benefits                    37055.13
TotalPay                   154500.22
TotalPayBenefits           191555.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76446, dtype: object)
(76447, Id                          76448
EmployeeName          Peter S Yee
JobTitle              Manager III
BasePay                 137018.56
OvertimePay                   0.0
OtherPay                   3818.6
Benefits                 50708.13
TotalPay                140837.16
TotalPayBenefits        191545.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76447, dtype: object)
(76448, Id                                 76449
EmployeeName              Kendal V Daggs
JobTitle            Sheriff's Lieutenant
BasePay                        131410.22
OvertimePay                      7456.93
OtherPay                        11738.91
Benefits                        40902.79
TotalPay                       150606.06
TotalPayBenefits               191508.85
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76448, dtype: object)
(76449, Id                              76450
EmployeeName        Andrew P Clifford
JobTitle             Police Officer 2
BasePay                     115263.35
OvertimePay                  27518.85
OtherPay                      13218.7
Benefits                      35487.8
TotalPay                     156000.9
TotalPayBenefits             191488.7
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76449, dtype: object)
(76450, Id                           76451
EmployeeName        Keith R Baraka
JobTitle               Firefighter
BasePay                  114905.11
OvertimePay               25591.76
OtherPay                  11687.78
Benefits                  39294.71
TotalPay                 152184.65
TotalPayBenefits         191479.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76450, dtype: object)
(76451, Id                                76452
EmployeeName        Michael G Baglin Jr
JobTitle               Police Officer 3
BasePay                       123471.03
OvertimePay                    27059.38
OtherPay                        3880.26
Benefits                       37055.11
TotalPay                      154410.67
TotalPayBenefits              191465.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76451, dtype: object)
(76452, Id                             76453
EmployeeName          Flora M Hester
JobTitle            Registered Nurse
BasePay                     142425.0
OvertimePay                  2373.75
OtherPay                      2531.6
Benefits                    44131.04
TotalPay                   147330.35
TotalPayBenefits           191461.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76452, dtype: object)
(76453, Id                                  76454
EmployeeName                Jeff L Steven
JobTitle            IS Engineer-Principal
BasePay                          139889.0
OvertimePay                           0.0
OtherPay                         10715.55
Benefits                         40856.19
TotalPay                        150604.55
TotalPayBenefits                191460.74
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76453, dtype: object)
(76454, Id                          76455
EmployeeName          Henry  Choy
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay              14050.24
OtherPay                  19005.3
Benefits                 41406.59
TotalPay                150012.26
TotalPayBenefits        191418.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76454, dtype: object)
(76455, Id                           76456
EmployeeName        Kennice D Burt
JobTitle            Deputy Sheriff
BasePay                    95123.0
OvertimePay               43523.93
OtherPay                  16823.08
Benefits                  35936.28
TotalPay                 155470.01
TotalPayBenefits         191406.29
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76455, dtype: object)
(76456, Id                             76457
EmployeeName          Consuelo N Yan
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                      0.0
OtherPay                     3508.22
Benefits                    45472.37
TotalPay                   145933.23
TotalPayBenefits            191405.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76456, dtype: object)
(76457, Id                             76458
EmployeeName            Nelly S Fong
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                      0.0
OtherPay                     3507.12
Benefits                     45467.7
TotalPay                   145932.13
TotalPayBenefits           191399.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76457, dtype: object)
(76458, Id                                       76459
EmployeeName        Granville R McCollough III
JobTitle                    Sheriff's Sergeant
BasePay                               114649.8
OvertimePay                           16514.85
OtherPay                              19884.65
Benefits                              40327.91
TotalPay                              151049.3
TotalPayBenefits                     191377.21
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76458, dtype: object)
(76459, Id                          76460
EmployeeName         Wiley  Ching
JobTitle               Pharmacist
BasePay                 146745.03
OvertimePay               2602.02
OtherPay                      0.0
Benefits                 42027.96
TotalPay                149347.05
TotalPayBenefits        191375.01
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76459, dtype: object)
(76460, Id                             76461
EmployeeName        Joseph S Carroll
JobTitle                 Inspector 3
BasePay                    143289.12
OvertimePay                  1222.11
OtherPay                     5329.09
Benefits                    41533.47
TotalPay                   149840.32
TotalPayBenefits           191373.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76460, dtype: object)
(76461, Id                             76462
EmployeeName          Maria S Ferido
JobTitle            Registered Nurse
BasePay                    141864.54
OvertimePay                   791.25
OtherPay                     3467.86
Benefits                     45246.5
TotalPay                   146123.65
TotalPayBenefits           191370.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76461, dtype: object)
(76462, Id                             76463
EmployeeName             Bryan H Woo
JobTitle            Police Officer 3
BasePay                    123471.01
OvertimePay                 23211.56
OtherPay                     7152.75
Benefits                     37522.5
TotalPay                   153835.32
TotalPayBenefits           191357.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76462, dtype: object)
(76463, Id                                    76464
EmployeeName             General A James Jr
JobTitle            Fire Safety Inspector 2
BasePay                            139644.0
OvertimePay                          925.14
OtherPay                            8378.64
Benefits                           42403.14
TotalPay                          148947.78
TotalPayBenefits                  191350.92
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76463, dtype: object)
(76464, Id                            76465
EmployeeName        Matthew L Wayne
JobTitle                Firefighter
BasePay                   116956.72
OvertimePay                13717.91
OtherPay                   19211.38
Benefits                   41437.81
TotalPay                  149886.01
TotalPayBenefits          191323.82
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76464, dtype: object)
(76465, Id                             76466
EmployeeName         Frank F Pereira
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 15594.66
OtherPay                     15217.3
Benefits                    37025.18
TotalPay                    154283.1
TotalPayBenefits           191308.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76465, dtype: object)
(76466, Id                              76467
EmployeeName        Anthony M Scafani
JobTitle             Police Officer 2
BasePay                     109863.13
OvertimePay                  29961.82
OtherPay                     15287.38
Benefits                     36191.68
TotalPay                    155112.33
TotalPayBenefits            191304.01
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76466, dtype: object)
(76467, Id                                76468
EmployeeName        Mary Grace P Savory
JobTitle               Registered Nurse
BasePay                       130550.26
OvertimePay                     1375.37
OtherPay                       18321.03
Benefits                       41047.56
TotalPay                      150246.66
TotalPayBenefits              191294.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76467, dtype: object)
(76468, Id                              76469
EmployeeName        Matthew S Estrada
JobTitle                  Firefighter
BasePay                     102923.03
OvertimePay                  37630.07
OtherPay                     11164.69
Benefits                     39558.97
TotalPay                    151717.79
TotalPayBenefits            191276.76
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76468, dtype: object)
(76469, Id                               76470
EmployeeName        Carlos J Mustafich
JobTitle              Police Officer 3
BasePay                      123471.21
OvertimePay                   21076.11
OtherPay                       9678.39
Benefits                      37025.18
TotalPay                     154225.71
TotalPayBenefits             191250.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76469, dtype: object)
(76470, Id                             76471
EmployeeName           Neil T Fanene
JobTitle            Police Officer 3
BasePay                    123471.04
OvertimePay                 22738.19
OtherPay                     7986.78
Benefits                    37047.79
TotalPay                   154196.01
TotalPayBenefits            191243.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76470, dtype: object)
(76471, Id                                      76472
EmployeeName                 David C Mitchell
JobTitle            Attorney (Civil/Criminal)
BasePay                             146861.61
OvertimePay                               0.0
OtherPay                               1640.0
Benefits                              42738.7
TotalPay                            148501.61
TotalPayBenefits                    191240.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76471, dtype: object)
(76472, Id                           76473
EmployeeName        Damian  Garcia
JobTitle               Firefighter
BasePay                  115185.51
OvertimePay               18229.49
OtherPay                  17255.44
Benefits                  40532.38
TotalPay                 150670.44
TotalPayBenefits         191202.82
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76472, dtype: object)
(76473, Id                          76474
EmployeeName          John F Dunn
JobTitle              Firefighter
BasePay                  116956.7
OvertimePay              17011.86
OtherPay                 16544.56
Benefits                  40686.4
TotalPay                150513.12
TotalPayBenefits        191199.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76473, dtype: object)
(76474, Id                                 76475
EmployeeName        Criselda M Rodriguez
JobTitle                Registered Nurse
BasePay                         137670.5
OvertimePay                       5351.7
OtherPay                         9449.87
Benefits                        38725.25
TotalPay                       152472.07
TotalPayBenefits               191197.32
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76474, dtype: object)
(76475, Id                             76476
EmployeeName             Suzie  Chow
JobTitle            Registered Nurse
BasePay                    142425.01
OvertimePay                      0.0
OtherPay                     3324.98
Benefits                    45420.86
TotalPay                   145749.99
TotalPayBenefits           191170.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76475, dtype: object)
(76476, Id                                    76477
EmployeeName        Christopher G Beauchamp
JobTitle                         Sergeant 2
BasePay                           130532.01
OvertimePay                         3811.34
OtherPay                           18291.59
Benefits                           38514.17
TotalPay                          152634.94
TotalPayBenefits                  191149.11
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 76476, dtype: object)
(76477, Id                           76478
EmployeeName         Dwight A Hall
JobTitle            Deputy Sheriff
BasePay                   94763.97
OvertimePay               48417.32
OtherPay                  13262.96
Benefits                   34696.7
TotalPay                 156444.25
TotalPayBenefits         191140.95
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76477, dtype: object)
(76478, Id                                 76479
EmployeeName        Maris W Goldsborough
JobTitle                      Sergeant 3
BasePay                        129343.15
OvertimePay                      14303.2
OtherPay                         9227.69
Benefits                        38256.74
TotalPay                       152874.04
TotalPayBenefits               191130.78
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76478, dtype: object)
(76479, Id                          76480
EmployeeName          Audrey E Yi
JobTitle               Pharmacist
BasePay                 146745.03
OvertimePay                272.09
OtherPay                  1730.06
Benefits                 42318.93
TotalPay                148747.18
TotalPayBenefits        191066.11
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76479, dtype: object)
(76480, Id                              76481
EmployeeName        Theodore J Mullin
JobTitle                  Inspector 3
BasePay                      143289.2
OvertimePay                   1803.55
OtherPay                      4847.64
Benefits                     41120.66
TotalPay                    149940.39
TotalPayBenefits            191061.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76480, dtype: object)
(76481, Id                             76482
EmployeeName         Raul A Mendieta
JobTitle            Police Officer 3
BasePay                     123471.2
OvertimePay                  23824.3
OtherPay                     6709.54
Benefits                    37055.22
TotalPay                   154005.04
TotalPayBenefits           191060.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76481, dtype: object)
(76482, Id                             76483
EmployeeName            Calvin K Lew
JobTitle            Police Officer 3
BasePay                    123471.06
OvertimePay                  21232.3
OtherPay                      9293.8
Benefits                    37047.71
TotalPay                   153997.16
TotalPayBenefits           191044.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76482, dtype: object)
(76483, Id                          76484
EmployeeName        David B Dupre
JobTitle               Pharmacist
BasePay                 146745.01
OvertimePay               2201.18
OtherPay                    81.54
Benefits                 42010.29
TotalPay                149027.73
TotalPayBenefits        191038.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76483, dtype: object)
(76484, Id                                76485
EmployeeName        Edgar M Covarrubias
JobTitle                    Firefighter
BasePay                       116440.61
OvertimePay                    14506.17
OtherPay                       18869.92
Benefits                        41215.6
TotalPay                       149816.7
TotalPayBenefits               191032.3
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76484, dtype: object)
(76485, Id                                 76486
EmployeeName        Francis J Valiquette
JobTitle                Police Officer 3
BasePay                        123471.01
OvertimePay                     29520.89
OtherPay                          979.13
Benefits                         37055.1
TotalPay                       153971.03
TotalPayBenefits               191026.13
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76485, dtype: object)
(76486, Id                             76487
EmployeeName            Mee-Loi  Yim
JobTitle            Registered Nurse
BasePay                     140085.0
OvertimePay                  2722.58
OtherPay                     3448.94
Benefits                    44732.17
TotalPay                   146256.52
TotalPayBenefits           190988.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76486, dtype: object)
(76487, Id                          76488
EmployeeName         Michael  Lee
JobTitle               Sergeant 2
BasePay                  130532.0
OvertimePay               7230.82
OtherPay                 14520.11
Benefits                 38701.64
TotalPay                152282.93
TotalPayBenefits        190984.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76487, dtype: object)
(76488, Id                             76489
EmployeeName        Kenneth J Koenig
JobTitle            Police Officer 3
BasePay                    123528.17
OvertimePay                 18733.32
OtherPay                    11651.61
Benefits                    37067.32
TotalPay                    153913.1
TotalPayBenefits           190980.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76488, dtype: object)
(76489, Id                             76490
EmployeeName         Troy J Courtney
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 25244.49
OtherPay                     5199.86
Benefits                    37062.83
TotalPay                    153915.4
TotalPayBenefits           190978.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76489, dtype: object)
(76490, Id                          76491
EmployeeName          Wei Yi O Mo
JobTitle               Pharmacist
BasePay                 146745.02
OvertimePay                  51.1
OtherPay                  1809.53
Benefits                 42359.38
TotalPay                148605.65
TotalPayBenefits        190965.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76490, dtype: object)
(76491, Id                             76492
EmployeeName        Gretchen  Parker
JobTitle            Police Officer 3
BasePay                    123471.16
OvertimePay                  23542.1
OtherPay                     6904.94
Benefits                    37025.18
TotalPay                    153918.2
TotalPayBenefits           190943.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76491, dtype: object)
(76492, Id                                  76493
EmployeeName             Robert R Trevizo
JobTitle            Senior Deputy Sheriff
BasePay                         105436.57
OvertimePay                      31339.42
OtherPay                          16161.1
Benefits                         38000.53
TotalPay                        152937.09
TotalPayBenefits                190937.62
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76492, dtype: object)
(76493, Id                             76494
EmployeeName            Thomas  Wong
JobTitle            Police Officer 3
BasePay                    123471.08
OvertimePay                 15375.43
OtherPay                    14251.82
Benefits                    37837.43
TotalPay                   153098.33
TotalPayBenefits           190935.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76493, dtype: object)
(76494, Id                            76495
EmployeeName        Donn J Peterson
JobTitle             Police Officer
BasePay                   116478.01
OvertimePay                21742.64
OtherPay                   16991.15
Benefits                   35718.05
TotalPay                   155211.8
TotalPayBenefits          190929.85
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76494, dtype: object)
(76495, Id                             76496
EmployeeName              Judy M Lam
JobTitle            Registered Nurse
BasePay                    138213.01
OvertimePay                  3215.37
OtherPay                     8276.18
Benefits                    41204.36
TotalPay                   149704.56
TotalPayBenefits           190908.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76495, dtype: object)
(76496, Id                            76497
EmployeeName        Timothy K Davis
JobTitle                 Sergeant 2
BasePay                   130532.02
OvertimePay                 1216.72
OtherPay                   20372.98
Benefits                   38775.38
TotalPay                  152121.72
TotalPayBenefits           190897.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76496, dtype: object)
(76497, Id                             76498
EmployeeName         Gregory E Latus
JobTitle            Police Officer 3
BasePay                    123471.03
OvertimePay                 18190.19
OtherPay                    11407.62
Benefits                    37814.48
TotalPay                   153068.84
TotalPayBenefits           190883.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76497, dtype: object)
(76498, Id                                         76499
EmployeeName                  Stephanie E Felder
JobTitle            Health Program Coordinator 3
BasePay                                 89400.77
OvertimePay                             50701.03
OtherPay                                18950.01
Benefits                                31823.02
TotalPay                               159051.81
TotalPayBenefits                       190874.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76498, dtype: object)
(76499, Id                                       76500
EmployeeName              Michael J Sallaberry
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                              148672.45
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              42197.66
TotalPay                             148672.45
TotalPayBenefits                     190870.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76499, dtype: object)
(76500, Id                                76501
EmployeeName        Donald R Jackson II
JobTitle               Police Officer 3
BasePay                       123471.13
OvertimePay                    23602.79
OtherPay                        6742.77
Benefits                        37040.2
TotalPay                      153816.69
TotalPayBenefits              190856.89
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76500, dtype: object)
(76501, Id                             76502
EmployeeName          Maribel  Amodo
JobTitle            Registered Nurse
BasePay                    138213.07
OvertimePay                   359.93
OtherPay                     8517.19
Benefits                    43765.61
TotalPay                   147090.19
TotalPayBenefits            190855.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76501, dtype: object)
(76502, Id                               76503
EmployeeName        Sandra Y Matsumura
JobTitle                    Pharmacist
BasePay                       139752.0
OvertimePay                        0.0
OtherPay                       8350.03
Benefits                      42736.08
TotalPay                     148102.03
TotalPayBenefits             190838.11
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76502, dtype: object)
(76503, Id                            76504
EmployeeName        Brian T Collins
JobTitle                Firefighter
BasePay                   116956.72
OvertimePay                13554.99
OtherPay                   19028.37
Benefits                   41294.25
TotalPay                  149540.08
TotalPayBenefits          190834.33
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76503, dtype: object)
(76504, Id                             76505
EmployeeName           John  Andrews
JobTitle            Police Officer 3
BasePay                    123471.21
OvertimePay                 25923.24
OtherPay                     4382.63
Benefits                    37025.19
TotalPay                   153777.08
TotalPayBenefits           190802.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76504, dtype: object)
(76505, Id                          76506
EmployeeName        Jana F Oliver
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              11511.81
OtherPay                 20682.03
Benefits                 41595.29
TotalPay                149150.55
TotalPayBenefits        190745.84
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76505, dtype: object)
(76506, Id                                      76507
EmployeeName                Cecilia T Mangoba
JobTitle            Attorney (Civil/Criminal)
BasePay                              147734.0
OvertimePay                               0.0
OtherPay                              2321.41
Benefits                             40676.44
TotalPay                            150055.41
TotalPayBenefits                    190731.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76506, dtype: object)
(76507, Id                                      76508
EmployeeName               Michael R Sullivan
JobTitle            Attorney (Civil/Criminal)
BasePay                             146809.54
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                              42660.4
TotalPay                            148059.54
TotalPayBenefits                    190719.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76507, dtype: object)
(76508, Id                                      76509
EmployeeName                 Rebecca J Prozan
JobTitle            Attorney (Civil/Criminal)
BasePay                             146809.54
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             42660.39
TotalPay                            148059.54
TotalPayBenefits                    190719.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76508, dtype: object)
(76509, Id                                      76510
EmployeeName                    James H Green
JobTitle            EMT/Paramedic/Firefighter
BasePay                             125192.74
OvertimePay                           6674.28
OtherPay                             16602.74
Benefits                             42232.68
TotalPay                            148469.76
TotalPayBenefits                    190702.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76509, dtype: object)
(76510, Id                             76511
EmployeeName        Sandra L Ganster
JobTitle                 Inspector 3
BasePay                     142758.3
OvertimePay                  3110.42
OtherPay                     3740.87
Benefits                    41091.59
TotalPay                   149609.59
TotalPayBenefits           190701.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76510, dtype: object)
(76511, Id                              76512
EmployeeName        Alexandra  Medina
JobTitle             Police Officer 3
BasePay                     123471.14
OvertimePay                  28134.81
OtherPay                      2033.61
Benefits                     37055.22
TotalPay                    153639.56
TotalPayBenefits            190694.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76511, dtype: object)
(76512, Id                           76513
EmployeeName        Victor S Lubet
JobTitle               Firefighter
BasePay                  116956.73
OvertimePay                12605.4
OtherPay                  19689.88
Benefits                  41406.59
TotalPay                 149252.01
TotalPayBenefits          190658.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76512, dtype: object)
(76513, Id                             76514
EmployeeName           Edwin A Anaya
JobTitle            Police Officer 2
BasePay                    116988.03
OvertimePay                 29699.27
OtherPay                     8143.65
Benefits                     35807.5
TotalPay                   154830.95
TotalPayBenefits           190638.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76513, dtype: object)
(76514, Id                            76515
EmployeeName        Sylvia P Morrow
JobTitle                Inspector 3
BasePay                   143289.07
OvertimePay                 2601.36
OtherPay                    3639.54
Benefits                   41093.52
TotalPay                  149529.97
TotalPayBenefits          190623.49
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76514, dtype: object)
(76515, Id                          76516
EmployeeName            Jun  Chen
JobTitle              Manager III
BasePay                 133604.54
OvertimePay                   0.0
OtherPay                   7500.0
Benefits                  49513.4
TotalPay                141104.54
TotalPayBenefits        190617.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76515, dtype: object)
(76516, Id                           76517
EmployeeName        Nancy E Galvin
JobTitle               Firefighter
BasePay                  116956.71
OvertimePay               13426.03
OtherPay                  18786.84
Benefits                  41387.42
TotalPay                 149169.58
TotalPayBenefits          190557.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76516, dtype: object)
(76517, Id                          76518
EmployeeName         Wayne G Chew
JobTitle              Firefighter
BasePay                 116956.71
OvertimePay              12487.78
OtherPay                 19669.88
Benefits                 41437.81
TotalPay                149114.37
TotalPayBenefits        190552.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76517, dtype: object)
(76518, Id                                76519
EmployeeName        Jennifer L Martinez
JobTitle                    Firefighter
BasePay                       116956.71
OvertimePay                    11726.58
OtherPay                       20292.77
Benefits                       41574.48
TotalPay                      148976.06
TotalPayBenefits              190550.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76518, dtype: object)
(76519, Id                               76520
EmployeeName          Roberto S Guzman
JobTitle            Transit Supervisor
BasePay                        93142.5
OvertimePay                   56159.91
OtherPay                       7307.48
Benefits                      33912.63
TotalPay                     156609.89
TotalPayBenefits             190522.52
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76519, dtype: object)
(76520, Id                                76521
EmployeeName              Arthur W Wong
JobTitle            IS Project Director
BasePay                       146939.02
OvertimePay                         0.0
OtherPay                        1374.06
Benefits                       42207.84
TotalPay                      148313.08
TotalPayBenefits              190520.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76520, dtype: object)
(76521, Id                           76522
EmployeeName        Michael E Mayo
JobTitle            Police Officer
BasePay                  115626.07
OvertimePay               29379.71
OtherPay                    9891.6
Benefits                  35581.35
TotalPay                 154897.38
TotalPayBenefits         190478.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76521, dtype: object)
(76522, Id                                      76523
EmployeeName                    Rita L Kearns
JobTitle            EMT/Paramedic/Firefighter
BasePay                             131184.13
OvertimePay                           3796.33
OtherPay                             12512.66
Benefits                             42974.07
TotalPay                            147493.12
TotalPayBenefits                    190467.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76522, dtype: object)
(76523, Id                                      76524
EmployeeName                   Matthew L Bean
JobTitle            EMT/Paramedic/Firefighter
BasePay                             109976.35
OvertimePay                          32070.65
OtherPay                             12145.39
Benefits                             36251.92
TotalPay                            154192.39
TotalPayBenefits                    190444.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76523, dtype: object)
(76524, Id                          76525
EmployeeName          Julie A Yee
JobTitle              Inspector 3
BasePay                  53667.08
OvertimePay               4944.24
OtherPay                116643.13
Benefits                 15150.53
TotalPay                175254.45
TotalPayBenefits        190404.98
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76524, dtype: object)
(76525, Id                               76526
EmployeeName        Kimberlee  Pitters
JobTitle                 Nurse Manager
BasePay                       140883.0
OvertimePay                        0.0
OtherPay                       4818.11
Benefits                      44668.85
TotalPay                     145701.11
TotalPayBenefits             190369.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76525, dtype: object)
(76526, Id                            76527
EmployeeName        Gary P Delagnes
JobTitle                Inspector 3
BasePay                     66337.5
OvertimePay                     0.0
OtherPay                  105229.97
Benefits                   18789.46
TotalPay                  171567.47
TotalPayBenefits          190356.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76526, dtype: object)
(76527, Id                                76528
EmployeeName        Danielle B Berthold
JobTitle             Nurse Practitioner
BasePay                       141901.86
OvertimePay                      233.66
OtherPay                        4522.54
Benefits                       43660.97
TotalPay                      146658.06
TotalPayBenefits              190319.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76527, dtype: object)
(76528, Id                                 76529
EmployeeName        Bridget M Ocallaghan
JobTitle            Sheriff's Lieutenant
BasePay                        131410.22
OvertimePay                      5662.44
OtherPay                        11988.71
Benefits                         41236.0
TotalPay                       149061.37
TotalPayBenefits               190297.37
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76528, dtype: object)
(76529, Id                               76530
EmployeeName              Almon C Wong
JobTitle            Transit Supervisor
BasePay                       86013.15
OvertimePay                   67316.45
OtherPay                       4954.03
Benefits                      32002.37
TotalPay                     158283.63
TotalPayBenefits              190286.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76529, dtype: object)
(76530, Id                             76531
EmployeeName         Wendell A Jones
JobTitle            Police Officer 3
BasePay                     123471.0
OvertimePay                 10553.93
OtherPay                    18485.58
Benefits                    37744.83
TotalPay                   152510.51
TotalPayBenefits           190255.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76530, dtype: object)
(76531, Id                                76532
EmployeeName             Joseph H Roger
JobTitle            Structural Engineer
BasePay                        145988.5
OvertimePay                         0.0
OtherPay                        1858.41
Benefits                       42404.77
TotalPay                      147846.91
TotalPayBenefits              190251.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76531, dtype: object)
(76532, Id                             76533
EmployeeName        Lance J Bosshard
JobTitle                 Inspector 3
BasePay                    143289.16
OvertimePay                  4059.03
OtherPay                     2030.94
Benefits                    40872.38
TotalPay                   149379.13
TotalPayBenefits           190251.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76532, dtype: object)
(76533, Id                                 76534
EmployeeName        Caren Aquino  Santos
JobTitle                Registered Nurse
BasePay                        129358.81
OvertimePay                      6379.17
OtherPay                        17614.16
Benefits                        36882.87
TotalPay                       153352.14
TotalPayBenefits               190235.01
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76533, dtype: object)
(76534, Id                                  76535
EmployeeName             Michael H Zehner
JobTitle            Senior Deputy Sheriff
BasePay                         105428.74
OvertimePay                      32048.59
OtherPay                          15743.1
Benefits                         36954.67
TotalPay                        153220.43
TotalPayBenefits                 190175.1
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76534, dtype: object)
(76535, Id                               76536
EmployeeName        Besilda M Mandapat
JobTitle              Registered Nurse
BasePay                      141106.25
OvertimePay                    2991.92
OtherPay                      11211.74
Benefits                      34860.03
TotalPay                     155309.91
TotalPayBenefits             190169.94
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76535, dtype: object)
(76536, Id                          76537
EmployeeName         Nancy Y Chin
JobTitle              Manager III
BasePay                 139284.77
OvertimePay                   0.0
OtherPay                   1601.1
Benefits                 49272.84
TotalPay                140885.87
TotalPayBenefits        190158.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76536, dtype: object)
(76537, Id                           76538
EmployeeName        Kevin  Worrell
JobTitle            Police Officer
BasePay                  116478.07
OvertimePay               35644.44
OtherPay                   2293.24
Benefits                  35732.23
TotalPay                 154415.75
TotalPayBenefits         190147.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76537, dtype: object)
(76538, Id                                       76539
EmployeeName        Renita T Nillas Laquindanu
JobTitle                      Registered Nurse
BasePay                              125782.41
OvertimePay                           10602.77
OtherPay                              11572.34
Benefits                              42175.97
TotalPay                             147957.52
TotalPayBenefits                     190133.49
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76538, dtype: object)
(76539, Id                           76540
EmployeeName        Frank V Filice
JobTitle               Manager III
BasePay                  140764.15
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   49361.4
TotalPay                 140764.15
TotalPayBenefits         190125.55
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76539, dtype: object)
(76540, Id                          76541
EmployeeName         Marc E Lopez
JobTitle              Firefighter
BasePay                 116956.69
OvertimePay              16174.54
OtherPay                 16200.28
Benefits                 40782.03
TotalPay                149331.51
TotalPayBenefits        190113.54
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76540, dtype: object)
(76541, Id                             76542
EmployeeName           Sergio  Lopez
JobTitle            Police Officer 3
BasePay                    123471.19
OvertimePay                 22164.78
OtherPay                     7437.25
Benefits                     37040.2
TotalPay                   153073.22
TotalPayBenefits           190113.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76541, dtype: object)
(76542, Id                                           76543
EmployeeName                          Pei Jian  Li
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                               68277.93
OtherPay                                   7577.44
Benefits                                  31577.01
TotalPay                                 158530.27
TotalPayBenefits                         190107.28
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76542, dtype: object)
(76543, Id                            76544
EmployeeName        Robert C Kobold
JobTitle                 Sergeant 3
BasePay                   133013.12
OvertimePay                11924.51
OtherPay                    6215.12
Benefits                    38949.9
TotalPay                  151152.75
TotalPayBenefits          190102.65
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76543, dtype: object)
(76544, Id                              76545
EmployeeName        Ma Gracia R Lopez
JobTitle             Registered Nurse
BasePay                     138497.81
OvertimePay                   8055.89
OtherPay                      5862.01
Benefits                     37680.44
TotalPay                    152415.71
TotalPayBenefits            190096.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76544, dtype: object)
(76545, Id                            76546
EmployeeName        Harry A Higgins
JobTitle                Firefighter
BasePay                   115893.46
OvertimePay                11826.67
OtherPay                    20891.8
Benefits                    41478.0
TotalPay                  148611.93
TotalPayBenefits          190089.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76545, dtype: object)
(76546, Id                            76547
EmployeeName        Susan  Schwartz
JobTitle                Manager III
BasePay                   140755.83
OvertimePay                     0.0
OtherPay                      25.95
Benefits                   49266.59
TotalPay                  140781.78
TotalPayBenefits          190048.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76546, dtype: object)
(76547, Id                             76548
EmployeeName         Steven D Mooney
JobTitle            Police Officer 2
BasePay                    126153.05
OvertimePay                 22442.22
OtherPay                     3576.72
Benefits                     37841.0
TotalPay                   152171.99
TotalPayBenefits           190012.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76547, dtype: object)
(76548, Id                              76549
EmployeeName        Carlos  Garate Jr
JobTitle             Police Officer 3
BasePay                     123471.11
OvertimePay                  25727.63
OtherPay                      3752.04
Benefits                     37055.22
TotalPay                    152950.78
TotalPayBenefits             190006.0
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76548, dtype: object)
(76549, Id                          76550
EmployeeName         Daniel A Lui
JobTitle              Firefighter
BasePay                 115893.48
OvertimePay              11733.45
OtherPay                 21091.95
Benefits                 41265.61
TotalPay                148718.88
TotalPayBenefits        189984.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76549, dtype: object)
(76550, Id                                76551
EmployeeName        Priscilla  Recidoro
JobTitle               Registered Nurse
BasePay                       142408.53
OvertimePay                      3165.0
OtherPay                        1357.96
Benefits                       43026.61
TotalPay                      146931.49
TotalPayBenefits               189958.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76550, dtype: object)
(76551, Id                             76552
EmployeeName        Chandra B Medina
JobTitle                  Sergeant 2
BasePay                    127494.04
OvertimePay                  9586.35
OtherPay                    14871.63
Benefits                    37976.14
TotalPay                   151952.02
TotalPayBenefits           189928.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76551, dtype: object)
(76552, Id                             76553
EmployeeName        Danielle  Newman
JobTitle                  Sergeant 3
BasePay                    143289.04
OvertimePay                    800.2
OtherPay                      5029.9
Benefits                     40804.4
TotalPay                   149119.14
TotalPayBenefits           189923.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76552, dtype: object)
(76553, Id                                           76554
EmployeeName                        Donald  Bryant
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                               72922.27
OtherPay                                    3510.0
Benefits                                  30801.36
TotalPay                                 159113.77
TotalPayBenefits                         189915.13
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 76553, dtype: object)
(76554, Id                              76555
EmployeeName        Rosemarie A Smith
JobTitle                   Sergeant 3
BasePay                     143289.07
OvertimePay                   4394.89
OtherPay                      1399.07
Benefits                     40813.32
TotalPay                    149083.03
TotalPayBenefits            189896.35
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76554, dtype: object)
(76555, Id                                      76556
EmployeeName                   Seth R Meisels
JobTitle            Attorney (Civil/Criminal)
BasePay                              146072.8
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             42569.97
TotalPay                             147322.8
TotalPayBenefits                    189892.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76555, dtype: object)
(76556, Id                              76557
EmployeeName        Consuelo A Mesina
JobTitle             Registered Nurse
BasePay                     141106.25
OvertimePay                   4035.38
OtherPay                      5843.78
Benefits                     38889.98
TotalPay                    150985.41
TotalPayBenefits            189875.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76556, dtype: object)
(76557, Id                             76558
EmployeeName        Kathryn  Waaland
JobTitle                  Sergeant 3
BasePay                    141389.04
OvertimePay                  4981.45
OtherPay                     2832.11
Benefits                    40661.65
TotalPay                    149202.6
TotalPayBenefits           189864.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76557, dtype: object)
(76558, Id                                         76559
EmployeeName                   Dennis J McCarthy
JobTitle            Utility Plumber Supervisor 1
BasePay                                104942.74
OvertimePay                             41619.52
OtherPay                                 8319.25
Benefits                                34945.86
TotalPay                               154881.51
TotalPayBenefits                       189827.37
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76558, dtype: object)
(76559, Id                             76560
EmployeeName        Macaria A Correa
JobTitle            Registered Nurse
BasePay                     138213.0
OvertimePay                  2303.55
OtherPay                     5982.45
Benefits                    43321.81
TotalPay                    146499.0
TotalPayBenefits           189820.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76559, dtype: object)
(76560, Id                                  76561
EmployeeName         Clarence L Lewis III
JobTitle            Senior Deputy Sheriff
BasePay                         105224.03
OvertimePay                      32794.99
OtherPay                         14833.33
Benefits                         36959.08
TotalPay                        152852.35
TotalPayBenefits                189811.43
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76560, dtype: object)
(76561, Id                             76562
EmployeeName         Sean P McNamara
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                  17532.8
OtherPay                    11747.63
Benefits                    37055.22
TotalPay                   152751.55
TotalPayBenefits           189806.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76561, dtype: object)
(76562, Id                             76563
EmployeeName             Allan  Wong
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 19531.73
OtherPay                      9743.4
Benefits                    37055.22
TotalPay                   152746.28
TotalPayBenefits            189801.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76562, dtype: object)
(76563, Id                             76564
EmployeeName            Lewis G Fong
JobTitle            Police Officer 3
BasePay                     128556.0
OvertimePay                  9723.75
OtherPay                    12085.83
Benefits                    39430.47
TotalPay                   150365.58
TotalPayBenefits           189796.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76563, dtype: object)
(76564, Id                             76565
EmployeeName           Stanley K Lee
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 13847.15
OtherPay                    14461.55
Benefits                    38006.46
TotalPay                   151779.81
TotalPayBenefits           189786.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76564, dtype: object)
(76565, Id                             76566
EmployeeName        Alberto A Duarte
JobTitle              Police Officer
BasePay                    116478.18
OvertimePay                 35728.69
OtherPay                     1831.03
Benefits                    35726.83
TotalPay                    154037.9
TotalPayBenefits           189764.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76565, dtype: object)
(76566, Id                             76567
EmployeeName          Raymond D Kane
JobTitle            Police Officer 3
BasePay                    123471.02
OvertimePay                 22602.39
OtherPay                     6639.35
Benefits                    37049.31
TotalPay                   152712.76
TotalPayBenefits           189762.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76566, dtype: object)
(76567, Id                             76568
EmployeeName        Erick A Anderson
JobTitle                  Sergeant 3
BasePay                    133013.16
OvertimePay                  9509.21
OtherPay                     8203.77
Benefits                    39011.12
TotalPay                   150726.14
TotalPayBenefits           189737.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76567, dtype: object)
(76568, Id                               76569
EmployeeName        Thomas C Bollinger
JobTitle                   Firefighter
BasePay                      116956.69
OvertimePay                   12213.99
OtherPay                       19255.3
Benefits                      41304.89
TotalPay                     148425.98
TotalPayBenefits             189730.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76568, dtype: object)
(76569, Id                             76570
EmployeeName          Daniel R Kroos
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 13044.76
OtherPay                    16047.72
Benefits                    37163.79
TotalPay                   152563.62
TotalPayBenefits           189727.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76569, dtype: object)
(76570, Id                           76571
EmployeeName           Samuel  Lou
JobTitle            Deputy Sheriff
BasePay                    95126.5
OvertimePay               53548.43
OtherPay                   7826.28
Benefits                  33215.55
TotalPay                 156501.21
TotalPayBenefits         189716.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76570, dtype: object)
(76571, Id                                       76572
EmployeeName        Annette  Hobrucker-Pfeifer
JobTitle             EMT/Paramedic/Firefighter
BasePay                              134622.01
OvertimePay                                0.0
OtherPay                              13528.96
Benefits                               41560.8
TotalPay                             148150.97
TotalPayBenefits                     189711.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76571, dtype: object)
(76572, Id                             76573
EmployeeName        Baljeet S Sangha
JobTitle                  Manager VI
BasePay                     139264.9
OvertimePay                      0.0
OtherPay                       25.25
Benefits                    50411.86
TotalPay                   139290.15
TotalPayBenefits           189702.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76572, dtype: object)
(76573, Id                                      76574
EmployeeName                Robert L Jones II
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133885.44
OvertimePay                           4558.04
OtherPay                              8033.15
Benefits                             43222.68
TotalPay                            146476.63
TotalPayBenefits                    189699.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76573, dtype: object)
(76574, Id                           76575
EmployeeName        Oscar J Taylor
JobTitle            Deputy Sheriff
BasePay                   95126.52
OvertimePay                46216.4
OtherPay                  13498.11
Benefits                  34857.47
TotalPay                 154841.03
TotalPayBenefits          189698.5
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76574, dtype: object)
(76575, Id                                  76576
EmployeeName                Michael  Chan
JobTitle            IS Engineer-Principal
BasePay                         139889.02
OvertimePay                           0.0
OtherPay                          8951.62
Benefits                         40856.21
TotalPay                        148840.64
TotalPayBenefits                189696.85
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76575, dtype: object)
(76576, Id                          76577
EmployeeName          Bruce  Wong
JobTitle               Pharmacist
BasePay                  146745.0
OvertimePay                   0.0
OtherPay                   770.31
Benefits                 42177.43
TotalPay                147515.31
TotalPayBenefits        189692.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76576, dtype: object)
(76577, Id                                76578
EmployeeName             Ivania J Quant
JobTitle            Public Health Nurse
BasePay                       138213.01
OvertimePay                         0.0
OtherPay                        6315.62
Benefits                       45164.01
TotalPay                      144528.63
TotalPayBenefits              189692.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76577, dtype: object)
(76578, Id                             76579
EmployeeName         Rupert  Geraldo
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                  16212.5
OtherPay                    15626.69
Benefits                    36783.94
TotalPay                   152907.19
TotalPayBenefits           189691.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76578, dtype: object)
(76579, Id                             76580
EmployeeName              Brian R Ng
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 23482.39
OtherPay                     8533.37
Benefits                    36600.58
TotalPay                   153083.76
TotalPayBenefits           189684.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76579, dtype: object)
(76580, Id                             76581
EmployeeName             Ricky L May
JobTitle            Registered Nurse
BasePay                     120128.8
OvertimePay                  7371.54
OtherPay                    19498.11
Benefits                    42675.52
TotalPay                   146998.45
TotalPayBenefits           189673.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76580, dtype: object)
(76581, Id                             76582
EmployeeName        Chris  Ray-Rohan
JobTitle                 Firefighter
BasePay                    116956.73
OvertimePay                 11683.23
OtherPay                    19488.07
Benefits                    41520.69
TotalPay                   148128.03
TotalPayBenefits           189648.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76581, dtype: object)
(76582, Id                                 76583
EmployeeName               William  Chun
JobTitle            Operating Room Nurse
BasePay                        126336.25
OvertimePay                       761.58
OtherPay                        22165.65
Benefits                        40366.64
TotalPay                       149263.48
TotalPayBenefits               189630.12
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76582, dtype: object)
(76583, Id                          76584
EmployeeName        Elaina M Chin
JobTitle               Pharmacist
BasePay                 146745.02
OvertimePay                   0.0
OtherPay                   715.95
Benefits                 42166.12
TotalPay                147460.97
TotalPayBenefits        189627.09
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76583, dtype: object)
(76584, Id                           76585
EmployeeName        Matthew J Fong
JobTitle                  Engineer
BasePay                  132401.61
OvertimePay                    0.0
OtherPay                   14924.4
Benefits                  42254.79
TotalPay                 147326.01
TotalPayBenefits          189580.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76584, dtype: object)
(76585, Id                          76586
EmployeeName        Martin G Dito
JobTitle              Inspector 3
BasePay                   68991.0
OvertimePay                4900.7
OtherPay                 96211.23
Benefits                 19473.32
TotalPay                170102.93
TotalPayBenefits        189576.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76585, dtype: object)
(76586, Id                             76587
EmployeeName            Jesse L Cruz
JobTitle            Police Officer 2
BasePay                    111546.18
OvertimePay                 28663.35
OtherPay                    12835.24
Benefits                     36523.1
TotalPay                   153044.77
TotalPayBenefits           189567.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76586, dtype: object)
(76587, Id                             76588
EmployeeName        Latanya  Kellogg
JobTitle            Police Officer 3
BasePay                    123471.05
OvertimePay                 28141.87
OtherPay                      893.43
Benefits                    37055.13
TotalPay                   152506.35
TotalPayBenefits           189561.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76587, dtype: object)
(76588, Id                          76589
EmployeeName        Steven E Metz
JobTitle              Firefighter
BasePay                 116956.73
OvertimePay              20765.33
OtherPay                 11837.42
Benefits                 39999.49
TotalPay                149559.48
TotalPayBenefits        189558.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76588, dtype: object)
(76589, Id                                  76590
EmployeeName                    Alan  Tse
JobTitle            IS Engineer-Principal
BasePay                         139889.06
OvertimePay                           0.0
OtherPay                          8807.25
Benefits                         40856.25
TotalPay                        148696.31
TotalPayBenefits                189552.56
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76589, dtype: object)
(76590, Id                                         76591
EmployeeName                  Mark E Christensen
JobTitle            Utility Plumber Supervisor 2
BasePay                                 119420.5
OvertimePay                             13507.41
OtherPay                                18494.79
Benefits                                38127.65
TotalPay                                151422.7
TotalPayBenefits                       189550.35
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76590, dtype: object)
(76591, Id                                         76592
EmployeeName                        Sean M Duffy
JobTitle            Utility Plumber Supervisor 2
BasePay                                113038.73
OvertimePay                             17380.79
OtherPay                                23602.06
Benefits                                 35524.7
TotalPay                               154021.58
TotalPayBenefits                       189546.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76591, dtype: object)
(76592, Id                                76593
EmployeeName                Kent  Leung
JobTitle            Structural Engineer
BasePay                       145991.04
OvertimePay                         0.0
OtherPay                        1255.16
Benefits                       42288.04
TotalPay                       147246.2
TotalPayBenefits              189534.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76592, dtype: object)
(76593, Id                                          76594
EmployeeName                     Thomas A Haymond
JobTitle            Sergeant, (Police Department)
BasePay                                  135270.0
OvertimePay                               5933.42
OtherPay                                  8626.23
Benefits                                 39667.22
TotalPay                                149829.65
TotalPayBenefits                        189496.87
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76593, dtype: object)
(76594, Id                             76595
EmployeeName         Carlos A Castro
JobTitle            Police Officer 2
BasePay                    115175.54
OvertimePay                 28685.37
OtherPay                     9587.62
Benefits                    35969.94
TotalPay                   153448.53
TotalPayBenefits           189418.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76594, dtype: object)
(76595, Id                           76596
EmployeeName        James J Carlin
JobTitle               Firefighter
BasePay                   116956.7
OvertimePay                11809.5
OtherPay                  19244.62
Benefits                  41406.59
TotalPay                 148010.82
TotalPayBenefits         189417.41
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76595, dtype: object)
(76596, Id                             76597
EmployeeName        Gabriel J Rivera
JobTitle                  Sergeant 2
BasePay                     126892.0
OvertimePay                 14877.02
OtherPay                     9880.86
Benefits                    37764.91
TotalPay                   151649.88
TotalPayBenefits           189414.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76596, dtype: object)
(76597, Id                             76598
EmployeeName             Edwin D Lee
JobTitle            Police Officer 2
BasePay                    121068.02
OvertimePay                 17950.06
OtherPay                     13795.3
Benefits                    36585.85
TotalPay                   152813.38
TotalPayBenefits           189399.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76597, dtype: object)
(76598, Id                              76599
EmployeeName        Theodora S Reilly
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  11395.28
OtherPay                     19592.67
Benefits                     41437.82
TotalPay                    147944.67
TotalPayBenefits            189382.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76598, dtype: object)
(76599, Id                             76600
EmployeeName        Elbert L Guin Jr
JobTitle            Police Officer 2
BasePay                     116584.0
OvertimePay                  31860.9
OtherPay                     5408.13
Benefits                    35525.98
TotalPay                   153853.03
TotalPayBenefits           189379.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76599, dtype: object)
(76600, Id                            76601
EmployeeName        Daniel E Guzman
JobTitle             Police Officer
BasePay                   116478.02
OvertimePay                18884.78
OtherPay                   18227.17
Benefits                   35732.23
TotalPay                  153589.97
TotalPayBenefits           189322.2
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76600, dtype: object)
(76601, Id                                76602
EmployeeName        Rodney  Fitzpatrick
JobTitle               Police Officer 3
BasePay                       122918.29
OvertimePay                    28627.73
OtherPay                         888.12
Benefits                        36884.7
TotalPay                      152434.14
TotalPayBenefits              189318.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76601, dtype: object)
(76602, Id                                  76603
EmployeeName                Carla L Clark
JobTitle            Senior Deputy Sheriff
BasePay                          105436.5
OvertimePay                      37481.87
OtherPay                         10371.32
Benefits                         36014.63
TotalPay                        153289.69
TotalPayBenefits                189304.32
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76602, dtype: object)
(76603, Id                          76604
EmployeeName        Lucio A Perez
JobTitle               Sergeant 3
BasePay                  143289.0
OvertimePay                   0.0
OtherPay                  4660.27
Benefits                 41346.28
TotalPay                147949.27
TotalPayBenefits        189295.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76603, dtype: object)
(76604, Id                              76605
EmployeeName        Michael A Shugars
JobTitle             Police Officer 2
BasePay                      120507.5
OvertimePay                  17891.42
OtherPay                     14465.33
Benefits                     36423.22
TotalPay                    152864.25
TotalPayBenefits            189287.47
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76604, dtype: object)
(76605, Id                             76606
EmployeeName        Anthony D Bryant
JobTitle              Deputy Sheriff
BasePay                     95123.01
OvertimePay                 48842.24
OtherPay                    10759.77
Benefits                    34514.95
TotalPay                   154725.02
TotalPayBenefits           189239.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76605, dtype: object)
(76606, Id                               76607
EmployeeName        Peter A Thoshinsky
JobTitle                  Lieutenant 3
BasePay                       87899.03
OvertimePay                    2334.83
OtherPay                      75005.71
Benefits                       23996.7
TotalPay                     165239.57
TotalPayBenefits             189236.27
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76606, dtype: object)
(76607, Id                                  76608
EmployeeName               Kim M Thompson
JobTitle            IS Engineer-Principal
BasePay                         146961.08
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         42212.91
TotalPay                        146961.08
TotalPayBenefits                189173.99
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76607, dtype: object)
(76608, Id                                76609
EmployeeName            Kathleen G Mark
JobTitle            IS Project Director
BasePay                       146961.01
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       42212.91
TotalPay                      146961.01
TotalPayBenefits              189173.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76608, dtype: object)
(76609, Id                                     76610
EmployeeName        Theresa Y Cuevas-Barredo
JobTitle                    Registered Nurse
BasePay                            123060.76
OvertimePay                          8062.44
OtherPay                            17469.87
Benefits                            40571.66
TotalPay                           148593.07
TotalPayBenefits                   189164.73
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76609, dtype: object)
(76610, Id                                76611
EmployeeName           Maria J Barteaux
JobTitle            IS Project Director
BasePay                       146958.35
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       42203.92
TotalPay                      146958.35
TotalPayBenefits              189162.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76610, dtype: object)
(76611, Id                              76612
EmployeeName        Armando S Suangco
JobTitle             Registered Nurse
BasePay                     115779.62
OvertimePay                   8778.15
OtherPay                     23115.26
Benefits                     41489.16
TotalPay                    147673.03
TotalPayBenefits            189162.19
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76611, dtype: object)
(76612, Id                           76613
EmployeeName          Jose L Lopez
JobTitle            Police Officer
BasePay                  116478.03
OvertimePay               31276.55
OtherPay                   5657.82
Benefits                  35732.23
TotalPay                  153412.4
TotalPayBenefits         189144.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76612, dtype: object)
(76613, Id                                  76614
EmployeeName              Rene F Leedeman
JobTitle            IS Engineer-Principal
BasePay                         146923.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         42205.15
TotalPay                        146923.54
TotalPayBenefits                189128.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76613, dtype: object)
(76614, Id                              76615
EmployeeName        Lawrence C Rustia
JobTitle                  Firefighter
BasePay                     116956.72
OvertimePay                  10764.42
OtherPay                     19962.31
Benefits                     41437.82
TotalPay                    147683.45
TotalPayBenefits            189121.27
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76614, dtype: object)
(76615, Id                             76616
EmployeeName               Jenny  Xu
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                  6775.86
OtherPay                    11009.52
Benefits                     37294.7
TotalPay                   151813.38
TotalPayBenefits           189108.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76615, dtype: object)
(76616, Id                                 76617
EmployeeName        Dianne E Owens-Lewis
JobTitle                     Manager III
BasePay                        138440.59
OvertimePay                          0.0
OtherPay                          1500.0
Benefits                        49130.39
TotalPay                       139940.59
TotalPayBenefits               189070.98
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76616, dtype: object)
(76617, Id                                          76618
EmployeeName        Maria Aurora F Chavez Lagasca
JobTitle                         Registered Nurse
BasePay                                  142425.0
OvertimePay                                   0.0
OtherPay                                  9428.46
Benefits                                 37209.36
TotalPay                                151853.46
TotalPayBenefits                        189062.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 76617, dtype: object)
(76618, Id                             76619
EmployeeName            Edgar A Tabo
JobTitle            Police Officer 3
BasePay                    123471.21
OvertimePay                 23074.05
OtherPay                     5491.91
Benefits                    37025.18
TotalPay                   152037.17
TotalPayBenefits           189062.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76618, dtype: object)
(76619, Id                                        76620
EmployeeName                         Thach Q Ly
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                            37715.78
OtherPay                                9582.04
Benefits                               36241.29
TotalPay                              152811.32
TotalPayBenefits                      189052.61
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76619, dtype: object)
(76620, Id                             76621
EmployeeName        James S Tacchini
JobTitle            Police Officer 2
BasePay                    121011.97
OvertimePay                 21155.41
OtherPay                    10278.23
Benefits                    36582.93
TotalPay                   152445.61
TotalPayBenefits           189028.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76620, dtype: object)
(76621, Id                             76622
EmployeeName             Jennie  Woo
JobTitle            Registered Nurse
BasePay                    142425.04
OvertimePay                      0.0
OtherPay                      1550.0
Benefits                    45044.42
TotalPay                   143975.04
TotalPayBenefits           189019.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76621, dtype: object)
(76622, Id                             76623
EmployeeName        Chien-Ping  Chou
JobTitle            Police Officer 3
BasePay                    123471.12
OvertimePay                 15616.09
OtherPay                    12687.14
Benefits                    37243.77
TotalPay                   151774.35
TotalPayBenefits           189018.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76622, dtype: object)
(76623, Id                                      76624
EmployeeName                 Lisa  Culbertson
JobTitle            Attorney (Civil/Criminal)
BasePay                             145301.54
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             42453.14
TotalPay                            146551.54
TotalPayBenefits                    189004.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76623, dtype: object)
(76624, Id                                 76625
EmployeeName         Angela K Miller Woo
JobTitle            Physician Specialist
BasePay                        145387.16
OvertimePay                          0.0
OtherPay                          4855.0
Benefits                        38756.07
TotalPay                       150242.16
TotalPayBenefits               188998.23
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76624, dtype: object)
(76625, Id                             76626
EmployeeName           Marisa  Ramos
JobTitle            Registered Nurse
BasePay                    130416.69
OvertimePay                   4095.3
OtherPay                    10810.84
Benefits                    43675.01
TotalPay                   145322.83
TotalPayBenefits           188997.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76625, dtype: object)
(76626, Id                             76627
EmployeeName        Leonard  Caldera
JobTitle            Police Officer 2
BasePay                    121068.01
OvertimePay                 26369.74
OtherPay                     4941.87
Benefits                    36585.84
TotalPay                   152379.62
TotalPayBenefits           188965.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76626, dtype: object)
(76627, Id                               76628
EmployeeName        Brandon L Thompson
JobTitle                Police Officer
BasePay                      116478.05
OvertimePay                   31778.67
OtherPay                       4972.88
Benefits                      35732.23
TotalPay                      153229.6
TotalPayBenefits             188961.83
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76627, dtype: object)
(76628, Id                          76629
EmployeeName        Henry H Tasto
JobTitle              Firefighter
BasePay                  116356.0
OvertimePay              21391.31
OtherPay                 11465.75
Benefits                 39706.89
TotalPay                149213.06
TotalPayBenefits        188919.95
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76628, dtype: object)
(76629, Id                                  76630
EmployeeName                Fabian  Perez
JobTitle            Senior Deputy Sheriff
BasePay                          105048.7
OvertimePay                      31493.91
OtherPay                         15120.16
Benefits                         37244.19
TotalPay                        151662.77
TotalPayBenefits                188906.96
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76629, dtype: object)
(76630, Id                                      76631
EmployeeName                 Patricia S Flood
JobTitle            EMT/Paramedic/Firefighter
BasePay                             135144.24
OvertimePay                           1953.45
OtherPay                              8122.47
Benefits                              43649.5
TotalPay                            145220.16
TotalPayBenefits                    188869.66
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76630, dtype: object)
(76631, Id                                 76632
EmployeeName           Robert C Debiasio
JobTitle            Sheriff's Lieutenant
BasePay                         131410.2
OvertimePay                      3578.24
OtherPay                        12533.64
Benefits                        41338.29
TotalPay                       147522.08
TotalPayBenefits               188860.37
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76631, dtype: object)
(76632, Id                             76633
EmployeeName           Shou Mei  Lin
JobTitle            Registered Nurse
BasePay                    119849.58
OvertimePay                   6498.0
OtherPay                    19794.71
Benefits                    42715.25
TotalPay                   146142.29
TotalPayBenefits           188857.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76632, dtype: object)
(76633, Id                          76634
EmployeeName           John C Mui
JobTitle               Manager IV
BasePay                  139765.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 49090.41
TotalPay                 139765.0
TotalPayBenefits        188855.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76633, dtype: object)
(76634, Id                             76635
EmployeeName          Joelle R Felix
JobTitle            Police Officer 3
BasePay                    123471.15
OvertimePay                 26235.85
OtherPay                     2116.92
Benefits                    37025.18
TotalPay                   151823.92
TotalPayBenefits            188849.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76634, dtype: object)
(76635, Id                           76636
EmployeeName        Samuel  Larano
JobTitle               Manager III
BasePay                  139103.53
OvertimePay                    0.0
OtherPay                    661.47
Benefits                  49082.04
TotalPay                  139765.0
TotalPayBenefits         188847.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76635, dtype: object)
(76636, Id                               76637
EmployeeName        Nicholas J Territo
JobTitle                Police Officer
BasePay                       116478.0
OvertimePay                   27776.44
OtherPay                       8872.82
Benefits                      35703.87
TotalPay                     153127.26
TotalPayBenefits             188831.13
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76636, dtype: object)
(76637, Id                            76638
EmployeeName            Paul W Rose
JobTitle            Manager IV, MTA
BasePay                   136971.93
OvertimePay                     0.0
OtherPay                    1557.69
Benefits                   50299.55
TotalPay                  138529.62
TotalPayBenefits          188829.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76637, dtype: object)
(76638, Id                               76639
EmployeeName          Victor M Sanchez
JobTitle            Sheriff's Sergeant
BasePay                      114649.83
OvertimePay                   20580.89
OtherPay                       14906.5
Benefits                      38661.59
TotalPay                     150137.22
TotalPayBenefits             188798.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76638, dtype: object)
(76639, Id                          76640
EmployeeName            Kin Y Lee
JobTitle               Sergeant 2
BasePay                 126892.02
OvertimePay              10801.28
OtherPay                 13349.83
Benefits                 37754.55
TotalPay                151043.13
TotalPayBenefits        188797.68
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76639, dtype: object)
(76640, Id                              76641
EmployeeName        Dewayne W Eckerdt
JobTitle                  Firefighter
BasePay                     116956.71
OvertimePay                  19385.77
OtherPay                     12331.82
Benefits                     40121.65
TotalPay                     148674.3
TotalPayBenefits            188795.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76640, dtype: object)
(76641, Id                              76642
EmployeeName          Raphael  Garcia
JobTitle            Project Manager 2
BasePay                     145422.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     43372.32
TotalPay                    145422.01
TotalPayBenefits            188794.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76641, dtype: object)
(76642, Id                               76643
EmployeeName         Michelle M Afzali
JobTitle            Nurse Practitioner
BasePay                      124346.41
OvertimePay                    25386.0
OtherPay                         422.8
Benefits                      38630.01
TotalPay                     150155.21
TotalPayBenefits             188785.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76642, dtype: object)
(76643, Id                               76644
EmployeeName             Bradford  Lum
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                   59175.14
OtherPay                       5231.59
Benefits                      32926.06
TotalPay                     155855.73
TotalPayBenefits             188781.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76643, dtype: object)
(76644, Id                                76645
EmployeeName        Vicky  Urbano-Jaime
JobTitle               Registered Nurse
BasePay                       142073.58
OvertimePay                         0.0
OtherPay                         1817.5
Benefits                       44877.89
TotalPay                      143891.08
TotalPayBenefits              188768.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76644, dtype: object)
(76645, Id                                76646
EmployeeName              Yash  Sharman
JobTitle            IS Project Director
BasePay                       145381.35
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       43382.57
TotalPay                      145381.35
TotalPayBenefits              188763.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76645, dtype: object)
(76646, Id                            76647
EmployeeName        John B Shanahan
JobTitle                 Sergeant 2
BasePay                   124939.04
OvertimePay                 5882.16
OtherPay                   20434.79
Benefits                    37503.1
TotalPay                  151255.99
TotalPayBenefits          188759.09
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76646, dtype: object)
(76647, Id                          76648
EmployeeName           David S Yi
JobTitle              Firefighter
BasePay                 116829.13
OvertimePay              11342.13
OtherPay                 19193.18
Benefits                 41390.59
TotalPay                147364.44
TotalPayBenefits        188755.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76647, dtype: object)
(76648, Id                                76649
EmployeeName        Rosahlie T Borgonia
JobTitle               Registered Nurse
BasePay                       116197.93
OvertimePay                      6799.8
OtherPay                       24179.39
Benefits                       41569.17
TotalPay                      147177.12
TotalPayBenefits              188746.29
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76648, dtype: object)
(76649, Id                             76650
EmployeeName          Susan M Thomas
JobTitle            Registered Nurse
BasePay                    139787.29
OvertimePay                      0.0
OtherPay                     4075.51
Benefits                    44874.43
TotalPay                    143862.8
TotalPayBenefits           188737.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76649, dtype: object)
(76650, Id                               76651
EmployeeName        Kristiane U Mohler
JobTitle              Registered Nurse
BasePay                      134028.01
OvertimePay                     5212.2
OtherPay                       9975.56
Benefits                      39514.99
TotalPay                     149215.77
TotalPayBenefits             188730.76
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76650, dtype: object)
(76651, Id                            76652
EmployeeName        John R Silva Jr
JobTitle                Firefighter
BasePay                   116956.71
OvertimePay                11054.17
OtherPay                   19217.94
Benefits                    41437.8
TotalPay                  147228.82
TotalPayBenefits          188666.62
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76651, dtype: object)
(76652, Id                             76653
EmployeeName        Stephon C Degand
JobTitle            Police Officer 2
BasePay                    115670.28
OvertimePay                 27861.43
OtherPay                     8049.88
Benefits                    37073.67
TotalPay                   151581.59
TotalPayBenefits           188655.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76652, dtype: object)
(76653, Id                                76654
EmployeeName        Roger E Bermudez Jr
JobTitle                 Deputy Sheriff
BasePay                        95119.51
OvertimePay                    48263.15
OtherPay                       10619.76
Benefits                       34641.25
TotalPay                      154002.42
TotalPayBenefits              188643.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76653, dtype: object)
(76654, Id                            76655
EmployeeName        Stacey  Camillo
JobTitle                 Manager IV
BasePay                   139536.04
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   49090.69
TotalPay                  139536.04
TotalPayBenefits          188626.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 76654, dtype: object)
(76655, Id                           76656
EmployeeName        Patrick F Shea
JobTitle               Firefighter
BasePay                  123884.26
OvertimePay                4885.68
OtherPay                  18106.69
Benefits                  41745.68
TotalPay                 146876.63
TotalPayBenefits         188622.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76655, dtype: object)
(76656, Id                                 76657
EmployeeName             John  Garcia Jr
JobTitle            Sheriff's Lieutenant
BasePay                         131415.0
OvertimePay                       2478.0
OtherPay                        13900.77
Benefits                        40827.99
TotalPay                       147793.77
TotalPayBenefits               188621.76
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76656, dtype: object)
(76657, Id                              76658
EmployeeName        Martin  Kilgariff
JobTitle             Police Officer 3
BasePay                      128556.0
OvertimePay                  13266.41
OtherPay                      7847.52
Benefits                     38944.88
TotalPay                    149669.93
TotalPayBenefits            188614.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76657, dtype: object)
(76658, Id                             76659
EmployeeName          Glenn E Sherry
JobTitle            Police Officer 3
BasePay                     124042.8
OvertimePay                  19128.0
OtherPay                     8227.15
Benefits                     37204.8
TotalPay                   151397.95
TotalPayBenefits           188602.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76658, dtype: object)
(76659, Id                              76660
EmployeeName        William J Heppler
JobTitle             Police Officer 3
BasePay                     121691.06
OvertimePay                  24739.04
OtherPay                      5453.53
Benefits                     36697.74
TotalPay                    151883.63
TotalPayBenefits            188581.37
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76659, dtype: object)
(76660, Id                             76661
EmployeeName            Eileen  Choy
JobTitle            Registered Nurse
BasePay                    133019.69
OvertimePay                  5919.55
OtherPay                    10577.17
Benefits                    39055.48
TotalPay                   149516.41
TotalPayBenefits           188571.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76660, dtype: object)
(76661, Id                             76662
EmployeeName         Miguel A Torres
JobTitle            Police Officer 3
BasePay                    123471.27
OvertimePay                  22423.5
OtherPay                     5147.91
Benefits                    37522.38
TotalPay                   151042.68
TotalPayBenefits           188565.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76661, dtype: object)
(76662, Id                               76663
EmployeeName        Rebecca  Silverman
JobTitle              Registered Nurse
BasePay                      141003.01
OvertimePay                        0.0
OtherPay                       2569.96
Benefits                      44985.14
TotalPay                     143572.97
TotalPayBenefits             188558.11
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76662, dtype: object)
(76663, Id                             76664
EmployeeName           Megumi  Salan
JobTitle            Registered Nurse
BasePay                    115868.47
OvertimePay                 14142.69
OtherPay                    19067.03
Benefits                    39472.87
TotalPay                   149078.19
TotalPayBenefits           188551.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76663, dtype: object)
(76664, Id                                     76665
EmployeeName                  Wendy  Gerrish
JobTitle            Sr Power Generation Tech
BasePay                            109148.09
OvertimePay                         39678.94
OtherPay                             3854.36
Benefits                            35843.05
TotalPay                           152681.39
TotalPayBenefits                   188524.44
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76664, dtype: object)
(76665, Id                           76666
EmployeeName        Jerry R Malone
JobTitle                 Manager V
BasePay                  125765.31
OvertimePay                    0.0
OtherPay                  17609.41
Benefits                  45130.08
TotalPay                 143374.72
TotalPayBenefits          188504.8
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 76665, dtype: object)
(76666, Id                              76667
EmployeeName        Stephen J Hampton
JobTitle             Police Officer 2
BasePay                      121068.0
OvertimePay                  18589.37
OtherPay                     12247.78
Benefits                     36580.08
TotalPay                    151905.15
TotalPayBenefits            188485.23
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76666, dtype: object)
(76667, Id                             76668
EmployeeName           Mark W Fraize
JobTitle            Police Officer 3
BasePay                    121780.06
OvertimePay                 20314.05
OtherPay                     9331.38
Benefits                    37030.03
TotalPay                   151425.49
TotalPayBenefits           188455.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76667, dtype: object)
(76668, Id                          76669
EmployeeName         Matt  Dorsey
JobTitle              Manager III
BasePay                 137439.44
OvertimePay                   0.0
OtherPay                   1961.5
Benefits                 49038.47
TotalPay                139400.94
TotalPayBenefits        188439.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76668, dtype: object)
(76669, Id                               76670
EmployeeName              Karen C Kwok
JobTitle            Nurse Practitioner
BasePay                       137402.7
OvertimePay                    8342.48
OtherPay                       1498.18
Benefits                      41194.84
TotalPay                     147243.36
TotalPayBenefits              188438.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76669, dtype: object)
(76670, Id                                       76671
EmployeeName                  Michael C Badger
JobTitle            Bldgs & Grounds Maint Supt
BasePay                              114249.02
OvertimePay                           26543.67
OtherPay                               9922.74
Benefits                              37718.96
TotalPay                             150715.43
TotalPayBenefits                     188434.39
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76670, dtype: object)
(76671, Id                             76672
EmployeeName            James C Funk
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 18734.74
OtherPay                    12028.47
Benefits                    36600.66
TotalPay                   151831.21
TotalPayBenefits           188431.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76671, dtype: object)
(76672, Id                                         76673
EmployeeName                         Eric C Kwan
JobTitle            Lieutenant, Fire Suppression
BasePay                                134667.46
OvertimePay                              2073.54
OtherPay                                 8265.85
Benefits                                43420.44
TotalPay                               145006.85
TotalPayBenefits                       188427.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 76672, dtype: object)
(76673, Id                                76674
EmployeeName        Marie Joy C Claudel
JobTitle               Registered Nurse
BasePay                       117944.64
OvertimePay                    11727.45
OtherPay                       23673.38
Benefits                       35079.73
TotalPay                      153345.47
TotalPayBenefits               188425.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76673, dtype: object)
(76674, Id                             76675
EmployeeName            Alta  Monroe
JobTitle            Registered Nurse
BasePay                    116958.53
OvertimePay                  30829.6
OtherPay                     2663.09
Benefits                    37973.76
TotalPay                   150451.22
TotalPayBenefits           188424.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76674, dtype: object)
(76675, Id                          76676
EmployeeName          Seng K Nguy
JobTitle                 Engineer
BasePay                 146296.99
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 42124.44
TotalPay                146296.99
TotalPayBenefits        188421.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76675, dtype: object)
(76676, Id                          76677
EmployeeName        Rick R Bailon
JobTitle              Inspector 3
BasePay                 143289.11
OvertimePay               3389.44
OtherPay                   914.03
Benefits                 40813.35
TotalPay                147592.58
TotalPayBenefits        188405.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76676, dtype: object)
(76677, Id                          76678
EmployeeName         Sueon F Wong
JobTitle              Firefighter
BasePay                 116956.72
OvertimePay                3590.3
OtherPay                 25244.92
Benefits                 42591.53
TotalPay                145791.94
TotalPayBenefits        188383.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76677, dtype: object)
(76678, Id                                76679
EmployeeName               Fran  Carter
JobTitle            Public Health Nurse
BasePay                       135567.54
OvertimePay                         0.0
OtherPay                        8555.73
Benefits                       44254.01
TotalPay                      144123.27
TotalPayBenefits              188377.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76678, dtype: object)
(76679, Id                                      76680
EmployeeName                    Hazel  Brandt
JobTitle            Attorney (Civil/Criminal)
BasePay                             144317.85
OvertimePay                               0.0
OtherPay                               3886.8
Benefits                             40160.01
TotalPay                            148204.65
TotalPayBenefits                    188364.66
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76679, dtype: object)
(76680, Id                             76681
EmployeeName         Shaun A Navarro
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 18318.92
OtherPay                    12367.61
Benefits                    36600.58
TotalPay                   151754.53
TotalPayBenefits           188355.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76680, dtype: object)
(76681, Id                                      76682
EmployeeName                  Timothy H Finch
JobTitle            EMT/Paramedic/Firefighter
BasePay                             115765.64
OvertimePay                          29259.62
OtherPay                              8316.09
Benefits                             35010.63
TotalPay                            153341.35
TotalPayBenefits                    188351.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76681, dtype: object)
(76682, Id                             76683
EmployeeName         Michael  Arrajj
JobTitle            Registered Nurse
BasePay                    142425.07
OvertimePay                   890.16
OtherPay                       250.0
Benefits                    44761.42
TotalPay                   143565.23
TotalPayBenefits           188326.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76682, dtype: object)
(76683, Id                             76684
EmployeeName              Eve S Zeff
JobTitle            Registered Nurse
BasePay                     132104.9
OvertimePay                  9124.98
OtherPay                     7096.19
Benefits                    39994.93
TotalPay                   148326.07
TotalPayBenefits            188321.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76683, dtype: object)
(76684, Id                             76685
EmployeeName           Damien  Fahey
JobTitle            Police Officer 3
BasePay                    123471.11
OvertimePay                 20824.98
OtherPay                     6981.71
Benefits                     37040.2
TotalPay                    151277.8
TotalPayBenefits            188318.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76684, dtype: object)
(76685, Id                                  76686
EmployeeName            Michael S Clauzel
JobTitle            Senior Deputy Sheriff
BasePay                         104882.71
OvertimePay                      38343.35
OtherPay                          9654.74
Benefits                         35436.46
TotalPay                         152880.8
TotalPayBenefits                188317.26
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76685, dtype: object)
(76686, Id                               76687
EmployeeName               Bill  Liang
JobTitle            Transit Supervisor
BasePay                        93819.9
OvertimePay                   58773.25
OtherPay                       2507.51
Benefits                      33183.09
TotalPay                     155100.66
TotalPayBenefits             188283.75
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76686, dtype: object)
(76687, Id                                        76688
EmployeeName                      Milton T Khuu
JobTitle            Electronic Maintenance Tech
BasePay                               105509.21
OvertimePay                            37118.59
OtherPay                                9423.02
Benefits                               36229.61
TotalPay                              152050.82
TotalPayBenefits                      188280.43
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 76687, dtype: object)
(76688, Id                                      76689
EmployeeName                      David  Dung
JobTitle            EMT/Paramedic/Firefighter
BasePay                             133915.67
OvertimePay                           3092.96
OtherPay                              8034.96
Benefits                             43232.06
TotalPay                            145043.59
TotalPayBenefits                    188275.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76688, dtype: object)
(76689, Id                                  76690
EmployeeName               Shane G Oneill
JobTitle            Senior Deputy Sheriff
BasePay                          105436.5
OvertimePay                      32270.12
OtherPay                         14409.47
Benefits                         36156.55
TotalPay                        152116.09
TotalPayBenefits                188272.64
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76689, dtype: object)
(76690, Id                                       76691
EmployeeName                      Renato  Bura
JobTitle            Bldgs & Grounds Maint Supt
BasePay                               114249.0
OvertimePay                            27945.5
OtherPay                               8569.31
Benefits                              37504.82
TotalPay                             150763.81
TotalPayBenefits                     188268.63
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 76690, dtype: object)
(76691, Id                                  76692
EmployeeName        Alberto G Jaime Lopez
JobTitle                      Firefighter
BasePay                         102003.45
OvertimePay                      30390.39
OtherPay                         15810.35
Benefits                         40052.48
TotalPay                        148204.19
TotalPayBenefits                188256.67
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 76691, dtype: object)
(76692, Id                          76693
EmployeeName        Blair L Adams
JobTitle               IS Manager
BasePay                 139445.84
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 48809.81
TotalPay                139445.84
TotalPayBenefits        188255.65
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76692, dtype: object)
(76693, Id                             76694
EmployeeName         Irene C Michaud
JobTitle            Police Officer 3
BasePay                    123471.14
OvertimePay                 22777.54
OtherPay                     4966.75
Benefits                    37025.18
TotalPay                   151215.43
TotalPayBenefits           188240.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76693, dtype: object)
(76694, Id                               76695
EmployeeName           Philip  Lasater
JobTitle            Sheriff's Sergeant
BasePay                      114643.52
OvertimePay                    11176.6
OtherPay                      22666.91
Benefits                      39744.78
TotalPay                     148487.03
TotalPayBenefits             188231.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76694, dtype: object)
(76695, Id                             76696
EmployeeName        Douglas P Arnold
JobTitle                  Sergeant 3
BasePay                    143289.15
OvertimePay                  1704.05
OtherPay                     2184.82
Benefits                    41035.84
TotalPay                   147178.02
TotalPayBenefits           188213.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76695, dtype: object)
(76696, Id                             76697
EmployeeName        Richard C Hooper
JobTitle            Registered Nurse
BasePay                     134028.0
OvertimePay                      0.0
OtherPay                     9445.81
Benefits                    44724.44
TotalPay                   143473.81
TotalPayBenefits           188198.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76696, dtype: object)
(76697, Id                                76698
EmployeeName              Angela F Winn
JobTitle            Physician Assistant
BasePay                        147747.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       40449.27
TotalPay                       147747.7
TotalPayBenefits              188196.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76697, dtype: object)
(76698, Id                              76699
EmployeeName        Ernesto A Linares
JobTitle               Police Officer
BasePay                     116478.01
OvertimePay                  23285.52
OtherPay                     12720.74
Benefits                     35703.87
TotalPay                    152484.27
TotalPayBenefits            188188.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76698, dtype: object)
(76699, Id                                 76700
EmployeeName                 Royce C Lin
JobTitle            Physician Specialist
BasePay                        142989.18
OvertimePay                          0.0
OtherPay                         3940.98
Benefits                        41236.24
TotalPay                       146930.16
TotalPayBenefits                188166.4
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 76699, dtype: object)
(76700, Id                               76701
EmployeeName          Matthew M O'Shea
JobTitle            Sheriff's Sergeant
BasePay                       114649.8
OvertimePay                   12986.61
OtherPay                      20151.37
Benefits                      40377.36
TotalPay                     147787.78
TotalPayBenefits             188165.14
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76700, dtype: object)
(76701, Id                                76702
EmployeeName            Nelda A Malilay
JobTitle            Public Health Nurse
BasePay                       138213.04
OvertimePay                         0.0
OtherPay                        5056.12
Benefits                       44890.06
TotalPay                      143269.16
TotalPayBenefits              188159.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 76701, dtype: object)
(76702, Id                               76703
EmployeeName        Peter M Busalacchi
JobTitle              Police Officer 3
BasePay                       128556.0
OvertimePay                    6830.42
OtherPay                       13302.4
Benefits                       39468.8
TotalPay                     148688.82
TotalPayBenefits             188157.62
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76702, dtype: object)
(76703, Id                             76704
EmployeeName        Joselito S Borja
JobTitle            Registered Nurse
BasePay                    124974.43
OvertimePay                  6314.38
OtherPay                    16043.49
Benefits                    40821.12
TotalPay                    147332.3
TotalPayBenefits           188153.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76703, dtype: object)
(76704, Id                             76705
EmployeeName        Carlos A Cordova
JobTitle              Police Officer
BasePay                    116363.88
OvertimePay                 28118.54
OtherPay                     7961.86
Benefits                    35691.88
TotalPay                   152444.28
TotalPayBenefits           188136.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76704, dtype: object)
(76705, Id                                      76706
EmployeeName                 Veronica E Jones
JobTitle            EMT/Paramedic/Firefighter
BasePay                              112328.0
OvertimePay                           30021.9
OtherPay                             10423.88
Benefits                              35358.1
TotalPay                            152773.78
TotalPayBenefits                    188131.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 76705, dtype: object)
(76706, Id                          76707
EmployeeName        Lori J Regler
JobTitle              Manager III
BasePay                 137514.27
OvertimePay                   0.0
OtherPay                   1615.4
Benefits                 48981.95
TotalPay                139129.67
TotalPayBenefits        188111.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 76706, dtype: object)
(76707, Id                             76708
EmployeeName            Mark W Stull
JobTitle            Police Officer 2
BasePay                     121068.0
OvertimePay                 26352.27
OtherPay                     4087.43
Benefits                    36600.57
TotalPay                    151507.7
TotalPayBenefits           188108.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76707, dtype: object)
(76708, Id                             76709
EmployeeName            Igor  Berman
JobTitle            Registered Nurse
BasePay                    133841.88
OvertimePay                      0.0
OtherPay                     9733.05
Benefits                    44532.92
TotalPay                   143574.93
TotalPayBenefits           188107.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 76708, dtype: object)
(76709, Id                                     76710
EmployeeName             Demetrious D Cutino
JobTitle            Supt Water Treatment Fac
BasePay                            132237.52
OvertimePay                           2004.2
OtherPay                            12618.22
Benefits                            41244.08
TotalPay                           146859.94
TotalPayBenefits                   188104.02
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 76709, dtype: object)
(76710, Id                                   76711
EmployeeName        Edward A Barrientos Jr
JobTitle                  Police Officer 3
BasePay                          123471.15
OvertimePay                       18471.99
OtherPay                           7592.47
Benefits                          38565.63
TotalPay                         149535.61
TotalPayBenefits                 188101.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 76710, dtype: object)
(76711, Id                               76712
EmployeeName           Nhon Tuan  Tran
JobTitle            Transit Supervisor
BasePay                        92803.8
OvertimePay                   60040.88
OtherPay                       2435.08
Benefits                      32819.49
TotalPay                     155279.76
TotalPayBenefits             188099.25
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 76711, dtype: object)
(76712, Id                              76713
EmployeeName        Cesli May C Galan
JobTitle             Registered Nurse
BasePay                     129616.97
OvertimePay                   2202.42
OtherPay                     12529.26
Benefits                     43721.74
TotalPay                    144348.65
TotalPayBenefits            188070.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 76712, dtype: object)
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)

(84262, Id                               84263
EmployeeName            Aisha F Strong
JobTitle            Physical Therapist
BasePay                       99620.41
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32844.89
TotalPay                      99620.41
TotalPayBenefits              132465.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84262, dtype: object)
(84263, Id                                84264
EmployeeName           Theron L Quarles
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    34344.44
OtherPay                        9384.92
Benefits                       27605.97
TotalPay                      104857.36
TotalPayBenefits              132463.33
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84263, dtype: object)
(84264, Id                                84265
EmployeeName        Gloria P Hunniecutt
JobTitle                  Accountant IV
BasePay                        99028.06
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        33411.4
TotalPay                       99028.06
TotalPayBenefits              132439.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84264, dtype: object)
(84265, Id                                         84266
EmployeeName                    Galileo  Medrano
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.01
OvertimePay                                  0.0
OtherPay                                 4764.78
Benefits                                32823.18
TotalPay                                99615.79
TotalPayBenefits                       132438.97
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84265, dtype: object)
(84266, Id                                84267
EmployeeName             Randy  Winston
JobTitle            Stationary Engineer
BasePay                         81743.9
OvertimePay                     3425.78
OtherPay                       14516.46
Benefits                       32745.26
TotalPay                       99686.14
TotalPayBenefits               132431.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84266, dtype: object)
(84267, Id                                   84268
EmployeeName                 Dana L Granby
JobTitle            Public SafetyComm Disp
BasePay                           86876.29
OvertimePay                         7513.4
OtherPay                           6043.15
Benefits                          31976.71
TotalPay                         100432.84
TotalPayBenefits                 132409.55
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84267, dtype: object)
(84268, Id                                         84269
EmployeeName                   Edwin  Florentino
JobTitle            Employment & Training Spec 5
BasePay                                 99036.01
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33368.77
TotalPay                                99036.01
TotalPayBenefits                       132404.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84268, dtype: object)
(84269, Id                                         84270
EmployeeName                        Zelda  Saeli
JobTitle            Employment & Training Spec 5
BasePay                                  99036.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33368.77
TotalPay                                 99036.0
TotalPayBenefits                       132404.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84269, dtype: object)
(84270, Id                                       84271
EmployeeName                Michael D McCarthy
JobTitle            IS Business Analyst-Senior
BasePay                                99077.9
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33318.39
TotalPay                               99077.9
TotalPayBenefits                     132396.29
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84270, dtype: object)
(84271, Id                                  84272
EmployeeName            John W Buchner Jr
JobTitle            Maintenance Machinist
BasePay                           82681.5
OvertimePay                       6874.26
OtherPay                          10642.2
Benefits                         32196.15
TotalPay                        100197.96
TotalPayBenefits                132394.11
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84271, dtype: object)
(84272, Id                           84273
EmployeeName         Chase P Mckay
JobTitle            Police Officer
BasePay                   92259.05
OvertimePay                3964.28
OtherPay                   3704.92
Benefits                  32456.15
TotalPay                  99928.25
TotalPayBenefits          132384.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84272, dtype: object)
(84273, Id                                       84274
EmployeeName              Arkadiy  Shimanovich
JobTitle            Senior Stationary Engineer
BasePay                                88945.5
OvertimePay                            3863.59
OtherPay                               6865.88
Benefits                              32705.02
TotalPay                              99674.97
TotalPayBenefits                     132379.99
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84273, dtype: object)
(84274, Id                                          84275
EmployeeName                        Connie L Chau
JobTitle            Senior Administrative Analyst
BasePay                                  98990.51
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33388.73
TotalPay                                 98990.51
TotalPayBenefits                        132379.24
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84274, dtype: object)
(84275, Id                              84276
EmployeeName        Michael L Ancheta
JobTitle             Transit Operator
BasePay                       69254.5
OvertimePay                  27427.94
OtherPay                      1799.05
Benefits                     33896.14
TotalPay                     98481.49
TotalPayBenefits            132377.63
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84275, dtype: object)
(84276, Id                                   84277
EmployeeName              Danielle  Murray
JobTitle            Sr. Environmental Spec
BasePay                           98155.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          34222.49
TotalPay                          98155.03
TotalPayBenefits                 132377.52
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84276, dtype: object)
(84277, Id                                  84278
EmployeeName              Frances L Hsieh
JobTitle            Legislative Assistant
BasePay                          98811.03
OvertimePay                           0.0
OtherPay                           183.95
Benefits                         33381.29
TotalPay                         98994.98
TotalPayBenefits                132376.27
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84277, dtype: object)
(84278, Id                            84279
EmployeeName          Megan A Filly
JobTitle            Admin Analyst 3
BasePay                    93391.51
OvertimePay                     0.0
OtherPay                    5632.02
Benefits                   33347.05
TotalPay                   99023.53
TotalPayBenefits          132370.58
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84278, dtype: object)
(84279, Id                                 84280
EmployeeName        Ronald D Crivello Jr
JobTitle                 Utility Plumber
BasePay                          98528.5
OvertimePay                        275.1
OtherPay                           240.0
Benefits                        33325.53
TotalPay                         99043.6
TotalPayBenefits               132369.13
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84279, dtype: object)
(84280, Id                                 84281
EmployeeName             Brooks W Fenton
JobTitle            Painter Supervisor 1
BasePay                         93454.55
OvertimePay                      6646.46
OtherPay                             2.0
Benefits                        32258.13
TotalPay                       100103.01
TotalPayBenefits               132361.14
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84280, dtype: object)
(84281, Id                                      84282
EmployeeName                   Jared F Cooper
JobTitle            EMT/Paramedic/Firefighter
BasePay                              87205.86
OvertimePay                           2826.74
OtherPay                             10520.93
Benefits                             31800.92
TotalPay                            100553.53
TotalPayBenefits                    132354.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84281, dtype: object)
(84282, Id                                         84283
EmployeeName                      Celinda  Cantu
JobTitle            Health Program Coordinator 3
BasePay                                 99004.93
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33341.78
TotalPay                                99004.93
TotalPayBenefits                       132346.71
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84282, dtype: object)
(84283, Id                               84284
EmployeeName             David W Baker
JobTitle            Watershed Forester
BasePay                      100999.83
OvertimePay                        0.0
OtherPay                        1000.0
Benefits                      30338.44
TotalPay                     101999.83
TotalPayBenefits             132338.27
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84283, dtype: object)
(84284, Id                           84285
EmployeeName         Rey G Yanguas
JobTitle            Deputy Sheriff
BasePay                    95126.5
OvertimePay                  22.58
OtherPay                   4886.34
Benefits                  32301.36
TotalPay                 100035.42
TotalPayBenefits         132336.78
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84284, dtype: object)
(84285, Id                                     84286
EmployeeName           Justine D Hinderliter
JobTitle            Senior Personnel Analyst
BasePay                             97834.85
OvertimePay                              0.0
OtherPay                              1436.7
Benefits                            33061.21
TotalPay                            99271.55
TotalPayBenefits                   132332.76
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84285, dtype: object)
(84286, Id                                84287
EmployeeName                  Kwe S Lee
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                     9783.37
OtherPay                       11535.91
Benefits                       31727.39
TotalPay                       100602.8
TotalPayBenefits              132330.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84286, dtype: object)
(84287, Id                                          84288
EmployeeName                Luciana M Garcia Bley
JobTitle            Senior Administrative Analyst
BasePay                                  98116.19
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  34208.3
TotalPay                                 98116.19
TotalPayBenefits                        132324.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84287, dtype: object)
(84288, Id                                         84289
EmployeeName                      Dario A Cantor
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              4882.84
OtherPay                                 7563.47
Benefits                                33341.23
TotalPay                                98976.31
TotalPayBenefits                       132317.54
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84288, dtype: object)
(84289, Id                          84290
EmployeeName         Naomi B Chow
JobTitle                Asst Engr
BasePay                  94021.56
OvertimePay                   0.0
OtherPay                  4115.88
Benefits                 34177.69
TotalPay                 98137.44
TotalPayBenefits        132315.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84289, dtype: object)
(84290, Id                                           84291
EmployeeName                       John J Nickless
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                8029.89
OtherPay                                    9602.1
Benefits                                  32000.41
TotalPay                                 100313.49
TotalPayBenefits                          132313.9
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84290, dtype: object)
(84291, Id                                        84292
EmployeeName                       Susan M Cook
JobTitle            IS Administrator-Supervisor
BasePay                                 92775.1
OvertimePay                                 0.0
OtherPay                                 6404.1
Benefits                               33134.61
TotalPay                                99179.2
TotalPayBenefits                      132313.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84291, dtype: object)
(84292, Id                                84293
EmployeeName           Miguel A Caro Jr
JobTitle            Stationary Engineer
BasePay                        78696.28
OvertimePay                     2241.29
OtherPay                        20379.6
Benefits                        30996.4
TotalPay                      101317.17
TotalPayBenefits              132313.57
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84292, dtype: object)
(84293, Id                                     84294
EmployeeName                    Richard C Ng
JobTitle            Senior Personnel Analyst
BasePay                             98929.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33371.04
TotalPay                            98929.53
TotalPayBenefits                   132300.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84293, dtype: object)
(84294, Id                                         84295
EmployeeName                        Steve  Sabin
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              4635.45
OtherPay                                 8572.14
Benefits                                32557.56
TotalPay                                99737.59
TotalPayBenefits                       132295.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84294, dtype: object)
(84295, Id                                84296
EmployeeName             Mark  Kirovsky
JobTitle            Stationary Engineer
BasePay                         79717.9
OvertimePay                     1935.61
OtherPay                       17735.29
Benefits                       32886.33
TotalPay                        99388.8
TotalPayBenefits              132275.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84295, dtype: object)
(84296, Id                                       84297
EmployeeName                      Erin A Moody
JobTitle            Protective Services Worker
BasePay                               93516.29
OvertimePay                            4646.45
OtherPay                                1968.9
Benefits                              32139.68
TotalPay                             100131.64
TotalPayBenefits                     132271.32
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84296, dtype: object)
(84297, Id                            84298
EmployeeName        Jamel R Ellison
JobTitle             Police Officer
BasePay                    92259.04
OvertimePay                 6165.29
OtherPay                    1387.76
Benefits                   32454.95
TotalPay                   99812.09
TotalPayBenefits          132267.04
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84297, dtype: object)
(84298, Id                              84299
EmployeeName        Jeremiah D Lehane
JobTitle                      Plumber
BasePay                      98892.54
OvertimePay                       0.0
OtherPay                      12573.1
Benefits                     20790.92
TotalPay                    111465.64
TotalPayBenefits            132256.56
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84298, dtype: object)
(84299, Id                               84300
EmployeeName        Michelle M Jeffers
JobTitle                    Dep Dir II
BasePay                       97384.54
OvertimePay                        0.0
OtherPay                        1480.0
Benefits                      33383.63
TotalPay                      98864.54
TotalPayBenefits             132248.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84299, dtype: object)
(84300, Id                                          84301
EmployeeName                     William N Sparks
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               7929.09
OtherPay                                      0.0
Benefits                                 32025.41
TotalPay                                100222.59
TotalPayBenefits                         132248.0
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84300, dtype: object)
(84301, Id                                    84302
EmployeeName            William K Wedemeyer
JobTitle            Program Support Analyst
BasePay                            98858.89
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           33378.05
TotalPay                           98858.89
TotalPayBenefits                  132236.94
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84301, dtype: object)
(84302, Id                                          84303
EmployeeName                         Kurt A Kraal
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               6765.16
OtherPay                                   967.32
Benefits                                  32207.1
TotalPay                                100025.98
TotalPayBenefits                        132233.08
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84302, dtype: object)
(84303, Id                               84304
EmployeeName             Peter L Ramos
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                    5704.98
OtherPay                        2650.0
Benefits                      32415.47
TotalPay                      99803.98
TotalPayBenefits             132219.45
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84303, dtype: object)
(84304, Id                             84305
EmployeeName               Lai V Chu
JobTitle            Transit Operator
BasePay                      68455.1
OvertimePay                 24044.85
OtherPay                      5284.4
Benefits                    34430.73
TotalPay                    97784.35
TotalPayBenefits           132215.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84304, dtype: object)
(84305, Id                                           84306
EmployeeName                             Eric S Ma
JobTitle            IT Operations Support Admin IV
BasePay                                   98019.55
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  34182.87
TotalPay                                  98019.55
TotalPayBenefits                         132202.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84305, dtype: object)
(84306, Id                                          84307
EmployeeName                        Carey M Huang
JobTitle            Parking Meter Repairer Sprv 1
BasePay                                   83160.0
OvertimePay                              18073.42
OtherPay                                    648.0
Benefits                                 30316.74
TotalPay                                101881.42
TotalPayBenefits                        132198.16
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84306, dtype: object)
(84307, Id                                          84308
EmployeeName                      Jill  Schroeder
JobTitle            Sr Public Defenders Invstgtor
BasePay                                  98847.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  33331.0
TotalPay                                 98847.02
TotalPayBenefits                        132178.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84307, dtype: object)
(84308, Id                                          84309
EmployeeName                     Gary D Sourifman
JobTitle            Sr Public Defenders Invstgtor
BasePay                                  98847.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33331.01
TotalPay                                 98847.01
TotalPayBenefits                        132178.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84308, dtype: object)
(84309, Id                                          84310
EmployeeName                     Nigel P Phillips
JobTitle            Sr Public Defenders Invstgtor
BasePay                                   98847.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  33331.0
TotalPay                                  98847.0
TotalPayBenefits                         132178.0
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84309, dtype: object)
(84310, Id                                     84311
EmployeeName                    Tan T Nguyen
JobTitle            Deputy Probation Officer
BasePay                              96281.1
OvertimePay                          5394.31
OtherPay                                 0.0
Benefits                            30499.29
TotalPay                           101675.41
TotalPayBenefits                    132174.7
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84310, dtype: object)
(84311, Id                                     84312
EmployeeName                     Derek J Hom
JobTitle            Sprv Prob Ofc, Juv Court
BasePay                            100717.77
OvertimePay                           174.48
OtherPay                                 0.0
Benefits                            31276.45
TotalPay                           100892.25
TotalPayBenefits                    132168.7
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84311, dtype: object)
(84312, Id                             84313
EmployeeName         Mohammed  Humed
JobTitle            Transit Operator
BasePay                     69448.46
OvertimePay                 22235.42
OtherPay                     5476.66
Benefits                    35002.75
TotalPay                    97160.54
TotalPayBenefits           132163.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84312, dtype: object)
(84313, Id                                         84314
EmployeeName                   Roszena  Iskandar
JobTitle            Sr Personal Property Auditor
BasePay                                 98339.62
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                33341.31
TotalPay                                98819.62
TotalPayBenefits                       132160.93
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84313, dtype: object)
(84314, Id                                         84315
EmployeeName                 Mercedes V Biscocho
JobTitle            Sr Personal Property Auditor
BasePay                                 98339.55
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                33341.29
TotalPay                                98819.55
TotalPayBenefits                       132160.84
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84314, dtype: object)
(84315, Id                                  84316
EmployeeName                Judson S True
JobTitle            Legislative Assistant
BasePay                          98811.08
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33342.07
TotalPay                         98811.08
TotalPayBenefits                132153.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84315, dtype: object)
(84316, Id                                  84317
EmployeeName               Andres M Power
JobTitle            Legislative Assistant
BasePay                          98811.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33342.07
TotalPay                         98811.01
TotalPayBenefits                132153.08
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84316, dtype: object)
(84317, Id                             84318
EmployeeName        Chaigne E Stokes
JobTitle            Police Officer 3
BasePay                     94889.79
OvertimePay                  2986.74
OtherPay                     5618.91
Benefits                     28655.6
TotalPay                   103495.44
TotalPayBenefits           132151.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84317, dtype: object)
(84318, Id                                           84319
EmployeeName                            David  Yip
JobTitle            Electrical Transit System Mech
BasePay                                   78770.82
OvertimePay                               13068.92
OtherPay                                    9657.6
Benefits                                  30650.82
TotalPay                                 101497.34
TotalPayBenefits                         132148.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84318, dtype: object)
(84319, Id                           84320
EmployeeName         Ramon C Aguas
JobTitle            Deputy Sheriff
BasePay                   95126.51
OvertimePay                 445.01
OtherPay                   4064.28
Benefits                  32496.46
TotalPay                   99635.8
TotalPayBenefits         132132.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84319, dtype: object)
(84320, Id                          84321
EmployeeName        Michael  Tran
JobTitle                Asst Engr
BasePay                  97958.91
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 34156.61
TotalPay                 97958.91
TotalPayBenefits        132115.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84320, dtype: object)
(84321, Id                                   84322
EmployeeName                 Lisa R Farfan
JobTitle            Public SafetyComm Disp
BasePay                            86965.2
OvertimePay                        7877.96
OtherPay                           5375.58
Benefits                          31895.34
TotalPay                         100218.74
TotalPayBenefits                 132114.08
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84321, dtype: object)
(84322, Id                                       84323
EmployeeName                     Arthur G Wong
JobTitle            Eng/Arch/Landscape Arch Sr
BasePay                               81954.01
OvertimePay                                0.0
OtherPay                              28070.66
Benefits                              22088.11
TotalPay                             110024.67
TotalPayBenefits                     132112.78
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84322, dtype: object)
(84323, Id                                  84324
EmployeeName                Adam C Taylor
JobTitle            Legislative Assistant
BasePay                          97946.02
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         34160.08
TotalPay                         97946.02
TotalPayBenefits                 132106.1
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84323, dtype: object)
(84324, Id                                         84325
EmployeeName                 Juvenal  Villarreal
JobTitle            Cement Finisher Supervisor 1
BasePay                                 100548.0
OvertimePay                              9128.22
OtherPay                                  717.83
Benefits                                21711.48
TotalPay                               110394.05
TotalPayBenefits                       132105.53
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84324, dtype: object)
(84325, Id                             84326
EmployeeName         Teofilo  Chuson
JobTitle            Transit Operator
BasePay                     68308.41
OvertimePay                 28937.93
OtherPay                     1521.74
Benefits                    33335.48
TotalPay                    98768.08
TotalPayBenefits           132103.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84325, dtype: object)
(84326, Id                                           84327
EmployeeName                      Donna M Yurgeles
JobTitle            Sr Airport Communications Disp
BasePay                                   85411.73
OvertimePay                                8862.47
OtherPay                                   5329.25
Benefits                                  32478.94
TotalPay                                  99603.45
TotalPayBenefits                         132082.39
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84326, dtype: object)
(84327, Id                               84328
EmployeeName        Macdonald O Uzomah
JobTitle              Transit Operator
BasePay                       68601.56
OvertimePay                   21248.14
OtherPay                       7191.05
Benefits                      35040.45
TotalPay                      97040.75
TotalPayBenefits              132081.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84327, dtype: object)
(84328, Id                              84329
EmployeeName        Willie G Williams
JobTitle            Transit Manager 1
BasePay                       97424.0
OvertimePay                       0.0
OtherPay                      1306.95
Benefits                     33348.28
TotalPay                     98730.95
TotalPayBenefits            132079.23
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84328, dtype: object)
(84329, Id                            84330
EmployeeName        Michael R Olsen
JobTitle                Electrician
BasePay                     94481.0
OvertimePay                 3962.13
OtherPay                     1580.0
Benefits                   32054.69
TotalPay                  100023.13
TotalPayBenefits          132077.82
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84329, dtype: object)
(84330, Id                             84331
EmployeeName        Margaret P Tseng
JobTitle                   Manager I
BasePay                     96810.11
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    35263.61
TotalPay                    96810.11
TotalPayBenefits           132073.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84330, dtype: object)
(84331, Id                                           84332
EmployeeName                           Kyle M Chan
JobTitle            Environmental Health Inspector
BasePay                                   96702.54
OvertimePay                                    0.0
OtherPay                                    1225.0
Benefits                                  34145.93
TotalPay                                  97927.54
TotalPayBenefits                         132073.47
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84331, dtype: object)
(84332, Id                                84333
EmployeeName           Reginald H Allen
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    34293.02
OtherPay                         9081.4
Benefits                       27570.71
TotalPay                      104502.42
TotalPayBenefits              132073.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84332, dtype: object)
(84333, Id                          84334
EmployeeName          Joy K Kwong
JobTitle            Special Nurse
BasePay                 126266.99
OvertimePay               1562.61
OtherPay                  2929.99
Benefits                   1307.6
TotalPay                130759.59
TotalPayBenefits        132067.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84333, dtype: object)
(84334, Id                                         84335
EmployeeName                      Alan E Whitney
JobTitle            Health Program Coordinator 3
BasePay                                 98724.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 33333.3
TotalPay                                98724.53
TotalPayBenefits                       132057.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84334, dtype: object)
(84335, Id                          84336
EmployeeName        Colin  Reilly
JobTitle             Truck Driver
BasePay                  80052.03
OvertimePay              18737.61
OtherPay                  3087.25
Benefits                 30177.39
TotalPay                101876.89
TotalPayBenefits        132054.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84335, dtype: object)
(84336, Id                                      84337
EmployeeName                    Natosha  Safo
JobTitle            Pr Administrative Analyst
BasePay                              98714.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33338.79
TotalPay                             98714.54
TotalPayBenefits                    132053.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84336, dtype: object)
(84337, Id                                         84338
EmployeeName                       John L Martin
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.04
OvertimePay                              6195.87
OtherPay                                 7147.11
Benefits                                32141.48
TotalPay                                99873.02
TotalPayBenefits                        132014.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84337, dtype: object)
(84338, Id                                   84339
EmployeeName                  Lloyd  Payne
JobTitle            Airport Safety Officer
BasePay                           86373.11
OvertimePay                        5865.72
OtherPay                           7490.98
Benefits                          32282.29
TotalPay                          99729.81
TotalPayBenefits                  132012.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84338, dtype: object)
(84339, Id                             84340
EmployeeName             Savet E Eik
JobTitle            Transit Operator
BasePay                     69348.09
OvertimePay                 22960.84
OtherPay                     4161.81
Benefits                    35541.18
TotalPay                    96470.74
TotalPayBenefits           132011.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84339, dtype: object)
(84340, Id                                84341
EmployeeName        Richard M Gutierrez
JobTitle                 Police Officer
BasePay                        92259.12
OvertimePay                     4132.45
OtherPay                        3120.69
Benefits                       32498.49
TotalPay                       99512.26
TotalPayBenefits              132010.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84340, dtype: object)
(84341, Id                                  84342
EmployeeName        Yolanda  Paige-Dotson
JobTitle              Transit Car Cleaner
BasePay                           61113.0
OvertimePay                      32307.84
OtherPay                         10705.76
Benefits                         27881.64
TotalPay                         104126.6
TotalPayBenefits                132008.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84341, dtype: object)
(84342, Id                               84343
EmployeeName        Mauricio A Aguirre
JobTitle              Transit Operator
BasePay                       69348.98
OvertimePay                   23726.52
OtherPay                       4275.16
Benefits                      34652.82
TotalPay                      97350.66
TotalPayBenefits             132003.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84342, dtype: object)
(84343, Id                                        84344
EmployeeName                   Patricia D Myung
JobTitle            Senior Physician Specialist
BasePay                               103288.76
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               28713.44
TotalPay                              103288.76
TotalPayBenefits                       132002.2
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84343, dtype: object)
(84344, Id                               84345
EmployeeName           Annette P Espil
JobTitle            Nurse Practitioner
BasePay                      103605.58
OvertimePay                    2891.25
OtherPay                         250.0
Benefits                      25238.36
TotalPay                     106746.83
TotalPayBenefits             131985.19
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84344, dtype: object)
(84345, Id                             84346
EmployeeName             Raul  Duran
JobTitle            Transit Operator
BasePay                     70161.39
OvertimePay                 27045.42
OtherPay                      734.63
Benefits                    34041.04
TotalPay                    97941.44
TotalPayBenefits           131982.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84345, dtype: object)
(84346, Id                                84347
EmployeeName                  Ivan S Ma
JobTitle            IS Engineer-Journey
BasePay                         90274.0
OvertimePay                         0.0
OtherPay                       10065.45
Benefits                       31639.03
TotalPay                      100339.45
TotalPayBenefits              131978.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84346, dtype: object)
(84347, Id                           84348
EmployeeName         Matthew K Jew
JobTitle            Police Officer
BasePay                   92259.07
OvertimePay                5441.17
OtherPay                   1797.53
Benefits                  32451.83
TotalPay                  99497.77
TotalPayBenefits          131949.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84347, dtype: object)
(84348, Id                                      84349
EmployeeName                   Scott D McFall
JobTitle            EMT/Paramedic/Firefighter
BasePay                             104003.18
OvertimePay                           1528.25
OtherPay                              5720.76
Benefits                             20696.07
TotalPay                            111252.19
TotalPayBenefits                    131948.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84348, dtype: object)
(84349, Id                               84350
EmployeeName            Karee D Stubbs
JobTitle            Transit Supervisor
BasePay                       69234.43
OvertimePay                   24093.06
OtherPay                       4656.62
Benefits                      33959.82
TotalPay                      97984.11
TotalPayBenefits             131943.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84349, dtype: object)
(84350, Id                                          84351
EmployeeName                      Bethsaida  Ruiz
JobTitle            Asst Chf Victim/Wit Invstgtor
BasePay                                  97816.15
OvertimePay                                   0.0
OtherPay                                   1040.0
Benefits                                  33087.6
TotalPay                                 98856.15
TotalPayBenefits                        131943.75
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84350, dtype: object)
(84351, Id                                     84352
EmployeeName                 Charles  Morton
JobTitle            Deputy Probation Officer
BasePay                             96253.15
OvertimePay                          5184.06
OtherPay                                 0.0
Benefits                            30491.05
TotalPay                           101437.21
TotalPayBenefits                   131928.26
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84351, dtype: object)
(84352, Id                             84353
EmployeeName           David A Evans
JobTitle            Transit Operator
BasePay                     67108.09
OvertimePay                 30113.57
OtherPay                     1824.55
Benefits                     32881.5
TotalPay                    99046.21
TotalPayBenefits           131927.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84352, dtype: object)
(84353, Id                             84354
EmployeeName         Michele  Ingram
JobTitle            Transit Operator
BasePay                     70322.85
OvertimePay                 22772.64
OtherPay                     3861.65
Benefits                    34970.25
TotalPay                    96957.14
TotalPayBenefits           131927.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84353, dtype: object)
(84354, Id                               84355
EmployeeName        Michael  Wilkinson
JobTitle              Transit Operator
BasePay                       68800.23
OvertimePay                   25717.97
OtherPay                       3332.07
Benefits                      34076.43
TotalPay                      97850.27
TotalPayBenefits              131926.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84354, dtype: object)
(84355, Id                                         84356
EmployeeName                     Olga M Elizalde
JobTitle            Employment & Training Spec 5
BasePay                                 98669.27
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33251.85
TotalPay                                98669.27
TotalPayBenefits                       131921.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84355, dtype: object)
(84356, Id                                          84357
EmployeeName                    Carolyn  McKenney
JobTitle            Senior Administrative Analyst
BasePay                                  98747.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33171.92
TotalPay                                 98747.01
TotalPayBenefits                        131918.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84356, dtype: object)
(84357, Id                             84358
EmployeeName           Eddie R Clark
JobTitle            Transit Operator
BasePay                     69452.31
OvertimePay                 17949.57
OtherPay                     8649.83
Benefits                    35865.17
TotalPay                    96051.71
TotalPayBenefits           131916.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84357, dtype: object)
(84358, Id                             84359
EmployeeName          Jose A Alvarez
JobTitle            Transit Operator
BasePay                     67930.85
OvertimePay                  23856.1
OtherPay                     5773.46
Benefits                    34345.12
TotalPay                    97560.41
TotalPayBenefits           131905.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84358, dtype: object)
(84359, Id                                       84360
EmployeeName                 Ifeyinwa A Nzerem
JobTitle            Protective Services Worker
BasePay                               95229.02
OvertimePay                             332.16
OtherPay                               3117.04
Benefits                              33225.97
TotalPay                              98678.22
TotalPayBenefits                     131904.19
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84359, dtype: object)
(84360, Id                          84361
EmployeeName        Eric A Tisher
JobTitle              Electrician
BasePay                  95276.03
OvertimePay                469.29
OtherPay                  2157.25
Benefits                 33998.13
TotalPay                 97902.57
TotalPayBenefits         131900.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84360, dtype: object)
(84361, Id                                         84362
EmployeeName                         John L Grey
JobTitle            Sprv, Traffic & Street Signs
BasePay                                 95006.02
OvertimePay                              4312.32
OtherPay                                     0.0
Benefits                                32581.26
TotalPay                                99318.34
TotalPayBenefits                        131899.6
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84361, dtype: object)
(84362, Id                                       84363
EmployeeName                   Javier F Llamas
JobTitle            Street Repair Supervisor 2
BasePay                               97143.44
OvertimePay                            1749.81
OtherPay                                   0.0
Benefits                              33000.38
TotalPay                              98893.25
TotalPayBenefits                     131893.63
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84362, dtype: object)
(84363, Id                                       84364
EmployeeName                   Bobbie D Foschi
JobTitle            Diagnostic Imaging Tech II
BasePay                               97262.12
OvertimePay                                0.0
OtherPay                               4125.36
Benefits                              30494.06
TotalPay                             101387.48
TotalPayBenefits                     131881.54
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84363, dtype: object)
(84364, Id                                     84365
EmployeeName                 Elaine  Leeming
JobTitle            Senior Personnel Analyst
BasePay                            104250.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            27628.57
TotalPay                           104250.52
TotalPayBenefits                   131879.09
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84364, dtype: object)
(84365, Id                                84366
EmployeeName            Timothy C White
JobTitle            Stationary Engineer
BasePay                        78469.94
OvertimePay                    14523.66
OtherPay                        7209.61
Benefits                       31667.32
TotalPay                      100203.21
TotalPayBenefits              131870.53
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84365, dtype: object)
(84366, Id                                         84367
EmployeeName                      Bryan J Maddox
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86520.41
OvertimePay                              3168.52
OtherPay                                 8621.54
Benefits                                 33515.3
TotalPay                                98310.47
TotalPayBenefits                       131825.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84366, dtype: object)
(84367, Id                            84368
EmployeeName        Anthony  Bryant
JobTitle                  Asst Engr
BasePay                    98341.41
OvertimePay                     0.0
OtherPay                     191.27
Benefits                   33288.59
TotalPay                   98532.68
TotalPayBenefits          131821.27
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84367, dtype: object)
(84368, Id                               84369
EmployeeName          Kristen E Sligar
JobTitle            Nurse Practitioner
BasePay                      100594.97
OvertimePay                        0.0
OtherPay                        1300.0
Benefits                      29924.56
TotalPay                     101894.97
TotalPayBenefits             131819.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84368, dtype: object)
(84369, Id                          84370
EmployeeName         Jose  Fabian
JobTitle                Asst Engr
BasePay                  96509.02
OvertimePay                   0.0
OtherPay                  2225.91
Benefits                 33081.26
TotalPay                 98734.93
TotalPayBenefits        131816.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84369, dtype: object)
(84370, Id                              84371
EmployeeName        Gerald F Williams
JobTitle               Deputy Sheriff
BasePay                      92416.21
OvertimePay                    4940.9
OtherPay                      2970.93
Benefits                     31486.46
TotalPay                    100328.04
TotalPayBenefits             131814.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84370, dtype: object)
(84371, Id                             84372
EmployeeName        William E Toland
JobTitle             Utility Plumber
BasePay                      98528.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33274.37
TotalPay                     98528.5
TotalPayBenefits           131802.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84371, dtype: object)
(84372, Id                                     84373
EmployeeName                 Ana P Villagran
JobTitle            Deputy Probation Officer
BasePay                             96152.55
OvertimePay                          3654.06
OtherPay                              1307.4
Benefits                            30687.28
TotalPay                           101114.01
TotalPayBenefits                   131801.29
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84372, dtype: object)
(84373, Id                                          84374
EmployeeName                          Walter  Lee
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.09
OvertimePay                               6647.37
OtherPay                                  6489.45
Benefits                                 32132.38
TotalPay                                 99662.91
TotalPayBenefits                        131795.29
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84373, dtype: object)
(84374, Id                                      84375
EmployeeName               Rafael E Gutierrez
JobTitle            Architectural Associate 1
BasePay                              98339.57
OvertimePay                            203.96
OtherPay                                  0.0
Benefits                             33247.69
TotalPay                             98543.53
TotalPayBenefits                    131791.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84374, dtype: object)
(84375, Id                                       84376
EmployeeName                  Marjorie M Davis
JobTitle            Worker's Comp Supervisor 1
BasePay                                99515.1
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32273.06
TotalPay                               99515.1
TotalPayBenefits                     131788.16
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84375, dtype: object)
(84376, Id                               84377
EmployeeName           Victor G Holmes
JobTitle            Transit Supervisor
BasePay                        92803.8
OvertimePay                    3911.99
OtherPay                       2252.81
Benefits                      32796.54
TotalPay                       98968.6
TotalPayBenefits             131765.14
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84376, dtype: object)
(84377, Id                               84378
EmployeeName        Ronald J Joseph-Jr
JobTitle                Deputy Sheriff
BasePay                       95126.57
OvertimePay                    1093.11
OtherPay                       3019.17
Benefits                      32506.24
TotalPay                      99238.85
TotalPayBenefits             131745.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84377, dtype: object)
(84378, Id                               84379
EmployeeName        Charles J Gallardo
JobTitle                 Special Nurse
BasePay                      109597.16
OvertimePay                    2505.88
OtherPay                      18336.16
Benefits                       1304.39
TotalPay                      130439.2
TotalPayBenefits             131743.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84378, dtype: object)
(84379, Id                                   84380
EmployeeName        Joseph Jeffrey  Bryant
JobTitle             Emp & Training Spec 4
BasePay                            89829.0
OvertimePay                            0.0
OtherPay                            7948.0
Benefits                          33966.22
TotalPay                           97777.0
TotalPayBenefits                 131743.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84379, dtype: object)
(84380, Id                                   84381
EmployeeName                  Oliver C Lee
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                        5471.24
OtherPay                           6248.83
Benefits                          32287.03
TotalPay                          99416.07
TotalPayBenefits                  131703.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84380, dtype: object)
(84381, Id                                   84382
EmployeeName               Michael  Aldapa
JobTitle            Airport Safety Officer
BasePay                            86373.0
OvertimePay                        5368.68
OtherPay                           7624.27
Benefits                          32325.23
TotalPay                          99365.95
TotalPayBenefits                 131691.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84381, dtype: object)
(84382, Id                                   84383
EmployeeName        Roderick James  Duenas
JobTitle            Airport Safety Officer
BasePay                           86373.01
OvertimePay                       13994.84
OtherPay                             399.6
Benefits                          30915.04
TotalPay                         100767.45
TotalPayBenefits                 131682.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84382, dtype: object)
(84383, Id                                          84384
EmployeeName                      Michael L Kiely
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               5147.91
OtherPay                                  1846.22
Benefits                                 32388.21
TotalPay                                 99287.63
TotalPayBenefits                        131675.84
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84383, dtype: object)
(84384, Id                                          84385
EmployeeName                     Jennifer  Chacon
JobTitle            Senior Health Program Planner
BasePay                                  98808.52
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32848.08
TotalPay                                 98808.52
TotalPayBenefits                         131656.6
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84384, dtype: object)
(84385, Id                          84386
EmployeeName         Tanna S Hall
JobTitle              Firefighter
BasePay                  83558.85
OvertimePay               8472.59
OtherPay                  5450.09
Benefits                 34169.39
TotalPay                 97481.53
TotalPayBenefits        131650.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84385, dtype: object)
(84386, Id                                      84387
EmployeeName                    Lev Y Kushner
JobTitle            Pr Administrative Analyst
BasePay                               90114.4
OvertimePay                               0.0
OtherPay                             12849.17
Benefits                             28686.95
TotalPay                            102963.57
TotalPayBenefits                    131650.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84386, dtype: object)
(84387, Id                             84388
EmployeeName        Efren U Hipolito
JobTitle                 Electrician
BasePay                     95276.02
OvertimePay                  1330.13
OtherPay                      2020.0
Benefits                    33019.26
TotalPay                    98626.15
TotalPayBenefits           131645.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84387, dtype: object)
(84388, Id                                   84389
EmployeeName                Louisa H Salas
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            8835.0
Benefits                          32582.26
TotalPay                          99062.53
TotalPayBenefits                 131644.79
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84388, dtype: object)
(84389, Id                                84390
EmployeeName        Michael A McCloskey
JobTitle             Sheet Metal Worker
BasePay                        95243.54
OvertimePay                     2864.86
OtherPay                          320.0
Benefits                       33212.27
TotalPay                        98428.4
TotalPayBenefits              131640.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84389, dtype: object)
(84390, Id                                       84391
EmployeeName                   Sherma C Brooks
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                            2845.97
OtherPay                                822.16
Benefits                               32739.3
TotalPay                              98897.16
TotalPayBenefits                     131636.46
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84390, dtype: object)
(84391, Id                           84392
EmployeeName         Celso G Ilang
JobTitle            Deputy Sheriff
BasePay                   95119.53
OvertimePay                1034.54
OtherPay                   3043.97
Benefits                  32411.86
TotalPay                  99198.04
TotalPayBenefits          131609.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84391, dtype: object)
(84392, Id                                   84393
EmployeeName               Linaflor B Huab
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       27776.02
OtherPay                           6901.21
Benefits                          28531.91
TotalPay                         103068.23
TotalPayBenefits                 131600.14
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84392, dtype: object)
(84393, Id                           84394
EmployeeName        Samuel O Ichie
JobTitle                 Asst Engr
BasePay                   98341.34
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33253.72
TotalPay                  98341.34
TotalPayBenefits         131595.06
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84393, dtype: object)
(84394, Id                          84395
EmployeeName         Teresa M Woo
JobTitle                Asst Engr
BasePay                  98341.33
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33253.72
TotalPay                 98341.33
TotalPayBenefits        131595.05
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84394, dtype: object)
(84395, Id                          84396
EmployeeName        Chris R David
JobTitle                Asst Engr
BasePay                  98341.32
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33253.68
TotalPay                 98341.32
TotalPayBenefits         131595.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84395, dtype: object)
(84396, Id                             84397
EmployeeName        Patrick V Caylao
JobTitle                   Asst Engr
BasePay                     98341.31
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33253.69
TotalPay                    98341.31
TotalPayBenefits            131595.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84396, dtype: object)
(84397, Id                             84398
EmployeeName        Jessalynn L Wong
JobTitle                   Asst Engr
BasePay                     98341.29
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33253.68
TotalPay                    98341.29
TotalPayBenefits           131594.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84397, dtype: object)
(84398, Id                                      84399
EmployeeName                      Joel D Uchi
JobTitle            Architectural Associate 1
BasePay                              98341.29
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33253.67
TotalPay                             98341.29
TotalPayBenefits                    131594.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84398, dtype: object)
(84399, Id                                          84400
EmployeeName                        Zach T Gorton
JobTitle            District Attry's Investigator
BasePay                                  89756.22
OvertimePay                               5149.42
OtherPay                                  5385.81
Benefits                                 31302.45
TotalPay                                100291.45
TotalPayBenefits                         131593.9
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84399, dtype: object)
(84400, Id                          84401
EmployeeName        Kenneth D Yee
JobTitle            Fusion Welder
BasePay                  91722.51
OvertimePay               4063.93
OtherPay                  3916.05
Benefits                  31887.1
TotalPay                 99702.49
TotalPayBenefits        131589.59
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84400, dtype: object)
(84401, Id                          84402
EmployeeName             Hua  Mei
JobTitle                Asst Engr
BasePay                  98339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.69
TotalPay                 98339.57
TotalPayBenefits        131587.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84401, dtype: object)
(84402, Id                          84403
EmployeeName         Justin C Lum
JobTitle                Asst Engr
BasePay                  98339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.69
TotalPay                 98339.57
TotalPayBenefits        131587.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84402, dtype: object)
(84403, Id                          84404
EmployeeName         James D Lane
JobTitle                Asst Engr
BasePay                  98339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.68
TotalPay                 98339.57
TotalPayBenefits        131587.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84403, dtype: object)
(84404, Id                             84405
EmployeeName        Charles I Ozumba
JobTitle                   Asst Engr
BasePay                     98339.56
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33247.68
TotalPay                    98339.56
TotalPayBenefits           131587.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84404, dtype: object)
(84405, Id                          84406
EmployeeName             Yuan  Wu
JobTitle                Asst Engr
BasePay                  98339.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.67
TotalPay                 98339.56
TotalPayBenefits        131587.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84405, dtype: object)
(84406, Id                          84407
EmployeeName        Jose A Flores
JobTitle                Asst Engr
BasePay                  98339.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.68
TotalPay                 98339.55
TotalPayBenefits        131587.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84406, dtype: object)
(84407, Id                          84408
EmployeeName         Jean Y Botro
JobTitle                Asst Engr
BasePay                  98339.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.67
TotalPay                 98339.56
TotalPayBenefits        131587.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84407, dtype: object)
(84408, Id                                      84409
EmployeeName                    Damon G Louie
JobTitle            Architectural Associate 1
BasePay                              98339.55
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33247.67
TotalPay                             98339.55
TotalPayBenefits                    131587.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84408, dtype: object)
(84409, Id                               84410
EmployeeName        Ermie S Barrientos
JobTitle                     Asst Engr
BasePay                       98339.56
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      33247.66
TotalPay                      98339.56
TotalPayBenefits             131587.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84409, dtype: object)
(84410, Id                           84411
EmployeeName        Scott A Broady
JobTitle                 Asst Engr
BasePay                   98339.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33247.66
TotalPay                  98339.55
TotalPayBenefits         131587.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84410, dtype: object)
(84411, Id                          84412
EmployeeName         William E Ng
JobTitle                Asst Engr
BasePay                  98339.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.65
TotalPay                 98339.56
TotalPayBenefits        131587.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84411, dtype: object)
(84412, Id                          84413
EmployeeName          Job  Espero
JobTitle                Asst Engr
BasePay                  98339.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.65
TotalPay                 98339.55
TotalPayBenefits         131587.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84412, dtype: object)
(84413, Id                           84414
EmployeeName        Elmer J Cheung
JobTitle                 Asst Engr
BasePay                   98339.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33247.65
TotalPay                  98339.55
TotalPayBenefits          131587.2
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84413, dtype: object)
(84414, Id                          84415
EmployeeName        Margaret P Li
JobTitle                Asst Engr
BasePay                  98339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                 98339.57
TotalPayBenefits         131587.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84414, dtype: object)
(84415, Id                                      84416
EmployeeName                 Deborah M Morgan
JobTitle            Architectural Associate 1
BasePay                              98339.55
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33247.64
TotalPay                             98339.55
TotalPayBenefits                    131587.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84415, dtype: object)
(84416, Id                              84417
EmployeeName        Bernadette S Cruz
JobTitle                    Asst Engr
BasePay                      98339.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     33247.66
TotalPay                     98339.53
TotalPayBenefits            131587.19
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84416, dtype: object)
(84417, Id                               84418
EmployeeName        Micheal A Gardiner
JobTitle                     Asst Engr
BasePay                       98339.55
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      33247.64
TotalPay                      98339.55
TotalPayBenefits             131587.19
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84417, dtype: object)
(84418, Id                             84419
EmployeeName        Teena M Redhorse
JobTitle                   Asst Engr
BasePay                     98339.53
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33247.66
TotalPay                    98339.53
TotalPayBenefits           131587.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84418, dtype: object)
(84419, Id                                  84420
EmployeeName        Cesario G Agudelo III
JobTitle                        Asst Engr
BasePay                          98339.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33247.65
TotalPay                         98339.54
TotalPayBenefits                131587.19
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84419, dtype: object)
(84420, Id                          84421
EmployeeName        Benjamin K Yu
JobTitle                Asst Engr
BasePay                  98339.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.66
TotalPay                 98339.53
TotalPayBenefits        131587.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84420, dtype: object)
(84421, Id                          84422
EmployeeName        Mario  Valdez
JobTitle                Asst Engr
BasePay                  98339.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.66
TotalPay                 98339.53
TotalPayBenefits        131587.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84421, dtype: object)
(84422, Id                                        84423
EmployeeName                   Nicholas A Ancel
JobTitle            Landscape Architect Assoc 1
BasePay                                98339.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               33247.65
TotalPay                               98339.53
TotalPayBenefits                      131587.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84422, dtype: object)
(84423, Id                          84424
EmployeeName         Holly H Chan
JobTitle                Asst Engr
BasePay                  98339.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.64
TotalPay                 98339.54
TotalPayBenefits        131587.18
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84423, dtype: object)
(84424, Id                                      84425
EmployeeName        Edgar A Pimentel Cobaquil
JobTitle            Architectural Associate 1
BasePay                              98339.53
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33247.65
TotalPay                             98339.53
TotalPayBenefits                    131587.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84424, dtype: object)
(84425, Id                                     84426
EmployeeName        Abdelmoniem H Abdelsalam
JobTitle                           Asst Engr
BasePay                             98339.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33247.65
TotalPay                            98339.53
TotalPayBenefits                   131587.18
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84425, dtype: object)
(84426, Id                                        84427
EmployeeName                   Kathleen M O'Day
JobTitle            Landscape Architect Assoc 1
BasePay                                98339.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               33247.64
TotalPay                               98339.53
TotalPayBenefits                      131587.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84426, dtype: object)
(84427, Id                          84428
EmployeeName          Joseph  Liu
JobTitle                Asst Engr
BasePay                  98339.52
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.65
TotalPay                 98339.52
TotalPayBenefits        131587.17
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84427, dtype: object)
(84428, Id                            84429
EmployeeName        Berhane T Gaime
JobTitle                  Asst Engr
BasePay                    98339.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33247.64
TotalPay                   98339.53
TotalPayBenefits          131587.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84428, dtype: object)
(84429, Id                          84430
EmployeeName          Pansy Y Lam
JobTitle                Asst Engr
BasePay                  98339.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.64
TotalPay                 98339.53
TotalPayBenefits        131587.17
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84429, dtype: object)
(84430, Id                           84431
EmployeeName        Eleanor P Tang
JobTitle                 Asst Engr
BasePay                   98339.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33247.64
TotalPay                  98339.52
TotalPayBenefits         131587.16
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84430, dtype: object)
(84431, Id                           84432
EmployeeName        Celine X Leung
JobTitle                 Asst Engr
BasePay                   98339.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33247.63
TotalPay                  98339.52
TotalPayBenefits         131587.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84431, dtype: object)
(84432, Id                           84433
EmployeeName        Eric O Omokaro
JobTitle                 Asst Engr
BasePay                   98339.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33247.64
TotalPay                  98339.51
TotalPayBenefits         131587.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84432, dtype: object)
(84433, Id                          84434
EmployeeName          Alison A Lu
JobTitle                Asst Engr
BasePay                  98339.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                 98339.51
TotalPayBenefits        131587.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84433, dtype: object)
(84434, Id                             84435
EmployeeName        Callistus B Reid
JobTitle                   Asst Engr
BasePay                     98339.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33247.63
TotalPay                    98339.51
TotalPayBenefits           131587.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84434, dtype: object)
(84435, Id                            84436
EmployeeName        Kaumil H Parghi
JobTitle                  Asst Engr
BasePay                     98339.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33247.63
TotalPay                    98339.5
TotalPayBenefits          131587.13
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84435, dtype: object)
(84436, Id                          84437
EmployeeName         Thomas Y Lau
JobTitle                Asst Engr
BasePay                   98339.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                  98339.5
TotalPayBenefits        131587.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84436, dtype: object)
(84437, Id                          84438
EmployeeName        Han Yao  Chen
JobTitle                Asst Engr
BasePay                   98339.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                  98339.5
TotalPayBenefits        131587.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84437, dtype: object)
(84438, Id                                84439
EmployeeName        Gilbert A Fulgencio
JobTitle                      Asst Engr
BasePay                         98339.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33247.63
TotalPay                        98339.5
TotalPayBenefits              131587.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84438, dtype: object)
(84439, Id                              84440
EmployeeName        Nicholas D Waelty
JobTitle                    Asst Engr
BasePay                       98339.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     33247.63
TotalPay                      98339.5
TotalPayBenefits            131587.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84439, dtype: object)
(84440, Id                          84441
EmployeeName        Josef P Munoz
JobTitle                Asst Engr
BasePay                   98339.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                  98339.5
TotalPayBenefits        131587.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84440, dtype: object)
(84441, Id                                 84442
EmployeeName        Lawrence H Henriquez
JobTitle                       Asst Engr
BasePay                          98339.5
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        33247.63
TotalPay                         98339.5
TotalPayBenefits               131587.13
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84441, dtype: object)
(84442, Id                          84443
EmployeeName        Dannie S Wong
JobTitle                Asst Engr
BasePay                   98339.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.63
TotalPay                  98339.5
TotalPayBenefits        131587.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84442, dtype: object)
(84443, Id                          84444
EmployeeName        Raman P Singh
JobTitle                Asst Engr
BasePay                  98339.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33247.51
TotalPay                 98339.08
TotalPayBenefits        131586.59
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84443, dtype: object)
(84444, Id                          84445
EmployeeName         Jose L Calle
JobTitle                Asst Engr
BasePay                  98339.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  33244.4
TotalPay                 98339.55
TotalPayBenefits        131583.95
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84444, dtype: object)
(84445, Id                                         84446
EmployeeName                       Noel F Laffey
JobTitle            Sprv, Traffic & Street Signs
BasePay                                 95003.94
OvertimePay                              4005.82
OtherPay                                     0.0
Benefits                                 32574.0
TotalPay                                99009.76
TotalPayBenefits                       131583.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84445, dtype: object)
(84446, Id                               84447
EmployeeName        Daniel A Chavarria
JobTitle                     Asst Engr
BasePay                       98337.89
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      33241.72
TotalPay                      98337.89
TotalPayBenefits             131579.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84446, dtype: object)
(84447, Id                              84448
EmployeeName        Teresa C Claveria
JobTitle                    Asst Engr
BasePay                      98337.88
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     33241.71
TotalPay                     98337.88
TotalPayBenefits            131579.59
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84447, dtype: object)
(84448, Id                                 84449
EmployeeName        Dimitrios  Stavrakis
JobTitle                       Asst Engr
BasePay                         98337.87
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        33241.71
TotalPay                        98337.87
TotalPayBenefits               131579.58
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84448, dtype: object)
(84449, Id                           84450
EmployeeName        Jessica L Kahn
JobTitle                 Asst Engr
BasePay                   98337.85
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33241.71
TotalPay                  98337.85
TotalPayBenefits         131579.56
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84449, dtype: object)
(84450, Id                           84451
EmployeeName        Jianming  Zhou
JobTitle                 Asst Engr
BasePay                   98337.81
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33241.67
TotalPay                  98337.81
TotalPayBenefits         131579.48
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84450, dtype: object)
(84451, Id                          84452
EmployeeName         Thet W Maung
JobTitle                Asst Engr
BasePay                  98337.81
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33241.66
TotalPay                 98337.81
TotalPayBenefits        131579.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84451, dtype: object)
(84452, Id                          84453
EmployeeName         Clayton  Tam
JobTitle                Asst Engr
BasePay                   98337.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33241.65
TotalPay                  98337.8
TotalPayBenefits        131579.45
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84452, dtype: object)
(84453, Id                            84454
EmployeeName        Paul A Barradas
JobTitle                  Asst Engr
BasePay                    98337.78
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33241.64
TotalPay                   98337.78
TotalPayBenefits          131579.42
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84453, dtype: object)
(84454, Id                                      84455
EmployeeName            Rogerio C Bittencourt
JobTitle            Architectural Associate 1
BasePay                              98339.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33230.75
TotalPay                             98339.54
TotalPayBenefits                    131570.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84454, dtype: object)
(84455, Id                                      84456
EmployeeName                  Dennis L Conrad
JobTitle            Architectural Associate 1
BasePay                              98339.53
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33230.75
TotalPay                             98339.53
TotalPayBenefits                    131570.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84455, dtype: object)
(84456, Id                                       84457
EmployeeName                  Rowena M Quimson
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                               3113.73
Benefits                               33225.3
TotalPay                              98342.77
TotalPayBenefits                     131568.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84456, dtype: object)
(84457, Id                                      84458
EmployeeName                Samuel E Harrison
JobTitle            Architectural Associate 1
BasePay                              98339.57
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33226.02
TotalPay                             98339.57
TotalPayBenefits                    131565.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84457, dtype: object)
(84458, Id                                   84459
EmployeeName                  Sean P Garde
JobTitle            Electrical Line Helper
BasePay                            76334.0
OvertimePay                       26369.42
OtherPay                            298.64
Benefits                          28556.68
TotalPay                         103002.06
TotalPayBenefits                 131558.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84458, dtype: object)
(84459, Id                                           84460
EmployeeName                        Charlie  Chiem
JobTitle            IT Operations Support Admin IV
BasePay                                   93053.01
OvertimePay                                    0.0
OtherPay                                   5305.61
Benefits                                  33195.82
TotalPay                                  98358.62
TotalPayBenefits                         131554.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84459, dtype: object)
(84460, Id                                       84461
EmployeeName                      Chris F Chan
JobTitle            Protective Services Worker
BasePay                               93289.18
OvertimePay                                0.0
OtherPay                               5299.48
Benefits                              32962.38
TotalPay                              98588.66
TotalPayBenefits                     131551.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84460, dtype: object)
(84461, Id                                       84462
EmployeeName                   Brandi  Woolery
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                               3108.21
Benefits                               33212.8
TotalPay                              98337.28
TotalPayBenefits                     131550.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84461, dtype: object)
(84462, Id                                84463
EmployeeName                Jonny B Lee
JobTitle            Stationary Engineer
BasePay                        80453.51
OvertimePay                     9124.64
OtherPay                        10975.9
Benefits                       30992.07
TotalPay                      100554.05
TotalPayBenefits              131546.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84462, dtype: object)
(84463, Id                                          84464
EmployeeName                          Benson  Hua
JobTitle            Senior Administrative Analyst
BasePay                                  97464.91
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  34080.5
TotalPay                                 97464.91
TotalPayBenefits                        131545.41
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84463, dtype: object)
(84464, Id                                84465
EmployeeName           Mikhail B Slinin
JobTitle            Stationary Engineer
BasePay                        81086.23
OvertimePay                     4996.85
OtherPay                       13106.98
Benefits                       32345.56
TotalPay                       99190.06
TotalPayBenefits              131535.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84464, dtype: object)
(84465, Id                           84466
EmployeeName           Karen S Lee
JobTitle            Deputy Sheriff
BasePay                   90867.22
OvertimePay                3345.14
OtherPay                   5335.86
Benefits                  31922.69
TotalPay                  99548.22
TotalPayBenefits         131470.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84465, dtype: object)
(84466, Id                                84467
EmployeeName               Brian J Farr
JobTitle            Stationary Engineer
BasePay                        77747.35
OvertimePay                     6042.28
OtherPay                       14867.06
Benefits                       32812.51
TotalPay                       98656.69
TotalPayBenefits               131469.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84466, dtype: object)
(84467, Id                              84468
EmployeeName        Carlos B Pescador
JobTitle               Deputy Sheriff
BasePay                       91342.3
OvertimePay                    867.23
OtherPay                      6850.88
Benefits                     32408.65
TotalPay                     99060.41
TotalPayBenefits            131469.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84467, dtype: object)
(84468, Id                             84469
EmployeeName             Larry L Gee
JobTitle            Transit Operator
BasePay                     68423.83
OvertimePay                 20970.12
OtherPay                     7141.92
Benefits                    34931.97
TotalPay                    96535.87
TotalPayBenefits           131467.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84468, dtype: object)
(84469, Id                                        84470
EmployeeName                  William H Bulkley
JobTitle            Landscape Architect Assoc 1
BasePay                                98248.89
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               33218.63
TotalPay                               98248.89
TotalPayBenefits                      131467.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84469, dtype: object)
(84470, Id                             84471
EmployeeName        Oliver R Calupad
JobTitle              Police Officer
BasePay                     92259.06
OvertimePay                  4435.44
OtherPay                     2319.43
Benefits                    32446.98
TotalPay                    99013.93
TotalPayBenefits           131460.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84470, dtype: object)
(84471, Id                             84472
EmployeeName              Eva Y Chin
JobTitle            Transit Operator
BasePay                      65986.3
OvertimePay                 30971.71
OtherPay                     2113.02
Benefits                    32389.66
TotalPay                    99071.03
TotalPayBenefits           131460.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84471, dtype: object)
(84472, Id                                       84473
EmployeeName                     Rosa E Guzman
JobTitle            Protective Services Worker
BasePay                               95229.06
OvertimePay                              864.2
OtherPay                               2383.65
Benefits                              32972.78
TotalPay                              98476.91
TotalPayBenefits                     131449.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84472, dtype: object)
(84473, Id                             84474
EmployeeName            Peter H Chau
JobTitle            Transit Operator
BasePay                     67693.48
OvertimePay                 23756.61
OtherPay                     5765.67
Benefits                    34225.71
TotalPay                    97215.76
TotalPayBenefits           131441.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84473, dtype: object)
(84474, Id                           84475
EmployeeName            Eric R Lew
JobTitle            Assoc Engineer
BasePay                    98155.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33284.84
TotalPay                   98155.5
TotalPayBenefits         131440.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84474, dtype: object)
(84475, Id                                      84476
EmployeeName                      Tsz Lap  Ko
JobTitle            EMT/Paramedic/Firefighter
BasePay                               87912.0
OvertimePay                           3804.67
OtherPay                              8075.13
Benefits                              31645.4
TotalPay                              99791.8
TotalPayBenefits                     131437.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84475, dtype: object)
(84476, Id                               84477
EmployeeName            Rosey A Jencks
JobTitle            Utility Specialist
BasePay                      100386.22
OvertimePay                        0.0
OtherPay                        596.69
Benefits                      30450.73
TotalPay                     100982.91
TotalPayBenefits             131433.64
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84476, dtype: object)
(84477, Id                                         84478
EmployeeName        Victoria L Robinson-Jacquett
JobTitle                        Transit Operator
BasePay                                 67434.56
OvertimePay                             25563.76
OtherPay                                 4625.46
Benefits                                33808.53
TotalPay                                97623.78
TotalPayBenefits                       131432.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84477, dtype: object)
(84478, Id                          84479
EmployeeName          James  Long
JobTitle             Truck Driver
BasePay                   79844.0
OvertimePay              20203.21
OtherPay                   1552.0
Benefits                 29830.56
TotalPay                101599.21
TotalPayBenefits        131429.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84478, dtype: object)
(84479, Id                                      84480
EmployeeName                  Marjorie  Rubio
JobTitle            Licensed Vocational Nurse
BasePay                              73116.77
OvertimePay                          22824.33
OtherPay                              6220.56
Benefits                             29265.71
TotalPay                            102161.66
TotalPayBenefits                    131427.37
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84479, dtype: object)
(84480, Id                           84481
EmployeeName        Daniel J Kelly
JobTitle            Police Officer
BasePay                   92259.07
OvertimePay                3480.52
OtherPay                    3263.1
Benefits                  32416.01
TotalPay                  99002.69
TotalPayBenefits          131418.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84480, dtype: object)
(84481, Id                            84482
EmployeeName        Donald S Avilez
JobTitle                Electrician
BasePay                    92837.47
OvertimePay                 4238.24
OtherPay                     2160.0
Benefits                   32180.83
TotalPay                   99235.71
TotalPayBenefits          131416.54
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84481, dtype: object)
(84482, Id                                         84483
EmployeeName                     Sergio  Barajas
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86520.41
OvertimePay                              3514.95
OtherPay                                 8808.07
Benefits                                32566.48
TotalPay                                98843.43
TotalPayBenefits                       131409.91
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84482, dtype: object)
(84483, Id                                          84484
EmployeeName                       Craig A Lemoge
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               6104.64
OtherPay                                      0.0
Benefits                                 33009.38
TotalPay                                 98398.14
TotalPayBenefits                        131407.52
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84483, dtype: object)
(84484, Id                          84485
EmployeeName        Dusson  Yeung
JobTitle                Asst Engr
BasePay                  98202.21
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33199.55
TotalPay                 98202.21
TotalPayBenefits        131401.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84484, dtype: object)
(84485, Id                           84486
EmployeeName         Jamil N Jones
JobTitle            Deputy Sheriff
BasePay                   82547.36
OvertimePay                4615.84
OtherPay                  13430.81
Benefits                  30798.94
TotalPay                 100594.01
TotalPayBenefits         131392.95
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84485, dtype: object)
(84486, Id                             84487
EmployeeName        Michael R Tymoff
JobTitle                   Manager V
BasePay                      97428.5
OvertimePay                      0.0
OtherPay                     1942.13
Benefits                    32018.75
TotalPay                    99370.63
TotalPayBenefits           131389.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84486, dtype: object)
(84487, Id                                           84488
EmployeeName                       Peter M Negrone
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                 9326.4
OtherPay                                   7739.94
Benefits                                   31634.2
TotalPay                                  99747.84
TotalPayBenefits                         131382.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84487, dtype: object)
(84488, Id                           84489
EmployeeName           Eric L Bura
JobTitle            Assoc Engineer
BasePay                   98558.62
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32803.22
TotalPay                  98558.62
TotalPayBenefits         131361.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84488, dtype: object)
(84489, Id                                   84490
EmployeeName                  Julie A Lane
JobTitle            Public SafetyComm Disp
BasePay                            87087.0
OvertimePay                        8103.71
OtherPay                           4435.41
Benefits                          31730.88
TotalPay                          99626.12
TotalPayBenefits                  131357.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84489, dtype: object)
(84490, Id                             84491
EmployeeName          Paul N Johnson
JobTitle            Transit Operator
BasePay                     69080.95
OvertimePay                 19408.71
OtherPay                     7516.63
Benefits                    35348.25
TotalPay                    96006.29
TotalPayBenefits           131354.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84490, dtype: object)
(84491, Id                                          84492
EmployeeName                    Sybil L Boutilier
JobTitle            Senior Administrative Analyst
BasePay                                  98333.18
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33017.43
TotalPay                                 98333.18
TotalPayBenefits                        131350.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84491, dtype: object)
(84492, Id                             84493
EmployeeName        Rigoberto  Lopez
JobTitle            Transit Operator
BasePay                     70536.27
OvertimePay                 19676.12
OtherPay                     5587.01
Benefits                    35536.68
TotalPay                     95799.4
TotalPayBenefits           131336.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84492, dtype: object)
(84493, Id                                 84494
EmployeeName        Christianne T Crotty
JobTitle                  Deputy Sheriff
BasePay                         90521.96
OvertimePay                          4.7
OtherPay                         8892.46
Benefits                        31911.25
TotalPay                        99419.12
TotalPayBenefits               131330.37
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84493, dtype: object)
(84494, Id                              84495
EmployeeName        Patricia M Serfas
JobTitle                Special Nurse
BasePay                     107586.68
OvertimePay                   4188.85
OtherPay                     18250.23
Benefits                      1300.23
TotalPay                    130025.76
TotalPayBenefits            131325.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84494, dtype: object)
(84495, Id                             84496
EmployeeName         Jonathan M Fong
JobTitle            Police Officer 3
BasePay                     50303.08
OvertimePay                   859.23
OtherPay                    65218.25
Benefits                    14940.29
TotalPay                   116380.56
TotalPayBenefits           131320.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84495, dtype: object)
(84496, Id                                 84497
EmployeeName              James B Oleary
JobTitle            Power House Operator
BasePay                         75715.94
OvertimePay                     19209.81
OtherPay                          6435.6
Benefits                        29956.77
TotalPay                       101361.35
TotalPayBenefits               131318.12
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84496, dtype: object)
(84497, Id                                   84498
EmployeeName              Jason  Sylvester
JobTitle            Public SafetyComm Disp
BasePay                            86965.2
OvertimePay                        5597.94
OtherPay                           6599.09
Benefits                          32135.69
TotalPay                          99162.23
TotalPayBenefits                 131297.92
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84497, dtype: object)
(84498, Id                                          84499
EmployeeName                      Nick  Alafouzos
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               5039.78
OtherPay                                  1619.76
Benefits                                 32342.05
TotalPay                                 98953.04
TotalPayBenefits                        131295.09
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84498, dtype: object)
(84499, Id                                      84500
EmployeeName           Michael A Enwereuzo Sr
JobTitle            Licensed Vocational Nurse
BasePay                              67616.33
OvertimePay                          29791.95
OtherPay                              4903.98
Benefits                             28982.22
TotalPay                            102312.26
TotalPayBenefits                    131294.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84499, dtype: object)
(84500, Id                           84501
EmployeeName            Sok M Chan
JobTitle            Accountant III
BasePay                   95961.55
OvertimePay                    0.0
OtherPay                    2130.0
Benefits                  33194.58
TotalPay                  98091.55
TotalPayBenefits         131286.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84500, dtype: object)
(84501, Id                                 84502
EmployeeName        James R Sutherlin Jr
JobTitle                     Electrician
BasePay                         94211.97
OvertimePay                      2320.71
OtherPay                          1280.0
Benefits                        33471.41
TotalPay                        97812.68
TotalPayBenefits               131284.09
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84501, dtype: object)
(84502, Id                             84503
EmployeeName         Gregory E Johns
JobTitle            Transit Operator
BasePay                     68773.06
OvertimePay                 23245.03
OtherPay                     4047.02
Benefits                    35217.21
TotalPay                    96065.11
TotalPayBenefits           131282.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84502, dtype: object)
(84503, Id                           84504
EmployeeName         Lawrence C Ng
JobTitle            Police Officer
BasePay                   92259.09
OvertimePay                2118.28
OtherPay                   4410.08
Benefits                  32491.21
TotalPay                  98787.45
TotalPayBenefits         131278.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84503, dtype: object)
(84504, Id                                          84505
EmployeeName                   Clarissa E Mamaril
JobTitle            Airport Property Specialist 1
BasePay                                  97261.84
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 34011.91
TotalPay                                 97261.84
TotalPayBenefits                        131273.75
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84504, dtype: object)
(84505, Id                           84506
EmployeeName        David S Berini
JobTitle               Steamfitter
BasePay                   94675.35
OvertimePay                    0.0
OtherPay                   3913.05
Benefits                   32679.2
TotalPay                   98588.4
TotalPayBenefits          131267.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84505, dtype: object)
(84506, Id                                      84507
EmployeeName                Demetrya  Mullens
JobTitle            Licensed Vocational Nurse
BasePay                                   NaN
OvertimePay                               0.0
OtherPay                            110485.41
Benefits                              20779.0
TotalPay                            110485.41
TotalPayBenefits                    131264.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84506, dtype: object)
(84507, Id                               84508
EmployeeName        Raphroger  Gonzaga
JobTitle              Registered Nurse
BasePay                       96796.14
OvertimePay                    3139.72
OtherPay                       9115.34
Benefits                      22207.78
TotalPay                      109051.2
TotalPayBenefits             131258.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84507, dtype: object)
(84508, Id                            84509
EmployeeName        Jesse C Montero
JobTitle             Police Officer
BasePay                    92259.05
OvertimePay                 1732.53
OtherPay                    4818.12
Benefits                   32444.94
TotalPay                    98809.7
TotalPayBenefits          131254.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84508, dtype: object)
(84509, Id                                84510
EmployeeName           William D Gawley
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                    15487.38
OtherPay                        6715.02
Benefits                       30578.67
TotalPay                       100675.9
TotalPayBenefits              131254.57
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84509, dtype: object)
(84510, Id                                           84511
EmployeeName                    Petronio M Ancheta
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                               17799.79
OtherPay                                     550.0
Benefits                                  30217.65
TotalPay                                 101031.29
TotalPayBenefits                         131248.94
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84510, dtype: object)
(84511, Id                             84512
EmployeeName        Robert M Wheeler
JobTitle              Police Officer
BasePay                     92259.04
OvertimePay                  2713.51
OtherPay                     3838.39
Benefits                    32429.53
TotalPay                    98810.94
TotalPayBenefits           131240.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84511, dtype: object)
(84512, Id                                       84513
EmployeeName                 Manuel  Sagisi Jr
JobTitle            Senior Stationary Engineer
BasePay                               89001.45
OvertimePay                             2722.5
OtherPay                               6810.98
Benefits                              32705.14
TotalPay                              98534.93
TotalPayBenefits                     131240.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84512, dtype: object)
(84513, Id                                       84514
EmployeeName                     Eric D Morgan
JobTitle            Protective Services Worker
BasePay                               93381.04
OvertimePay                                0.0
OtherPay                               4668.88
Benefits                              33187.33
TotalPay                              98049.92
TotalPayBenefits                     131237.25
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84513, dtype: object)
(84514, Id                          84515
EmployeeName        Ryan E Towner
JobTitle              Firefighter
BasePay                  87802.85
OvertimePay               1880.62
OtherPay                  9614.73
Benefits                 31935.89
TotalPay                  99298.2
TotalPayBenefits        131234.09
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84514, dtype: object)
(84515, Id                             84516
EmployeeName            Donald F Jue
JobTitle            Transit Operator
BasePay                     71464.43
OvertimePay                  16199.2
OtherPay                     7133.15
Benefits                    36419.42
TotalPay                    94796.78
TotalPayBenefits            131216.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84515, dtype: object)
(84516, Id                                84517
EmployeeName            Eddie T Jackson
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     8269.83
OtherPay                       11867.65
Benefits                       31785.77
TotalPay                       99420.98
TotalPayBenefits              131206.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84516, dtype: object)
(84517, Id                                           84518
EmployeeName                    Richard C Subijano
JobTitle            Electrical Transit System Mech
BasePay                                   80846.71
OvertimePay                               10161.04
OtherPay                                   8965.75
Benefits                                  31229.09
TotalPay                                   99973.5
TotalPayBenefits                         131202.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84517, dtype: object)
(84518, Id                                          84519
EmployeeName               Carlos-Antonio N Colon
JobTitle            Senior Administrative Analyst
BasePay                                  97992.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33203.37
TotalPay                                 97992.96
TotalPayBenefits                        131196.33
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84518, dtype: object)
(84519, Id                             84520
EmployeeName        Danilo D Vicente
JobTitle                 Electrician
BasePay                     95276.15
OvertimePay                  1560.35
OtherPay                      1450.0
Benefits                    32907.06
TotalPay                     98286.5
TotalPayBenefits           131193.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84519, dtype: object)
(84520, Id                                         84521
EmployeeName                      Anthony  Ringo
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86520.41
OvertimePay                              2927.83
OtherPay                                 9111.08
Benefits                                32622.72
TotalPay                                98559.32
TotalPayBenefits                       131182.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84520, dtype: object)
(84521, Id                                          84522
EmployeeName                            Robin  Ho
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.01
OvertimePay                                   0.0
OtherPay                                   1080.0
Benefits                                 33175.92
TotalPay                                 98003.01
TotalPayBenefits                        131178.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84521, dtype: object)
(84522, Id                             84523
EmployeeName        Stephanie  Quock
JobTitle              Deputy Sheriff
BasePay                     77995.04
OvertimePay                 11393.16
OtherPay                    13131.06
Benefits                     28651.5
TotalPay                   102519.26
TotalPayBenefits           131170.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84522, dtype: object)
(84523, Id                             84524
EmployeeName        William E Bizjak
JobTitle                 Electrician
BasePay                      95276.0
OvertimePay                   792.98
OtherPay                      2070.0
Benefits                    33030.54
TotalPay                    98138.98
TotalPayBenefits           131169.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84523, dtype: object)
(84524, Id                                       84525
EmployeeName                  Richard G Church
JobTitle            IS Business Analyst-Senior
BasePay                               97943.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33222.72
TotalPay                              97943.51
TotalPayBenefits                     131166.23
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84524, dtype: object)
(84525, Id                                          84526
EmployeeName                         Evie C Valle
JobTitle            Contract Compliance Officer 1
BasePay                                  96911.89
OvertimePay                                   0.0
OtherPay                                   1080.0
Benefits                                 33172.33
TotalPay                                 97991.89
TotalPayBenefits                        131164.22
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84525, dtype: object)
(84526, Id                                       84527
EmployeeName                        Ning  Yang
JobTitle            IS Business Analyst-Senior
BasePay                                97094.7
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              34062.23
TotalPay                               97094.7
TotalPayBenefits                     131156.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84526, dtype: object)
(84527, Id                               84528
EmployeeName          Chindy T Maxwell
JobTitle            Eligibility Worker
BasePay                       65448.06
OvertimePay                   32600.77
OtherPay                       5405.36
Benefits                      27678.56
TotalPay                     103454.19
TotalPayBenefits             131132.75
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84527, dtype: object)
(84528, Id                                           84529
EmployeeName                           David J Tam
JobTitle            Electrical Transit System Mech
BasePay                                    64396.2
OvertimePay                               42013.05
OtherPay                                       0.0
Benefits                                  24714.01
TotalPay                                 106409.25
TotalPayBenefits                         131123.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84528, dtype: object)
(84529, Id                                          84530
EmployeeName                     Adrienne T Hogan
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  79602.58
OvertimePay                               6429.12
OtherPay                                  13930.4
Benefits                                  31144.8
TotalPay                                  99962.1
TotalPayBenefits                         131106.9
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84529, dtype: object)
(84530, Id                                         84531
EmployeeName                     Lawrence F Berg
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86520.4
OvertimePay                              3475.23
OtherPay                                 8580.74
Benefits                                 32525.8
TotalPay                                98576.37
TotalPayBenefits                       131102.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84530, dtype: object)
(84531, Id                          84532
EmployeeName         Lyn  Shimizu
JobTitle              Electrician
BasePay                  95276.02
OvertimePay                496.89
OtherPay                   2260.0
Benefits                 33066.08
TotalPay                 98032.91
TotalPayBenefits        131098.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84531, dtype: object)
(84532, Id                             84533
EmployeeName           James H Tupas
JobTitle            Transit Operator
BasePay                      65896.6
OvertimePay                 24915.69
OtherPay                     6644.18
Benefits                    33638.66
TotalPay                    97456.47
TotalPayBenefits           131095.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84532, dtype: object)
(84533, Id                           84534
EmployeeName        Forrest R Jang
JobTitle               Electrician
BasePay                   95276.11
OvertimePay                  65.87
OtherPay                    2614.0
Benefits                  33131.51
TotalPay                  97955.98
TotalPayBenefits         131087.49
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84533, dtype: object)
(84534, Id                                          84535
EmployeeName                     Carmen E Herrera
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.04
OvertimePay                                   0.0
OtherPay                                   1000.0
Benefits                                  33162.6
TotalPay                                 97923.04
TotalPayBenefits                        131085.64
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84534, dtype: object)
(84535, Id                               84536
EmployeeName            Donald S Simas
JobTitle            Building Inspector
BasePay                       97982.11
OvertimePay                        0.0
OtherPay                       1461.26
Benefits                      31618.14
TotalPay                      99443.37
TotalPayBenefits             131061.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84535, dtype: object)
(84536, Id                                          84537
EmployeeName                        David E Scott
JobTitle            Senior Administrative Analyst
BasePay                                  98073.33
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32970.59
TotalPay                                 98073.33
TotalPayBenefits                        131043.92
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84536, dtype: object)
(84537, Id                                  84538
EmployeeName        Christopher B Sessler
JobTitle                     Truck Driver
BasePay                           80052.0
OvertimePay                      17171.06
OtherPay                           2707.7
Benefits                         31104.68
TotalPay                         99930.76
TotalPayBenefits                131035.44
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84537, dtype: object)
(84538, Id                                  84539
EmployeeName              Charles J Burns
JobTitle            Emp & Training Spec 4
BasePay                          86502.03
OvertimePay                           0.0
OtherPay                         14093.34
Benefits                         30436.67
TotalPay                        100595.37
TotalPayBenefits                131032.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84538, dtype: object)
(84539, Id                             84540
EmployeeName        Kimberly M Segna
JobTitle               Special Nurse
BasePay                    122491.45
OvertimePay                      0.0
OtherPay                     7240.38
Benefits                     1297.29
TotalPay                   129731.83
TotalPayBenefits           131029.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84539, dtype: object)
(84540, Id                           84541
EmployeeName          David L Wong
JobTitle            Deputy Sheriff
BasePay                    90882.0
OvertimePay                2881.11
OtherPay                   5332.99
Benefits                  31917.89
TotalPay                   99096.1
TotalPayBenefits         131013.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84540, dtype: object)
(84541, Id                                         84542
EmployeeName                           Jane T Ma
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.08
OvertimePay                                  0.0
OtherPay                                 3027.34
Benefits                                33126.38
TotalPay                                97878.42
TotalPayBenefits                        131004.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84541, dtype: object)
(84542, Id                             84543
EmployeeName          Glenn C Foster
JobTitle            Registered Nurse
BasePay                    104838.62
OvertimePay                   501.64
OtherPay                      328.76
Benefits                    25323.49
TotalPay                   105669.02
TotalPayBenefits           130992.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84542, dtype: object)
(84543, Id                               84544
EmployeeName           Channin L Smith
JobTitle            Transit Supervisor
BasePay                        88739.4
OvertimePay                    7747.78
OtherPay                        2991.7
Benefits                       31507.5
TotalPay                      99478.88
TotalPayBenefits             130986.38
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84543, dtype: object)
(84544, Id                                          84545
EmployeeName                       Lin-Shao  Chin
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.07
OvertimePay                                   0.0
OtherPay                                    920.0
Benefits                                 33143.08
TotalPay                                 97843.07
TotalPayBenefits                        130986.15
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84544, dtype: object)
(84545, Id                            84546
EmployeeName        Paul G Jacowitz
JobTitle             Deputy Sheriff
BasePay                     86570.5
OvertimePay                 1883.14
OtherPay                    9774.31
Benefits                   32753.43
TotalPay                   98227.95
TotalPayBenefits          130981.38
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84545, dtype: object)
(84546, Id                              84547
EmployeeName        Laura Mae  Alpert
JobTitle             Registered Nurse
BasePay                      97597.21
OvertimePay                       0.0
OtherPay                       1646.0
Benefits                     31724.93
TotalPay                     99243.21
TotalPayBenefits            130968.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84546, dtype: object)
(84547, Id                              84548
EmployeeName        Robert  Cavagnaro
JobTitle                      Plumber
BasePay                      96507.43
OvertimePay                     550.2
OtherPay                       1114.0
Benefits                     32784.51
TotalPay                     98171.63
TotalPayBenefits            130956.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84547, dtype: object)
(84548, Id                            84549
EmployeeName        James  Smothers
JobTitle                  Manager V
BasePay                     82983.5
OvertimePay                     0.0
OtherPay                   20851.04
Benefits                   27076.53
TotalPay                  103834.54
TotalPayBenefits          130911.07
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84548, dtype: object)
(84549, Id                                          84550
EmployeeName                          Luis R Mena
JobTitle            Operating Engineer, Universal
BasePay                                  92293.51
OvertimePay                               4023.84
OtherPay                                  2146.15
Benefits                                 32443.43
TotalPay                                  98463.5
TotalPayBenefits                        130906.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84549, dtype: object)
(84550, Id                                     84551
EmployeeName                  Damon A Burris
JobTitle            Counselor, Juvenile Hall
BasePay                              66435.0
OvertimePay                         30701.91
OtherPay                             6790.06
Benefits                             26977.8
TotalPay                           103926.97
TotalPayBenefits                   130904.77
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84550, dtype: object)
(84551, Id                                      84552
EmployeeName                   Joshua M Keene
JobTitle            Pr Administrative Analyst
BasePay                              96935.32
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33968.65
TotalPay                             96935.32
TotalPayBenefits                    130903.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84551, dtype: object)
(84552, Id                                       84553
EmployeeName                      Stanley  Lee
JobTitle            Asst Materials Coordinator
BasePay                                97365.5
OvertimePay                             437.41
OtherPay                                   0.0
Benefits                              33089.92
TotalPay                              97802.91
TotalPayBenefits                     130892.83
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84552, dtype: object)
(84553, Id                                           84554
EmployeeName                      Bradford C Adams
JobTitle            Electrical Transit System Mech
BasePay                                   82681.52
OvertimePay                               13496.44
OtherPay                                   3843.61
Benefits                                  30869.47
TotalPay                                 100021.57
TotalPayBenefits                         130891.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84553, dtype: object)
(84554, Id                                           84555
EmployeeName                         Oscar  Huerta
JobTitle            Electrical Transit System Mech
BasePay                                   82681.52
OvertimePay                               17228.49
OtherPay                                     720.0
Benefits                                  30253.86
TotalPay                                 100630.01
TotalPayBenefits                         130883.87
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84554, dtype: object)
(84555, Id                           84556
EmployeeName          Ada C Aranda
JobTitle            Deputy Sheriff
BasePay                   89539.23
OvertimePay                8749.45
OtherPay                   1152.48
Benefits                  31439.97
TotalPay                  99441.16
TotalPayBenefits         130881.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84555, dtype: object)
(84556, Id                                         84557
EmployeeName                     William H Adams
JobTitle            Airports Communications Sprv
BasePay                                 97119.14
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                33112.25
TotalPay                                97767.14
TotalPayBenefits                       130879.39
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84556, dtype: object)
(84557, Id                                   84558
EmployeeName               Sherife  Huseny
JobTitle            Deputy Court Clerk III
BasePay                           93997.44
OvertimePay                            0.0
OtherPay                            3768.8
Benefits                          33111.59
TotalPay                          97766.24
TotalPayBenefits                 130877.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84557, dtype: object)
(84558, Id                                84559
EmployeeName        Patricia R McGregor
JobTitle                 Biologist I/II
BasePay                        95961.56
OvertimePay                         0.0
OtherPay                        2128.84
Benefits                       32772.86
TotalPay                        98090.4
TotalPayBenefits              130863.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84558, dtype: object)
(84559, Id                                           84560
EmployeeName                      Christopher  Lai
JobTitle            Food Service Mgr Administrator
BasePay                                   90738.88
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  40122.53
TotalPay                                  90738.88
TotalPayBenefits                         130861.41
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84559, dtype: object)
(84560, Id                                          84561
EmployeeName                Ronnie Hyunjoon  Rhoe
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  33933.7
TotalPay                                 96923.02
TotalPayBenefits                        130856.72
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84560, dtype: object)
(84561, Id                                    84562
EmployeeName                  Crezia R Tano
JobTitle            Sr Community Dev Spec 2
BasePay                            97716.06
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           33137.23
TotalPay                           97716.06
TotalPayBenefits                  130853.29
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84561, dtype: object)
(84562, Id                                84563
EmployeeName              Tony A Lucero
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     8878.21
OtherPay                       11902.83
Benefits                       31594.49
TotalPay                       99254.54
TotalPayBenefits              130849.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84562, dtype: object)
(84563, Id                             84564
EmployeeName           Karlton  Hair
JobTitle            Transit Operator
BasePay                     68396.67
OvertimePay                 24306.51
OtherPay                     3267.24
Benefits                    34877.13
TotalPay                    95970.42
TotalPayBenefits           130847.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84563, dtype: object)
(84564, Id                                          84565
EmployeeName                 Patrick J McLoughlin
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               5540.55
OtherPay                                      0.0
Benefits                                 33003.76
TotalPay                                 97834.05
TotalPayBenefits                        130837.81
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84564, dtype: object)
(84565, Id                                   84566
EmployeeName           Kayleigh J Hillcoat
JobTitle            Public SafetyComm Disp
BasePay                            87290.0
OvertimePay                        3731.92
OtherPay                           7430.07
Benefits                          32384.41
TotalPay                          98451.99
TotalPayBenefits                  130836.4
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84565, dtype: object)
(84566, Id                                      84567
EmployeeName                Julia V Cervantes
JobTitle            Attorney (Civil/Criminal)
BasePay                               96973.8
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             32610.62
TotalPay                              98223.8
TotalPayBenefits                    130834.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84566, dtype: object)
(84567, Id                                          84568
EmployeeName                        Kelly A Rojas
JobTitle            Senior Administrative Analyst
BasePay                                  96879.81
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33942.79
TotalPay                                 96879.81
TotalPayBenefits                         130822.6
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84567, dtype: object)
(84568, Id                                        84569
EmployeeName                     Eric C Younger
JobTitle            Electronic Maintenance Tech
BasePay                                105513.5
OvertimePay                                 0.0
OtherPay                                 3752.0
Benefits                               21555.74
TotalPay                               109265.5
TotalPayBenefits                      130821.24
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84568, dtype: object)
(84569, Id                                 84570
EmployeeName        Jennifer G Pasinosky
JobTitle                 Admin Analyst 3
BasePay                         92121.35
OvertimePay                          0.0
OtherPay                         5708.31
Benefits                        32991.04
TotalPay                        97829.66
TotalPayBenefits                130820.7
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84569, dtype: object)
(84570, Id                                         84571
EmployeeName                         Rhea H Durr
JobTitle            Health Program Coordinator 3
BasePay                                 97833.75
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32970.56
TotalPay                                97833.75
TotalPayBenefits                       130804.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84570, dtype: object)
(84571, Id                                 84572
EmployeeName             Jane S Watanabe
JobTitle            Power House Operator
BasePay                          75733.4
OvertimePay                     16433.11
OtherPay                         8349.02
Benefits                        30285.12
TotalPay                       100515.53
TotalPayBenefits               130800.65
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84571, dtype: object)
(84572, Id                           84573
EmployeeName         Steve B Souza
JobTitle            Deputy Sheriff
BasePay                   90862.62
OvertimePay                1782.24
OtherPay                   6089.78
Benefits                  32064.51
TotalPay                  98734.64
TotalPayBenefits         130799.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84572, dtype: object)
(84573, Id                                84574
EmployeeName          Richard B Shumard
JobTitle            Stationary Engineer
BasePay                        79578.64
OvertimePay                     4831.62
OtherPay                       14146.87
Benefits                       32236.07
TotalPay                       98557.13
TotalPayBenefits               130793.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84573, dtype: object)
(84574, Id                                        84575
EmployeeName                   Yelena V Zalkina
JobTitle            Senior Physician Specialist
BasePay                                 98799.8
OvertimePay                                 0.0
OtherPay                                4940.08
Benefits                                27045.5
TotalPay                              103739.88
TotalPayBenefits                      130785.38
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84574, dtype: object)
(84575, Id                                     84576
EmployeeName                  Nora C Banaria
JobTitle            Patient Accounts Manager
BasePay                             97686.05
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33098.53
TotalPay                            97686.05
TotalPayBenefits                   130784.58
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84575, dtype: object)
(84576, Id                                          84577
EmployeeName                      Kenneth J Bruce
JobTitle            Street Environ Svcs Oprs Supv
BasePay                                  94827.53
OvertimePay                               2029.47
OtherPay                                  1191.79
Benefits                                 32733.78
TotalPay                                 98048.79
TotalPayBenefits                        130782.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84576, dtype: object)
(84577, Id                              84578
EmployeeName        Angela S Davidson
JobTitle                Special Nurse
BasePay                     127243.12
OvertimePay                   1816.69
OtherPay                      1721.61
Benefits                          0.0
TotalPay                    130781.42
TotalPayBenefits            130781.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84577, dtype: object)
(84578, Id                                84579
EmployeeName            Matthew E Lasky
JobTitle            Transit Planner III
BasePay                        96836.34
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33944.28
TotalPay                       96836.34
TotalPayBenefits              130780.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84578, dtype: object)
(84579, Id                                      84580
EmployeeName               Alexander M Lamond
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74697.4
OvertimePay                          15497.26
OtherPay                             10377.22
Benefits                             30194.71
TotalPay                            100571.88
TotalPayBenefits                    130766.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84579, dtype: object)
(84580, Id                             84581
EmployeeName            Billy Q Chan
JobTitle            Transit Operator
BasePay                     68937.77
OvertimePay                 21872.88
OtherPay                     5257.49
Benefits                    34692.11
TotalPay                    96068.14
TotalPayBenefits           130760.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84580, dtype: object)
(84581, Id                                         84582
EmployeeName                         Thomas  Yee
JobTitle            Institutional Police Officer
BasePay                                 71658.01
OvertimePay                             23932.16
OtherPay                                 7155.99
Benefits                                27999.61
TotalPay                               102746.16
TotalPayBenefits                       130745.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84581, dtype: object)
(84582, Id                             84583
EmployeeName               Bill  Lau
JobTitle            Transit Operator
BasePay                     67708.88
OvertimePay                 24386.07
OtherPay                      4704.1
Benefits                    33943.83
TotalPay                    96799.05
TotalPayBenefits           130742.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84582, dtype: object)
(84583, Id                                         84584
EmployeeName                   William G Frazier
JobTitle            Health Program Coordinator 3
BasePay                                 97806.11
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32920.91
TotalPay                                97806.11
TotalPayBenefits                       130727.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84583, dtype: object)
(84584, Id                             84585
EmployeeName        Howard L Stiskin
JobTitle                  Manager II
BasePay                     95352.91
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    35373.22
TotalPay                    95352.91
TotalPayBenefits           130726.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84584, dtype: object)
(84585, Id                             84586
EmployeeName           Gina  Shepard
JobTitle            Registered Nurse
BasePay                     89637.44
OvertimePay                   819.06
OtherPay                     9669.78
Benefits                    30599.46
TotalPay                   100126.28
TotalPayBenefits           130725.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84585, dtype: object)
(84586, Id                             84587
EmployeeName         Emma S Gonzalez
JobTitle            Transit Operator
BasePay                     68928.02
OvertimePay                  22809.6
OtherPay                     4515.87
Benefits                    34467.41
TotalPay                    96253.49
TotalPayBenefits            130720.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84586, dtype: object)
(84587, Id                           84588
EmployeeName        John G Leonard
JobTitle               Electrician
BasePay                   95276.05
OvertimePay                 197.61
OtherPay                    2190.0
Benefits                   33054.6
TotalPay                  97663.66
TotalPayBenefits         130718.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84587, dtype: object)
(84588, Id                                        84589
EmployeeName                     DeAnne M Avery
JobTitle            Airport Communications Disp
BasePay                                81945.13
OvertimePay                            13305.91
OtherPay                                3775.22
Benefits                               31664.82
TotalPay                               99026.26
TotalPayBenefits                      130691.08
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84588, dtype: object)
(84589, Id                             84590
EmployeeName        Scott G Scoville
JobTitle              Deputy Sheriff
BasePay                     86595.04
OvertimePay                  6036.38
OtherPay                      7302.0
Benefits                    30757.53
TotalPay                    99933.42
TotalPayBenefits           130690.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84589, dtype: object)
(84590, Id                             84591
EmployeeName           David  Baylor
JobTitle            Transit Operator
BasePay                     67359.63
OvertimePay                 28973.38
OtherPay                     1451.58
Benefits                    32905.25
TotalPay                    97784.59
TotalPayBenefits           130689.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84590, dtype: object)
(84591, Id                                84592
EmployeeName        Ashley M McClintock
JobTitle               Registered Nurse
BasePay                        85433.85
OvertimePay                     6294.52
OtherPay                        9130.08
Benefits                       29830.95
TotalPay                      100858.45
TotalPayBenefits               130689.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84591, dtype: object)
(84592, Id                           84593
EmployeeName        Jarron G Cross
JobTitle            Police Officer
BasePay                   91917.36
OvertimePay                3485.08
OtherPay                   3004.07
Benefits                  32281.23
TotalPay                  98406.51
TotalPayBenefits         130687.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84592, dtype: object)
(84593, Id                                      84594
EmployeeName                    Kendrick M Li
JobTitle            Pr Administrative Analyst
BasePay                              96758.31
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33927.79
TotalPay                             96758.31
TotalPayBenefits                     130686.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84593, dtype: object)
(84594, Id                              84595
EmployeeName        Tommy  Benford Jr
JobTitle             Transit Operator
BasePay                       69523.4
OvertimePay                   15787.5
OtherPay                      9282.74
Benefits                      36087.4
TotalPay                     94593.64
TotalPayBenefits            130681.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84594, dtype: object)
(84595, Id                                  84596
EmployeeName        Ana Claudia R Pereira
JobTitle                 Registered Nurse
BasePay                          95622.43
OvertimePay                       2455.18
OtherPay                          2222.13
Benefits                         30377.88
TotalPay                        100299.74
TotalPayBenefits                130677.62
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84595, dtype: object)
(84596, Id                                     84597
EmployeeName                 Dorothy A Ellis
JobTitle            Deputy Probation Officer
BasePay                             87867.39
OvertimePay                         15001.98
OtherPay                                 0.0
Benefits                             27804.4
TotalPay                           102869.37
TotalPayBenefits                   130673.77
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84596, dtype: object)
(84597, Id                                     84598
EmployeeName                Timothy  Diestel
JobTitle            Asst Dir, Log Cabin Rnch
BasePay                             90491.51
OvertimePay                              0.0
OtherPay                             1556.03
Benefits                            38612.65
TotalPay                            92047.54
TotalPayBenefits                   130660.19
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84597, dtype: object)
(84598, Id                                     84599
EmployeeName                   Bobby J Uppal
JobTitle            Deputy Probation Officer
BasePay                              92964.2
OvertimePay                          2678.86
OtherPay                             3897.82
Benefits                            31084.82
TotalPay                            99540.88
TotalPayBenefits                    130625.7
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84598, dtype: object)
(84599, Id                           84600
EmployeeName        Chadi J Hajjar
JobTitle               Electrician
BasePay                   95276.04
OvertimePay                1727.25
OtherPay                     836.0
Benefits                  32785.87
TotalPay                  97839.29
TotalPayBenefits         130625.16
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84599, dtype: object)
(84600, Id                                   84601
EmployeeName                     Sadie  Li
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            7983.0
Benefits                          32413.94
TotalPay                          98210.53
TotalPayBenefits                 130624.47
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84600, dtype: object)
(84601, Id                                   84602
EmployeeName                    Paul M Lee
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            7983.0
Benefits                          32413.94
TotalPay                           98210.5
TotalPayBenefits                 130624.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84601, dtype: object)
(84602, Id                                         84603
EmployeeName                Frederick K Hartwell
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 90963.13
OvertimePay                                  0.0
OtherPay                                  6637.9
Benefits                                33004.51
TotalPay                                97601.03
TotalPayBenefits                       130605.54
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84602, dtype: object)
(84603, Id                                84604
EmployeeName              Dennis H Fong
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                    20161.31
OtherPay                        1439.65
Benefits                       29711.43
TotalPay                      100884.46
TotalPayBenefits              130595.89
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84603, dtype: object)
(84604, Id                                   84605
EmployeeName                   Alison  Kim
JobTitle            Construction Inspector
BasePay                           97677.57
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32907.43
TotalPay                          97677.57
TotalPayBenefits                  130585.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84604, dtype: object)
(84605, Id                             84606
EmployeeName          Geofrey B Cual
JobTitle            Transit Operator
BasePay                     70323.43
OvertimePay                 22195.18
OtherPay                     3243.24
Benefits                    34818.71
TotalPay                    95761.85
TotalPayBenefits           130580.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84605, dtype: object)
(84606, Id                              84607
EmployeeName        Carlos  Gutierrez
JobTitle             Transit Operator
BasePay                      62058.39
OvertimePay                  31403.09
OtherPay                      5688.27
Benefits                     31428.79
TotalPay                     99149.75
TotalPayBenefits            130578.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84606, dtype: object)
(84607, Id                            84608
EmployeeName        Robert S Catley
JobTitle            Utility Plumber
BasePay                    97367.77
OvertimePay                   307.2
OtherPay                        8.0
Benefits                   32892.97
TotalPay                   97682.97
TotalPayBenefits          130575.94
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84607, dtype: object)
(84608, Id                                 84609
EmployeeName            Patrick F Mullen
JobTitle            Sewer Service Worker
BasePay                          87333.2
OvertimePay                       8128.4
OtherPay                          4010.0
Benefits                        31100.66
TotalPay                         99471.6
TotalPayBenefits               130572.26
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84608, dtype: object)
(84609, Id                                         84610
EmployeeName                  Roban L San Miguel
JobTitle            Health Program Coordinator 3
BasePay                                 97677.21
OvertimePay                                  0.0
OtherPay                                   14.64
Benefits                                32878.58
TotalPay                                97691.85
TotalPayBenefits                       130570.43
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84609, dtype: object)
(84610, Id                             84611
EmployeeName           Milton W Wong
JobTitle            Transit Operator
BasePay                     68910.73
OvertimePay                 25535.71
OtherPay                     1416.48
Benefits                    34706.13
TotalPay                    95862.92
TotalPayBenefits           130569.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84610, dtype: object)
(84611, Id                                           84612
EmployeeName                   Robert  Stafford Jr
JobTitle            Arborist Technician Supervisor
BasePay                                    89620.5
OvertimePay                                5559.78
OtherPay                                    3882.2
Benefits                                  31490.02
TotalPay                                  99062.48
TotalPayBenefits                          130552.5
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84611, dtype: object)
(84612, Id                                       84613
EmployeeName                  Marynella  Woods
JobTitle            Protective Services Worker
BasePay                                95229.0
OvertimePay                                0.0
OtherPay                                2268.0
Benefits                              33051.17
TotalPay                               97497.0
TotalPayBenefits                     130548.17
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84612, dtype: object)
(84613, Id                                     84614
EmployeeName           Christopher J Baldwin
JobTitle            Counselor, Juvenile Hall
BasePay                             67548.68
OvertimePay                          34867.9
OtherPay                             1615.51
Benefits                            26511.09
TotalPay                           104032.09
TotalPayBenefits                   130543.18
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84613, dtype: object)
(84614, Id                          84615
EmployeeName         Edwin C Wong
JobTitle              Electrician
BasePay                  95276.03
OvertimePay                   0.0
OtherPay                   2208.0
Benefits                 33057.31
TotalPay                 97484.03
TotalPayBenefits        130541.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84614, dtype: object)
(84615, Id                                       84616
EmployeeName                     Silvia I Wong
JobTitle            IS Business Analyst-Senior
BasePay                               96643.22
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               33893.7
TotalPay                              96643.22
TotalPayBenefits                     130536.92
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84615, dtype: object)
(84616, Id                                           84617
EmployeeName                      Genta  Yoshikawa
JobTitle            IT Operations Support Admin IV
BasePay                                   97442.05
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33094.83
TotalPay                                  97442.05
TotalPayBenefits                         130536.88
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84616, dtype: object)
(84617, Id                            84618
EmployeeName        Orlando S Arias
JobTitle             Deputy Sheriff
BasePay                    95126.52
OvertimePay                   67.08
OtherPay                     3039.1
Benefits                   32300.04
TotalPay                    98232.7
TotalPayBenefits          130532.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84617, dtype: object)
(84618, Id                             84619
EmployeeName         Roderick E Dent
JobTitle            Transit Operator
BasePay                     68524.48
OvertimePay                 22906.57
OtherPay                      4748.0
Benefits                    34344.17
TotalPay                    96179.05
TotalPayBenefits           130523.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84618, dtype: object)
(84619, Id                             84620
EmployeeName          Sharon D Davis
JobTitle            Transit Operator
BasePay                     66001.71
OvertimePay                 31477.35
OtherPay                      971.96
Benefits                     32071.5
TotalPay                    98451.02
TotalPayBenefits           130522.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84619, dtype: object)
(84620, Id                             84621
EmployeeName            Alex L Huang
JobTitle            Transit Operator
BasePay                     60246.18
OvertimePay                 36397.09
OtherPay                     3652.81
Benefits                    30223.43
TotalPay                   100296.08
TotalPayBenefits           130519.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84620, dtype: object)
(84621, Id                                  84622
EmployeeName        Andy Tak Ching  Leung
JobTitle                   Deputy Sheriff
BasePay                          93165.22
OvertimePay                       2468.64
OtherPay                          2986.81
Benefits                         31893.32
TotalPay                         98620.67
TotalPayBenefits                130513.99
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84621, dtype: object)
(84622, Id                              84623
EmployeeName        Ann S Caltagirone
JobTitle                Special Nurse
BasePay                     122714.58
OvertimePay                    3513.3
OtherPay                      2989.84
Benefits                      1292.15
TotalPay                    129217.72
TotalPayBenefits            130509.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84622, dtype: object)
(84623, Id                                 84624
EmployeeName        Vincent A Turnipseed
JobTitle              Transit Supervisor
BasePay                         71449.49
OvertimePay                     24489.93
OtherPay                         2807.02
Benefits                        31754.25
TotalPay                        98746.44
TotalPayBenefits               130500.69
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84623, dtype: object)
(84624, Id                                84625
EmployeeName             Ronald  Lerohl
JobTitle            Stationary Engineer
BasePay                        90670.33
OvertimePay                         0.0
OtherPay                        6821.58
Benefits                       33007.92
TotalPay                       97491.91
TotalPayBenefits              130499.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84624, dtype: object)
(84625, Id                           84626
EmployeeName        David R Pierce
JobTitle               Electrician
BasePay                   95276.01
OvertimePay                 831.33
OtherPay                    1503.0
Benefits                  32887.41
TotalPay                  97610.34
TotalPayBenefits         130497.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84625, dtype: object)
(84626, Id                             84627
EmployeeName         Miguel A Duarte
JobTitle            Transit Operator
BasePay                     67786.19
OvertimePay                 25006.17
OtherPay                     3924.04
Benefits                    33776.25
TotalPay                     96716.4
TotalPayBenefits           130492.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84626, dtype: object)
(84627, Id                                   84628
EmployeeName                Mark P Fa aita
JobTitle            Electrical Line Worker
BasePay                            85489.0
OvertimePay                       13927.13
OtherPay                            264.01
Benefits                          30811.99
TotalPay                          99680.14
TotalPayBenefits                 130492.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84627, dtype: object)
(84628, Id                           84629
EmployeeName        Rashid  Anasse
JobTitle            Deputy Sheriff
BasePay                    95126.5
OvertimePay                  21.63
OtherPay                   3034.46
Benefits                  32299.13
TotalPay                  98182.59
TotalPayBenefits         130481.72
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84628, dtype: object)
(84629, Id                                       84630
EmployeeName             Dina L Austin-Walters
JobTitle            Welfare Fraud Investigator
BasePay                               97367.45
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33095.96
TotalPay                              97367.45
TotalPayBenefits                     130463.41
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84629, dtype: object)
(84630, Id                                       84631
EmployeeName                       David  Turk
JobTitle            Welfare Fraud Investigator
BasePay                               97367.41
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33095.95
TotalPay                              97367.41
TotalPayBenefits                     130463.36
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84630, dtype: object)
(84631, Id                           84632
EmployeeName          David L Lara
JobTitle            Deputy Sheriff
BasePay                   95126.52
OvertimePay                   14.1
OtherPay                   3024.99
Benefits                  32297.29
TotalPay                  98165.61
TotalPayBenefits          130462.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84631, dtype: object)
(84632, Id                                       84633
EmployeeName                Joseph E Villatoro
JobTitle            Welfare Fraud Investigator
BasePay                               97365.53
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33089.95
TotalPay                              97365.53
TotalPayBenefits                     130455.48
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84632, dtype: object)
(84633, Id                                       84634
EmployeeName                      Keith E Carr
JobTitle            Asst Materials Coordinator
BasePay                                97365.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33089.92
TotalPay                               97365.5
TotalPayBenefits                     130455.42
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84633, dtype: object)
(84634, Id                                           84635
EmployeeName                        Jose R Machuca
JobTitle            IT Operations Support Admin IV
BasePay                                   97372.04
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33082.08
TotalPay                                  97372.04
TotalPayBenefits                         130454.12
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84634, dtype: object)
(84635, Id                           84636
EmployeeName            Qing J Liu
JobTitle            Accountant III
BasePay                   97409.53
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   33039.3
TotalPay                  97409.53
TotalPayBenefits         130448.83
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84635, dtype: object)
(84636, Id                                       84637
EmployeeName              Vicki S Saltzer-Lamb
JobTitle            Welfare Fraud Investigator
BasePay                               97363.69
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              33083.99
TotalPay                              97363.69
TotalPayBenefits                     130447.68
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84636, dtype: object)
(84637, Id                                    84638
EmployeeName                    Omar  Dudum
JobTitle            Park Section Supervisor
BasePay                            84114.53
OvertimePay                        13755.79
OtherPay                            1829.81
Benefits                           30746.42
TotalPay                           99700.13
TotalPayBenefits                  130446.55
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84637, dtype: object)
(84638, Id                                        84639
EmployeeName                      Damyanti  Jit
JobTitle            Airport Communications Disp
BasePay                                81414.08
OvertimePay                            17070.04
OtherPay                                1852.21
Benefits                               30104.24
TotalPay                              100336.33
TotalPayBenefits                      130440.57
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84638, dtype: object)
(84639, Id                                       84640
EmployeeName                        Jamie  Lau
JobTitle            Sr Human Resources Analyst
BasePay                               92666.67
OvertimePay                                0.0
OtherPay                               4767.16
Benefits                              33003.22
TotalPay                              97433.83
TotalPayBenefits                     130437.05
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84639, dtype: object)
(84640, Id                              84641
EmployeeName        Robert  Underwood
JobTitle                 Truck Driver
BasePay                      79035.92
OvertimePay                   8419.74
OtherPay                     13466.76
Benefits                     29514.27
TotalPay                    100922.42
TotalPayBenefits            130436.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84640, dtype: object)
(84641, Id                                       84642
EmployeeName                        Phung  Ngo
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                2168.0
Benefits                              33028.69
TotalPay                              97397.03
TotalPayBenefits                     130425.72
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84641, dtype: object)
(84642, Id                                       84643
EmployeeName           Annette S Montiel-Eison
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                2168.0
Benefits                              33028.06
TotalPay                              97397.05
TotalPayBenefits                     130425.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84642, dtype: object)
(84643, Id                                           84644
EmployeeName                        James V Sparks
JobTitle            AprntcStatnry Eng,WtrTreatPlnt
BasePay                                   82700.52
OvertimePay                               10189.52
OtherPay                                   6171.04
Benefits                                  31353.44
TotalPay                                  99061.08
TotalPayBenefits                         130414.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84643, dtype: object)
(84644, Id                          84645
EmployeeName         James  Roush
JobTitle             Truck Driver
BasePay                  80052.02
OvertimePay              17207.29
OtherPay                  3023.28
Benefits                 30130.26
TotalPay                100282.59
TotalPayBenefits        130412.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84644, dtype: object)
(84645, Id                                84646
EmployeeName        Herbert  Henley III
JobTitle               Transit Operator
BasePay                        68842.09
OvertimePay                    22149.55
OtherPay                        4864.67
Benefits                        34552.7
TotalPay                       95856.31
TotalPayBenefits              130409.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84645, dtype: object)
(84646, Id                          84647
EmployeeName         Kate F Chalk
JobTitle               Auditor II
BasePay                  96503.08
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33899.91
TotalPay                 96503.08
TotalPayBenefits        130402.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84646, dtype: object)
(84647, Id                            84648
EmployeeName        Richard A Sucre
JobTitle                  Planner 3
BasePay                    96510.11
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33880.31
TotalPay                   96510.11
TotalPayBenefits          130390.42
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84647, dtype: object)
(84648, Id                                         84649
EmployeeName                      Peter J O'Shea
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 84344.49
OvertimePay                              6810.59
OtherPay                                 7868.36
Benefits                                31363.79
TotalPay                                99023.44
TotalPayBenefits                       130387.23
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84648, dtype: object)
(84649, Id                                   84650
EmployeeName                Chris A Geiger
JobTitle            Sr. Environmental Spec
BasePay                           97653.22
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32725.39
TotalPay                          97653.22
TotalPayBenefits                 130378.61
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84649, dtype: object)
(84650, Id                          84651
EmployeeName            Lee  Most
JobTitle                Locksmith
BasePay                  84764.56
OvertimePay              12347.27
OtherPay                   2290.0
Benefits                 30966.33
TotalPay                 99401.83
TotalPayBenefits        130368.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84650, dtype: object)
(84651, Id                                          84652
EmployeeName                       Steve  Rotondo
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.02
OvertimePay                               4641.85
OtherPay                                  6971.68
Benefits                                 32221.24
TotalPay                                 98139.55
TotalPayBenefits                        130360.79
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84651, dtype: object)
(84652, Id                                       84653
EmployeeName                      Agnes L Chan
JobTitle            Protective Services Worker
BasePay                               95206.97
OvertimePay                             199.29
OtherPay                               1967.85
Benefits                               32982.6
TotalPay                              97374.11
TotalPayBenefits                     130356.71
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84652, dtype: object)
(84653, Id                             84654
EmployeeName           Gene M Mabrey
JobTitle            Transit Operator
BasePay                     68535.72
OvertimePay                 18633.79
OtherPay                     7957.23
Benefits                    35226.65
TotalPay                    95126.74
TotalPayBenefits           130353.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84653, dtype: object)
(84654, Id                                         84655
EmployeeName                     Troy W Determan
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              5001.85
OtherPay                                 6663.76
Benefits                                32146.63
TotalPay                                98195.61
TotalPayBenefits                       130342.24
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84654, dtype: object)
(84655, Id                                84656
EmployeeName                Joe  Bosten
JobTitle            Stationary Engineer
BasePay                        78540.79
OvertimePay                     6869.27
OtherPay                       13098.69
Benefits                       31830.28
TotalPay                       98508.75
TotalPayBenefits              130339.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84655, dtype: object)
(84656, Id                                     84657
EmployeeName                      Anson  Der
JobTitle            Deputy Probation Officer
BasePay                              96331.5
OvertimePay                           3475.4
OtherPay                                 0.0
Benefits                            30531.72
TotalPay                             99806.9
TotalPayBenefits                   130338.62
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84656, dtype: object)
(84657, Id                                84658
EmployeeName        Vincent R McEnerney
JobTitle            IS Business Analyst
BasePay                        94694.51
OvertimePay                     3136.44
OtherPay                            0.0
Benefits                       32490.52
TotalPay                       97830.95
TotalPayBenefits              130321.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84657, dtype: object)
(84658, Id                                         84659
EmployeeName                   Adrienne C Leifer
JobTitle            IS Programmer Analyst-Senior
BasePay                                 96457.43
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33853.04
TotalPay                                96457.43
TotalPayBenefits                       130310.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84658, dtype: object)
(84659, Id                            84660
EmployeeName        Ray W Landstrom
JobTitle                Electrician
BasePay                    95276.01
OvertimePay                     0.0
OtherPay                     2010.0
Benefits                   33016.18
TotalPay                   97286.01
TotalPayBenefits          130302.19
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84659, dtype: object)
(84660, Id                                         84661
EmployeeName                       Felix  Profis
JobTitle            Wastewater Control Inspector
BasePay                                 94102.55
OvertimePay                              3794.04
OtherPay                                     0.0
Benefits                                32400.37
TotalPay                                97896.59
TotalPayBenefits                       130296.96
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84660, dtype: object)
(84661, Id                                84662
EmployeeName        Nathan Gar-Lok  Lee
JobTitle                 Police Officer
BasePay                        92259.07
OvertimePay                     1247.97
OtherPay                        4313.98
Benefits                       32465.95
TotalPay                       97821.02
TotalPayBenefits              130286.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84661, dtype: object)
(84662, Id                                84663
EmployeeName        Victoria L Aphailee
JobTitle               Registered Nurse
BasePay                        87517.98
OvertimePay                     2702.19
OtherPay                        9584.38
Benefits                       30481.42
TotalPay                       99804.55
TotalPayBenefits              130285.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84662, dtype: object)
(84663, Id                                84664
EmployeeName          Nathan T Sinclair
JobTitle            IS Engineer-Journey
BasePay                         94572.8
OvertimePay                         0.0
OtherPay                        2229.45
Benefits                       33479.73
TotalPay                       96802.25
TotalPayBenefits              130281.98
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84663, dtype: object)
(84664, Id                            84665
EmployeeName        Edward W Gamble
JobTitle             Police Officer
BasePay                    92259.08
OvertimePay                 4147.43
OtherPay                    1431.79
Benefits                   32419.85
TotalPay                    97838.3
TotalPayBenefits          130258.15
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84664, dtype: object)
(84665, Id                                     84666
EmployeeName                 Darcus R Tucker
JobTitle            Track Maintenance Worker
BasePay                              65824.1
OvertimePay                         28886.79
OtherPay                             7396.94
Benefits                            28143.73
TotalPay                           102107.83
TotalPayBenefits                   130251.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84665, dtype: object)
(84666, Id                             84667
EmployeeName         Garland  Taylor
JobTitle            Transit Operator
BasePay                     69029.57
OvertimePay                 24960.74
OtherPay                     2312.57
Benefits                    33940.52
TotalPay                    96302.88
TotalPayBenefits            130243.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84666, dtype: object)
(84667, Id                                           84668
EmployeeName                    Joshua A Alexander
JobTitle            Environmental Health Inspector
BasePay                                   96421.18
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33819.63
TotalPay                                  96421.18
TotalPayBenefits                         130240.81
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84667, dtype: object)
(84668, Id                                     84669
EmployeeName              Gabriel  Maldonado
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                          2257.09
OtherPay                              1150.0
Benefits                            30678.75
TotalPay                            99559.62
TotalPayBenefits                   130238.37
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84668, dtype: object)
(84669, Id                               84670
EmployeeName        Bernard D Sandoval
JobTitle                   Electrician
BasePay                        95345.9
OvertimePay                    2160.68
OtherPay                          74.0
Benefits                       32649.0
TotalPay                      97580.58
TotalPayBenefits             130229.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84669, dtype: object)
(84670, Id                                       84671
EmployeeName                     Irma Y Romero
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                1988.0
Benefits                              33000.09
TotalPay                              97217.04
TotalPayBenefits                     130217.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84670, dtype: object)
(84671, Id                                          84672
EmployeeName                    Marilene C Harvey
JobTitle            Sr. Stationary Eng, Sew Plant
BasePay                                  82957.58
OvertimePay                              10026.98
OtherPay                                  7886.94
Benefits                                 29343.28
TotalPay                                 100871.5
TotalPayBenefits                        130214.78
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84671, dtype: object)
(84672, Id                                         84673
EmployeeName                   Robert D Mitchell
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              1625.35
OtherPay                                 8537.16
Benefits                                33518.49
TotalPay                                96692.51
TotalPayBenefits                        130211.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84672, dtype: object)
(84673, Id                             84674
EmployeeName              John  Yang
JobTitle            Transit Operator
BasePay                     68629.88
OvertimePay                 26518.97
OtherPay                     1548.62
Benefits                    33512.75
TotalPay                    96697.47
TotalPayBenefits           130210.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84673, dtype: object)
(84674, Id                             84675
EmployeeName        Neil  Weingarten
JobTitle             Manager II, MTA
BasePay                     96317.11
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33887.48
TotalPay                    96317.11
TotalPayBenefits           130204.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84674, dtype: object)
(84675, Id                                 84676
EmployeeName        Adoracion Q Laurente
JobTitle               Nursing Assistant
BasePay                          68391.0
OvertimePay                     28097.09
OtherPay                         5476.76
Benefits                        28239.38
TotalPay                       101964.85
TotalPayBenefits               130204.23
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84675, dtype: object)
(84676, Id                               84677
EmployeeName        Martin J Kilgariff
JobTitle                Police Officer
BasePay                       92259.03
OvertimePay                    3633.24
OtherPay                       1905.63
Benefits                      32403.98
TotalPay                       97797.9
TotalPayBenefits             130201.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84676, dtype: object)
(84677, Id                                           84678
EmployeeName                       Cheryl A Waller
JobTitle            Sr Airport Communications Disp
BasePay                                    90174.7
OvertimePay                                2467.09
OtherPay                                   5010.45
Benefits                                  32536.68
TotalPay                                  97652.24
TotalPayBenefits                         130188.92
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84677, dtype: object)
(84678, Id                                   84679
EmployeeName          Katherine B Buhagiar
JobTitle            Public SafetyComm Disp
BasePay                            86193.8
OvertimePay                        4633.27
OtherPay                            7357.1
Benefits                          32001.61
TotalPay                          98184.17
TotalPayBenefits                 130185.78
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84678, dtype: object)
(84679, Id                               84680
EmployeeName             Tsombe  Wolfe
JobTitle            Transit Supervisor
BasePay                       71137.58
OvertimePay                   16815.65
OtherPay                       6787.45
Benefits                      35443.63
TotalPay                      94740.68
TotalPayBenefits             130184.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84679, dtype: object)
(84680, Id                                        84681
EmployeeName                   Shalana C Willis
JobTitle            Station Agent, Muni Railway
BasePay                                76642.87
OvertimePay                            20857.81
OtherPay                                3657.61
Benefits                               29024.91
TotalPay                              101158.29
TotalPayBenefits                       130183.2
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84680, dtype: object)
(84681, Id                           84682
EmployeeName        Sharon  Samuel
JobTitle               Electrician
BasePay                   95276.01
OvertimePay                  65.87
OtherPay                    1856.0
Benefits                  32985.21
TotalPay                  97197.88
TotalPayBenefits         130183.09
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84681, dtype: object)
(84682, Id                                         84683
EmployeeName                    Richard C Shults
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.02
OvertimePay                              2873.61
OtherPay                                 7474.23
Benefits                                33303.23
TotalPay                                96877.86
TotalPayBenefits                       130181.09
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84682, dtype: object)
(84683, Id                                84684
EmployeeName        Ronald E Carmichael
JobTitle                    Electrician
BasePay                         94771.0
OvertimePay                     1732.62
OtherPay                         1004.0
Benefits                       32658.02
TotalPay                       97507.62
TotalPayBenefits              130165.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84683, dtype: object)
(84684, Id                                   84685
EmployeeName                Ariel S Aquino
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       27228.28
OtherPay                           6151.89
Benefits                          28385.34
TotalPay                         101771.17
TotalPayBenefits                 130156.51
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84684, dtype: object)
(84685, Id                                     84686
EmployeeName                  Katrina S Ting
JobTitle            Personnel/Payroll Repres
BasePay                              89756.5
OvertimePay                          1241.66
OtherPay                             6423.05
Benefits                            32731.26
TotalPay                            97421.21
TotalPayBenefits                   130152.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84685, dtype: object)
(84686, Id                                84687
EmployeeName        Tangerine M Brigham
JobTitle                      Dep Dir V
BasePay                        74682.66
OvertimePay                         0.0
OtherPay                        33502.5
Benefits                       21961.58
TotalPay                      108185.16
TotalPayBenefits              130146.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84686, dtype: object)
(84687, Id                                         84688
EmployeeName                     Tyrone L Burney
JobTitle            General Laborer Supervisor 1
BasePay                                  69202.0
OvertimePay                             32426.94
OtherPay                                  943.96
Benefits                                27571.43
TotalPay                                102572.9
TotalPayBenefits                       130144.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84687, dtype: object)
(84688, Id                             84689
EmployeeName         Gayland T Smith
JobTitle            Transit Operator
BasePay                     68602.15
OvertimePay                 25798.04
OtherPay                     2104.73
Benefits                    33634.87
TotalPay                    96504.92
TotalPayBenefits           130139.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84688, dtype: object)
(84689, Id                              84690
EmployeeName        Cyril M Velasquez
JobTitle                    Asst Engr
BasePay                      98339.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31799.53
TotalPay                     98339.51
TotalPayBenefits            130139.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84689, dtype: object)
(84690, Id                                84691
EmployeeName        Napoleon C Calimlim
JobTitle                      Asst Engr
BasePay                        97248.25
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32887.18
TotalPay                       97248.25
TotalPayBenefits              130135.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84690, dtype: object)
(84691, Id                                           84692
EmployeeName                     Adrian D Giannini
JobTitle            Pr Investigator, Tax Collector
BasePay                                    97119.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32984.84
TotalPay                                   97119.0
TotalPayBenefits                         130103.84
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84691, dtype: object)
(84692, Id                                      84693
EmployeeName                  Shane M Pinaula
JobTitle            EMT/Paramedic/Firefighter
BasePay                              84218.49
OvertimePay                           6871.53
OtherPay                              8399.23
Benefits                             30607.49
TotalPay                             99489.25
TotalPayBenefits                    130096.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84692, dtype: object)
(84693, Id                                         84694
EmployeeName                    Donald  Oliveira
JobTitle            Principal Environ Specialist
BasePay                                 96758.83
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 33327.7
TotalPay                                96758.83
TotalPayBenefits                       130086.53
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84693, dtype: object)
(84694, Id                               84695
EmployeeName           Marcus D Marcic
JobTitle            Transit Supervisor
BasePay                       81206.73
OvertimePay                   11849.35
OtherPay                       7177.04
Benefits                      29848.91
TotalPay                     100233.12
TotalPayBenefits             130082.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84694, dtype: object)
(84695, Id                                 84696
EmployeeName                 Paul S Wong
JobTitle            Sewer Service Worker
BasePay                          84526.5
OvertimePay                      4952.91
OtherPay                         8462.65
Benefits                        32136.25
TotalPay                        97942.06
TotalPayBenefits               130078.31
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84695, dtype: object)
(84696, Id                                84697
EmployeeName                Danny  Kwan
JobTitle            Stationary Engineer
BasePay                        78473.54
OvertimePay                     3854.34
OtherPay                        17312.8
Benefits                       30434.06
TotalPay                       99640.68
TotalPayBenefits              130074.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84696, dtype: object)
(84697, Id                                       84698
EmployeeName                Linda M Robertshaw
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                            1013.83
OtherPay                               1087.81
Benefits                              32739.35
TotalPay                              97330.71
TotalPayBenefits                     130070.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84697, dtype: object)
(84698, Id                                       84699
EmployeeName                   Pernita G Brown
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                               1882.52
Benefits                              32953.03
TotalPay                              97111.56
TotalPayBenefits                     130064.59
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84698, dtype: object)
(84699, Id                                   84700
EmployeeName                Marsha A Smith
JobTitle            Deputy Court Clerk III
BasePay                           93585.56
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          32977.86
TotalPay                          97085.56
TotalPayBenefits                 130063.42
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84699, dtype: object)
(84700, Id                               84701
EmployeeName        Jenna A M Marchant
JobTitle                 Special Nurse
BasePay                      111789.72
OvertimePay                    1898.37
OtherPay                      15082.46
Benefits                       1287.71
TotalPay                     128770.55
TotalPayBenefits             130058.26
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84700, dtype: object)
(84701, Id                                         84702
EmployeeName                    Charlene A Smith
JobTitle            Employment & Training Spec 5
BasePay                                  97293.7
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32759.19
TotalPay                                 97293.7
TotalPayBenefits                       130052.89
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84701, dtype: object)
(84702, Id                                          84703
EmployeeName                        Craig L Hersh
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               3342.73
OtherPay                                  1996.18
Benefits                                 32416.77
TotalPay                                 97632.41
TotalPayBenefits                        130049.18
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84702, dtype: object)
(84703, Id                           84704
EmployeeName        Xavier L Brown
JobTitle               Firefighter
BasePay                   82799.42
OvertimePay                8231.44
OtherPay                    5140.0
Benefits                  33873.22
TotalPay                  96170.86
TotalPayBenefits         130044.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84703, dtype: object)
(84704, Id                                           84705
EmployeeName                         Yee Kuo  Shen
JobTitle            Custodial Assistant Supervisor
BasePay                                    60534.0
OvertimePay                               38879.43
OtherPay                                   4159.37
Benefits                                  26466.39
TotalPay                                  103572.8
TotalPayBenefits                         130039.19
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84704, dtype: object)
(84705, Id                             84706
EmployeeName         Alfred  Sanchez
JobTitle            Transit Operator
BasePay                     67147.37
OvertimePay                 23123.36
OtherPay                     5793.81
Benefits                    33970.23
TotalPay                    96064.54
TotalPayBenefits           130034.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84705, dtype: object)
(84706, Id                                 84707
EmployeeName              Larry J Harris
JobTitle            Car and Auto Painter
BasePay                         79283.51
OvertimePay                      1522.66
OtherPay                        16523.72
Benefits                        32681.25
TotalPay                        97329.89
TotalPayBenefits               130011.14
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84706, dtype: object)
(84707, Id                               84708
EmployeeName        Steve  Meuangkhoth
JobTitle              Transit Operator
BasePay                        70780.7
OvertimePay                   19532.18
OtherPay                       4373.94
Benefits                      35318.23
TotalPay                      94686.82
TotalPayBenefits             130005.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84707, dtype: object)
(84708, Id                                      84709
EmployeeName                     Laura C Page
JobTitle            Pr Administrative Analyst
BasePay                              96248.75
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33744.65
TotalPay                             96248.75
TotalPayBenefits                     129993.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84708, dtype: object)
(84709, Id                           84710
EmployeeName        Sandy V Cuadra
JobTitle                Manager IV
BasePay                   95443.39
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   34549.9
TotalPay                  95443.39
TotalPayBenefits         129993.29
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84709, dtype: object)
(84710, Id                          84711
EmployeeName            Min  Fang
JobTitle            Accountant IV
BasePay                  96993.95
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32995.69
TotalPay                 96993.95
TotalPayBenefits        129989.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84710, dtype: object)
(84711, Id                                   84712
EmployeeName             Chava  Kronenberg
JobTitle            Performance Analyst II
BasePay                           96201.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          33784.51
TotalPay                          96201.03
TotalPayBenefits                 129985.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84711, dtype: object)
(84712, Id                                           84713
EmployeeName                           Ricky K Lee
JobTitle            Senior Real Property Appraiser
BasePay                                   95043.66
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                  32741.34
TotalPay                                  97243.66
TotalPayBenefits                          129985.0
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84712, dtype: object)
(84713, Id                                  84714
EmployeeName        Christopher A Willers
JobTitle              Stationary Engineer
BasePay                          78922.15
OvertimePay                       13426.0
OtherPay                           6971.4
Benefits                         30664.33
TotalPay                         99319.55
TotalPayBenefits                129983.88
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84713, dtype: object)
(84714, Id                                       84715
EmployeeName                 Dennis D Decastro
JobTitle            Senior Stationary Engineer
BasePay                                88945.5
OvertimePay                            1698.99
OtherPay                               6670.98
Benefits                              32666.21
TotalPay                              97315.47
TotalPayBenefits                     129981.68
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84714, dtype: object)
(84715, Id                             84716
EmployeeName              Phu T Tran
JobTitle            Transit Operator
BasePay                     67643.93
OvertimePay                 22425.02
OtherPay                     5715.27
Benefits                    34187.97
TotalPay                    95784.22
TotalPayBenefits           129972.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84715, dtype: object)
(84716, Id                             84717
EmployeeName          Michael  Green
JobTitle            Transit Operator
BasePay                     70263.25
OvertimePay                 20095.78
OtherPay                     4501.33
Benefits                    35103.05
TotalPay                    94860.36
TotalPayBenefits           129963.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84716, dtype: object)
(84717, Id                                         84718
EmployeeName                        Sean  Nguyen
JobTitle            Health Program Coordinator 3
BasePay                                 96956.52
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33006.75
TotalPay                                96956.52
TotalPayBenefits                       129963.27
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84717, dtype: object)
(84718, Id                                          84719
EmployeeName                    Lanita  Henriquez
JobTitle            Senior Administrative Analyst
BasePay                                  96953.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33003.05
TotalPay                                 96953.02
TotalPayBenefits                        129956.07
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84718, dtype: object)
(84719, Id                             84720
EmployeeName        Megan L Anderson
JobTitle                 Librarian 2
BasePay                     95722.07
OvertimePay                      0.0
OtherPay                     1285.83
Benefits                    32947.25
TotalPay                     97007.9
TotalPayBenefits           129955.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84719, dtype: object)
(84720, Id                                   84721
EmployeeName                Nancy  Ballard
JobTitle            Occupational Therapist
BasePay                           98513.58
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31436.35
TotalPay                          98513.58
TotalPayBenefits                 129949.93
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84720, dtype: object)
(84721, Id                             84722
EmployeeName        Ilya  Faynshteyn
JobTitle              Police Officer
BasePay                     92259.07
OvertimePay                  3291.92
OtherPay                     1964.36
Benefits                    32432.03
TotalPay                    97515.35
TotalPayBenefits           129947.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84721, dtype: object)
(84722, Id                                84723
EmployeeName        Alejandro  Espinosa
JobTitle                 Deputy Sheriff
BasePay                        92864.92
OvertimePay                      2177.6
OtherPay                         2970.8
Benefits                       31931.89
TotalPay                       98013.32
TotalPayBenefits              129945.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84722, dtype: object)
(84723, Id                                         84724
EmployeeName                     Mark A Finnegan
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86911.36
OvertimePay                               2407.8
OtherPay                                 8081.29
Benefits                                32541.84
TotalPay                                97400.45
TotalPayBenefits                       129942.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84723, dtype: object)
(84724, Id                                   84725
EmployeeName               Alma S Schulman
JobTitle            Patient Care Assistant
BasePay                           68367.25
OvertimePay                       34117.27
OtherPay                             250.0
Benefits                          27206.31
TotalPay                         102734.52
TotalPayBenefits                 129940.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84724, dtype: object)
(84725, Id                                      84726
EmployeeName           Cassandra C McGoldrick
JobTitle            Pr Administrative Analyst
BasePay                              97824.87
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             32105.01
TotalPay                             97824.87
TotalPayBenefits                    129929.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84725, dtype: object)
(84726, Id                          84727
EmployeeName        Edmund J Cota
JobTitle             Lieutenant 3
BasePay                    6062.0
OvertimePay                   0.0
OtherPay                122238.44
Benefits                  1601.95
TotalPay                128300.44
TotalPayBenefits        129902.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84726, dtype: object)
(84727, Id                               84728
EmployeeName               Nathan K Ng
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                    3175.31
OtherPay                       2851.35
Benefits                      32424.27
TotalPay                      97475.66
TotalPayBenefits             129899.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84727, dtype: object)
(84728, Id                                84729
EmployeeName                 Thang  Ton
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                    19391.81
OtherPay                         1501.3
Benefits                       29722.74
TotalPay                      100176.61
TotalPayBenefits              129899.35
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84728, dtype: object)
(84729, Id                                          84730
EmployeeName                       Ian D Macaulay
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.05
OvertimePay                               4748.22
OtherPay                                  6489.45
Benefits                                 32132.38
TotalPay                                 97763.72
TotalPayBenefits                         129896.1
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84729, dtype: object)
(84730, Id                                 84731
EmployeeName        Marie H Demonteverde
JobTitle                   Special Nurse
BasePay                        106301.21
OvertimePay                      7190.58
OtherPay                        16402.37
Benefits                             0.0
TotalPay                       129894.16
TotalPayBenefits               129894.16
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84730, dtype: object)
(84731, Id                                          84732
EmployeeName                       Joseph M Smith
JobTitle            Airport Operations Supervisor
BasePay                                  90394.16
OvertimePay                               14847.3
OtherPay                                  4552.07
Benefits                                 20099.35
TotalPay                                109793.53
TotalPayBenefits                        129892.88
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84731, dtype: object)
(84732, Id                               84733
EmployeeName        Frank E Busalacchi
JobTitle                Police Officer
BasePay                       92259.04
OvertimePay                     597.95
OtherPay                       4632.58
Benefits                      32400.88
TotalPay                      97489.57
TotalPayBenefits             129890.45
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84732, dtype: object)
(84733, Id                                          84734
EmployeeName                      Naomi  Steinway
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.05
TotalPayBenefits                        129887.52
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84733, dtype: object)
(84734, Id                                          84735
EmployeeName                        Bayard P Fong
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.04
TotalPayBenefits                        129887.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84734, dtype: object)
(84735, Id                                          84736
EmployeeName                   Finbarr JH  Jewell
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.04
TotalPayBenefits                        129887.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84735, dtype: object)
(84736, Id                                          84737
EmployeeName                           Mindy  Lee
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.03
TotalPayBenefits                         129887.5
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84736, dtype: object)
(84737, Id                                          84738
EmployeeName                      James R Soncuya
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.03
TotalPayBenefits                         129887.5
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84737, dtype: object)
(84738, Id                                          84739
EmployeeName                   Spencer N Charlton
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.02
TotalPayBenefits                        129887.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84738, dtype: object)
(84739, Id                                          84740
EmployeeName                   Selormey E Dzikunu
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.01
TotalPayBenefits                        129887.48
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84739, dtype: object)
(84740, Id                                          84741
EmployeeName                  Hadas  Rivera-Weiss
JobTitle            Contract Compliance Officer 1
BasePay                                  96923.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32964.47
TotalPay                                 96923.01
TotalPayBenefits                        129887.48
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84740, dtype: object)
(84741, Id                                         84742
EmployeeName                     Mary Leong  Lam
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.05
OvertimePay                                  0.0
OtherPay                                  2088.0
Benefits                                32943.27
TotalPay                                96939.05
TotalPayBenefits                       129882.32
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84741, dtype: object)
(84742, Id                                         84743
EmployeeName                    Andreas  Schmitz
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                 94851.03
OvertimePay                                  0.0
OtherPay                                  2088.0
Benefits                                32940.77
TotalPay                                96939.03
TotalPayBenefits                        129879.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84742, dtype: object)
(84743, Id                                         84744
EmployeeName                     Robert J Brewer
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.55
OvertimePay                             17527.68
OtherPay                                 3022.79
Benefits                                30041.71
TotalPay                                99834.02
TotalPayBenefits                       129875.73
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84743, dtype: object)
(84744, Id                             84745
EmployeeName             Tony Y Wong
JobTitle            Transit Operator
BasePay                     70640.18
OvertimePay                 22051.96
OtherPay                     2436.44
Benefits                    34743.72
TotalPay                    95128.58
TotalPayBenefits            129872.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84744, dtype: object)
(84745, Id                               84746
EmployeeName          Lawrence M Brown
JobTitle            Transit Supervisor
BasePay                       92126.41
OvertimePay                    3467.42
OtherPay                       1780.59
Benefits                      32490.71
TotalPay                      97374.42
TotalPayBenefits             129865.13
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84745, dtype: object)
(84746, Id                             84747
EmployeeName               Vi K  Ngo
JobTitle            Transit Operator
BasePay                     69092.18
OvertimePay                 20709.58
OtherPay                     4554.78
Benefits                    35505.46
TotalPay                    94356.54
TotalPayBenefits            129862.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84746, dtype: object)
(84747, Id                             84748
EmployeeName          Ying Ying  Hui
JobTitle            Registered Nurse
BasePay                     90248.24
OvertimePay                  5707.24
OtherPay                     4343.46
Benefits                     29561.3
TotalPay                   100298.94
TotalPayBenefits           129860.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84747, dtype: object)
(84748, Id                                   84749
EmployeeName                    Judy N Liu
JobTitle            Deputy Court Clerk III
BasePay                           90227.54
OvertimePay                            0.0
OtherPay                            7335.0
Benefits                           32286.7
TotalPay                          97562.54
TotalPayBenefits                 129849.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84748, dtype: object)
(84749, Id                                         84750
EmployeeName                       Peihua  Liang
JobTitle            Sr Personal Property Auditor
BasePay                                  96384.6
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                32978.71
TotalPay                                 96864.6
TotalPayBenefits                       129843.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84749, dtype: object)
(84750, Id                             84751
EmployeeName         Jorge A Berrios
JobTitle            Transit Operator
BasePay                     68761.27
OvertimePay                 18555.83
OtherPay                     7362.95
Benefits                     35162.4
TotalPay                    94680.05
TotalPayBenefits           129842.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84750, dtype: object)
(84751, Id                                84752
EmployeeName                   Ben  Lee
JobTitle            Automotive Mechanic
BasePay                         79277.7
OvertimePay                     3307.09
OtherPay                       14908.53
Benefits                       32345.08
TotalPay                       97493.32
TotalPayBenefits               129838.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84751, dtype: object)
(84752, Id                                    84753
EmployeeName          Saturnino R Dominguez
JobTitle            Electric Motor Repairer
BasePay                            82681.54
OvertimePay                        16388.91
OtherPay                              550.0
Benefits                           30217.65
TotalPay                           99620.45
TotalPayBenefits                   129838.1
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84752, dtype: object)
(84753, Id                                     84754
EmployeeName                  Frank W Barnes
JobTitle            Auto Machinist Asst Sprv
BasePay                             95531.53
OvertimePay                              0.0
OtherPay                              1348.3
Benefits                            32948.64
TotalPay                            96879.83
TotalPayBenefits                   129828.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84753, dtype: object)
(84754, Id                                           84755
EmployeeName                             Joey Y Wu
JobTitle            Electrical Transit System Mech
BasePay                                   82674.91
OvertimePay                                6978.85
OtherPay                                   8417.43
Benefits                                  31740.29
TotalPay                                  98071.19
TotalPayBenefits                         129811.48
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84754, dtype: object)
(84755, Id                                   84756
EmployeeName               Lori A Peterson
JobTitle            Airport Safety Officer
BasePay                           79975.05
OvertimePay                       20200.57
OtherPay                             832.1
Benefits                          28801.33
TotalPay                         101007.72
TotalPayBenefits                 129809.05
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84755, dtype: object)
(84756, Id                                       84757
EmployeeName                   Christine Y Lau
JobTitle            Protective Services Worker
BasePay                               94876.35
OvertimePay                                0.0
OtherPay                                2025.6
Benefits                              32897.58
TotalPay                              96901.95
TotalPayBenefits                     129799.53
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84756, dtype: object)
(84757, Id                                         84758
EmployeeName                      Diane  Portnoy
JobTitle            Health Program Coordinator 3
BasePay                                 96816.61
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32978.61
TotalPay                                96816.61
TotalPayBenefits                       129795.22
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84757, dtype: object)
(84758, Id                                     84759
EmployeeName                  Damien  Semien
JobTitle            Counselor, Juvenile Hall
BasePay                             66976.07
OvertimePay                         35410.87
OtherPay                             1138.64
Benefits                            26269.23
TotalPay                           103525.58
TotalPayBenefits                   129794.81
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84758, dtype: object)
(84759, Id                                       84760
EmployeeName              James Kenneth  Terry
JobTitle            Mental Hlth Treatment Spec
BasePay                               93825.91
OvertimePay                             3642.9
OtherPay                                   0.0
Benefits                              32323.54
TotalPay                              97468.81
TotalPayBenefits                     129792.35
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84759, dtype: object)
(84760, Id                                           84761
EmployeeName                           Albert W Ng
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                               13798.15
OtherPay                                    2670.0
Benefits                                  30636.93
TotalPay                                  99149.66
TotalPayBenefits                         129786.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84760, dtype: object)
(84761, Id                                       84762
EmployeeName                      Sabrina P Li
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                                1628.0
Benefits                              32920.38
TotalPay                              96857.07
TotalPayBenefits                     129777.45
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84761, dtype: object)
(84762, Id                            84763
EmployeeName        Derick J Dragon
JobTitle             Police Officer
BasePay                    92259.05
OvertimePay                 3188.76
OtherPay                    1889.61
Benefits                   32430.21
TotalPay                   97337.42
TotalPayBenefits          129767.63
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84762, dtype: object)
(84763, Id                           84764
EmployeeName           Jack G Nyce
JobTitle            Police Officer
BasePay                   93387.47
OvertimePay                 3110.8
OtherPay                   4586.16
Benefits                  28681.73
TotalPay                 101084.43
TotalPayBenefits         129766.16
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84763, dtype: object)
(84764, Id                                          84765
EmployeeName                        Ian  Fernando
JobTitle            Contract Compliance Officer 1
BasePay                                  96832.81
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  32932.7
TotalPay                                 96832.81
TotalPayBenefits                        129765.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84764, dtype: object)
(84765, Id                                84766
EmployeeName        Michael J Odonoghue
JobTitle            Stationary Engineer
BasePay                        75781.63
OvertimePay                     3806.66
OtherPay                       20867.26
Benefits                        29304.3
TotalPay                      100455.55
TotalPayBenefits              129759.85
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84765, dtype: object)
(84766, Id                           84767
EmployeeName         Pierre A Gray
JobTitle            Deputy Sheriff
BasePay                   92954.57
OvertimePay                1731.76
OtherPay                   3427.14
Benefits                  31642.81
TotalPay                  98113.47
TotalPayBenefits         129756.28
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84766, dtype: object)
(84767, Id                                     84768
EmployeeName                    Arleen M Lum
JobTitle            Senior Personnel Analyst
BasePay                             97734.86
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32019.47
TotalPay                            97734.86
TotalPayBenefits                   129754.33
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84767, dtype: object)
(84768, Id                             84769
EmployeeName        Jocelyn L Weiler
JobTitle               Special Nurse
BasePay                    116542.34
OvertimePay                  8711.08
OtherPay                     4498.45
Benefits                         0.0
TotalPay                   129751.87
TotalPayBenefits           129751.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84768, dtype: object)
(84769, Id                             84770
EmployeeName        Wilfredo A David
JobTitle                 Electrician
BasePay                      95276.0
OvertimePay                   698.32
OtherPay                       158.0
Benefits                    33614.84
TotalPay                    96132.32
TotalPayBenefits           129747.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84769, dtype: object)
(84770, Id                                84771
EmployeeName              David H Leeds
JobTitle            Stationary Engineer
BasePay                         78184.2
OvertimePay                      8560.9
OtherPay                       11575.93
Benefits                       31426.11
TotalPay                       98321.03
TotalPayBenefits              129747.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84770, dtype: object)
(84771, Id                               84772
EmployeeName         Dorit P Betschart
JobTitle            Nurse Practitioner
BasePay                       99584.71
OvertimePay                        0.0
OtherPay                         250.0
Benefits                      29910.12
TotalPay                      99834.71
TotalPayBenefits             129744.83
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84771, dtype: object)
(84772, Id                              84773
EmployeeName         Rafaela  Mendoza
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  27504.56
OtherPay                      5575.53
Benefits                     28271.62
TotalPay                    101471.09
TotalPayBenefits            129742.71
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84772, dtype: object)
(84773, Id                                          84774
EmployeeName                    Laurel B Barsotti
JobTitle            Senior Administrative Analyst
BasePay                                  96776.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32963.96
TotalPay                                 96776.03
TotalPayBenefits                        129739.99
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84773, dtype: object)
(84774, Id                                           84775
EmployeeName                  Vladimir  Vasilevski
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                               16287.16
OtherPay                                     550.0
Benefits                                  30217.65
TotalPay                                  99518.67
TotalPayBenefits                         129736.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84774, dtype: object)
(84775, Id                                      84776
EmployeeName                    Deborah K Lim
JobTitle            Attorney (Civil/Criminal)
BasePay                             100223.01
OvertimePay                               0.0
OtherPay                                625.0
Benefits                             28886.82
TotalPay                            100848.01
TotalPayBenefits                    129734.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84775, dtype: object)
(84776, Id                              84777
EmployeeName        Daniel R White Jr
JobTitle               Deputy Sheriff
BasePay                      87168.94
OvertimePay                   4952.47
OtherPay                      6427.65
Benefits                     31175.55
TotalPay                     98549.06
TotalPayBenefits            129724.61
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84776, dtype: object)
(84777, Id                                           84778
EmployeeName                      George A Almuete
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                                4677.72
OtherPay                                   9447.49
Benefits                                  32913.29
TotalPay                                  96800.11
TotalPayBenefits                          129713.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84777, dtype: object)
(84778, Id                           84779
EmployeeName        Kenneth  Esson
JobTitle            Police Officer
BasePay                   92259.06
OvertimePay                2079.57
OtherPay                   2970.79
Benefits                  32399.11
TotalPay                  97309.42
TotalPayBenefits         129708.53
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84778, dtype: object)
(84779, Id                          84780
EmployeeName          Dan P Kehoe
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               5055.83
OtherPay                  11749.2
Benefits                 32849.87
TotalPay                 96857.03
TotalPayBenefits         129706.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84779, dtype: object)
(84780, Id                                   84781
EmployeeName               Alex M Esguerra
JobTitle            Airport Safety Officer
BasePay                            86373.0
OvertimePay                       11579.43
OtherPay                             787.2
Benefits                          30967.01
TotalPay                          98739.63
TotalPayBenefits                 129706.64
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84780, dtype: object)
(84781, Id                             84782
EmployeeName          Kenneth W Wong
JobTitle            Transit Operator
BasePay                     68908.82
OvertimePay                 24192.67
OtherPay                     2627.23
Benefits                    33976.71
TotalPay                    95728.72
TotalPayBenefits           129705.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84781, dtype: object)
(84782, Id                          84783
EmployeeName          Ron N Perez
JobTitle              Electrician
BasePay                  95277.39
OvertimePay                266.03
OtherPay                  1339.65
Benefits                 32822.12
TotalPay                 96883.07
TotalPayBenefits        129705.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84782, dtype: object)
(84783, Id                             84784
EmployeeName        Matthew  Valbusa
JobTitle                 Pile Worker
BasePay                     90229.04
OvertimePay                  3711.69
OtherPay                      2640.0
Benefits                    33117.68
TotalPay                    96580.73
TotalPayBenefits           129698.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84783, dtype: object)
(84784, Id                                       84785
EmployeeName                      Judy L Penso
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                            1487.95
OtherPay                                379.16
Benefits                              32601.04
TotalPay                              97096.16
TotalPayBenefits                      129697.2
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84784, dtype: object)
(84785, Id                                       84786
EmployeeName                      Melinda  Tan
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                               1529.88
Benefits                              32938.15
TotalPay                              96758.89
TotalPayBenefits                     129697.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84785, dtype: object)
(84786, Id                             84787
EmployeeName        Diane  O'Donohue
JobTitle              Biologist I/II
BasePay                     95961.54
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33732.48
TotalPay                    95961.54
TotalPayBenefits           129694.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84786, dtype: object)
(84787, Id                           84788
EmployeeName        Queenie  Cheng
JobTitle            Accountant III
BasePay                   95961.53
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33732.48
TotalPay                  95961.53
TotalPayBenefits         129694.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84787, dtype: object)
(84788, Id                                  84789
EmployeeName        Corinna A Neustaetter
JobTitle               Nurse Practitioner
BasePay                          96405.47
OvertimePay                       2817.38
OtherPay                          1590.39
Benefits                         28880.43
TotalPay                        100813.24
TotalPayBenefits                129693.67
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84788, dtype: object)
(84789, Id                             84790
EmployeeName        Leigh N Escobedo
JobTitle            Registered Nurse
BasePay                     97670.49
OvertimePay                      0.0
OtherPay                       250.0
Benefits                    31771.32
TotalPay                    97920.49
TotalPayBenefits           129691.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84789, dtype: object)
(84790, Id                                 84791
EmployeeName        Jenjerome C Fernando
JobTitle                  Deputy Sheriff
BasePay                         85954.76
OvertimePay                      2734.93
OtherPay                        10551.41
Benefits                        30446.29
TotalPay                         99241.1
TotalPayBenefits               129687.39
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84790, dtype: object)
(84791, Id                           84792
EmployeeName         Ross M Duggan
JobTitle            Biologist I/II
BasePay                   95959.71
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33726.56
TotalPay                  95959.71
TotalPayBenefits         129686.27
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84791, dtype: object)
(84792, Id                                      84793
EmployeeName        Melissa Howard Whitehouse
JobTitle                    Mayoral Staff XII
BasePay                               89001.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             40681.33
TotalPay                              89001.5
TotalPayBenefits                    129682.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84792, dtype: object)
(84793, Id                                   84794
EmployeeName                Shannon L Bond
JobTitle            Public SafetyComm Disp
BasePay                            82864.2
OvertimePay                       10358.76
OtherPay                           4470.16
Benefits                           31977.6
TotalPay                          97693.12
TotalPayBenefits                 129670.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84793, dtype: object)
(84794, Id                           84795
EmployeeName            Danny  Lau
JobTitle            Assoc Engineer
BasePay                   95936.69
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  33727.95
TotalPay                  95936.69
TotalPayBenefits         129664.64
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84794, dtype: object)
(84795, Id                               84796
EmployeeName           Sherwin P Smith
JobTitle            Transit Supervisor
BasePay                        79277.8
OvertimePay                   17176.09
OtherPay                       3018.05
Benefits                      30192.26
TotalPay                      99471.94
TotalPayBenefits              129664.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84795, dtype: object)
(84796, Id                                         84797
EmployeeName                Christopher A DeBono
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 89285.63
OvertimePay                                  0.0
OtherPay                                  6691.4
Benefits                                33684.64
TotalPay                                95977.03
TotalPayBenefits                       129661.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84796, dtype: object)
(84797, Id                                84798
EmployeeName        Danny Chi Hong  Hui
JobTitle             Transit Supervisor
BasePay                        70407.88
OvertimePay                    24465.93
OtherPay                         3364.6
Benefits                       31422.63
TotalPay                       98238.41
TotalPayBenefits              129661.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84797, dtype: object)
(84798, Id                                       84799
EmployeeName                      Alan L Botts
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                                1520.0
Benefits                              32911.71
TotalPay                              96749.01
TotalPayBenefits                     129660.72
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84798, dtype: object)
(84799, Id                             84800
EmployeeName        Paul R Lozada Jr
JobTitle              Deputy Sheriff
BasePay                     90576.29
OvertimePay                   182.12
OtherPay                     6768.91
Benefits                    32128.98
TotalPay                    97527.32
TotalPayBenefits            129656.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84799, dtype: object)
(84800, Id                                       84801
EmployeeName            Raena N McBride-Orozco
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                1520.0
Benefits                              32901.36
TotalPay                              96749.04
TotalPayBenefits                      129650.4
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84800, dtype: object)
(84801, Id                               84802
EmployeeName              Fabian  Herd
JobTitle            Transit Supervisor
BasePay                       89272.43
OvertimePay                     4202.1
OtherPay                        4212.3
Benefits                      31959.17
TotalPay                      97686.83
TotalPayBenefits              129646.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84801, dtype: object)
(84802, Id                             84803
EmployeeName         Yong Shen  Chen
JobTitle            Transit Operator
BasePay                     69158.25
OvertimePay                 25057.04
OtherPay                     1628.66
Benefits                     33798.9
TotalPay                    95843.95
TotalPayBenefits           129642.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84802, dtype: object)
(84803, Id                               84804
EmployeeName        Jennifer A McGaugh
JobTitle              Registered Nurse
BasePay                       95521.08
OvertimePay                        0.0
OtherPay                       2891.28
Benefits                      31226.06
TotalPay                      98412.36
TotalPayBenefits             129638.42
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84803, dtype: object)
(84804, Id                                       84805
EmployeeName                   Maria I Sanchez
JobTitle            Protective Services Worker
BasePay                               95229.02
OvertimePay                                0.0
OtherPay                                1500.0
Benefits                              32908.06
TotalPay                              96729.02
TotalPayBenefits                     129637.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84804, dtype: object)
(84805, Id                              84806
EmployeeName            Anita U Mopas
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                   32996.6
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     102285.6
TotalPayBenefits            129636.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84805, dtype: object)
(84806, Id                               84807
EmployeeName           Carlo O Gonzaga
JobTitle            Transit Supervisor
BasePay                       72751.29
OvertimePay                   19165.89
OtherPay                       4809.97
Benefits                      32893.42
TotalPay                      96727.15
TotalPayBenefits             129620.57
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84806, dtype: object)
(84807, Id                                     84808
EmployeeName                Irving  McKnight
JobTitle            Counselor, Juvenile Hall
BasePay                             67453.32
OvertimePay                          30919.6
OtherPay                             4215.55
Benefits                            27031.47
TotalPay                           102588.47
TotalPayBenefits                   129619.94
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84807, dtype: object)
(84808, Id                                   84809
EmployeeName                  Sharon  Wong
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                         4180.2
OtherPay                            5555.4
Benefits                          32185.53
TotalPay                           97431.6
TotalPayBenefits                 129617.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84808, dtype: object)
(84809, Id                                          84810
EmployeeName                    James  Pilkington
JobTitle            Statnry Eng Water Treat Plant
BasePay                                   86365.7
OvertimePay                               4864.33
OtherPay                                  5520.43
Benefits                                 32866.47
TotalPay                                 96750.46
TotalPayBenefits                        129616.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84809, dtype: object)
(84810, Id                                         84811
EmployeeName                       Barbara  Khuu
JobTitle            Hospital Elig Wrk Supervisor
BasePay                                 91692.04
OvertimePay                              4542.16
OtherPay                                 1267.07
Benefits                                 32111.8
TotalPay                                97501.27
TotalPayBenefits                       129613.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84810, dtype: object)
(84811, Id                                   84812
EmployeeName        Nicholas L Evangelista
JobTitle            Airport Safety Officer
BasePay                           84503.41
OvertimePay                        8659.41
OtherPay                           4163.19
Benefits                          32281.99
TotalPay                          97326.01
TotalPayBenefits                  129608.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84811, dtype: object)
(84812, Id                                         84813
EmployeeName                   Salvador G Araujo
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.51
OvertimePay                             17258.48
OtherPay                                 3022.74
Benefits                                 30041.7
TotalPay                                99564.73
TotalPayBenefits                       129606.43
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84812, dtype: object)
(84813, Id                                   84814
EmployeeName              Brigida N Reside
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       26741.48
OtherPay                           6101.23
Benefits                          28371.38
TotalPay                         101233.71
TotalPayBenefits                 129605.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84813, dtype: object)
(84814, Id                           84815
EmployeeName        Brian M Conway
JobTitle            Police Officer
BasePay                   92259.05
OvertimePay                 682.07
OtherPay                   4249.51
Benefits                  32413.32
TotalPay                  97190.63
TotalPayBenefits         129603.95
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84814, dtype: object)
(84815, Id                             84816
EmployeeName             Kevin  Wong
JobTitle            Transit Operator
BasePay                     70378.94
OvertimePay                 20253.89
OtherPay                     3957.14
Benefits                    35013.91
TotalPay                    94589.97
TotalPayBenefits           129603.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84815, dtype: object)
(84816, Id                                   84817
EmployeeName                Ashley A Ahern
JobTitle            Public SafetyComm Disp
BasePay                            87127.6
OvertimePay                        4718.52
OtherPay                           5738.04
Benefits                          32010.72
TotalPay                          97584.16
TotalPayBenefits                 129594.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84816, dtype: object)
(84817, Id                                   84818
EmployeeName              Azalia  Villares
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       31080.15
OtherPay                            2458.0
Benefits                          27665.58
TotalPay                         101929.15
TotalPayBenefits                 129594.73
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84817, dtype: object)
(84818, Id                                       84819
EmployeeName              Horencio  Reynoso Jr
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                1460.0
Benefits                              32901.41
TotalPay                              96689.03
TotalPayBenefits                     129590.44
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84818, dtype: object)
(84819, Id                              84820
EmployeeName        Timothy A O'Brien
JobTitle                    Curator 4
BasePay                      96687.03
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32898.45
TotalPay                     96687.03
TotalPayBenefits            129585.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84819, dtype: object)
(84820, Id                                   84821
EmployeeName        Christopher B Clements
JobTitle                    Deputy Sheriff
BasePay                           92848.49
OvertimePay                        2184.12
OtherPay                           2969.05
Benefits                          31579.17
TotalPay                          98001.66
TotalPayBenefits                 129580.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84820, dtype: object)
(84821, Id                              84822
EmployeeName        Jeffery S Bettiga
JobTitle                  Pile Worker
BasePay                       89871.7
OvertimePay                   7236.23
OtherPay                        820.0
Benefits                     31649.75
TotalPay                     97927.93
TotalPayBenefits            129577.68
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84821, dtype: object)
(84822, Id                                         84823
EmployeeName                   Sylvia A Tiongson
JobTitle            Employment & Training Spec 5
BasePay                                 96649.01
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32925.49
TotalPay                                96649.01
TotalPayBenefits                        129574.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84822, dtype: object)
(84823, Id                               84824
EmployeeName          Leinaala P White
JobTitle            Transit Supervisor
BasePay                       89227.13
OvertimePay                    2921.29
OtherPay                       5275.65
Benefits                      32132.29
TotalPay                      97424.07
TotalPayBenefits             129556.36
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84823, dtype: object)
(84824, Id                                        84825
EmployeeName                  Cesar A Trigueros
JobTitle            Electronic Maintenance Tech
BasePay                                96548.99
OvertimePay                             1363.56
OtherPay                                    0.0
Benefits                               31642.51
TotalPay                               97912.55
TotalPayBenefits                      129555.06
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84824, dtype: object)
(84825, Id                             84826
EmployeeName            Jason S Kong
JobTitle            Transit Operator
BasePay                     69115.29
OvertimePay                 21442.92
OtherPay                     3705.95
Benefits                    35289.23
TotalPay                    94264.16
TotalPayBenefits           129553.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84825, dtype: object)
(84826, Id                                        84827
EmployeeName                  Anthony  Pastrano
JobTitle            Automotive Machinist Sprv 1
BasePay                                94652.95
OvertimePay                             3178.42
OtherPay                                  550.0
Benefits                               31159.74
TotalPay                               98381.37
TotalPayBenefits                      129541.11
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84826, dtype: object)
(84827, Id                                    84828
EmployeeName        Kristin H Schildwachter
JobTitle                          Planner 3
BasePay                             96282.4
OvertimePay                             0.0
OtherPay                             516.51
Benefits                           32735.58
TotalPay                           96798.91
TotalPayBenefits                  129534.49
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84827, dtype: object)
(84828, Id                               84829
EmployeeName        Maw Maw  Thein Tun
JobTitle                 Accountant IV
BasePay                       96578.52
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       32955.0
TotalPay                      96578.52
TotalPayBenefits             129533.52
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84828, dtype: object)
(84829, Id                            84830
EmployeeName        Stuart M Morrow
JobTitle              Special Nurse
BasePay                    122952.0
OvertimePay                 1019.62
OtherPay                    4278.32
Benefits                    1282.49
TotalPay                  128249.94
TotalPayBenefits          129532.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84829, dtype: object)
(84830, Id                                84831
EmployeeName             Darryl R Leung
JobTitle            Automotive Mechanic
BasePay                         78985.4
OvertimePay                     6194.23
OtherPay                        12588.2
Benefits                        31763.6
TotalPay                       97767.83
TotalPayBenefits              129531.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84830, dtype: object)
(84831, Id                          84832
EmployeeName          Henry  Deng
JobTitle              Electrician
BasePay                   95276.0
OvertimePay                   0.0
OtherPay                   1370.0
Benefits                  32881.3
TotalPay                  96646.0
TotalPayBenefits         129527.3
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84831, dtype: object)
(84832, Id                                           84833
EmployeeName                        Puneet K Kumta
JobTitle            Protective Services Supervisor
BasePay                                   97703.98
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31821.71
TotalPay                                  97703.98
TotalPayBenefits                         129525.69
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84832, dtype: object)
(84833, Id                               84834
EmployeeName        Festus  Onyejiekwe
JobTitle              Transit Operator
BasePay                       69100.44
OvertimePay                   19506.27
OtherPay                       5967.51
Benefits                      34949.39
TotalPay                      94574.22
TotalPayBenefits             129523.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84833, dtype: object)
(84834, Id                                84835
EmployeeName        Edison  Cayabyab Jr
JobTitle                 Assoc Engineer
BasePay                        97397.64
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32122.94
TotalPay                       97397.64
TotalPayBenefits              129520.58
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84834, dtype: object)
(84835, Id                                       84836
EmployeeName                      Cynthia L Li
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                1400.0
Benefits                              32888.01
TotalPay                              96629.05
TotalPayBenefits                     129517.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84835, dtype: object)
(84836, Id                              84837
EmployeeName          Pacita G Milano
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  26899.05
OtherPay                      5902.22
Benefits                     28321.87
TotalPay                    101192.27
TotalPayBenefits            129514.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84836, dtype: object)
(84837, Id                                          84838
EmployeeName                       Joseph G Green
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86157.16
OvertimePay                               1358.34
OtherPay                                  8611.75
Benefits                                 33378.07
TotalPay                                 96127.25
TotalPayBenefits                        129505.32
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84837, dtype: object)
(84838, Id                             84839
EmployeeName         Frederick  Ward
JobTitle            Transit Operator
BasePay                     67836.97
OvertimePay                 28514.64
OtherPay                      330.65
Benefits                    32821.68
TotalPay                    96682.26
TotalPayBenefits           129503.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84838, dtype: object)
(84839, Id                             84840
EmployeeName        Farrokh C Hariri
JobTitle                   Asst Engr
BasePay                     96754.94
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     32745.5
TotalPay                    96754.94
TotalPayBenefits           129500.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84839, dtype: object)
(84840, Id                             84841
EmployeeName             Gina  Limon
JobTitle            Registered Nurse
BasePay                     94904.44
OvertimePay                  2211.44
OtherPay                     1278.85
Benefits                     31105.3
TotalPay                    98394.73
TotalPayBenefits           129500.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84840, dtype: object)
(84841, Id                               84842
EmployeeName          Franklin V Dalog
JobTitle            Transit Supervisor
BasePay                        78678.6
OvertimePay                   16880.16
OtherPay                       3795.81
Benefits                      30144.56
TotalPay                      99354.57
TotalPayBenefits             129499.13
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84841, dtype: object)
(84842, Id                              84843
EmployeeName        Johnny E McDowell
JobTitle             Transit Operator
BasePay                      68566.09
OvertimePay                  27044.71
OtherPay                        623.2
Benefits                      33263.2
TotalPay                      96234.0
TotalPayBenefits             129497.2
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84842, dtype: object)
(84843, Id                                84844
EmployeeName           Nelson B Liwanag
JobTitle            Stationary Engineer
BasePay                         78662.7
OvertimePay                     4852.29
OtherPay                       13957.86
Benefits                       32020.28
TotalPay                       97472.85
TotalPayBenefits              129493.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84843, dtype: object)
(84844, Id                                           84845
EmployeeName                        Marcelo E Ysip
JobTitle            Electrical Transit System Mech
BasePay                                    82678.2
OvertimePay                               13261.48
OtherPay                                    2894.1
Benefits                                  30651.06
TotalPay                                  98833.78
TotalPayBenefits                         129484.84
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84844, dtype: object)
(84845, Id                                      84846
EmployeeName                 Lloyd C Goldberg
JobTitle            Captain, Fire Suppression
BasePay                              16928.12
OvertimePay                               0.0
OtherPay                            107249.78
Benefits                              5297.37
TotalPay                             124177.9
TotalPayBenefits                    129475.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84845, dtype: object)
(84846, Id                                       84847
EmployeeName                   Jennifer  Leung
JobTitle            IS Business Analyst-Senior
BasePay                               97264.98
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32206.16
TotalPay                              97264.98
TotalPayBenefits                     129471.14
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84846, dtype: object)
(84847, Id                                         84848
EmployeeName                    Kyle D Patterson
JobTitle            Perf Analyst III Project Mgr
BasePay                                 95717.29
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33752.02
TotalPay                                95717.29
TotalPayBenefits                       129469.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84847, dtype: object)
(84848, Id                                      84849
EmployeeName               Jose C Fajilagutan
JobTitle            Automotive Service Worker
BasePay                              64312.22
OvertimePay                           21565.8
OtherPay                             14385.25
Benefits                              29201.7
TotalPay                            100263.27
TotalPayBenefits                    129464.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84848, dtype: object)
(84849, Id                                84850
EmployeeName                  Greg  Won
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     4728.97
OtherPay                       13382.93
Benefits                       32060.92
TotalPay                        97395.4
TotalPayBenefits              129456.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84849, dtype: object)
(84850, Id                                       84851
EmployeeName                     Regan N Young
JobTitle            Traffic Signal Electrician
BasePay                               94800.69
OvertimePay                            7943.77
OtherPay                                  10.0
Benefits                              26695.68
TotalPay                             102754.46
TotalPayBenefits                     129450.14
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84850, dtype: object)
(84851, Id                                       84852
EmployeeName                  Alexander E Wade
JobTitle            Protective Services Worker
BasePay                               95140.88
OvertimePay                                0.0
OtherPay                                1440.0
Benefits                              32863.33
TotalPay                              96580.88
TotalPayBenefits                     129444.21
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84851, dtype: object)
(84852, Id                            84853
EmployeeName        Alexandre  Miot
JobTitle             Assoc Engineer
BasePay                    95733.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33708.69
TotalPay                   95733.05
TotalPayBenefits          129441.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84852, dtype: object)
(84853, Id                                         84854
EmployeeName                      Judith F Dispo
JobTitle            Hospital Elig Wrk Supervisor
BasePay                                 91692.03
OvertimePay                              5667.08
OtherPay                                   175.0
Benefits                                31898.11
TotalPay                                97534.11
TotalPayBenefits                       129432.22
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84853, dtype: object)
(84854, Id                                        84855
EmployeeName                Veronica L Williams
JobTitle            Station Agent, Muni Railway
BasePay                                 80379.0
OvertimePay                            13288.47
OtherPay                                5125.87
Benefits                               30634.45
TotalPay                               98793.34
TotalPayBenefits                      129427.79
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84854, dtype: object)
(84855, Id                           84856
EmployeeName         Otha L Cotton
JobTitle            Deputy Sheriff
BasePay                   92882.26
OvertimePay                  18.52
OtherPay                   4657.38
Benefits                   31860.9
TotalPay                  97558.16
TotalPayBenefits         129419.06
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84855, dtype: object)
(84856, Id                                 84857
EmployeeName                Toby S Dyner
JobTitle            Physician Specialist
BasePay                         99286.77
OvertimePay                          0.0
OtherPay                          4050.0
Benefits                        26071.36
TotalPay                       103336.77
TotalPayBenefits               129408.13
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84856, dtype: object)
(84857, Id                                         84858
EmployeeName                      Eleanor N Soto
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.01
OvertimePay                                  0.0
OtherPay                                 1693.27
Benefits                                32863.49
TotalPay                                96544.28
TotalPayBenefits                       129407.77
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84857, dtype: object)
(84858, Id                                          84859
EmployeeName                         John J Clark
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.02
OvertimePay                               2337.94
OtherPay                                  7276.83
Benefits                                 33261.69
TotalPay                                 96140.79
TotalPayBenefits                        129402.48
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84858, dtype: object)
(84859, Id                                         84860
EmployeeName                     Darin L Fragoza
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 87260.09
OvertimePay                              1408.02
OtherPay                                 8433.18
Benefits                                32293.51
TotalPay                                97101.29
TotalPayBenefits                        129394.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84859, dtype: object)
(84860, Id                                     84861
EmployeeName                 Donna J Baluyot
JobTitle            Senior Personnel Analyst
BasePay                             96477.47
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32916.67
TotalPay                            96477.47
TotalPayBenefits                   129394.14
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84860, dtype: object)
(84861, Id                                   84862
EmployeeName                Michael J Chew
JobTitle            Airport Safety Officer
BasePay                           86373.01
OvertimePay                        6429.42
OtherPay                            4012.7
Benefits                          32571.09
TotalPay                          96815.13
TotalPayBenefits                 129386.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84861, dtype: object)
(84862, Id                                       84863
EmployeeName                       Jesse I Dan
JobTitle            Utility Plumber Apprentice
BasePay                               75659.72
OvertimePay                           19812.28
OtherPay                               8627.72
Benefits                              25286.26
TotalPay                             104099.72
TotalPayBenefits                     129385.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84862, dtype: object)
(84863, Id                                          84864
EmployeeName                    Mario  Montoya-Jr
JobTitle            Street Environ Svcs Oprs Supv
BasePay                                   95002.6
OvertimePay                                420.36
OtherPay                                  1165.57
Benefits                                 32786.07
TotalPay                                 96588.53
TotalPayBenefits                         129374.6
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84863, dtype: object)
(84864, Id                                      84865
EmployeeName                     Guozhen J Li
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          24605.52
OtherPay                               2458.0
Benefits                              28700.5
TotalPay                            100665.52
TotalPayBenefits                    129366.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84864, dtype: object)
(84865, Id                                84866
EmployeeName              Larry D Coate
JobTitle            IS Business Analyst
BasePay                        94694.52
OvertimePay                         0.0
OtherPay                         1800.0
Benefits                       32868.77
TotalPay                       96494.52
TotalPayBenefits              129363.29
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84865, dtype: object)
(84866, Id                                           84867
EmployeeName                        Sau Yuen  Chin
JobTitle            Electrical Transit System Mech
BasePay                                   82678.22
OvertimePay                               13408.33
OtherPay                                    2644.1
Benefits                                  30620.46
TotalPay                                  98730.65
TotalPayBenefits                         129351.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84866, dtype: object)
(84867, Id                                        84868
EmployeeName                   Stanley M Yantis
JobTitle            Senior Physician Specialist
BasePay                                97715.12
OvertimePay                                 0.0
OtherPay                                 4885.8
Benefits                                26749.2
TotalPay                              102600.92
TotalPayBenefits                      129350.12
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84867, dtype: object)
(84868, Id                                      84869
EmployeeName               Cesar R Cano-Rodas
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                          27328.97
OtherPay                              9424.18
Benefits                             28271.06
TotalPay                            101070.15
TotalPayBenefits                    129341.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84868, dtype: object)
(84869, Id                                84870
EmployeeName           Wilfredo M Casas
JobTitle            Stationary Engineer
BasePay                         78664.8
OvertimePay                      4526.3
OtherPay                       14108.79
Benefits                       32039.78
TotalPay                       97299.89
TotalPayBenefits              129339.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84869, dtype: object)
(84870, Id                                           84871
EmployeeName                         Susanne  Zago
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    87253.5
OvertimePay                                    0.0
OtherPay                                    9663.4
Benefits                                  32418.68
TotalPay                                   96916.9
TotalPayBenefits                         129335.58
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84870, dtype: object)
(84871, Id                                          84872
EmployeeName                        Jeannie Q Dam
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               13506.7
OtherPay                                   2068.0
Benefits                                  30597.0
TotalPay                                  98734.7
TotalPayBenefits                         129331.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84871, dtype: object)
(84872, Id                                     84873
EmployeeName             Tricia M Hutcherson
JobTitle            Commercial Div Asst Sprv
BasePay                              89365.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39961.58
TotalPay                             89365.0
TotalPayBenefits                   129326.58
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84872, dtype: object)
(84873, Id                                          84874
EmployeeName                          Carl G Erie
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.01
OvertimePay                               1934.13
OtherPay                                  7536.61
Benefits                                  33315.6
TotalPay                                 95996.75
TotalPayBenefits                        129312.35
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84873, dtype: object)
(84874, Id                                          84875
EmployeeName                        Donna  Mandel
JobTitle            Contract Compliance Officer 1
BasePay                                  95623.44
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  33680.1
TotalPay                                 95623.44
TotalPayBenefits                        129303.54
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84874, dtype: object)
(84875, Id                                84876
EmployeeName        Batiste  Collins Jr
JobTitle               Transit Operator
BasePay                        64848.95
OvertimePay                    27183.42
OtherPay                         4741.1
Benefits                        32527.2
TotalPay                       96773.47
TotalPayBenefits              129300.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84875, dtype: object)
(84876, Id                           84877
EmployeeName         Matthew S Hom
JobTitle            Police Officer
BasePay                   92259.06
OvertimePay                 2627.5
OtherPay                   1947.94
Benefits                  32465.52
TotalPay                   96834.5
TotalPayBenefits         129300.02
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84876, dtype: object)
(84877, Id                                      84878
EmployeeName                Beverly V Lashley
JobTitle            Architectural Associate 1
BasePay                               96693.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             32604.72
TotalPay                              96693.0
TotalPayBenefits                    129297.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84877, dtype: object)
(84878, Id                                     84879
EmployeeName              Christina R Pruett
JobTitle            Senior Personnel Analyst
BasePay                             95609.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33675.96
TotalPay                            95609.02
TotalPayBenefits                   129284.98
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84878, dtype: object)
(84879, Id                                          84880
EmployeeName                        Troy E Escort
JobTitle            Operating Engineer, Universal
BasePay                                  91953.21
OvertimePay                               5410.19
OtherPay                                      0.0
Benefits                                  31913.3
TotalPay                                  97363.4
TotalPayBenefits                         129276.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84879, dtype: object)
(84880, Id                                84881
EmployeeName          Timothy W Trickel
JobTitle            Automotive Mechanic
BasePay                         64376.2
OvertimePay                    30205.47
OtherPay                        7965.97
Benefits                        26726.7
TotalPay                      102547.64
TotalPayBenefits              129274.34
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84880, dtype: object)
(84881, Id                            84882
EmployeeName        John T Kyllonen
JobTitle                Electrician
BasePay                    89549.82
OvertimePay                 5523.65
OtherPay                     3020.9
Benefits                   31178.87
TotalPay                   98094.37
TotalPayBenefits          129273.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84881, dtype: object)
(84882, Id                                84883
EmployeeName             Angel B Zabala
JobTitle            Stationary Engineer
BasePay                         78467.7
OvertimePay                     4818.45
OtherPay                       13996.37
Benefits                       31986.04
TotalPay                       97282.52
TotalPayBenefits              129268.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84882, dtype: object)
(84883, Id                                        84884
EmployeeName                       Arun A Kumar
JobTitle            Communications Systems Tech
BasePay                                81510.32
OvertimePay                            22152.47
OtherPay                                    0.0
Benefits                               25602.75
TotalPay                              103662.79
TotalPayBenefits                      129265.54
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84883, dtype: object)
(84884, Id                             84885
EmployeeName                Don  Lai
JobTitle            Transit Operator
BasePay                      68422.6
OvertimePay                 23675.22
OtherPay                     3261.63
Benefits                    33893.29
TotalPay                    95359.45
TotalPayBenefits           129252.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84884, dtype: object)
(84885, Id                                         84886
EmployeeName                       Betsy S Cheng
JobTitle            Pr Fare Collections Receiver
BasePay                                  88965.0
OvertimePay                              1485.15
OtherPay                                  6234.3
Benefits                                32557.36
TotalPay                                96684.45
TotalPayBenefits                       129241.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84885, dtype: object)
(84886, Id                                     84887
EmployeeName                  Maria A Porras
JobTitle            Commercial Div Asst Sprv
BasePay                             89365.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39863.04
TotalPay                            89365.04
TotalPayBenefits                   129228.08
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84886, dtype: object)
(84887, Id                                     84888
EmployeeName                   Brian D Fitch
JobTitle            Commercial Div Asst Sprv
BasePay                              89365.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39863.04
TotalPay                             89365.0
TotalPayBenefits                   129228.04
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84887, dtype: object)
(84888, Id                              84889
EmployeeName           Pilar A Bustos
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  27419.99
OtherPay                      5213.38
Benefits                     28200.35
TotalPay                    101024.37
TotalPayBenefits            129224.72
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84888, dtype: object)
(84889, Id                                         84890
EmployeeName                   Micaela  Mariscal
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.06
OvertimePay                                  0.0
OtherPay                                  1540.0
Benefits                                32828.65
TotalPay                                96391.06
TotalPayBenefits                       129219.71
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84889, dtype: object)
(84890, Id                          84891
EmployeeName          Juan D Vega
JobTitle              Electrician
BasePay                   95276.0
OvertimePay                 65.87
OtherPay                   1048.0
Benefits                 32828.68
TotalPay                 96389.87
TotalPayBenefits        129218.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84890, dtype: object)
(84891, Id                                       84892
EmployeeName                  Liller B Jackson
JobTitle            Counselor, Log Cabin Ranch
BasePay                               72626.86
OvertimePay                           18925.23
OtherPay                               8026.59
Benefits                               29632.7
TotalPay                              99578.68
TotalPayBenefits                     129211.38
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84891, dtype: object)
(84892, Id                           84893
EmployeeName        Erik M Ziegler
JobTitle            Police Officer
BasePay                   92259.08
OvertimePay                 710.12
OtherPay                   3770.71
Benefits                  32470.71
TotalPay                  96739.91
TotalPayBenefits         129210.62
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84892, dtype: object)
(84893, Id                                        84894
EmployeeName              Alexander  Gorodetsky
JobTitle            Senior Physician Specialist
BasePay                                99899.83
OvertimePay                                 0.0
OtherPay                                2652.77
Benefits                               26655.21
TotalPay                               102552.6
TotalPayBenefits                      129207.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84893, dtype: object)
(84894, Id                                       84895
EmployeeName                  Patricia M Flynn
JobTitle            Protective Services Worker
BasePay                               95669.95
OvertimePay                                0.0
OtherPay                                 651.0
Benefits                              32882.82
TotalPay                              96320.95
TotalPayBenefits                     129203.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84894, dtype: object)
(84895, Id                                         84896
EmployeeName              Marlo K Simmons-Briggs
JobTitle            Health Program Coordinator 3
BasePay                                 97216.34
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31984.07
TotalPay                                97216.34
TotalPayBenefits                       129200.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84895, dtype: object)
(84896, Id                            84897
EmployeeName        Ceasar G Garcia
JobTitle             Deputy Sheriff
BasePay                    93349.77
OvertimePay                   49.33
OtherPay                    3916.75
Benefits                   31865.67
TotalPay                   97315.85
TotalPayBenefits          129181.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84896, dtype: object)
(84897, Id                           84898
EmployeeName        Ruben  Cabrera
JobTitle               Electrician
BasePay                   95100.35
OvertimePay                    0.0
OtherPay                    1262.0
Benefits                  32814.32
TotalPay                  96362.35
TotalPayBenefits         129176.67
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84897, dtype: object)
(84898, Id                                     84899
EmployeeName            Christine J Cayabyab
JobTitle            Senior Personnel Analyst
BasePay                             96299.35
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32868.41
TotalPay                            96299.35
TotalPayBenefits                   129167.76
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84898, dtype: object)
(84899, Id                                   84900
EmployeeName                 Ernalyn  Bura
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                           6525.06
Benefits                          32413.95
TotalPay                          96752.58
TotalPayBenefits                 129166.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84899, dtype: object)
(84900, Id                                   84901
EmployeeName               Jeanne  Delgado
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                           6525.05
Benefits                          32413.96
TotalPay                          96752.57
TotalPayBenefits                 129166.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84900, dtype: object)
(84901, Id                                   84902
EmployeeName               Theresa  Santos
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                           6525.05
Benefits                          32413.94
TotalPay                          96752.55
TotalPayBenefits                 129166.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84901, dtype: object)
(84902, Id                                   84903
EmployeeName                   David T Lee
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                           6525.05
Benefits                          32413.94
TotalPay                          96752.55
TotalPayBenefits                 129166.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84902, dtype: object)
(84903, Id                                         84904
EmployeeName                       Alvin R Hines
JobTitle            Building Services Technician
BasePay                                  90227.5
OvertimePay                                  0.0
OtherPay                                 6525.05
Benefits                                32413.94
TotalPay                                96752.55
TotalPayBenefits                       129166.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84903, dtype: object)
(84904, Id                                   84905
EmployeeName               Carlos  Barraza
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                           6525.05
Benefits                          32413.94
TotalPay                          96752.55
TotalPayBenefits                 129166.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84904, dtype: object)
(84905, Id                            84906
EmployeeName        Thomas L Church
JobTitle                Electrician
BasePay                    95276.03
OvertimePay                 1255.97
OtherPay                        0.0
Benefits                   32622.81
TotalPay                    96532.0
TotalPayBenefits          129154.81
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84905, dtype: object)
(84906, Id                                     84907
EmployeeName                  Rolando  Navia
JobTitle            Senior Fiscal Technician
BasePay                             90227.58
OvertimePay                              0.0
OtherPay                             6525.05
Benefits                            32401.99
TotalPay                            96752.63
TotalPayBenefits                   129154.62
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84906, dtype: object)
(84907, Id                                84908
EmployeeName          David D Smallwood
JobTitle            Stationary Engineer
BasePay                        77563.29
OvertimePay                    11203.61
OtherPay                        9587.55
Benefits                       30797.83
TotalPay                       98354.45
TotalPayBenefits              129152.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84907, dtype: object)
(84908, Id                             84909
EmployeeName            David  Shieh
JobTitle            Transit Operator
BasePay                     68870.19
OvertimePay                  25164.3
OtherPay                     1439.54
Benefits                    33677.63
TotalPay                    95474.03
TotalPayBenefits           129151.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84908, dtype: object)
(84909, Id                                      84910
EmployeeName                   Sylvia  Rivera
JobTitle            EMT/Paramedic/Firefighter
BasePay                              85525.55
OvertimePay                           2919.13
OtherPay                              8289.79
Benefits                              32410.1
TotalPay                             96734.47
TotalPayBenefits                    129144.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84909, dtype: object)
(84910, Id                                       84911
EmployeeName                Shirley  Ledbetter
JobTitle            Protective Services Worker
BasePay                               95229.08
OvertimePay                                0.0
OtherPay                                1080.0
Benefits                              32824.73
TotalPay                              96309.08
TotalPayBenefits                     129133.81
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84910, dtype: object)
(84911, Id                                   84912
EmployeeName                   Mona M Gray
JobTitle            Public SafetyComm Disp
BasePay                           83314.85
OvertimePay                        3478.62
OtherPay                          10686.99
Benefits                          31641.19
TotalPay                          97480.46
TotalPayBenefits                 129121.65
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84911, dtype: object)
(84912, Id                            84913
EmployeeName        Gabriel  Llamas
JobTitle                  Carpenter
BasePay                     84764.5
OvertimePay                11230.39
OtherPay                     2180.0
Benefits                   30945.65
TotalPay                   98174.89
TotalPayBenefits          129120.54
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84912, dtype: object)
(84913, Id                                   84914
EmployeeName              Frankie A Santos
JobTitle            Electrical Line Helper
BasePay                            78380.0
OvertimePay                       19507.28
OtherPay                             838.0
Benefits                          30393.06
TotalPay                          98725.28
TotalPayBenefits                 129118.34
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84913, dtype: object)
(84914, Id                                         84915
EmployeeName                      Citania S  Tam
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94801.38
OvertimePay                                  0.0
OtherPay                                  1500.0
Benefits                                32807.91
TotalPay                                96301.38
TotalPayBenefits                       129109.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84914, dtype: object)
(84915, Id                                   84916
EmployeeName              Rochelle F Veluz
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            6594.0
Benefits                           32286.7
TotalPay                          96821.51
TotalPayBenefits                 129108.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84915, dtype: object)
(84916, Id                                           84917
EmployeeName                        Robert A Grega
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                               13868.38
OtherPay                                    1230.0
Benefits                                  31327.91
TotalPay                                  97779.88
TotalPayBenefits                         129107.79
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84916, dtype: object)
(84917, Id                                   84918
EmployeeName               Rosita C Gatmen
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       26392.88
OtherPay                           5983.26
Benefits                          28339.79
TotalPay                         100767.14
TotalPayBenefits                 129106.93
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84917, dtype: object)
(84918, Id                                   84919
EmployeeName             Jasmine M Pomeroy
JobTitle            Public SafetyComm Disp
BasePay                            87452.4
OvertimePay                        1880.57
OtherPay                           7348.78
Benefits                          32417.85
TotalPay                          96681.75
TotalPayBenefits                  129099.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84918, dtype: object)
(84919, Id                                          84920
EmployeeName                     Ramona A Barrera
JobTitle            Program Specialist Supervisor
BasePay                                  96282.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32817.31
TotalPay                                 96282.05
TotalPayBenefits                        129099.36
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84919, dtype: object)
(84920, Id                                          84921
EmployeeName                      Vivian H Chiang
JobTitle            Program Specialist Supervisor
BasePay                                  96282.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32817.31
TotalPay                                 96282.02
TotalPayBenefits                        129099.33
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84920, dtype: object)
(84921, Id                                          84922
EmployeeName                       Ana E Osegueda
JobTitle            Program Specialist Supervisor
BasePay                                  96282.07
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32811.76
TotalPay                                 96282.07
TotalPayBenefits                        129093.83
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84921, dtype: object)
(84922, Id                                 84923
EmployeeName            Richard  Morales
JobTitle            Painter Supervisor 1
BasePay                          88501.0
OvertimePay                      9322.96
OtherPay                             0.0
Benefits                        31265.47
TotalPay                        97823.96
TotalPayBenefits               129089.43
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 84922, dtype: object)
(84923, Id                                         84924
EmployeeName                        Jose W Ramos
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                             19701.55
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                99535.05
TotalPayBenefits                       129071.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84923, dtype: object)
(84924, Id                                         84925
EmployeeName                       Jacob  Hansen
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.01
OvertimePay                              1979.49
OtherPay                                 7454.02
Benefits                                33106.27
TotalPay                                95963.52
TotalPayBenefits                       129069.79
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84924, dtype: object)
(84925, Id                                        84926
EmployeeName                       Rosa M Scott
JobTitle            Airport Communications Disp
BasePay                                81717.54
OvertimePay                            12183.62
OtherPay                                 4448.1
Benefits                               30716.86
TotalPay                               98349.26
TotalPayBenefits                      129066.12
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 84925, dtype: object)
(84926, Id                                84927
EmployeeName                Kyin H Fong
JobTitle            Automotive Mechanic
BasePay                         79277.7
OvertimePay                    11215.27
OtherPay                         7686.7
Benefits                       30880.95
TotalPay                       98179.67
TotalPayBenefits              129060.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84926, dtype: object)
(84927, Id                                           84928
EmployeeName                         Thomas E Dahl
JobTitle            Arborist Technician Supervisor
BasePay                                    89620.5
OvertimePay                                2390.03
OtherPay                                   5551.45
Benefits                                   31491.8
TotalPay                                  97561.98
TotalPayBenefits                         129053.78
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84927, dtype: object)
(84928, Id                             84929
EmployeeName           Joe L Pollard
JobTitle            Transit Operator
BasePay                      68506.8
OvertimePay                 19246.19
OtherPay                     6486.07
Benefits                     34799.2
TotalPay                    94239.06
TotalPayBenefits           129038.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84928, dtype: object)
(84929, Id                                84930
EmployeeName              George A Vail
JobTitle            Stationary Engineer
BasePay                        79806.81
OvertimePay                      7804.9
OtherPay                       10726.57
Benefits                       30685.14
TotalPay                       98338.28
TotalPayBenefits              129023.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84929, dtype: object)
(84930, Id                             84931
EmployeeName        Gloria J Jackson
JobTitle            Transit Operator
BasePay                     66871.64
OvertimePay                  29350.2
OtherPay                      404.88
Benefits                    32381.45
TotalPay                    96626.72
TotalPayBenefits           129008.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84930, dtype: object)
(84931, Id                                       84932
EmployeeName                    Sergio O Rodas
JobTitle            Protective Services Worker
BasePay                               94876.37
OvertimePay                                0.0
OtherPay                                1360.0
Benefits                              32756.65
TotalPay                              96236.37
TotalPayBenefits                     128993.02
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84931, dtype: object)
(84932, Id                                     84933
EmployeeName                Margaret M Walsh
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                          2327.01
OtherPay                                35.8
Benefits                            30476.06
TotalPay                            98515.32
TotalPayBenefits                   128991.38
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84932, dtype: object)
(84933, Id                                   84934
EmployeeName                Susan  Frazier
JobTitle            Public SafetyComm Disp
BasePay                            87371.2
OvertimePay                        2738.07
OtherPay                           6598.89
Benefits                          32276.23
TotalPay                          96708.16
TotalPayBenefits                 128984.39
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84933, dtype: object)
(84934, Id                             84935
EmployeeName         Danilo  Violago
JobTitle            Transit Operator
BasePay                     67156.19
OvertimePay                 27057.04
OtherPay                     1860.62
Benefits                     32905.9
TotalPay                    96073.85
TotalPayBenefits           128979.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84934, dtype: object)
(84935, Id                             84936
EmployeeName          Gordon  Miller
JobTitle            Transit Operator
BasePay                     68463.38
OvertimePay                  19763.8
OtherPay                     6075.46
Benefits                     34649.7
TotalPay                    94302.64
TotalPayBenefits           128952.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84935, dtype: object)
(84936, Id                                   84937
EmployeeName           Marjorie L Manzella
JobTitle            Deputy Court Clerk III
BasePay                           90165.74
OvertimePay                            0.0
OtherPay                           6397.14
Benefits                          32384.91
TotalPay                          96562.88
TotalPayBenefits                 128947.79
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84936, dtype: object)
(84937, Id                                   84938
EmployeeName                Brian L Kramer
JobTitle            Airport Safety Officer
BasePay                           78709.17
OvertimePay                       12194.71
OtherPay                           6507.82
Benefits                          31524.76
TotalPay                           97411.7
TotalPayBenefits                 128936.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84937, dtype: object)
(84938, Id                              84939
EmployeeName        Daniel J McDonald
JobTitle               Deputy Sheriff
BasePay                      86570.51
OvertimePay                   5401.27
OtherPay                      4576.69
Benefits                     32382.31
TotalPay                     96548.47
TotalPayBenefits            128930.78
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84938, dtype: object)
(84939, Id                                     84940
EmployeeName        Liane H Yamamoto-Orlando
JobTitle              Public SafetyComm Disp
BasePay                              81098.4
OvertimePay                          8288.08
OtherPay                             7331.12
Benefits                            32212.42
TotalPay                             96717.6
TotalPayBenefits                   128930.02
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84939, dtype: object)
(84940, Id                          84941
EmployeeName        George  Issac
JobTitle              Electrician
BasePay                   95276.0
OvertimePay               1026.07
OtherPay                      0.0
Benefits                 32622.81
TotalPay                 96302.07
TotalPayBenefits        128924.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84940, dtype: object)
(84941, Id                                      84942
EmployeeName               Michael E Clements
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74643.0
OvertimePay                          10938.14
OtherPay                              12702.0
Benefits                             30637.48
TotalPay                             98283.14
TotalPayBenefits                    128920.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84941, dtype: object)
(84942, Id                                     84943
EmployeeName                 Samuel C Nwigwe
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                          2287.89
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            98440.39
TotalPayBenefits                   128916.45
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84942, dtype: object)
(84943, Id                                84944
EmployeeName        Michael J Broussard
JobTitle                Utility Plumber
BasePay                        89019.12
OvertimePay                      102.18
OtherPay                        9014.08
Benefits                       30768.82
TotalPay                       98135.38
TotalPayBenefits               128904.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84943, dtype: object)
(84944, Id                                       84945
EmployeeName                    Duane  Vickrey
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                             1058.1
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              96287.14
TotalPayBenefits                     128899.15
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84944, dtype: object)
(84945, Id                                         84946
EmployeeName                   Mario A Peregrino
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.05
OvertimePay                              3488.93
OtherPay                                 6690.15
Benefits                                32187.01
TotalPay                                96709.13
TotalPayBenefits                       128896.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84945, dtype: object)
(84946, Id                              84947
EmployeeName        Daniel  Mundstock
JobTitle                  Electrician
BasePay                       95276.0
OvertimePay                    989.95
OtherPay                          0.0
Benefits                     32622.81
TotalPay                     96265.95
TotalPayBenefits            128888.76
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84946, dtype: object)
(84947, Id                                       84948
EmployeeName                Michelle K Trainer
JobTitle            IS Business Analyst-Senior
BasePay                               95471.85
OvertimePay                                0.0
OtherPay                                 606.5
Benefits                              32809.36
TotalPay                              96078.35
TotalPayBenefits                     128887.71
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84947, dtype: object)
(84948, Id                                84949
EmployeeName            Jeffrey A Smith
JobTitle            Pharmacy Technician
BasePay                        80093.63
OvertimePay                    11261.29
OtherPay                        6722.67
Benefits                       30807.67
TotalPay                       98077.59
TotalPayBenefits              128885.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84948, dtype: object)
(84949, Id                                     84950
EmployeeName               Michael A Johnson
JobTitle            Deputy Probation Officer
BasePay                             96152.52
OvertimePay                          2254.64
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            98407.16
TotalPayBenefits                   128883.22
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84949, dtype: object)
(84950, Id                             84951
EmployeeName        Daniel R Padilla
JobTitle                   Asst Engr
BasePay                      96055.9
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32823.91
TotalPay                     96055.9
TotalPayBenefits           128879.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84950, dtype: object)
(84951, Id                             84952
EmployeeName               Tony T Ma
JobTitle            Transit Operator
BasePay                     66830.89
OvertimePay                 28655.69
OtherPay                      915.19
Benefits                    32477.02
TotalPay                    96401.77
TotalPayBenefits           128878.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84951, dtype: object)
(84952, Id                                    84953
EmployeeName                Neville  Langit
JobTitle            Engineering Associate 2
BasePay                            94102.52
OvertimePay                         2364.53
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           96467.05
TotalPayBenefits                  128867.42
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84952, dtype: object)
(84953, Id                                         84954
EmployeeName                         Meggy H Lau
JobTitle            Sr Psychiatric Social Worker
BasePay                                 93003.09
OvertimePay                                  0.0
OtherPay                                 3063.65
Benefits                                32794.32
TotalPay                                96066.74
TotalPayBenefits                       128861.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84953, dtype: object)
(84954, Id                                     84955
EmployeeName                  Karen  Sanchez
JobTitle            Deputy Probation Officer
BasePay                             96150.32
OvertimePay                           785.43
OtherPay                              1225.0
Benefits                            30693.86
TotalPay                            98160.75
TotalPayBenefits                   128854.61
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84954, dtype: object)
(84955, Id                          84956
EmployeeName        Zifeng  Liang
JobTitle              Electrician
BasePay                  95276.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 33575.58
TotalPay                 95276.04
TotalPayBenefits        128851.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84955, dtype: object)
(84956, Id                            84957
EmployeeName        Darryl W Wearin
JobTitle                Electrician
BasePay                    95276.04
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33575.58
TotalPay                   95276.04
TotalPayBenefits          128851.62
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84956, dtype: object)
(84957, Id                           84958
EmployeeName             Eric  Pan
JobTitle            Police Officer
BasePay                   92259.03
OvertimePay                2187.68
OtherPay                   2012.43
Benefits                  32390.57
TotalPay                  96459.14
TotalPayBenefits         128849.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84957, dtype: object)
(84958, Id                                           84959
EmployeeName                      Rachel A Schuett
JobTitle            Planner 3-Environmental Review
BasePay                                   95246.52
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33600.74
TotalPay                                  95246.52
TotalPayBenefits                         128847.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 84958, dtype: object)
(84959, Id                          84960
EmployeeName          Phil  Olney
JobTitle             Truck Driver
BasePay                  80052.01
OvertimePay              15980.91
OtherPay                  2705.33
Benefits                 30103.67
TotalPay                 98738.25
TotalPayBenefits        128841.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84959, dtype: object)
(84960, Id                                84961
EmployeeName            Michael M Horan
JobTitle            Park Patrol Officer
BasePay                             NaN
OvertimePay                         0.0
OtherPay                       120000.0
Benefits                        8841.48
TotalPay                       120000.0
TotalPayBenefits              128841.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84960, dtype: object)
(84961, Id                                84962
EmployeeName        Elizabeth C Salazar
JobTitle                 Accountant III
BasePay                        95961.54
OvertimePay                       99.48
OtherPay                            0.0
Benefits                       32772.86
TotalPay                       96061.02
TotalPayBenefits              128833.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84961, dtype: object)
(84962, Id                                   84963
EmployeeName                    Vicky  Lee
JobTitle            Property Manager, Port
BasePay                           96785.74
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           32037.6
TotalPay                          96785.74
TotalPayBenefits                 128823.34
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84962, dtype: object)
(84963, Id                              84964
EmployeeName        Wilfredo O Olivar
JobTitle             Transit Operator
BasePay                      69092.18
OvertimePay                  19793.72
OtherPay                      5174.58
Benefits                     34756.86
TotalPay                     94060.48
TotalPayBenefits            128817.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84963, dtype: object)
(84964, Id                              84965
EmployeeName            Nory B Acosta
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  32185.08
OtherPay                        898.0
Benefits                     27343.18
TotalPay                    101474.08
TotalPayBenefits            128817.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84964, dtype: object)
(84965, Id                                  84966
EmployeeName          Adrienne A Lovelund
JobTitle            Clinical Psychologist
BasePay                           95250.3
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33565.66
TotalPay                          95250.3
TotalPayBenefits                128815.96
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84965, dtype: object)
(84966, Id                                          84967
EmployeeName                   Michael  Fernandez
JobTitle            Senior Administrative Analyst
BasePay                                  96014.93
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32799.05
TotalPay                                 96014.93
TotalPayBenefits                        128813.98
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84966, dtype: object)
(84967, Id                                   84968
EmployeeName            Lourdes C DelaRosa
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        24724.2
OtherPay                           7129.18
Benefits                          28566.98
TotalPay                         100244.38
TotalPayBenefits                 128811.36
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 84967, dtype: object)
(84968, Id                                     84969
EmployeeName                  Janine  Tirado
JobTitle            Sprv Adult Probation Ofc
BasePay                             99059.17
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29745.41
TotalPay                            99059.17
TotalPayBenefits                   128804.58
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84968, dtype: object)
(84969, Id                                          84970
EmployeeName                            Pei  Meng
JobTitle            IS Business Analyst-Principal
BasePay                                 101274.51
OvertimePay                                   0.0
OtherPay                                 -7058.59
Benefits                                  34583.4
TotalPay                                 94215.92
TotalPayBenefits                        128799.32
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 84969, dtype: object)
(84970, Id                             84971
EmployeeName         Michael J White
JobTitle            Transit Operator
BasePay                     68460.11
OvertimePay                  23906.3
OtherPay                     2681.39
Benefits                    33751.13
TotalPay                     95047.8
TotalPayBenefits           128798.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 84970, dtype: object)
(84971, Id                            84972
EmployeeName        James  Dyquisto
JobTitle                Electrician
BasePay                     95276.0
OvertimePay                  896.56
OtherPay                        0.0
Benefits                   32622.81
TotalPay                   96172.56
TotalPayBenefits          128795.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84971, dtype: object)
(84972, Id                                  84973
EmployeeName               Andrea E Bruss
JobTitle            Legislative Assistant
BasePay                          95985.72
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          32807.2
TotalPay                         95985.72
TotalPayBenefits                128792.92
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 84972, dtype: object)
(84973, Id                            84974
EmployeeName        Michael R Scott
JobTitle             Police Officer
BasePay                    92259.05
OvertimePay                 1736.53
OtherPay                     2383.5
Benefits                   32405.23
TotalPay                   96379.08
TotalPayBenefits          128784.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84973, dtype: object)
(84974, Id                                       84975
EmployeeName                      Joan A Below
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                                 788.0
Benefits                              32761.15
TotalPay                              96017.07
TotalPayBenefits                     128778.22
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 84974, dtype: object)
(84975, Id                                      84976
EmployeeName                   Dennis A Luong
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74779.0
OvertimePay                          14757.95
OtherPay                              8589.35
Benefits                             30650.13
TotalPay                              98126.3
TotalPayBenefits                    128776.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 84975, dtype: object)
(84976, Id                                    84977
EmployeeName               Roman G Muros-Jr
JobTitle            Engineering Associate 2
BasePay                            94102.53
OvertimePay                         2264.47
OtherPay                                0.0
Benefits                           32400.37
TotalPay                            96367.0
TotalPayBenefits                  128767.37
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 84976, dtype: object)
(84977, Id                                84978
EmployeeName               Margie  Fong
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                    12457.21
OtherPay                        7179.56
Benefits                       30655.76
TotalPay                       98110.28
TotalPayBenefits              128766.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84977, dtype: object)
(84978, Id                                         84979
EmployeeName                       Jose F Medina
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              3658.05
OtherPay                                 6441.43
Benefits                                32136.32
TotalPay                                96629.48
TotalPayBenefits                        128765.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84978, dtype: object)
(84979, Id                                     84980
EmployeeName               Gwendolyn A Smith
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                          2131.27
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             98283.8
TotalPayBenefits                   128759.86
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 84979, dtype: object)
(84980, Id                          84981
EmployeeName         Mikyung  Kim
JobTitle            Special Nurse
BasePay                  110449.0
OvertimePay                   0.0
OtherPay                 18304.16
Benefits                      0.0
TotalPay                128753.16
TotalPayBenefits        128753.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84980, dtype: object)
(84981, Id                                84982
EmployeeName           Rand N Fulkerson
JobTitle            Arborist Technician
BasePay                         80282.5
OvertimePay                    15761.66
OtherPay                         1760.4
Benefits                       30945.04
TotalPay                       97804.56
TotalPayBenefits               128749.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84981, dtype: object)
(84982, Id                          84983
EmployeeName         Kwok K Leung
JobTitle             Chemist I/II
BasePay                  95963.44
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32778.76
TotalPay                 95963.44
TotalPayBenefits         128742.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84982, dtype: object)
(84983, Id                              84984
EmployeeName        Bianca J Ferreros
JobTitle                 Chemist I/II
BasePay                       95963.4
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32778.76
TotalPay                      95963.4
TotalPayBenefits            128742.16
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 84983, dtype: object)
(84984, Id                           84985
EmployeeName         Peter T Huynh
JobTitle            Accountant III
BasePay                   95961.56
OvertimePay                    0.0
OtherPay                      5.31
Benefits                  32773.82
TotalPay                  95966.87
TotalPayBenefits         128740.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84984, dtype: object)
(84985, Id                                         84986
EmployeeName                        Raymond  Yee
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 89000.28
OvertimePay                                  0.0
OtherPay                                 7072.63
Benefits                                32667.11
TotalPay                                96072.91
TotalPayBenefits                       128740.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84985, dtype: object)
(84986, Id                          84987
EmployeeName        Kelley  Amdur
JobTitle                Planner 4
BasePay                 106629.46
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 22109.77
TotalPay                106629.46
TotalPayBenefits        128739.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84986, dtype: object)
(84987, Id                                         84988
EmployeeName                    Christine E Ruiz
JobTitle            Pr Fare Collections Receiver
BasePay                                  88306.0
OvertimePay                              9339.26
OtherPay                                     0.0
Benefits                                31090.64
TotalPay                                97645.26
TotalPayBenefits                        128735.9
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 84987, dtype: object)
(84988, Id                                84989
EmployeeName        Sukhjinder S Sandhu
JobTitle                   Chemist I/II
BasePay                         95961.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32772.86
TotalPay                        95961.6
TotalPayBenefits              128734.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 84988, dtype: object)
(84989, Id                               84990
EmployeeName        Gurkiran K Hansrai
JobTitle                  Chemist I/II
BasePay                       95961.59
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32772.86
TotalPay                      95961.59
TotalPayBenefits             128734.45
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84989, dtype: object)
(84990, Id                           84991
EmployeeName          Fannie S Chu
JobTitle            Accountant III
BasePay                   95961.57
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.57
TotalPayBenefits         128734.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84990, dtype: object)
(84991, Id                          84992
EmployeeName         Phuong  Tran
JobTitle             Chemist I/II
BasePay                  95961.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32772.86
TotalPay                 95961.57
TotalPayBenefits        128734.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84991, dtype: object)
(84992, Id                          84993
EmployeeName         Quansing  Tu
JobTitle             Chemist I/II
BasePay                  95961.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32772.86
TotalPay                 95961.57
TotalPayBenefits        128734.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 84992, dtype: object)
(84993, Id                           84994
EmployeeName        Wilfred W Kong
JobTitle            Accountant III
BasePay                   95961.56
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.87
TotalPay                  95961.56
TotalPayBenefits         128734.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84993, dtype: object)
(84994, Id                           84995
EmployeeName           Monica  Lau
JobTitle            Accountant III
BasePay                   95961.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.55
TotalPayBenefits         128734.41
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84994, dtype: object)
(84995, Id                            84996
EmployeeName        Crystal JT  Zhu
JobTitle               Chemist I/II
BasePay                    95961.55
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32772.86
TotalPay                   95961.55
TotalPayBenefits          128734.41
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 84995, dtype: object)
(84996, Id                           84997
EmployeeName           Lila N Fung
JobTitle            Accountant III
BasePay                   95961.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.55
TotalPayBenefits         128734.41
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84996, dtype: object)
(84997, Id                           84998
EmployeeName        Glenn D DeLeon
JobTitle            Accountant III
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84997, dtype: object)
(84998, Id                               84999
EmployeeName        Salina D Sabalvaro
JobTitle                Accountant III
BasePay                       95961.54
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32772.86
TotalPay                      95961.54
TotalPayBenefits              128734.4
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 84998, dtype: object)
(84999, Id                           85000
EmployeeName           Thai M Chiu
JobTitle            Accountant III
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 84999, dtype: object)
(85000, Id                           85001
EmployeeName            Evelyn  On
JobTitle            Accountant III
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85000, dtype: object)
(85001, Id                           85002
EmployeeName         Neil  Rosario
JobTitle            Biologist I/II
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85001, dtype: object)
(85002, Id                              85003
EmployeeName        Nemesia C Peralta
JobTitle               Accountant III
BasePay                      95961.54
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32772.86
TotalPay                     95961.54
TotalPayBenefits             128734.4
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85002, dtype: object)
(85003, Id                           85004
EmployeeName        Leila C Brioso
JobTitle            Accountant III
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85003, dtype: object)
(85004, Id                                   85005
EmployeeName        Lovely Lorra  Lindsley
JobTitle                    Accountant III
BasePay                           95961.53
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32772.87
TotalPay                          95961.53
TotalPayBenefits                  128734.4
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85004, dtype: object)
(85005, Id                                  85006
EmployeeName        Gertrudes R Fernandez
JobTitle                   Accountant III
BasePay                          95961.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         32772.86
TotalPay                         95961.54
TotalPayBenefits                 128734.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85005, dtype: object)
(85006, Id                           85007
EmployeeName         Yuk Yin S Tse
JobTitle            Accountant III
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.54
TotalPayBenefits          128734.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85006, dtype: object)
(85007, Id                          85008
EmployeeName          Moshe  Blum
JobTitle             Chemist I/II
BasePay                  95961.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32772.86
TotalPay                 95961.53
TotalPayBenefits        128734.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85007, dtype: object)
(85008, Id                           85009
EmployeeName           Mabel  Chan
JobTitle            Accountant III
BasePay                   95961.53
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.53
TotalPayBenefits         128734.39
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85008, dtype: object)
(85009, Id                             85010
EmployeeName        Nneka  Gallaread
JobTitle              Accountant III
BasePay                     95961.53
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32772.86
TotalPay                    95961.53
TotalPayBenefits           128734.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85009, dtype: object)
(85010, Id                               85011
EmployeeName        Marianne B Urrutia
JobTitle                Accountant III
BasePay                       95961.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32772.86
TotalPay                      95961.53
TotalPayBenefits             128734.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85010, dtype: object)
(85011, Id                           85012
EmployeeName            Selina  Li
JobTitle            Accountant III
BasePay                   95961.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.52
TotalPayBenefits         128734.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85011, dtype: object)
(85012, Id                           85013
EmployeeName          Stephen M Lo
JobTitle            Accountant III
BasePay                   95961.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.52
TotalPayBenefits         128734.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85012, dtype: object)
(85013, Id                           85014
EmployeeName            Wing Y Lau
JobTitle            Accountant III
BasePay                   95961.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.52
TotalPayBenefits         128734.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85013, dtype: object)
(85014, Id                                85015
EmployeeName        Diosdado S Guevarra
JobTitle                 Accountant III
BasePay                        95961.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32772.87
TotalPay                       95961.51
TotalPayBenefits              128734.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85014, dtype: object)
(85015, Id                           85016
EmployeeName           Elmor O Oro
JobTitle            Accountant III
BasePay                   95961.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.51
TotalPayBenefits         128734.37
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85015, dtype: object)
(85016, Id                              85017
EmployeeName        Marialuz  Morales
JobTitle               Accountant III
BasePay                      95961.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32772.86
TotalPay                     95961.51
TotalPayBenefits            128734.37
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85016, dtype: object)
(85017, Id                           85018
EmployeeName         Arlene E Mesa
JobTitle            Accountant III
BasePay                   95961.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                  95961.51
TotalPayBenefits         128734.37
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85017, dtype: object)
(85018, Id                          85019
EmployeeName        Lewis K G Lou
JobTitle             Chemist I/II
BasePay                   95961.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32772.86
TotalPay                  95961.5
TotalPayBenefits        128734.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85018, dtype: object)
(85019, Id                           85020
EmployeeName           Sharon  Lam
JobTitle            Accountant III
BasePay                    95961.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                   95961.5
TotalPayBenefits         128734.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85019, dtype: object)
(85020, Id                           85021
EmployeeName        Olivia A David
JobTitle            Accountant III
BasePay                    95961.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32772.86
TotalPay                   95961.5
TotalPayBenefits         128734.36
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85020, dtype: object)
(85021, Id                                 85022
EmployeeName        Anatoly L Kharitonov
JobTitle             Stationary Engineer
BasePay                          78175.5
OvertimePay                     10428.07
OtherPay                         9180.74
Benefits                        30947.33
TotalPay                        97784.31
TotalPayBenefits               128731.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85021, dtype: object)
(85022, Id                                     85023
EmployeeName                 Niger M Edwards
JobTitle            Senior Personnel Analyst
BasePay                             95175.31
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33554.57
TotalPay                            95175.31
TotalPayBenefits                   128729.88
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85022, dtype: object)
(85023, Id                             85024
EmployeeName        Dorothy J Norris
JobTitle              Biologist I/II
BasePay                     95959.29
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     32765.5
TotalPay                    95959.29
TotalPayBenefits           128724.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85023, dtype: object)
(85024, Id                                        85025
EmployeeName                       Sara  DeLong
JobTitle            Senior Physician Specialist
BasePay                                96347.97
OvertimePay                                 0.0
OtherPay                                4817.74
Benefits                               27553.47
TotalPay                              101165.71
TotalPayBenefits                      128719.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85024, dtype: object)
(85025, Id                           85026
EmployeeName         Tammy T Egger
JobTitle            Biologist I/II
BasePay                   95957.91
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32761.07
TotalPay                  95957.91
TotalPayBenefits         128718.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85025, dtype: object)
(85026, Id                               85027
EmployeeName        Delia C Kekulawela
JobTitle                Accountant III
BasePay                       95961.55
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32755.96
TotalPay                      95961.55
TotalPayBenefits             128717.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85026, dtype: object)
(85027, Id                             85028
EmployeeName        Joseph D Clemons
JobTitle                 Inspector 3
BasePay                     74298.01
OvertimePay                   811.97
OtherPay                    33085.86
Benefits                    20517.81
TotalPay                   108195.84
TotalPayBenefits           128713.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85027, dtype: object)
(85028, Id                             85029
EmployeeName        Calvin L Chapman
JobTitle                Chemist I/II
BasePay                     95944.58
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32766.86
TotalPay                    95944.58
TotalPayBenefits           128711.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85028, dtype: object)
(85029, Id                             85030
EmployeeName        Anabella  Alfaro
JobTitle              Biologist I/II
BasePay                     95957.89
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32749.37
TotalPay                    95957.89
TotalPayBenefits           128707.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85029, dtype: object)
(85030, Id                                         85031
EmployeeName                Christopher L Cermak
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86679.93
OvertimePay                                  0.0
OtherPay                                 8508.48
Benefits                                33513.63
TotalPay                                95188.41
TotalPayBenefits                       128702.04
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85030, dtype: object)
(85031, Id                                        85032
EmployeeName                     Leonard E Mayo
JobTitle            Airport Communications Disp
BasePay                                81385.54
OvertimePay                             8282.31
OtherPay                                7788.19
Benefits                               31245.14
TotalPay                               97456.04
TotalPayBenefits                      128701.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85031, dtype: object)
(85032, Id                             85033
EmployeeName          Yvette L Allen
JobTitle            Transit Operator
BasePay                     67717.67
OvertimePay                 27353.37
OtherPay                      770.95
Benefits                    32857.72
TotalPay                    95841.99
TotalPayBenefits           128699.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85032, dtype: object)
(85033, Id                                85034
EmployeeName           DavidcresD  Alda
JobTitle            Stationary Engineer
BasePay                        78467.71
OvertimePay                     4327.36
OtherPay                       13930.67
Benefits                        31972.1
TotalPay                       96725.74
TotalPayBenefits              128697.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85033, dtype: object)
(85034, Id                                     85035
EmployeeName               Teri L Jourgensen
JobTitle            Senior Personnel Analyst
BasePay                              95887.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             32807.9
TotalPay                             95887.0
TotalPayBenefits                    128694.9
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85034, dtype: object)
(85035, Id                                     85036
EmployeeName              Beverly A Bramlett
JobTitle            Personnel/Payroll Repres
BasePay                             89756.52
OvertimePay                           557.16
OtherPay                             5775.05
Benefits                            32604.39
TotalPay                            96088.73
TotalPayBenefits                   128693.12
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85035, dtype: object)
(85036, Id                            85037
EmployeeName        Mpheza J Mapara
JobTitle              Special Nurse
BasePay                    125329.3
OvertimePay                  752.85
OtherPay                    1329.47
Benefits                     1274.1
TotalPay                  127411.62
TotalPayBenefits          128685.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85036, dtype: object)
(85037, Id                            85038
EmployeeName        Butch I Iglesia
JobTitle                Electrician
BasePay                    95276.04
OvertimePay                  775.91
OtherPay                        0.0
Benefits                   32622.81
TotalPay                   96051.95
TotalPayBenefits          128674.76
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85037, dtype: object)
(85038, Id                           85039
EmployeeName           Linda K Hom
JobTitle            Accountant III
BasePay                   95916.91
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32757.07
TotalPay                  95916.91
TotalPayBenefits         128673.98
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85038, dtype: object)
(85039, Id                                     85040
EmployeeName               Cathryn  McArthur
JobTitle            Counselor, Juvenile Hall
BasePay                             67371.98
OvertimePay                         26043.59
OtherPay                             6922.47
Benefits                            28331.05
TotalPay                           100338.04
TotalPayBenefits                   128669.09
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85039, dtype: object)
(85040, Id                                       85041
EmployeeName                    Maria C Miller
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 688.0
Benefits                              32746.57
TotalPay                              95917.04
TotalPayBenefits                     128663.61
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85040, dtype: object)
(85041, Id                                       85042
EmployeeName                    David T Nguyen
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                                 688.0
Benefits                              32746.58
TotalPay                              95917.01
TotalPayBenefits                     128663.59
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85041, dtype: object)
(85042, Id                                         85043
EmployeeName                   Gilbert A Pacaldo
JobTitle            Wastewater Control Inspector
BasePay                                 94102.52
OvertimePay                              2159.23
OtherPay                                     0.0
Benefits                                32400.37
TotalPay                                96261.75
TotalPayBenefits                       128662.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85042, dtype: object)
(85043, Id                                         85044
EmployeeName                      Calvin  Holmes
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86738.11
OvertimePay                              3226.51
OtherPay                                 6505.37
Benefits                                 32191.5
TotalPay                                96469.99
TotalPayBenefits                       128661.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85043, dtype: object)
(85044, Id                               85045
EmployeeName        Nicasio P Fernando
JobTitle              Transit Operator
BasePay                       64941.34
OvertimePay                   25145.96
OtherPay                       5638.85
Benefits                      32926.94
TotalPay                      95726.15
TotalPayBenefits             128653.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85044, dtype: object)
(85045, Id                                          85046
EmployeeName                     Alison A Mickels
JobTitle            Street Environ Svcs Oprs Supv
BasePay                                  94542.86
OvertimePay                                312.52
OtherPay                                   1156.8
Benefits                                 32634.97
TotalPay                                 96012.18
TotalPayBenefits                        128647.15
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85045, dtype: object)
(85046, Id                             85047
EmployeeName            James W Heck
JobTitle            Survey Associate
BasePay                      95502.5
OvertimePay                    462.0
OtherPay                         0.0
Benefits                    32680.99
TotalPay                     95964.5
TotalPayBenefits           128645.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85046, dtype: object)
(85047, Id                                  85048
EmployeeName            Matthias  Mormino
JobTitle            Legislative Assistant
BasePay                          95085.76
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33551.87
TotalPay                         95085.76
TotalPayBenefits                128637.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85047, dtype: object)
(85048, Id                                        85049
EmployeeName                     Jessica K Fort
JobTitle            Sprv Adult Prob Ofc (SFERS)
BasePay                                95372.51
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               33262.49
TotalPay                               95372.51
TotalPayBenefits                       128635.0
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85048, dtype: object)
(85049, Id                             85050
EmployeeName        Freddie  De Leon
JobTitle            Transit Operator
BasePay                     69002.13
OvertimePay                 19762.05
OtherPay                     5204.71
Benefits                    34662.77
TotalPay                    93968.89
TotalPayBenefits           128631.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85049, dtype: object)
(85050, Id                                 85051
EmployeeName              Joe R Portillo
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                     17044.22
OtherPay                         1547.89
Benefits                        29903.42
TotalPay                        98725.11
TotalPayBenefits               128628.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85050, dtype: object)
(85051, Id                                         85052
EmployeeName                      Martha  Acacio
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                  94851.0
OvertimePay                                  0.0
OtherPay                                  1040.0
Benefits                                32736.26
TotalPay                                 95891.0
TotalPayBenefits                       128627.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85051, dtype: object)
(85052, Id                                85053
EmployeeName        Theresa J Sandholdt
JobTitle                  Special Nurse
BasePay                        117135.1
OvertimePay                     6610.05
OtherPay                        4882.01
Benefits                            0.0
TotalPay                      128627.16
TotalPayBenefits              128627.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85052, dtype: object)
(85053, Id                                       85054
EmployeeName                   Maria A Fonseca
JobTitle            Protective Services Worker
BasePay                                94843.3
OvertimePay                                0.0
OtherPay                                1080.0
Benefits                              32701.02
TotalPay                               95923.3
TotalPayBenefits                     128624.32
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85053, dtype: object)
(85054, Id                                          85055
EmployeeName                     Joyce Soon  Wong
JobTitle            Contract Compliance Officer 1
BasePay                                  95057.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33565.94
TotalPay                                 95057.01
TotalPayBenefits                        128622.95
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85054, dtype: object)
(85055, Id                                      85056
EmployeeName                Yolanda C Manzone
JobTitle            Pr Administrative Analyst
BasePay                               95197.8
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             33422.54
TotalPay                              95197.8
TotalPayBenefits                    128620.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85055, dtype: object)
(85056, Id                                       85057
EmployeeName                John P Prendergast
JobTitle            Protective Services Worker
BasePay                               95229.08
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.33
TotalPay                              95877.08
TotalPayBenefits                     128616.41
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85056, dtype: object)
(85057, Id                                       85058
EmployeeName                     Leslie  Nomeh
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.33
TotalPay                              95877.07
TotalPayBenefits                      128616.4
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85057, dtype: object)
(85058, Id                          85059
EmployeeName        Amy D Swanson
JobTitle              Firefighter
BasePay                  90183.54
OvertimePay                   0.0
OtherPay                   9461.9
Benefits                 28970.93
TotalPay                 99645.44
TotalPayBenefits        128616.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85058, dtype: object)
(85059, Id                                       85060
EmployeeName          Angelita  Dionisio-Bowen
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.31
TotalPay                              95877.05
TotalPayBenefits                     128616.36
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85059, dtype: object)
(85060, Id                                       85061
EmployeeName                   Clive D Lazarus
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.31
TotalPay                              95877.05
TotalPayBenefits                     128616.36
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85060, dtype: object)
(85061, Id                                       85062
EmployeeName                 Joan  Friedlander
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.31
TotalPay                              95877.05
TotalPayBenefits                     128616.36
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85061, dtype: object)
(85062, Id                                       85063
EmployeeName                  Jeffrey L Schunk
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                               32739.3
TotalPay                              95877.05
TotalPayBenefits                     128616.35
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85062, dtype: object)
(85063, Id                                       85064
EmployeeName                       Joan  Kelly
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.29
TotalPay                              95877.05
TotalPayBenefits                     128616.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85063, dtype: object)
(85064, Id                                       85065
EmployeeName              Tommy J Pazhempallil
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                               32739.3
TotalPay                              95877.04
TotalPayBenefits                     128616.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85064, dtype: object)
(85065, Id                                       85066
EmployeeName                      Anca E Bujes
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                               32739.3
TotalPay                              95877.01
TotalPayBenefits                     128616.31
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85065, dtype: object)
(85066, Id                                       85067
EmployeeName                    Crystal M Fong
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32739.29
TotalPay                              95877.01
TotalPayBenefits                      128616.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85066, dtype: object)
(85067, Id                                       85068
EmployeeName                   Carlos  Raigoza
JobTitle            Protective Services Worker
BasePay                                95229.0
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32733.77
TotalPay                               95877.0
TotalPayBenefits                     128610.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85067, dtype: object)
(85068, Id                                       85069
EmployeeName                      Stacy L Love
JobTitle            Protective Services Worker
BasePay                                95229.0
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32733.77
TotalPay                               95877.0
TotalPayBenefits                     128610.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85068, dtype: object)
(85069, Id                            85070
EmployeeName        Jessica W Shors
JobTitle              Biologist III
BasePay                    94762.78
OvertimePay                     0.0
OtherPay                      905.0
Benefits                   32937.96
TotalPay                   95667.78
TotalPayBenefits          128605.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85069, dtype: object)
(85070, Id                                       85071
EmployeeName                     Emmett J Neal
JobTitle            Protective Services Worker
BasePay                                95229.1
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.29
TotalPay                               95877.1
TotalPayBenefits                     128605.39
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85070, dtype: object)
(85071, Id                                       85072
EmployeeName             Michelle D Garabedian
JobTitle            Protective Services Worker
BasePay                               95229.08
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.29
TotalPay                              95877.08
TotalPayBenefits                     128605.37
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85071, dtype: object)
(85072, Id                                       85073
EmployeeName                    Ernest P Trice
JobTitle            Protective Services Worker
BasePay                               95229.08
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.29
TotalPay                              95877.08
TotalPayBenefits                     128605.37
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85072, dtype: object)
(85073, Id                                       85074
EmployeeName                 Brandee L Gensler
JobTitle            Protective Services Worker
BasePay                               95229.06
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.28
TotalPay                              95877.06
TotalPayBenefits                     128605.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85073, dtype: object)
(85074, Id                                       85075
EmployeeName           Gloria D Anthony-Oliver
JobTitle            Protective Services Worker
BasePay                               95229.06
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.28
TotalPay                              95877.06
TotalPayBenefits                     128605.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85074, dtype: object)
(85075, Id                                       85076
EmployeeName                Christine A Harris
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.26
TotalPay                              95877.07
TotalPayBenefits                     128605.33
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85075, dtype: object)
(85076, Id                                       85077
EmployeeName                       Susan L Mak
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.26
TotalPay                              95877.05
TotalPayBenefits                     128605.31
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85076, dtype: object)
(85077, Id                                       85078
EmployeeName                Carol L Crittenden
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.26
TotalPay                              95877.04
TotalPayBenefits                      128605.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85077, dtype: object)
(85078, Id                                       85079
EmployeeName                    Laura J Morgan
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.26
TotalPay                              95877.04
TotalPayBenefits                      128605.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85078, dtype: object)
(85079, Id                                       85080
EmployeeName                    Wendy M Edelen
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.25
TotalPay                              95877.05
TotalPayBenefits                      128605.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85079, dtype: object)
(85080, Id                                       85081
EmployeeName                    Lesha M Taylor
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.25
TotalPay                              95877.04
TotalPayBenefits                     128605.29
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85080, dtype: object)
(85081, Id                                       85082
EmployeeName                    Heidi S Denton
JobTitle            Protective Services Worker
BasePay                               95229.02
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.26
TotalPay                              95877.02
TotalPayBenefits                     128605.28
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85081, dtype: object)
(85082, Id                                       85083
EmployeeName                   Arlette T Smith
JobTitle            Protective Services Worker
BasePay                                95229.0
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              32728.24
TotalPay                               95877.0
TotalPayBenefits                     128605.24
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85082, dtype: object)
(85083, Id                                           85084
EmployeeName                          Aisha R Lusk
JobTitle            Protective Services Supervisor
BasePay                                   96919.22
OvertimePay                                    0.0
OtherPay                                      80.0
Benefits                                  31605.57
TotalPay                                  96999.22
TotalPayBenefits                         128604.79
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85083, dtype: object)
(85084, Id                                      85085
EmployeeName                 Paul A Camarillo
JobTitle            Child Support Officer III
BasePay                              90693.06
OvertimePay                               0.0
OtherPay                              5253.83
Benefits                              32654.7
TotalPay                             95946.89
TotalPayBenefits                    128601.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85084, dtype: object)
(85085, Id                                     85086
EmployeeName                 Steven A Norman
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32436.63
TotalPay                            96152.51
TotalPayBenefits                   128589.14
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85085, dtype: object)
(85086, Id                             85087
EmployeeName        Melissa S Hanson
JobTitle                   Manager I
BasePay                     91155.42
OvertimePay                      0.0
OtherPay                        20.5
Benefits                    37401.54
TotalPay                    91175.92
TotalPayBenefits           128577.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85086, dtype: object)
(85087, Id                              85088
EmployeeName        Kenneth P Lunardi
JobTitle             Transit Operator
BasePay                      68941.06
OvertimePay                  24322.12
OtherPay                      1566.99
Benefits                      33746.3
TotalPay                     94830.17
TotalPayBenefits            128576.47
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85087, dtype: object)
(85088, Id                             85089
EmployeeName           Cathy R Riley
JobTitle            Registered Nurse
BasePay                      89817.5
OvertimePay                   819.65
OtherPay                      6332.1
Benefits                    31587.37
TotalPay                    96969.25
TotalPayBenefits           128556.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85088, dtype: object)
(85089, Id                                    85090
EmployeeName                 Allie B Fisher
JobTitle            Claims Investigator, CA
BasePay                            95789.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                            32766.9
TotalPay                           95789.52
TotalPayBenefits                  128556.42
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85089, dtype: object)
(85090, Id                              85091
EmployeeName            Michael M Lat
JobTitle            Project Manager 1
BasePay                       94955.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                      33599.0
TotalPay                      94955.0
TotalPayBenefits             128554.0
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85090, dtype: object)
(85091, Id                                    85092
EmployeeName                  Jeffrey C Lee
JobTitle            Water Service Inspector
BasePay                             94757.6
OvertimePay                          1053.0
OtherPay                             180.76
Benefits                           32559.94
TotalPay                           95991.36
TotalPayBenefits                   128551.3
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85091, dtype: object)
(85092, Id                            85093
EmployeeName        David S Winslow
JobTitle                  Planner 3
BasePay                    95000.15
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   33544.41
TotalPay                   95000.15
TotalPayBenefits          128544.56
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85092, dtype: object)
(85093, Id                           85094
EmployeeName        Aislin F Roche
JobTitle            Police Officer
BasePay                   92259.05
OvertimePay                1720.91
OtherPay                   3373.89
Benefits                  31189.24
TotalPay                  97353.85
TotalPayBenefits         128543.09
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85093, dtype: object)
(85094, Id                                         85095
EmployeeName                      William L Wong
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 88748.17
OvertimePay                               514.38
OtherPay                                 6656.16
Benefits                                 32618.1
TotalPay                                95918.71
TotalPayBenefits                       128536.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85094, dtype: object)
(85095, Id                               85096
EmployeeName        Benjamin W Mellott
JobTitle            Physical Therapist
BasePay                       97403.62
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31118.53
TotalPay                      97403.62
TotalPayBenefits             128522.15
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85095, dtype: object)
(85096, Id                                         85097
EmployeeName                    Richard J Barnes
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 85402.33
OvertimePay                              2832.24
OtherPay                                 7422.65
Benefits                                32864.58
TotalPay                                95657.22
TotalPayBenefits                        128521.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85096, dtype: object)
(85097, Id                                       85098
EmployeeName                    Janine M Young
JobTitle            Sr Environmental Hlth Insp
BasePay                               97674.87
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30842.64
TotalPay                              97674.87
TotalPayBenefits                     128517.51
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85097, dtype: object)
(85098, Id                                          85099
EmployeeName                     Evelyn R Dizadji
JobTitle            Airport Property Specialist 1
BasePay                                  94960.25
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33541.39
TotalPay                                 94960.25
TotalPayBenefits                        128501.64
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85098, dtype: object)
(85099, Id                                     85100
EmployeeName              Alphonso  Oliphant
JobTitle            Deputy Probation Officer
BasePay                             96385.22
OvertimePay                          1595.25
OtherPay                                 0.0
Benefits                            30515.82
TotalPay                            97980.47
TotalPayBenefits                   128496.29
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85099, dtype: object)
(85100, Id                                       85101
EmployeeName                    Shwe Ein  Hnin
JobTitle            IS Business Analyst-Senior
BasePay                               95733.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32760.99
TotalPay                              95733.03
TotalPayBenefits                     128494.02
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85100, dtype: object)
(85101, Id                                     85102
EmployeeName           Corazon  Nunez-Talens
JobTitle            Sr Cent Proc & Dist Tech
BasePay                              87696.0
OvertimePay                            938.9
OtherPay                              7343.0
Benefits                            32500.06
TotalPay                             95977.9
TotalPayBenefits                   128477.96
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85101, dtype: object)
(85102, Id                               85103
EmployeeName         Dennis  Carlin Jr
JobTitle            Building Inspector
BasePay                        96340.3
OvertimePay                    1220.11
OtherPay                         437.2
Benefits                      30470.99
TotalPay                      97997.61
TotalPayBenefits              128468.6
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85102, dtype: object)
(85103, Id                              85104
EmployeeName        Aaron J McFarland
JobTitle               Deputy Sheriff
BasePay                      89539.22
OvertimePay                   6448.11
OtherPay                      1132.58
Benefits                     31345.69
TotalPay                     97119.91
TotalPayBenefits             128465.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85103, dtype: object)
(85104, Id                             85105
EmployeeName          Masis  Azizian
JobTitle            Transit Operator
BasePay                     68649.04
OvertimePay                 18897.12
OtherPay                     6130.62
Benefits                    34776.28
TotalPay                    93676.78
TotalPayBenefits           128453.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85104, dtype: object)
(85105, Id                                       85106
EmployeeName              Ellen M Ridge-Cooper
JobTitle            Diagnostic Imaging Tech IV
BasePay                               97330.54
OvertimePay                             518.99
OtherPay                                 716.0
Benefits                               29883.4
TotalPay                              98565.53
TotalPayBenefits                     128448.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85105, dtype: object)
(85106, Id                             85107
EmployeeName          Herman N Diggs
JobTitle            Police Officer 2
BasePay                     98242.51
OvertimePay                      0.0
OtherPay                     1550.68
Benefits                    28650.05
TotalPay                    99793.19
TotalPayBenefits           128443.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85106, dtype: object)
(85107, Id                                     85108
EmployeeName                     Jim C Chien
JobTitle            Public Relations Officer
BasePay                              94102.5
OvertimePay                              0.0
OtherPay                             1654.31
Benefits                            32685.28
TotalPay                            95756.81
TotalPayBenefits                   128442.09
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85107, dtype: object)
(85108, Id                                      85109
EmployeeName                  Evelyn Y Mancha
JobTitle            Licensed Vocational Nurse
BasePay                              73584.97
OvertimePay                          18759.99
OtherPay                              6586.25
Benefits                             29504.56
TotalPay                             98931.21
TotalPayBenefits                    128435.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85108, dtype: object)
(85109, Id                             85110
EmployeeName          Joey D Cariaga
JobTitle            Transit Operator
BasePay                     70372.16
OvertimePay                 18508.84
OtherPay                     4396.18
Benefits                    35157.92
TotalPay                    93277.18
TotalPayBenefits            128435.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85109, dtype: object)
(85110, Id                                    85111
EmployeeName              Yoshifumi  Tanaka
JobTitle            Engineering Associate 2
BasePay                            94102.59
OvertimePay                             0.0
OtherPay                            1628.74
Benefits                           32696.91
TotalPay                           95731.33
TotalPayBenefits                  128428.24
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85110, dtype: object)
(85111, Id                                    85112
EmployeeName               Jennifer M Drake
JobTitle            Claims Investigator, CA
BasePay                             94892.4
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           33535.29
TotalPay                            94892.4
TotalPayBenefits                  128427.69
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85111, dtype: object)
(85112, Id                             85113
EmployeeName          Stephen W Wong
JobTitle            Transit Operator
BasePay                     69698.21
OvertimePay                  24500.1
OtherPay                      439.95
Benefits                    33789.42
TotalPay                    94638.26
TotalPayBenefits           128427.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85112, dtype: object)
(85113, Id                             85114
EmployeeName        Nikolaos G Hawes
JobTitle              Police Officer
BasePay                     92259.06
OvertimePay                  2286.46
OtherPay                     1474.51
Benefits                    32401.62
TotalPay                    96020.03
TotalPayBenefits           128421.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85113, dtype: object)
(85114, Id                             85115
EmployeeName        Daniel A Mendoza
JobTitle                   Asst Engr
BasePay                      95673.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32748.06
TotalPay                     95673.5
TotalPayBenefits           128421.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85114, dtype: object)
(85115, Id                                 85116
EmployeeName               Juan S Garcia
JobTitle            Painter Supervisor 1
BasePay                         93454.57
OvertimePay                       2707.1
OtherPay                             0.0
Benefits                        32257.77
TotalPay                        96161.67
TotalPayBenefits               128419.44
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85115, dtype: object)
(85116, Id                                      85117
EmployeeName            Oscar  Miranda Garcia
JobTitle            Diagnostic Imaging Tech I
BasePay                               85737.4
OvertimePay                           8740.87
OtherPay                              1962.99
Benefits                             31968.81
TotalPay                             96441.26
TotalPayBenefits                    128410.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85116, dtype: object)
(85117, Id                           85118
EmployeeName        Brad P Topoian
JobTitle               Electrician
BasePay                    95276.0
OvertimePay                 494.02
OtherPay                       0.0
Benefits                  32622.81
TotalPay                  95770.02
TotalPayBenefits         128392.83
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85117, dtype: object)
(85118, Id                                   85119
EmployeeName         Christian N.T. Sabugo
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                           32286.7
TotalPay                          96104.57
TotalPayBenefits                 128391.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85118, dtype: object)
(85119, Id                                   85120
EmployeeName                Nicole W Davis
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                           32286.7
TotalPay                          96104.56
TotalPayBenefits                 128391.26
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85119, dtype: object)
(85120, Id                                   85121
EmployeeName               Felicia M Green
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                           32286.7
TotalPay                          96104.55
TotalPayBenefits                 128391.25
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85120, dtype: object)
(85121, Id                           85122
EmployeeName        Karen H Berger
JobTitle             Special Nurse
BasePay                  127006.81
OvertimePay                    0.0
OtherPay                    112.92
Benefits                   1271.21
TotalPay                 127119.73
TotalPayBenefits         128390.94
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85121, dtype: object)
(85122, Id                                   85123
EmployeeName                  Jamal  Numan
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                        5415.23
OtherPay                           3507.39
Benefits                          31766.14
TotalPay                          96618.62
TotalPayBenefits                 128384.76
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85122, dtype: object)
(85123, Id                             85124
EmployeeName             Phu  Truong
JobTitle            Transit Operator
BasePay                     66972.32
OvertimePay                 26705.65
OtherPay                     1866.58
Benefits                    32822.86
TotalPay                    95544.55
TotalPayBenefits           128367.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85123, dtype: object)
(85124, Id                             85125
EmployeeName         Matthew  Fallau
JobTitle            Survey Associate
BasePay                     95502.52
OvertimePay                   183.41
OtherPay                         0.0
Benefits                    32680.99
TotalPay                    95685.93
TotalPayBenefits           128366.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85124, dtype: object)
(85125, Id                             85126
EmployeeName          Victor P Ramos
JobTitle            Transit Operator
BasePay                     66400.78
OvertimePay                 27551.34
OtherPay                     1860.37
Benefits                     32552.5
TotalPay                    95812.49
TotalPayBenefits           128364.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85125, dtype: object)
(85126, Id                                        85127
EmployeeName                   Andrea M Alfonso
JobTitle            Landscape Architect Assoc 1
BasePay                                95461.39
OvertimePay                              577.89
OtherPay                                    0.0
Benefits                               32325.62
TotalPay                               96039.28
TotalPayBenefits                       128364.9
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85126, dtype: object)
(85127, Id                                          85128
EmployeeName                      Beverly H Popek
JobTitle            Contract Compliance Officer 1
BasePay                                  94858.31
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33499.55
TotalPay                                 94858.31
TotalPayBenefits                        128357.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85127, dtype: object)
(85128, Id                                           85129
EmployeeName                     Gregory A Riessen
JobTitle            Planner 3-Environmental Review
BasePay                                   95771.87
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32579.86
TotalPay                                  95771.87
TotalPayBenefits                         128351.73
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85128, dtype: object)
(85129, Id                                     85130
EmployeeName                     ShihWei  Lu
JobTitle            Public Relations Officer
BasePay                             94102.57
OvertimePay                              0.0
OtherPay                              1530.0
Benefits                            32700.36
TotalPay                            95632.57
TotalPayBenefits                   128332.93
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85129, dtype: object)
(85130, Id                                         85131
EmployeeName                    Jana L Rickerson
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.06
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33479.26
TotalPay                                94851.06
TotalPayBenefits                       128330.32
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85130, dtype: object)
(85131, Id                                         85132
EmployeeName                       Akiko M Allen
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                 94851.02
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33479.26
TotalPay                                94851.02
TotalPayBenefits                       128330.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85131, dtype: object)
(85132, Id                                     85133
EmployeeName                     Annie T Low
JobTitle            Commercial Div Asst Sprv
BasePay                             88701.31
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39626.38
TotalPay                            88701.31
TotalPayBenefits                   128327.69
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85132, dtype: object)
(85133, Id                                85134
EmployeeName               Alan S Geist
JobTitle            IS Business Analyst
BasePay                        94694.57
OvertimePay                         0.0
OtherPay                        1106.64
Benefits                       32519.04
TotalPay                       95801.21
TotalPayBenefits              128320.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85133, dtype: object)
(85134, Id                                       85135
EmployeeName                 Maceo  Johnson II
JobTitle            Counselor, Log Cabin Ranch
BasePay                               72341.05
OvertimePay                           21193.83
OtherPay                               6721.19
Benefits                               28062.5
TotalPay                             100256.07
TotalPayBenefits                     128318.57
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85134, dtype: object)
(85135, Id                             85136
EmployeeName           George Y Wang
JobTitle            Transit Operator
BasePay                     67328.91
OvertimePay                 21927.86
OtherPay                     5166.47
Benefits                    33892.14
TotalPay                    94423.24
TotalPayBenefits           128315.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85135, dtype: object)
(85136, Id                                 85137
EmployeeName            Joseph L Padilla
JobTitle            Painter Supervisor 1
BasePay                         93455.02
OvertimePay                       2602.1
OtherPay                             0.0
Benefits                        32257.91
TotalPay                        96057.12
TotalPayBenefits               128315.03
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85136, dtype: object)
(85137, Id                                 85138
EmployeeName        Lance A Obtinalla JR
JobTitle                  Deputy Sheriff
BasePay                          90882.0
OvertimePay                       166.19
OtherPay                         5341.79
Benefits                        31919.62
TotalPay                        96389.98
TotalPayBenefits                128309.6
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85137, dtype: object)
(85138, Id                                   85139
EmployeeName                      San  Swe
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        26352.7
OtherPay                           5361.91
Benefits                          28202.87
TotalPay                         100105.61
TotalPayBenefits                 128308.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85138, dtype: object)
(85139, Id                                        85140
EmployeeName                 William T Burks Jr
JobTitle            Airport Communications Disp
BasePay                                81347.64
OvertimePay                             9121.24
OtherPay                                6790.14
Benefits                               31048.88
TotalPay                               97259.02
TotalPayBenefits                       128307.9
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85139, dtype: object)
(85140, Id                               85141
EmployeeName                 Paul  Lee
JobTitle            Transit Supervisor
BasePay                       75767.19
OvertimePay                   25340.68
OtherPay                        875.19
Benefits                      26317.11
TotalPay                     101983.06
TotalPayBenefits             128300.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85140, dtype: object)
(85141, Id                                85142
EmployeeName            Gregory K Louis
JobTitle            Transit Car Cleaner
BasePay                        58314.98
OvertimePay                    33395.94
OtherPay                        9974.16
Benefits                       26610.82
TotalPay                      101685.08
TotalPayBenefits               128295.9
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85141, dtype: object)
(85142, Id                           85143
EmployeeName        Suet Ying  Tse
JobTitle             Accountant IV
BasePay                   95553.34
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32726.97
TotalPay                  95553.34
TotalPayBenefits         128280.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85142, dtype: object)
(85143, Id                             85144
EmployeeName                Alex  Ho
JobTitle            Transit Operator
BasePay                     69353.68
OvertimePay                 22894.42
OtherPay                     2028.52
Benefits                    34001.52
TotalPay                    94276.62
TotalPayBenefits           128278.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85143, dtype: object)
(85144, Id                             85145
EmployeeName        Alonzo  Williams
JobTitle            Transit Operator
BasePay                     68976.43
OvertimePay                 20289.57
OtherPay                     4522.37
Benefits                     34483.6
TotalPay                    93788.37
TotalPayBenefits           128271.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85144, dtype: object)
(85145, Id                                      85146
EmployeeName                  Pavel  Keselman
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                           22539.3
OtherPay                             12527.38
Benefits                             28883.81
TotalPay                             99383.68
TotalPayBenefits                    128267.49
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85145, dtype: object)
(85146, Id                               85147
EmployeeName            Terrill U King
JobTitle            Transit Supervisor
BasePay                        80448.2
OvertimePay                    13806.3
OtherPay                       3302.93
Benefits                      30704.59
TotalPay                      97557.43
TotalPayBenefits             128262.02
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85146, dtype: object)
(85147, Id                                       85148
EmployeeName            Dimitra N Stathopoulos
JobTitle            Protective Services Worker
BasePay                               95151.91
OvertimePay                                0.0
OtherPay                                 440.0
Benefits                              32667.17
TotalPay                              95591.91
TotalPayBenefits                     128259.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85147, dtype: object)
(85148, Id                             85149
EmployeeName        Darrell A Rahman
JobTitle            Transit Operator
BasePay                     68165.23
OvertimePay                  20965.6
OtherPay                     4917.08
Benefits                    34210.64
TotalPay                    94047.91
TotalPayBenefits           128258.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85148, dtype: object)
(85149, Id                                           85150
EmployeeName                        Rico M Zucconi
JobTitle            Sr Statnry Eng, Wtr Treat Plnt
BasePay                                    89516.7
OvertimePay                                 291.14
OtherPay                                   6676.42
Benefits                                  31774.16
TotalPay                                  96484.26
TotalPayBenefits                         128258.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85149, dtype: object)
(85150, Id                                        85151
EmployeeName                Stephen B Fonsworth
JobTitle            Senior Power House Operator
BasePay                                85555.77
OvertimePay                            12001.74
OtherPay                                  31.55
Benefits                                30668.1
TotalPay                               97589.06
TotalPayBenefits                      128257.16
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85150, dtype: object)
(85151, Id                           85152
EmployeeName           Danny  Kelm
JobTitle            Safety Analyst
BasePay                    95963.6
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32291.59
TotalPay                   95963.6
TotalPayBenefits         128255.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85151, dtype: object)
(85152, Id                               85153
EmployeeName        Stephen H Wertheim
JobTitle                     Planner 3
BasePay                       96170.35
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32078.27
TotalPay                      96170.35
TotalPayBenefits             128248.62
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85152, dtype: object)
(85153, Id                                         85154
EmployeeName                   Ismaelito M Sotto
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86987.85
OvertimePay                              2554.48
OtherPay                                 6476.28
Benefits                                32227.52
TotalPay                                96018.61
TotalPayBenefits                       128246.13
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85153, dtype: object)
(85154, Id                             85155
EmployeeName        Edward D Proctor
JobTitle             Manager II, MTA
BasePay                     94794.32
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33407.65
TotalPay                    94794.32
TotalPayBenefits           128201.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85154, dtype: object)
(85155, Id                                  85156
EmployeeName        Carey L Richardson Jr
JobTitle                   Deputy Sheriff
BasePay                          85701.39
OvertimePay                        534.38
OtherPay                         10616.43
Benefits                         31343.28
TotalPay                          96852.2
TotalPayBenefits                128195.48
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85155, dtype: object)
(85156, Id                                        85157
EmployeeName                    Vincent  Hagins
JobTitle            Sr General Utility Mechanic
BasePay                                89288.11
OvertimePay                              6804.2
OtherPay                                 564.39
Benefits                               31536.95
TotalPay                                96656.7
TotalPayBenefits                      128193.65
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85156, dtype: object)
(85157, Id                          85158
EmployeeName         Mary K Brown
JobTitle                Planner 3
BasePay                  95490.74
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32700.33
TotalPay                 95490.74
TotalPayBenefits        128191.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85157, dtype: object)
(85158, Id                                    85159
EmployeeName              Alberto J Herrera
JobTitle            Engineering Associate 2
BasePay                            94102.53
OvertimePay                          1681.7
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           95784.23
TotalPayBenefits                   128184.6
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85158, dtype: object)
(85159, Id                             85160
EmployeeName                Huy D Lu
JobTitle            Survey Associate
BasePay                     95502.52
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32680.99
TotalPay                    95502.52
TotalPayBenefits           128183.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85159, dtype: object)
(85160, Id                             85161
EmployeeName        Cheryl C Herrera
JobTitle            Survey Associate
BasePay                      95502.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32680.99
TotalPay                     95502.5
TotalPayBenefits           128183.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85160, dtype: object)
(85161, Id                             85162
EmployeeName           Steven W Wilk
JobTitle            Survey Associate
BasePay                      95502.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32680.99
TotalPay                     95502.5
TotalPayBenefits           128183.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85161, dtype: object)
(85162, Id                                    85163
EmployeeName                  Sen C Saephan
JobTitle            Water Service Inspector
BasePay                            94757.64
OvertimePay                          523.95
OtherPay                              316.1
Benefits                           32584.44
TotalPay                           95597.69
TotalPayBenefits                  128182.13
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85162, dtype: object)
(85163, Id                             85164
EmployeeName         Larry B Roberts
JobTitle            Transit Operator
BasePay                      62641.4
OvertimePay                  33587.9
OtherPay                     1332.27
Benefits                    30619.95
TotalPay                    97561.57
TotalPayBenefits           128181.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85163, dtype: object)
(85164, Id                              85165
EmployeeName        Amelito B Gabriel
JobTitle             Transit Operator
BasePay                      69837.25
OvertimePay                  16973.72
OtherPay                      6037.52
Benefits                      35333.0
TotalPay                     92848.49
TotalPayBenefits            128181.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85164, dtype: object)
(85165, Id                                          85166
EmployeeName                   Johanna  Gendelman
JobTitle            Senior Administrative Analyst
BasePay                                  95869.85
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32290.05
TotalPay                                 95869.85
TotalPayBenefits                         128159.9
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85165, dtype: object)
(85166, Id                             85167
EmployeeName            Ivy J Spivey
JobTitle            Transit Operator
BasePay                     67284.63
OvertimePay                 22646.66
OtherPay                     4532.34
Benefits                    33695.21
TotalPay                    94463.63
TotalPayBenefits           128158.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85166, dtype: object)
(85167, Id                                         85168
EmployeeName                    Susan  Schneider
JobTitle            Senior Medical Social Worker
BasePay                                 94851.04
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                 32658.1
TotalPay                                95499.04
TotalPayBenefits                       128157.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85167, dtype: object)
(85168, Id                                         85169
EmployeeName                    Ellen M Sawamura
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.01
OvertimePay                                  0.0
OtherPay                                  648.01
Benefits                                32658.09
TotalPay                                95499.02
TotalPayBenefits                       128157.11
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85168, dtype: object)
(85169, Id                                         85170
EmployeeName                      Gary L Scherer
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                  94851.0
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                32658.09
TotalPay                                 95499.0
TotalPayBenefits                       128157.09
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85169, dtype: object)
(85170, Id                                85171
EmployeeName          Miguel A Mestayer
JobTitle            Stationary Engineer
BasePay                        87911.23
OvertimePay                     1198.88
OtherPay                        6632.98
Benefits                        32412.1
TotalPay                       95743.09
TotalPayBenefits              128155.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85170, dtype: object)
(85171, Id                          85172
EmployeeName         Larry K Gill
JobTitle                 Gardener
BasePay                   64641.0
OvertimePay              37017.93
OtherPay                      0.0
Benefits                 26485.59
TotalPay                101658.93
TotalPayBenefits        128144.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85171, dtype: object)
(85172, Id                                     85173
EmployeeName                     Jose  Ledon
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                              0.0
OtherPay                              1275.0
Benefits                            30701.09
TotalPay                            97427.53
TotalPayBenefits                   128128.62
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85172, dtype: object)
(85173, Id                                      85174
EmployeeName                       Alex  Hong
JobTitle            Assistant Const Inspector
BasePay                               81686.5
OvertimePay                          16509.27
OtherPay                                 9.41
Benefits                             29917.74
TotalPay                             98205.18
TotalPayBenefits                    128122.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85173, dtype: object)
(85174, Id                              85175
EmployeeName         Rosita V Gabriel
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  31477.61
OtherPay                        898.0
Benefits                     27351.13
TotalPay                    100766.61
TotalPayBenefits            128117.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85174, dtype: object)
(85175, Id                                85176
EmployeeName        Adrienne M Williams
JobTitle            Training Technician
BasePay                         88210.1
OvertimePay                         0.0
OtherPay                        7977.75
Benefits                       31911.63
TotalPay                       96187.85
TotalPayBenefits              128099.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85175, dtype: object)
(85176, Id                            85177
EmployeeName        John C K Jardin
JobTitle             Deputy Sheriff
BasePay                     86570.5
OvertimePay                 8808.57
OtherPay                    1084.17
Benefits                   31622.44
TotalPay                   96463.24
TotalPayBenefits          128085.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85176, dtype: object)
(85177, Id                                   85178
EmployeeName              Juliana A Bryant
JobTitle            Sr. Environmental Spec
BasePay                           95425.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32659.97
TotalPay                          95425.05
TotalPayBenefits                 128085.02
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85177, dtype: object)
(85178, Id                                   85179
EmployeeName              Frances J Yokota
JobTitle            Deputy Court Clerk III
BasePay                           90227.54
OvertimePay                            0.0
OtherPay                           5441.81
Benefits                          32413.98
TotalPay                          95669.35
TotalPayBenefits                 128083.33
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85178, dtype: object)
(85179, Id                                   85180
EmployeeName                    Tomo H Tom
JobTitle            Occupational Therapist
BasePay                            94547.0
OvertimePay                            0.0
OtherPay                             100.0
Benefits                          33435.85
TotalPay                           94647.0
TotalPayBenefits                 128082.85
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85179, dtype: object)
(85180, Id                                   85181
EmployeeName        Marco  Sanchez-Zamudio
JobTitle                    Police Officer
BasePay                           89631.06
OvertimePay                        4317.66
OtherPay                           2019.17
Benefits                          32113.95
TotalPay                          95967.89
TotalPayBenefits                 128081.84
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85180, dtype: object)
(85181, Id                                   85182
EmployeeName                Mike  Hanrahan
JobTitle            Admin Hearing Examiner
BasePay                           93197.07
OvertimePay                            0.0
OtherPay                            2230.0
Benefits                          32651.56
TotalPay                          95427.07
TotalPayBenefits                 128078.63
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85181, dtype: object)
(85182, Id                              85183
EmployeeName        Robert E Alvernaz
JobTitle             Registered Nurse
BasePay                      81365.22
OvertimePay                   4997.08
OtherPay                     13531.18
Benefits                     28184.58
TotalPay                     99893.48
TotalPayBenefits            128078.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85182, dtype: object)
(85183, Id                             85184
EmployeeName         Michael R Davis
JobTitle            Transit Operator
BasePay                     69293.47
OvertimePay                 23608.15
OtherPay                     1354.31
Benefits                    33819.98
TotalPay                    94255.93
TotalPayBenefits           128075.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85183, dtype: object)
(85184, Id                                       85185
EmployeeName                     Marva J Ridge
JobTitle            Protective Services Worker
BasePay                               94832.28
OvertimePay                                0.0
OtherPay                                 645.3
Benefits                              32597.76
TotalPay                              95477.58
TotalPayBenefits                     128075.34
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85184, dtype: object)
(85185, Id                            85186
EmployeeName        Ligaya C Cabral
JobTitle              Accountant IV
BasePay                    95348.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32726.84
TotalPay                   95348.02
TotalPayBenefits          128074.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85185, dtype: object)
(85186, Id                                   85187
EmployeeName                Sarah M Duenas
JobTitle            Deputy Court Clerk III
BasePay                           90227.55
OvertimePay                            0.0
OtherPay                           5544.59
Benefits                           32286.7
TotalPay                          95772.14
TotalPayBenefits                 128058.84
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85186, dtype: object)
(85187, Id                                   85188
EmployeeName             Catherine  Torres
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                        4053.52
OtherPay                           4347.39
Benefits                          31952.32
TotalPay                          96096.91
TotalPayBenefits                 128049.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85187, dtype: object)
(85188, Id                                     85189
EmployeeName                   Daniel S Chan
JobTitle            Deputy Probation Officer
BasePay                             96152.52
OvertimePay                              0.0
OtherPay                              1200.0
Benefits                            30687.28
TotalPay                            97352.52
TotalPayBenefits                    128039.8
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85188, dtype: object)
(85189, Id                          85190
EmployeeName          Allen J Lee
JobTitle             Chemist I/II
BasePay                  94869.51
OvertimePay                   0.0
OtherPay                    501.4
Benefits                 32660.79
TotalPay                 95370.91
TotalPayBenefits         128031.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85189, dtype: object)
(85190, Id                           85191
EmployeeName        Shawn C Imhoff
JobTitle            Police Officer
BasePay                   92259.05
OvertimePay                  54.73
OtherPay                   3304.47
Benefits                  32413.03
TotalPay                  95618.25
TotalPayBenefits         128031.28
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85190, dtype: object)
(85191, Id                                     85192
EmployeeName                     Pat M Young
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                          1400.44
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            97552.94
TotalPayBenefits                    128029.0
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85191, dtype: object)
(85192, Id                                       85193
EmployeeName                      Rachel  Cruz
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                 160.0
Benefits                              32632.65
TotalPay                              95389.04
TotalPayBenefits                     128021.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85192, dtype: object)
(85193, Id                          85194
EmployeeName        Sarjit  Singh
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               6123.29
OtherPay                  10255.2
Benefits                  31587.2
TotalPay                 96430.49
TotalPayBenefits        128017.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85193, dtype: object)
(85194, Id                                           85195
EmployeeName                      Thomas D Hoffman
JobTitle            Employee Relations Representat
BasePay                                   94547.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33470.28
TotalPay                                  94547.01
TotalPayBenefits                         128017.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85194, dtype: object)
(85195, Id                             85196
EmployeeName          Joseph  Miller
JobTitle            Transit Operator
BasePay                      70559.3
OvertimePay                 19696.55
OtherPay                     2907.64
Benefits                    34844.45
TotalPay                    93163.49
TotalPayBenefits           128007.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85195, dtype: object)
(85196, Id                                          85197
EmployeeName                     Lolita M Wilkins
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                  86530.05
OvertimePay                               2399.51
OtherPay                                  6849.09
Benefits                                 32223.51
TotalPay                                 95778.65
TotalPayBenefits                        128002.16
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85196, dtype: object)
(85197, Id                                85198
EmployeeName              Ralph L Reyes
JobTitle            IS Engineer-Journey
BasePay                         94572.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33429.36
TotalPay                        94572.8
TotalPayBenefits              128002.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85197, dtype: object)
(85198, Id                             85199
EmployeeName             Kenneth  Ma
JobTitle            Transit Operator
BasePay                     68673.53
OvertimePay                 22878.12
OtherPay                     2617.98
Benefits                    33832.49
TotalPay                    94169.63
TotalPayBenefits           128002.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85198, dtype: object)
(85199, Id                                       85200
EmployeeName                  Eleana J Arizaga
JobTitle            Protective Services Worker
BasePay                               94038.67
OvertimePay                                0.0
OtherPay                                1460.0
Benefits                              32501.37
TotalPay                              95498.67
TotalPayBenefits                     128000.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85199, dtype: object)
(85200, Id                                       85201
EmployeeName                         Amy  Wong
JobTitle            Mental Hlth Treatment Spec
BasePay                               93832.52
OvertimePay                              519.0
OtherPay                                1080.0
Benefits                              32559.25
TotalPay                              95431.52
TotalPayBenefits                     127990.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85200, dtype: object)
(85201, Id                                   85202
EmployeeName        Avinadar D Jaime Jiron
JobTitle                    Deputy Sheriff
BasePay                            90754.2
OvertimePay                        4098.47
OtherPay                           1661.22
Benefits                          31475.39
TotalPay                          96513.89
TotalPayBenefits                 127989.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85201, dtype: object)
(85202, Id                           85203
EmployeeName        Inder K Narula
JobTitle             Special Nurse
BasePay                   125291.1
OvertimePay                 766.24
OtherPay                   1929.29
Benefits                       0.0
TotalPay                 127986.63
TotalPayBenefits         127986.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85202, dtype: object)
(85203, Id                                   85204
EmployeeName         Regan Gina E Gonzales
JobTitle            Deputy Court Clerk III
BasePay                           89918.61
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                          32183.46
TotalPay                          95795.66
TotalPayBenefits                 127979.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85203, dtype: object)
(85204, Id                             85205
EmployeeName         Doris M Johnson
JobTitle            Transit Operator
BasePay                     67317.11
OvertimePay                 18639.12
OtherPay                     7495.42
Benefits                    34519.93
TotalPay                    93451.65
TotalPayBenefits           127971.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85204, dtype: object)
(85205, Id                            85206
EmployeeName        Philip  Fonseca
JobTitle            Utility Plumber
BasePay                    95611.64
OvertimePay                     0.0
OtherPay                       30.0
Benefits                   32313.71
TotalPay                   95641.64
TotalPayBenefits          127955.35
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85205, dtype: object)
(85206, Id                                    85207
EmployeeName                  Stanley S Chu
JobTitle            Engineering Associate 2
BasePay                            94100.95
OvertimePay                             0.0
OtherPay                             1199.3
Benefits                           32650.32
TotalPay                           95300.25
TotalPayBenefits                  127950.57
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85206, dtype: object)
(85207, Id                               85208
EmployeeName             Naomi R Zubin
JobTitle            Nurse Practitioner
BasePay                       98669.35
OvertimePay                        0.0
OtherPay                         400.0
Benefits                      28874.28
TotalPay                      99069.35
TotalPayBenefits             127943.63
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85207, dtype: object)
(85208, Id                             85209
EmployeeName        Delphine  Sedeno
JobTitle            Transit Operator
BasePay                     66090.82
OvertimePay                 29537.76
OtherPay                      319.66
Benefits                    31981.04
TotalPay                    95948.24
TotalPayBenefits           127929.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85208, dtype: object)
(85209, Id                              85210
EmployeeName        David R Marroquin
JobTitle                 Truck Driver
BasePay                       80052.0
OvertimePay                  11616.57
OtherPay                      5586.47
Benefits                      30673.2
TotalPay                     97255.04
TotalPayBenefits            127928.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85209, dtype: object)
(85210, Id                                   85211
EmployeeName                  Lisa A Ising
JobTitle            Construction Inspector
BasePay                           85456.25
OvertimePay                       11072.34
OtherPay                               0.0
Benefits                          31397.01
TotalPay                          96528.59
TotalPayBenefits                  127925.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85210, dtype: object)
(85211, Id                            85212
EmployeeName        Caleb G Miranda
JobTitle              Special Nurse
BasePay                   121619.81
OvertimePay                  395.25
OtherPay                    4642.85
Benefits                     1266.6
TotalPay                  126657.91
TotalPayBenefits          127924.51
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85211, dtype: object)
(85212, Id                               85213
EmployeeName            Robert T Parks
JobTitle            Transit Supervisor
BasePay                       91246.63
OvertimePay                     508.05
OtherPay                       3630.17
Benefits                      32530.89
TotalPay                      95384.85
TotalPayBenefits             127915.74
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85212, dtype: object)
(85213, Id                               85214
EmployeeName        Darrell L Gonzales
JobTitle                  Truck Driver
BasePay                        80052.0
OvertimePay                    14936.6
OtherPay                       2804.75
Benefits                      30121.98
TotalPay                      97793.35
TotalPayBenefits             127915.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85213, dtype: object)
(85214, Id                                       85215
EmployeeName                   Mary P Freschet
JobTitle            Sr Environmental Hlth Insp
BasePay                               96013.24
OvertimePay                                0.0
OtherPay                                1200.0
Benefits                              30688.05
TotalPay                              97213.24
TotalPayBenefits                     127901.29
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85214, dtype: object)
(85215, Id                               85216
EmployeeName        Antoinette J Wells
JobTitle              Transit Operator
BasePay                       70706.29
OvertimePay                   19736.56
OtherPay                       2631.32
Benefits                      34825.87
TotalPay                      93074.17
TotalPayBenefits             127900.04
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85215, dtype: object)
(85216, Id                          85217
EmployeeName        Mario  Encina
JobTitle              Electrician
BasePay                  95276.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32622.81
TotalPay                 95276.01
TotalPayBenefits        127898.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85216, dtype: object)
(85217, Id                          85218
EmployeeName           John C Tam
JobTitle              Electrician
BasePay                  95276.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32622.81
TotalPay                 95276.01
TotalPayBenefits        127898.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85217, dtype: object)
(85218, Id                            85219
EmployeeName        Leonard  Ancona
JobTitle                Electrician
BasePay                     95276.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32622.81
TotalPay                    95276.0
TotalPayBenefits          127898.81
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85218, dtype: object)
(85219, Id                               85220
EmployeeName              Ronald L Yee
JobTitle            Transit Supervisor
BasePay                        91449.0
OvertimePay                     1211.7
OtherPay                       2789.28
Benefits                       32444.9
TotalPay                      95449.98
TotalPayBenefits             127894.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85219, dtype: object)
(85220, Id                              85221
EmployeeName        Terrance S Counts
JobTitle             Transit Operator
BasePay                      68184.43
OvertimePay                  21179.72
OtherPay                      4436.49
Benefits                     34093.95
TotalPay                     93800.64
TotalPayBenefits            127894.59
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85220, dtype: object)
(85221, Id                                    85222
EmployeeName        Robin A Allen-Contreras
JobTitle                   Registered Nurse
BasePay                            93223.92
OvertimePay                             0.0
OtherPay                            6644.24
Benefits                           28022.03
TotalPay                           99868.16
TotalPayBenefits                  127890.19
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85221, dtype: object)
(85222, Id                             85223
EmployeeName         Pierre F Palaad
JobTitle            Registered Nurse
BasePay                     92809.72
OvertimePay                  3411.93
OtherPay                     8579.07
Benefits                    23088.87
TotalPay                   104800.72
TotalPayBenefits           127889.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85222, dtype: object)
(85223, Id                                       85224
EmployeeName                   Rachel N Krasno
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                  40.0
Benefits                              32619.29
TotalPay                              95269.04
TotalPayBenefits                     127888.33
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85223, dtype: object)
(85224, Id                                          85225
EmployeeName                  Armando J Solorzano
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                  82627.59
OvertimePay                              10326.01
OtherPay                                  4895.21
Benefits                                 30035.92
TotalPay                                 97848.81
TotalPayBenefits                        127884.73
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85224, dtype: object)
(85225, Id                             85226
EmployeeName        Evelyn A Diolazo
JobTitle              Accountant III
BasePay                     95239.14
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     32638.7
TotalPay                    95239.14
TotalPayBenefits           127877.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85225, dtype: object)
(85226, Id                                         85227
EmployeeName                        Ryan D Scott
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 79958.19
OvertimePay                              8964.58
OtherPay                                 7834.43
Benefits                                31110.72
TotalPay                                 96757.2
TotalPayBenefits                       127867.92
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85226, dtype: object)
(85227, Id                                        85228
EmployeeName                   Kathy J Thompson
JobTitle            Senior Physician Specialist
BasePay                                100140.4
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                27719.7
TotalPay                               100140.4
TotalPayBenefits                       127860.1
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85227, dtype: object)
(85228, Id                          85229
EmployeeName        Vernon W Fray
JobTitle              Electrician
BasePay                   50938.5
OvertimePay              23251.83
OtherPay                 35820.42
Benefits                 17841.81
TotalPay                110010.75
TotalPayBenefits        127852.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85228, dtype: object)
(85229, Id                                     85230
EmployeeName             Alejandro M Murillo
JobTitle            Public Relations Officer
BasePay                             94102.52
OvertimePay                              0.0
OtherPay                              1120.0
Benefits                            32621.07
TotalPay                            95222.52
TotalPayBenefits                   127843.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85229, dtype: object)
(85230, Id                                       85231
EmployeeName                    Sara O Bunting
JobTitle            Protective Services Worker
BasePay                               95229.09
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              95229.09
TotalPayBenefits                      127841.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85230, dtype: object)
(85231, Id                                       85232
EmployeeName                 Andrea M Pasillas
JobTitle            Protective Services Worker
BasePay                               95229.08
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              95229.08
TotalPayBenefits                     127841.09
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85231, dtype: object)
(85232, Id                                       85233
EmployeeName                  Sally M Regalado
JobTitle            Protective Services Worker
BasePay                               95229.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              95229.07
TotalPayBenefits                     127841.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85232, dtype: object)
(85233, Id                                       85234
EmployeeName                 Christine E Burns
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              95229.05
TotalPayBenefits                     127841.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85233, dtype: object)
(85234, Id                                       85235
EmployeeName                 Jaemie P Cadiente
JobTitle            Protective Services Worker
BasePay                               95229.05
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32612.01
TotalPay                              95229.05
TotalPayBenefits                     127841.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85234, dtype: object)
(85235, Id                                85236
EmployeeName             Terry N Maples
JobTitle            IS Business Analyst
BasePay                        94425.71
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33413.66
TotalPay                       94425.71
TotalPayBenefits              127839.37
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85235, dtype: object)
(85236, Id                                       85237
EmployeeName                  Brian D Baggaley
JobTitle            Protective Services Worker
BasePay                               95229.11
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32606.52
TotalPay                              95229.11
TotalPayBenefits                     127835.63
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85236, dtype: object)
(85237, Id                                       85238
EmployeeName                    Jeanine M Kwan
JobTitle            Protective Services Worker
BasePay                               95229.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32606.52
TotalPay                              95229.01
TotalPayBenefits                     127835.53
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85237, dtype: object)
(85238, Id                                         85239
EmployeeName                   Patrocinio  Menil
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              1213.01
OtherPay                                 6978.01
Benefits                                33113.87
TotalPay                                94721.02
TotalPayBenefits                       127834.89
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85238, dtype: object)
(85239, Id                                           85240
EmployeeName                       Steven L Benoit
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   95227.79
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32606.26
TotalPay                                  95227.79
TotalPayBenefits                         127834.05
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85239, dtype: object)
(85240, Id                                       85241
EmployeeName                 Fara R Richardson
JobTitle            Protective Services Worker
BasePay                               95229.06
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.06
TotalPayBenefits                      127830.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85240, dtype: object)
(85241, Id                                       85242
EmployeeName                    Rassan J Queen
JobTitle            Protective Services Worker
BasePay                               95229.06
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.06
TotalPayBenefits                      127830.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85241, dtype: object)
(85242, Id                                       85243
EmployeeName                        Bopha  Pum
JobTitle            Protective Services Worker
BasePay                               95229.04
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.04
TotalPayBenefits                     127830.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85242, dtype: object)
(85243, Id                                       85244
EmployeeName                   Wade A Ichimura
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.03
TotalPayBenefits                     127830.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85243, dtype: object)
(85244, Id                                       85245
EmployeeName                     Belinda C Liu
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.03
TotalPayBenefits                     127830.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85244, dtype: object)
(85245, Id                                       85246
EmployeeName                    Laurie L Golub
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.03
TotalPayBenefits                     127830.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85245, dtype: object)
(85246, Id                                       85247
EmployeeName                 Inthanong S Basto
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.03
TotalPayBenefits                     127830.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85246, dtype: object)
(85247, Id                                       85248
EmployeeName                       Mabel  Chan
JobTitle            Protective Services Worker
BasePay                               95229.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32601.04
TotalPay                              95229.03
TotalPayBenefits                     127830.07
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85247, dtype: object)
(85248, Id                                85249
EmployeeName         Jeanette M Asplund
JobTitle            Stationary Engineer
BasePay                         78784.7
OvertimePay                      9535.0
OtherPay                        7745.82
Benefits                       31760.57
TotalPay                       96065.52
TotalPayBenefits              127826.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85248, dtype: object)
(85249, Id                                       85250
EmployeeName                   Mary A Cabarles
JobTitle            Protective Services Worker
BasePay                               95225.94
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32599.95
TotalPay                              95225.94
TotalPayBenefits                     127825.89
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85249, dtype: object)
(85250, Id                             85251
EmployeeName             Andrew  Lin
JobTitle            Transit Operator
BasePay                     68952.26
OvertimePay                 21361.34
OtherPay                      3346.9
Benefits                    34158.19
TotalPay                     93660.5
TotalPayBenefits           127818.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85250, dtype: object)
(85251, Id                                        85252
EmployeeName                 Donald E Tarver II
JobTitle            Senior Physician Specialist
BasePay                                 96602.1
OvertimePay                                 0.0
OtherPay                                4830.46
Benefits                               26381.39
TotalPay                              101432.56
TotalPayBenefits                      127813.95
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85251, dtype: object)
(85252, Id                                       85253
EmployeeName                    Nelson E Valle
JobTitle            Senior Stationary Engineer
BasePay                               84924.51
OvertimePay                            5147.65
OtherPay                               6621.33
Benefits                              31115.64
TotalPay                              96693.49
TotalPayBenefits                     127809.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85252, dtype: object)
(85253, Id                                85254
EmployeeName        Richard W Andreotti
JobTitle               Police Officer 3
BasePay                        77741.03
OvertimePay                    16207.34
OtherPay                        8779.85
Benefits                        25077.6
TotalPay                      102728.22
TotalPayBenefits              127805.82
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85253, dtype: object)
(85254, Id                                     85255
EmployeeName           Christopher S Griffin
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                          1141.13
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            97293.63
TotalPayBenefits                   127769.69
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85254, dtype: object)
(85255, Id                             85256
EmployeeName            Yanyuan  Liu
JobTitle            Epidemiologist 2
BasePay                     95146.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     32617.1
TotalPay                    95146.51
TotalPayBenefits           127763.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85255, dtype: object)
(85256, Id                             85257
EmployeeName            Ronie  Gamit
JobTitle            Transit Operator
BasePay                     67065.58
OvertimePay                 27338.82
OtherPay                       787.2
Benefits                    32567.94
TotalPay                     95191.6
TotalPayBenefits           127759.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85256, dtype: object)
(85257, Id                                         85258
EmployeeName                     Agnes L Alarcon
JobTitle            Hospital Elig Wrk Supervisor
BasePay                                 91692.05
OvertimePay                              3329.23
OtherPay                                   727.0
Benefits                                32007.89
TotalPay                                95748.28
TotalPayBenefits                       127756.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85257, dtype: object)
(85258, Id                                 85259
EmployeeName        Ericka Y Allensworth
JobTitle                Transit Operator
BasePay                         68861.04
OvertimePay                     20095.99
OtherPay                         4385.23
Benefits                        34406.67
TotalPay                        93342.26
TotalPayBenefits               127748.93
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85258, dtype: object)
(85259, Id                                      85260
EmployeeName                  Leah L Estipona
JobTitle            Licensed Vocational Nurse
BasePay                              73593.48
OvertimePay                          17097.69
OtherPay                              7393.52
Benefits                             29662.78
TotalPay                             98084.69
TotalPayBenefits                    127747.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85259, dtype: object)
(85260, Id                                     85261
EmployeeName                        Juyi  Lu
JobTitle            Public Relations Officer
BasePay                             94102.53
OvertimePay                              0.0
OtherPay                              1040.0
Benefits                            32604.66
TotalPay                            95142.53
TotalPayBenefits                   127747.19
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85260, dtype: object)
(85261, Id                                    85262
EmployeeName                 George  Aluska
JobTitle            Program Support Analyst
BasePay                             95180.4
OvertimePay                             0.0
OtherPay                              604.8
Benefits                           31937.23
TotalPay                            95785.2
TotalPayBenefits                  127722.43
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85261, dtype: object)
(85262, Id                           85263
EmployeeName         Patti A Flynn
JobTitle            Deputy Sheriff
BasePay                   89332.51
OvertimePay                  33.22
OtherPay                   7215.44
Benefits                  31137.58
TotalPay                  96581.17
TotalPayBenefits         127718.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85262, dtype: object)
(85263, Id                                    85264
EmployeeName                Henson L Gawliu
JobTitle            Engineering Associate 2
BasePay                            94100.93
OvertimePay                             0.0
OtherPay                            1025.26
Benefits                           32586.61
TotalPay                           95126.19
TotalPayBenefits                   127712.8
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85263, dtype: object)
(85264, Id                               85265
EmployeeName         Margaret R McNiel
JobTitle            Nurse Practitioner
BasePay                        91518.9
OvertimePay                    6501.99
OtherPay                       2266.14
Benefits                      27411.77
TotalPay                     100287.03
TotalPayBenefits              127698.8
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85264, dtype: object)
(85265, Id                                     85266
EmployeeName            Moegagogo M Tamasese
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                          1062.82
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            97215.33
TotalPayBenefits                   127691.39
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85265, dtype: object)
(85266, Id                             85267
EmployeeName        James R Billones
JobTitle              Deputy Sheriff
BasePay                     92917.88
OvertimePay                   272.42
OtherPay                     2941.68
Benefits                    31553.89
TotalPay                    96131.98
TotalPayBenefits           127685.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85266, dtype: object)
(85267, Id                                   85268
EmployeeName               Michael J Lynch
JobTitle            Carpenter Supervisor 1
BasePay                            86230.5
OvertimePay                        6880.29
OtherPay                            2330.0
Benefits                          32243.95
TotalPay                          95440.79
TotalPayBenefits                 127684.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85267, dtype: object)
(85268, Id                                        85269
EmployeeName                   Annette M Taylor
JobTitle            Senior Management Assistant
BasePay                                89829.04
OvertimePay                                 0.0
OtherPay                                5366.08
Benefits                               32483.48
TotalPay                               95195.12
TotalPayBenefits                       127678.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85268, dtype: object)
(85269, Id                                         85270
EmployeeName                    Michael R Murphy
JobTitle            Sprv, Traffic & Street Signs
BasePay                                 95006.02
OvertimePay                                  0.0
OtherPay                                   65.44
Benefits                                32595.21
TotalPay                                95071.46
TotalPayBenefits                       127666.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85269, dtype: object)
(85270, Id                                   85271
EmployeeName                 Candace  Wong
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4889.5
Benefits                          32546.19
TotalPay                           95117.0
TotalPayBenefits                 127663.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85270, dtype: object)
(85271, Id                                          85272
EmployeeName                      Grace A Oconnor
JobTitle            Senior Administrative Analyst
BasePay                                  95295.84
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32362.94
TotalPay                                 95295.84
TotalPayBenefits                        127658.78
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85271, dtype: object)
(85272, Id                            85273
EmployeeName        Susan K Crozier
JobTitle             Court Reporter
BasePay                    89470.89
OvertimePay                     0.0
OtherPay                    7953.57
Benefits                   30232.21
TotalPay                   97424.46
TotalPayBenefits          127656.67
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85272, dtype: object)
(85273, Id                                 85274
EmployeeName               Fred  Strauss
JobTitle            Physician Specialist
BasePay                          75828.6
OvertimePay                          0.0
OtherPay                         32244.1
Benefits                         19583.7
TotalPay                        108072.7
TotalPayBenefits                127656.4
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85273, dtype: object)
(85274, Id                             85275
EmployeeName         Roderick  Mills
JobTitle            Transit Operator
BasePay                     67194.01
OvertimePay                 21275.24
OtherPay                     5320.29
Benefits                    33844.09
TotalPay                    93789.54
TotalPayBenefits           127633.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85274, dtype: object)
(85275, Id                               85276
EmployeeName         Russell K Stanton
JobTitle            Transit Supervisor
BasePay                        81630.0
OvertimePay                    12448.5
OtherPay                        3005.4
Benefits                      30539.49
TotalPay                       97083.9
TotalPayBenefits             127623.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85275, dtype: object)
(85276, Id                          85277
EmployeeName        David H Wicks
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay              11325.72
OtherPay                   4771.0
Benefits                 31472.71
TotalPay                 96148.72
TotalPayBenefits        127621.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85276, dtype: object)
(85277, Id                                85278
EmployeeName              George H Ball
JobTitle            IS Business Analyst
BasePay                        94240.91
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33377.51
TotalPay                       94240.91
TotalPayBenefits              127618.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85277, dtype: object)
(85278, Id                                       85279
EmployeeName                    Sharon L Grace
JobTitle            Protective Services Worker
BasePay                               95063.73
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32547.43
TotalPay                              95063.73
TotalPayBenefits                     127611.16
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85278, dtype: object)
(85279, Id                              85280
EmployeeName        Benedict E Oyobio
JobTitle             Transit Operator
BasePay                      66884.04
OvertimePay                  26602.88
OtherPay                      1455.73
Benefits                     32656.77
TotalPay                     94942.65
TotalPayBenefits            127599.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85279, dtype: object)
(85280, Id                                   85281
EmployeeName                Eric  Zuercher
JobTitle            Animal Care Supervisor
BasePay                           70596.92
OvertimePay                            0.0
OtherPay                          28979.57
Benefits                           28020.5
TotalPay                          99576.49
TotalPayBenefits                 127596.99
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85280, dtype: object)
(85281, Id                                      85282
EmployeeName                     Maura F Lane
JobTitle            Ex Asst to the Controller
BasePay                              95006.07
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             32581.26
TotalPay                             95006.07
TotalPayBenefits                    127587.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85281, dtype: object)
(85282, Id                                          85283
EmployeeName                       Sue A Blackman
JobTitle            Secretary, Library Commission
BasePay                                  95006.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32581.26
TotalPay                                 95006.04
TotalPayBenefits                         127587.3
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85282, dtype: object)
(85283, Id                                85284
EmployeeName             Matthew S Plut
JobTitle            Stationary Engineer
BasePay                         78937.9
OvertimePay                     4134.77
OtherPay                       13883.51
Benefits                       30629.94
TotalPay                       96956.18
TotalPayBenefits              127586.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85283, dtype: object)
(85284, Id                                         85285
EmployeeName                       Elyse  Miller
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.06
OvertimePay                                  0.0
OtherPay                                   168.0
Benefits                                32566.58
TotalPay                                95019.06
TotalPayBenefits                       127585.64
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85284, dtype: object)
(85285, Id                                          85286
EmployeeName                         Cory L Young
JobTitle            Operating Engineer, Universal
BasePay                                   92293.5
OvertimePay                               2329.55
OtherPay                                    780.0
Benefits                                 32180.75
TotalPay                                 95403.05
TotalPayBenefits                         127583.8
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85285, dtype: object)
(85286, Id                                   85287
EmployeeName        Patrick G Ledbetter Sr
JobTitle                  Transit Operator
BasePay                           68237.54
OvertimePay                       21055.56
OtherPay                           4207.04
Benefits                          34078.15
TotalPay                          93500.14
TotalPayBenefits                 127578.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85286, dtype: object)
(85287, Id                                           85288
EmployeeName                           Nelson  Tse
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                               11436.53
OtherPay                                    2800.0
Benefits                                  30659.67
TotalPay                                  96918.04
TotalPayBenefits                         127577.71
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85287, dtype: object)
(85288, Id                                      85289
EmployeeName                     Monica  Soto
JobTitle            Psychiatric Social Worker
BasePay                              90525.05
OvertimePay                               0.0
OtherPay                              5115.97
Benefits                              31933.1
TotalPay                             95641.02
TotalPayBenefits                    127574.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85288, dtype: object)
(85289, Id                                         85290
EmployeeName                   Otoniel  Granados
JobTitle            Automotive Body & Fender Wrk
BasePay                                 67457.04
OvertimePay                             34259.27
OtherPay                                   550.0
Benefits                                 25304.9
TotalPay                               102266.31
TotalPayBenefits                       127571.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85289, dtype: object)
(85290, Id                                   85291
EmployeeName              Shauna D Markham
JobTitle            Public SafetyComm Disp
BasePay                            77120.0
OvertimePay                       12822.98
OtherPay                           6393.92
Benefits                          31196.07
TotalPay                           96336.9
TotalPayBenefits                 127532.97
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85290, dtype: object)
(85291, Id                              85292
EmployeeName        Albert T Williams
JobTitle             Transit Operator
BasePay                      67780.26
OvertimePay                  18446.43
OtherPay                      6757.42
Benefits                     34535.79
TotalPay                     92984.11
TotalPayBenefits             127519.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85291, dtype: object)
(85292, Id                             85293
EmployeeName        Matthew  Webster
JobTitle                Truck Driver
BasePay                     78219.43
OvertimePay                 16469.24
OtherPay                      3286.2
Benefits                     29541.9
TotalPay                    97974.87
TotalPayBenefits           127516.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85292, dtype: object)
(85293, Id                                  85294
EmployeeName              Christina K Liu
JobTitle            Clinical Psychologist
BasePay                           94186.8
OvertimePay                           0.0
OtherPay                          1941.43
Benefits                         31387.82
TotalPay                         96128.23
TotalPayBenefits                127516.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85293, dtype: object)
(85294, Id                                   85295
EmployeeName              Frances D Rohwer
JobTitle            Public SafetyComm Disp
BasePay                            87127.6
OvertimePay                         3926.8
OtherPay                           4674.51
Benefits                          31785.18
TotalPay                          95728.91
TotalPayBenefits                 127514.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85294, dtype: object)
(85295, Id                                    85296
EmployeeName             Maureen M Randolph
JobTitle            Water Service Inspector
BasePay                            94437.62
OvertimePay                          1100.4
OtherPay                              92.58
Benefits                            31875.9
TotalPay                            95630.6
TotalPayBenefits                   127506.5
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85295, dtype: object)
(85296, Id                                      85297
EmployeeName                  Eduardo C Sunga
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          22165.04
OtherPay                             12226.22
Benefits                              28802.4
TotalPay                             98703.46
TotalPayBenefits                    127505.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85296, dtype: object)
(85297, Id                                       85298
EmployeeName                Patricia E Monahan
JobTitle            Protective Services Worker
BasePay                               85529.82
OvertimePay                            5416.59
OtherPay                               6224.02
Benefits                              30331.95
TotalPay                              97170.43
TotalPayBenefits                     127502.38
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85297, dtype: object)
(85298, Id                               85299
EmployeeName        Catherine V Delneo
JobTitle                   Librarian 2
BasePay                       94028.82
OvertimePay                        0.0
OtherPay                        922.64
Benefits                      32548.01
TotalPay                      94951.46
TotalPayBenefits             127499.47
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85298, dtype: object)
(85299, Id                                     85300
EmployeeName                   Wael S Seruge
JobTitle            Senior Personnel Analyst
BasePay                              94864.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             32616.4
TotalPay                             94864.0
TotalPayBenefits                    127480.4
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85299, dtype: object)
(85300, Id                          85301
EmployeeName         Robert Y Mau
JobTitle                Asst Engr
BasePay                  95057.44
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32422.19
TotalPay                 95057.44
TotalPayBenefits        127479.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85300, dtype: object)
(85301, Id                                           85302
EmployeeName                            John H Gee
JobTitle            Electrical Transit System Mech
BasePay                                   82674.91
OvertimePay                                3028.21
OtherPay                                   9767.45
Benefits                                  32008.81
TotalPay                                  95470.57
TotalPayBenefits                         127479.38
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85301, dtype: object)
(85302, Id                                     85303
EmployeeName                  Tristan H Cook
JobTitle            Public Relations Officer
BasePay                             94102.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             33341.4
TotalPay                            94102.51
TotalPayBenefits                   127443.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85302, dtype: object)
(85303, Id                             85304
EmployeeName        Anthony  Bettiga
JobTitle                 Pile Worker
BasePay                     89738.68
OvertimePay                  5489.56
OtherPay                       650.0
Benefits                    31562.64
TotalPay                    95878.24
TotalPayBenefits           127440.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85303, dtype: object)
(85304, Id                            85305
EmployeeName        Bob M Berkovatz
JobTitle             Deputy Sheriff
BasePay                    92896.83
OvertimePay                  238.51
OtherPay                    2529.38
Benefits                   31775.23
TotalPay                   95664.72
TotalPayBenefits          127439.95
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85304, dtype: object)
(85305, Id                             85306
EmployeeName             David  Chow
JobTitle            Transit Operator
BasePay                     68676.23
OvertimePay                 22052.67
OtherPay                     2813.02
Benefits                    33894.24
TotalPay                    93541.92
TotalPayBenefits           127436.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85305, dtype: object)
(85306, Id                                         85307
EmployeeName                      Kevin T Heaney
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.02
OvertimePay                                  0.0
OtherPay                                    35.0
Benefits                                32538.06
TotalPay                                94886.02
TotalPayBenefits                       127424.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85306, dtype: object)
(85307, Id                               85308
EmployeeName        Francisco  Andrade
JobTitle                Deputy Sheriff
BasePay                       90330.27
OvertimePay                      33.05
OtherPay                       5324.29
Benefits                      31730.48
TotalPay                      95687.61
TotalPayBenefits             127418.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85307, dtype: object)
(85308, Id                              85309
EmployeeName        Edward F Thompson
JobTitle            Transit Manager 1
BasePay                      93129.01
OvertimePay                       0.0
OtherPay                       1701.0
Benefits                      32580.3
TotalPay                     94830.01
TotalPayBenefits            127410.31
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85308, dtype: object)
(85309, Id                                   85310
EmployeeName                Leonor  Millan
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       25227.06
OtherPay                           5537.54
Benefits                          28254.22
TotalPay                           99155.6
TotalPayBenefits                 127409.82
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85309, dtype: object)
(85310, Id                             85311
EmployeeName        Helen  Vozenilek
JobTitle                 Electrician
BasePay                     91161.95
OvertimePay                  3794.88
OtherPay                     1131.34
Benefits                    31318.89
TotalPay                    96088.17
TotalPayBenefits           127407.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85310, dtype: object)
(85311, Id                             85312
EmployeeName        Sophia M Hayward
JobTitle                   Planner 3
BasePay                     95681.43
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31714.37
TotalPay                    95681.43
TotalPayBenefits            127395.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85311, dtype: object)
(85312, Id                                        85313
EmployeeName                      Alan H.Y. Lai
JobTitle            Senior Physician Specialist
BasePay                                96231.11
OvertimePay                                 0.0
OtherPay                                4811.92
Benefits                               26343.85
TotalPay                              101043.03
TotalPayBenefits                      127386.88
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85312, dtype: object)
(85313, Id                                        85314
EmployeeName                      Richard B Lum
JobTitle            Station Agent, Muni Railway
BasePay                                80825.56
OvertimePay                            12912.51
OtherPay                                3224.67
Benefits                               30420.97
TotalPay                               96962.74
TotalPayBenefits                      127383.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85313, dtype: object)
(85314, Id                                         85315
EmployeeName                  Gloria A Frederico
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                 94851.06
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32530.74
TotalPay                                94851.06
TotalPayBenefits                        127381.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85314, dtype: object)
(85315, Id                                         85316
EmployeeName                      Peter C Morris
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.05
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32530.74
TotalPay                                94851.05
TotalPayBenefits                       127381.79
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85315, dtype: object)
(85316, Id                                         85317
EmployeeName                   David M Nakanishi
JobTitle            Sr Psychiatric Social Worker
BasePay                                 94851.04
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32530.74
TotalPay                                94851.04
TotalPayBenefits                       127381.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85316, dtype: object)
(85317, Id                                         85318
EmployeeName                   Kathleen K Hamill
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                  94851.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32530.74
TotalPay                                 94851.0
TotalPayBenefits                       127381.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85317, dtype: object)
(85318, Id                                85319
EmployeeName          Fernando  Gabriel
JobTitle            Stationary Engineer
BasePay                        80033.32
OvertimePay                      4836.8
OtherPay                       10889.95
Benefits                       31620.66
TotalPay                       95760.07
TotalPayBenefits              127380.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85318, dtype: object)
(85319, Id                                         85320
EmployeeName                     Jimmey  Parrish
JobTitle            Cement Finisher Supervisor 1
BasePay                                  86480.6
OvertimePay                              11496.0
OtherPay                                  550.16
Benefits                                28853.71
TotalPay                                98526.76
TotalPayBenefits                       127380.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85319, dtype: object)
(85320, Id                                         85321
EmployeeName                    Cheryl R Kirksey
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 88294.15
OvertimePay                                  0.0
OtherPay                                 6594.86
Benefits                                32490.16
TotalPay                                94889.01
TotalPayBenefits                       127379.17
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85320, dtype: object)
(85321, Id                                  85322
EmployeeName        Godfrey B De La Torre
JobTitle                        Asst Engr
BasePay                          94816.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         32562.58
TotalPay                         94816.01
TotalPayBenefits                127378.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85321, dtype: object)
(85322, Id                                           85323
EmployeeName                          Dennis M Dea
JobTitle            Electrical Transit System Mech
BasePay                                   82678.22
OvertimePay                               13880.26
OtherPay                                     600.0
Benefits                                  30218.13
TotalPay                                  97158.48
TotalPayBenefits                         127376.61
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85322, dtype: object)
(85323, Id                                          85324
EmployeeName                       Daniel D Smith
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.05
OvertimePay                               1928.96
OtherPay                                  6733.14
Benefits                                 32181.01
TotalPay                                 95188.15
TotalPayBenefits                        127369.16
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85323, dtype: object)
(85324, Id                               85325
EmployeeName        Preston  Donaldson
JobTitle              Transit Operator
BasePay                       70257.61
OvertimePay                   15893.57
OtherPay                       7015.63
Benefits                      34202.01
TotalPay                      93166.81
TotalPayBenefits             127368.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85324, dtype: object)
(85325, Id                                     85326
EmployeeName               Vicente R Centeno
JobTitle            Senior Personnel Analyst
BasePay                             94841.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32525.06
TotalPay                            94841.53
TotalPayBenefits                   127366.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85325, dtype: object)
(85326, Id                            85327
EmployeeName         Russell D Yuen
JobTitle            Utility Plumber
BasePay                    94922.74
OvertimePay                     0.0
OtherPay                      270.0
Benefits                   32171.51
TotalPay                   95192.74
TotalPayBenefits          127364.25
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85326, dtype: object)
(85327, Id                                          85328
EmployeeName                     David P Ghiselin
JobTitle            Automotive Mechanic Asst Sprv
BasePay                                  84123.51
OvertimePay                               6602.51
OtherPay                                  5085.44
Benefits                                 31550.53
TotalPay                                 95811.46
TotalPayBenefits                        127361.99
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85327, dtype: object)
(85328, Id                             85329
EmployeeName          Roman  Ancheta
JobTitle            Transit Operator
BasePay                     68438.29
OvertimePay                 22768.58
OtherPay                     2462.04
Benefits                    33690.99
TotalPay                    93668.91
TotalPayBenefits            127359.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85328, dtype: object)
(85329, Id                              85330
EmployeeName        Eric J Huddleston
JobTitle             Transit Operator
BasePay                      68270.61
OvertimePay                  20245.84
OtherPay                      4636.31
Benefits                     34199.26
TotalPay                     93152.76
TotalPayBenefits            127352.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85329, dtype: object)
(85330, Id                                         85331
EmployeeName                       Lesley J Head
JobTitle            Health Program Coordinator 3
BasePay                                 94015.81
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33331.53
TotalPay                                94015.81
TotalPayBenefits                       127347.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85330, dtype: object)
(85331, Id                             85332
EmployeeName        Armando  Palacio
JobTitle            Transit Operator
BasePay                     68606.56
OvertimePay                  18891.2
OtherPay                      5310.1
Benefits                    34533.68
TotalPay                    92807.86
TotalPayBenefits           127341.54
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85331, dtype: object)
(85332, Id                                        85333
EmployeeName                 Lisardo M Planells
JobTitle            Station Agent, Muni Railway
BasePay                                78820.18
OvertimePay                            15384.39
OtherPay                                3396.86
Benefits                               29727.71
TotalPay                               97601.43
TotalPayBenefits                      127329.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85332, dtype: object)
(85333, Id                                           85334
EmployeeName                       Keith D Nesbitt
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.15
OvertimePay                                  636.1
OtherPay                                   3818.31
Benefits                                  32172.22
TotalPay                                  95147.56
TotalPayBenefits                         127319.78
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85333, dtype: object)
(85334, Id                            85335
EmployeeName        Donna J Siegman
JobTitle                Electrician
BasePay                    92441.82
OvertimePay                     0.0
OtherPay                     1920.0
Benefits                   32950.32
TotalPay                   94361.82
TotalPayBenefits          127312.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85334, dtype: object)
(85335, Id                            85336
EmployeeName        Rowena S Lomboy
JobTitle             Accountant III
BasePay                    95961.55
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31324.76
TotalPay                   95961.55
TotalPayBenefits          127286.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85335, dtype: object)
(85336, Id                             85337
EmployeeName           Juan G Ibarra
JobTitle            Epidemiologist 2
BasePay                     93945.56
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     33337.4
TotalPay                    93945.56
TotalPayBenefits           127282.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85336, dtype: object)
(85337, Id                                           85338
EmployeeName                     Damon M Spigelman
JobTitle            Arborist Technician Supervisor
BasePay                                   84173.86
OvertimePay                               11761.31
OtherPay                                    1398.6
Benefits                                   29947.1
TotalPay                                  97333.77
TotalPayBenefits                         127280.87
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85337, dtype: object)
(85338, Id                                         85339
EmployeeName              Fathina Andrea  Holmes
JobTitle            Employment & Training Spec 5
BasePay                                  93979.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 33300.6
TotalPay                                 93979.0
TotalPayBenefits                        127279.6
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85338, dtype: object)
(85339, Id                             85340
EmployeeName            Sue K Martin
JobTitle            Registered Nurse
BasePay                     95746.43
OvertimePay                      0.0
OtherPay                      274.82
Benefits                     31252.4
TotalPay                    96021.25
TotalPayBenefits           127273.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85339, dtype: object)
(85340, Id                                           85341
EmployeeName                     Ardele B Leavelle
JobTitle            Senior Real Property Appraiser
BasePay                                   91757.54
OvertimePay                                    0.0
OtherPay                                    2200.0
Benefits                                  33314.73
TotalPay                                  93957.54
TotalPayBenefits                         127272.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85340, dtype: object)
(85341, Id                             85342
EmployeeName         Hector  Godinez
JobTitle            Transit Operator
BasePay                     68592.67
OvertimePay                 15683.76
OtherPay                     7788.48
Benefits                    35205.98
TotalPay                    92064.91
TotalPayBenefits           127270.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85341, dtype: object)
(85342, Id                                   85343
EmployeeName             Deborah A Johnson
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                           4749.47
Benefits                           32286.7
TotalPay                          94976.97
TotalPayBenefits                 127263.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85342, dtype: object)
(85343, Id                                      85344
EmployeeName                       Dewey  Yen
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          19440.64
OtherPay                             14304.36
Benefits                             29199.91
TotalPay                              98057.2
TotalPayBenefits                    127257.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85343, dtype: object)
(85344, Id                                     85345
EmployeeName                  George C Green
JobTitle            Main Machinist Asst Sprv
BasePay                             94736.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32514.74
TotalPay                            94736.02
TotalPayBenefits                   127250.76
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85344, dtype: object)
(85345, Id                             85346
EmployeeName                 Ken  Ma
JobTitle            Transit Operator
BasePay                     67176.88
OvertimePay                 25733.42
OtherPay                     1532.33
Benefits                    32807.38
TotalPay                    94442.63
TotalPayBenefits           127250.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85345, dtype: object)
(85346, Id                                        85347
EmployeeName                    Kelly M Cornell
JobTitle            Arborist Technician Supv II
BasePay                                93426.57
OvertimePay                                 0.0
OtherPay                                1274.01
Benefits                               32542.29
TotalPay                               94700.58
TotalPayBenefits                      127242.87
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85346, dtype: object)
(85347, Id                             85348
EmployeeName           Henry  Cheung
JobTitle            Transit Operator
BasePay                     67226.76
OvertimePay                  24654.7
OtherPay                     2274.59
Benefits                    33085.25
TotalPay                    94156.05
TotalPayBenefits            127241.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85347, dtype: object)
(85348, Id                             85349
EmployeeName           Roel  Villaro
JobTitle            Transit Operator
BasePay                     68894.66
OvertimePay                  21237.0
OtherPay                     3047.61
Benefits                    34058.53
TotalPay                    93179.27
TotalPayBenefits            127237.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85348, dtype: object)
(85349, Id                             85350
EmployeeName          Marvin T Stowe
JobTitle            Transit Operator
BasePay                     66221.05
OvertimePay                 24061.54
OtherPay                     3971.06
Benefits                     32968.1
TotalPay                    94253.65
TotalPayBenefits           127221.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85349, dtype: object)
(85350, Id                                85351
EmployeeName             Neal E Hemming
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                     16827.4
OtherPay                        1703.84
Benefits                        30217.3
TotalPay                       97001.84
TotalPayBenefits              127219.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85350, dtype: object)
(85351, Id                                85352
EmployeeName                   Anna  Yu
JobTitle            IS Business Analyst
BasePay                        94694.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32519.05
TotalPay                       94694.62
TotalPayBenefits              127213.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85351, dtype: object)
(85352, Id                                85353
EmployeeName            Christina  Leal
JobTitle            IS Business Analyst
BasePay                        94694.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32519.04
TotalPay                       94694.57
TotalPayBenefits              127213.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85352, dtype: object)
(85353, Id                                85354
EmployeeName                 Eric S Yee
JobTitle            IS Business Analyst
BasePay                        94694.56
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32519.03
TotalPay                       94694.56
TotalPayBenefits              127213.59
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85353, dtype: object)
(85354, Id                                85355
EmployeeName           Cirila  Santiago
JobTitle            IS Business Analyst
BasePay                        94694.54
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        32519.0
TotalPay                       94694.54
TotalPayBenefits              127213.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85354, dtype: object)
(85355, Id                                85356
EmployeeName            Verwina A Roble
JobTitle            IS Business Analyst
BasePay                        94694.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        32519.0
TotalPay                       94694.53
TotalPayBenefits              127213.53
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85355, dtype: object)
(85356, Id                                85357
EmployeeName             Anthony V Wong
JobTitle            IS Business Analyst
BasePay                        94694.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        32519.0
TotalPay                       94694.51
TotalPayBenefits              127213.51
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85356, dtype: object)
(85357, Id                                85358
EmployeeName           Ellen A Saulnier
JobTitle            IS Business Analyst
BasePay                        94694.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        32519.0
TotalPay                       94694.51
TotalPayBenefits              127213.51
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85357, dtype: object)
(85358, Id                                85359
EmployeeName          Arthur M Deguzman
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32518.99
TotalPay                        94694.5
TotalPayBenefits              127213.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85358, dtype: object)
(85359, Id                                 85360
EmployeeName        Steven David  Massey
JobTitle             IS Business Analyst
BasePay                          94694.5
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        32518.99
TotalPay                         94694.5
TotalPayBenefits               127213.49
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85359, dtype: object)
(85360, Id                                85361
EmployeeName             Scott C Oswald
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32518.99
TotalPay                        94694.5
TotalPayBenefits              127213.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85360, dtype: object)
(85361, Id                                85362
EmployeeName              Sean A Stasio
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32518.99
TotalPay                        94694.5
TotalPayBenefits              127213.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85361, dtype: object)
(85362, Id                                85363
EmployeeName        Proceso M Hernandez
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32518.99
TotalPay                        94694.5
TotalPayBenefits              127213.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85362, dtype: object)
(85363, Id                                85364
EmployeeName          Bernadette  Magee
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32518.99
TotalPay                        94694.5
TotalPayBenefits              127213.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85363, dtype: object)
(85364, Id                                     85365
EmployeeName        Christopher J Wisniewski
JobTitle                 IS Business Analyst
BasePay                              94694.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32518.99
TotalPay                             94694.5
TotalPayBenefits                   127213.49
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85364, dtype: object)
(85365, Id                                85366
EmployeeName           Rafael D Cabreja
JobTitle            IS Business Analyst
BasePay                         94694.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32517.14
TotalPay                        94694.5
TotalPayBenefits              127211.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85365, dtype: object)
(85366, Id                                      85367
EmployeeName                    William  Wong
JobTitle            EMT/Paramedic/Firefighter
BasePay                               87586.4
OvertimePay                           9433.46
OtherPay                               160.24
Benefits                             30030.83
TotalPay                              97180.1
TotalPayBenefits                    127210.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85366, dtype: object)
(85367, Id                                85368
EmployeeName               Kelly T Ting
JobTitle            IS Business Analyst
BasePay                        94692.86
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32513.26
TotalPay                       94692.86
TotalPayBenefits              127206.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85367, dtype: object)
(85368, Id                                85369
EmployeeName          Salahuddin  Ahmed
JobTitle            IS Business Analyst
BasePay                        94694.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32510.56
TotalPay                       94694.53
TotalPayBenefits              127205.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85368, dtype: object)
(85369, Id                               85370
EmployeeName                Greg  Hill
JobTitle            Plumbing Inspector
BasePay                       91974.37
OvertimePay                      316.7
OtherPay                       4599.28
Benefits                      30314.58
TotalPay                      96890.35
TotalPayBenefits             127204.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85369, dtype: object)
(85370, Id                                85371
EmployeeName              Jose F Castro
JobTitle            IS Business Analyst
BasePay                         94683.3
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32508.83
TotalPay                        94683.3
TotalPayBenefits              127192.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85370, dtype: object)
(85371, Id                                        85372
EmployeeName                     Anthony P Tsao
JobTitle            Station Agent, Muni Railway
BasePay                                80304.73
OvertimePay                            12850.31
OtherPay                                3704.06
Benefits                               30331.64
TotalPay                                96859.1
TotalPayBenefits                      127190.74
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85371, dtype: object)
(85372, Id                                85373
EmployeeName             Stephen L Mehl
JobTitle            IS Business Analyst
BasePay                        94694.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32494.82
TotalPay                       94694.52
TotalPayBenefits              127189.34
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85372, dtype: object)
(85373, Id                                        85374
EmployeeName                     Ayana A Malone
JobTitle            Station Agent, Muni Railway
BasePay                                 62284.8
OvertimePay                            40506.89
OtherPay                                 980.29
Benefits                               23412.13
TotalPay                              103771.98
TotalPayBenefits                      127184.11
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85373, dtype: object)
(85374, Id                          85375
EmployeeName          Carol  Isen
JobTitle               Manager VI
BasePay                  93459.93
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  33714.4
TotalPay                 93459.93
TotalPayBenefits        127174.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85374, dtype: object)
(85375, Id                                       85376
EmployeeName                  Robert D Edwards
JobTitle            Piledriver Engine Operator
BasePay                                83693.7
OvertimePay                           12596.56
OtherPay                               1639.03
Benefits                              29241.04
TotalPay                              97929.29
TotalPayBenefits                     127170.33
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85375, dtype: object)
(85376, Id                              85377
EmployeeName         Olivia D Quesada
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  24774.52
OtherPay                      5699.62
Benefits                     28292.94
TotalPay                     98865.14
TotalPayBenefits            127158.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85376, dtype: object)
(85377, Id                                     85378
EmployeeName                 Manuel J Mendez
JobTitle            Deputy Probation Officer
BasePay                             96595.64
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30556.16
TotalPay                            96595.64
TotalPayBenefits                    127151.8
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85377, dtype: object)
(85378, Id                                         85379
EmployeeName                      Michael S Tong
JobTitle            Institutional Police Officer
BasePay                                 71658.02
OvertimePay                             20039.09
OtherPay                                 7272.09
Benefits                                28173.41
TotalPay                                 98969.2
TotalPayBenefits                       127142.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85378, dtype: object)
(85379, Id                                 85380
EmployeeName                John T Tynan
JobTitle            Painter Supervisor 1
BasePay                         89512.39
OvertimePay                      6664.51
OtherPay                             0.0
Benefits                         30963.8
TotalPay                         96176.9
TotalPayBenefits                127140.7
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85379, dtype: object)
(85380, Id                                      85381
EmployeeName               Lindsey Chow Drake
JobTitle            Attorney (Civil/Criminal)
BasePay                              88134.74
OvertimePay                               0.0
OtherPay                             10179.75
Benefits                              28824.9
TotalPay                             98314.49
TotalPayBenefits                    127139.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85380, dtype: object)
(85381, Id                                          85382
EmployeeName                     Robinson  Oguike
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                  87912.02
OvertimePay                                   0.0
OtherPay                                  6725.72
Benefits                                  32498.6
TotalPay                                 94637.74
TotalPayBenefits                        127136.34
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85381, dtype: object)
(85382, Id                                        85383
EmployeeName                        Joan  Tayag
JobTitle            Airport Communications Disp
BasePay                                81480.39
OvertimePay                            13365.21
OtherPay                                2111.85
Benefits                               30170.88
TotalPay                               96957.45
TotalPayBenefits                      127128.33
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85382, dtype: object)
(85383, Id                          85384
EmployeeName        Phil W Arnold
JobTitle               Dep Dir IV
BasePay                  76791.02
OvertimePay                   0.0
OtherPay                 33037.58
Benefits                 17299.04
TotalPay                 109828.6
TotalPayBenefits        127127.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85383, dtype: object)
(85384, Id                                   85385
EmployeeName                   Ema  Sasaki
JobTitle            Public SafetyComm Disp
BasePay                            82059.1
OvertimePay                        5434.71
OtherPay                           8812.88
Benefits                          30818.11
TotalPay                          96306.69
TotalPayBenefits                  127124.8
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85384, dtype: object)
(85385, Id                                 85386
EmployeeName             John A Scannell
JobTitle            Sewer Service Worker
BasePay                         92927.05
OvertimePay                      2044.89
OtherPay                             0.0
Benefits                        32152.27
TotalPay                        94971.94
TotalPayBenefits               127124.21
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85385, dtype: object)
(85386, Id                                          85387
EmployeeName                      Theresa M Lopez
JobTitle            Senior Administrative Analyst
BasePay                                  94020.93
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33089.63
TotalPay                                 94020.93
TotalPayBenefits                        127110.56
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85386, dtype: object)
(85387, Id                                 85388
EmployeeName          Gabriel A Elgrably
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                     14866.66
OtherPay                         1285.75
Benefits                        30816.98
TotalPay                        96285.41
TotalPayBenefits               127102.39
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85387, dtype: object)
(85388, Id                             85389
EmployeeName                Hui  Guo
JobTitle            Transit Operator
BasePay                     68926.55
OvertimePay                 19760.34
OtherPay                     4039.65
Benefits                    34357.85
TotalPay                    92726.54
TotalPayBenefits           127084.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85388, dtype: object)
(85389, Id                                       85390
EmployeeName                 Maryela L Padilla
JobTitle            Protective Services Worker
BasePay                               92969.43
OvertimePay                                0.0
OtherPay                                1600.0
Benefits                              32506.94
TotalPay                              94569.43
TotalPayBenefits                     127076.37
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85389, dtype: object)
(85390, Id                          85391
EmployeeName          Lorna  Chee
JobTitle              Librarian 2
BasePay                  91206.06
OvertimePay                   0.0
OtherPay                  3406.61
Benefits                 32460.35
TotalPay                 94612.67
TotalPayBenefits        127073.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85390, dtype: object)
(85391, Id                                         85392
EmployeeName                   Rebecca S Needens
JobTitle            Sr Marriage, Fam & Cld Cnslr
BasePay                                 94554.64
OvertimePay                                  0.0
OtherPay                                    75.0
Benefits                                32440.63
TotalPay                                94629.64
TotalPayBenefits                       127070.27
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85391, dtype: object)
(85392, Id                                     85393
EmployeeName                 Andrea A Wright
JobTitle            Deputy Probation Officer
BasePay                             96526.65
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30541.75
TotalPay                            96526.65
TotalPayBenefits                    127068.4
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85392, dtype: object)
(85393, Id                                      85394
EmployeeName             Michael B Pendergast
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74643.0
OvertimePay                          10628.35
OtherPay                             10992.43
Benefits                             30799.23
TotalPay                             96263.78
TotalPayBenefits                    127063.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85393, dtype: object)
(85394, Id                                   85395
EmployeeName                 Audrey C Huie
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                           4375.52
Benefits                          32456.91
TotalPay                          94603.03
TotalPayBenefits                 127059.94
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85394, dtype: object)
(85395, Id                             85396
EmployeeName        Michael W Fenton
JobTitle              Accountant III
BasePay                     93200.61
OvertimePay                      0.0
OtherPay                      1340.0
Benefits                    32518.13
TotalPay                    94540.61
TotalPayBenefits           127058.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85395, dtype: object)
(85396, Id                             85397
EmployeeName             Claire  Sit
JobTitle            Dental Hygienist
BasePay                     93933.01
OvertimePay                      0.0
OtherPay                       648.0
Benefits                    32474.24
TotalPay                    94581.01
TotalPayBenefits           127055.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85396, dtype: object)
(85397, Id                                   85398
EmployeeName           Priscilla A Agbunag
JobTitle            Deputy Court Clerk III
BasePay                           89245.65
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                          31932.42
TotalPay                           95122.7
TotalPayBenefits                 127055.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85397, dtype: object)
(85398, Id                                           85399
EmployeeName                      Carmen S Velasco
JobTitle            Court Administrative Secretary
BasePay                                   87236.53
OvertimePay                                    0.0
OtherPay                                    7983.0
Benefits                                  31813.76
TotalPay                                  95219.53
TotalPayBenefits                         127033.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85398, dtype: object)
(85399, Id                               85400
EmployeeName         Genevieve N Handy
JobTitle            Nurse Practitioner
BasePay                       95514.36
OvertimePay                        0.0
OtherPay                        482.09
Benefits                      31036.41
TotalPay                      95996.45
TotalPayBenefits             127032.86
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85399, dtype: object)
(85400, Id                              85401
EmployeeName            Lita E Chavez
JobTitle            Nursing Assistant
BasePay                      68391.01
OvertimePay                  24874.34
OtherPay                      5497.02
Benefits                     28263.38
TotalPay                     98762.37
TotalPayBenefits            127025.75
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85400, dtype: object)
(85401, Id                             85402
EmployeeName            Megan I Wall
JobTitle            Epidemiologist 2
BasePay                     93727.13
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    33295.42
TotalPay                    93727.13
TotalPayBenefits           127022.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85401, dtype: object)
(85402, Id                             85403
EmployeeName         Susannah B Levy
JobTitle            Registered Nurse
BasePay                     88100.04
OvertimePay                  2482.75
OtherPay                    10410.08
Benefits                    26020.59
TotalPay                   100992.87
TotalPayBenefits           127013.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85402, dtype: object)
(85403, Id                                      85404
EmployeeName              Monica  Szu-Whitney
JobTitle            Architectural Assistant 2
BasePay                              85761.55
OvertimePay                          10515.69
OtherPay                                  0.0
Benefits                             30732.71
TotalPay                             96277.24
TotalPayBenefits                    127009.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85403, dtype: object)
(85404, Id                                           85405
EmployeeName                     Cedric L McKinney
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                   4610.04
Benefits                                  31698.05
TotalPay                                  95303.06
TotalPayBenefits                         127001.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85404, dtype: object)
(85405, Id                                     85406
EmployeeName              Yesenia E Esquivel
JobTitle            Deputy Probation Officer
BasePay                              96460.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30527.67
TotalPay                             96460.5
TotalPayBenefits                   126988.17
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85405, dtype: object)
(85406, Id                                85407
EmployeeName            Stepan N Guzhva
JobTitle            Stationary Engineer
BasePay                         78467.7
OvertimePay                     4035.18
OtherPay                        12741.2
Benefits                       31741.41
TotalPay                       95244.08
TotalPayBenefits              126985.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85406, dtype: object)
(85407, Id                               85408
EmployeeName        Kenneth C McDougal
JobTitle              Transit Operator
BasePay                       70275.34
OvertimePay                   18330.21
OtherPay                       3520.58
Benefits                      34854.45
TotalPay                      92126.13
TotalPayBenefits             126980.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85407, dtype: object)
(85408, Id                          85409
EmployeeName        Kevin  Cooper
JobTitle                  Glazier
BasePay                   85585.0
OvertimePay               5208.14
OtherPay                   4600.3
Benefits                 31583.91
TotalPay                 95393.44
TotalPayBenefits        126977.35
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85408, dtype: object)
(85409, Id                                          85410
EmployeeName                        Sherry L Hall
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  94500.33
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32474.52
TotalPay                                 94500.33
TotalPayBenefits                        126974.85
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85409, dtype: object)
(85410, Id                              85411
EmployeeName        Enrique H Sanchez
JobTitle                 Truck Driver
BasePay                      80052.02
OvertimePay                   4244.61
OtherPay                     10938.69
Benefits                     31727.87
TotalPay                     95235.32
TotalPayBenefits            126963.19
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85410, dtype: object)
(85411, Id                                      85412
EmployeeName                     Felipe  Lepe
JobTitle            Assistant Const Inspector
BasePay                              81686.51
OvertimePay                          15530.11
OtherPay                                  0.0
Benefits                             29741.42
TotalPay                             97216.62
TotalPayBenefits                    126958.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85411, dtype: object)
(85412, Id                                          85413
EmployeeName                  Louise  Winterstein
JobTitle            Criminal Justice Specialist 2
BasePay                                   93420.0
OvertimePay                                   0.0
OtherPay                                   1080.0
Benefits                                 32455.73
TotalPay                                  94500.0
TotalPayBenefits                        126955.73
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85412, dtype: object)
(85413, Id                             85414
EmployeeName          Gary R Maestas
JobTitle            Transit Operator
BasePay                     68153.72
OvertimePay                 19724.94
OtherPay                     4861.11
Benefits                    34209.12
TotalPay                    92739.77
TotalPayBenefits           126948.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85413, dtype: object)
(85414, Id                                85415
EmployeeName        Domingo E Bobila Jr
JobTitle               Registered Nurse
BasePay                        94423.07
OvertimePay                     3973.73
OtherPay                        6004.99
Benefits                       22536.59
TotalPay                      104401.79
TotalPayBenefits              126938.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85414, dtype: object)
(85415, Id                              85416
EmployeeName        Laura B Stonehill
JobTitle                    Asst Engr
BasePay                      93677.45
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     33254.67
TotalPay                     93677.45
TotalPayBenefits            126932.12
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85415, dtype: object)
(85416, Id                                     85417
EmployeeName              Teresa M Notarmaso
JobTitle            Senior Personnel Analyst
BasePay                             93667.22
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33263.29
TotalPay                            93667.22
TotalPayBenefits                   126930.51
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85416, dtype: object)
(85417, Id                                     85418
EmployeeName                 Roberto A Lopez
JobTitle            Public Relations Officer
BasePay                             94403.87
OvertimePay                              0.0
OtherPay                                46.0
Benefits                            32464.86
TotalPay                            94449.87
TotalPayBenefits                   126914.73
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85417, dtype: object)
(85418, Id                                        85419
EmployeeName                   Hilary  Stoermer
JobTitle            Senior Industrial Hygienist
BasePay                                97659.86
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29253.27
TotalPay                               97659.86
TotalPayBenefits                      126913.13
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85418, dtype: object)
(85419, Id                                85420
EmployeeName              William  Blas
JobTitle            Stationary Engineer
BasePay                        78182.75
OvertimePay                     8314.54
OtherPay                         9418.0
Benefits                        30996.2
TotalPay                       95915.29
TotalPayBenefits              126911.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85419, dtype: object)
(85420, Id                                           85421
EmployeeName                      David A Ishikawa
JobTitle            IT Operations Support Admin IV
BasePay                                   93650.61
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  33260.11
TotalPay                                  93650.61
TotalPayBenefits                         126910.72
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85420, dtype: object)
(85421, Id                                           85422
EmployeeName                     Chelsea E Fordham
JobTitle            Planner 3-Environmental Review
BasePay                                   94436.92
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32471.66
TotalPay                                  94436.92
TotalPayBenefits                         126908.58
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85421, dtype: object)
(85422, Id                                          85423
EmployeeName                        Sean  O'Boyle
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                   89290.1
OvertimePay                               1698.19
OtherPay                                  3838.77
Benefits                                  32079.1
TotalPay                                 94827.06
TotalPayBenefits                        126906.16
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85422, dtype: object)
(85423, Id                                          85424
EmployeeName                       Kenton  Owyang
JobTitle            Senior Administrative Analyst
BasePay                                  94425.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32474.18
TotalPay                                 94425.01
TotalPayBenefits                        126899.19
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85423, dtype: object)
(85424, Id                                     85425
EmployeeName                 Michael A Jones
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                            268.5
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96421.03
TotalPayBenefits                   126897.09
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85424, dtype: object)
(85425, Id                                     85426
EmployeeName            P Kent  Gaughenbaugh
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                           265.88
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96418.41
TotalPayBenefits                   126894.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85425, dtype: object)
(85426, Id                             85427
EmployeeName        Francis M Warren
JobTitle            Transit Operator
BasePay                     67382.64
OvertimePay                 20585.79
OtherPay                     5072.51
Benefits                    33850.38
TotalPay                    93040.94
TotalPayBenefits           126891.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85426, dtype: object)
(85427, Id                                     85428
EmployeeName                 David C Coleman
JobTitle            Senior Personnel Analyst
BasePay                             93634.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33256.92
TotalPay                            93634.01
TotalPayBenefits                   126890.93
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85427, dtype: object)
(85428, Id                                   85429
EmployeeName                Suzanne T Borg
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                        2046.24
OtherPay                           5055.71
Benefits                          32087.82
TotalPay                          94797.95
TotalPayBenefits                 126885.77
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85428, dtype: object)
(85429, Id                             85430
EmployeeName           Joseph  Sylva
JobTitle            Transit Operator
BasePay                     66134.52
OvertimePay                 26119.87
OtherPay                     2164.59
Benefits                     32462.5
TotalPay                    94418.98
TotalPayBenefits           126881.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85429, dtype: object)
(85430, Id                                   85431
EmployeeName                Daniel I Cohen
JobTitle            Airport Safety Officer
BasePay                            78876.0
OvertimePay                       13744.67
OtherPay                           3306.63
Benefits                          30938.44
TotalPay                           95927.3
TotalPayBenefits                 126865.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85430, dtype: object)
(85431, Id                                         85432
EmployeeName                   Gene F McCutcheon
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86207.82
OvertimePay                                  0.0
OtherPay                                 8277.92
Benefits                                32378.44
TotalPay                                94485.74
TotalPayBenefits                       126864.18
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85431, dtype: object)
(85432, Id                                     85433
EmployeeName                 Armando  Garcia
JobTitle            Deputy Probation Officer
BasePay                             96242.01
OvertimePay                              0.0
OtherPay                               100.0
Benefits                            30508.93
TotalPay                            96342.01
TotalPayBenefits                   126850.94
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85432, dtype: object)
(85433, Id                             85434
EmployeeName          Sean S Chatman
JobTitle            Transit Operator
BasePay                     60045.76
OvertimePay                 28620.08
OtherPay                     7128.59
Benefits                     31047.5
TotalPay                    95794.43
TotalPayBenefits           126841.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85433, dtype: object)
(85434, Id                                85435
EmployeeName        Benjamin S Mosqueda
JobTitle               Transit Operator
BasePay                        69016.25
OvertimePay                    17277.18
OtherPay                        5693.87
Benefits                       34854.03
TotalPay                        91987.3
TotalPayBenefits              126841.33
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85434, dtype: object)
(85435, Id                                     85436
EmployeeName              William E Miles II
JobTitle            Senior Personnel Analyst
BasePay                             94381.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32457.88
TotalPay                            94381.03
TotalPayBenefits                   126838.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85435, dtype: object)
(85436, Id                                     85437
EmployeeName                 Arturo  Herrera
JobTitle            Deputy Probation Officer
BasePay                             96329.75
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             30508.1
TotalPay                            96329.75
TotalPayBenefits                   126837.85
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85436, dtype: object)
(85437, Id                                          85438
EmployeeName                      Michael S Diana
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                  87663.32
OvertimePay                               2261.18
OtherPay                                  5199.56
Benefits                                  31711.7
TotalPay                                 95124.06
TotalPayBenefits                        126835.76
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85437, dtype: object)
(85438, Id                             85439
EmployeeName          Stanley S Yang
JobTitle            Transit Operator
BasePay                     68338.17
OvertimePay                 20268.15
OtherPay                     4142.36
Benefits                    34085.56
TotalPay                    92748.68
TotalPayBenefits           126834.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85438, dtype: object)
(85439, Id                                     85440
EmployeeName              Jeannette  Sanchez
JobTitle            Public Relations Officer
BasePay                             92542.15
OvertimePay                              0.0
OtherPay                              1040.0
Benefits                            33250.03
TotalPay                            93582.15
TotalPayBenefits                   126832.18
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85439, dtype: object)
(85440, Id                                     85441
EmployeeName                   Tony M Hurley
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                           201.38
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96353.88
TotalPayBenefits                   126829.94
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85440, dtype: object)
(85441, Id                               85442
EmployeeName        Gerardo A Gonzalez
JobTitle              Transit Operator
BasePay                       68037.99
OvertimePay                   20357.45
OtherPay                       4411.47
Benefits                      34018.57
TotalPay                      92806.91
TotalPayBenefits             126825.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85441, dtype: object)
(85442, Id                                85443
EmployeeName            Sui Feng  Huang
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                     6647.84
OtherPay                        9576.54
Benefits                       31313.42
TotalPay                       95507.89
TotalPayBenefits              126821.31
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85442, dtype: object)
(85443, Id                                        85444
EmployeeName                     Darryl A Brown
JobTitle            Communications Dispatcher 2
BasePay                                64346.48
OvertimePay                            34720.93
OtherPay                                1230.83
Benefits                               26518.51
TotalPay                              100298.24
TotalPayBenefits                      126816.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85443, dtype: object)
(85444, Id                             85445
EmployeeName        Eric V Petterson
JobTitle              Police Officer
BasePay                      96582.9
OvertimePay                      0.0
OtherPay                      850.94
Benefits                    29377.66
TotalPay                    97433.84
TotalPayBenefits            126811.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85444, dtype: object)
(85445, Id                               85446
EmployeeName        Hector M Rodriguez
JobTitle                  Truck Driver
BasePay                        80052.0
OvertimePay                   14569.37
OtherPay                        2177.5
Benefits                      30000.68
TotalPay                      96798.87
TotalPayBenefits             126799.55
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85445, dtype: object)
(85446, Id                                 85447
EmployeeName        Rachael D Macfarland
JobTitle                Registered Nurse
BasePay                         86500.02
OvertimePay                      4484.56
OtherPay                        12755.86
Benefits                        23049.36
TotalPay                       103740.44
TotalPayBenefits                126789.8
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85446, dtype: object)
(85447, Id                                   85448
EmployeeName               Katherine E Cox
JobTitle            Deputy Court Clerk III
BasePay                           90227.56
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.98
TotalPay                          94375.56
TotalPayBenefits                 126789.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85447, dtype: object)
(85448, Id                                     85449
EmployeeName                      Wan K Chio
JobTitle            Senior Fiscal Technician
BasePay                             90227.54
OvertimePay                              0.0
OtherPay                              4148.0
Benefits                            32413.97
TotalPay                            94375.54
TotalPayBenefits                   126789.51
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85448, dtype: object)
(85449, Id                                   85450
EmployeeName             Kevin R Dougherty
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.96
TotalPay                          94375.52
TotalPayBenefits                 126789.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85449, dtype: object)
(85450, Id                                   85451
EmployeeName                Dennis D Vegas
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                           4148.01
Benefits                          32413.96
TotalPay                          94375.52
TotalPayBenefits                 126789.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85450, dtype: object)
(85451, Id                                   85452
EmployeeName                   Kevin M Lee
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                           4148.01
Benefits                          32413.94
TotalPay                          94375.53
TotalPayBenefits                 126789.47
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85451, dtype: object)
(85452, Id                                   85453
EmployeeName             Jose  Rios-Merida
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.95
TotalPay                          94375.52
TotalPayBenefits                 126789.47
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85452, dtype: object)
(85453, Id                                   85454
EmployeeName                     Ron  Ross
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.95
TotalPay                          94375.51
TotalPayBenefits                 126789.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85453, dtype: object)
(85454, Id                                   85455
EmployeeName              Annabel M Cownan
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                          94375.52
TotalPayBenefits                 126789.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85454, dtype: object)
(85455, Id                                   85456
EmployeeName               Clark R Banayad
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.95
TotalPay                          94375.51
TotalPayBenefits                 126789.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85455, dtype: object)
(85456, Id                                     85457
EmployeeName                    Mabel S Wong
JobTitle            Senior Fiscal Technician
BasePay                             90227.51
OvertimePay                              0.0
OtherPay                              4148.0
Benefits                            32413.95
TotalPay                            94375.51
TotalPayBenefits                   126789.46
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85456, dtype: object)
(85457, Id                                   85458
EmployeeName               Valaida S Mason
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                          94375.51
TotalPayBenefits                 126789.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85457, dtype: object)
(85458, Id                                   85459
EmployeeName           Jeanulilia V Tualla
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                          94375.51
TotalPayBenefits                 126789.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85458, dtype: object)
(85459, Id                                   85460
EmployeeName               Danial W Lemire
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                          94375.51
TotalPayBenefits                 126789.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85459, dtype: object)
(85460, Id                                   85461
EmployeeName                   Param  Natt
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85460, dtype: object)
(85461, Id                                   85462
EmployeeName                    Kevin  Lee
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85461, dtype: object)
(85462, Id                                   85463
EmployeeName                Fausto J Howay
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85462, dtype: object)
(85463, Id                                   85464
EmployeeName                Dana M Okazaki
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85463, dtype: object)
(85464, Id                                   85465
EmployeeName              James E Stringer
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85464, dtype: object)
(85465, Id                                   85466
EmployeeName            Craig R Blackstone
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85465, dtype: object)
(85466, Id                                   85467
EmployeeName        Sajja  Ravinantapricha
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85466, dtype: object)
(85467, Id                                   85468
EmployeeName             Cynthia S Herbert
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85467, dtype: object)
(85468, Id                                   85469
EmployeeName         Jannette S Gomez-Wong
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85468, dtype: object)
(85469, Id                                   85470
EmployeeName                 Maria S Sison
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32413.94
TotalPay                           94375.5
TotalPayBenefits                 126789.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85469, dtype: object)
(85470, Id                                   85471
EmployeeName                   Lotus L Jew
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          32412.66
TotalPay                          94375.51
TotalPayBenefits                 126788.17
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85470, dtype: object)
(85471, Id                                   85472
EmployeeName             Andrei  Afanasiev
JobTitle            Airport Safety Officer
BasePay                           80590.45
OvertimePay                       11834.05
OtherPay                           3094.34
Benefits                          31267.26
TotalPay                          95518.84
TotalPayBenefits                  126786.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85471, dtype: object)
(85472, Id                            85473
EmployeeName        Kwai Kuen  Chan
JobTitle              Accountant IV
BasePay                     94316.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32468.29
TotalPay                    94316.5
TotalPayBenefits          126784.79
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85472, dtype: object)
(85473, Id                                85474
EmployeeName                  Sue  Wong
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                    16489.81
OtherPay                          74.56
Benefits                       29660.79
TotalPay                       97105.37
TotalPayBenefits              126766.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85473, dtype: object)
(85474, Id                                         85475
EmployeeName                       Josie C Buzon
JobTitle            Wastewater Control Inspector
BasePay                                 94102.53
OvertimePay                               262.73
OtherPay                                     0.0
Benefits                                32400.37
TotalPay                                94365.26
TotalPayBenefits                       126765.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85474, dtype: object)
(85475, Id                                85476
EmployeeName                 Danny D Ho
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     6330.19
OtherPay                         9778.8
Benefits                       31356.52
TotalPay                       95392.49
TotalPayBenefits              126749.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85475, dtype: object)
(85476, Id                                     85477
EmployeeName                  Reginald W Bey
JobTitle            Deputy Probation Officer
BasePay                              96242.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30503.89
TotalPay                             96242.0
TotalPayBenefits                   126745.89
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85476, dtype: object)
(85477, Id                                        85478
EmployeeName                     Yun-Chen  Wang
JobTitle            Senior Management Assistant
BasePay                                94320.55
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               32424.41
TotalPay                               94320.55
TotalPayBenefits                      126744.96
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85477, dtype: object)
(85478, Id                                85479
EmployeeName               Wallace  Lee
JobTitle            Stationary Engineer
BasePay                        78473.54
OvertimePay                      917.19
OtherPay                        16769.1
Benefits                       30584.54
TotalPay                       96159.83
TotalPayBenefits              126744.37
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85478, dtype: object)
(85479, Id                               85480
EmployeeName        Jose Luis  Herrera
JobTitle              Transit Operator
BasePay                       69841.08
OvertimePay                   17164.18
OtherPay                       4771.79
Benefits                      34964.96
TotalPay                      91777.05
TotalPayBenefits             126742.01
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85479, dtype: object)
(85480, Id                             85481
EmployeeName          ChiaTang  Jing
JobTitle            Transit Operator
BasePay                     66928.34
OvertimePay                 21915.57
OtherPay                     4437.47
Benefits                     33455.1
TotalPay                    93281.38
TotalPayBenefits           126736.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85480, dtype: object)
(85481, Id                                     85482
EmployeeName                  Nixon P Lazaro
JobTitle            Deputy Probation Officer
BasePay                             96242.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30491.35
TotalPay                            96242.03
TotalPayBenefits                   126733.38
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85481, dtype: object)
(85482, Id                                     85483
EmployeeName                  Chris  Cordero
JobTitle            Deputy Probation Officer
BasePay                              96242.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30491.35
TotalPay                             96242.0
TotalPayBenefits                   126733.35
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85482, dtype: object)
(85483, Id                                     85484
EmployeeName                   Paul A Cuadra
JobTitle            Deputy Probation Officer
BasePay                              96242.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30491.34
TotalPay                             96242.0
TotalPayBenefits                   126733.34
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85483, dtype: object)
(85484, Id                                     85485
EmployeeName          Germaine  Weston-McCoy
JobTitle            Deputy Probation Officer
BasePay                             96241.16
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30492.08
TotalPay                            96241.16
TotalPayBenefits                   126733.24
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85484, dtype: object)
(85485, Id                                      85486
EmployeeName                    Nancy  Ibarra
JobTitle            Psychiatric Social Worker
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                              4033.98
Benefits                             32002.15
TotalPay                             94727.02
TotalPayBenefits                    126729.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85485, dtype: object)
(85486, Id                                          85487
EmployeeName                         Selene S Yap
JobTitle            Senior Administrative Analyst
BasePay                                  94890.35
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  31834.6
TotalPay                                 94890.35
TotalPayBenefits                        126724.95
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85486, dtype: object)
(85487, Id                             85488
EmployeeName         Rolando  Gumpal
JobTitle            Transit Operator
BasePay                     68584.39
OvertimePay                 15462.52
OtherPay                     7537.45
Benefits                    35140.12
TotalPay                    91584.36
TotalPayBenefits           126724.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85487, dtype: object)
(85488, Id                                      85489
EmployeeName                    Albert I Chin
JobTitle            Diagnostic Imaging Tech I
BasePay                              85746.48
OvertimePay                             474.3
OtherPay                              7446.63
Benefits                             33050.85
TotalPay                             93667.41
TotalPayBenefits                    126718.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85488, dtype: object)
(85489, Id                             85490
EmployeeName           Roy C Puckett
JobTitle            Transit Operator
BasePay                     67657.49
OvertimePay                 19637.96
OtherPay                     5334.41
Benefits                    34086.13
TotalPay                    92629.86
TotalPayBenefits           126715.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85489, dtype: object)
(85490, Id                                       85491
EmployeeName                    Deborah  Smith
JobTitle            Mental Hlth Treatment Spec
BasePay                               93829.23
OvertimePay                              519.0
OtherPay                                 27.68
Benefits                              32340.04
TotalPay                              94375.91
TotalPayBenefits                     126715.95
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85490, dtype: object)
(85491, Id                                 85492
EmployeeName         Vincent S Calvarese
JobTitle            Sheriff's Lieutenant
BasePay                         87311.54
OvertimePay                          0.0
OtherPay                        11484.21
Benefits                        27905.19
TotalPay                        98795.75
TotalPayBenefits               126700.94
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85491, dtype: object)
(85492, Id                                   85493
EmployeeName             Donald E Feinberg
JobTitle            Deputy Court Clerk III
BasePay                           90163.72
OvertimePay                            0.0
OtherPay                           4147.54
Benefits                          32389.07
TotalPay                          94311.26
TotalPayBenefits                 126700.33
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85492, dtype: object)
(85493, Id                               85494
EmployeeName        Michael J Hastings
JobTitle                   Electrician
BasePay                       91361.67
OvertimePay                    1684.12
OtherPay                        1920.0
Benefits                      31730.58
TotalPay                      94965.79
TotalPayBenefits             126696.37
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85493, dtype: object)
(85494, Id                                        85495
EmployeeName                   Rebecca  Padilla
JobTitle            Patient Accounts Supervisor
BasePay                                85185.05
OvertimePay                            10137.73
OtherPay                                  648.0
Benefits                               30722.36
TotalPay                               95970.78
TotalPayBenefits                      126693.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85494, dtype: object)
(85495, Id                                      85496
EmployeeName                    Hung V Nguyen
JobTitle            Diagnostic Imaging Tech I
BasePay                               45572.2
OvertimePay                          55920.27
OtherPay                              6584.17
Benefits                             18613.06
TotalPay                            108076.64
TotalPayBenefits                     126689.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85495, dtype: object)
(85496, Id                             85497
EmployeeName             Sandy  Mann
JobTitle            Transit Operator
BasePay                     68820.03
OvertimePay                  18399.4
OtherPay                     4922.13
Benefits                    34547.34
TotalPay                    92141.56
TotalPayBenefits            126688.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85496, dtype: object)
(85497, Id                                         85498
EmployeeName                   Clemente  Alambat
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                               578.68
OtherPay                                 6489.76
Benefits                                33082.63
TotalPay                                93598.44
TotalPayBenefits                       126681.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85497, dtype: object)
(85498, Id                                          85499
EmployeeName                       Dora M Granera
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                              11463.39
OtherPay                                   1560.0
Benefits                                 30496.46
TotalPay                                 96183.39
TotalPayBenefits                        126679.85
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85498, dtype: object)
(85499, Id                                          85500
EmployeeName                     Jorge C Saavedra
JobTitle            Contract Compliance Officer 1
BasePay                                  92479.57
OvertimePay                                   0.0
OtherPay                                   1080.0
Benefits                                  33118.4
TotalPay                                 93559.57
TotalPayBenefits                        126677.97
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85499, dtype: object)
(85500, Id                             85501
EmployeeName          John B Daniels
JobTitle            Transit Operator
BasePay                     67974.52
OvertimePay                  18013.9
OtherPay                     6212.17
Benefits                     34474.1
TotalPay                    92200.59
TotalPayBenefits           126674.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85500, dtype: object)
(85501, Id                                      85502
EmployeeName                   Anne M Jenkins
JobTitle            Pr Administrative Analyst
BasePay                              96455.64
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30214.44
TotalPay                             96455.64
TotalPayBenefits                    126670.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85501, dtype: object)
(85502, Id                                85503
EmployeeName          Thomas J Schedler
JobTitle            IS Business Analyst
BasePay                        94232.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32433.57
TotalPay                       94232.52
TotalPayBenefits              126666.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85502, dtype: object)
(85503, Id                                         85504
EmployeeName                         Arlen K Cho
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                                  0.0
OtherPay                                14992.16
Benefits                                 32389.1
TotalPay                                94275.66
TotalPayBenefits                       126664.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85503, dtype: object)
(85504, Id                              85505
EmployeeName        Emilio  Rodriguez
JobTitle             Transit Operator
BasePay                      68804.34
OvertimePay                  20271.41
OtherPay                      3433.22
Benefits                     34147.97
TotalPay                     92508.97
TotalPayBenefits            126656.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85504, dtype: object)
(85505, Id                          85506
EmployeeName          Aileen  Kuo
JobTitle              Librarian 2
BasePay                  91543.85
OvertimePay                   0.0
OtherPay                  2672.39
Benefits                 32439.33
TotalPay                 94216.24
TotalPayBenefits        126655.57
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85505, dtype: object)
(85506, Id                              85507
EmployeeName        Randall R Gerhart
JobTitle                 Truck Driver
BasePay                      79001.51
OvertimePay                  17149.85
OtherPay                       951.25
Benefits                     29533.05
TotalPay                     97102.61
TotalPayBenefits            126635.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85506, dtype: object)
(85507, Id                                           85508
EmployeeName                      Josephine  Perez
JobTitle            Surgical Procedures Technician
BasePay                                    74628.0
OvertimePay                               13849.58
OtherPay                                   9537.32
Benefits                                  28617.55
TotalPay                                   98014.9
TotalPayBenefits                         126632.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85507, dtype: object)
(85508, Id                                           85509
EmployeeName                     Gregory C Sedlock
JobTitle            Senior Parking Control Officer
BasePay                                   70223.41
OvertimePay                               26930.96
OtherPay                                    1638.8
Benefits                                  27836.83
TotalPay                                  98793.17
TotalPayBenefits                          126630.0
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85508, dtype: object)
(85509, Id                                     85510
EmployeeName                    Kari M Totah
JobTitle            Deputy Probation Officer
BasePay                             96154.29
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30474.59
TotalPay                            96154.29
TotalPayBenefits                   126628.88
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85509, dtype: object)
(85510, Id                                     85511
EmployeeName                  Anita G Burton
JobTitle            Deputy Probation Officer
BasePay                             96152.56
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.56
TotalPayBenefits                   126628.62
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85510, dtype: object)
(85511, Id                                     85512
EmployeeName                   Darrin S Dill
JobTitle            Deputy Probation Officer
BasePay                             96152.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.54
TotalPayBenefits                    126628.6
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85511, dtype: object)
(85512, Id                                     85513
EmployeeName              Purnell J Copeland
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.53
TotalPayBenefits                   126628.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85512, dtype: object)
(85513, Id                                     85514
EmployeeName                 Oscar  Martinez
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.53
TotalPayBenefits                   126628.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85513, dtype: object)
(85514, Id                                     85515
EmployeeName               Norine I Muhawieh
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.53
TotalPayBenefits                   126628.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85514, dtype: object)
(85515, Id                                     85516
EmployeeName                      Cheng M Yu
JobTitle            Deputy Probation Officer
BasePay                             96152.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.53
TotalPayBenefits                   126628.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85515, dtype: object)
(85516, Id                                     85517
EmployeeName                 Tyrone  Jenkins
JobTitle            Deputy Probation Officer
BasePay                             96152.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.52
TotalPayBenefits                   126628.58
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85516, dtype: object)
(85517, Id                                     85518
EmployeeName               Marigrace  Bannon
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85517, dtype: object)
(85518, Id                                     85519
EmployeeName                   Clinton M Gee
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85518, dtype: object)
(85519, Id                                     85520
EmployeeName             Diva D Lewis Hudson
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85519, dtype: object)
(85520, Id                                     85521
EmployeeName                 Ramona A Massey
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85520, dtype: object)
(85521, Id                                     85522
EmployeeName                    Irma L Perez
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85521, dtype: object)
(85522, Id                                     85523
EmployeeName                    Alex R Sousa
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85522, dtype: object)
(85523, Id                                     85524
EmployeeName                Bernadette M Yee
JobTitle            Deputy Probation Officer
BasePay                             96152.51
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                            96152.51
TotalPayBenefits                   126628.57
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85523, dtype: object)
(85524, Id                                     85525
EmployeeName               Michael L Chapman
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85524, dtype: object)
(85525, Id                                     85526
EmployeeName                    Brad R Davis
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85525, dtype: object)
(85526, Id                                     85527
EmployeeName                Edwin R Esquivel
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85526, dtype: object)
(85527, Id                                     85528
EmployeeName                   Gary  Simpson
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85527, dtype: object)
(85528, Id                                     85529
EmployeeName                 Michael B Tartt
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85528, dtype: object)
(85529, Id                                     85530
EmployeeName               Danielle A Fluker
JobTitle            Deputy Probation Officer
BasePay                              96152.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30476.06
TotalPay                             96152.5
TotalPayBenefits                   126628.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85529, dtype: object)
(85530, Id                          85531
EmployeeName          David W Yip
JobTitle                Carpenter
BasePay                   92868.8
OvertimePay               1581.52
OtherPay                    384.0
Benefits                 31790.96
TotalPay                 94834.32
TotalPayBenefits        126625.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85530, dtype: object)
(85531, Id                                 85532
EmployeeName                 Olee R Wade
JobTitle            Painter Supervisor 1
BasePay                         93454.54
OvertimePay                          0.0
OtherPay                           760.0
Benefits                        32407.39
TotalPay                        94214.54
TotalPayBenefits               126621.93
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85531, dtype: object)
(85532, Id                                         85533
EmployeeName                     George P Pelayo
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.02
OvertimePay                                920.5
OtherPay                                 7012.18
Benefits                                32157.92
TotalPay                                 94462.7
TotalPayBenefits                       126620.62
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85532, dtype: object)
(85533, Id                             85534
EmployeeName         Timothy A Banks
JobTitle            Transit Operator
BasePay                     66173.18
OvertimePay                 25309.99
OtherPay                     2533.25
Benefits                    32599.63
TotalPay                    94016.42
TotalPayBenefits           126616.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85533, dtype: object)
(85534, Id                                           85535
EmployeeName                      Barinder S Pannu
JobTitle            Electrical Transit System Mech
BasePay                                    82678.2
OvertimePay                                4775.49
OtherPay                                   7560.72
Benefits                                  31594.34
TotalPay                                  95014.41
TotalPayBenefits                         126608.75
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85534, dtype: object)
(85535, Id                           85536
EmployeeName            Nathan  Au
JobTitle            Assoc Engineer
BasePay                   95899.91
OvertimePay                    0.0
OtherPay                    688.06
Benefits                   30020.2
TotalPay                  96587.97
TotalPayBenefits         126608.17
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85535, dtype: object)
(85536, Id                                    85537
EmployeeName              Monique J Forster
JobTitle            Sr Community Dev Spec 2
BasePay                            94182.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32424.68
TotalPay                           94182.02
TotalPayBenefits                   126606.7
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85536, dtype: object)
(85537, Id                                     85538
EmployeeName                  Jordan S Klein
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33178.36
TotalPay                            93420.01
TotalPayBenefits                   126598.37
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85537, dtype: object)
(85538, Id                                     85539
EmployeeName         Tiffany Michele  Garcia
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            33178.36
TotalPay                             93420.0
TotalPayBenefits                   126598.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85538, dtype: object)
(85539, Id                                     85540
EmployeeName        Laura  Brainin-Rodriguez
JobTitle                        Nutritionist
BasePay                              91836.5
OvertimePay                              0.0
OtherPay                              2330.0
Benefits                            32422.61
TotalPay                             94166.5
TotalPayBenefits                   126589.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85539, dtype: object)
(85540, Id                                85541
EmployeeName          Darren G Brothers
JobTitle            Stationary Engineer
BasePay                        78500.31
OvertimePay                     5133.32
OtherPay                        11388.6
Benefits                       31562.51
TotalPay                       95022.23
TotalPayBenefits              126584.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85540, dtype: object)
(85541, Id                           85542
EmployeeName        Armida L Adams
JobTitle             Special Nurse
BasePay                  113325.79
OvertimePay                2408.18
OtherPay                   9595.64
Benefits                    1253.3
TotalPay                 125329.61
TotalPayBenefits         126582.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85541, dtype: object)
(85542, Id                             85543
EmployeeName        Rizaldy T Tabada
JobTitle              Deputy Sheriff
BasePay                     92000.78
OvertimePay                   349.16
OtherPay                      2969.7
Benefits                    31259.47
TotalPay                    95319.64
TotalPayBenefits           126579.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85542, dtype: object)
(85543, Id                             85544
EmployeeName             Zaldy L Lim
JobTitle            Transit Operator
BasePay                     68970.22
OvertimePay                 21999.48
OtherPay                     1816.45
Benefits                    33792.92
TotalPay                    92786.15
TotalPayBenefits           126579.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85543, dtype: object)
(85544, Id                                         85545
EmployeeName                    Henry A Clemings
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86412.61
OvertimePay                               583.85
OtherPay                                 7317.06
Benefits                                32262.05
TotalPay                                94313.52
TotalPayBenefits                       126575.57
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85544, dtype: object)
(85545, Id                                    85546
EmployeeName                 Paul L Fortino
JobTitle            Water Service Inspector
BasePay                             93740.9
OvertimePay                         1105.65
OtherPay                              74.06
Benefits                           31651.92
TotalPay                           94920.61
TotalPayBenefits                  126572.53
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85545, dtype: object)
(85546, Id                                     85547
EmployeeName             Andre V Miakinenkov
JobTitle            Deputy Probation Officer
BasePay                              96106.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30463.59
TotalPay                             96106.0
TotalPayBenefits                   126569.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85546, dtype: object)
(85547, Id                                        85548
EmployeeName                 Daniel P Borgfeldt
JobTitle            Airport Communications Disp
BasePay                                81869.21
OvertimePay                            12588.89
OtherPay                                1828.34
Benefits                               30274.59
TotalPay                               96286.44
TotalPayBenefits                      126561.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85547, dtype: object)
(85548, Id                                          85549
EmployeeName                   Nicholas W Hancock
JobTitle            Senior Administrative Analyst
BasePay                                  94126.26
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  32418.5
TotalPay                                 94126.26
TotalPayBenefits                        126544.76
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85548, dtype: object)
(85549, Id                              85550
EmployeeName        Richard A West II
JobTitle             Transit Operator
BasePay                      69096.85
OvertimePay                  18341.11
OtherPay                      4537.95
Benefits                     34566.75
TotalPay                     91975.91
TotalPayBenefits            126542.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85549, dtype: object)
(85550, Id                                   85551
EmployeeName                   Linda  Fong
JobTitle            Deputy Court Clerk III
BasePay                           90186.32
OvertimePay                            0.0
OtherPay                           3985.03
Benefits                          32369.25
TotalPay                          94171.35
TotalPayBenefits                  126540.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85550, dtype: object)
(85551, Id                               85552
EmployeeName            Maya L Armenta
JobTitle            Nurse Practitioner
BasePay                        90554.4
OvertimePay                     2346.3
OtherPay                       3382.56
Benefits                      30254.25
TotalPay                      96283.26
TotalPayBenefits             126537.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85551, dtype: object)
(85552, Id                             85553
EmployeeName              Paul  Dang
JobTitle            Transit Operator
BasePay                     68314.03
OvertimePay                 16938.95
OtherPay                     6559.37
Benefits                    34720.13
TotalPay                    91812.35
TotalPayBenefits           126532.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85552, dtype: object)
(85553, Id                                      85554
EmployeeName                     James  Mejia
JobTitle            Automotive Service Worker
BasePay                              64314.61
OvertimePay                          23479.74
OtherPay                              10296.0
Benefits                             28428.57
TotalPay                             98090.35
TotalPayBenefits                    126518.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85553, dtype: object)
(85554, Id                                     85555
EmployeeName                       Ben  Chan
JobTitle            Public Relations Officer
BasePay                             94102.51
OvertimePay                              0.0
OtherPay                                 9.0
Benefits                             32402.0
TotalPay                            94111.51
TotalPayBenefits                   126513.51
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85554, dtype: object)
(85555, Id                                     85556
EmployeeName             Robert J Clendening
JobTitle            Deputy Probation Officer
BasePay                             96061.33
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30449.69
TotalPay                            96061.33
TotalPayBenefits                   126511.02
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85555, dtype: object)
(85556, Id                          85557
EmployeeName        Diana  George
JobTitle            Special Nurse
BasePay                  124481.3
OvertimePay                776.85
OtherPay                      0.0
Benefits                  1252.59
TotalPay                125258.15
TotalPayBenefits        126510.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85556, dtype: object)
(85557, Id                                     85558
EmployeeName                   Lena N Butler
JobTitle            Counselor, Juvenile Hall
BasePay                             67473.66
OvertimePay                         32678.63
OtherPay                               190.0
Benefits                            26165.35
TotalPay                           100342.29
TotalPayBenefits                   126507.64
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85557, dtype: object)
(85558, Id                                    85559
EmployeeName                  Annie G L Lim
JobTitle            Engineering Associate 2
BasePay                            94102.62
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.38
TotalPay                           94102.62
TotalPayBenefits                   126503.0
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85558, dtype: object)
(85559, Id                                    85560
EmployeeName             Carlos D Tanquilut
JobTitle            Engineering Associate 2
BasePay                            94102.58
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.38
TotalPay                           94102.58
TotalPayBenefits                  126502.96
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85559, dtype: object)
(85560, Id                                    85561
EmployeeName               Rebecca S Birrer
JobTitle            Engineering Associate 2
BasePay                            94102.58
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           94102.58
TotalPayBenefits                  126502.95
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85560, dtype: object)
(85561, Id                                    85562
EmployeeName           Armando F Villanueva
JobTitle            Engineering Associate 2
BasePay                            94102.57
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           94102.57
TotalPayBenefits                  126502.94
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85561, dtype: object)
(85562, Id                                         85563
EmployeeName                          Sally  Bin
JobTitle            Wastewater Control Inspector
BasePay                                 94102.54
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32400.37
TotalPay                                94102.54
TotalPayBenefits                       126502.91
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85562, dtype: object)
(85563, Id                                     85564
EmployeeName                   Amy  Sinclair
JobTitle            Public Relations Officer
BasePay                             94102.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32400.37
TotalPay                            94102.54
TotalPayBenefits                   126502.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85563, dtype: object)
(85564, Id                                     85565
EmployeeName               Kristen S Holland
JobTitle            Public Relations Officer
BasePay                             94102.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32400.37
TotalPay                            94102.54
TotalPayBenefits                   126502.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85564, dtype: object)
(85565, Id                                    85566
EmployeeName              Elenita I Alberto
JobTitle            Engineering Associate 2
BasePay                            94102.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.38
TotalPay                           94102.52
TotalPayBenefits                   126502.9
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85565, dtype: object)
(85566, Id                                     85567
EmployeeName                 Samuel A Murray
JobTitle            Public Relations Officer
BasePay                             94102.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32400.37
TotalPay                            94102.53
TotalPayBenefits                    126502.9
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85566, dtype: object)
(85567, Id                                    85568
EmployeeName                      Paul X Hu
JobTitle            Engineering Associate 2
BasePay                            94102.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           94102.52
TotalPayBenefits                  126502.89
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85567, dtype: object)
(85568, Id                                    85569
EmployeeName               Tamam R Abdallah
JobTitle            Engineering Associate 2
BasePay                            94102.51
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32400.37
TotalPay                           94102.51
TotalPayBenefits                  126502.88
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85568, dtype: object)
(85569, Id                                       85570
EmployeeName                    Denise  Turner
JobTitle            Market Research Spec, Port
BasePay                               94102.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32400.37
TotalPay                              94102.51
TotalPayBenefits                     126502.88
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85569, dtype: object)
(85570, Id                                         85571
EmployeeName                         Eric B Kuhn
JobTitle            Wastewater Control Inspector
BasePay                                 94102.51
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32400.37
TotalPay                                94102.51
TotalPayBenefits                       126502.88
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85570, dtype: object)
(85571, Id                                     85572
EmployeeName                  Mark A De Anda
JobTitle            Public Relations Officer
BasePay                              94102.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32400.37
TotalPay                             94102.5
TotalPayBenefits                   126502.87
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85571, dtype: object)
(85572, Id                                85573
EmployeeName           Larry J Anderson
JobTitle            Stationary Engineer
BasePay                        80061.16
OvertimePay                         0.0
OtherPay                       15540.77
Benefits                       30899.63
TotalPay                       95601.93
TotalPayBenefits              126501.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85572, dtype: object)
(85573, Id                                    85574
EmployeeName            Theodore M Standers
JobTitle            Engineering Associate 2
BasePay                            94100.92
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32394.63
TotalPay                           94100.92
TotalPayBenefits                  126495.55
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85573, dtype: object)
(85574, Id                             85575
EmployeeName        Larry D McKinney
JobTitle            Transit Operator
BasePay                     70056.58
OvertimePay                 17298.71
OtherPay                     4190.65
Benefits                    34940.11
TotalPay                    91545.94
TotalPayBenefits           126486.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85574, dtype: object)
(85575, Id                           85576
EmployeeName           James  Wang
JobTitle            Accountant III
BasePay                   94063.12
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32420.64
TotalPay                  94063.12
TotalPayBenefits         126483.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85575, dtype: object)
(85576, Id                             85577
EmployeeName           Jose  Herrera
JobTitle            Transit Operator
BasePay                     64655.28
OvertimePay                  25104.3
OtherPay                     4312.37
Benefits                    32406.21
TotalPay                    94071.95
TotalPayBenefits           126478.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85576, dtype: object)
(85577, Id                              85578
EmployeeName          Aruna D Shankar
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  29207.35
OtherPay                       1429.3
Benefits                     27446.69
TotalPay                     99027.65
TotalPayBenefits            126474.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85577, dtype: object)
(85578, Id                             85579
EmployeeName           Levell  Simon
JobTitle            Transit Operator
BasePay                     67652.75
OvertimePay                  19931.0
OtherPay                     4902.79
Benefits                    33966.96
TotalPay                    92486.54
TotalPayBenefits            126453.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85578, dtype: object)
(85579, Id                             85580
EmployeeName             Johnny  Lee
JobTitle            Transit Operator
BasePay                      68692.1
OvertimePay                  22125.9
OtherPay                     1968.08
Benefits                    33664.27
TotalPay                    92786.08
TotalPayBenefits           126450.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85579, dtype: object)
(85580, Id                               85581
EmployeeName        Chauncey D McLorin
JobTitle            Transit Supervisor
BasePay                        80949.3
OvertimePay                   12727.31
OtherPay                       3928.21
Benefits                      28844.93
TotalPay                      97604.82
TotalPayBenefits             126449.75
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85580, dtype: object)
(85581, Id                                     85582
EmployeeName                   Hazel L Jones
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                               648.0
Benefits                            32371.52
TotalPay                             94068.0
TotalPayBenefits                   126439.52
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85581, dtype: object)
(85582, Id                                   85583
EmployeeName              Norma A Gundayao
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       22300.78
OtherPay                           7154.51
Benefits                          28576.38
TotalPay                          97846.29
TotalPayBenefits                 126422.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85582, dtype: object)
(85583, Id                                          85584
EmployeeName                  Nicamer A Tolentino
JobTitle            Contract Compliance Officer 1
BasePay                                  94003.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32419.35
TotalPay                                 94003.05
TotalPayBenefits                         126422.4
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85583, dtype: object)
(85584, Id                                           85585
EmployeeName                      David Yujian  Ao
JobTitle            IT Operations Support Admin IV
BasePay                                    93842.0
OvertimePay                                    0.0
OtherPay                                    151.92
Benefits                                  32426.35
TotalPay                                  93993.92
TotalPayBenefits                         126420.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85584, dtype: object)
(85585, Id                                     85586
EmployeeName                 Taraneh  Moayed
JobTitle            Coord, Human Rights Comm
BasePay                             94894.83
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31513.32
TotalPay                            94894.83
TotalPayBenefits                   126408.15
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85585, dtype: object)
(85586, Id                             85587
EmployeeName             Eddie I Eke
JobTitle            Transit Operator
BasePay                     65163.63
OvertimePay                  24370.8
OtherPay                     4278.42
Benefits                    32585.66
TotalPay                    93812.85
TotalPayBenefits           126398.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85586, dtype: object)
(85587, Id                                          85588
EmployeeName                      Steve  Tamanaha
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                  81240.78
OvertimePay                                6308.7
OtherPay                                  6777.03
Benefits                                  32064.0
TotalPay                                 94326.51
TotalPayBenefits                        126390.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85587, dtype: object)
(85588, Id                                         85589
EmployeeName                     Eduardo  Rivera
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                              1222.96
OtherPay                                 6489.76
Benefits                                32146.63
TotalPay                                94242.72
TotalPayBenefits                       126389.35
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85588, dtype: object)
(85589, Id                             85590
EmployeeName             Samuel  Xie
JobTitle            Transit Operator
BasePay                     71029.89
OvertimePay                 19911.85
OtherPay                      918.71
Benefits                    34528.32
TotalPay                    91860.45
TotalPayBenefits           126388.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85589, dtype: object)
(85590, Id                             85591
EmployeeName          Warren J Rubit
JobTitle            Transit Operator
BasePay                     69883.28
OvertimePay                  20308.0
OtherPay                     1936.09
Benefits                    34258.52
TotalPay                    92127.37
TotalPayBenefits           126385.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85590, dtype: object)
(85591, Id                                         85592
EmployeeName                    Henry A Jasinski
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86338.2
OvertimePay                                  0.0
OtherPay                                 7782.46
Benefits                                32261.42
TotalPay                                94120.66
TotalPayBenefits                       126382.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85591, dtype: object)
(85592, Id                             85593
EmployeeName            Kyin M Ngoon
JobTitle            Transit Operator
BasePay                     71836.56
OvertimePay                 25074.29
OtherPay                     7126.15
Benefits                    22335.47
TotalPay                    104037.0
TotalPayBenefits           126372.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85592, dtype: object)
(85593, Id                                85594
EmployeeName            James  Anderson
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     13792.3
OtherPay                        4012.74
Benefits                       30081.71
TotalPay                       96278.54
TotalPayBenefits              126360.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85593, dtype: object)
(85594, Id                              85595
EmployeeName             Gordon W Lew
JobTitle            Parts Storekeeper
BasePay                       64827.0
OvertimePay                  26430.07
OtherPay                      7176.44
Benefits                     27922.84
TotalPay                     98433.51
TotalPayBenefits            126356.35
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85594, dtype: object)
(85595, Id                             85596
EmployeeName         Rene O Martinez
JobTitle            Transit Operator
BasePay                     70483.43
OvertimePay                 17971.53
OtherPay                      3043.7
Benefits                    34857.48
TotalPay                    91498.66
TotalPayBenefits           126356.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85595, dtype: object)
(85596, Id                             85597
EmployeeName          Binggang  Zhou
JobTitle            Transit Operator
BasePay                     70410.84
OvertimePay                 16118.59
OtherPay                     4649.18
Benefits                     35172.4
TotalPay                    91178.61
TotalPayBenefits           126351.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85596, dtype: object)
(85597, Id                              85598
EmployeeName         Judith N Selerio
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  23916.33
OtherPay                      5740.14
Benefits                     28301.58
TotalPay                     98047.47
TotalPayBenefits            126349.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85597, dtype: object)
(85598, Id                                85599
EmployeeName            Enrique R Dulay
JobTitle            Stationary Engineer
BasePay                         77740.1
OvertimePay                     7626.76
OtherPay                        9254.55
Benefits                       31726.14
TotalPay                       94621.41
TotalPayBenefits              126347.55
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85598, dtype: object)
(85599, Id                                   85600
EmployeeName                Estela V Moran
JobTitle            Public SafetyComm Disp
BasePay                           84368.82
OvertimePay                        7320.13
OtherPay                           3952.51
Benefits                          30691.34
TotalPay                          95641.46
TotalPayBenefits                  126332.8
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85599, dtype: object)
(85600, Id                                          85601
EmployeeName                        Michael J Lee
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                   87586.4
OvertimePay                                   0.0
OtherPay                                  6413.11
Benefits                                 32327.79
TotalPay                                 93999.51
TotalPayBenefits                         126327.3
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85600, dtype: object)
(85601, Id                                    85602
EmployeeName        Isabel  Delgadillo-Romo
JobTitle                        Librarian 2
BasePay                            91206.12
OvertimePay                             0.0
OtherPay                             2777.8
Benefits                           32337.59
TotalPay                           93983.92
TotalPayBenefits                  126321.51
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85601, dtype: object)
(85602, Id                                         85603
EmployeeName                 Mauricio A Monsalve
JobTitle            IS Programmer Analyst-Senior
BasePay                                 93938.55
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32378.12
TotalPay                                93938.55
TotalPayBenefits                       126316.67
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85602, dtype: object)
(85603, Id                                          85604
EmployeeName                    Blake C Blackwell
JobTitle            Senior Administrative Analyst
BasePay                                  93146.81
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33167.81
TotalPay                                 93146.81
TotalPayBenefits                        126314.62
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85603, dtype: object)
(85604, Id                                  85605
EmployeeName        Christopher P O'Brien
JobTitle                   Police Officer
BasePay                          92259.04
OvertimePay                        218.89
OtherPay                          1459.83
Benefits                         32365.38
TotalPay                         93937.76
TotalPayBenefits                126303.14
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85604, dtype: object)
(85605, Id                             85606
EmployeeName         Bonnie I Garvey
JobTitle            Registered Nurse
BasePay                     76026.01
OvertimePay                      0.0
OtherPay                    26893.32
Benefits                     23315.9
TotalPay                   102919.33
TotalPayBenefits           126235.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85605, dtype: object)
(85606, Id                                          85607
EmployeeName                     John D Batkowski
JobTitle            Airport Operations Supervisor
BasePay                                  87173.42
OvertimePay                               5397.39
OtherPay                                  1408.82
Benefits                                 32245.47
TotalPay                                 93979.63
TotalPayBenefits                         126225.1
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85606, dtype: object)
(85607, Id                                      85608
EmployeeName                  Eric J Marshall
JobTitle            EMT/Paramedic/Firefighter
BasePay                              73944.93
OvertimePay                           16611.6
OtherPay                              6567.27
Benefits                             29094.42
TotalPay                              97123.8
TotalPayBenefits                    126218.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85607, dtype: object)
(85608, Id                          85609
EmployeeName        Steven J Yuan
JobTitle                Manager I
BasePay                  88503.81
OvertimePay                   0.0
OtherPay                    56.81
Benefits                 37656.82
TotalPay                 88560.62
TotalPayBenefits        126217.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85608, dtype: object)
(85609, Id                                       85610
EmployeeName                   Ann C McWalters
JobTitle            Protective Services Worker
BasePay                               94038.71
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32178.06
TotalPay                              94038.71
TotalPayBenefits                     126216.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85609, dtype: object)
(85610, Id                                  85611
EmployeeName                 John B Coyne
JobTitle            Clinical Psychologist
BasePay                           94964.4
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          31252.1
TotalPay                          94964.4
TotalPayBenefits                 126216.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85610, dtype: object)
(85611, Id                           85612
EmployeeName          Edmund J Lum
JobTitle            Accountant III
BasePay                   94059.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32156.92
TotalPay                  94059.51
TotalPayBenefits         126216.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85611, dtype: object)
(85612, Id                                85613
EmployeeName        Napoleon B Conte Jr
JobTitle               Transit Operator
BasePay                        68966.13
OvertimePay                    18415.13
OtherPay                        4359.86
Benefits                        34470.7
TotalPay                       91741.12
TotalPayBenefits              126211.82
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85612, dtype: object)
(85613, Id                           85614
EmployeeName        Edgar  Oropeza
JobTitle                 Planner 3
BasePay                   93856.94
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32350.19
TotalPay                  93856.94
TotalPayBenefits         126207.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85613, dtype: object)
(85614, Id                                   85615
EmployeeName                 Jeffrey P Lee
JobTitle            Public SafetyComm Disp
BasePay                            87533.6
OvertimePay                        2245.99
OtherPay                           4520.95
Benefits                           31901.1
TotalPay                          94300.54
TotalPayBenefits                 126201.64
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85614, dtype: object)
(85615, Id                             85616
EmployeeName            Mark  Hallam
JobTitle            Transit Operator
BasePay                     67929.93
OvertimePay                 19934.78
OtherPay                     4377.85
Benefits                    33958.04
TotalPay                    92242.56
TotalPayBenefits            126200.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85615, dtype: object)
(85616, Id                                   85617
EmployeeName             Ericka E Larnauti
JobTitle            Deputy Court Clerk III
BasePay                           90217.21
OvertimePay                         191.03
OtherPay                            3500.0
Benefits                          32283.26
TotalPay                          93908.24
TotalPayBenefits                  126191.5
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85616, dtype: object)
(85617, Id                                         85618
EmployeeName                    Chang-Yeong  Lun
JobTitle            Sr Psychiatric Social Worker
BasePay                                 92541.14
OvertimePay                                  0.0
OtherPay                                  1340.0
Benefits                                 32299.0
TotalPay                                93881.14
TotalPayBenefits                       126180.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85617, dtype: object)
(85618, Id                                85619
EmployeeName        Robert P Hoelzel Jr
JobTitle                   Chemist I/II
BasePay                        93029.63
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33143.42
TotalPay                       93029.63
TotalPayBenefits              126173.05
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85618, dtype: object)
(85619, Id                             85620
EmployeeName           Sally C Leung
JobTitle            Mayoral Staff XI
BasePay                     86810.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     39361.7
TotalPay                    86810.51
TotalPayBenefits           126172.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85619, dtype: object)
(85620, Id                                         85621
EmployeeName                      Peter  Camacho
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.03
OvertimePay                              1623.58
OtherPay                                 6384.51
Benefits                                31622.83
TotalPay                                94538.12
TotalPayBenefits                       126160.95
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85620, dtype: object)
(85621, Id                              85622
EmployeeName        Jose T Alvarez Jr
JobTitle             Transit Operator
BasePay                      67679.02
OvertimePay                   22375.9
OtherPay                      2667.61
Benefits                      33434.7
TotalPay                     92722.53
TotalPayBenefits            126157.23
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85621, dtype: object)
(85622, Id                            85623
EmployeeName        Keith W Roberts
JobTitle                   Gardener
BasePay                    63208.81
OvertimePay                29630.42
OtherPay                    6153.26
Benefits                   27163.16
TotalPay                   98992.49
TotalPayBenefits          126155.65
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85622, dtype: object)
(85623, Id                                          85624
EmployeeName                     Nestor  Avendano
JobTitle            Senior Administrative Analyst
BasePay                                  93014.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33141.03
TotalPay                                 93014.01
TotalPayBenefits                        126155.04
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85623, dtype: object)
(85624, Id                             85625
EmployeeName           Arturo  Perez
JobTitle            Transit Operator
BasePay                     69145.61
OvertimePay                 21210.95
OtherPay                     1878.46
Benefits                    33918.89
TotalPay                    92235.02
TotalPayBenefits           126153.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85624, dtype: object)
(85625, Id                                   85626
EmployeeName            Marilyn R Williams
JobTitle            Patient Care Assistant
BasePay                           68375.18
OvertimePay                       22131.99
OtherPay                           7095.79
Benefits                          28550.19
TotalPay                          97602.96
TotalPayBenefits                 126153.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85625, dtype: object)
(85626, Id                              85627
EmployeeName        Nelson  Rodriguez
JobTitle             Transit Operator
BasePay                      66054.52
OvertimePay                  26425.06
OtherPay                      1414.93
Benefits                     32255.41
TotalPay                     93894.51
TotalPayBenefits            126149.92
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85626, dtype: object)
(85627, Id                                          85628
EmployeeName                     Bridgette E Lery
JobTitle            Senior Administrative Analyst
BasePay                                  93058.72
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 33091.02
TotalPay                                 93058.72
TotalPayBenefits                        126149.74
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85627, dtype: object)
(85628, Id                                          85629
EmployeeName                           Luann  Lee
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                   87912.0
OvertimePay                                   0.0
OtherPay                                  5897.26
Benefits                                  32339.0
TotalPay                                 93809.26
TotalPayBenefits                        126148.26
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85628, dtype: object)
(85629, Id                                         85630
EmployeeName                     James H Vickery
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 83285.07
OvertimePay                              3209.19
OtherPay                                 8316.92
Benefits                                31335.32
TotalPay                                94811.18
TotalPayBenefits                        126146.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85629, dtype: object)
(85630, Id                              85631
EmployeeName        Jose  Mendoza III
JobTitle             Transit Operator
BasePay                      68794.01
OvertimePay                  19570.08
OtherPay                       2906.7
Benefits                     34872.66
TotalPay                     91270.79
TotalPayBenefits            126143.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85630, dtype: object)
(85631, Id                                   85632
EmployeeName          Theresa M Huddleston
JobTitle            Public SafetyComm Disp
BasePay                           84216.17
OvertimePay                         7304.7
OtherPay                            3990.7
Benefits                          30625.34
TotalPay                          95511.57
TotalPayBenefits                 126136.91
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85631, dtype: object)
(85632, Id                                   85633
EmployeeName               Y I  Mazariegos
JobTitle            Deputy Court Clerk III
BasePay                           89222.97
OvertimePay                            0.0
OtherPay                           4714.89
Benefits                           32192.9
TotalPay                          93937.86
TotalPayBenefits                 126130.76
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85632, dtype: object)
(85633, Id                                 85634
EmployeeName            JoEllen  Vormohr
JobTitle            Physician Specialist
BasePay                         95505.34
OvertimePay                          0.0
OtherPay                         4853.57
Benefits                        25761.58
TotalPay                       100358.91
TotalPayBenefits               126120.49
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85633, dtype: object)
(85634, Id                                      85635
EmployeeName                   Susan E Gamboa
JobTitle            Psychiatric Social Worker
BasePay                              90693.01
OvertimePay                               0.0
OtherPay                               3303.6
Benefits                             32117.31
TotalPay                             93996.61
TotalPayBenefits                    126113.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85634, dtype: object)
(85635, Id                                     85636
EmployeeName                   Doris  Urbina
JobTitle            Senior Personnel Analyst
BasePay                             93715.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32397.21
TotalPay                            93715.52
TotalPayBenefits                   126112.73
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85635, dtype: object)
(85636, Id                                          85637
EmployeeName                    Edward K Skidmore
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86526.03
OvertimePay                               1070.29
OtherPay                                  6399.73
Benefits                                 32116.04
TotalPay                                 93996.05
TotalPayBenefits                        126112.09
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85636, dtype: object)
(85637, Id                                         85638
EmployeeName                     Richard S Chinn
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                                  0.0
OtherPay                                 6489.76
Benefits                                33076.84
TotalPay                                93019.76
TotalPayBenefits                        126096.6
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85637, dtype: object)
(85638, Id                               85639
EmployeeName           Victor W Porter
JobTitle            Transit Supervisor
BasePay                       72828.03
OvertimePay                   19045.27
OtherPay                       2044.22
Benefits                      32174.27
TotalPay                      93917.52
TotalPayBenefits             126091.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85638, dtype: object)
(85639, Id                                      85640
EmployeeName                     Douglas  Mei
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74697.4
OvertimePay                           16720.7
OtherPay                              4884.51
Benefits                             29778.53
TotalPay                             96302.61
TotalPayBenefits                    126081.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85639, dtype: object)
(85640, Id                                       85641
EmployeeName                       Khoi D Dang
JobTitle            Protective Services Worker
BasePay                               93381.06
OvertimePay                                0.0
OtherPay                                 360.0
Benefits                              32333.92
TotalPay                              93741.06
TotalPayBenefits                     126074.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85640, dtype: object)
(85641, Id                                    85642
EmployeeName                   Jose  Nuguid
JobTitle            Engineering Associate 2
BasePay                             93737.4
OvertimePay                             0.0
OtherPay                                0.0
Benefits                            32332.6
TotalPay                            93737.4
TotalPayBenefits                   126070.0
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85641, dtype: object)
(85642, Id                                   85643
EmployeeName             Robert G Goulding
JobTitle            Deputy Court Clerk III
BasePay                           89679.94
OvertimePay                            0.0
OtherPay                           4144.05
Benefits                          32224.84
TotalPay                          93823.99
TotalPayBenefits                 126048.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85642, dtype: object)
(85643, Id                                          85644
EmployeeName                        Aaron B Craig
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                  82301.79
OvertimePay                               3654.75
OtherPay                                  7613.65
Benefits                                 32474.51
TotalPay                                 93570.19
TotalPayBenefits                         126044.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85643, dtype: object)
(85644, Id                           85645
EmployeeName        Gina B Johnson
JobTitle             Special Nurse
BasePay                  123583.93
OvertimePay                    0.0
OtherPay                    1191.3
Benefits                   1247.78
TotalPay                 124775.23
TotalPayBenefits         126023.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85644, dtype: object)
(85645, Id                                   85646
EmployeeName          Jacqueline D Alameda
JobTitle            Deputy Court Clerk III
BasePay                           90227.57
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.57
TotalPayBenefits                 126014.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85645, dtype: object)
(85646, Id                                   85647
EmployeeName                Jonathan  Wong
JobTitle            Deputy Court Clerk III
BasePay                           90227.54
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          32286.71
TotalPay                          93727.54
TotalPayBenefits                 126014.25
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85646, dtype: object)
(85647, Id                                   85648
EmployeeName             Carla J Contreras
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          32286.71
TotalPay                          93727.53
TotalPayBenefits                 126014.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85647, dtype: object)
(85648, Id                                     85649
EmployeeName                      Tommy  Woo
JobTitle            Senior Fiscal Technician
BasePay                             90227.53
OvertimePay                              0.0
OtherPay                              3500.0
Benefits                             32286.7
TotalPay                            93727.53
TotalPayBenefits                   126014.23
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85648, dtype: object)
(85649, Id                                   85650
EmployeeName           Annette C Toussaint
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.53
TotalPayBenefits                 126014.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85649, dtype: object)
(85650, Id                                   85651
EmployeeName                  Gina M Guidi
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.53
TotalPayBenefits                 126014.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85650, dtype: object)
(85651, Id                                   85652
EmployeeName              Shawna S VanTree
JobTitle            Deputy Court Clerk III
BasePay                           90227.53
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.53
TotalPayBenefits                 126014.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85651, dtype: object)
(85652, Id                                   85653
EmployeeName             Angevic U Agdeppa
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.52
TotalPayBenefits                 126014.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85652, dtype: object)
(85653, Id                                   85654
EmployeeName                Rosa A Noguera
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.52
TotalPayBenefits                 126014.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85653, dtype: object)
(85654, Id                                   85655
EmployeeName                Jhulie I Roque
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.52
TotalPayBenefits                 126014.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85654, dtype: object)
(85655, Id                                   85656
EmployeeName             Oscar A Guandique
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.52
TotalPayBenefits                 126014.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85655, dtype: object)
(85656, Id                                   85657
EmployeeName                Sandra D Scott
JobTitle            Deputy Court Clerk III
BasePay                           90227.52
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.52
TotalPayBenefits                 126014.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85656, dtype: object)
(85657, Id                                   85658
EmployeeName                 David R Jones
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.51
TotalPayBenefits                 126014.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85657, dtype: object)
(85658, Id                                   85659
EmployeeName         Maria  Olopernes-Pena
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.51
TotalPayBenefits                 126014.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85658, dtype: object)
(85659, Id                                   85660
EmployeeName                Gina  Gonzales
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.51
TotalPayBenefits                 126014.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85659, dtype: object)
(85660, Id                                   85661
EmployeeName                    Ella L Yip
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.51
TotalPayBenefits                 126014.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85660, dtype: object)
(85661, Id                                   85662
EmployeeName            Ramoncito M Borneo
JobTitle            Deputy Court Clerk III
BasePay                           90227.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                          93727.51
TotalPayBenefits                 126014.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85661, dtype: object)
(85662, Id                                      85663
EmployeeName        Cheryl Luz Ong  Sebastian
JobTitle               Deputy Court Clerk III
BasePay                              90227.51
OvertimePay                               0.0
OtherPay                               3500.0
Benefits                              32286.7
TotalPay                             93727.51
TotalPayBenefits                    126014.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85662, dtype: object)
(85663, Id                                   85664
EmployeeName                  Sylvia L Tam
JobTitle            Deputy Court Clerk III
BasePay                            90227.5
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                           32286.7
TotalPay                           93727.5
TotalPayBenefits                  126014.2
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85663, dtype: object)
(85664, Id                                        85665
EmployeeName                  Alfred W Fleck Jr
JobTitle            Sr Counselor, Juvenile Hall
BasePay                                 86172.0
OvertimePay                             9358.05
OtherPay                                1211.26
Benefits                               29270.51
TotalPay                               96741.31
TotalPayBenefits                      126011.82
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85664, dtype: object)
(85665, Id                                     85666
EmployeeName               Carlos E Gonzalez
JobTitle            Deputy Probation Officer
BasePay                             91898.51
OvertimePay                          3681.38
OtherPay                              1125.0
Benefits                            29303.25
TotalPay                            96704.89
TotalPayBenefits                   126008.14
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85665, dtype: object)
(85666, Id                              85667
EmployeeName           Kathleen  Khaw
JobTitle            Personnel Analyst
BasePay                      93676.16
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32315.65
TotalPay                     93676.16
TotalPayBenefits            125991.81
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85666, dtype: object)
(85667, Id                             85668
EmployeeName        Sultan M Shahzad
JobTitle            Transit Operator
BasePay                     69472.03
OvertimePay                 18699.24
OtherPay                     3389.59
Benefits                    34427.89
TotalPay                    91560.86
TotalPayBenefits           125988.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85667, dtype: object)
(85668, Id                          85669
EmployeeName         Alice S Chan
JobTitle              Librarian 2
BasePay                  91206.06
OvertimePay                   0.0
OtherPay                  2489.76
Benefits                 32291.31
TotalPay                 93695.82
TotalPayBenefits        125987.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85668, dtype: object)
(85669, Id                                     85670
EmployeeName               Gwendolyn G Bates
JobTitle            Deputy Probation Officer
BasePay                             95663.21
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30320.53
TotalPay                            95663.21
TotalPayBenefits                   125983.74
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85669, dtype: object)
(85670, Id                                   85671
EmployeeName              Modesta F Aquino
JobTitle            Patient Care Assistant
BasePay                           64591.51
OvertimePay                       24502.83
OtherPay                          10983.27
Benefits                          25904.71
TotalPay                         100077.61
TotalPayBenefits                 125982.32
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85670, dtype: object)
(85671, Id                                           85672
EmployeeName                            Steven  La
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                               10669.77
OtherPay                                    1330.0
Benefits                                  31296.88
TotalPay                                  94674.67
TotalPayBenefits                         125971.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85671, dtype: object)
(85672, Id                                          85673
EmployeeName                        Jon R Camacho
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  86460.24
OvertimePay                                   0.0
OtherPay                                  6472.56
Benefits                                 33036.33
TotalPay                                  92932.8
TotalPayBenefits                        125969.13
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85672, dtype: object)
(85673, Id                                          85674
EmployeeName                         Paul  Larson
JobTitle            Operating Engineer, Universal
BasePay                                   89218.9
OvertimePay                               3929.77
OtherPay                                  1503.13
Benefits                                 31308.59
TotalPay                                  94651.8
TotalPayBenefits                        125960.39
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85673, dtype: object)
(85674, Id                                       85675
EmployeeName                Georgina V Morales
JobTitle            Protective Services Worker
BasePay                               80594.59
OvertimePay                           10948.08
OtherPay                               5534.25
Benefits                              28881.79
TotalPay                              97076.92
TotalPayBenefits                     125958.71
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85674, dtype: object)
(85675, Id                             85676
EmployeeName              Loi V Tran
JobTitle            Transit Operator
BasePay                      68809.6
OvertimePay                 17270.87
OtherPay                     5250.09
Benefits                    34625.35
TotalPay                    91330.56
TotalPayBenefits           125955.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85675, dtype: object)
(85676, Id                             85677
EmployeeName        Michael G Hudson
JobTitle                 Librarian 2
BasePay                     92557.25
OvertimePay                      0.0
OtherPay                     1081.93
Benefits                    32306.35
TotalPay                    93639.18
TotalPayBenefits           125945.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85676, dtype: object)
(85677, Id                                         85678
EmployeeName                    William J Stokes
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                             13501.08
OtherPay                                 3098.73
Benefits                                 30057.9
TotalPay                                95883.31
TotalPayBenefits                       125941.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85677, dtype: object)
(85678, Id                              85679
EmployeeName           Violeta  Dayao
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  29293.26
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     98582.26
TotalPayBenefits            125933.39
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85678, dtype: object)
(85679, Id                                   85680
EmployeeName              Marisa E Peralta
JobTitle            Public SafetyComm Disp
BasePay                           81100.22
OvertimePay                        8040.98
OtherPay                           5043.09
Benefits                           31737.0
TotalPay                          94184.29
TotalPayBenefits                 125921.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85679, dtype: object)
(85680, Id                                   85681
EmployeeName                    Mary  Shea
JobTitle            Deputy Court Clerk III
BasePay                           89568.51
OvertimePay                            0.0
OtherPay                            4143.2
Benefits                          32192.81
TotalPay                          93711.71
TotalPayBenefits                 125904.52
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85680, dtype: object)
(85681, Id                              85682
EmployeeName        Christopher A Kim
JobTitle               Deputy Sheriff
BasePay                      83462.27
OvertimePay                   3738.56
OtherPay                       8612.2
Benefits                     30068.62
TotalPay                     95813.03
TotalPayBenefits            125881.65
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85681, dtype: object)
(85682, Id                                      85683
EmployeeName               Israel A J Alfonso
JobTitle            Automotive Service Worker
BasePay                              64317.01
OvertimePay                          19543.67
OtherPay                              13022.1
Benefits                             28979.52
TotalPay                             96882.78
TotalPayBenefits                     125862.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85682, dtype: object)
(85683, Id                                      85684
EmployeeName                   Ryan J Jamison
JobTitle            EMT/Paramedic/Firefighter
BasePay                              87494.84
OvertimePay                           1333.57
OtherPay                               5979.7
Benefits                             31047.58
TotalPay                             94808.11
TotalPayBenefits                    125855.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85683, dtype: object)
(85684, Id                                           85685
EmployeeName                    Juawn Natre  Burks
JobTitle            Sr Airport Communications Disp
BasePay                                   90331.63
OvertimePay                                2981.68
OtherPay                                    764.29
Benefits                                   31776.0
TotalPay                                   94077.6
TotalPayBenefits                          125853.6
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85684, dtype: object)
(85685, Id                                 85686
EmployeeName            Lawrence F Iorio
JobTitle            Painter Supervisor 1
BasePay                         93454.59
OvertimePay                        140.0
OtherPay                             0.0
Benefits                        32257.77
TotalPay                        93594.59
TotalPayBenefits               125852.36
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85685, dtype: object)
(85686, Id                               85687
EmployeeName          Robert  Jones Jr
JobTitle            Transit Supervisor
BasePay                       79271.88
OvertimePay                   16586.91
OtherPay                       1753.43
Benefits                      28236.65
TotalPay                      97612.22
TotalPayBenefits             125848.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85686, dtype: object)
(85687, Id                                        85688
EmployeeName                       Eva  Pollitt
JobTitle            Airport Communications Disp
BasePay                                 75575.4
OvertimePay                             15597.0
OtherPay                                6120.69
Benefits                               28542.33
TotalPay                               97293.09
TotalPayBenefits                      125835.42
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85687, dtype: object)
(85688, Id                                           85689
EmployeeName                         Harvey G Huey
JobTitle            Senior Real Property Appraiser
BasePay                                    92084.7
OvertimePay                                    0.0
OtherPay                                    2100.0
Benefits                                  31641.89
TotalPay                                   94184.7
TotalPayBenefits                         125826.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85688, dtype: object)
(85689, Id                               85690
EmployeeName        Reynaldo E Barrera
JobTitle            Utility Specialist
BasePay                       93512.23
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32298.06
TotalPay                      93512.23
TotalPayBenefits             125810.29
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85689, dtype: object)
(85690, Id                          85691
EmployeeName         Ryan J Tobin
JobTitle            Special Nurse
BasePay                 117576.68
OvertimePay               4197.57
OtherPay                  4032.06
Benefits                      0.0
TotalPay                125806.31
TotalPayBenefits        125806.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85690, dtype: object)
(85691, Id                             85692
EmployeeName         Lemuel  Muldrow
JobTitle            Transit Operator
BasePay                     69921.06
OvertimePay                 15635.87
OtherPay                     5116.24
Benefits                    35123.81
TotalPay                    90673.17
TotalPayBenefits           125796.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85691, dtype: object)
(85692, Id                                          85693
EmployeeName                        Tonya D Jones
JobTitle            Senior Administrative Analyst
BasePay                                  93495.41
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32301.08
TotalPay                                 93495.41
TotalPayBenefits                        125796.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85692, dtype: object)
(85693, Id                             85694
EmployeeName          Francis  Tsang
JobTitle            Mayoral Staff XI
BasePay                      86471.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    39322.25
TotalPay                     86471.5
TotalPayBenefits           125793.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85693, dtype: object)
(85694, Id                                     85695
EmployeeName                  Amarita P King
JobTitle            Deputy Probation Officer
BasePay                             95509.16
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30274.38
TotalPay                            95509.16
TotalPayBenefits                   125783.54
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85694, dtype: object)
(85695, Id                              85696
EmployeeName          Teresita  Puzon
JobTitle            Nursing Assistant
BasePay                      68375.17
OvertimePay                   29152.0
OtherPay                       897.85
Benefits                     27353.04
TotalPay                     98425.02
TotalPayBenefits            125778.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85695, dtype: object)
(85696, Id                                         85697
EmployeeName                  Julia B Vcherashny
JobTitle            IS Programmer Analyst-Senior
BasePay                                 94105.43
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31661.48
TotalPay                                94105.43
TotalPayBenefits                       125766.91
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85696, dtype: object)
(85697, Id                                85698
EmployeeName        Kristen D Belcastro
JobTitle             Physical Therapist
BasePay                         92701.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       33062.93
TotalPay                        92701.0
TotalPayBenefits              125763.93
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85697, dtype: object)
(85698, Id                                          85699
EmployeeName                          Bryant  Tan
JobTitle            Senior Administrative Analyst
BasePay                                  93844.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31919.24
TotalPay                                 93844.02
TotalPayBenefits                        125763.26
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85698, dtype: object)
(85699, Id                               85700
EmployeeName          Michael J Obrien
JobTitle            Building Inspector
BasePay                        89914.0
OvertimePay                    7436.51
OtherPay                       1946.59
Benefits                      26463.81
TotalPay                       99297.1
TotalPayBenefits             125760.91
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85699, dtype: object)
(85700, Id                               85701
EmployeeName          Sherri L Clayton
JobTitle            Program Specialist
BasePay                       81354.01
OvertimePay                    14546.9
OtherPay                           0.0
Benefits                      29855.53
TotalPay                      95900.91
TotalPayBenefits             125756.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85700, dtype: object)
(85701, Id                             85702
EmployeeName            Thomas  Leal
JobTitle            Transit Operator
BasePay                     69726.58
OvertimePay                 14639.08
OtherPay                     6063.49
Benefits                    35301.19
TotalPay                    90429.15
TotalPayBenefits           125730.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85701, dtype: object)
(85702, Id                          85703
EmployeeName        Wesley W Naha
JobTitle             Truck Driver
BasePay                  80052.14
OvertimePay               5623.56
OtherPay                  8757.24
Benefits                 31293.35
TotalPay                 94432.94
TotalPayBenefits        125726.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85702, dtype: object)
(85703, Id                                          85704
EmployeeName                   Christina  Iwasaki
JobTitle            Senior Administrative Analyst
BasePay                                  93431.25
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32289.39
TotalPay                                 93431.25
TotalPayBenefits                        125720.64
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85703, dtype: object)
(85704, Id                                 85705
EmployeeName         Christian R Pearson
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                      7133.47
OtherPay                          7381.7
Benefits                         31067.7
TotalPay                        94648.17
TotalPayBenefits               125715.87
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85704, dtype: object)
(85705, Id                             85706
EmployeeName          Yusuf A Hansia
JobTitle            Transit Operator
BasePay                     67029.29
OvertimePay                 24506.09
OtherPay                     1447.42
Benefits                    32728.41
TotalPay                     92982.8
TotalPayBenefits           125711.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85705, dtype: object)
(85706, Id                                           85707
EmployeeName                   Rauderick  De Silva
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90416.34
OvertimePay                                    0.0
OtherPay                                   3081.03
Benefits                                  32211.94
TotalPay                                  93497.37
TotalPayBenefits                         125709.31
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85706, dtype: object)
(85707, Id                                           85708
EmployeeName                    Robert M Eggleston
JobTitle            Food Service Mgr Administrator
BasePay                                   86424.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                   39284.6
TotalPay                                  86424.03
TotalPayBenefits                         125708.63
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85707, dtype: object)
(85708, Id                                           85709
EmployeeName                     Lucrecia  Guevara
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   89884.74
OvertimePay                                    0.0
OtherPay                                   4005.18
Benefits                                  31816.19
TotalPay                                  93889.92
TotalPayBenefits                         125706.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85708, dtype: object)
(85709, Id                                    85710
EmployeeName           Goodrich S Almoradie
JobTitle            Water Service Inspector
BasePay                            92125.31
OvertimePay                          1028.1
OtherPay                              439.2
Benefits                           32106.15
TotalPay                           93592.61
TotalPayBenefits                  125698.76
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85709, dtype: object)
(85710, Id                                 85711
EmployeeName          Benjamin Hong  Yee
JobTitle            Electrical Inspector
BasePay                        100109.52
OvertimePay                      4760.69
OtherPay                           164.2
Benefits                        20639.57
TotalPay                       105034.41
TotalPayBenefits               125673.98
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85710, dtype: object)
(85711, Id                             85712
EmployeeName           Her B Sutanto
JobTitle            Transit Operator
BasePay                     68988.47
OvertimePay                 17349.84
OtherPay                     3999.64
Benefits                    35331.82
TotalPay                    90337.95
TotalPayBenefits           125669.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85711, dtype: object)
(85712, Id                                     85713
EmployeeName               Patricia M Medina
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.1
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.1
TotalPayBenefits                   125664.26
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85712, dtype: object)
(85713, Id                                     85714
EmployeeName                   Wei-Min  Wang
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.09
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.17
TotalPay                            93420.09
TotalPayBenefits                   125664.26
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85713, dtype: object)
(85714, Id                                     85715
EmployeeName                  Lise F Chansin
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.06
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.17
TotalPay                            93420.06
TotalPayBenefits                   125664.23
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85714, dtype: object)
(85715, Id                                     85716
EmployeeName                     Lydia S Ely
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                            93420.02
TotalPayBenefits                   125664.18
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85715, dtype: object)
(85716, Id                                     85717
EmployeeName                 Georgia  Martin
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                            93420.01
TotalPayBenefits                   125664.17
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85716, dtype: object)
(85717, Id                                     85718
EmployeeName         Michael Vincent  Palmer
JobTitle            Sr. Community Devl Spc 1
BasePay                             93420.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                            93420.01
TotalPayBenefits                   125664.17
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85717, dtype: object)
(85718, Id                                     85719
EmployeeName                  David L Taylor
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85718, dtype: object)
(85719, Id                                     85720
EmployeeName                 Pierre V Stroud
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85719, dtype: object)
(85720, Id                                     85721
EmployeeName             Vivian Ann  Hopkins
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85720, dtype: object)
(85721, Id                                     85722
EmployeeName        Michael Jeffrey  Solomon
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85721, dtype: object)
(85722, Id                                     85723
EmployeeName             Gonzalina M Morales
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85722, dtype: object)
(85723, Id                                     85724
EmployeeName                   Phuong N Thai
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85723, dtype: object)
(85724, Id                                     85725
EmployeeName                  Lisa  Luke-Lee
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85724, dtype: object)
(85725, Id                                     85726
EmployeeName                  Ruo Peng  Yuan
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85725, dtype: object)
(85726, Id                                     85727
EmployeeName              Constantine F Wong
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85726, dtype: object)
(85727, Id                                     85728
EmployeeName                  Scott T Madden
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85727, dtype: object)
(85728, Id                                     85729
EmployeeName               Bruce Susumu  Ito
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85728, dtype: object)
(85729, Id                                     85730
EmployeeName                      Doris  Lee
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32244.16
TotalPay                             93420.0
TotalPayBenefits                   125664.16
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85729, dtype: object)
(85730, Id                                         85731
EmployeeName                      Peter A Conroy
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86211.01
OvertimePay                                  0.0
OtherPay                                 6487.85
Benefits                                32965.05
TotalPay                                92698.86
TotalPayBenefits                       125663.91
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85730, dtype: object)
(85731, Id                            85732
EmployeeName        Nina S Pogosyan
JobTitle                Librarian 2
BasePay                    91206.03
OvertimePay                     0.0
OtherPay                    2225.85
Benefits                    32228.7
TotalPay                   93431.88
TotalPayBenefits          125660.58
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85731, dtype: object)
(85732, Id                                85733
EmployeeName        Ernesto  Jimenez Jr
JobTitle                   Truck Driver
BasePay                         80052.0
OvertimePay                     3848.42
OtherPay                        10185.2
Benefits                       31574.48
TotalPay                       94085.62
TotalPayBenefits               125660.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85732, dtype: object)
(85733, Id                           85734
EmployeeName          Yan Fen  Liu
JobTitle            Accountant III
BasePay                   93371.62
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32287.34
TotalPay                  93371.62
TotalPayBenefits         125658.96
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85733, dtype: object)
(85734, Id                                     85735
EmployeeName                  Brenda J Jones
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32238.78
TotalPay                             93420.0
TotalPayBenefits                   125658.78
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85734, dtype: object)
(85735, Id                                 85736
EmployeeName            Joseph M Lacsina
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                          0.0
OtherPay                        13307.95
Benefits                        32213.18
TotalPay                        93440.95
TotalPayBenefits               125654.13
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85735, dtype: object)
(85736, Id                                 85737
EmployeeName                Warren  Best
JobTitle            Sewer Service Worker
BasePay                         84526.59
OvertimePay                      6513.86
OtherPay                          3455.8
Benefits                        31151.46
TotalPay                        94496.25
TotalPayBenefits               125647.71
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85736, dtype: object)
(85737, Id                            85738
EmployeeName        Amnon  Ben-Pazi
JobTitle                  Planner 3
BasePay                    93372.18
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32270.94
TotalPay                   93372.18
TotalPayBenefits          125643.12
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85737, dtype: object)
(85738, Id                           85739
EmployeeName        Lillian M Chan
JobTitle            Accountant III
BasePay                   93354.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32283.68
TotalPay                  93354.51
TotalPayBenefits         125638.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85738, dtype: object)
(85739, Id                            85740
EmployeeName        Lily S Langlois
JobTitle                  Planner 3
BasePay                    93370.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32265.19
TotalPay                   93370.53
TotalPayBenefits          125635.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85739, dtype: object)
(85740, Id                            85741
EmployeeName        Jonathan T Swae
JobTitle                  Planner 3
BasePay                    93370.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32265.19
TotalPay                   93370.52
TotalPayBenefits          125635.71
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85740, dtype: object)
(85741, Id                             85742
EmployeeName        Nicholas A Perry
JobTitle                   Planner 3
BasePay                     93370.52
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32265.19
TotalPay                    93370.52
TotalPayBenefits           125635.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85741, dtype: object)
(85742, Id                                   85743
EmployeeName                  Vicki L Mack
JobTitle            Deputy Court Clerk III
BasePay                           89373.68
OvertimePay                            0.0
OtherPay                           4141.78
Benefits                          32119.11
TotalPay                          93515.46
TotalPayBenefits                 125634.57
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85742, dtype: object)
(85743, Id                                         85744
EmployeeName                       Mayte D Rosas
JobTitle            Health Program Coordinator 3
BasePay                                  92525.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                33108.12
TotalPay                                 92525.5
TotalPayBenefits                       125633.62
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85743, dtype: object)
(85744, Id                                      85745
EmployeeName                    Asha K Charan
JobTitle            Licensed Vocational Nurse
BasePay                              73315.84
OvertimePay                          23941.06
OtherPay                                250.0
Benefits                             28122.83
TotalPay                              97506.9
TotalPayBenefits                    125629.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85744, dtype: object)
(85745, Id                                85746
EmployeeName         Florante M Salacup
JobTitle            Stationary Engineer
BasePay                        80934.61
OvertimePay                      7139.1
OtherPay                        6529.73
Benefits                        31026.2
TotalPay                       94603.44
TotalPayBenefits              125629.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85745, dtype: object)
(85746, Id                                85747
EmployeeName        David  Solorzano Jr
JobTitle               Transit Operator
BasePay                        67163.91
OvertimePay                    24035.35
OtherPay                         842.51
Benefits                       33562.67
TotalPay                       92041.77
TotalPayBenefits              125604.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85746, dtype: object)
(85747, Id                               85748
EmployeeName        Lafernita  Jenkins
JobTitle              Transit Operator
BasePay                       68089.63
OvertimePay                   22293.09
OtherPay                       1857.71
Benefits                      33355.12
TotalPay                      92240.43
TotalPayBenefits             125595.55
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85747, dtype: object)
(85748, Id                                          85749
EmployeeName                    Barbara K Reinosa
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                              12238.04
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                 95398.04
TotalPayBenefits                        125587.53
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85748, dtype: object)
(85749, Id                              85750
EmployeeName        Sharon R Wilensky
JobTitle                  Librarian 2
BasePay                      91459.86
OvertimePay                       0.0
OtherPay                      1880.53
Benefits                     32237.73
TotalPay                     93340.39
TotalPayBenefits            125578.12
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85749, dtype: object)
(85750, Id                             85751
EmployeeName              John W Lam
JobTitle            Transit Operator
BasePay                     67406.27
OvertimePay                 16238.12
OtherPay                     7378.31
Benefits                    34547.56
TotalPay                     91022.7
TotalPayBenefits           125570.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85750, dtype: object)
(85751, Id                                85752
EmployeeName            Steven R Bergin
JobTitle            Survey Assistant II
BasePay                        82899.51
OvertimePay                    12503.65
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       95403.16
TotalPayBenefits               125563.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85751, dtype: object)
(85752, Id                                   85753
EmployeeName         Benjamin T Volberding
JobTitle            Construction Inspector
BasePay                            92521.8
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          33038.17
TotalPay                           92521.8
TotalPayBenefits                 125559.97
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85752, dtype: object)
(85753, Id                                        85754
EmployeeName        Israel  Trigueros-Hernandez
JobTitle                       Transit Operator
BasePay                                68026.51
OvertimePay                            20644.71
OtherPay                                3186.18
Benefits                               33699.93
TotalPay                                91857.4
TotalPayBenefits                      125557.33
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85753, dtype: object)
(85754, Id                                   85755
EmployeeName            Kathryn  Knoblauch
JobTitle            Airport Safety Officer
BasePay                           86373.06
OvertimePay                        4183.71
OtherPay                           3479.13
Benefits                          31518.68
TotalPay                           94035.9
TotalPayBenefits                 125554.58
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85754, dtype: object)
(85755, Id                            85756
EmployeeName        Laura O Tarango
JobTitle                Librarian 2
BasePay                    90942.98
OvertimePay                     0.0
OtherPay                    2414.95
Benefits                   32187.36
TotalPay                   93357.93
TotalPayBenefits          125545.29
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85755, dtype: object)
(85756, Id                                    85757
EmployeeName        Oscar J Berrios-Sanchez
JobTitle                   Transit Operator
BasePay                            69094.18
OvertimePay                        17909.91
OtherPay                            4106.34
Benefits                           34428.06
TotalPay                           91110.43
TotalPayBenefits                  125538.49
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85756, dtype: object)
(85757, Id                             85758
EmployeeName               Wah K Lau
JobTitle            Transit Operator
BasePay                      66464.0
OvertimePay                 24620.71
OtherPay                      1879.4
Benefits                    32572.42
TotalPay                    92964.11
TotalPayBenefits           125536.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85757, dtype: object)
(85758, Id                                          85759
EmployeeName                        Daniel  Cavan
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                   89620.5
OvertimePay                                557.86
OtherPay                                  3280.08
Benefits                                 32076.26
TotalPay                                 93458.44
TotalPayBenefits                         125534.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85758, dtype: object)
(85759, Id                                   85760
EmployeeName             Kimberley L Tuyay
JobTitle            Public SafetyComm Disp
BasePay                           82252.35
OvertimePay                        6496.83
OtherPay                           6336.52
Benefits                          30443.92
TotalPay                           95085.7
TotalPayBenefits                 125529.62
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85759, dtype: object)
(85760, Id                                          85761
EmployeeName                      Gloria  Samayoa
JobTitle            Victim/Witness Investigator 3
BasePay                                   91692.0
OvertimePay                                   0.0
OtherPay                                   1620.0
Benefits                                 32215.53
TotalPay                                  93312.0
TotalPayBenefits                        125527.53
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85760, dtype: object)
(85761, Id                               85762
EmployeeName        Donna M Persechino
JobTitle                   Librarian 2
BasePay                       91206.04
OvertimePay                        0.0
OtherPay                       2114.54
Benefits                      32204.89
TotalPay                      93320.58
TotalPayBenefits             125525.47
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85761, dtype: object)
(85762, Id                               85763
EmployeeName               Joel  Jones
JobTitle            Sheriff's Sergeant
BasePay                       93253.63
OvertimePay                        0.0
OtherPay                       2875.94
Benefits                      29390.33
TotalPay                      96129.57
TotalPayBenefits              125519.9
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85762, dtype: object)
(85763, Id                                          85764
EmployeeName                       Sheryl E Davis
JobTitle            Criminal Justice Specialist 2
BasePay                                   93420.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32097.96
TotalPay                                  93420.0
TotalPayBenefits                        125517.96
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85763, dtype: object)
(85764, Id                             85765
EmployeeName         Ronnie  Freeman
JobTitle            Transit Operator
BasePay                     67880.02
OvertimePay                 22974.95
OtherPay                     1501.12
Benefits                    33161.01
TotalPay                    92356.09
TotalPayBenefits            125517.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85764, dtype: object)
(85765, Id                                      85766
EmployeeName                       Joyce  Cho
JobTitle            Psychiatric Social Worker
BasePay                              90693.15
OvertimePay                            165.91
OtherPay                              2476.25
Benefits                             32176.03
TotalPay                             93335.31
TotalPayBenefits                    125511.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85765, dtype: object)
(85766, Id                                          85767
EmployeeName                             Sean  Do
JobTitle            Victim/Witness Investigator 3
BasePay                                  91692.07
OvertimePay                                   0.0
OtherPay                                   1600.0
Benefits                                 32211.27
TotalPay                                 93292.07
TotalPayBenefits                        125503.34
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85766, dtype: object)
(85767, Id                                         85768
EmployeeName                        Yongjie  Liu
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.03
OvertimePay                               302.06
OtherPay                                 6504.84
Benefits                                32149.86
TotalPay                                93336.93
TotalPayBenefits                       125486.79
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85767, dtype: object)
(85768, Id                             85769
EmployeeName        Patrick T Truong
JobTitle              Deputy Sheriff
BasePay                      86758.9
OvertimePay                   877.32
OtherPay                     6484.64
Benefits                    31360.09
TotalPay                    94120.86
TotalPayBenefits           125480.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85768, dtype: object)
(85769, Id                                   85770
EmployeeName                 Jeff  Hodgins
JobTitle            Electrical Line Helper
BasePay                           87454.44
OvertimePay                        3968.11
OtherPay                           2994.75
Benefits                          31058.96
TotalPay                           94417.3
TotalPayBenefits                 125476.26
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85769, dtype: object)
(85770, Id                               85771
EmployeeName               Thomas  Zee
JobTitle            Transit Supervisor
BasePay                       69554.44
OvertimePay                   22789.41
OtherPay                       2351.31
Benefits                      30778.25
TotalPay                      94695.16
TotalPayBenefits             125473.41
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85770, dtype: object)
(85771, Id                                      85772
EmployeeName                    Lydia M Ponce
JobTitle            Licensed Vocational Nurse
BasePay                              65106.43
OvertimePay                          28944.52
OtherPay                              5239.88
Benefits                             26174.56
TotalPay                             99290.83
TotalPayBenefits                    125465.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85771, dtype: object)
(85772, Id                             85773
EmployeeName           Mumtaz  Ahmad
JobTitle            Transit Operator
BasePay                     67262.81
OvertimePay                 23145.44
OtherPay                     2033.41
Benefits                     33004.3
TotalPay                    92441.66
TotalPayBenefits           125445.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85772, dtype: object)
(85773, Id                            85774
EmployeeName        Sheldon W McRay
JobTitle               Cement Mason
BasePay                     77775.5
OvertimePay                15664.86
OtherPay                     2400.0
Benefits                   29604.55
TotalPay                   95840.36
TotalPayBenefits          125444.91
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85773, dtype: object)
(85774, Id                              85775
EmployeeName        Sabit  Murcehajic
JobTitle              Switch Repairer
BasePay                       66879.6
OvertimePay                  27318.86
OtherPay                      3591.05
Benefits                     27636.93
TotalPay                     97789.51
TotalPayBenefits            125426.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85774, dtype: object)
(85775, Id                                    85776
EmployeeName                 Mathew J Brady
JobTitle            Water Service Inspector
BasePay                             92362.2
OvertimePay                          793.58
OtherPay                             158.73
Benefits                           32107.89
TotalPay                           93314.51
TotalPayBenefits                   125422.4
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85775, dtype: object)
(85776, Id                                        85777
EmployeeName                 Chukwuma A Ogbonna
JobTitle            Senior Management Assistant
BasePay                                89829.01
OvertimePay                                 0.0
OtherPay                                3388.21
Benefits                               32197.87
TotalPay                               93217.22
TotalPayBenefits                      125415.09
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85776, dtype: object)
(85777, Id                                     85778
EmployeeName                   Oliver M Hack
JobTitle            Sr. Community Devl Spc 1
BasePay                              93420.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31993.31
TotalPay                             93420.0
TotalPayBenefits                   125413.31
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85777, dtype: object)
(85778, Id                            85779
EmployeeName        Lei-Chun F Fung
JobTitle            Health Educator
BasePay                     91836.5
OvertimePay                     0.0
OtherPay                     1360.0
Benefits                   32215.22
TotalPay                    93196.5
TotalPayBenefits          125411.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85778, dtype: object)
(85779, Id                                          85780
EmployeeName                   Winifred C Laidlaw
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                  85563.41
OvertimePay                                1170.1
OtherPay                                  6815.52
Benefits                                 31859.89
TotalPay                                 93549.03
TotalPayBenefits                        125408.92
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85779, dtype: object)
(85780, Id                                 85781
EmployeeName              Daniel  Tishma
JobTitle            Sewer Service Worker
BasePay                          92927.0
OvertimePay                          0.0
OtherPay                           270.0
Benefits                        32203.94
TotalPay                         93197.0
TotalPayBenefits               125400.94
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85780, dtype: object)
(85781, Id                                   85782
EmployeeName             Anthony  Bersamin
JobTitle            Deputy Court Clerk III
BasePay                           89764.57
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          32131.97
TotalPay                          93264.57
TotalPayBenefits                 125396.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85781, dtype: object)
(85782, Id                            85783
EmployeeName        Eric G Montalvo
JobTitle                Firefighter
BasePay                    88062.68
OvertimePay                     0.0
OtherPay                    9143.46
Benefits                   28184.21
TotalPay                   97206.14
TotalPayBenefits          125390.35
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85782, dtype: object)
(85783, Id                                           85784
EmployeeName                     Jonathan W Maddox
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.03
OvertimePay                                 755.78
OtherPay                                   1966.13
Benefits                                   31975.1
TotalPay                                  93414.94
TotalPayBenefits                         125390.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85783, dtype: object)
(85784, Id                                          85785
EmployeeName                           Fendi Y Ng
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                              10221.76
OtherPay                                   1520.0
Benefits                                 30487.94
TotalPay                                 94901.76
TotalPayBenefits                         125389.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85784, dtype: object)
(85785, Id                                          85786
EmployeeName                        Caylin C Wang
JobTitle            Senior Administrative Analyst
BasePay                                  93146.81
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32235.06
TotalPay                                 93146.81
TotalPayBenefits                        125381.87
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85785, dtype: object)
(85786, Id                                85787
EmployeeName        Michael R Lewelling
JobTitle                 Deputy Sheriff
BasePay                        86368.05
OvertimePay                     2522.92
OtherPay                        4344.22
Benefits                       32142.49
TotalPay                       93235.19
TotalPayBenefits              125377.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85786, dtype: object)
(85787, Id                                          85788
EmployeeName                      Maria G Arreola
JobTitle            Contract Compliance Officer 1
BasePay                                  92526.06
OvertimePay                                   0.0
OtherPay                                    600.0
Benefits                                  32250.6
TotalPay                                 93126.06
TotalPayBenefits                        125376.66
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85787, dtype: object)
(85788, Id                             85789
EmployeeName             Yeung  Yuen
JobTitle            Transit Operator
BasePay                     68720.52
OvertimePay                 21016.28
OtherPay                     1945.84
Benefits                    33671.46
TotalPay                    91682.64
TotalPayBenefits            125354.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85788, dtype: object)
(85789, Id                                        85790
EmployeeName                     Ileana  Samanc
JobTitle            Senior Emp Relations Repres
BasePay                                 94936.1
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30416.05
TotalPay                                94936.1
TotalPayBenefits                      125352.15
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85789, dtype: object)
(85790, Id                                   85791
EmployeeName            Antoinette M Acoff
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                         1583.4
OtherPay                           4155.41
Benefits                          31914.51
TotalPay                          93434.81
TotalPayBenefits                 125349.32
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85790, dtype: object)
(85791, Id                                   85792
EmployeeName              Catherine Z Chin
JobTitle            Public SafetyComm Disp
BasePay                            87452.4
OvertimePay                        1915.92
OtherPay                           4168.29
Benefits                          31800.44
TotalPay                          93536.61
TotalPayBenefits                 125337.05
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85791, dtype: object)
(85792, Id                             85793
EmployeeName         Debra K Lumpkin
JobTitle            Transit Operator
BasePay                     68411.45
OvertimePay                 14793.71
OtherPay                     7167.35
Benefits                    34958.82
TotalPay                    90372.51
TotalPayBenefits           125331.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85792, dtype: object)
(85793, Id                          85794
EmployeeName        Larry G Moore
JobTitle             Truck Driver
BasePay                  79799.86
OvertimePay              14982.98
OtherPay                    876.5
Benefits                 29669.27
TotalPay                 95659.34
TotalPayBenefits        125328.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85793, dtype: object)
(85794, Id                                         85795
EmployeeName                          Edward  Ho
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.06
OvertimePay                               151.03
OtherPay                                 6497.59
Benefits                                32148.28
TotalPay                                93178.68
TotalPayBenefits                       125326.96
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85794, dtype: object)
(85795, Id                                        85796
EmployeeName                  David M Froehlich
JobTitle            Landscape Architect Assoc 1
BasePay                                 91232.3
OvertimePay                             1291.92
OtherPay                                    0.0
Benefits                               32785.06
TotalPay                               92524.22
TotalPayBenefits                      125309.28
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85795, dtype: object)
(85796, Id                                85797
EmployeeName               Jesus  Rojas
JobTitle            Automotive Mechanic
BasePay                        79077.62
OvertimePay                    15107.31
OtherPay                        1481.56
Benefits                       29640.52
TotalPay                       95666.49
TotalPayBenefits              125307.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85796, dtype: object)
(85797, Id                                        85798
EmployeeName        Michelle  Del Rosario Young
JobTitle                 Deputy Court Clerk III
BasePay                                89699.51
OvertimePay                                 0.0
OtherPay                                 3500.0
Benefits                               32105.46
TotalPay                               93199.51
TotalPayBenefits                      125304.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85797, dtype: object)
(85798, Id                           85799
EmployeeName          Laura C Kidd
JobTitle            Biologist I/II
BasePay                   92743.17
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32557.44
TotalPay                  92743.17
TotalPayBenefits         125300.61
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85798, dtype: object)
(85799, Id                                     85800
EmployeeName              Kevin  Kitchingham
JobTitle            Sr. Community Devl Spc 1
BasePay                             92464.88
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             32828.2
TotalPay                            92464.88
TotalPayBenefits                   125293.08
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85799, dtype: object)
(85800, Id                          85801
EmployeeName           Linda  Tse
JobTitle             Nutritionist
BasePay                  91836.52
OvertimePay                   0.0
OtherPay                   1260.0
Benefits                 32195.17
TotalPay                 93096.52
TotalPayBenefits        125291.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85800, dtype: object)
(85801, Id                                           85802
EmployeeName                             Dung B Ha
JobTitle            IT Operations Support Admin II
BasePay                                   70566.51
OvertimePay                               27030.47
OtherPay                                       0.0
Benefits                                  27694.13
TotalPay                                  97596.98
TotalPayBenefits                         125291.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85801, dtype: object)
(85802, Id                             85803
EmployeeName         Shawn R Peeters
JobTitle            Senior Purchaser
BasePay                     92075.52
OvertimePay                      0.0
OtherPay                       243.0
Benefits                    32972.09
TotalPay                    92318.52
TotalPayBenefits           125290.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85802, dtype: object)
(85803, Id                             85804
EmployeeName        Paul C Menicucci
JobTitle                 Electrician
BasePay                     85034.72
OvertimePay                  1192.01
OtherPay                     8813.92
Benefits                    30246.81
TotalPay                    95040.65
TotalPayBenefits           125287.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85803, dtype: object)
(85804, Id                          85805
EmployeeName        Zhengping  Ma
JobTitle             Chemist I/II
BasePay                   89708.5
OvertimePay                   0.0
OtherPay                  3352.99
Benefits                 32222.75
TotalPay                 93061.49
TotalPayBenefits        125284.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85804, dtype: object)
(85805, Id                                   85806
EmployeeName        Bonifacio V Moyrong Jr
JobTitle               Automotive Mechanic
BasePay                            79283.5
OvertimePay                        1646.21
OtherPay                          12463.04
Benefits                          31879.39
TotalPay                          93392.75
TotalPayBenefits                 125272.14
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85805, dtype: object)
(85806, Id                                        85807
EmployeeName                         Mimi Y Lee
JobTitle            Administrative Services Mgr
BasePay                                93046.38
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               32223.65
TotalPay                               93046.38
TotalPayBenefits                      125270.03
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85806, dtype: object)
(85807, Id                                           85808
EmployeeName                           Kevin K Siu
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                                1862.11
OtherPay                                   8118.36
Benefits                                  32611.57
TotalPay                                  92655.37
TotalPayBenefits                         125266.94
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85807, dtype: object)
(85808, Id                                   85809
EmployeeName                 Bipina  Patel
JobTitle            Deputy Court Clerk III
BasePay                           89678.21
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          32088.51
TotalPay                          93178.21
TotalPayBenefits                 125266.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85808, dtype: object)
(85809, Id                             85810
EmployeeName        Rosemary M Weber
JobTitle               Special Nurse
BasePay                    101655.83
OvertimePay                  2662.97
OtherPay                    19707.37
Benefits                     1240.26
TotalPay                   124026.17
TotalPayBenefits           125266.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85809, dtype: object)
(85810, Id                             85811
EmployeeName        Jennifer M Plaza
JobTitle            Registered Nurse
BasePay                     84909.28
OvertimePay                  2378.26
OtherPay                     7658.59
Benefits                    30319.01
TotalPay                    94946.13
TotalPayBenefits           125265.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85810, dtype: object)
(85811, Id                                        85812
EmployeeName                     Mildred  Singh
JobTitle            Sr Counselor, Juvenile Hall
BasePay                                86135.69
OvertimePay                             7215.44
OtherPay                                1791.16
Benefits                               30118.31
TotalPay                               95142.29
TotalPayBenefits                       125260.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85811, dtype: object)
(85812, Id                             85813
EmployeeName           Kim Wing  Lam
JobTitle            Transit Operator
BasePay                     67818.68
OvertimePay                 18256.01
OtherPay                     5106.57
Benefits                    34069.55
TotalPay                    91181.26
TotalPayBenefits           125250.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85812, dtype: object)
(85813, Id                                   85814
EmployeeName               Delanie L Groll
JobTitle            Public SafetyComm Disp
BasePay                            81114.9
OvertimePay                        7171.49
OtherPay                           5199.76
Benefits                          31757.56
TotalPay                          93486.15
TotalPayBenefits                 125243.71
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85813, dtype: object)
(85814, Id                             85815
EmployeeName         Donald  Sanders
JobTitle            Transit Operator
BasePay                     68519.76
OvertimePay                 23242.57
OtherPay                      311.58
Benefits                    33160.66
TotalPay                    92073.91
TotalPayBenefits           125234.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85814, dtype: object)
(85815, Id                             85816
EmployeeName        Mercedes R Dimas
JobTitle            Registered Nurse
BasePay                     91979.83
OvertimePay                   819.06
OtherPay                     2611.67
Benefits                    29812.23
TotalPay                    95410.56
TotalPayBenefits           125222.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85815, dtype: object)
(85816, Id                             85817
EmployeeName        Douglas M Griggs
JobTitle            Transit Operator
BasePay                     63288.79
OvertimePay                  30449.4
OtherPay                      765.24
Benefits                    30716.03
TotalPay                    94503.43
TotalPayBenefits           125219.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85816, dtype: object)
(85817, Id                          85818
EmployeeName        Nicole  Doran
JobTitle               Auditor II
BasePay                  92255.48
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32960.15
TotalPay                 92255.48
TotalPayBenefits        125215.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85817, dtype: object)
(85818, Id                              85819
EmployeeName        Antonio  Irizarry
JobTitle                      Glazier
BasePay                       85585.0
OvertimePay                   5585.16
OtherPay                       2800.3
Benefits                     31234.98
TotalPay                     93970.46
TotalPayBenefits            125205.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85818, dtype: object)
(85819, Id                           85820
EmployeeName        Jenine L Smith
JobTitle                 Manager I
BasePay                   97214.14
OvertimePay                    0.0
OtherPay                     18.45
Benefits                  27968.07
TotalPay                  97232.59
TotalPayBenefits         125200.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85819, dtype: object)
(85820, Id                                   85821
EmployeeName             John F Fitzgerald
JobTitle            Electrical Line Helper
BasePay                           77055.64
OvertimePay                       19047.64
OtherPay                            281.14
Benefits                          28814.61
TotalPay                          96384.42
TotalPayBenefits                 125199.03
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85820, dtype: object)
(85821, Id                              85822
EmployeeName           William K Mack
JobTitle            Nursing Assistant
BasePay                      68391.01
OvertimePay                  22825.56
OtherPay                      5679.37
Benefits                     28296.21
TotalPay                     96895.94
TotalPayBenefits            125192.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85821, dtype: object)
(85822, Id                                      85823
EmployeeName                Edgardo F Vergara
JobTitle            EMT/Paramedic/Firefighter
BasePay                              86964.93
OvertimePay                            2647.6
OtherPay                              4812.89
Benefits                             30755.35
TotalPay                             94425.42
TotalPayBenefits                    125180.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85822, dtype: object)
(85823, Id                                      85824
EmployeeName                  Donald O Fraser
JobTitle            Bldg & Grounds Maint Sprv
BasePay                               97650.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             27519.57
TotalPay                              97650.0
TotalPayBenefits                    125169.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85823, dtype: object)
(85824, Id                                         85825
EmployeeName                       Craig A Banks
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.03
OvertimePay                                  0.0
OtherPay                                 6489.76
Benefits                                32146.63
TotalPay                                93019.79
TotalPayBenefits                       125166.42
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85824, dtype: object)
(85825, Id                                         85826
EmployeeName                  Christopher  Jones
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.01
OvertimePay                                  0.0
OtherPay                                 6489.76
Benefits                                32146.63
TotalPay                                93019.77
TotalPayBenefits                        125166.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85825, dtype: object)
(85826, Id                                      85827
EmployeeName                       Kenny  Lin
JobTitle            Automotive Service Worker
BasePay                               63833.2
OvertimePay                          20088.69
OtherPay                             12561.75
Benefits                             28670.33
TotalPay                             96483.64
TotalPayBenefits                    125153.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85826, dtype: object)
(85827, Id                             85828
EmployeeName              James K Wu
JobTitle            Transit Operator
BasePay                     68877.84
OvertimePay                 15577.85
OtherPay                     5866.53
Benefits                    34825.02
TotalPay                    90322.22
TotalPayBenefits           125147.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85827, dtype: object)
(85828, Id                                    85829
EmployeeName                  Florence  Lam
JobTitle            Senior Benefits Analyst
BasePay                            88635.54
OvertimePay                         5267.89
OtherPay                                0.0
Benefits                           31241.77
TotalPay                           93903.43
TotalPayBenefits                   125145.2
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85828, dtype: object)
(85829, Id                                85830
EmployeeName         Mendel S Weinstein
JobTitle            Stationary Engineer
BasePay                        77917.88
OvertimePay                     3074.62
OtherPay                       12634.31
Benefits                       31511.79
TotalPay                       93626.81
TotalPayBenefits               125138.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85829, dtype: object)
(85830, Id                                       85831
EmployeeName                Kenneth W Blackmon
JobTitle            Counselor, Log Cabin Ranch
BasePay                               71532.53
OvertimePay                           24420.88
OtherPay                               2228.45
Benefits                              26955.76
TotalPay                              98181.86
TotalPayBenefits                     125137.62
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85830, dtype: object)
(85831, Id                             85832
EmployeeName        Donaldo  Velasco
JobTitle            Transit Operator
BasePay                     64733.55
OvertimePay                 25708.57
OtherPay                     2634.37
Benefits                    32044.81
TotalPay                    93076.49
TotalPayBenefits            125121.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85831, dtype: object)
(85832, Id                                 85833
EmployeeName             Thomas J Oboyle
JobTitle            Sewer Service Worker
BasePay                         92927.03
OvertimePay                          0.0
OtherPay                            30.0
Benefits                        32157.74
TotalPay                        92957.03
TotalPayBenefits               125114.77
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85832, dtype: object)
(85833, Id                                85834
EmployeeName         Shashikant N Patel
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                    12002.95
OtherPay                        3668.72
Benefits                       30154.62
TotalPay                       94955.19
TotalPayBenefits              125109.81
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85833, dtype: object)
(85834, Id                                      85835
EmployeeName                   Evelyn M Doria
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           22983.6
OtherPay                                250.0
Benefits                             28258.22
TotalPay                              96835.6
TotalPayBenefits                    125093.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85834, dtype: object)
(85835, Id                                   85836
EmployeeName                 Paula E Garay
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       26565.79
OtherPay                            2478.0
Benefits                          27653.31
TotalPay                          97434.79
TotalPayBenefits                  125088.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85835, dtype: object)
(85836, Id                                      85837
EmployeeName              Thuy B Nguyen-Smith
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                               2248.0
Benefits                             32141.05
TotalPay                             92941.02
TotalPayBenefits                    125082.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85836, dtype: object)
(85837, Id                                           85838
EmployeeName                    Peter N Kashtanoff
JobTitle            Investigator,Taxi & AccessSvcs
BasePay                                   88576.01
OvertimePay                                    0.0
OtherPay                                    3570.0
Benefits                                  32933.82
TotalPay                                  92146.01
TotalPayBenefits                         125079.83
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85837, dtype: object)
(85838, Id                               85839
EmployeeName        Paul Anthony  Dean
JobTitle                       Painter
BasePay                       77948.04
OvertimePay                   17949.64
OtherPay                          16.0
Benefits                      29154.41
TotalPay                      95913.68
TotalPayBenefits             125068.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85838, dtype: object)
(85839, Id                                 85840
EmployeeName           Robert M Franklin
JobTitle            Physician Specialist
BasePay                         97101.08
OvertimePay                          0.0
OtherPay                          2250.0
Benefits                        25716.11
TotalPay                        99351.08
TotalPayBenefits               125067.19
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85839, dtype: object)
(85840, Id                             85841
EmployeeName            Johnny  Chan
JobTitle            Transit Operator
BasePay                     68745.91
OvertimePay                 16649.15
OtherPay                     5125.86
Benefits                    34543.07
TotalPay                    90520.92
TotalPayBenefits           125063.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85840, dtype: object)
(85841, Id                                85842
EmployeeName         Jefferson M Quilon
JobTitle            Stationary Engineer
BasePay                        78178.01
OvertimePay                     5842.38
OtherPay                        9931.79
Benefits                       31088.18
TotalPay                       93952.18
TotalPayBenefits              125040.36
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85841, dtype: object)
(85842, Id                                   85843
EmployeeName              Rosemary N Tobin
JobTitle            Deputy Court Clerk III
BasePay                           88936.33
OvertimePay                            0.0
OtherPay                           4138.81
Benefits                          31954.78
TotalPay                          93075.14
TotalPayBenefits                 125029.92
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85842, dtype: object)
(85843, Id                                  85844
EmployeeName        Christopher C Habiger
JobTitle             Automotive Machinist
BasePay                           80133.0
OvertimePay                        254.78
OtherPay                         12569.95
Benefits                         32070.89
TotalPay                         92957.73
TotalPayBenefits                125028.62
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85843, dtype: object)
(85844, Id                             85845
EmployeeName             David T Luu
JobTitle            Transit Operator
BasePay                     69221.45
OvertimePay                 17909.29
OtherPay                     3526.98
Benefits                     34368.1
TotalPay                    90657.72
TotalPayBenefits           125025.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85844, dtype: object)
(85845, Id                              85846
EmployeeName        Amanda  Handerhan
JobTitle             Registered Nurse
BasePay                      84529.23
OvertimePay                   1225.88
OtherPay                     10905.21
Benefits                     28354.59
TotalPay                     96660.32
TotalPayBenefits            125014.91
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85845, dtype: object)
(85846, Id                                   85847
EmployeeName               David K Ohlssen
JobTitle            Construction Inspector
BasePay                            90553.5
OvertimePay                        1835.25
OtherPay                               0.0
Benefits                          32622.74
TotalPay                          92388.75
TotalPayBenefits                 125011.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85846, dtype: object)
(85847, Id                                          85848
EmployeeName                  Aristides A Salinas
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               9952.27
OtherPay                                   1420.0
Benefits                                 30469.75
TotalPay                                 94532.27
TotalPayBenefits                        125002.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85847, dtype: object)
(85848, Id                          85849
EmployeeName        Frank D Jones
JobTitle                Planner 3
BasePay                  93842.22
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31156.03
TotalPay                 93842.22
TotalPayBenefits        124998.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85848, dtype: object)
(85849, Id                                      85850
EmployeeName                Jason M Albertson
JobTitle            Psychiatric Social Worker
BasePay                              90693.01
OvertimePay                            414.62
OtherPay                              2186.49
Benefits                             31698.05
TotalPay                             93294.12
TotalPayBenefits                    124992.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85849, dtype: object)
(85850, Id                             85851
EmployeeName        Ricardo J Garcia
JobTitle                Truck Driver
BasePay                     79895.53
OvertimePay                  4660.39
OtherPay                     9138.32
Benefits                    31284.31
TotalPay                    93694.24
TotalPayBenefits           124978.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85850, dtype: object)
(85851, Id                                      85852
EmployeeName                      Rowena K Ng
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                              2150.24
Benefits                             32121.48
TotalPay                             92843.26
TotalPayBenefits                    124964.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85851, dtype: object)
(85852, Id                                       85853
EmployeeName                   Lloyd L Makilan
JobTitle            Asst Materials Coordinator
BasePay                               85354.82
OvertimePay                            7964.04
OtherPay                                   0.0
Benefits                              31636.55
TotalPay                              93318.86
TotalPayBenefits                     124955.41
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85852, dtype: object)
(85853, Id                           85854
EmployeeName        Clifford S Gee
JobTitle            Accountant III
BasePay                   92790.24
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32162.07
TotalPay                  92790.24
TotalPayBenefits         124952.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85853, dtype: object)
(85854, Id                             85855
EmployeeName             Chi H Quach
JobTitle            Transit Operator
BasePay                     67881.87
OvertimePay                 22620.92
OtherPay                     1330.67
Benefits                     33115.4
TotalPay                    91833.46
TotalPayBenefits           124948.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85854, dtype: object)
(85855, Id                             85856
EmployeeName        Mohammed A Modan
JobTitle            Transit Operator
BasePay                      68255.0
OvertimePay                  18398.0
OtherPay                     4203.22
Benefits                    34092.55
TotalPay                    90856.22
TotalPayBenefits           124948.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85855, dtype: object)
(85856, Id                                85857
EmployeeName               Usman V Diaz
JobTitle            Stationary Engineer
BasePay                        78473.53
OvertimePay                    16270.33
OtherPay                            0.0
Benefits                       30204.34
TotalPay                       94743.86
TotalPayBenefits               124948.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85856, dtype: object)
(85857, Id                              85858
EmployeeName        Ray C Del Rosario
JobTitle             Transit Operator
BasePay                      68321.68
OvertimePay                  22919.28
OtherPay                       595.36
Benefits                     33101.51
TotalPay                     91836.32
TotalPayBenefits            124937.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85857, dtype: object)
(85858, Id                             85859
EmployeeName           Darryl S Reed
JobTitle            Transit Operator
BasePay                     67214.63
OvertimePay                 23254.15
OtherPay                     1607.55
Benefits                    32852.01
TotalPay                    92076.33
TotalPayBenefits           124928.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85858, dtype: object)
(85859, Id                               85860
EmployeeName        Geraldine A Dorman
JobTitle                   Librarian 2
BasePay                       91543.84
OvertimePay                        0.0
OtherPay                       1226.38
Benefits                      32152.59
TotalPay                      92770.22
TotalPayBenefits             124922.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85859, dtype: object)
(85860, Id                             85861
EmployeeName        Cheuk Kai  Leung
JobTitle            Transit Operator
BasePay                     68451.26
OvertimePay                 20727.32
OtherPay                     1452.01
Benefits                     34289.7
TotalPay                    90630.59
TotalPayBenefits           124920.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85860, dtype: object)
(85861, Id                                      85862
EmployeeName                 Josefina  Juarez
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                               2108.0
Benefits                             32113.68
TotalPay                             92801.03
TotalPayBenefits                    124914.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85861, dtype: object)
(85862, Id                                           85863
EmployeeName                           Ho Yin  Lai
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.03
OvertimePay                                    0.0
OtherPay                                   2107.98
Benefits                                  32113.68
TotalPay                                  92801.01
TotalPayBenefits                         124914.69
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85862, dtype: object)
(85863, Id                                      85864
EmployeeName                  Eduardo L Manag
JobTitle            Automotive Service Worker
BasePay                               60545.7
OvertimePay                          24932.67
OtherPay                             12135.12
Benefits                              27300.2
TotalPay                             97613.49
TotalPayBenefits                    124913.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85863, dtype: object)
(85864, Id                                           85865
EmployeeName                        Norma E Garcia
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                    2105.2
Benefits                                  32114.35
TotalPay                                  92798.22
TotalPayBenefits                         124912.57
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85864, dtype: object)
(85865, Id                                    85866
EmployeeName                   Gloria C Chu
JobTitle            Engineering Associate 2
BasePay                            92757.92
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32150.46
TotalPay                           92757.92
TotalPayBenefits                  124908.38
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85865, dtype: object)
(85866, Id                           85867
EmployeeName        Yuan Hua  Zeng
JobTitle            Accountant III
BasePay                   92753.98
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32147.79
TotalPay                  92753.98
TotalPayBenefits         124901.77
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85866, dtype: object)
(85867, Id                                85868
EmployeeName          Omar J McCutcheon
JobTitle            Stationary Engineer
BasePay                        78819.61
OvertimePay                     8609.69
OtherPay                        6819.72
Benefits                       30650.63
TotalPay                       94249.02
TotalPayBenefits              124899.65
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85867, dtype: object)
(85868, Id                                           85869
EmployeeName                       Kevin D Jackson
JobTitle            Arborist Technician Supervisor
BasePay                                   89620.51
OvertimePay                                2752.59
OtherPay                                     858.6
Benefits                                  31658.95
TotalPay                                   93231.7
TotalPayBenefits                         124890.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85868, dtype: object)
(85869, Id                                      85870
EmployeeName                    Maria E Lopez
JobTitle            Attorney (Civil/Criminal)
BasePay                              95984.52
OvertimePay                               0.0
OtherPay                                937.5
Benefits                             27964.54
TotalPay                             96922.02
TotalPayBenefits                    124886.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85869, dtype: object)
(85870, Id                              85871
EmployeeName        Demaster  Survine
JobTitle             Transit Operator
BasePay                      67160.07
OvertimePay                  13558.89
OtherPay                      6035.85
Benefits                     38131.11
TotalPay                     86754.81
TotalPayBenefits            124885.92
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85870, dtype: object)
(85871, Id                                   85872
EmployeeName                Mariya M Rubel
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       27529.23
OtherPay                            1498.0
Benefits                          27464.13
TotalPay                          97418.23
TotalPayBenefits                 124882.36
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85871, dtype: object)
(85872, Id                             85873
EmployeeName             Howard  Woo
JobTitle            Transit Operator
BasePay                     68204.46
OvertimePay                 17407.85
OtherPay                     5007.74
Benefits                    34258.38
TotalPay                    90620.05
TotalPayBenefits           124878.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85872, dtype: object)
(85873, Id                                85874
EmployeeName         Chrystal R Perkins
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                     7168.37
OtherPay                        6285.68
Benefits                       30883.12
TotalPay                       93995.05
TotalPayBenefits              124878.17
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85873, dtype: object)
(85874, Id                                   85875
EmployeeName            Rachelle D Shannon
JobTitle            Public SafetyComm Disp
BasePay                           86319.25
OvertimePay                        3040.14
OtherPay                           4090.33
Benefits                          31423.81
TotalPay                          93449.72
TotalPayBenefits                 124873.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85874, dtype: object)
(85875, Id                                      85876
EmployeeName                   Marta I Bernal
JobTitle            Psychiatric Social Worker
BasePay                              90693.07
OvertimePay                               0.0
OtherPay                              2068.01
Benefits                             32105.15
TotalPay                             92761.08
TotalPayBenefits                    124866.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85875, dtype: object)
(85876, Id                                   85877
EmployeeName             Rosalind R Spears
JobTitle            Deputy Court Clerk III
BasePay                           87636.78
OvertimePay                            0.0
OtherPay                           5877.05
Benefits                          31351.91
TotalPay                          93513.83
TotalPayBenefits                 124865.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85876, dtype: object)
(85877, Id                            85878
EmployeeName        Terry Y Carlson
JobTitle                Librarian 2
BasePay                    91543.86
OvertimePay                     0.0
OtherPay                    1165.61
Benefits                   32152.26
TotalPay                   92709.47
TotalPayBenefits          124861.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85877, dtype: object)
(85878, Id                            85879
EmployeeName          Man Keung  Ng
JobTitle            Junior Engineer
BasePay                     87028.5
OvertimePay                  6842.7
OtherPay                        0.0
Benefits                    30986.4
TotalPay                    93871.2
TotalPayBenefits           124857.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85878, dtype: object)
(85879, Id                                         85880
EmployeeName                       Rickey T Hall
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 85830.24
OvertimePay                               771.58
OtherPay                                 6369.66
Benefits                                31885.86
TotalPay                                92971.48
TotalPayBenefits                       124857.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85879, dtype: object)
(85880, Id                                       85881
EmployeeName                       Jack S Song
JobTitle            Cfdntal Sctry to City Atty
BasePay                                92723.6
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32125.13
TotalPay                               92723.6
TotalPayBenefits                     124848.73
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85880, dtype: object)
(85881, Id                                      85882
EmployeeName                       Diana  Yee
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                              2048.01
Benefits                             32103.37
TotalPay                             92741.03
TotalPayBenefits                     124844.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85881, dtype: object)
(85882, Id                                         85883
EmployeeName                    Dolores  Johnson
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86368.9
OvertimePay                                  0.0
OtherPay                                 6405.43
Benefits                                32069.98
TotalPay                                92774.33
TotalPayBenefits                       124844.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85882, dtype: object)
(85883, Id                             85884
EmployeeName          Albert E Cheng
JobTitle            Transit Operator
BasePay                     66923.02
OvertimePay                 23053.19
OtherPay                     2037.49
Benefits                    32824.67
TotalPay                     92013.7
TotalPayBenefits           124838.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85883, dtype: object)
(85884, Id                             85885
EmployeeName        Chieko Y Wealand
JobTitle                 Librarian 2
BasePay                     91206.12
OvertimePay                      0.0
OtherPay                     1529.58
Benefits                    32097.23
TotalPay                     92735.7
TotalPayBenefits           124832.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85884, dtype: object)
(85885, Id                               85886
EmployeeName        Carlos R Ranola Jr
JobTitle             Nursing Assistant
BasePay                        68391.0
OvertimePay                   22462.42
OtherPay                       5686.96
Benefits                      28289.62
TotalPay                      96540.38
TotalPayBenefits              124830.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85885, dtype: object)
(85886, Id                                   85887
EmployeeName                Daryl A Semien
JobTitle            Public SafetyComm Disp
BasePay                            81843.1
OvertimePay                        2770.95
OtherPay                           9450.79
Benefits                          30761.37
TotalPay                          94064.84
TotalPayBenefits                 124826.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85886, dtype: object)
(85887, Id                          85888
EmployeeName           Irene  Lee
JobTitle              Librarian 2
BasePay                  90868.26
OvertimePay                   0.0
OtherPay                  1905.83
Benefits                  32052.1
TotalPay                 92774.09
TotalPayBenefits        124826.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85887, dtype: object)
(85888, Id                              85889
EmployeeName        Ronald D Mitchell
JobTitle             Transit Operator
BasePay                      64965.87
OvertimePay                  26448.11
OtherPay                      1615.84
Benefits                     31794.51
TotalPay                     93029.82
TotalPayBenefits            124824.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85888, dtype: object)
(85889, Id                          85890
EmployeeName         James M Soos
JobTitle              Manager III
BasePay                  76640.52
OvertimePay                   0.0
OtherPay                 21783.84
Benefits                 26399.06
TotalPay                 98424.36
TotalPayBenefits        124823.42
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85889, dtype: object)
(85890, Id                                      85891
EmployeeName                        Sam  Eath
JobTitle            Psychiatric Social Worker
BasePay                              90693.11
OvertimePay                               0.0
OtherPay                               2028.0
Benefits                             32099.74
TotalPay                             92721.11
TotalPayBenefits                    124820.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85890, dtype: object)
(85891, Id                                      85892
EmployeeName                     Kim  Hoffman
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                               2028.0
Benefits                             32099.11
TotalPay                             92721.03
TotalPayBenefits                    124820.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85891, dtype: object)
(85892, Id                                      85893
EmployeeName                      John W Chan
JobTitle            Psychiatric Social Worker
BasePay                              90693.08
OvertimePay                               0.0
OtherPay                               2028.0
Benefits                             32097.87
TotalPay                             92721.08
TotalPayBenefits                    124818.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85892, dtype: object)
(85893, Id                                85894
EmployeeName          Michael A Webster
JobTitle            IS Business Analyst
BasePay                        92678.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32140.42
TotalPay                       92678.53
TotalPayBenefits              124818.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85893, dtype: object)
(85894, Id                                      85895
EmployeeName                  Cynthia S Chinn
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                               2028.0
Benefits                             32097.86
TotalPay                             92721.03
TotalPayBenefits                    124818.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85894, dtype: object)
(85895, Id                                      85896
EmployeeName                 Oksana V Kuzmina
JobTitle            Pr Administrative Analyst
BasePay                              94436.27
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                              30380.3
TotalPay                             94436.27
TotalPayBenefits                    124816.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85895, dtype: object)
(85896, Id                              85897
EmployeeName        Veronica Y Butler
JobTitle            Nursing Assistant
BasePay                      68359.34
OvertimePay                  22397.33
OtherPay                      5757.57
Benefits                     28295.88
TotalPay                     96514.24
TotalPayBenefits            124810.12
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85896, dtype: object)
(85897, Id                               85898
EmployeeName        Leonida  Fernandez
JobTitle             Nursing Assistant
BasePay                       68391.01
OvertimePay                   28149.99
OtherPay                         898.0
Benefits                      27359.08
TotalPay                       97439.0
TotalPayBenefits             124798.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85897, dtype: object)
(85898, Id                                      85899
EmployeeName              Christopher J Grona
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                          22671.45
OtherPay                                250.0
Benefits                             28266.71
TotalPay                             96523.46
TotalPayBenefits                    124790.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85898, dtype: object)
(85899, Id                              85900
EmployeeName          Jimmy  Matthews
JobTitle            Nursing Assistant
BasePay                      65734.21
OvertimePay                   25243.1
OtherPay                      6418.75
Benefits                     27385.19
TotalPay                     97396.06
TotalPayBenefits            124781.25
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85899, dtype: object)
(85900, Id                                     85901
EmployeeName        Sharon L Alexander-Berry
JobTitle                    Transit Operator
BasePay                             67761.06
OvertimePay                         21974.94
OtherPay                             1855.65
Benefits                            33187.06
TotalPay                            91591.65
TotalPayBenefits                   124778.71
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85900, dtype: object)
(85901, Id                                     85902
EmployeeName                Yolanda D Fisher
JobTitle            Senior Personnel Analyst
BasePay                              91872.8
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32903.93
TotalPay                             91872.8
TotalPayBenefits                   124776.73
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85901, dtype: object)
(85902, Id                                      85903
EmployeeName                    Salome S Hwee
JobTitle            Psychiatric Social Worker
BasePay                              90693.05
OvertimePay                               0.0
OtherPay                               1988.0
Benefits                             32089.98
TotalPay                             92681.05
TotalPayBenefits                    124771.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85902, dtype: object)
(85903, Id                                 85904
EmployeeName                James P Long
JobTitle            Painter Supervisor 1
BasePay                         92744.67
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        32025.23
TotalPay                        92744.67
TotalPayBenefits                124769.9
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 85903, dtype: object)
(85904, Id                                           85905
EmployeeName                      Rodell V Jacinto
JobTitle            IT Operations Support Admn III
BasePay                                   86559.72
OvertimePay                                    0.0
OtherPay                                   6142.26
Benefits                                  32060.04
TotalPay                                  92701.98
TotalPayBenefits                         124762.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85904, dtype: object)
(85905, Id                                       85906
EmployeeName                 Naomi Ngan K Chau
JobTitle            Protective Services Worker
BasePay                               91523.84
OvertimePay                                0.0
OtherPay                                1220.0
Benefits                               32009.1
TotalPay                              92743.84
TotalPayBenefits                     124752.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85905, dtype: object)
(85906, Id                                          85907
EmployeeName                      Helen  Calderon
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.05
OvertimePay                                   0.0
OtherPay                                  1688.02
Benefits                                  32083.8
TotalPay                                 92651.07
TotalPayBenefits                        124734.87
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85906, dtype: object)
(85907, Id                                          85908
EmployeeName                        William  Huey
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.02
OvertimePay                                   0.0
OtherPay                                   1688.0
Benefits                                  32083.8
TotalPay                                 92651.02
TotalPayBenefits                        124734.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85907, dtype: object)
(85908, Id                             85909
EmployeeName              Rich  Tran
JobTitle            Transit Operator
BasePay                     65820.43
OvertimePay                 25082.84
OtherPay                     1651.15
Benefits                    32179.09
TotalPay                    92554.42
TotalPayBenefits           124733.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85908, dtype: object)
(85909, Id                                      85910
EmployeeName                    Edward S Bird
JobTitle            EMT/Paramedic/Firefighter
BasePay                              74730.19
OvertimePay                           7034.41
OtherPay                              13716.8
Benefits                             29248.17
TotalPay                              95481.4
TotalPayBenefits                    124729.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85909, dtype: object)
(85910, Id                              85911
EmployeeName        Margaret M Miller
JobTitle             Registered Nurse
BasePay                      89125.21
OvertimePay                    2166.3
OtherPay                      4160.09
Benefits                     29272.08
TotalPay                      95451.6
TotalPayBenefits            124723.68
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85910, dtype: object)
(85911, Id                                   85912
EmployeeName        Christopher J Delarosa
JobTitle                     Special Nurse
BasePay                          115628.55
OvertimePay                        1786.76
OtherPay                           6069.49
Benefits                           1234.92
TotalPay                          123484.8
TotalPayBenefits                 124719.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85911, dtype: object)
(85912, Id                                          85913
EmployeeName                     Jennifer  Scaife
JobTitle            Senior Administrative Analyst
BasePay                                  91826.22
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32883.66
TotalPay                                 91826.22
TotalPayBenefits                        124709.88
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85912, dtype: object)
(85913, Id                                      85914
EmployeeName                Christina M Clark
JobTitle            EMT/Paramedic/Firefighter
BasePay                              85600.65
OvertimePay                           3377.91
OtherPay                              5421.87
Benefits                             30297.59
TotalPay                             94400.43
TotalPayBenefits                    124698.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85913, dtype: object)
(85914, Id                                          85915
EmployeeName                    Christina  Chiong
JobTitle            Senior Administrative Analyst
BasePay                                  92570.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32125.86
TotalPay                                 92570.01
TotalPayBenefits                        124695.87
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85914, dtype: object)
(85915, Id                                    85916
EmployeeName             Cynthia A Martinez
JobTitle            Program Support Analyst
BasePay                            92106.03
OvertimePay                             0.0
OtherPay                              460.0
Benefits                           32123.49
TotalPay                           92566.03
TotalPayBenefits                  124689.52
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 85915, dtype: object)
(85916, Id                                          85917
EmployeeName                        Angel D Aulet
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.07
OvertimePay                                   0.0
OtherPay                                  1648.01
Benefits                                 32077.76
TotalPay                                 92611.08
TotalPayBenefits                        124688.84
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85916, dtype: object)
(85917, Id                                      85918
EmployeeName                     Ellen L Zhou
JobTitle            Psychiatric Social Worker
BasePay                              90693.01
OvertimePay                               0.0
OtherPay                               1915.0
Benefits                             32070.39
TotalPay                             92608.01
TotalPayBenefits                     124678.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85917, dtype: object)
(85918, Id                                      85919
EmployeeName                  Donna D Salazar
JobTitle            Attorney (Civil/Criminal)
BasePay                              94027.67
OvertimePay                               0.0
OtherPay                               937.52
Benefits                             29711.44
TotalPay                             94965.19
TotalPayBenefits                    124676.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85918, dtype: object)
(85919, Id                               85920
EmployeeName        Harolynne  Johnson
JobTitle              Transit Operator
BasePay                       67209.38
OvertimePay                   22505.77
OtherPay                       1978.16
Benefits                      32981.51
TotalPay                      91693.31
TotalPayBenefits             124674.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85919, dtype: object)
(85920, Id                                      85921
EmployeeName                  Robert M Fowler
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          15508.04
OtherPay                              6116.63
Benefits                              29444.9
TotalPay                             95226.67
TotalPayBenefits                    124671.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85920, dtype: object)
(85921, Id                               85922
EmployeeName        Patrick W Shanahan
JobTitle                  Truck Driver
BasePay                       80052.03
OvertimePay                   11363.69
OtherPay                       3058.25
Benefits                      30179.03
TotalPay                      94473.97
TotalPayBenefits              124653.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85921, dtype: object)
(85922, Id                                  85923
EmployeeName             Laura T Azzolino
JobTitle            Executive Secretary 3
BasePay                          80171.57
OvertimePay                           0.0
OtherPay                          16130.0
Benefits                         28339.99
TotalPay                         96301.57
TotalPayBenefits                124641.56
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85922, dtype: object)
(85923, Id                                         85924
EmployeeName                       Margaret Y Yu
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.05
OvertimePay                             22400.65
OtherPay                                     0.0
Benefits                                28334.89
TotalPay                                 96299.7
TotalPayBenefits                       124634.59
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85923, dtype: object)
(85924, Id                                           85925
EmployeeName                          David D Bull
JobTitle            Electrical Transit System Mech
BasePay                                   82492.85
OvertimePay                                1382.59
OtherPay                                    8939.9
Benefits                                  31802.02
TotalPay                                  92815.34
TotalPayBenefits                         124617.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85924, dtype: object)
(85925, Id                             85926
EmployeeName         Orlando J Gomez
JobTitle            Transit Operator
BasePay                     68793.39
OvertimePay                 19149.37
OtherPay                     2740.98
Benefits                    33933.33
TotalPay                    90683.74
TotalPayBenefits           124617.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85925, dtype: object)
(85926, Id                          85927
EmployeeName           Wing  Chan
JobTitle              Librarian 2
BasePay                  90530.51
OvertimePay                   0.0
OtherPay                  2105.35
Benefits                 31980.31
TotalPay                 92635.86
TotalPayBenefits        124616.17
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85926, dtype: object)
(85927, Id                             85928
EmployeeName          Dennis  Bobila
JobTitle            Transit Operator
BasePay                     66109.42
OvertimePay                 26173.23
OtherPay                      320.33
Benefits                    32010.66
TotalPay                    92602.98
TotalPayBenefits           124613.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85927, dtype: object)
(85928, Id                                          85929
EmployeeName                    Chaitra D Prashad
JobTitle            Senior Administrative Analyst
BasePay                                  92500.41
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32113.18
TotalPay                                 92500.41
TotalPayBenefits                        124613.59
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85928, dtype: object)
(85929, Id                            85930
EmployeeName        Corinne M Allen
JobTitle              Special Nurse
BasePay                   115933.42
OvertimePay                     0.0
OtherPay                    7445.39
Benefits                    1233.84
TotalPay                  123378.81
TotalPayBenefits          124612.65
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85929, dtype: object)
(85930, Id                               85931
EmployeeName        Stephanie E Sommer
JobTitle                 Special Nurse
BasePay                      119256.44
OvertimePay                    1399.19
OtherPay                       3956.85
Benefits                           0.0
TotalPay                     124612.48
TotalPayBenefits             124612.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85930, dtype: object)
(85931, Id                                     85932
EmployeeName                 James C Whitten
JobTitle            Commercial Div Asst Sprv
BasePay                             85113.53
OvertimePay                              0.0
OtherPay                              405.69
Benefits                            39082.37
TotalPay                            85519.22
TotalPayBenefits                   124601.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 85931, dtype: object)
(85932, Id                                  85933
EmployeeName              Thomas M Dennis
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                      11145.75
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         94377.27
TotalPayBenefits                124594.92
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85932, dtype: object)
(85933, Id                              85934
EmployeeName        Vincent L Guerena
JobTitle                      Plumber
BasePay                      92056.38
OvertimePay                    544.95
OtherPay                        830.0
Benefits                     31161.08
TotalPay                     93431.33
TotalPayBenefits            124592.41
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85933, dtype: object)
(85934, Id                            85935
EmployeeName        Michael  Hanson
JobTitle                 Manager II
BasePay                    88792.48
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   35797.51
TotalPay                   88792.48
TotalPayBenefits          124589.99
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85934, dtype: object)
(85935, Id                           85936
EmployeeName        Lillian A Quan
JobTitle                   Dentist
BasePay                   96113.29
OvertimePay                    0.0
OtherPay                    1350.0
Benefits                  27125.48
TotalPay                  97463.29
TotalPayBenefits         124588.77
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85935, dtype: object)
(85936, Id                           85937
EmployeeName        Carla  Peguese
JobTitle             Special Nurse
BasePay                  114323.82
OvertimePay                4725.15
OtherPay                   4300.47
Benefits                   1233.48
TotalPay                 123349.44
TotalPayBenefits         124582.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85936, dtype: object)
(85937, Id                                           85938
EmployeeName                         John P Howell
JobTitle            Electr Instrmntn Tech Wtr Poll
BasePay                                    89948.1
OvertimePay                                1648.64
OtherPay                                     464.0
Benefits                                  32517.14
TotalPay                                  92060.74
TotalPayBenefits                         124577.88
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85937, dtype: object)
(85938, Id                              85939
EmployeeName        Denise  Sanderson
JobTitle                  Librarian 2
BasePay                       91206.1
OvertimePay                       0.0
OtherPay                       1317.7
Benefits                     32048.05
TotalPay                      92523.8
TotalPayBenefits            124571.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85938, dtype: object)
(85939, Id                           85940
EmployeeName        Lisa M Dunseth
JobTitle               Librarian 2
BasePay                   91206.06
OvertimePay                    0.0
OtherPay                   1313.29
Benefits                  32048.17
TotalPay                  92519.35
TotalPayBenefits         124567.52
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85939, dtype: object)
(85940, Id                             85941
EmployeeName        Michael J Pavich
JobTitle            Street Inspector
BasePay                      78164.0
OvertimePay                 14530.35
OtherPay                      2220.0
Benefits                    29649.67
TotalPay                    94914.35
TotalPayBenefits           124564.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85940, dtype: object)
(85941, Id                             85942
EmployeeName        Carlos V Fajardo
JobTitle            Transit Operator
BasePay                     68240.23
OvertimePay                 22491.95
OtherPay                      730.24
Benefits                    33101.19
TotalPay                    91462.42
TotalPayBenefits           124563.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85941, dtype: object)
(85942, Id                                   85943
EmployeeName              Laura F Marshall
JobTitle            Performance Analyst II
BasePay                           92455.06
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           32102.5
TotalPay                          92455.06
TotalPayBenefits                 124557.56
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 85942, dtype: object)
(85943, Id                                      85944
EmployeeName                  Fidela G Martel
JobTitle            Child Support Officer III
BasePay                              83975.01
OvertimePay                               0.0
OtherPay                             11191.34
Benefits                             29380.26
TotalPay                             95166.35
TotalPayBenefits                    124546.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85943, dtype: object)
(85944, Id                                85945
EmployeeName             Michael G Beil
JobTitle            Automotive Mechanic
BasePay                        79123.47
OvertimePay                      3671.1
OtherPay                       10305.64
Benefits                        31445.2
TotalPay                       93100.21
TotalPayBenefits              124545.41
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85944, dtype: object)
(85945, Id                                  85946
EmployeeName          Jennifer L Rakowski
JobTitle            Rent Board Supervisor
BasePay                          92864.17
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31679.16
TotalPay                         92864.17
TotalPayBenefits                124543.33
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85945, dtype: object)
(85946, Id                             85947
EmployeeName             Chin  Yeung
JobTitle            Transit Operator
BasePay                     66611.58
OvertimePay                 23852.96
OtherPay                     1512.67
Benefits                    32556.99
TotalPay                    91977.21
TotalPayBenefits            124534.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85946, dtype: object)
(85947, Id                                      85948
EmployeeName                   James W Vaughn
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          19279.23
OtherPay                             12150.93
Benefits                             28781.15
TotalPay                             95742.36
TotalPayBenefits                    124523.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85947, dtype: object)
(85948, Id                          85949
EmployeeName        Tiffany B Lac
JobTitle              Librarian 2
BasePay                   90826.1
OvertimePay                   0.0
OtherPay                   1692.7
Benefits                 31996.01
TotalPay                  92518.8
TotalPayBenefits        124514.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85948, dtype: object)
(85949, Id                              85950
EmployeeName        Loretta M Cecconi
JobTitle              Chief Dietitian
BasePay                      91700.78
OvertimePay                       0.0
OtherPay                       771.03
Benefits                     32040.34
TotalPay                     92471.81
TotalPayBenefits            124512.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85949, dtype: object)
(85950, Id                               85951
EmployeeName           Doretha A Cross
JobTitle            Transit Supervisor
BasePay                       67882.26
OvertimePay                   28494.11
OtherPay                       3949.77
Benefits                      24184.22
TotalPay                     100326.14
TotalPayBenefits             124510.36
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85950, dtype: object)
(85951, Id                                85952
EmployeeName               Jose G Ponce
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                    10294.22
OtherPay                        5641.96
Benefits                        30091.0
TotalPay                       94409.68
TotalPayBenefits              124500.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85951, dtype: object)
(85952, Id                                           85953
EmployeeName                     Michael  Woodruff
JobTitle            Senior Parking Control Officer
BasePay                                    70701.5
OvertimePay                               25022.14
OtherPay                                     872.6
Benefits                                  27872.01
TotalPay                                  96596.24
TotalPayBenefits                         124468.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85952, dtype: object)
(85953, Id                                          85954
EmployeeName                            Jay  Liao
JobTitle            Senior Administrative Analyst
BasePay                                  91624.61
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32839.96
TotalPay                                 91624.61
TotalPayBenefits                        124464.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85953, dtype: object)
(85954, Id                                  85955
EmployeeName                    Emily  Ho
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                           1728.0
Benefits                         32038.23
TotalPay                         92421.01
TotalPayBenefits                124459.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85954, dtype: object)
(85955, Id                                  85956
EmployeeName                     Rita  Ng
JobTitle            Medical Social Worker
BasePay                          90693.06
OvertimePay                           0.0
OtherPay                          1728.01
Benefits                         32037.04
TotalPay                         92421.07
TotalPayBenefits                124458.11
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85955, dtype: object)
(85956, Id                              85957
EmployeeName        David J Silvestri
JobTitle                 Truck Driver
BasePay                       80052.0
OvertimePay                    7119.2
OtherPay                       6436.0
Benefits                     30848.69
TotalPay                      93607.2
TotalPayBenefits            124455.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85956, dtype: object)
(85957, Id                              85958
EmployeeName          Noida E Capapas
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  34351.27
OtherPay                      5537.54
Benefits                     16175.98
TotalPay                    108279.81
TotalPayBenefits            124455.79
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85957, dtype: object)
(85958, Id                             85959
EmployeeName          Relondo A Bell
JobTitle            Transit Operator
BasePay                     68198.27
OvertimePay                 19093.53
OtherPay                     3336.28
Benefits                    33827.69
TotalPay                    90628.08
TotalPayBenefits           124455.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85958, dtype: object)
(85959, Id                            85960
EmployeeName        Melissa M Buzon
JobTitle               Chemist I/II
BasePay                     92751.3
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31704.13
TotalPay                    92751.3
TotalPayBenefits          124455.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85959, dtype: object)
(85960, Id                             85961
EmployeeName        Nicole T Germain
JobTitle                 Librarian 2
BasePay                     91206.05
OvertimePay                      0.0
OtherPay                     1212.97
Benefits                    32027.81
TotalPay                    92419.02
TotalPayBenefits           124446.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85960, dtype: object)
(85961, Id                              85962
EmployeeName        Margaret E Fisher
JobTitle             Dental Hygienist
BasePay                      92547.59
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31894.92
TotalPay                     92547.59
TotalPayBenefits            124442.51
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 85961, dtype: object)
(85962, Id                                      85963
EmployeeName               Heather M Weisbrod
JobTitle            Psychiatric Social Worker
BasePay                              90630.04
OvertimePay                               0.0
OtherPay                              1778.56
Benefits                              32027.2
TotalPay                              92408.6
TotalPayBenefits                     124435.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85962, dtype: object)
(85963, Id                                  85964
EmployeeName            Cynthia C Mienert
JobTitle            Medical Social Worker
BasePay                          90693.02
OvertimePay                           0.0
OtherPay                           1708.0
Benefits                         32033.35
TotalPay                         92401.02
TotalPayBenefits                124434.37
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85963, dtype: object)
(85964, Id                             85965
EmployeeName             Shao H Situ
JobTitle            Transit Operator
BasePay                     67126.67
OvertimePay                 17253.85
OtherPay                     6036.46
Benefits                    34011.96
TotalPay                    90416.98
TotalPayBenefits           124428.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85964, dtype: object)
(85965, Id                           85966
EmployeeName        Luis N Trelles
JobTitle                 Asst Engr
BasePay                   93036.58
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   31390.9
TotalPay                  93036.58
TotalPayBenefits         124427.48
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85965, dtype: object)
(85966, Id                             85967
EmployeeName        Arnulfo R Romero
JobTitle                Truck Driver
BasePay                     80052.15
OvertimePay                  4179.72
OtherPay                     8874.81
Benefits                    31318.04
TotalPay                    93106.68
TotalPayBenefits           124424.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85966, dtype: object)
(85967, Id                                      85968
EmployeeName                      Daniel N Ip
JobTitle            Psychiatric Social Worker
BasePay                               90693.0
OvertimePay                               0.0
OtherPay                               1688.0
Benefits                             32030.94
TotalPay                              92381.0
TotalPayBenefits                    124411.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85967, dtype: object)
(85968, Id                                  85969
EmployeeName              Amina T Durrani
JobTitle            Medical Social Worker
BasePay                          90692.99
OvertimePay                           0.0
OtherPay                           1688.0
Benefits                         32030.94
TotalPay                         92380.99
TotalPayBenefits                124411.93
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85968, dtype: object)
(85969, Id                                      85970
EmployeeName                   Judith M Kline
JobTitle            Psychiatric Social Worker
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                               1688.0
Benefits                             32029.73
TotalPay                             92381.04
TotalPayBenefits                    124410.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85969, dtype: object)
(85970, Id                                  85971
EmployeeName             Gracia V Cuellar
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                           1688.0
Benefits                         32029.71
TotalPay                         92381.01
TotalPayBenefits                124410.72
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85970, dtype: object)
(85971, Id                                      85972
EmployeeName               Richard  Montantes
JobTitle            Psychiatric Social Worker
BasePay                               90693.0
OvertimePay                               0.0
OtherPay                               1688.0
Benefits                             32029.71
TotalPay                              92381.0
TotalPayBenefits                    124410.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85971, dtype: object)
(85972, Id                             85973
EmployeeName          Joshua D Fears
JobTitle            Registered Nurse
BasePay                     86143.31
OvertimePay                  4149.22
OtherPay                     4017.05
Benefits                    30096.61
TotalPay                    94309.58
TotalPayBenefits           124406.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85972, dtype: object)
(85973, Id                                          85974
EmployeeName                  Abdessamad  El Gord
JobTitle            Airport Property Specialist 1
BasePay                                  92129.22
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32266.32
TotalPay                                 92129.22
TotalPayBenefits                        124395.54
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85973, dtype: object)
(85974, Id                             85975
EmployeeName           Uton  Stewart
JobTitle            Transit Operator
BasePay                     68102.95
OvertimePay                 21163.16
OtherPay                     1769.19
Benefits                    33350.92
TotalPay                     91035.3
TotalPayBenefits           124386.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85974, dtype: object)
(85975, Id                          85976
EmployeeName        Jane B Glasby
JobTitle              Librarian 2
BasePay                  91206.01
OvertimePay                   0.0
OtherPay                  1145.24
Benefits                 32026.04
TotalPay                 92351.25
TotalPayBenefits        124377.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 85975, dtype: object)
(85976, Id                               85977
EmployeeName        Elizabeth M Mackey
JobTitle              Registered Nurse
BasePay                       87635.47
OvertimePay                    3257.34
OtherPay                       3921.44
Benefits                      29555.97
TotalPay                      94814.25
TotalPayBenefits             124370.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85976, dtype: object)
(85977, Id                             85978
EmployeeName          Jerry L Odhams
JobTitle            Transit Operator
BasePay                     68223.71
OvertimePay                 19723.29
OtherPay                      2741.6
Benefits                    33678.57
TotalPay                     90688.6
TotalPayBenefits           124367.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85977, dtype: object)
(85978, Id                                           85979
EmployeeName                          Jose A Uribe
JobTitle            Senior Parking Control Officer
BasePay                                    70701.5
OvertimePay                               25100.32
OtherPay                                    722.13
Benefits                                  27842.07
TotalPay                                  96523.95
TotalPayBenefits                         124366.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85978, dtype: object)
(85979, Id                                  85980
EmployeeName                 Cindia S Lok
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                           1648.0
Benefits                         32021.19
TotalPay                         92341.01
TotalPayBenefits                 124362.2
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85979, dtype: object)
(85980, Id                           85981
EmployeeName        Jason R Dodson
JobTitle               Pile Worker
BasePay                    90229.0
OvertimePay                  94.47
OtherPay                    2018.0
Benefits                  32012.73
TotalPay                  92341.47
TotalPayBenefits          124354.2
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 85980, dtype: object)
(85981, Id                                         85982
EmployeeName                          April  Lax
JobTitle            Senior Medical Social Worker
BasePay                                 92563.19
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31787.65
TotalPay                                92563.19
TotalPayBenefits                       124350.84
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 85981, dtype: object)
(85982, Id                                           85983
EmployeeName                            Jerry J Wu
JobTitle            Electrical Transit System Mech
BasePay                                    82678.2
OvertimePay                                1699.99
OtherPay                                   8247.72
Benefits                                  31720.11
TotalPay                                  92625.91
TotalPayBenefits                         124346.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 85982, dtype: object)
(85983, Id                                  85984
EmployeeName                Pamela  Smith
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                           1633.0
Benefits                         32018.47
TotalPay                         92326.01
TotalPayBenefits                124344.48
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85983, dtype: object)
(85984, Id                                      85985
EmployeeName                       Peter  Ong
JobTitle            EMT/Paramedic/Firefighter
BasePay                              85439.07
OvertimePay                           1659.39
OtherPay                              5961.83
Benefits                             31279.72
TotalPay                             93060.29
TotalPayBenefits                    124340.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85984, dtype: object)
(85985, Id                                          85986
EmployeeName                   Rebecca A Lo Dolce
JobTitle            Senior Administrative Analyst
BasePay                                  91540.61
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  32795.6
TotalPay                                 91540.61
TotalPayBenefits                        124336.21
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 85985, dtype: object)
(85986, Id                                  85987
EmployeeName             Theresa E Bonora
JobTitle            Clinical Psychologist
BasePay                           93555.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30775.39
TotalPay                          93555.0
TotalPayBenefits                124330.39
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 85986, dtype: object)
(85987, Id                                      85988
EmployeeName                  David E Schwabe
JobTitle            Media Training Specialist
BasePay                              91836.52
OvertimePay                            277.14
OtherPay                               191.55
Benefits                             32019.16
TotalPay                             92305.21
TotalPayBenefits                    124324.37
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85987, dtype: object)
(85988, Id                            85989
EmployeeName        Martin G Hickey
JobTitle               Truck Driver
BasePay                    80052.02
OvertimePay                 9390.57
OtherPay                    4434.48
Benefits                   30443.27
TotalPay                   93877.07
TotalPayBenefits          124320.34
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85988, dtype: object)
(85989, Id                                      85990
EmployeeName                 Vanetta L Dunlap
JobTitle            Child Support Officer III
BasePay                               92300.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             32018.78
TotalPay                              92300.5
TotalPayBenefits                    124319.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 85989, dtype: object)
(85990, Id                                       85991
EmployeeName         Sandra J Crossman-Miranda
JobTitle            Sr Employee Asst Counselor
BasePay                               92618.88
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31693.06
TotalPay                              92618.88
TotalPayBenefits                     124311.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 85990, dtype: object)
(85991, Id                             85992
EmployeeName           Louis A Smith
JobTitle            Transit Operator
BasePay                     66009.66
OvertimePay                 26056.07
OtherPay                      303.58
Benefits                    31941.49
TotalPay                    92369.31
TotalPayBenefits            124310.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85991, dtype: object)
(85992, Id                             85993
EmployeeName            Janson  Mond
JobTitle            Transit Operator
BasePay                     66350.02
OvertimePay                 24100.56
OtherPay                     1459.32
Benefits                     32400.2
TotalPay                     91909.9
TotalPayBenefits            124310.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85992, dtype: object)
(85993, Id                                85994
EmployeeName        Valentin  Porras Jr
JobTitle                    Librarian 2
BasePay                        91206.07
OvertimePay                         0.0
OtherPay                        1079.66
Benefits                       32013.34
TotalPay                       92285.73
TotalPayBenefits              124299.07
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 85993, dtype: object)
(85994, Id                               85995
EmployeeName             Joe A Ginorio
JobTitle            Transit Supervisor
BasePay                        84263.9
OvertimePay                    6819.96
OtherPay                        3093.2
Benefits                      30121.53
TotalPay                      94177.06
TotalPayBenefits             124298.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 85994, dtype: object)
(85995, Id                             85996
EmployeeName         Nicole D Rangel
JobTitle            Registered Nurse
BasePay                      81996.8
OvertimePay                  1121.14
OtherPay                    10769.33
Benefits                    30407.76
TotalPay                    93887.27
TotalPayBenefits           124295.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85995, dtype: object)
(85996, Id                             85997
EmployeeName           Erik L Miller
JobTitle            Transit Operator
BasePay                     67282.28
OvertimePay                 24089.19
OtherPay                      367.91
Benefits                     32553.2
TotalPay                    91739.38
TotalPayBenefits           124292.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85996, dtype: object)
(85997, Id                            85998
EmployeeName        Beverly L Hayes
JobTitle                Librarian 2
BasePay                    91206.15
OvertimePay                     0.0
OtherPay                    1081.41
Benefits                   32002.19
TotalPay                   92287.56
TotalPayBenefits          124289.75
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 85997, dtype: object)
(85998, Id                             85999
EmployeeName        Anthony L Morris
JobTitle            Transit Operator
BasePay                     69332.73
OvertimePay                 17040.62
OtherPay                     3475.48
Benefits                    34423.78
TotalPay                    89848.83
TotalPayBenefits           124272.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 85998, dtype: object)
(85999, Id                                        86000
EmployeeName                       Winsley  Yee
JobTitle            Senior Power House Operator
BasePay                                 85581.8
OvertimePay                             7892.75
OtherPay                                  94.65
Benefits                               30688.45
TotalPay                                93569.2
TotalPayBenefits                      124257.65
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 85999, dtype: object)
(86000, Id                                86001
EmployeeName          Frevelino L Tabas
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                     16517.4
OtherPay                            0.0
Benefits                       29256.89
TotalPay                       94990.91
TotalPayBenefits               124247.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86000, dtype: object)
(86001, Id                                     86002
EmployeeName                  Claudia H Saft
JobTitle            Commercial Div Asst Sprv
BasePay                             85113.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39125.91
TotalPay                            85113.54
TotalPayBenefits                   124239.45
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86001, dtype: object)
(86002, Id                                     86003
EmployeeName                   Yuet Mei  Tan
JobTitle            Commercial Div Asst Sprv
BasePay                             85113.54
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             39125.9
TotalPay                            85113.54
TotalPayBenefits                   124239.44
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86002, dtype: object)
(86003, Id                             86004
EmployeeName           Sara J Ehlers
JobTitle            Epidemiologist 2
BasePay                     93066.33
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31166.38
TotalPay                    93066.33
TotalPayBenefits           124232.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86003, dtype: object)
(86004, Id                             86005
EmployeeName         Jorge B Corleto
JobTitle            Transit Operator
BasePay                     68980.57
OvertimePay                 15480.21
OtherPay                     5095.73
Benefits                    34673.34
TotalPay                    89556.51
TotalPayBenefits           124229.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86004, dtype: object)
(86005, Id                            86006
EmployeeName        Mitzi M Kanbara
JobTitle                Librarian 2
BasePay                    91206.08
OvertimePay                     0.0
OtherPay                    1029.43
Benefits                   31993.67
TotalPay                   92235.51
TotalPayBenefits          124229.18
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86005, dtype: object)
(86006, Id                          86007
EmployeeName        Jason M Gibbs
JobTitle              Librarian 2
BasePay                  91206.03
OvertimePay                   0.0
OtherPay                  1029.36
Benefits                 31992.22
TotalPay                 92235.39
TotalPayBenefits        124227.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86006, dtype: object)
(86007, Id                                     86008
EmployeeName        Jesus  Cendejas Gonzalez
JobTitle                    Transit Operator
BasePay                             68513.14
OvertimePay                         16887.64
OtherPay                             3793.06
Benefits                            35028.87
TotalPay                            89193.84
TotalPayBenefits                   124222.71
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86007, dtype: object)
(86008, Id                                           86009
EmployeeName                       Jose L Villarce
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90683.76
OvertimePay                                    0.0
OtherPay                                    1540.0
Benefits                                  31998.48
TotalPay                                  92223.76
TotalPayBenefits                         124222.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86008, dtype: object)
(86009, Id                             86010
EmployeeName        Romarr G Pitcher
JobTitle            Transit Operator
BasePay                     69182.21
OvertimePay                 15094.93
OtherPay                     5166.34
Benefits                    34776.29
TotalPay                    89443.48
TotalPayBenefits           124219.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86009, dtype: object)
(86010, Id                             86011
EmployeeName              Allen  Lam
JobTitle            Transit Operator
BasePay                     69777.36
OvertimePay                 15649.64
OtherPay                      3333.0
Benefits                    35459.25
TotalPay                     88760.0
TotalPayBenefits           124219.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86010, dtype: object)
(86011, Id                          86012
EmployeeName        Casey L Blake
JobTitle               Manager II
BasePay                  89904.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 34311.32
TotalPay                 89904.54
TotalPayBenefits        124215.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86011, dtype: object)
(86012, Id                           86013
EmployeeName        Stewart A Shaw
JobTitle               Librarian 2
BasePay                   91206.09
OvertimePay                    0.0
OtherPay                   1015.16
Benefits                  31994.57
TotalPay                  92221.25
TotalPayBenefits         124215.82
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86012, dtype: object)
(86013, Id                                  86014
EmployeeName                    Yim K Lam
JobTitle            Medical Social Worker
BasePay                          90693.03
OvertimePay                           0.0
OtherPay                           1520.0
Benefits                         31997.89
TotalPay                         92213.03
TotalPayBenefits                124210.92
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86013, dtype: object)
(86014, Id                                           86015
EmployeeName                     Elizabeth  Chavez
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.05
OvertimePay                                    0.0
OtherPay                                    1520.0
Benefits                                  31997.27
TotalPay                                  92213.05
TotalPayBenefits                         124210.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86014, dtype: object)
(86015, Id                                      86016
EmployeeName             Catherine  Lau-Cheng
JobTitle            Psychiatric Social Worker
BasePay                              90777.01
OvertimePay                               0.0
OtherPay                               1420.0
Benefits                             32006.28
TotalPay                             92197.01
TotalPayBenefits                    124203.29
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86015, dtype: object)
(86016, Id                                      86017
EmployeeName                     Huong  Hoang
JobTitle            Psychiatric Social Worker
BasePay                              90693.05
OvertimePay                               0.0
OtherPay                               1500.0
Benefits                             31994.25
TotalPay                             92193.05
TotalPayBenefits                     124187.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86016, dtype: object)
(86017, Id                                      86018
EmployeeName                    Kathryn  Luhe
JobTitle            Attorney (Civil/Criminal)
BasePay                              92932.02
OvertimePay                               0.0
OtherPay                              6496.06
Benefits                             24753.12
TotalPay                             99428.08
TotalPayBenefits                     124181.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86017, dtype: object)
(86018, Id                          86019
EmployeeName        Lia K Hillman
JobTitle              Librarian 2
BasePay                  91206.06
OvertimePay                   0.0
OtherPay                   986.63
Benefits                 31984.97
TotalPay                 92192.69
TotalPayBenefits        124177.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86018, dtype: object)
(86019, Id                            86020
EmployeeName        Tracy S Barraza
JobTitle              Special Nurse
BasePay                   105581.96
OvertimePay                  1116.9
OtherPay                   17476.53
Benefits                        0.0
TotalPay                  124175.39
TotalPayBenefits          124175.39
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86019, dtype: object)
(86020, Id                                      86021
EmployeeName                      Richard  Ng
JobTitle            Psychiatric Social Worker
BasePay                              90693.07
OvertimePay                               0.0
OtherPay                               1480.0
Benefits                             31991.83
TotalPay                             92173.07
TotalPayBenefits                     124164.9
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86020, dtype: object)
(86021, Id                                  86022
EmployeeName               Laura M Pullen
JobTitle            Medical Social Worker
BasePay                          90693.02
OvertimePay                           0.0
OtherPay                           1480.0
Benefits                         31989.98
TotalPay                         92173.02
TotalPayBenefits                 124163.0
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86021, dtype: object)
(86022, Id                                      86023
EmployeeName                 Blanca  Didonato
JobTitle            Psychiatric Social Worker
BasePay                              90389.02
OvertimePay                               0.0
OtherPay                              1805.82
Benefits                              31952.6
TotalPay                             92194.84
TotalPayBenefits                    124147.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86022, dtype: object)
(86023, Id                                  86024
EmployeeName                Nakari  Small
JobTitle            Medical Social Worker
BasePay                          90487.33
OvertimePay                           0.0
OtherPay                          1700.61
Benefits                         31958.67
TotalPay                         92187.94
TotalPayBenefits                124146.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86023, dtype: object)
(86024, Id                                        86025
EmployeeName        Guillermo  Gonzalez-Alcazar
JobTitle                    IS Business Analyst
BasePay                                92383.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31762.24
TotalPay                               92383.04
TotalPayBenefits                      124145.28
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86024, dtype: object)
(86025, Id                                     86026
EmployeeName                 Shehnaz S Malek
JobTitle            Commercial Div Asst Sprv
BasePay                             85113.55
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39027.36
TotalPay                            85113.55
TotalPayBenefits                   124140.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86025, dtype: object)
(86026, Id                                     86027
EmployeeName               Heather S Hallett
JobTitle            Commercial Div Asst Sprv
BasePay                             85113.53
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            39027.36
TotalPay                            85113.53
TotalPayBenefits                   124140.89
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86026, dtype: object)
(86027, Id                                  86028
EmployeeName         Patricia A Rodriguez
JobTitle            Medical Social Worker
BasePay                           90693.0
OvertimePay                           0.0
OtherPay                           1456.8
Benefits                          31987.6
TotalPay                          92149.8
TotalPayBenefits                 124137.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86027, dtype: object)
(86028, Id                             86029
EmployeeName               Andy C Ng
JobTitle            Transit Operator
BasePay                     68210.37
OvertimePay                 21077.92
OtherPay                     1531.71
Benefits                    33313.32
TotalPay                     90820.0
TotalPayBenefits           124133.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86028, dtype: object)
(86029, Id                            86030
EmployeeName        Quindi L Berger
JobTitle                Librarian 2
BasePay                     91206.1
OvertimePay                     0.0
OtherPay                     936.59
Benefits                   31973.67
TotalPay                   92142.69
TotalPayBenefits          124116.36
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86029, dtype: object)
(86030, Id                              86031
EmployeeName        Antonio R Porcuna
JobTitle             Transit Operator
BasePay                      68801.69
OvertimePay                  19214.47
OtherPay                      2265.74
Benefits                     33828.38
TotalPay                      90281.9
TotalPayBenefits            124110.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86030, dtype: object)
(86031, Id                          86032
EmployeeName          Regan  Gong
JobTitle              Librarian 2
BasePay                  90868.27
OvertimePay                   0.0
OtherPay                  1294.05
Benefits                 31942.37
TotalPay                 92162.32
TotalPayBenefits        124104.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86031, dtype: object)
(86032, Id                                        86033
EmployeeName                   Evangeline E Lim
JobTitle            Senior Management Assistant
BasePay                                92098.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               32005.07
TotalPay                               92098.53
TotalPayBenefits                       124103.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86032, dtype: object)
(86033, Id                                     86034
EmployeeName             Christina Y Penland
JobTitle            Senior Personnel Analyst
BasePay                             86951.72
OvertimePay                              0.0
OtherPay                             6697.04
Benefits                             30449.8
TotalPay                            93648.76
TotalPayBenefits                   124098.56
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86033, dtype: object)
(86034, Id                              86035
EmployeeName          Sonia G Navarro
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  27457.92
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     96746.92
TotalPayBenefits            124098.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86034, dtype: object)
(86035, Id                                   86036
EmployeeName            Jocelyn H Raymundo
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       27443.98
OtherPay                             898.0
Benefits                          27343.18
TotalPay                          96732.98
TotalPayBenefits                 124076.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86035, dtype: object)
(86036, Id                                86037
EmployeeName        Cristina  Santillan
JobTitle               Registered Nurse
BasePay                        78363.44
OvertimePay                     6923.45
OtherPay                       11902.09
Benefits                       26886.93
TotalPay                       97188.98
TotalPayBenefits              124075.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86036, dtype: object)
(86037, Id                                   86038
EmployeeName              Joanne M Donohue
JobTitle            Public SafetyComm Supv
BasePay                           78988.45
OvertimePay                       13572.86
OtherPay                            4265.3
Benefits                          27242.24
TotalPay                          96826.61
TotalPayBenefits                 124068.85
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86037, dtype: object)
(86038, Id                             86039
EmployeeName           Jorge A Elias
JobTitle            Transit Operator
BasePay                     66804.94
OvertimePay                 19489.82
OtherPay                     4321.26
Benefits                    33445.32
TotalPay                    90616.02
TotalPayBenefits           124061.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86038, dtype: object)
(86039, Id                               86040
EmployeeName        Luis A Pina Romero
JobTitle              Transit Operator
BasePay                       68388.68
OvertimePay                   20343.15
OtherPay                       1834.38
Benefits                      33490.32
TotalPay                      90566.21
TotalPayBenefits             124056.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86039, dtype: object)
(86040, Id                                      86041
EmployeeName               Mary Jane P Santos
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          15728.79
OtherPay                              5440.78
Benefits                              29284.6
TotalPay                             94771.57
TotalPayBenefits                    124056.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86040, dtype: object)
(86041, Id                                          86042
EmployeeName                      Nicole  Sanders
JobTitle            Senior Administrative Analyst
BasePay                                  92907.08
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31144.05
TotalPay                                 92907.08
TotalPayBenefits                        124051.13
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86041, dtype: object)
(86042, Id                             86043
EmployeeName        Carmela  Madayag
JobTitle              Microbiologist
BasePay                     92067.09
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31979.27
TotalPay                    92067.09
TotalPayBenefits           124046.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86042, dtype: object)
(86043, Id                                  86044
EmployeeName              Dora H Balcazar
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                           1380.0
Benefits                         31972.39
TotalPay                         92073.01
TotalPayBenefits                 124045.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86043, dtype: object)
(86044, Id                              86045
EmployeeName            Yanira  Miles
JobTitle            Nursing Assistant
BasePay                      68113.96
OvertimePay                  20324.29
OtherPay                       7130.0
Benefits                     28472.24
TotalPay                     95568.25
TotalPayBenefits            124040.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86044, dtype: object)
(86045, Id                                86046
EmployeeName        Elizabeth L Thacker
JobTitle                    Librarian 2
BasePay                        90256.87
OvertimePay                         0.0
OtherPay                        1918.39
Benefits                       31864.77
TotalPay                       92175.26
TotalPayBenefits              124040.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86045, dtype: object)
(86046, Id                             86047
EmployeeName        Robert E Carlson
JobTitle                 Librarian 2
BasePay                     90319.31
OvertimePay                      0.0
OtherPay                     1847.89
Benefits                    31865.03
TotalPay                     92167.2
TotalPayBenefits           124032.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86046, dtype: object)
(86047, Id                                   86048
EmployeeName                Ramon B Paguio
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       21748.48
OtherPay                           5618.58
Benefits                          28273.77
TotalPay                          95758.06
TotalPayBenefits                 124031.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86047, dtype: object)
(86048, Id                                          86049
EmployeeName                 Kwok Yee Karina  Yip
JobTitle            Senior Administrative Analyst
BasePay                                   91271.8
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32759.92
TotalPay                                  91271.8
TotalPayBenefits                        124031.72
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86048, dtype: object)
(86049, Id                           86050
EmployeeName         Rebecca  Chiu
JobTitle            Accountant III
BasePay                   92410.78
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31616.37
TotalPay                  92410.78
TotalPayBenefits         124027.15
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86049, dtype: object)
(86050, Id                                           86051
EmployeeName                           Frank  Fong
JobTitle            IT Operations Support Admn III
BasePay                                   85758.41
OvertimePay                                    0.0
OtherPay                                   6303.86
Benefits                                  31962.95
TotalPay                                  92062.27
TotalPayBenefits                         124025.22
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86050, dtype: object)
(86051, Id                                86052
EmployeeName            Rodney A Sitton
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     3272.25
OtherPay                       10051.21
Benefits                       31406.96
TotalPay                       92606.96
TotalPayBenefits              124013.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86051, dtype: object)
(86052, Id                                 86053
EmployeeName            Edward J McMahon
JobTitle            Sr Investigator, OCC
BasePay                         92778.53
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31234.01
TotalPay                        92778.53
TotalPayBenefits               124012.54
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86052, dtype: object)
(86053, Id                                          86054
EmployeeName                       Elmer A Sescon
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.03
OvertimePay                                   0.0
OtherPay                                   1080.0
Benefits                                 31964.97
TotalPay                                 92043.03
TotalPayBenefits                         124008.0
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86053, dtype: object)
(86054, Id                              86055
EmployeeName          Anna M Kaminska
JobTitle            Personnel Analyst
BasePay                      92571.74
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31433.29
TotalPay                     92571.74
TotalPayBenefits            124005.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86054, dtype: object)
(86055, Id                                      86056
EmployeeName                 Patrick J Farmer
JobTitle            Automotive Service Worker
BasePay                              63772.89
OvertimePay                           19112.0
OtherPay                             12447.64
Benefits                             28649.24
TotalPay                             95332.53
TotalPayBenefits                    123981.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86055, dtype: object)
(86056, Id                                86057
EmployeeName                Louis  Wong
JobTitle            Stationary Engineer
BasePay                        78469.93
OvertimePay                     2407.51
OtherPay                       11584.62
Benefits                       31518.43
TotalPay                       92462.06
TotalPayBenefits              123980.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86056, dtype: object)
(86057, Id                                           86058
EmployeeName                          Cynthia  Tam
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.06
OvertimePay                                    0.0
OtherPay                                    1360.0
Benefits                                  31925.55
TotalPay                                  92053.06
TotalPayBenefits                         123978.61
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86057, dtype: object)
(86058, Id                                86059
EmployeeName            Paresh  Chhanya
JobTitle            Survey Assistant II
BasePay                         80877.5
OvertimePay                     8442.22
OtherPay                         4870.5
Benefits                       29787.28
TotalPay                       94190.22
TotalPayBenefits               123977.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86058, dtype: object)
(86059, Id                             86060
EmployeeName            Sam T Tcheng
JobTitle            Transit Operator
BasePay                     68442.73
OvertimePay                 20293.32
OtherPay                     1737.33
Benefits                    33503.85
TotalPay                    90473.38
TotalPayBenefits           123977.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86059, dtype: object)
(86060, Id                                86061
EmployeeName               Simon W Fong
JobTitle            Automotive Mechanic
BasePay                         78991.2
OvertimePay                    13983.86
OtherPay                        1394.88
Benefits                       29600.49
TotalPay                       94369.94
TotalPayBenefits              123970.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86060, dtype: object)
(86061, Id                                           86062
EmployeeName                         Hansen Y Pang
JobTitle            Dist Atty Investigator (SFERS)
BasePay                                    86378.7
OvertimePay                                  449.7
OtherPay                                   5183.42
Benefits                                  31958.34
TotalPay                                  92011.82
TotalPayBenefits                         123970.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86061, dtype: object)
(86062, Id                                           86063
EmployeeName                         Jaime  Arcila
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.01
OvertimePay                                    0.0
OtherPay                                    1320.0
Benefits                                  31956.49
TotalPay                                  92013.01
TotalPayBenefits                          123969.5
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86062, dtype: object)
(86063, Id                                           86064
EmployeeName                         Jerna C Reyes
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.06
OvertimePay                                    0.0
OtherPay                                    1320.0
Benefits                                  31953.76
TotalPay                                  92013.06
TotalPayBenefits                         123966.82
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86063, dtype: object)
(86064, Id                                   86065
EmployeeName                  Adam C Stern
JobTitle            Sr. Environmental Spec
BasePay                            86925.6
OvertimePay                            0.0
OtherPay                           8891.12
Benefits                          28144.61
TotalPay                          95816.72
TotalPayBenefits                 123961.33
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86064, dtype: object)
(86065, Id                             86066
EmployeeName        Ricardo A Mancia
JobTitle            Transit Operator
BasePay                     69421.94
OvertimePay                 10873.49
OtherPay                     7988.87
Benefits                    35669.43
TotalPay                     88284.3
TotalPayBenefits           123953.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86065, dtype: object)
(86066, Id                             86067
EmployeeName        Susan T Esposito
JobTitle                  Manager II
BasePay                     88325.39
OvertimePay                      0.0
OtherPay                        23.0
Benefits                    35603.05
TotalPay                    88348.39
TotalPayBenefits           123951.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86066, dtype: object)
(86067, Id                                         86068
EmployeeName                  Catherine A Curtis
JobTitle            Employment & Training Spec 5
BasePay                                 92411.14
OvertimePay                                275.1
OtherPay                                     0.0
Benefits                                31256.96
TotalPay                                92686.24
TotalPayBenefits                        123943.2
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86067, dtype: object)
(86068, Id                             86069
EmployeeName             Illa C Ames
JobTitle            Transit Operator
BasePay                     67098.38
OvertimePay                 18902.48
OtherPay                     4364.06
Benefits                    33577.84
TotalPay                    90364.92
TotalPayBenefits           123942.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86068, dtype: object)
(86069, Id                            86070
EmployeeName        Jeanine  Dubois
JobTitle                Electrician
BasePay                    91472.34
OvertimePay                     0.0
OtherPay                      960.0
Benefits                   31498.64
TotalPay                   92432.34
TotalPayBenefits          123930.98
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86069, dtype: object)
(86070, Id                                     86071
EmployeeName              Teresita  Cyndecki
JobTitle            Senior Fiscal Technician
BasePay                             88130.64
OvertimePay                              0.0
OtherPay                              4133.1
Benefits                            31664.34
TotalPay                            92263.74
TotalPayBenefits                   123928.08
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86070, dtype: object)
(86071, Id                                       86072
EmployeeName                  Minyon T McGriff
JobTitle            Protective Services Worker
BasePay                               92823.64
OvertimePay                                0.0
OtherPay                                631.63
Benefits                              30471.73
TotalPay                              93455.27
TotalPayBenefits                      123927.0
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86071, dtype: object)
(86072, Id                               86073
EmployeeName          Bianca  Grijalva
JobTitle            Eligibility Worker
BasePay                        65448.0
OvertimePay                   29601.04
OtherPay                        1889.3
Benefits                      26987.36
TotalPay                      96938.34
TotalPayBenefits              123925.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86072, dtype: object)
(86073, Id                               86074
EmployeeName        Gretchen A Hilyard
JobTitle                     Planner 3
BasePay                       91170.61
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      32751.73
TotalPay                      91170.61
TotalPayBenefits             123922.34
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86073, dtype: object)
(86074, Id                                           86075
EmployeeName                    Benjamin H Poblitz
JobTitle            Apprentice Stationary Engineer
BasePay                                   77373.34
OvertimePay                                6549.01
OtherPay                                   9781.74
Benefits                                  30213.37
TotalPay                                  93704.09
TotalPayBenefits                         123917.46
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86074, dtype: object)
(86075, Id                             86076
EmployeeName         Jennifer S Choi
JobTitle            Registered Nurse
BasePay                     87446.09
OvertimePay                  1085.78
OtherPay                      6010.6
Benefits                    29370.96
TotalPay                    94542.47
TotalPayBenefits           123913.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86075, dtype: object)
(86076, Id                                      86077
EmployeeName               Michelle N Estrada
JobTitle            EMT/Paramedic/Firefighter
BasePay                              77710.56
OvertimePay                           8697.68
OtherPay                               9180.4
Benefits                             28322.64
TotalPay                             95588.64
TotalPayBenefits                    123911.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86076, dtype: object)
(86077, Id                                 86078
EmployeeName        Melissa Ann  McCloud
JobTitle                Registered Nurse
BasePay                         76395.97
OvertimePay                     11727.45
OtherPay                        12256.52
Benefits                        23526.87
TotalPay                       100379.94
TotalPayBenefits               123906.81
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86077, dtype: object)
(86078, Id                             86079
EmployeeName        David F Clements
JobTitle               Special Nurse
BasePay                     110430.3
OvertimePay                  4365.36
OtherPay                     7883.58
Benefits                      1226.8
TotalPay                   122679.24
TotalPayBenefits           123906.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86078, dtype: object)
(86079, Id                                     86080
EmployeeName          Sherrice  Dorsey-Smith
JobTitle            Sr. Community Devl Spc 1
BasePay                              91935.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31968.11
TotalPay                             91935.0
TotalPayBenefits                   123903.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86079, dtype: object)
(86080, Id                                        86081
EmployeeName                 David C Sutherland
JobTitle            Senior Physician Specialist
BasePay                                91379.77
OvertimePay                                 0.0
OtherPay                                7594.88
Benefits                               24916.27
TotalPay                               98974.65
TotalPayBenefits                      123890.92
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86080, dtype: object)
(86081, Id                                           86082
EmployeeName                       Lucia M Hammond
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                   1246.72
Benefits                                  31942.78
TotalPay                                  91939.72
TotalPayBenefits                          123882.5
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86081, dtype: object)
(86082, Id                                      86083
EmployeeName        Anabel Simonelli Kupelian
JobTitle                     Mayoral Staff XV
BasePay                              86938.45
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             36937.32
TotalPay                             86938.45
TotalPayBenefits                    123875.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86082, dtype: object)
(86083, Id                              86084
EmployeeName        Peter  McLaughlin
JobTitle             Police Officer 3
BasePay                      37727.33
OvertimePay                   2623.77
OtherPay                     72735.29
Benefits                     10789.13
TotalPay                    113086.39
TotalPayBenefits            123875.52
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86083, dtype: object)
(86084, Id                                     86085
EmployeeName                     Julie L Roe
JobTitle            Deputy Probation Officer
BasePay                             93962.69
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29909.28
TotalPay                            93962.69
TotalPayBenefits                   123871.97
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86084, dtype: object)
(86085, Id                                86086
EmployeeName          Usbaldo  Gonzalez
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                    12179.14
OtherPay                        2484.72
Benefits                       29923.37
TotalPay                       93947.36
TotalPayBenefits              123870.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86085, dtype: object)
(86086, Id                                     86087
EmployeeName                Detra L McKinney
JobTitle            Senior Personnel Analyst
BasePay                             91129.92
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             32730.6
TotalPay                            91129.92
TotalPayBenefits                   123860.52
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86086, dtype: object)
(86087, Id                                      86088
EmployeeName              Patricia E Olivares
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          13606.11
OtherPay                              7040.78
Benefits                             29604.96
TotalPay                             94248.89
TotalPayBenefits                    123853.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86087, dtype: object)
(86088, Id                          86089
EmployeeName         Jason  Honig
JobTitle              Librarian 2
BasePay                  91206.15
OvertimePay                   0.0
OtherPay                   688.53
Benefits                 31935.57
TotalPay                 91894.68
TotalPayBenefits        123830.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86088, dtype: object)
(86089, Id                                           86090
EmployeeName                      Ying  Zhang-Chiu
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                    1200.0
Benefits                                  31934.67
TotalPay                                   91893.0
TotalPayBenefits                         123827.67
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86089, dtype: object)
(86090, Id                                          86091
EmployeeName                  Lisa Yuk-Ming  Chau
JobTitle            Senior Administrative Analyst
BasePay                                  91872.38
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31954.76
TotalPay                                 91872.38
TotalPayBenefits                        123827.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86090, dtype: object)
(86091, Id                                   86092
EmployeeName          Sonya R Lucas-Harris
JobTitle            Deputy Court Clerk III
BasePay                           88572.17
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          31733.42
TotalPay                          92072.17
TotalPayBenefits                 123805.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86091, dtype: object)
(86092, Id                                          86093
EmployeeName                     Devin M Macaulay
JobTitle            Senior Administrative Analyst
BasePay                                   91087.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32717.38
TotalPay                                  91087.0
TotalPayBenefits                        123804.38
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86092, dtype: object)
(86093, Id                                           86094
EmployeeName                       Daniel D Crites
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                                7388.26
OtherPay                                    2242.0
Benefits                                  31492.11
TotalPay                                  92311.77
TotalPayBenefits                         123803.88
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86093, dtype: object)
(86094, Id                          86095
EmployeeName         Lise  Braden
JobTitle              Librarian 2
BasePay                  90868.24
OvertimePay                   0.0
OtherPay                  1056.25
Benefits                  31874.6
TotalPay                 91924.49
TotalPayBenefits        123799.09
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86094, dtype: object)
(86095, Id                          86096
EmployeeName         Bryant T Cao
JobTitle                Carpenter
BasePay                  84764.51
OvertimePay               7921.17
OtherPay                   537.92
Benefits                 30571.26
TotalPay                  93223.6
TotalPayBenefits        123794.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86095, dtype: object)
(86096, Id                             86097
EmployeeName           Celso C Abueg
JobTitle            Transit Operator
BasePay                     65580.46
OvertimePay                 20283.84
OtherPay                     4906.75
Benefits                    33022.66
TotalPay                    90771.05
TotalPayBenefits           123793.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86096, dtype: object)
(86097, Id                              86098
EmployeeName        Susan A Hennessey
JobTitle              Health Educator
BasePay                      91836.56
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31946.98
TotalPay                     91836.56
TotalPayBenefits            123783.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86097, dtype: object)
(86098, Id                          86099
EmployeeName        Gail C Caudle
JobTitle             Nutritionist
BasePay                  91836.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31946.98
TotalPay                 91836.55
TotalPayBenefits        123783.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86098, dtype: object)
(86099, Id                             86100
EmployeeName        Frederick J Ryan
JobTitle             Health Educator
BasePay                     91836.54
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31946.98
TotalPay                    91836.54
TotalPayBenefits           123783.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86099, dtype: object)
(86100, Id                            86101
EmployeeName           Blue  Walcer
JobTitle            Health Educator
BasePay                    91836.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31946.98
TotalPay                   91836.52
TotalPayBenefits           123783.5
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86100, dtype: object)
(86101, Id                          86102
EmployeeName          Linda C Lau
JobTitle             Nutritionist
BasePay                  91836.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31946.98
TotalPay                 91836.51
TotalPayBenefits        123783.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86101, dtype: object)
(86102, Id                               86103
EmployeeName        Michael P Paquette
JobTitle               Health Educator
BasePay                        91836.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31946.98
TotalPay                       91836.5
TotalPayBenefits             123783.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86102, dtype: object)
(86103, Id                             86104
EmployeeName        Linda D Delgesso
JobTitle                 Librarian 2
BasePay                      91206.1
OvertimePay                      0.0
OtherPay                       648.0
Benefits                    31928.15
TotalPay                     91854.1
TotalPayBenefits           123782.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86103, dtype: object)
(86104, Id                          86105
EmployeeName         Carla  Kozak
JobTitle              Librarian 2
BasePay                  91206.07
OvertimePay                   0.0
OtherPay                    648.0
Benefits                 31928.14
TotalPay                 91854.07
TotalPayBenefits        123782.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86104, dtype: object)
(86105, Id                                     86106
EmployeeName                   John C Stucky
JobTitle            Librarian 2 - Asian Arts
BasePay                              91206.0
OvertimePay                              0.0
OtherPay                               648.0
Benefits                            31928.11
TotalPay                             91854.0
TotalPayBenefits                   123782.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86105, dtype: object)
(86106, Id                            86107
EmployeeName          Jeanne  Kwong
JobTitle            Health Educator
BasePay                    91835.08
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31941.38
TotalPay                   91835.08
TotalPayBenefits          123776.46
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86106, dtype: object)
(86107, Id                             86108
EmployeeName           William  Wood
JobTitle            Street Inspector
BasePay                     78164.02
OvertimePay                 13751.62
OtherPay                      2210.0
Benefits                    29646.59
TotalPay                    94125.64
TotalPayBenefits           123772.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86107, dtype: object)
(86108, Id                                   86109
EmployeeName               Patrick E Liner
JobTitle            Public SafetyComm Disp
BasePay                            87696.0
OvertimePay                            0.0
OtherPay                           4155.38
Benefits                          31914.51
TotalPay                          91851.38
TotalPayBenefits                 123765.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86108, dtype: object)
(86109, Id                                    86110
EmployeeName                  Kevin G Asher
JobTitle            Engineering Associate 1
BasePay                            81294.09
OvertimePay                             0.0
OtherPay                           12614.76
Benefits                           29839.56
TotalPay                           93908.85
TotalPayBenefits                  123748.41
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86109, dtype: object)
(86110, Id                             86111
EmployeeName          Amanda L Moore
JobTitle            Street Inspector
BasePay                     78164.04
OvertimePay                 16256.93
OtherPay                        80.0
Benefits                    29228.85
TotalPay                    94500.97
TotalPayBenefits           123729.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86110, dtype: object)
(86111, Id                                  86112
EmployeeName          Sarah S De La Cerda
JobTitle            Medical Social Worker
BasePay                           89573.0
OvertimePay                           0.0
OtherPay                           1460.0
Benefits                         32687.39
TotalPay                          91033.0
TotalPayBenefits                123720.39
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86111, dtype: object)
(86112, Id                                          86113
EmployeeName                              Hop  Fu
JobTitle            Statnry Eng Water Treat Plant
BasePay                                  84278.67
OvertimePay                               1850.25
OtherPay                                   6320.9
Benefits                                 31267.65
TotalPay                                 92449.82
TotalPayBenefits                        123717.47
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86112, dtype: object)
(86113, Id                            86114
EmployeeName        Nicole M Cuadra
JobTitle                Librarian 2
BasePay                    91206.05
OvertimePay                     0.0
OtherPay                     590.89
Benefits                   31917.11
TotalPay                   91796.94
TotalPayBenefits          123714.05
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86113, dtype: object)
(86114, Id                                      86115
EmployeeName                 Michael D Fields
JobTitle            EMT/Paramedic/Firefighter
BasePay                              88786.45
OvertimePay                           1571.29
OtherPay                              1861.44
Benefits                             31494.14
TotalPay                             92219.18
TotalPayBenefits                    123713.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86114, dtype: object)
(86115, Id                                  86116
EmployeeName               Michael C Barr
JobTitle            Maintenance Machinist
BasePay                           82681.5
OvertimePay                           0.0
OtherPay                          9122.96
Benefits                         31898.39
TotalPay                         91804.46
TotalPayBenefits                123702.85
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86115, dtype: object)
(86116, Id                                         86117
EmployeeName                          Yue Ji  Yu
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.01
OvertimePay                              21464.1
OtherPay                                     0.0
Benefits                                28334.89
TotalPay                                95363.11
TotalPayBenefits                        123698.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86116, dtype: object)
(86117, Id                                     86118
EmployeeName               DonnaLynn  Delena
JobTitle            Deputy Probation Officer
BasePay                             90757.35
OvertimePay                          3418.22
OtherPay                                 0.0
Benefits                            29518.75
TotalPay                            94175.57
TotalPayBenefits                   123694.32
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86117, dtype: object)
(86118, Id                                86119
EmployeeName        Runjohnya J Burgess
JobTitle               Registered Nurse
BasePay                        86999.23
OvertimePay                     3614.12
OtherPay                        6270.51
Benefits                       26807.86
TotalPay                       96883.86
TotalPayBenefits              123691.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86118, dtype: object)
(86119, Id                             86120
EmployeeName               Jim C Lee
JobTitle            Transit Operator
BasePay                     66664.15
OvertimePay                 21342.13
OtherPay                     2751.36
Benefits                    32921.04
TotalPay                    90757.64
TotalPayBenefits           123678.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86119, dtype: object)
(86120, Id                            86121
EmployeeName        Cheryl  Bunting
JobTitle            Health Educator
BasePay                    91762.44
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31914.73
TotalPay                   91762.44
TotalPayBenefits          123677.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86120, dtype: object)
(86121, Id                                           86122
EmployeeName                      Lawrence L Phung
JobTitle            IT Operations Support Admn III
BasePay                                    77896.4
OvertimePay                                    0.0
OtherPay                                  15331.53
Benefits                                  30448.12
TotalPay                                  93227.93
TotalPayBenefits                         123676.05
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86121, dtype: object)
(86122, Id                                   86123
EmployeeName                Robert D Stalf
JobTitle            Construction Inspector
BasePay                            75776.5
OvertimePay                       19047.23
OtherPay                            944.86
Benefits                          27905.33
TotalPay                          95768.59
TotalPayBenefits                 123673.92
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86122, dtype: object)
(86123, Id                                           86124
EmployeeName                      Michael J Harris
JobTitle            Investigator,Taxi & AccessSvcs
BasePay                                    90956.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32715.32
TotalPay                                   90956.0
TotalPayBenefits                         123671.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86123, dtype: object)
(86124, Id                                           86125
EmployeeName                       Eric J Richholt
JobTitle            Investigator,Taxi & AccessSvcs
BasePay                                    90956.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32715.32
TotalPay                                   90956.0
TotalPayBenefits                         123671.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86124, dtype: object)
(86125, Id                                        86126
EmployeeName                   Katherine  Young
JobTitle            Senior Physician Specialist
BasePay                                92405.56
OvertimePay                                 0.0
OtherPay                                4620.45
Benefits                               26643.51
TotalPay                               97026.01
TotalPayBenefits                      123669.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86125, dtype: object)
(86126, Id                                        86127
EmployeeName                      Jose V Alardo
JobTitle            Sr Counselor, Juvenile Hall
BasePay                                77334.36
OvertimePay                            15233.76
OtherPay                                3881.84
Benefits                               27216.46
TotalPay                               96449.96
TotalPayBenefits                      123666.42
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86126, dtype: object)
(86127, Id                                           86128
EmployeeName                          Tony L Brown
JobTitle            IT Operations Support Admn III
BasePay                                    85758.4
OvertimePay                                    0.0
OtherPay                                   6007.12
Benefits                                   31900.3
TotalPay                                  91765.52
TotalPayBenefits                         123665.82
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86127, dtype: object)
(86128, Id                              86129
EmployeeName        Richard A Corbell
JobTitle             Transit Operator
BasePay                      68403.74
OvertimePay                  14561.75
OtherPay                      6055.59
Benefits                     34620.91
TotalPay                     89021.08
TotalPayBenefits            123641.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86128, dtype: object)
(86129, Id                                      86130
EmployeeName                    Ana M Carcamo
JobTitle            Psychiatric Social Worker
BasePay                              90693.05
OvertimePay                               0.0
OtherPay                               1040.0
Benefits                              31903.7
TotalPay                             91733.05
TotalPayBenefits                    123636.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86129, dtype: object)
(86130, Id                                           86131
EmployeeName                     Giovanni  Herrera
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.06
OvertimePay                                    0.0
OtherPay                                    1040.0
Benefits                                  31902.46
TotalPay                                  91733.06
TotalPayBenefits                         123635.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86130, dtype: object)
(86131, Id                                   86132
EmployeeName                   Helen K Lau
JobTitle            Occupational Therapist
BasePay                           92729.75
OvertimePay                            0.0
OtherPay                             960.0
Benefits                          29930.82
TotalPay                          93689.75
TotalPayBenefits                 123620.57
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86131, dtype: object)
(86132, Id                             86133
EmployeeName             Sanh M Tran
JobTitle            Transit Operator
BasePay                     67558.59
OvertimePay                 16221.31
OtherPay                     5687.98
Benefits                    34140.84
TotalPay                    89467.88
TotalPayBenefits           123608.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86132, dtype: object)
(86133, Id                                     86134
EmployeeName                    John  Mallia
JobTitle            Main Machinist Asst Sprv
BasePay                             87709.24
OvertimePay                           5126.7
OtherPay                               550.0
Benefits                             30218.1
TotalPay                            93385.94
TotalPayBenefits                   123604.04
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86133, dtype: object)
(86134, Id                              86135
EmployeeName        Patrick F Mullins
JobTitle                   Sergeant 3
BasePay                      60168.12
OvertimePay                       0.0
OtherPay                     46699.46
Benefits                      16730.1
TotalPay                    106867.58
TotalPayBenefits            123597.68
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86134, dtype: object)
(86135, Id                                          86136
EmployeeName                          Lisa  Ortiz
JobTitle            Victim/Witness Investigator 3
BasePay                                  91692.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                 91692.03
TotalPayBenefits                        123590.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86135, dtype: object)
(86136, Id                                          86137
EmployeeName                     Cynthia M Farmer
JobTitle            Victim/Witness Investigator 3
BasePay                                  91692.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                 91692.03
TotalPayBenefits                        123590.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86136, dtype: object)
(86137, Id                                          86138
EmployeeName                     Janice L Bonelli
JobTitle            Victim/Witness Investigator 3
BasePay                                  91692.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                 91692.02
TotalPayBenefits                        123590.13
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86137, dtype: object)
(86138, Id                                          86139
EmployeeName                       Jesusa B Sales
JobTitle            Victim/Witness Investigator 3
BasePay                                   91692.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                  91692.0
TotalPayBenefits                        123590.11
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86138, dtype: object)
(86139, Id                                          86140
EmployeeName                       Ethel C Newlin
JobTitle            Victim/Witness Investigator 3
BasePay                                   91692.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                  91692.0
TotalPayBenefits                        123590.11
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86139, dtype: object)
(86140, Id                                          86141
EmployeeName                  Clotilda T Mosqueda
JobTitle            Victim/Witness Investigator 3
BasePay                                   91692.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31898.11
TotalPay                                  91692.0
TotalPayBenefits                        123590.11
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86140, dtype: object)
(86141, Id                          86142
EmployeeName        Nancy C Flynn
JobTitle             Nutritionist
BasePay                  91709.49
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31880.42
TotalPay                 91709.49
TotalPayBenefits        123589.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86141, dtype: object)
(86142, Id                             86143
EmployeeName               Simon  Ma
JobTitle            Transit Operator
BasePay                     64652.05
OvertimePay                 19505.82
OtherPay                     6526.98
Benefits                    32904.12
TotalPay                    90684.85
TotalPayBenefits           123588.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86142, dtype: object)
(86143, Id                                  86144
EmployeeName            Michael B Freeman
JobTitle            Media Production Supv
BasePay                          90742.05
OvertimePay                           0.0
OtherPay                            944.7
Benefits                         31900.29
TotalPay                         91686.75
TotalPayBenefits                123587.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86143, dtype: object)
(86144, Id                                  86145
EmployeeName                   Ricky W Ng
JobTitle            Medical Social Worker
BasePay                          90693.05
OvertimePay                           0.0
OtherPay                           1000.0
Benefits                         31892.68
TotalPay                         91693.05
TotalPayBenefits                123585.73
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86144, dtype: object)
(86145, Id                              86146
EmployeeName        Quincy G Fassette
JobTitle                  Counselor 2
BasePay                      74795.49
OvertimePay                  20051.06
OtherPay                      1791.96
Benefits                     26946.09
TotalPay                     96638.51
TotalPayBenefits             123584.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86145, dtype: object)
(86146, Id                             86147
EmployeeName        Denise D Schmidt
JobTitle                 Librarian 2
BasePay                     90530.46
OvertimePay                      0.0
OtherPay                     1238.28
Benefits                    31810.91
TotalPay                    91768.74
TotalPayBenefits           123579.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86146, dtype: object)
(86147, Id                                86148
EmployeeName        Danilo M Gatchalian
JobTitle            Stationary Engineer
BasePay                         79543.8
OvertimePay                      2831.3
OtherPay                       10533.19
Benefits                       30663.81
TotalPay                       92908.29
TotalPayBenefits               123572.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86147, dtype: object)
(86148, Id                                   86149
EmployeeName             Lesley A Fiscella
JobTitle            Deputy Court Clerk III
BasePay                           88400.13
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          31671.94
TotalPay                          91900.13
TotalPayBenefits                 123572.07
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86148, dtype: object)
(86149, Id                                      86150
EmployeeName                    Nikhila K Pai
JobTitle            Pr Administrative Analyst
BasePay                              92835.07
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30728.01
TotalPay                             92835.07
TotalPayBenefits                    123563.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86149, dtype: object)
(86150, Id                                      86151
EmployeeName                   Wayne  Sabbath
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                          21422.61
OtherPay                               9523.5
Benefits                             28291.94
TotalPay                             95263.11
TotalPayBenefits                    123555.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86150, dtype: object)
(86151, Id                                           86152
EmployeeName                     Andrea S Ausberry
JobTitle            Asst Clk, Board of Supervisors
BasePay                                   89088.74
OvertimePay                                2138.38
OtherPay                                       0.0
Benefits                                  32323.95
TotalPay                                  91227.12
TotalPayBenefits                         123551.07
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86151, dtype: object)
(86152, Id                             86153
EmployeeName         Moges B Berhanu
JobTitle            Transit Operator
BasePay                     68191.21
OvertimePay                 19417.61
OtherPay                     2411.61
Benefits                     33530.1
TotalPay                    90020.43
TotalPayBenefits           123550.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86152, dtype: object)
(86153, Id                          86154
EmployeeName        Anson T Louie
JobTitle                  Dentist
BasePay                  96558.33
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 26982.67
TotalPay                 96558.33
TotalPayBenefits         123541.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86153, dtype: object)
(86154, Id                                  86155
EmployeeName                   Joyce Y Ip
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                            960.0
Benefits                         31878.86
TotalPay                         91653.01
TotalPayBenefits                123531.87
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86154, dtype: object)
(86155, Id                                  86156
EmployeeName              Lupita  Ramirez
JobTitle            Medical Social Worker
BasePay                          90430.58
OvertimePay                           0.0
OtherPay                           1240.0
Benefits                         31848.66
TotalPay                         91670.58
TotalPayBenefits                123519.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86155, dtype: object)
(86156, Id                                   86157
EmployeeName              Sarah R Swanbeck
JobTitle            Performance Analyst II
BasePay                           90838.35
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32669.93
TotalPay                          90838.35
TotalPayBenefits                 123508.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86156, dtype: object)
(86157, Id                                86158
EmployeeName           Richie P Andrade
JobTitle            Automotive Mechanic
BasePay                        76652.83
OvertimePay                     4390.32
OtherPay                       11654.07
Benefits                       30810.29
TotalPay                       92697.22
TotalPayBenefits              123507.51
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86157, dtype: object)
(86158, Id                                           86159
EmployeeName                      Ronald L Veloria
JobTitle            IT Operations Support Admn III
BasePay                                    85442.2
OvertimePay                                    0.0
OtherPay                                   6224.17
Benefits                                  31835.97
TotalPay                                  91666.37
TotalPayBenefits                         123502.34
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86158, dtype: object)
(86159, Id                                          86160
EmployeeName                        Steven R Ball
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.05
OvertimePay                                   0.0
OtherPay                                   648.06
Benefits                                  31879.5
TotalPay                                 91611.11
TotalPayBenefits                        123490.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86159, dtype: object)
(86160, Id                                          86161
EmployeeName                      Jayson  Wechter
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.04
OvertimePay                                   0.0
OtherPay                                   648.01
Benefits                                 31879.51
TotalPay                                 91611.05
TotalPayBenefits                        123490.56
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86160, dtype: object)
(86161, Id                                          86162
EmployeeName                        Karol V Heppe
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.03
OvertimePay                                   0.0
OtherPay                                   648.01
Benefits                                 31879.51
TotalPay                                 91611.04
TotalPayBenefits                        123490.55
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86161, dtype: object)
(86162, Id                                          86163
EmployeeName                        Jessica  Cole
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.02
OvertimePay                                   0.0
OtherPay                                   647.99
Benefits                                 31879.51
TotalPay                                 91611.01
TotalPayBenefits                        123490.52
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86162, dtype: object)
(86163, Id                                           86164
EmployeeName                          Karen A Masi
JobTitle            Public Defender's Investigator
BasePay                                    90963.0
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31879.51
TotalPay                                   91611.0
TotalPayBenefits                         123490.51
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86163, dtype: object)
(86164, Id                                     86165
EmployeeName                  Karla V Barcia
JobTitle            Commercial Div Asst Sprv
BasePay                              84999.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            38473.91
TotalPay                             84999.0
TotalPayBenefits                   123472.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86164, dtype: object)
(86165, Id                                      86166
EmployeeName                Violeta D Cuyugan
JobTitle            Licensed Vocational Nurse
BasePay                              73056.84
OvertimePay                          22114.65
OtherPay                                250.0
Benefits                             28050.24
TotalPay                             95421.49
TotalPayBenefits                    123471.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86165, dtype: object)
(86166, Id                                86167
EmployeeName        Catherine E Cormier
JobTitle                    Librarian 2
BasePay                        91206.11
OvertimePay                         0.0
OtherPay                          378.5
Benefits                       31879.52
TotalPay                       91584.61
TotalPayBenefits              123464.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86166, dtype: object)
(86167, Id                           86168
EmployeeName          Winnie L Lee
JobTitle            Assoc Engineer
BasePay                   93731.79
OvertimePay                    0.0
OtherPay                    169.66
Benefits                  29560.32
TotalPay                  93901.45
TotalPayBenefits         123461.77
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86167, dtype: object)
(86168, Id                               86169
EmployeeName           Raymond  Fisher
JobTitle            Transit Supervisor
BasePay                       68680.75
OvertimePay                   24376.67
OtherPay                       5074.46
Benefits                      25329.47
TotalPay                      98131.88
TotalPayBenefits             123461.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86168, dtype: object)
(86169, Id                                          86170
EmployeeName                          Jordan  Cho
JobTitle            Senior Administrative Analyst
BasePay                                   91526.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31932.06
TotalPay                                  91526.0
TotalPayBenefits                        123458.06
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86169, dtype: object)
(86170, Id                                          86171
EmployeeName                Veronica C Moran-Diaz
JobTitle            Eligibility Worker Supervisor
BasePay                                   83468.0
OvertimePay                               6908.84
OtherPay                                  2386.57
Benefits                                 30694.45
TotalPay                                 92763.41
TotalPayBenefits                        123457.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86170, dtype: object)
(86171, Id                          86172
EmployeeName         Roy W Maxson
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay              12931.88
OtherPay                    751.0
Benefits                 29719.64
TotalPay                 93734.88
TotalPayBenefits        123454.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86171, dtype: object)
(86172, Id                              86173
EmployeeName        Demissie T Mulatu
JobTitle               Accountant III
BasePay                      91559.05
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31894.33
TotalPay                     91559.05
TotalPayBenefits            123453.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86172, dtype: object)
(86173, Id                                      86174
EmployeeName                  Joseph D Castro
JobTitle            Assistant Const Inspector
BasePay                               81686.5
OvertimePay                           11848.7
OtherPay                                  0.0
Benefits                             29917.73
TotalPay                              93535.2
TotalPayBenefits                    123452.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86173, dtype: object)
(86174, Id                             86175
EmployeeName         Robert  Donohue
JobTitle            Transit Operator
BasePay                     66930.91
OvertimePay                  18758.9
OtherPay                     4296.96
Benefits                    33457.98
TotalPay                    89986.77
TotalPayBenefits           123444.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86174, dtype: object)
(86175, Id                             86176
EmployeeName              Daisy  Gin
JobTitle            Registered Nurse
BasePay                     92437.81
OvertimePay                      0.0
OtherPay                     1567.86
Benefits                    29429.47
TotalPay                    94005.67
TotalPayBenefits           123435.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86175, dtype: object)
(86176, Id                                          86177
EmployeeName                          Mary E Ivas
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                   90920.9
OvertimePay                                   0.0
OtherPay                                   647.69
Benefits                                  31865.5
TotalPay                                 91568.59
TotalPayBenefits                        123434.09
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86176, dtype: object)
(86177, Id                                86178
EmployeeName               Robert  Rudy
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                    20759.52
OtherPay                        5886.26
Benefits                       18316.12
TotalPay                      105116.38
TotalPayBenefits               123432.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86177, dtype: object)
(86178, Id                                   86179
EmployeeName             Yolanda C Soriano
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       25029.05
OtherPay                           2369.85
Benefits                          27632.39
TotalPay                           95789.9
TotalPayBenefits                 123422.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86178, dtype: object)
(86179, Id                                      86180
EmployeeName                  Clayton A Smith
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.02
OvertimePay                               0.0
OtherPay                               2952.9
Benefits                              31850.0
TotalPay                             91566.92
TotalPayBenefits                    123416.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86179, dtype: object)
(86180, Id                              86181
EmployeeName        Raymundo  Alfonso
JobTitle             Transit Operator
BasePay                      65387.68
OvertimePay                  22548.97
OtherPay                      3096.15
Benefits                     32373.78
TotalPay                      91032.8
TotalPayBenefits            123406.58
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86180, dtype: object)
(86181, Id                             86182
EmployeeName          Terrence  Hall
JobTitle            Transit Operator
BasePay                     67051.73
OvertimePay                 23593.42
OtherPay                      344.53
Benefits                    32415.99
TotalPay                    90989.68
TotalPayBenefits           123405.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86181, dtype: object)
(86182, Id                                86183
EmployeeName        Fletcher L Stanford
JobTitle               Transit Operator
BasePay                         68510.0
OvertimePay                    18099.82
OtherPay                        2256.88
Benefits                       34527.29
TotalPay                        88866.7
TotalPayBenefits              123393.99
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86182, dtype: object)
(86183, Id                               86184
EmployeeName            Jill A Nierman
JobTitle            Nurse Practitioner
BasePay                       91149.42
OvertimePay                      623.1
OtherPay                       3630.23
Benefits                      27989.74
TotalPay                      95402.75
TotalPayBenefits             123392.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86183, dtype: object)
(86184, Id                                         86185
EmployeeName                       Eloy  Morgado
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.52
OvertimePay                             11853.03
OtherPay                                  2337.8
Benefits                                 29917.5
TotalPay                                93474.35
TotalPayBenefits                       123391.85
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86184, dtype: object)
(86185, Id                             86186
EmployeeName           James  Nelson
JobTitle            Transit Operator
BasePay                     67105.17
OvertimePay                 23124.47
OtherPay                      631.38
Benefits                    32529.07
TotalPay                    90861.02
TotalPayBenefits           123390.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86185, dtype: object)
(86186, Id                           86187
EmployeeName         Glenda L Wong
JobTitle            Accountant III
BasePay                   90744.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32645.62
TotalPay                  90744.02
TotalPayBenefits         123389.64
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86186, dtype: object)
(86187, Id                                86188
EmployeeName             Teresa M Tapia
JobTitle            Transit Planner III
BasePay                         90732.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32652.74
TotalPay                        90732.7
TotalPayBenefits              123385.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86187, dtype: object)
(86188, Id                               86189
EmployeeName          Sebastian C Shul
JobTitle            Transit Supervisor
BasePay                       88749.56
OvertimePay                     127.01
OtherPay                        2927.0
Benefits                      31577.93
TotalPay                      91803.57
TotalPayBenefits              123381.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86188, dtype: object)
(86189, Id                                   86190
EmployeeName                Lorna M Gotera
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       20689.99
OtherPay                            5963.0
Benefits                          28337.36
TotalPay                          95043.99
TotalPayBenefits                 123381.35
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86189, dtype: object)
(86190, Id                                      86191
EmployeeName                 Juliet D Valerio
JobTitle            Psychiatric Social Worker
BasePay                              90536.41
OvertimePay                            510.78
OtherPay                               576.23
Benefits                             31753.72
TotalPay                             91623.42
TotalPayBenefits                    123377.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86190, dtype: object)
(86191, Id                                   86192
EmployeeName               Karen M Guevara
JobTitle            Public SafetyComm Disp
BasePay                            82540.6
OvertimePay                        1929.31
OtherPay                            8069.4
Benefits                          30831.26
TotalPay                          92539.31
TotalPayBenefits                 123370.57
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86191, dtype: object)
(86192, Id                                           86193
EmployeeName                       Michael E Brown
JobTitle            IT Operations Support Admn III
BasePay                                    85761.5
OvertimePay                                    0.0
OtherPay                                   6869.82
Benefits                                  30732.71
TotalPay                                  92631.32
TotalPayBenefits                         123364.03
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86192, dtype: object)
(86193, Id                             86194
EmployeeName              Bill  Chui
JobTitle            Transit Operator
BasePay                      70780.4
OvertimePay                 18014.23
OtherPay                      319.73
Benefits                    34243.94
TotalPay                    89114.36
TotalPayBenefits            123358.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86193, dtype: object)
(86194, Id                                           86195
EmployeeName                       Michael J Ahern
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                    805.92
Benefits                                  31856.39
TotalPay                                  91498.94
TotalPayBenefits                         123355.33
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86194, dtype: object)
(86195, Id                             86196
EmployeeName             Greg  Ellis
JobTitle            Transit Operator
BasePay                     68742.33
OvertimePay                 10891.45
OtherPay                     8296.47
Benefits                    35422.92
TotalPay                    87930.25
TotalPayBenefits           123353.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86195, dtype: object)
(86196, Id                           86197
EmployeeName        Yunshan  Kuang
JobTitle            Accountant III
BasePay                    91475.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   31877.5
TotalPay                   91475.5
TotalPayBenefits          123353.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86196, dtype: object)
(86197, Id                                      86198
EmployeeName                    Cynthia T Pon
JobTitle            Psychiatric Social Worker
BasePay                               90693.0
OvertimePay                               0.0
OtherPay                                799.2
Benefits                             31855.17
TotalPay                              91492.2
TotalPayBenefits                    123347.37
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86197, dtype: object)
(86198, Id                                           86199
EmployeeName                     Matthew T Weinand
JobTitle            Planner 3-Environmental Review
BasePay                                   87998.59
OvertimePay                                    0.0
OtherPay                                   3457.83
Benefits                                  31890.83
TotalPay                                  91456.42
TotalPayBenefits                         123347.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86198, dtype: object)
(86199, Id                                           86200
EmployeeName                      Robert M Ramirez
JobTitle            Track Maint Supt, Muni Railway
BasePay                                   73834.17
OvertimePay                                    0.0
OtherPay                                   18620.0
Benefits                                  30878.59
TotalPay                                  92454.17
TotalPayBenefits                         123332.76
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86199, dtype: object)
(86200, Id                                         86201
EmployeeName                  Rachel A Cukierman
JobTitle            Perf Analyst III Project Mgr
BasePay                                 93428.11
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                29889.19
TotalPay                                93428.11
TotalPayBenefits                        123317.3
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86200, dtype: object)
(86201, Id                          86202
EmployeeName         Gordon  Choy
JobTitle              Manager III
BasePay                  71673.52
OvertimePay                   0.0
OtherPay                 26227.58
Benefits                 25415.67
TotalPay                  97901.1
TotalPayBenefits        123316.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86201, dtype: object)
(86202, Id                                      86203
EmployeeName                    Ralph  Joshua
JobTitle            Automotive Service Worker
BasePay                              64317.03
OvertimePay                          18033.23
OtherPay                             12153.19
Benefits                             28812.71
TotalPay                             94503.45
TotalPayBenefits                    123316.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86202, dtype: object)
(86203, Id                                86204
EmployeeName               Moshe  Weber
JobTitle            Airport Electrician
BasePay                        88000.09
OvertimePay                     1332.41
OtherPay                         3295.0
Benefits                       30684.16
TotalPay                        92627.5
TotalPayBenefits              123311.66
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86203, dtype: object)
(86204, Id                                         86205
EmployeeName                  Marianna  Williams
JobTitle            Cement Finisher Supervisor 2
BasePay                                 77660.04
OvertimePay                             16181.14
OtherPay                                   280.0
Benefits                                 29186.6
TotalPay                                94121.18
TotalPayBenefits                       123307.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86204, dtype: object)
(86205, Id                                  86206
EmployeeName             Rebecca B Mervis
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         32604.99
TotalPay                         90693.01
TotalPayBenefits                 123298.0
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86205, dtype: object)
(86206, Id                                    86207
EmployeeName                  William S Xie
JobTitle            Engineering Associate 2
BasePay                             91396.7
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31889.51
TotalPay                            91396.7
TotalPayBenefits                  123286.21
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86206, dtype: object)
(86207, Id                             86208
EmployeeName          Herbert C Ward
JobTitle            Transit Operator
BasePay                     68492.63
OvertimePay                 14532.52
OtherPay                     4982.87
Benefits                    35276.59
TotalPay                    88008.02
TotalPayBenefits           123284.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86207, dtype: object)
(86208, Id                                         86209
EmployeeName                        Jennie L Hua
JobTitle            Health Program Coordinator 3
BasePay                                 91504.88
OvertimePay                                  0.0
OtherPay                                   680.0
Benefits                                31090.88
TotalPay                                92184.88
TotalPayBenefits                       123275.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86208, dtype: object)
(86209, Id                             86210
EmployeeName           Alfredo  Diaz
JobTitle            Transit Operator
BasePay                     67371.75
OvertimePay                 15626.86
OtherPay                      6141.2
Benefits                    34127.35
TotalPay                    89139.81
TotalPayBenefits           123267.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86209, dtype: object)
(86210, Id                                           86211
EmployeeName                        Adam T Hellman
JobTitle            Med Examiner's Investigator II
BasePay                                   77380.81
OvertimePay                                13759.1
OtherPay                                   2625.13
Benefits                                  29499.55
TotalPay                                  93765.04
TotalPayBenefits                         123264.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86210, dtype: object)
(86211, Id                             86212
EmployeeName          John F Caberto
JobTitle            Transit Operator
BasePay                     69089.21
OvertimePay                 11764.92
OtherPay                      7152.3
Benefits                    35257.36
TotalPay                    88006.43
TotalPayBenefits           123263.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86211, dtype: object)
(86212, Id                                   86213
EmployeeName              Steven J Juliano
JobTitle            Airport Safety Officer
BasePay                           86293.07
OvertimePay                        4618.67
OtherPay                           1291.25
Benefits                          31059.24
TotalPay                          92202.99
TotalPayBenefits                 123262.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86212, dtype: object)
(86213, Id                                        86214
EmployeeName                   James K Abbeduto
JobTitle            Administrative Services Mgr
BasePay                                91363.81
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31892.38
TotalPay                               91363.81
TotalPayBenefits                      123256.19
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86213, dtype: object)
(86214, Id                              86215
EmployeeName        Kenneth  Chambers
JobTitle             Transit Operator
BasePay                      67724.79
OvertimePay                  22440.79
OtherPay                       308.07
Benefits                     32779.69
TotalPay                     90473.65
TotalPayBenefits            123253.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86214, dtype: object)
(86215, Id                               86216
EmployeeName        Barry  Chamberlain
JobTitle              Transit Operator
BasePay                       68832.64
OvertimePay                   13353.92
OtherPay                       6169.05
Benefits                      34889.52
TotalPay                      88355.61
TotalPayBenefits             123245.13
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86215, dtype: object)
(86216, Id                             86217
EmployeeName           Jose A Torres
JobTitle            Transit Operator
BasePay                     66900.57
OvertimePay                 22404.33
OtherPay                     1308.92
Benefits                    32628.44
TotalPay                    90613.82
TotalPayBenefits           123242.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86216, dtype: object)
(86217, Id                                     86218
EmployeeName                  Bonita  Jacobs
JobTitle            Counselor, Juvenile Hall
BasePay                             65024.82
OvertimePay                         31884.12
OtherPay                             1069.82
Benefits                             25252.0
TotalPay                            97978.76
TotalPayBenefits                   123230.76
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86217, dtype: object)
(86218, Id                                      86219
EmployeeName                     Wai Yee  Lam
JobTitle            Architectural Assistant 2
BasePay                              85761.51
OvertimePay                           6729.14
OtherPay                                  0.0
Benefits                              30732.7
TotalPay                             92490.65
TotalPayBenefits                    123223.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86218, dtype: object)
(86219, Id                                        86220
EmployeeName                   Medrick  Bell Jr
JobTitle            Station Agent, Muni Railway
BasePay                                 68659.3
OvertimePay                            27277.05
OtherPay                                1682.56
Benefits                               25597.62
TotalPay                               97618.91
TotalPayBenefits                      123216.53
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86219, dtype: object)
(86220, Id                             86221
EmployeeName            Frank  Huynh
JobTitle            Transit Operator
BasePay                     66947.23
OvertimePay                 21934.37
OtherPay                     1595.39
Benefits                    32737.23
TotalPay                    90476.99
TotalPayBenefits           123214.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86220, dtype: object)
(86221, Id                                      86222
EmployeeName                   Michael  Mason
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74534.2
OvertimePay                          10985.72
OtherPay                              7426.07
Benefits                             30267.12
TotalPay                             92945.99
TotalPayBenefits                    123213.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86221, dtype: object)
(86222, Id                                   86223
EmployeeName                 Colin G Kelly
JobTitle            Electrical Line Worker
BasePay                            68295.0
OvertimePay                       27498.28
OtherPay                           1993.37
Benefits                          25415.04
TotalPay                          97786.65
TotalPayBenefits                 123201.69
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86222, dtype: object)
(86223, Id                                           86224
EmployeeName                         Mona  Tahsini
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90353.35
OvertimePay                                    0.0
OtherPay                                    1066.8
Benefits                                   31780.4
TotalPay                                  91420.15
TotalPayBenefits                         123200.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86223, dtype: object)
(86224, Id                                           86225
EmployeeName                          Elina  Leino
JobTitle            Court Administrative Secretary
BasePay                                   87236.53
OvertimePay                                    0.0
OtherPay                                    4148.0
Benefits                                  31813.76
TotalPay                                  91384.53
TotalPayBenefits                         123198.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86224, dtype: object)
(86225, Id                                86226
EmployeeName        Toni L Charlesworth
JobTitle               Registered Nurse
BasePay                        81831.99
OvertimePay                     1503.38
OtherPay                       12019.68
Benefits                       27843.21
TotalPay                       95355.05
TotalPayBenefits              123198.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86225, dtype: object)
(86226, Id                                       86227
EmployeeName                    Alan D Thoburn
JobTitle            Asst Materials Coordinator
BasePay                                97365.6
OvertimePay                            5642.96
OtherPay                                   0.0
Benefits                               20170.0
TotalPay                             103008.56
TotalPayBenefits                     123178.56
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86226, dtype: object)
(86227, Id                                   86228
EmployeeName                 Barry K Davis
JobTitle            Airport Safety Officer
BasePay                            86373.0
OvertimePay                       17123.49
OtherPay                            776.05
Benefits                          18896.41
TotalPay                         104272.54
TotalPayBenefits                 123168.95
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86227, dtype: object)
(86228, Id                                  86229
EmployeeName                Paul D Kelley
JobTitle            Medical Social Worker
BasePay                          90693.07
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.44
TotalPay                         91341.07
TotalPayBenefits                123166.51
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86228, dtype: object)
(86229, Id                                  86230
EmployeeName                   Paula  Yap
JobTitle            Medical Social Worker
BasePay                          90693.05
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.45
TotalPay                         91341.05
TotalPayBenefits                 123166.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86229, dtype: object)
(86230, Id                                      86231
EmployeeName                     Kenneth  Lim
JobTitle            Psychiatric Social Worker
BasePay                              90693.06
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.44
TotalPay                             91341.06
TotalPayBenefits                     123166.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86230, dtype: object)
(86231, Id                                           86232
EmployeeName                   Jacqueline K Cooper
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                    648.05
Benefits                                  31825.42
TotalPay                                  91341.07
TotalPayBenefits                         123166.49
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86231, dtype: object)
(86232, Id                                  86233
EmployeeName             Janis S Takamoto
JobTitle            Medical Social Worker
BasePay                          90693.05
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.43
TotalPay                         91341.05
TotalPayBenefits                123166.48
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86232, dtype: object)
(86233, Id                                      86234
EmployeeName                 Robyn M Aseltine
JobTitle            Psychiatric Social Worker
BasePay                              90693.06
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.41
TotalPay                             91341.06
TotalPayBenefits                    123166.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86233, dtype: object)
(86234, Id                                           86235
EmployeeName                      Mike P McDonough
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.05
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31825.42
TotalPay                                  91341.05
TotalPayBenefits                         123166.47
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86234, dtype: object)
(86235, Id                                  86236
EmployeeName                Dale M Thomas
JobTitle            Medical Social Worker
BasePay                          90693.04
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.43
TotalPay                         91341.04
TotalPayBenefits                123166.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86235, dtype: object)
(86236, Id                                      86237
EmployeeName                     Albert A Bok
JobTitle            Psychiatric Social Worker
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.42
TotalPay                             91341.04
TotalPayBenefits                    123166.46
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86236, dtype: object)
(86237, Id                                      86238
EmployeeName             James  Zelaya-Wagner
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.42
TotalPay                             91341.03
TotalPayBenefits                    123166.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86237, dtype: object)
(86238, Id                                      86239
EmployeeName                 William C Torres
JobTitle            Psychiatric Social Worker
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.41
TotalPay                             91341.04
TotalPayBenefits                    123166.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86238, dtype: object)
(86239, Id                                  86240
EmployeeName          Christine M Corsano
JobTitle            Medical Social Worker
BasePay                          90693.03
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.42
TotalPay                         91341.03
TotalPayBenefits                123166.45
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86239, dtype: object)
(86240, Id                                      86241
EmployeeName                    Anna  Hancock
JobTitle            Child Support Officer III
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.42
TotalPay                             91341.02
TotalPayBenefits                    123166.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86240, dtype: object)
(86241, Id                                      86242
EmployeeName                   James  Jenkins
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31825.42
TotalPay                             91341.02
TotalPayBenefits                    123166.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86241, dtype: object)
(86242, Id                                  86243
EmployeeName                John E Tinloy
JobTitle            Medical Social Worker
BasePay                          90693.02
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31825.42
TotalPay                         91341.02
TotalPayBenefits                123166.44
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86242, dtype: object)
(86243, Id                                    86244
EmployeeName        Cynthia B Wiseman-Kelly
JobTitle              Medical Social Worker
BasePay                             90693.0
OvertimePay                             0.0
OtherPay                             648.01
Benefits                            31825.4
TotalPay                           91341.01
TotalPayBenefits                  123166.41
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86243, dtype: object)
(86244, Id                                  86245
EmployeeName                 Allen M Pugh
JobTitle            Medical Social Worker
BasePay                           90693.0
OvertimePay                           0.0
OtherPay                            648.0
Benefits                          31825.4
TotalPay                          91341.0
TotalPayBenefits                 123166.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86244, dtype: object)
(86245, Id                                           86246
EmployeeName                   Sharon D Singletary
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                   31825.4
TotalPay                                   91341.0
TotalPayBenefits                          123166.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86245, dtype: object)
(86246, Id                                      86247
EmployeeName                    Mark A Torres
JobTitle            Child Support Officer III
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                                647.4
Benefits                             31825.31
TotalPay                             91340.42
TotalPayBenefits                    123165.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86246, dtype: object)
(86247, Id                                           86248
EmployeeName                    Jacqueline  Sowers
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.06
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31820.17
TotalPay                                  91341.06
TotalPayBenefits                         123161.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86247, dtype: object)
(86248, Id                                           86249
EmployeeName                        Maceo R Barber
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.01
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31816.76
TotalPay                                  91341.01
TotalPayBenefits                         123157.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86248, dtype: object)
(86249, Id                                86250
EmployeeName            Henry L Navarro
JobTitle            Roofer Supervisor 1
BasePay                        91155.52
OvertimePay                      188.94
OtherPay                            0.0
Benefits                       31798.22
TotalPay                       91344.46
TotalPayBenefits              123142.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86249, dtype: object)
(86250, Id                                86251
EmployeeName                Ramon L Yow
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                    12170.65
OtherPay                          648.0
Benefits                       29782.83
TotalPay                       93359.65
TotalPayBenefits              123142.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86250, dtype: object)
(86251, Id                             86252
EmployeeName          Carl  Chambers
JobTitle            Transit Operator
BasePay                     69209.67
OvertimePay                 10499.85
OtherPay                     7881.57
Benefits                    35535.16
TotalPay                    87591.09
TotalPayBenefits           123126.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86251, dtype: object)
(86252, Id                             86253
EmployeeName         Paul W Aparicio
JobTitle            Transit Operator
BasePay                     67509.85
OvertimePay                 20928.09
OtherPay                      1642.0
Benefits                    33035.48
TotalPay                    90079.94
TotalPayBenefits           123115.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86252, dtype: object)
(86253, Id                              86254
EmployeeName        Catherine A Lyons
JobTitle                 Duty Officer
BasePay                      84446.25
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     38667.74
TotalPay                     84446.25
TotalPayBenefits            123113.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86253, dtype: object)
(86254, Id                              86255
EmployeeName          Patricia A Jean
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  26472.84
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     95761.84
TotalPayBenefits            123112.97
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86254, dtype: object)
(86255, Id                                           86256
EmployeeName                           David  Page
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90651.05
OvertimePay                                    0.0
OtherPay                                     647.7
Benefits                                  31811.46
TotalPay                                  91298.75
TotalPayBenefits                         123110.21
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86255, dtype: object)
(86256, Id                                86257
EmployeeName        Emmanuel R Bautista
JobTitle               Transit Operator
BasePay                        68313.42
OvertimePay                     15853.5
OtherPay                        4677.42
Benefits                        34243.6
TotalPay                       88844.34
TotalPayBenefits              123087.94
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86256, dtype: object)
(86257, Id                                       86258
EmployeeName               Melissa J Rosenberg
JobTitle            Protective Services Worker
BasePay                               91084.88
OvertimePay                                0.0
OtherPay                                619.74
Benefits                              31379.44
TotalPay                              91704.62
TotalPayBenefits                     123084.06
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86257, dtype: object)
(86258, Id                               86259
EmployeeName            Hwa Seung  Lee
JobTitle            Nurse Practitioner
BasePay                       93776.55
OvertimePay                        0.0
OtherPay                        1025.0
Benefits                      28280.76
TotalPay                      94801.55
TotalPayBenefits             123082.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86258, dtype: object)
(86259, Id                                86260
EmployeeName           Donald  Reddicks
JobTitle            Transit Car Cleaner
BasePay                         60959.9
OvertimePay                    25106.59
OtherPay                        9441.86
Benefits                       27566.22
TotalPay                       95508.35
TotalPayBenefits              123074.57
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86259, dtype: object)
(86260, Id                                   86261
EmployeeName        Adugnash-Bizu L Yegazu
JobTitle                         Planner 3
BasePay                           99160.85
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          23907.44
TotalPay                          99160.85
TotalPayBenefits                 123068.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86260, dtype: object)
(86261, Id                               86262
EmployeeName        Katrin B Reimuller
JobTitle                   Librarian 2
BasePay                       91206.04
OvertimePay                        0.0
OtherPay                         47.32
Benefits                      31809.39
TotalPay                      91253.36
TotalPayBenefits             123062.75
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86261, dtype: object)
(86262, Id                                  86263
EmployeeName             Jeffrey V Cretan
JobTitle            Legislative Assistant
BasePay                          90467.11
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          32592.2
TotalPay                         90467.11
TotalPayBenefits                123059.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86262, dtype: object)
(86263, Id                                     86264
EmployeeName             Anne E Blair-Romero
JobTitle            Sr. Community Devl Spc 1
BasePay                             91462.97
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31594.11
TotalPay                            91462.97
TotalPayBenefits                   123057.08
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86263, dtype: object)
(86264, Id                                           86265
EmployeeName                      Jennifer K Acton
JobTitle            Sprv Wastewater Cont Inspector
BasePay                                   83030.55
OvertimePay                                3766.88
OtherPay                                   8378.23
Benefits                                  27877.39
TotalPay                                  95175.66
TotalPayBenefits                         123053.05
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86264, dtype: object)
(86265, Id                               86266
EmployeeName        Alejandro  Porcuna
JobTitle              Transit Operator
BasePay                       68497.92
OvertimePay                   19226.42
OtherPay                       1792.25
Benefits                      33524.91
TotalPay                      89516.59
TotalPayBenefits              123041.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86265, dtype: object)
(86266, Id                                      86267
EmployeeName                 Rodolfo B Millan
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          15036.91
OtherPay                               5151.8
Benefits                             29228.59
TotalPay                             93790.71
TotalPayBenefits                     123019.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86266, dtype: object)
(86267, Id                             86268
EmployeeName            Zhengwen  Li
JobTitle            Transit Operator
BasePay                     69448.74
OvertimePay                 18025.97
OtherPay                      919.94
Benefits                    34616.82
TotalPay                    88394.65
TotalPayBenefits           123011.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86267, dtype: object)
(86268, Id                          86269
EmployeeName          Jay T Smith
JobTitle              Librarian 2
BasePay                  91206.12
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31800.78
TotalPay                 91206.12
TotalPayBenefits         123006.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86268, dtype: object)
(86269, Id                                86270
EmployeeName        Christy B Estrovitz
JobTitle                    Librarian 2
BasePay                        91206.09
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31800.78
TotalPay                       91206.09
TotalPayBenefits              123006.87
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86269, dtype: object)
(86270, Id                           86271
EmployeeName        Julie A Takata
JobTitle               Librarian 2
BasePay                   91206.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31800.76
TotalPay                  91206.02
TotalPayBenefits         123006.78
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86270, dtype: object)
(86271, Id                           86272
EmployeeName        Wai Lun  Leung
JobTitle                 Asst Engr
BasePay                   91937.77
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31067.89
TotalPay                  91937.77
TotalPayBenefits         123005.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86271, dtype: object)
(86272, Id                          86273
EmployeeName        Robert P Beck
JobTitle             Manager VIII
BasePay                   93700.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29305.51
TotalPay                  93700.0
TotalPayBenefits        123005.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86272, dtype: object)
(86273, Id                             86274
EmployeeName        Kenneth C Brewer
JobTitle            Watershed Keeper
BasePay                      68391.0
OvertimePay                  5192.65
OtherPay                    22205.01
Benefits                    27216.08
TotalPay                    95788.66
TotalPayBenefits           123004.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86273, dtype: object)
(86274, Id                                86275
EmployeeName            Krysten A Laine
JobTitle            IS Business Analyst
BasePay                         90423.2
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32581.26
TotalPay                        90423.2
TotalPayBenefits              123004.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86274, dtype: object)
(86275, Id                                 86276
EmployeeName        Arturo P Esguerra Jr
JobTitle                Transit Operator
BasePay                         63857.95
OvertimePay                     26690.36
OtherPay                         1273.63
Benefits                        31179.86
TotalPay                        91821.94
TotalPayBenefits                123001.8
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86275, dtype: object)
(86276, Id                                    86277
EmployeeName                Gregory C Crump
JobTitle            Program Support Analyst
BasePay                            91181.72
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31814.26
TotalPay                           91181.72
TotalPayBenefits                  122995.98
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86276, dtype: object)
(86277, Id                             86278
EmployeeName        Steven W Bryning
JobTitle                Truck Driver
BasePay                      80052.0
OvertimePay                   162.31
OtherPay                     10265.2
Benefits                    32494.72
TotalPay                    90479.51
TotalPayBenefits           122974.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86277, dtype: object)
(86278, Id                                      86279
EmployeeName           Marta A Rivas de Lopez
JobTitle            Licensed Vocational Nurse
BasePay                              73596.21
OvertimePay                          12949.82
OtherPay                              6863.12
Benefits                             29563.87
TotalPay                             93409.15
TotalPayBenefits                    122973.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86278, dtype: object)
(86279, Id                                       86280
EmployeeName                    Marivic L Huff
JobTitle            IS Business Analyst-Senior
BasePay                               93189.02
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29777.33
TotalPay                              93189.02
TotalPayBenefits                     122966.35
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86279, dtype: object)
(86280, Id                                     86281
EmployeeName                    Nikole  Ford
JobTitle            Sr. Community Devl Spc 1
BasePay                             91142.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31822.12
TotalPay                            91142.01
TotalPayBenefits                   122964.13
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86280, dtype: object)
(86281, Id                               86282
EmployeeName        Joel C Del Rosario
JobTitle            IS Administrator 2
BasePay                       85758.42
OvertimePay                        0.0
OtherPay                       5421.25
Benefits                      31782.99
TotalPay                      91179.67
TotalPayBenefits             122962.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86281, dtype: object)
(86282, Id                             86283
EmployeeName            Jesse  Grady
JobTitle            Transit Operator
BasePay                     67919.35
OvertimePay                 20275.44
OtherPay                     1535.08
Benefits                    33227.46
TotalPay                    89729.87
TotalPayBenefits           122957.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86282, dtype: object)
(86283, Id                          86284
EmployeeName               He  Du
JobTitle            Pattern Maker
BasePay                  89001.51
OvertimePay                   0.0
OtherPay                   2164.5
Benefits                 31790.78
TotalPay                 91166.01
TotalPayBenefits        122956.79
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86283, dtype: object)
(86284, Id                                      86285
EmployeeName                     Jan'l  Sutow
JobTitle            Asst Electronic Main Tech
BasePay                              91155.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31798.21
TotalPay                             91155.54
TotalPayBenefits                    122953.75
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86284, dtype: object)
(86285, Id                                          86286
EmployeeName                       Maria E Arinez
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               6908.56
OtherPay                                   2248.0
Benefits                                 30632.25
TotalPay                                 92316.56
TotalPayBenefits                        122948.81
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86285, dtype: object)
(86286, Id                                      86287
EmployeeName                       Lino  Lino
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          15741.52
OtherPay                             13785.03
Benefits                             29108.99
TotalPay                             93838.75
TotalPayBenefits                    122947.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86286, dtype: object)
(86287, Id                                    86288
EmployeeName                Robert B Pabros
JobTitle            Water Service Inspector
BasePay                            89934.74
OvertimePay                         1527.15
OtherPay                             193.99
Benefits                            31288.7
TotalPay                           91655.88
TotalPayBenefits                  122944.58
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86287, dtype: object)
(86288, Id                                        86289
EmployeeName                      Sonya  Harris
JobTitle            Sctry, Bldg Inspection Comm
BasePay                                91114.51
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31828.08
TotalPay                               91114.51
TotalPayBenefits                      122942.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86288, dtype: object)
(86289, Id                             86290
EmployeeName         Joaquin A Valle
JobTitle            Transit Operator
BasePay                      67922.3
OvertimePay                 13897.28
OtherPay                     6577.42
Benefits                    34544.16
TotalPay                     88397.0
TotalPayBenefits           122941.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86289, dtype: object)
(86290, Id                                         86291
EmployeeName                       Patricia P Lu
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                  73899.0
OvertimePay                             20707.16
OtherPay                                     0.0
Benefits                                28334.89
TotalPay                                94606.16
TotalPayBenefits                       122941.05
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86290, dtype: object)
(86291, Id                                   86292
EmployeeName               Ibiyemi A Alabi
JobTitle            Patient Care Assistant
BasePay                            68137.7
OvertimePay                       26651.82
OtherPay                             895.6
Benefits                          27254.44
TotalPay                          95685.12
TotalPayBenefits                 122939.56
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86291, dtype: object)
(86292, Id                               86293
EmployeeName        Kimberly M Kulstad
JobTitle                Police Officer
BasePay                       87336.24
OvertimePay                    2112.25
OtherPay                       1900.61
Benefits                       31590.3
TotalPay                       91349.1
TotalPayBenefits              122939.4
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86292, dtype: object)
(86293, Id                                          86294
EmployeeName                          Roger P Tam
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               7796.26
OtherPay                                   1480.0
Benefits                                 30482.54
TotalPay                                 92436.26
TotalPayBenefits                         122918.8
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86293, dtype: object)
(86294, Id                                       86295
EmployeeName                    Barbara L Moss
JobTitle            Protective Services Worker
BasePay                               91120.82
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31794.22
TotalPay                              91120.82
TotalPayBenefits                     122915.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86294, dtype: object)
(86295, Id                                         86296
EmployeeName                    Phillip R Plevin
JobTitle            General Laborer Supervisor 1
BasePay                                 67962.01
OvertimePay                             18504.96
OtherPay                                  7736.7
Benefits                                28699.71
TotalPay                                94203.67
TotalPayBenefits                       122903.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86295, dtype: object)
(86296, Id                                      86297
EmployeeName                   Yoon Jung  Kim
JobTitle            Psychiatric Social Worker
BasePay                               90357.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             32539.09
TotalPay                              90357.0
TotalPayBenefits                    122896.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86296, dtype: object)
(86297, Id                             86298
EmployeeName           Ronna R Brown
JobTitle            Transit Operator
BasePay                     68102.61
OvertimePay                 13927.43
OtherPay                     6282.47
Benefits                    34580.29
TotalPay                    88312.51
TotalPayBenefits            122892.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86297, dtype: object)
(86298, Id                                          86299
EmployeeName                         Mei Yan  Lai
JobTitle            Senior Administrative Analyst
BasePay                                  91087.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31805.21
TotalPay                                 91087.02
TotalPayBenefits                        122892.23
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86298, dtype: object)
(86299, Id                                     86300
EmployeeName                   Jasmine H Lam
JobTitle            Deputy Probation Officer
BasePay                             93300.65
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29591.38
TotalPay                            93300.65
TotalPayBenefits                   122892.03
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86299, dtype: object)
(86300, Id                             86301
EmployeeName        Eduardo A Larios
JobTitle            Transit Operator
BasePay                     69411.85
OvertimePay                 10659.52
OtherPay                      7351.8
Benefits                    35461.64
TotalPay                    87423.17
TotalPayBenefits           122884.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86300, dtype: object)
(86301, Id                                     86302
EmployeeName               Shahnawaz A Malek
JobTitle            Commercial Div Asst Sprv
BasePay                             84172.15
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            38705.54
TotalPay                            84172.15
TotalPayBenefits                   122877.69
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86301, dtype: object)
(86302, Id                            86303
EmployeeName        Michael A Brown
JobTitle             Deputy Sheriff
BasePay                     82999.6
OvertimePay                     0.0
OtherPay                   10168.43
Benefits                   29708.62
TotalPay                   93168.03
TotalPayBenefits          122876.65
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86302, dtype: object)
(86303, Id                          86304
EmployeeName         Sunny K Wong
JobTitle                    Clerk
BasePay                   52677.0
OvertimePay              38874.04
OtherPay                  4606.05
Benefits                  26685.6
TotalPay                 96157.09
TotalPayBenefits        122842.69
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86303, dtype: object)
(86304, Id                              86305
EmployeeName        Teodoro A Briones
JobTitle             Transit Operator
BasePay                       67209.4
OvertimePay                  13494.65
OtherPay                      7628.49
Benefits                      34509.6
TotalPay                     88332.54
TotalPayBenefits            122842.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86304, dtype: object)
(86305, Id                             86306
EmployeeName          Lawrence  Herd
JobTitle            Transit Operator
BasePay                     69191.38
OvertimePay                 10944.19
OtherPay                     7331.25
Benefits                    35371.45
TotalPay                    87466.82
TotalPayBenefits           122838.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86305, dtype: object)
(86306, Id                                     86307
EmployeeName                    Boyd  Henson
JobTitle            General Utility Mechanic
BasePay                             85356.54
OvertimePay                           6817.7
OtherPay                                 0.0
Benefits                            30635.65
TotalPay                            92174.24
TotalPayBenefits                   122809.89
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86306, dtype: object)
(86307, Id                                          86308
EmployeeName                   Michele M Brewster
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                  87163.12
OvertimePay                                   0.0
OtherPay                                  3953.05
Benefits                                 31670.57
TotalPay                                 91116.17
TotalPayBenefits                        122786.74
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86307, dtype: object)
(86308, Id                                          86309
EmployeeName                      Mullane C Ahern
JobTitle            Contract Compliance Officer 1
BasePay                                  90187.51
OvertimePay                                   0.0
OtherPay                                     40.0
Benefits                                 32558.77
TotalPay                                 90227.51
TotalPayBenefits                        122786.28
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86308, dtype: object)
(86309, Id                                86310
EmployeeName        Melson D Mangrobang
JobTitle                 Accountant III
BasePay                        90985.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31783.37
TotalPay                       90985.52
TotalPayBenefits              122768.89
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86309, dtype: object)
(86310, Id                           86311
EmployeeName        Hiu Ching  Wan
JobTitle            Accountant III
BasePay                   90985.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31783.35
TotalPay                  90985.52
TotalPayBenefits         122768.87
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86310, dtype: object)
(86311, Id                                         86312
EmployeeName                   Carlos W Sandoval
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 84096.61
OvertimePay                               257.19
OtherPay                                 6307.27
Benefits                                32101.69
TotalPay                                90661.07
TotalPayBenefits                       122762.76
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86311, dtype: object)
(86312, Id                              86313
EmployeeName        Gregory L Griffin
JobTitle             Transit Operator
BasePay                      67630.02
OvertimePay                  21665.64
OtherPay                       646.86
Benefits                     32815.46
TotalPay                     89942.52
TotalPayBenefits            122757.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86312, dtype: object)
(86313, Id                            86314
EmployeeName        Adam A Burleson
JobTitle             Deputy Sheriff
BasePay                     83736.0
OvertimePay                  2706.6
OtherPay                    5102.61
Benefits                   31207.54
TotalPay                   91545.21
TotalPayBenefits          122752.75
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86313, dtype: object)
(86314, Id                                           86315
EmployeeName                        George S Parks
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                8518.03
OtherPay                                    1200.0
Benefits                                  30351.48
TotalPay                                  92399.53
TotalPayBenefits                         122751.01
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86314, dtype: object)
(86315, Id                                       86316
EmployeeName                       Eric  Donez
JobTitle            Protective Services Worker
BasePay                                89750.3
OvertimePay                                0.0
OtherPay                               1950.72
Benefits                              31047.54
TotalPay                              91701.02
TotalPayBenefits                     122748.56
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86315, dtype: object)
(86316, Id                                      86317
EmployeeName                   Linda D Robino
JobTitle            Licensed Vocational Nurse
BasePay                               73329.4
OvertimePay                          20933.95
OtherPay                                310.0
Benefits                             28169.38
TotalPay                             94573.35
TotalPayBenefits                    122742.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86316, dtype: object)
(86317, Id                                          86318
EmployeeName                        Kelly A Dwyer
JobTitle            Contract Compliance Officer 1
BasePay                                  90950.89
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  31770.9
TotalPay                                 90950.89
TotalPayBenefits                        122721.79
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86317, dtype: object)
(86318, Id                                           86319
EmployeeName                        Collin O Olsen
JobTitle            Public Defender's Investigator
BasePay                                   90963.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31752.02
TotalPay                                  90963.01
TotalPayBenefits                         122715.03
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86318, dtype: object)
(86319, Id                                          86320
EmployeeName                  Gregory M Underwood
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  90963.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31752.02
TotalPay                                 90963.01
TotalPayBenefits                        122715.03
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86319, dtype: object)
(86320, Id                                           86321
EmployeeName                       Debora D Warren
JobTitle            Public Defender's Investigator
BasePay                                    90963.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31752.02
TotalPay                                   90963.0
TotalPayBenefits                         122715.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86320, dtype: object)
(86321, Id                                           86322
EmployeeName                       Gregory J Jowdy
JobTitle            Public Defender's Investigator
BasePay                                    90963.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31752.02
TotalPay                                   90963.0
TotalPayBenefits                         122715.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86321, dtype: object)
(86322, Id                                           86323
EmployeeName                     Jackson M Holland
JobTitle            Public Defender's Investigator
BasePay                                    90963.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31752.02
TotalPay                                   90963.0
TotalPayBenefits                         122715.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86322, dtype: object)
(86323, Id                                           86324
EmployeeName                Kristopher W MacFerren
JobTitle            Med Examiner's Investigator II
BasePay                                   75018.25
OvertimePay                               18706.93
OtherPay                                    660.81
Benefits                                  28328.59
TotalPay                                  94385.99
TotalPayBenefits                         122714.58
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86323, dtype: object)
(86324, Id                             86325
EmployeeName         Brian D Sickles
JobTitle            Transit Operator
BasePay                     68174.37
OvertimePay                  13192.6
OtherPay                     5984.96
Benefits                    35361.47
TotalPay                    87351.93
TotalPayBenefits            122713.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86324, dtype: object)
(86325, Id                            86326
EmployeeName        Melissa G Gooch
JobTitle                Librarian 2
BasePay                    89050.68
OvertimePay                     0.0
OtherPay                    1145.05
Benefits                   32517.29
TotalPay                   90195.73
TotalPayBenefits          122713.02
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86325, dtype: object)
(86326, Id                                       86327
EmployeeName                    Robert W Davis
JobTitle            Protective Services Worker
BasePay                               91437.55
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31259.24
TotalPay                              91437.55
TotalPayBenefits                     122696.79
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86326, dtype: object)
(86327, Id                             86328
EmployeeName         Myrna D Bennett
JobTitle            Registered Nurse
BasePay                     70252.47
OvertimePay                  2769.38
OtherPay                    27337.76
Benefits                    22330.65
TotalPay                   100359.61
TotalPayBenefits           122690.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86327, dtype: object)
(86328, Id                             86329
EmployeeName          Gregory  Labat
JobTitle            Transit Operator
BasePay                      67433.7
OvertimePay                 22305.43
OtherPay                       316.3
Benefits                    32634.61
TotalPay                    90055.43
TotalPayBenefits           122690.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86328, dtype: object)
(86329, Id                           86330
EmployeeName        Jerome D Price
JobTitle              Truck Driver
BasePay                    80052.0
OvertimePay               10692.25
OtherPay                    1990.0
Benefits                  29945.22
TotalPay                  92734.25
TotalPayBenefits         122679.47
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86329, dtype: object)
(86330, Id                             86331
EmployeeName           Jackson K Lau
JobTitle            Transit Operator
BasePay                     67169.79
OvertimePay                 18451.54
OtherPay                     3667.58
Benefits                    33379.42
TotalPay                    89288.91
TotalPayBenefits           122668.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86330, dtype: object)
(86331, Id                                      86332
EmployeeName                   Clifton  Hicks
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                               228.48
Benefits                             31743.02
TotalPay                              90921.5
TotalPayBenefits                    122664.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86331, dtype: object)
(86332, Id                                     86333
EmployeeName               Aaron C Dickerson
JobTitle            General Utility Mechanic
BasePay                              85356.5
OvertimePay                          6687.73
OtherPay                                 0.0
Benefits                            30619.99
TotalPay                            92044.23
TotalPayBenefits                   122664.22
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86332, dtype: object)
(86333, Id                                      86334
EmployeeName                Catharine  Barnes
JobTitle            Attorney (Civil/Criminal)
BasePay                               73018.0
OvertimePay                               0.0
OtherPay                              30495.5
Benefits                             19150.58
TotalPay                             103513.5
TotalPayBenefits                    122664.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86333, dtype: object)
(86334, Id                                      86335
EmployeeName                   James  Keating
JobTitle            Automotive Service Worker
BasePay                              63985.61
OvertimePay                          18496.49
OtherPay                             11628.32
Benefits                             28553.65
TotalPay                             94110.42
TotalPayBenefits                    122664.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86334, dtype: object)
(86335, Id                             86336
EmployeeName        Melinda K Hespen
JobTitle                   Asst Engr
BasePay                      86819.2
OvertimePay                      0.0
OtherPay                     3300.24
Benefits                    32525.99
TotalPay                    90119.44
TotalPayBenefits           122645.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86335, dtype: object)
(86336, Id                                  86337
EmployeeName              Mark S Hamilton
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                            250.0
Benefits                         31698.04
TotalPay                         90943.01
TotalPayBenefits                122641.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86336, dtype: object)
(86337, Id                              86338
EmployeeName        Timothy P Purcell
JobTitle            Stage Electrician
BasePay                      90742.02
OvertimePay                       0.0
OtherPay                        150.0
Benefits                     31746.11
TotalPay                     90892.02
TotalPayBenefits            122638.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86337, dtype: object)
(86338, Id                                   86339
EmployeeName        Angel  Cruces Martinez
JobTitle            Airport Safety Officer
BasePay                            80268.0
OvertimePay                         6910.7
OtherPay                           4099.54
Benefits                          31356.34
TotalPay                          91278.24
TotalPayBenefits                 122634.58
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86338, dtype: object)
(86339, Id                                          86340
EmployeeName                      Richard Y Xiong
JobTitle            Senior Administrative Analyst
BasePay                                  90117.44
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32510.32
TotalPay                                 90117.44
TotalPayBenefits                        122627.76
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86339, dtype: object)
(86340, Id                                          86341
EmployeeName                         Fan-Wa  Wong
JobTitle            Senior Administrative Analyst
BasePay                                   90117.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32510.31
TotalPay                                  90117.4
TotalPayBenefits                        122627.71
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86340, dtype: object)
(86341, Id                          86342
EmployeeName         Nelson K Lee
JobTitle                Carpenter
BasePay                   84764.5
OvertimePay               7004.29
OtherPay                    272.0
Benefits                 30570.67
TotalPay                 92040.79
TotalPayBenefits        122611.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86341, dtype: object)
(86342, Id                             86343
EmployeeName            Kenneth W Ho
JobTitle            Transit Operator
BasePay                     68461.03
OvertimePay                 17891.96
OtherPay                     1861.64
Benefits                    34389.67
TotalPay                    88214.63
TotalPayBenefits            122604.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86342, dtype: object)
(86343, Id                                   86344
EmployeeName            Alexander  Ledeanu
JobTitle            Admin Hearing Examiner
BasePay                           91228.91
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31373.97
TotalPay                          91228.91
TotalPayBenefits                 122602.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86343, dtype: object)
(86344, Id                             86345
EmployeeName        Michael R Graham
JobTitle              Police Officer
BasePay                     92259.08
OvertimePay                  5028.75
OtherPay                     4886.59
Benefits                    20422.07
TotalPay                   102174.42
TotalPayBenefits           122596.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86344, dtype: object)
(86345, Id                                      86346
EmployeeName                  Mary K Senchyna
JobTitle            Psychiatric Social Worker
BasePay                              90268.16
OvertimePay                               0.0
OtherPay                               644.98
Benefits                             31681.42
TotalPay                             90913.14
TotalPayBenefits                    122594.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86345, dtype: object)
(86346, Id                                      86347
EmployeeName                      Yen B Hoang
JobTitle            Diagnostic Imaging Tech I
BasePay                              82734.01
OvertimePay                           3975.77
OtherPay                              4411.39
Benefits                             31469.94
TotalPay                             91121.17
TotalPayBenefits                    122591.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86346, dtype: object)
(86347, Id                                        86348
EmployeeName                    Jessica L Perez
JobTitle            Landscape Architect Assoc 1
BasePay                                92656.41
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                                29931.9
TotalPay                               92656.41
TotalPayBenefits                      122588.31
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86347, dtype: object)
(86348, Id                             86349
EmployeeName         Muwafaq  Sheikh
JobTitle            Transit Operator
BasePay                      65662.2
OvertimePay                 19483.02
OtherPay                     4503.59
Benefits                    32931.17
TotalPay                    89648.81
TotalPayBenefits           122579.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86348, dtype: object)
(86349, Id                               86350
EmployeeName            Patricia  Gray
JobTitle            Physical Therapist
BasePay                       92574.01
OvertimePay                        0.0
OtherPay                         400.0
Benefits                      29604.49
TotalPay                      92974.01
TotalPayBenefits              122578.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86349, dtype: object)
(86350, Id                                      86351
EmployeeName               Beatrice M Holland
JobTitle            Parking Enforcement Admin
BasePay                              84442.49
OvertimePay                           3961.67
OtherPay                              4754.65
Benefits                             29418.47
TotalPay                             93158.81
TotalPayBenefits                    122577.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86350, dtype: object)
(86351, Id                              86352
EmployeeName            Matthew C Lee
JobTitle            Transit Planner 2
BasePay                      89584.01
OvertimePay                       0.0
OtherPay                       1204.0
Benefits                     31788.07
TotalPay                     90788.01
TotalPayBenefits            122576.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86351, dtype: object)
(86352, Id                            86353
EmployeeName        Manfred A Antar
JobTitle                  Carpenter
BasePay                    89001.56
OvertimePay                  248.48
OtherPay                     1661.4
Benefits                   31662.52
TotalPay                   90911.44
TotalPayBenefits          122573.96
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86352, dtype: object)
(86353, Id                                86354
EmployeeName            Miriam L Sorell
JobTitle            Transit Planner III
BasePay                        90068.72
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       32502.01
TotalPay                       90068.72
TotalPayBenefits              122570.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86353, dtype: object)
(86354, Id                                86355
EmployeeName        Grahm G Satterwhite
JobTitle            Transit Planner III
BasePay                         90068.7
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        32502.0
TotalPay                        90068.7
TotalPayBenefits               122570.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86354, dtype: object)
(86355, Id                             86356
EmployeeName        Francis N Zamora
JobTitle                   Manager I
BasePay                     95388.48
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    27180.18
TotalPay                    95388.48
TotalPayBenefits           122568.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86355, dtype: object)
(86356, Id                                      86357
EmployeeName                     Louis W Hupp
JobTitle            Child Support Officer III
BasePay                              90693.01
OvertimePay                               0.0
OtherPay                               144.01
Benefits                             31728.76
TotalPay                             90837.02
TotalPayBenefits                    122565.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86356, dtype: object)
(86357, Id                                       86358
EmployeeName                    Melvin M Smith
JobTitle            Counselor, Log Cabin Ranch
BasePay                               72517.45
OvertimePay                           19412.79
OtherPay                                2176.6
Benefits                              28448.66
TotalPay                              94106.84
TotalPayBenefits                      122555.5
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86357, dtype: object)
(86358, Id                               86359
EmployeeName            Laura  Salcido
JobTitle            Nurse Practitioner
BasePay                        88920.3
OvertimePay                        0.0
OtherPay                       7065.94
Benefits                      26559.25
TotalPay                      95986.24
TotalPayBenefits             122545.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86358, dtype: object)
(86359, Id                          86360
EmployeeName            Minh D Vu
JobTitle                Planner 3
BasePay                  90015.06
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32526.23
TotalPay                 90015.06
TotalPayBenefits        122541.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86359, dtype: object)
(86360, Id                                           86361
EmployeeName                            Pein K Kyi
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                 8834.1
OtherPay                                     760.0
Benefits                                  30262.08
TotalPay                                   92275.6
TotalPayBenefits                         122537.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86360, dtype: object)
(86361, Id                               86362
EmployeeName            David L Powell
JobTitle            Sheet Metal Worker
BasePay                       89897.83
OvertimePay                     486.21
OtherPay                         500.0
Benefits                      31650.78
TotalPay                      90884.04
TotalPayBenefits             122534.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86361, dtype: object)
(86362, Id                             86363
EmployeeName         Arthur  Azucena
JobTitle            Transit Operator
BasePay                     69748.16
OvertimePay                 12543.96
OtherPay                     5163.15
Benefits                    35077.84
TotalPay                    87455.27
TotalPayBenefits           122533.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86362, dtype: object)
(86363, Id                                           86364
EmployeeName                            Kenny  Lee
JobTitle            Electrical Transit System Mech
BasePay                                    80037.1
OvertimePay                                6719.65
OtherPay                                   5599.37
Benefits                                  30172.97
TotalPay                                  92356.12
TotalPayBenefits                         122529.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86363, dtype: object)
(86364, Id                                          86365
EmployeeName                    Angelita M McCall
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               8868.68
OtherPay                                    240.0
Benefits                                 30240.61
TotalPay                                 92268.68
TotalPayBenefits                        122509.29
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86364, dtype: object)
(86365, Id                                 86366
EmployeeName             Ronald D Curley
JobTitle            Automotive Machinist
BasePay                         76730.53
OvertimePay                     10861.06
OtherPay                         5531.98
Benefits                         29384.1
TotalPay                        93123.57
TotalPayBenefits               122507.67
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86365, dtype: object)
(86366, Id                             86367
EmployeeName           Lisa C Walker
JobTitle            Transit Operator
BasePay                      66653.8
OvertimePay                 21034.85
OtherPay                     2066.21
Benefits                    32739.57
TotalPay                    89754.86
TotalPayBenefits           122494.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86366, dtype: object)
(86367, Id                              86368
EmployeeName        Photi  Christofas
JobTitle                    Asst Engr
BasePay                       89968.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     32522.32
TotalPay                      89968.5
TotalPayBenefits            122490.82
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86367, dtype: object)
(86368, Id                             86369
EmployeeName          Jason  Calacal
JobTitle            Transit Operator
BasePay                     67971.61
OvertimePay                 12168.65
OtherPay                     7497.06
Benefits                    34847.23
TotalPay                    87637.32
TotalPayBenefits           122484.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86368, dtype: object)
(86369, Id                                     86370
EmployeeName                  Maurice  Ellis
JobTitle            Counselor, Juvenile Hall
BasePay                             67535.59
OvertimePay                         26747.63
OtherPay                             1581.34
Benefits                            26619.71
TotalPay                            95864.56
TotalPayBenefits                   122484.27
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86369, dtype: object)
(86370, Id                                  86371
EmployeeName              Hillary A Ronen
JobTitle            Legislative Assistant
BasePay                           90796.4
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          31687.7
TotalPay                          90796.4
TotalPayBenefits                 122484.1
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86370, dtype: object)
(86371, Id                                   86372
EmployeeName             Bernardo A Magana
JobTitle            Airport Safety Officer
BasePay                            80268.0
OvertimePay                       10823.03
OtherPay                            704.85
Benefits                          30676.89
TotalPay                          91795.88
TotalPayBenefits                 122472.77
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86371, dtype: object)
(86372, Id                                      86373
EmployeeName                 Margaret  Hering
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                                47.02
Benefits                             31706.62
TotalPay                             90740.05
TotalPayBenefits                    122446.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86372, dtype: object)
(86373, Id                             86374
EmployeeName         Danilo  De Leon
JobTitle            Transit Operator
BasePay                     66753.55
OvertimePay                 20777.72
OtherPay                     2108.44
Benefits                    32804.62
TotalPay                    89639.71
TotalPayBenefits           122444.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86373, dtype: object)
(86374, Id                                      86375
EmployeeName                        Fay P Lee
JobTitle            Public Health Team Leader
BasePay                               77436.0
OvertimePay                            5982.3
OtherPay                              8353.08
Benefits                             30669.07
TotalPay                             91771.38
TotalPayBenefits                    122440.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86374, dtype: object)
(86375, Id                             86376
EmployeeName        Alvaro A Abaunza
JobTitle              Police Officer
BasePay                     86135.04
OvertimePay                  2986.83
OtherPay                     1864.39
Benefits                     31443.1
TotalPay                    90986.26
TotalPayBenefits           122429.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86375, dtype: object)
(86376, Id                               86377
EmployeeName        Tommy K Strickland
JobTitle              Transit Operator
BasePay                       68163.43
OvertimePay                   16867.95
OtherPay                       3593.66
Benefits                      33802.02
TotalPay                      88625.04
TotalPayBenefits             122427.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86376, dtype: object)
(86377, Id                                   86378
EmployeeName               Liliana  Vargas
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       23971.11
OtherPay                            2418.0
Benefits                          27639.91
TotalPay                          94780.11
TotalPayBenefits                 122420.02
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86377, dtype: object)
(86378, Id                                      86379
EmployeeName                 Checil A Salvosa
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                          12500.41
OtherPay                              6765.14
Benefits                             29547.33
TotalPay                             92867.56
TotalPayBenefits                    122414.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86378, dtype: object)
(86379, Id                                      86380
EmployeeName                Emmanuel  Vallero
JobTitle            Automotive Service Worker
BasePay                              64312.21
OvertimePay                          18127.51
OtherPay                             11348.79
Benefits                             28623.02
TotalPay                             93788.51
TotalPayBenefits                    122411.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86379, dtype: object)
(86380, Id                                          86381
EmployeeName                          Regina H Du
JobTitle            Contract Compliance Officer 1
BasePay                                  89911.91
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32494.66
TotalPay                                 89911.91
TotalPayBenefits                        122406.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86380, dtype: object)
(86381, Id                                          86382
EmployeeName                    Jeffrey J Lintner
JobTitle            Employee Assistance Counselor
BasePay                                  90693.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31712.08
TotalPay                                 90693.03
TotalPayBenefits                        122405.11
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86381, dtype: object)
(86382, Id                                86383
EmployeeName            Fabian B Tambot
JobTitle            Stationary Engineer
BasePay                        78496.04
OvertimePay                      4656.6
OtherPay                        8350.21
Benefits                       30900.24
TotalPay                       91502.85
TotalPayBenefits              122403.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86382, dtype: object)
(86383, Id                                           86384
EmployeeName                        Gary W Johnson
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.09
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.09
TotalPay                                  90693.09
TotalPayBenefits                         122391.18
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86383, dtype: object)
(86384, Id                                  86385
EmployeeName        Christine M Geoghegan
JobTitle            Medical Social Worker
BasePay                          90693.07
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.09
TotalPay                         90693.07
TotalPayBenefits                122391.16
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86384, dtype: object)
(86385, Id                                  86386
EmployeeName              Michael E Moore
JobTitle            Medical Social Worker
BasePay                          90693.05
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.08
TotalPay                         90693.05
TotalPayBenefits                122391.13
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86385, dtype: object)
(86386, Id                                  86387
EmployeeName            Alice T Slaughter
JobTitle            Medical Social Worker
BasePay                          90693.05
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.07
TotalPay                         90693.05
TotalPayBenefits                122391.12
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86386, dtype: object)
(86387, Id                                      86388
EmployeeName                Maureen G Edwards
JobTitle            Psychiatric Social Worker
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.07
TotalPay                             90693.04
TotalPayBenefits                    122391.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86387, dtype: object)
(86388, Id                                      86389
EmployeeName               Stephanie M Martin
JobTitle            Child Support Officer III
BasePay                              90693.04
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.06
TotalPay                             90693.04
TotalPayBenefits                     122391.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86388, dtype: object)
(86389, Id                                           86390
EmployeeName                        Janice E Avery
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.07
TotalPay                                  90693.03
TotalPayBenefits                          122391.1
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86389, dtype: object)
(86390, Id                                  86391
EmployeeName              Sholey A Malawa
JobTitle            Medical Social Worker
BasePay                          90693.03
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.06
TotalPay                         90693.03
TotalPayBenefits                122391.09
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86390, dtype: object)
(86391, Id                                      86392
EmployeeName                Christine L Odena
JobTitle            Psychiatric Social Worker
BasePay                              90693.03
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.05
TotalPay                             90693.03
TotalPayBenefits                    122391.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86391, dtype: object)
(86392, Id                                           86393
EmployeeName                      Roselyn D Womack
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.06
TotalPay                                  90693.02
TotalPayBenefits                         122391.08
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86392, dtype: object)
(86393, Id                                  86394
EmployeeName              Suzanne L Hufft
JobTitle            Medical Social Worker
BasePay                          90693.02
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.05
TotalPay                         90693.02
TotalPayBenefits                122391.07
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86393, dtype: object)
(86394, Id                                      86395
EmployeeName                   Maria  Morelli
JobTitle            Psychiatric Social Worker
BasePay                              90693.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.05
TotalPay                             90693.02
TotalPayBenefits                    122391.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86394, dtype: object)
(86395, Id                                           86396
EmployeeName                           Korey  Wong
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.04
TotalPay                                  90693.03
TotalPayBenefits                         122391.07
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86395, dtype: object)
(86396, Id                                           86397
EmployeeName                      Perrie S Ancheta
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.05
TotalPay                                  90693.01
TotalPayBenefits                         122391.06
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86396, dtype: object)
(86397, Id                                      86398
EmployeeName                     Fiona C Glas
JobTitle            Psychiatric Social Worker
BasePay                              90693.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.05
TotalPay                             90693.01
TotalPayBenefits                    122391.06
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86397, dtype: object)
(86398, Id                                           86399
EmployeeName                        Leah  Esguerra
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.02
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.04
TotalPay                                  90693.02
TotalPayBenefits                         122391.06
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86398, dtype: object)
(86399, Id                                  86400
EmployeeName         Pathima  Nathan-Funk
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.05
TotalPay                         90693.01
TotalPayBenefits                122391.06
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86399, dtype: object)
(86400, Id                                           86401
EmployeeName                     Margaret R Colfer
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90693.01
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.05
TotalPay                                  90693.01
TotalPayBenefits                         122391.06
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86400, dtype: object)
(86401, Id                                  86402
EmployeeName         Katherine L Luttrell
JobTitle            Medical Social Worker
BasePay                          90693.01
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.04
TotalPay                         90693.01
TotalPayBenefits                122391.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86401, dtype: object)
(86402, Id                                      86403
EmployeeName                Stefanie L Breedy
JobTitle            Psychiatric Social Worker
BasePay                              90692.99
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.06
TotalPay                             90692.99
TotalPayBenefits                    122391.05
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86402, dtype: object)
(86403, Id                                           86404
EmployeeName                      Jeralyn M Pribyl
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.04
TotalPay                                   90693.0
TotalPayBenefits                         122391.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86403, dtype: object)
(86404, Id                                  86405
EmployeeName               Jenee'  Bryant
JobTitle            Medical Social Worker
BasePay                           90693.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.04
TotalPay                          90693.0
TotalPayBenefits                122391.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86404, dtype: object)
(86405, Id                                      86406
EmployeeName                 Carla Y Richmond
JobTitle            Psychiatric Social Worker
BasePay                               90693.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.04
TotalPay                              90693.0
TotalPayBenefits                    122391.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86405, dtype: object)
(86406, Id                                  86407
EmployeeName                John M Bailey
JobTitle            Medical Social Worker
BasePay                           90693.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31698.04
TotalPay                          90693.0
TotalPayBenefits                122391.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86406, dtype: object)
(86407, Id                                           86408
EmployeeName                       Brenda L Meskan
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.04
TotalPay                                   90693.0
TotalPayBenefits                         122391.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86407, dtype: object)
(86408, Id                                      86409
EmployeeName               Russell C Bratburd
JobTitle            Child Support Officer III
BasePay                               90693.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31698.04
TotalPay                              90693.0
TotalPayBenefits                    122391.04
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86408, dtype: object)
(86409, Id                                           86410
EmployeeName                       Janel I Holland
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    90693.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31698.04
TotalPay                                   90693.0
TotalPayBenefits                         122391.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86409, dtype: object)
(86410, Id                              86411
EmployeeName        Primo O Rivera Jr
JobTitle             Transit Operator
BasePay                      67430.78
OvertimePay                  19853.72
OtherPay                      2008.76
Benefits                     33090.12
TotalPay                     89293.26
TotalPayBenefits            122383.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86410, dtype: object)
(86411, Id                                          86412
EmployeeName                      Natalie B Fuchs
JobTitle            Research Asst, Superior Court
BasePay                                   85095.5
OvertimePay                                   0.0
OtherPay                                  5606.99
Benefits                                  31670.6
TotalPay                                 90702.49
TotalPayBenefits                        122373.09
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86411, dtype: object)
(86412, Id                              86413
EmployeeName        Armando E Sanchez
JobTitle               Deputy Sheriff
BasePay                       86570.5
OvertimePay                   3320.81
OtherPay                      1088.99
Benefits                     31384.15
TotalPay                      90980.3
TotalPayBenefits            122364.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86412, dtype: object)
(86413, Id                                   86414
EmployeeName        Maximilian E Contreras
JobTitle                  Transit Operator
BasePay                           66859.56
OvertimePay                       20433.51
OtherPay                            2220.1
Benefits                           32843.1
TotalPay                          89513.17
TotalPayBenefits                 122356.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86413, dtype: object)
(86414, Id                            86415
EmployeeName        Gerald R Finale
JobTitle               Truck Driver
BasePay                     78538.4
OvertimePay                12713.57
OtherPay                     1755.5
Benefits                   29338.48
TotalPay                   93007.47
TotalPayBenefits          122345.95
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86414, dtype: object)
(86415, Id                                          86416
EmployeeName                          Mark  Bliss
JobTitle            Airport Property Specialist 1
BasePay                                  91282.49
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31057.93
TotalPay                                 91282.49
TotalPayBenefits                        122340.42
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86415, dtype: object)
(86416, Id                                         86417
EmployeeName                     Benita M Chiang
JobTitle            Sr Personal Property Auditor
BasePay                                 90112.52
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                31747.06
TotalPay                                90592.52
TotalPayBenefits                       122339.58
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86416, dtype: object)
(86417, Id                                         86418
EmployeeName                         David C Lew
JobTitle            Sr Personal Property Auditor
BasePay                                 90112.51
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                31747.05
TotalPay                                90592.51
TotalPayBenefits                       122339.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86417, dtype: object)
(86418, Id                                           86419
EmployeeName                     Valerie M Holybee
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90651.09
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31688.07
TotalPay                                  90651.09
TotalPayBenefits                         122339.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86418, dtype: object)
(86419, Id                          86420
EmployeeName         Alex  Zuniga
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               2103.31
OtherPay                  8849.39
Benefits                 31312.44
TotalPay                  91004.7
TotalPayBenefits        122317.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86419, dtype: object)
(86420, Id                                     86421
EmployeeName                George D Vaughan
JobTitle            Chief Nursery Specialist
BasePay                             86623.52
OvertimePay                           4799.4
OtherPay                                 0.0
Benefits                            30889.84
TotalPay                            91422.92
TotalPayBenefits                   122312.76
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86420, dtype: object)
(86421, Id                                           86422
EmployeeName                   Michelle a Kanemoto
JobTitle            Environmental Health Inspector
BasePay                                    88734.1
OvertimePay                                    0.0
OtherPay                                    1125.0
Benefits                                  32448.91
TotalPay                                   89859.1
TotalPayBenefits                         122308.01
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86421, dtype: object)
(86422, Id                             86423
EmployeeName              Hao  Huang
JobTitle            Transit Operator
BasePay                     68237.87
OvertimePay                  20434.7
OtherPay                      575.38
Benefits                    33058.24
TotalPay                    89247.95
TotalPayBenefits           122306.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86422, dtype: object)
(86423, Id                           86424
EmployeeName            Pui M Yuen
JobTitle            Accountant III
BasePay                   90584.75
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31714.46
TotalPay                  90584.75
TotalPayBenefits         122299.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86423, dtype: object)
(86424, Id                          86425
EmployeeName          Yingdan  Li
JobTitle            Accountant IV
BasePay                  90538.11
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  31760.2
TotalPay                 90538.11
TotalPayBenefits        122298.31
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86424, dtype: object)
(86425, Id                             86426
EmployeeName        Suzanne M Malone
JobTitle                Nutritionist
BasePay                      89540.7
OvertimePay                      0.0
OtherPay                      1340.0
Benefits                    31415.99
TotalPay                     90880.7
TotalPayBenefits           122296.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86425, dtype: object)
(86426, Id                              86427
EmployeeName        Reginald  Spencer
JobTitle             Transit Operator
BasePay                      67825.09
OvertimePay                  15512.09
OtherPay                      4101.22
Benefits                     34857.67
TotalPay                      87438.4
TotalPayBenefits            122296.07
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86426, dtype: object)
(86427, Id                          86428
EmployeeName        John  Bradley
JobTitle                Locksmith
BasePay                  84764.51
OvertimePay               7005.17
OtherPay                     7.89
Benefits                 30518.35
TotalPay                 91777.57
TotalPayBenefits        122295.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86427, dtype: object)
(86428, Id                                           86429
EmployeeName                          Burt  Kirson
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90621.62
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31672.17
TotalPay                                  90621.62
TotalPayBenefits                         122293.79
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86428, dtype: object)
(86429, Id                          86430
EmployeeName         John M Foote
JobTitle                  Painter
BasePay                   77948.0
OvertimePay              14315.29
OtherPay                    728.0
Benefits                 29299.27
TotalPay                 92991.29
TotalPayBenefits        122290.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86429, dtype: object)
(86430, Id                                   86431
EmployeeName              Socorro  Currier
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       18684.55
OtherPay                           6698.57
Benefits                          28498.14
TotalPay                          93774.12
TotalPayBenefits                 122272.26
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86430, dtype: object)
(86431, Id                             86432
EmployeeName             Joseph  Sue
JobTitle            Transit Operator
BasePay                     67157.73
OvertimePay                 13546.23
OtherPay                     7200.35
Benefits                    34367.02
TotalPay                    87904.31
TotalPayBenefits           122271.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86431, dtype: object)
(86432, Id                             86433
EmployeeName           Chun Wan  Tam
JobTitle            Transit Operator
BasePay                     68203.87
OvertimePay                 19614.06
OtherPay                      535.41
Benefits                    33916.81
TotalPay                    88353.34
TotalPayBenefits           122270.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86432, dtype: object)
(86433, Id                               86434
EmployeeName        Larry P Marcaletti
JobTitle                  Truck Driver
BasePay                       80052.01
OvertimePay                    8226.86
OtherPay                       3685.87
Benefits                      30295.33
TotalPay                      91964.74
TotalPayBenefits             122260.07
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86433, dtype: object)
(86434, Id                                  86435
EmployeeName               Brian E Thomas
JobTitle            Emp & Training Spec 4
BasePay                          89829.02
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         32423.45
TotalPay                         89829.02
TotalPayBenefits                122252.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86434, dtype: object)
(86435, Id                                        86436
EmployeeName                      Jacob A DuMez
JobTitle            Senior Management Assistant
BasePay                                89829.01
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               32423.45
TotalPay                               89829.01
TotalPayBenefits                      122252.46
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86435, dtype: object)
(86436, Id                          86437
EmployeeName        Kin Man  Hung
JobTitle                Carpenter
BasePay                   84764.5
OvertimePay               5661.61
OtherPay                   1090.0
Benefits                 30715.18
TotalPay                 91516.11
TotalPayBenefits        122231.29
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86436, dtype: object)
(86437, Id                                86438
EmployeeName               Ilya  Berman
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                     7034.47
OtherPay                        6238.37
Benefits                       30483.82
TotalPay                       91746.35
TotalPayBenefits              122230.17
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86437, dtype: object)
(86438, Id                                      86439
EmployeeName                 Sandra  Teixeira
JobTitle            Psychiatric Social Worker
BasePay                              90567.12
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31657.65
TotalPay                             90567.12
TotalPayBenefits                    122224.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86438, dtype: object)
(86439, Id                             86440
EmployeeName          Guo Qing  Peng
JobTitle            Transit Operator
BasePay                     68565.83
OvertimePay                 17933.72
OtherPay                     2076.51
Benefits                    33644.01
TotalPay                    88576.06
TotalPayBenefits           122220.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86439, dtype: object)
(86440, Id                              86441
EmployeeName        Michael T OConnor
JobTitle                    Carpenter
BasePay                      84762.21
OvertimePay                   4352.57
OtherPay                       2160.0
Benefits                     30942.16
TotalPay                     91274.78
TotalPayBenefits            122216.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86440, dtype: object)
(86441, Id                               86442
EmployeeName        Laurence M Mendoza
JobTitle              Deputy Sheriff 1
BasePay                        66104.4
OvertimePay                   26314.18
OtherPay                       2019.03
Benefits                      27753.12
TotalPay                      94437.61
TotalPayBenefits             122190.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86441, dtype: object)
(86442, Id                              86443
EmployeeName           Cruz A Umanzor
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  18351.94
OtherPay                      6916.76
Benefits                     28525.28
TotalPay                      93659.7
TotalPayBenefits            122184.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86442, dtype: object)
(86443, Id                                    86444
EmployeeName             David W Devincenzi
JobTitle            Senior Street Inspector
BasePay                            90499.01
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31679.83
TotalPay                           90499.01
TotalPayBenefits                  122178.84
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86443, dtype: object)
(86444, Id                                   86445
EmployeeName              Calla  Ostrander
JobTitle            Sr. Environmental Spec
BasePay                           90943.53
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31233.19
TotalPay                          90943.53
TotalPayBenefits                 122176.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86444, dtype: object)
(86445, Id                                   86446
EmployeeName             Friday O Apaliski
JobTitle            Sr. Environmental Spec
BasePay                           89731.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32441.82
TotalPay                          89731.05
TotalPayBenefits                 122172.87
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86445, dtype: object)
(86446, Id                             86447
EmployeeName        Kimberly C Chang
JobTitle                   Asst Engr
BasePay                     89739.87
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32432.72
TotalPay                    89739.87
TotalPayBenefits           122172.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86446, dtype: object)
(86447, Id                                   86448
EmployeeName              Martinie  Martin
JobTitle            Construction Inspector
BasePay                            91355.1
OvertimePay                        9440.28
OtherPay                             480.0
Benefits                           20892.5
TotalPay                         101275.38
TotalPayBenefits                 122167.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86447, dtype: object)
(86448, Id                           86449
EmployeeName        Erik O Kessler
JobTitle              Truck Driver
BasePay                   80048.36
OvertimePay                 857.68
OtherPay                   9025.92
Benefits                  32232.61
TotalPay                  89931.96
TotalPayBenefits         122164.57
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86448, dtype: object)
(86449, Id                                  86450
EmployeeName                  Saul A Lima
JobTitle            Maintenance Machinist
BasePay                           82373.5
OvertimePay                       8227.44
OtherPay                            550.0
Benefits                         31013.37
TotalPay                         91150.94
TotalPayBenefits                122164.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86449, dtype: object)
(86450, Id                             86451
EmployeeName        John W Barberini
JobTitle                   Carpenter
BasePay                      84764.5
OvertimePay                  5376.16
OtherPay                      1258.5
Benefits                     30763.3
TotalPay                    91399.16
TotalPayBenefits           122162.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86450, dtype: object)
(86451, Id                             86452
EmployeeName           Wilson  Chung
JobTitle            Transit Operator
BasePay                     69658.98
OvertimePay                 11274.66
OtherPay                     5984.74
Benefits                    35242.75
TotalPay                    86918.38
TotalPayBenefits           122161.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86451, dtype: object)
(86452, Id                                           86453
EmployeeName                     Randall J Coleman
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                2038.78
OtherPay                                   6091.56
Benefits                                   31346.4
TotalPay                                  90811.84
TotalPayBenefits                         122158.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86452, dtype: object)
(86453, Id                                           86454
EmployeeName                      Julian L Philipp
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   90507.45
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                   31630.8
TotalPay                                  90507.45
TotalPayBenefits                         122138.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86453, dtype: object)
(86454, Id                                      86455
EmployeeName                    Amy S Goldman
JobTitle            Psychiatric Social Worker
BasePay                              90502.92
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31634.79
TotalPay                             90502.92
TotalPayBenefits                    122137.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86454, dtype: object)
(86455, Id                             86456
EmployeeName         Charles L White
JobTitle            Transit Operator
BasePay                     68875.92
OvertimePay                 15143.17
OtherPay                     3163.99
Benefits                    34948.55
TotalPay                    87183.08
TotalPayBenefits           122131.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86455, dtype: object)
(86456, Id                                  86457
EmployeeName                Helene  Cohen
JobTitle            Emp & Training Spec 4
BasePay                          89829.06
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31652.44
TotalPay                         90477.06
TotalPayBenefits                 122129.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86456, dtype: object)
(86457, Id                                  86458
EmployeeName                Craig M Leary
JobTitle            Emp & Training Spec 4
BasePay                          89829.06
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31652.43
TotalPay                         90477.06
TotalPayBenefits                122129.49
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86457, dtype: object)
(86458, Id                                  86459
EmployeeName           Crystal M DeFrantz
JobTitle            Emp & Training Spec 4
BasePay                          89829.03
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31652.41
TotalPay                         90477.03
TotalPayBenefits                122129.44
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86458, dtype: object)
(86459, Id                                  86460
EmployeeName          Dana  Colston-Lintz
JobTitle            Emp & Training Spec 4
BasePay                          89829.02
OvertimePay                           0.0
OtherPay                            648.0
Benefits                          31652.4
TotalPay                         90477.02
TotalPayBenefits                122129.42
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86459, dtype: object)
(86460, Id                                        86461
EmployeeName                  Loreta P Radetich
JobTitle            Senior Management Assistant
BasePay                                89829.04
OvertimePay                                 0.0
OtherPay                                  645.6
Benefits                               31651.96
TotalPay                               90474.64
TotalPayBenefits                       122126.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86460, dtype: object)
(86461, Id                                  86462
EmployeeName              Maria E Guillen
JobTitle            Specialist in Aging 2
BasePay                           89829.1
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         31647.22
TotalPay                          90477.1
TotalPayBenefits                122124.32
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86461, dtype: object)
(86462, Id                                  86463
EmployeeName                Sarah L Davis
JobTitle            Medical Social Worker
BasePay                          90488.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31629.29
TotalPay                         90488.54
TotalPayBenefits                122117.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86462, dtype: object)
(86463, Id                             86464
EmployeeName            Aaron T Dunn
JobTitle            Transit Operator
BasePay                     68552.52
OvertimePay                 17182.65
OtherPay                     2598.21
Benefits                    33783.37
TotalPay                    88333.38
TotalPayBenefits           122116.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86463, dtype: object)
(86464, Id                                     86465
EmployeeName                Barbara L Gainer
JobTitle            Deputy Probation Officer
BasePay                             91918.56
OvertimePay                          1070.72
OtherPay                                 0.0
Benefits                            29115.27
TotalPay                            92989.28
TotalPayBenefits                   122104.55
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86464, dtype: object)
(86465, Id                                          86466
EmployeeName                           Ching  Lee
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               6814.54
OtherPay                                   1620.0
Benefits                                 30508.64
TotalPay                                 91594.54
TotalPayBenefits                        122103.18
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86465, dtype: object)
(86466, Id                                86467
EmployeeName          Herbert  Catedral
JobTitle            Stationary Engineer
BasePay                        78653.52
OvertimePay                     5473.25
OtherPay                        6493.04
Benefits                       31482.79
TotalPay                       90619.81
TotalPayBenefits               122102.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86466, dtype: object)
(86467, Id                             86468
EmployeeName            Edwin  McRay
JobTitle            Transit Operator
BasePay                     63038.48
OvertimePay                 28045.49
OtherPay                      428.97
Benefits                     30585.7
TotalPay                    91512.94
TotalPayBenefits           122098.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86467, dtype: object)
(86468, Id                               86469
EmployeeName        Antoine  Wright Sr
JobTitle              Transit Operator
BasePay                       67942.07
OvertimePay                    19083.2
OtherPay                       1128.55
Benefits                      33942.16
TotalPay                      88153.82
TotalPayBenefits             122095.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86468, dtype: object)
(86469, Id                                   86470
EmployeeName               Janelle A Meyer
JobTitle            Public SafetyComm Disp
BasePay                            77120.0
OvertimePay                        7123.31
OtherPay                           6652.35
Benefits                          31194.63
TotalPay                          90895.66
TotalPayBenefits                 122090.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86469, dtype: object)
(86470, Id                                          86471
EmployeeName                      Erin D Anderson
JobTitle            Senior Administrative Analyst
BasePay                                   89668.7
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32417.64
TotalPay                                  89668.7
TotalPayBenefits                        122086.34
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86470, dtype: object)
(86471, Id                                           86472
EmployeeName                           Waiman  Tam
JobTitle            Electrical Transit System Mech
BasePay                                   82681.52
OvertimePay                                5667.34
OtherPay                                    3030.0
Benefits                                  30705.63
TotalPay                                  91378.86
TotalPayBenefits                         122084.49
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86471, dtype: object)
(86472, Id                             86473
EmployeeName             Jenken  Jay
JobTitle            Transit Operator
BasePay                     68609.17
OvertimePay                 19467.03
OtherPay                      700.04
Benefits                    33284.14
TotalPay                    88776.24
TotalPayBenefits           122060.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86472, dtype: object)
(86473, Id                                      86474
EmployeeName                   Delia  Ginorio
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.01
OvertimePay                               0.0
OtherPay                               1808.0
Benefits                             31636.54
TotalPay                             90422.01
TotalPayBenefits                    122058.55
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86473, dtype: object)
(86474, Id                                          86475
EmployeeName                    Richard T Whipple
JobTitle            Senior Administrative Analyst
BasePay                                   89640.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32417.45
TotalPay                                  89640.4
TotalPayBenefits                        122057.85
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86474, dtype: object)
(86475, Id                                      86476
EmployeeName                   Jay J.N. Weber
JobTitle            EMT/Paramedic/Firefighter
BasePay                              74711.01
OvertimePay                           6413.36
OtherPay                              10832.9
Benefits                             30088.96
TotalPay                             91957.27
TotalPayBenefits                    122046.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86475, dtype: object)
(86476, Id                                      86477
EmployeeName                    Mary  Cobbins
JobTitle            Medical Records Tech Sprv
BasePay                              81528.67
OvertimePay                           9670.88
OtherPay                               848.34
Benefits                             29996.46
TotalPay                             92047.89
TotalPayBenefits                    122044.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86476, dtype: object)
(86477, Id                                 86478
EmployeeName             Forrest  Outlaw
JobTitle            Painter Supervisor 1
BasePay                         88501.01
OvertimePay                      1905.32
OtherPay                           308.0
Benefits                         31328.1
TotalPay                        90714.33
TotalPayBenefits               122042.43
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86477, dtype: object)
(86478, Id                                          86479
EmployeeName                        John P Reilly
JobTitle            Street Environ Svcs Oprs Supv
BasePay                                  86877.97
OvertimePay                               4276.34
OtherPay                                   1001.9
Benefits                                 29877.61
TotalPay                                 92156.21
TotalPayBenefits                        122033.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86478, dtype: object)
(86479, Id                                86480
EmployeeName               Victor L Lee
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                      2804.4
OtherPay                        8782.65
Benefits                       31159.44
TotalPay                       90870.57
TotalPayBenefits              122030.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86479, dtype: object)
(86480, Id                          86481
EmployeeName          Roy  Sexton
JobTitle             Truck Driver
BasePay                  80044.64
OvertimePay               1746.29
OtherPay                  8921.46
Benefits                 31299.68
TotalPay                 90712.39
TotalPayBenefits        122012.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86480, dtype: object)
(86481, Id                             86482
EmployeeName            Henry  Huynh
JobTitle            Transit Operator
BasePay                     69388.55
OvertimePay                 13142.34
OtherPay                     4706.57
Benefits                    34771.14
TotalPay                    87237.46
TotalPayBenefits            122008.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86481, dtype: object)
(86482, Id                                   86483
EmployeeName        Ruth V Mendez-Martinez
JobTitle                Utility Specialist
BasePay                           88364.43
OvertimePay                            0.0
OtherPay                           3874.06
Benefits                          29762.24
TotalPay                          92238.49
TotalPayBenefits                 122000.73
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86482, dtype: object)
(86483, Id                               86484
EmployeeName                Tom K Kong
JobTitle            Transit Supervisor
BasePay                       74190.12
OvertimePay                    18308.3
OtherPay                       2770.44
Benefits                      26730.54
TotalPay                      95268.86
TotalPayBenefits              121999.4
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86483, dtype: object)
(86484, Id                                          86485
EmployeeName              Christopher W Alberding
JobTitle            Research Asst, Superior Court
BasePay                                   84797.2
OvertimePay                                   0.0
OtherPay                                  5593.88
Benefits                                 31604.63
TotalPay                                 90391.08
TotalPayBenefits                        121995.71
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86484, dtype: object)
(86485, Id                             86486
EmployeeName                Le  Banh
JobTitle            Transit Operator
BasePay                     68790.75
OvertimePay                 16935.89
OtherPay                     2413.38
Benefits                    33841.75
TotalPay                    88140.02
TotalPayBenefits           121981.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86485, dtype: object)
(86486, Id                                         86487
EmployeeName                         James  Work
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 78735.68
OvertimePay                              7740.41
OtherPay                                 6087.97
Benefits                                29412.51
TotalPay                                92564.06
TotalPayBenefits                       121976.57
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86486, dtype: object)
(86487, Id                                         86488
EmployeeName                   Maree Kay  Parisi
JobTitle            Health Program Coordinator 3
BasePay                                 91271.98
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 30698.1
TotalPay                                91271.98
TotalPayBenefits                       121970.08
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86487, dtype: object)
(86488, Id                             86489
EmployeeName         Deirdre  Darley
JobTitle            Senior Purchaser
BasePay                     90292.95
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31671.47
TotalPay                    90292.95
TotalPayBenefits           121964.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86488, dtype: object)
(86489, Id                                        86490
EmployeeName                      Jean  Gapayao
JobTitle            Patient Accounts Supervisor
BasePay                                85185.02
OvertimePay                             6181.83
OtherPay                                    0.0
Benefits                               30595.11
TotalPay                               91366.85
TotalPayBenefits                      121961.96
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86489, dtype: object)
(86490, Id                          86491
EmployeeName        Elliot A Ryan
JobTitle                Asst Engr
BasePay                  90302.73
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31659.03
TotalPay                 90302.73
TotalPayBenefits        121961.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86490, dtype: object)
(86491, Id                             86492
EmployeeName             Kwong  Ngai
JobTitle            Transit Operator
BasePay                      67064.7
OvertimePay                  17512.5
OtherPay                      3961.6
Benefits                    33417.65
TotalPay                     88538.8
TotalPayBenefits           121956.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86491, dtype: object)
(86492, Id                            86493
EmployeeName        Sharon M Parker
JobTitle             Deputy Sheriff
BasePay                    75996.21
OvertimePay                    32.9
OtherPay                   19071.96
Benefits                   26844.21
TotalPay                   95101.07
TotalPayBenefits          121945.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86492, dtype: object)
(86493, Id                                        86494
EmployeeName                   Randall S Weaver
JobTitle            Senior Management Assistant
BasePay                                89829.05
OvertimePay                                 0.0
OtherPay                                 492.37
Benefits                               31622.99
TotalPay                               90321.42
TotalPayBenefits                      121944.41
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86493, dtype: object)
(86494, Id                                86495
EmployeeName            Cesar D Iraheta
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                     4461.91
OtherPay                        6073.18
Benefits                       30861.22
TotalPay                       91076.09
TotalPayBenefits              121937.31
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86494, dtype: object)
(86495, Id                                 86496
EmployeeName               Robert J Elia
JobTitle            Automotive Machinist
BasePay                         80133.03
OvertimePay                      1954.61
OtherPay                         8563.32
Benefits                         31282.9
TotalPay                        90650.96
TotalPayBenefits               121933.86
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86495, dtype: object)
(86496, Id                             86497
EmployeeName        Corrine  Mehigan
JobTitle                   Manager I
BasePay                     86240.21
OvertimePay                      0.0
OtherPay                      2367.0
Benefits                    33321.85
TotalPay                    88607.21
TotalPayBenefits           121929.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86496, dtype: object)
(86497, Id                             86498
EmployeeName            Donald H Tse
JobTitle            Transit Operator
BasePay                     66460.72
OvertimePay                 19522.34
OtherPay                     3044.32
Benefits                    32897.07
TotalPay                    89027.38
TotalPayBenefits           121924.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86497, dtype: object)
(86498, Id                                     86499
EmployeeName             Carmen E Valladares
JobTitle            Deputy Probation Officer
BasePay                             92562.17
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29355.23
TotalPay                            92562.17
TotalPayBenefits                    121917.4
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86498, dtype: object)
(86499, Id                                        86500
EmployeeName                  James M Patterson
JobTitle            Watershed Keeper Supervisor
BasePay                                76545.01
OvertimePay                             3889.28
OtherPay                               12614.76
Benefits                               28864.67
TotalPay                               93049.05
TotalPayBenefits                      121913.72
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86499, dtype: object)
(86500, Id                                      86501
EmployeeName                  Floyd D Johnson
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.03
OvertimePay                               0.0
OtherPay                               1683.0
Benefits                              31612.1
TotalPay                             90297.03
TotalPayBenefits                    121909.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86500, dtype: object)
(86501, Id                             86502
EmployeeName        Darryl A Downing
JobTitle            Transit Operator
BasePay                     67258.06
OvertimePay                 20359.75
OtherPay                     1438.68
Benefits                    32852.15
TotalPay                    89056.49
TotalPayBenefits           121908.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86501, dtype: object)
(86502, Id                                   86503
EmployeeName           Luzviminda E Ferrer
JobTitle            Patient Care Assistant
BasePay                            68137.7
OvertimePay                       18633.57
OtherPay                           6743.66
Benefits                          28384.68
TotalPay                          93514.93
TotalPayBenefits                 121899.61
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86502, dtype: object)
(86503, Id                                  86504
EmployeeName        Debra L Barnett-McGee
JobTitle               Transit Supervisor
BasePay                          71778.13
OvertimePay                      16975.11
OtherPay                          1541.43
Benefits                         31603.59
TotalPay                         90294.67
TotalPayBenefits                121898.26
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86503, dtype: object)
(86504, Id                                          86505
EmployeeName                   Elizabeth M Kelber
JobTitle            Research Asst, Superior Court
BasePay                                   84718.7
OvertimePay                                   0.0
OtherPay                                  5590.43
Benefits                                 31587.26
TotalPay                                 90309.13
TotalPayBenefits                        121896.39
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86504, dtype: object)
(86505, Id                               86506
EmployeeName        Robert A Jepsen Jr
JobTitle                  Truck Driver
BasePay                        80052.0
OvertimePay                        0.0
OtherPay                       10255.2
Benefits                      31586.89
TotalPay                       90307.2
TotalPayBenefits             121894.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86505, dtype: object)
(86506, Id                           86507
EmployeeName        Robert D Whitt
JobTitle                 Asst Engr
BasePay                   90990.11
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30893.24
TotalPay                  90990.11
TotalPayBenefits         121883.35
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86506, dtype: object)
(86507, Id                            86508
EmployeeName         David C Linney
JobTitle            General Laborer
BasePay                    62468.54
OvertimePay                25579.57
OtherPay                    6501.47
Benefits                   27332.02
TotalPay                   94549.58
TotalPayBenefits           121881.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86507, dtype: object)
(86508, Id                                      86509
EmployeeName            Natalie E Henry-Berry
JobTitle            Psychiatric Social Worker
BasePay                               88425.8
OvertimePay                            251.93
OtherPay                              2294.51
Benefits                             30905.53
TotalPay                             90972.24
TotalPayBenefits                    121877.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86508, dtype: object)
(86509, Id                                           86510
EmployeeName                          Scott G Leon
JobTitle            Investigator,Taxi & AccessSvcs
BasePay                                    90221.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31654.44
TotalPay                                   90221.0
TotalPayBenefits                         121875.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86509, dtype: object)
(86510, Id                                           86511
EmployeeName                       Haroon A Razzak
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                    0.0
OtherPay                                    7578.0
Benefits                                   31599.1
TotalPay                                   90259.5
TotalPayBenefits                          121858.6
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86510, dtype: object)
(86511, Id                                86512
EmployeeName             Manito R Regio
JobTitle            Stationary Engineer
BasePay                        79276.16
OvertimePay                     4799.55
OtherPay                        6986.05
Benefits                       30793.66
TotalPay                       91061.76
TotalPayBenefits              121855.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86511, dtype: object)
(86512, Id                                         86513
EmployeeName                           Dave  New
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.51
OvertimePay                             10289.35
OtherPay                                  2359.2
Benefits                                29922.06
TotalPay                                91932.06
TotalPayBenefits                       121854.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86512, dtype: object)
(86513, Id                            86514
EmployeeName        Robert A Lanham
JobTitle                Pile Worker
BasePay                    90229.01
OvertimePay                     0.0
OtherPay                        8.0
Benefits                   31613.45
TotalPay                   90237.01
TotalPayBenefits          121850.46
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86513, dtype: object)
(86514, Id                                   86515
EmployeeName        Wilhelmina A Mc Griger
JobTitle                  Transit Operator
BasePay                           66945.43
OvertimePay                       22019.23
OtherPay                            449.91
Benefits                           32426.8
TotalPay                          89414.57
TotalPayBenefits                 121841.37
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86514, dtype: object)
(86515, Id                                  86516
EmployeeName              Nathan T Allbee
JobTitle            Legislative Assistant
BasePay                          89369.14
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         32469.41
TotalPay                         89369.14
TotalPayBenefits                121838.55
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86515, dtype: object)
(86516, Id                                86517
EmployeeName        Benzon P De La Cruz
JobTitle                     Manager II
BasePay                        86781.11
OvertimePay                         0.0
OtherPay                          129.0
Benefits                       34906.41
TotalPay                       86910.11
TotalPayBenefits              121816.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86516, dtype: object)
(86517, Id                                       86518
EmployeeName                        Suet L Yim
JobTitle            Protective Services Worker
BasePay                               90195.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31609.88
TotalPay                              90195.01
TotalPayBenefits                     121804.89
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86517, dtype: object)
(86518, Id                                   86519
EmployeeName                 Karen  Hammel
JobTitle            Occupational Therapist
BasePay                           92451.41
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29350.09
TotalPay                          92451.41
TotalPayBenefits                  121801.5
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86518, dtype: object)
(86519, Id                               86520
EmployeeName        Reynaldo V Morante
JobTitle              Transit Operator
BasePay                       66421.17
OvertimePay                   21436.61
OtherPay                       1482.51
Benefits                      32457.37
TotalPay                      89340.29
TotalPayBenefits             121797.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86519, dtype: object)
(86520, Id                                        86521
EmployeeName                    Lauren A Lester
JobTitle            Senior Management Assistant
BasePay                                89496.32
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               32299.06
TotalPay                               89496.32
TotalPayBenefits                      121795.38
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86520, dtype: object)
(86521, Id                                       86522
EmployeeName                     Vanessa W Fan
JobTitle            IS Business Analyst-Senior
BasePay                                89423.4
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32360.55
TotalPay                               89423.4
TotalPayBenefits                     121783.95
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86521, dtype: object)
(86522, Id                                       86523
EmployeeName                     Kimbra L Hall
JobTitle            Protective Services Worker
BasePay                               89509.21
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              32274.62
TotalPay                              89509.21
TotalPayBenefits                     121783.83
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86522, dtype: object)
(86523, Id                                  86524
EmployeeName                  Doug  Lopez
JobTitle            Materials Coordinator
BasePay                          95537.02
OvertimePay                           0.0
OtherPay                           1115.1
Benefits                         25126.65
TotalPay                         96652.12
TotalPayBenefits                121778.77
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86523, dtype: object)
(86524, Id                                    86525
EmployeeName                 Justin R Lyman
JobTitle            Park Section Supervisor
BasePay                            78567.06
OvertimePay                        11770.64
OtherPay                             1803.6
Benefits                           29630.24
TotalPay                            92141.3
TotalPayBenefits                  121771.54
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86524, dtype: object)
(86525, Id                                86526
EmployeeName               Kimo  Bowden
JobTitle            Stationary Engineer
BasePay                         78467.7
OvertimePay                      5671.8
OtherPay                        6256.09
Benefits                       31372.08
TotalPay                       90395.59
TotalPayBenefits              121767.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86525, dtype: object)
(86526, Id                                86527
EmployeeName              Jimmy A K Shu
JobTitle            Pharmacy Technician
BasePay                        80541.01
OvertimePay                     4370.85
OtherPay                        6007.56
Benefits                       30828.82
TotalPay                       90919.42
TotalPayBenefits              121748.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86526, dtype: object)
(86527, Id                                86528
EmployeeName            Ramon A Alarcon
JobTitle            Stationary Engineer
BasePay                         78960.4
OvertimePay                     4758.88
OtherPay                        7230.26
Benefits                       30779.56
TotalPay                       90949.54
TotalPayBenefits               121729.1
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86527, dtype: object)
(86528, Id                                         86529
EmployeeName                    Jaime D Rabutaso
JobTitle            Sr Fare Collections Receiver
BasePay                                 70767.01
OvertimePay                             22492.42
OtherPay                                   648.0
Benefits                                27818.31
TotalPay                                93907.43
TotalPayBenefits                       121725.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86528, dtype: object)
(86529, Id                                      86530
EmployeeName                Bonnie M Lee-Quon
JobTitle            Medical Records Tech Sprv
BasePay                              81486.05
OvertimePay                               0.0
OtherPay                              9298.34
Benefits                             30939.54
TotalPay                             90784.39
TotalPayBenefits                    121723.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86529, dtype: object)
(86530, Id                                86531
EmployeeName        Archimedes V Rivera
JobTitle               Transit Operator
BasePay                         67510.2
OvertimePay                    15642.72
OtherPay                        4710.92
Benefits                       33851.86
TotalPay                       87863.84
TotalPayBenefits               121715.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86530, dtype: object)
(86531, Id                             86532
EmployeeName        Steven J Ravella
JobTitle                 Inspector 3
BasePay                     68991.06
OvertimePay                   316.93
OtherPay                    33350.14
Benefits                    19052.37
TotalPay                   102658.13
TotalPayBenefits            121710.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86531, dtype: object)
(86532, Id                             86533
EmployeeName          Shirley C Chin
JobTitle            Registered Nurse
BasePay                     88787.85
OvertimePay                      0.0
OtherPay                     6581.74
Benefits                    26339.55
TotalPay                    95369.59
TotalPayBenefits           121709.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86532, dtype: object)
(86533, Id                                           86534
EmployeeName                        Antonio C Chan
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                 8256.6
OtherPay                                     550.0
Benefits                                  30217.65
TotalPay                                   91488.1
TotalPayBenefits                         121705.75
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86533, dtype: object)
(86534, Id                                      86535
EmployeeName                     Kezia H Tang
JobTitle            Pr Administrative Analyst
BasePay                              90251.54
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31453.87
TotalPay                             90251.54
TotalPayBenefits                    121705.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86534, dtype: object)
(86535, Id                            86536
EmployeeName          Kevin C Allen
JobTitle            Museum Sec Supv
BasePay                    68391.02
OvertimePay                26081.95
OtherPay                        0.0
Benefits                   27231.84
TotalPay                   94472.97
TotalPayBenefits          121704.81
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86535, dtype: object)
(86536, Id                                      86537
EmployeeName         Carol Noelle Sacco  Webb
JobTitle            Rep, Comm Status of Women
BasePay                              90099.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31579.12
TotalPay                             90099.02
TotalPayBenefits                    121678.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86536, dtype: object)
(86537, Id                                         86538
EmployeeName                   Gregory  McKneely
JobTitle            Institutional Police Officer
BasePay                                  70112.1
OvertimePay                             18056.56
OtherPay                                 6149.99
Benefits                                27347.98
TotalPay                                94318.65
TotalPayBenefits                       121666.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86537, dtype: object)
(86538, Id                                       86539
EmployeeName                   Virginia  Magno
JobTitle            Medical Records Technician
BasePay                               69714.01
OvertimePay                           23677.49
OtherPay                                 648.0
Benefits                              27623.97
TotalPay                               94039.5
TotalPayBenefits                     121663.47
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86538, dtype: object)
(86539, Id                           86540
EmployeeName        Jonathan H Tso
JobTitle            Accountant III
BasePay                   90051.73
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   31609.7
TotalPay                  90051.73
TotalPayBenefits         121661.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86539, dtype: object)
(86540, Id                                      86541
EmployeeName                 Elena  Dmitrieva
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          13988.47
OtherPay                              4884.61
Benefits                             29184.02
TotalPay                             92475.08
TotalPayBenefits                     121659.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86540, dtype: object)
(86541, Id                              86542
EmployeeName        Diosdado  Panahon
JobTitle             Transit Operator
BasePay                      67793.87
OvertimePay                  17511.88
OtherPay                       4073.8
Benefits                     32275.55
TotalPay                     89379.55
TotalPayBenefits             121655.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86541, dtype: object)
(86542, Id                               86543
EmployeeName        Mitchell L Johnson
JobTitle              Transit Operator
BasePay                       66382.21
OvertimePay                   20417.39
OtherPay                       2214.29
Benefits                       32636.9
TotalPay                      89013.89
TotalPayBenefits             121650.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86542, dtype: object)
(86543, Id                              86544
EmployeeName        Michael L Stanley
JobTitle             Training Officer
BasePay                      90052.53
OvertimePay                       0.0
OtherPay                         4.98
Benefits                     31591.67
TotalPay                     90057.51
TotalPayBenefits            121649.18
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86543, dtype: object)
(86544, Id                                      86545
EmployeeName                       Muin  Daly
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.07
OvertimePay                               0.0
OtherPay                              1461.44
Benefits                             31568.35
TotalPay                             90075.51
TotalPayBenefits                    121643.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86544, dtype: object)
(86545, Id                              86546
EmployeeName        Maria O Silvestre
JobTitle             Training Officer
BasePay                      90052.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31590.76
TotalPay                     90052.53
TotalPayBenefits            121643.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86545, dtype: object)
(86546, Id                             86547
EmployeeName         David L Lazzari
JobTitle            Training Officer
BasePay                     90052.52
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31590.76
TotalPay                    90052.52
TotalPayBenefits           121643.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86546, dtype: object)
(86547, Id                             86548
EmployeeName         Phyllis M Brown
JobTitle            Training Officer
BasePay                     90052.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31590.76
TotalPay                    90052.51
TotalPayBenefits           121643.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86547, dtype: object)
(86548, Id                             86549
EmployeeName             Irina  Mass
JobTitle            Training Officer
BasePay                     90052.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31590.76
TotalPay                    90052.51
TotalPayBenefits           121643.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86548, dtype: object)
(86549, Id                                 86550
EmployeeName        Christine G Lamorena
JobTitle                       Planner 3
BasePay                         90015.07
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31626.08
TotalPay                        90015.07
TotalPayBenefits               121641.15
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86549, dtype: object)
(86550, Id                                           86551
EmployeeName              Yorsy  Larraburo Naranjo
JobTitle            IT Operations Support Admin IV
BasePay                                    90011.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31622.28
TotalPay                                   90011.0
TotalPayBenefits                         121633.28
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86550, dtype: object)
(86551, Id                             86552
EmployeeName             Tina T Tang
JobTitle            Training Officer
BasePay                     90050.09
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31582.49
TotalPay                    90050.09
TotalPayBenefits           121632.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86551, dtype: object)
(86552, Id                               86553
EmployeeName        Michael E Kelleher
JobTitle              Transit Operator
BasePay                       67605.53
OvertimePay                   13330.19
OtherPay                       6380.81
Benefits                      34315.81
TotalPay                      87316.53
TotalPayBenefits             121632.34
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86552, dtype: object)
(86553, Id                                           86554
EmployeeName                          Mary E White
JobTitle            Arborist Technician Supervisor
BasePay                                   89620.55
OvertimePay                                    0.0
OtherPay                                     432.0
Benefits                                   31575.4
TotalPay                                  90052.55
TotalPayBenefits                         121627.95
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86553, dtype: object)
(86554, Id                             86555
EmployeeName        Patricia A Tarin
JobTitle            Training Officer
BasePay                     90052.52
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31573.86
TotalPay                    90052.52
TotalPayBenefits           121626.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86554, dtype: object)
(86555, Id                             86556
EmployeeName         Bernita L Burge
JobTitle            Training Officer
BasePay                      90052.5
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31572.18
TotalPay                     90052.5
TotalPayBenefits           121624.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86555, dtype: object)
(86556, Id                                86557
EmployeeName         Reginaldo V Aquino
JobTitle            Stationary Engineer
BasePay                        78496.02
OvertimePay                     5287.74
OtherPay                        7161.86
Benefits                        30671.6
TotalPay                       90945.62
TotalPayBenefits              121617.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86556, dtype: object)
(86557, Id                                  86558
EmployeeName        Andrea L Scott-Finney
JobTitle                   Security Guard
BasePay                          60585.35
OvertimePay                      29931.87
OtherPay                          4692.86
Benefits                         26402.88
TotalPay                         95210.08
TotalPayBenefits                121612.96
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86557, dtype: object)
(86558, Id                                          86559
EmployeeName                         Patty Y Feng
JobTitle            Chf Payroll & Personnel Clerk
BasePay                                  78736.33
OvertimePay                               6830.95
OtherPay                                  6635.34
Benefits                                 29410.04
TotalPay                                 92202.62
TotalPayBenefits                        121612.66
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86558, dtype: object)
(86559, Id                                           86560
EmployeeName                    Gregory M Loveseth
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    88469.0
OvertimePay                                    0.0
OtherPay                                     800.0
Benefits                                  32332.03
TotalPay                                   89269.0
TotalPayBenefits                         121601.03
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86559, dtype: object)
(86560, Id                             86561
EmployeeName        Michael M Gordon
JobTitle              Police Officer
BasePay                     92259.06
OvertimePay                  4521.79
OtherPay                     5818.29
Benefits                    18993.75
TotalPay                   102599.14
TotalPayBenefits           121592.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86560, dtype: object)
(86561, Id                          86562
EmployeeName             Qing  Du
JobTitle            Pattern Maker
BasePay                   88016.9
OvertimePay                   0.0
OtherPay                   2120.0
Benefits                 31454.95
TotalPay                  90136.9
TotalPayBenefits        121591.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86561, dtype: object)
(86562, Id                          86563
EmployeeName        Raul  Alarcon
JobTitle                  Painter
BasePay                  77948.02
OvertimePay              14052.28
OtherPay                   366.51
Benefits                 29222.13
TotalPay                 92366.81
TotalPayBenefits        121588.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86562, dtype: object)
(86563, Id                            86564
EmployeeName        Maria A Ifurung
JobTitle             Accountant III
BasePay                    90549.05
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    31020.1
TotalPay                   90549.05
TotalPayBenefits          121569.15
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86563, dtype: object)
(86564, Id                                      86565
EmployeeName                Karen P Neinstein
JobTitle            Attorney (Civil/Criminal)
BasePay                              92371.99
OvertimePay                               0.0
OtherPay                               1250.0
Benefits                             27946.59
TotalPay                             93621.99
TotalPayBenefits                    121568.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86564, dtype: object)
(86565, Id                                86566
EmployeeName        Stephanie A Otaguro
JobTitle               Police Officer 2
BasePay                        89879.57
OvertimePay                         0.0
OtherPay                        4208.48
Benefits                       27479.27
TotalPay                       94088.05
TotalPayBenefits              121567.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86565, dtype: object)
(86566, Id                             86567
EmployeeName        John P Kavanaugh
JobTitle                 Firefighter
BasePay                     85476.05
OvertimePay                  1421.32
OtherPay                     4681.04
Benefits                    29984.59
TotalPay                    91578.41
TotalPayBenefits            121563.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86566, dtype: object)
(86567, Id                                   86568
EmployeeName              Nancy B Porfirio
JobTitle            Public SafetyComm Disp
BasePay                           77351.11
OvertimePay                        8348.56
OtherPay                           7027.79
Benefits                          28833.07
TotalPay                          92727.46
TotalPayBenefits                 121560.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86567, dtype: object)
(86568, Id                                     86569
EmployeeName                        Amy  Woo
JobTitle            Senior Personnel Analyst
BasePay                             89965.52
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31586.28
TotalPay                            89965.52
TotalPayBenefits                    121551.8
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86568, dtype: object)
(86569, Id                                      86570
EmployeeName                Remedios T Torres
JobTitle            Licensed Vocational Nurse
BasePay                              73573.72
OvertimePay                          10937.54
OtherPay                              7380.67
Benefits                             29656.76
TotalPay                             91891.93
TotalPayBenefits                    121548.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86569, dtype: object)
(86570, Id                            86571
EmployeeName        Dennis V Sherry
JobTitle               Truck Driver
BasePay                     80052.0
OvertimePay                 9820.66
OtherPay                     1739.0
Benefits                   29934.94
TotalPay                   91611.66
TotalPayBenefits           121546.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86570, dtype: object)
(86571, Id                             86572
EmployeeName         Asteria C Perez
JobTitle            Registered Nurse
BasePay                     90167.57
OvertimePay                      0.0
OtherPay                     3191.42
Benefits                    28186.69
TotalPay                    93358.99
TotalPayBenefits           121545.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86571, dtype: object)
(86572, Id                                86573
EmployeeName              Yonas G Hadgu
JobTitle            Survey Assistant II
BasePay                         80877.5
OvertimePay                    10878.37
OtherPay                            0.0
Benefits                       29787.28
TotalPay                       91755.87
TotalPayBenefits              121543.15
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86572, dtype: object)
(86573, Id                            86574
EmployeeName        Kurt H Knuepfel
JobTitle                Firefighter
BasePay                    75685.55
OvertimePay                 5560.37
OtherPay                     9724.5
Benefits                   30569.94
TotalPay                   90970.42
TotalPayBenefits          121540.36
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86573, dtype: object)
(86574, Id                                86575
EmployeeName           Henry Myint  Soe
JobTitle            Stationary Engineer
BasePay                        79363.05
OvertimePay                      5242.2
OtherPay                        6274.67
Benefits                       30651.11
TotalPay                       90879.92
TotalPayBenefits              121531.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86574, dtype: object)
(86575, Id                                          86576
EmployeeName                      John S Rockwell
JobTitle            Senior Administrative Analyst
BasePay                                  89193.27
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32322.55
TotalPay                                 89193.27
TotalPayBenefits                        121515.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86575, dtype: object)
(86576, Id                                86577
EmployeeName             James  Baumann
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                    13782.06
OtherPay                            0.0
Benefits                       29256.89
TotalPay                       92255.57
TotalPayBenefits              121512.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86576, dtype: object)
(86577, Id                               86578
EmployeeName          Andre L McDaniel
JobTitle            Transit Supervisor
BasePay                        84792.0
OvertimePay                     2668.8
OtherPay                       2890.04
Benefits                      31160.79
TotalPay                      90350.84
TotalPayBenefits             121511.63
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86577, dtype: object)
(86578, Id                           86579
EmployeeName           Rosa L Chan
JobTitle            Deputy Sheriff
BasePay                    86570.5
OvertimePay                2453.99
OtherPay                   1101.59
Benefits                  31378.09
TotalPay                  90126.08
TotalPayBenefits         121504.17
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86578, dtype: object)
(86579, Id                                   86580
EmployeeName              Cynthia D Carter
JobTitle            Patient Care Assistant
BasePay                            68377.7
OvertimePay                       24889.57
OtherPay                            897.87
Benefits                           27338.1
TotalPay                          94165.14
TotalPayBenefits                 121503.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86579, dtype: object)
(86580, Id                          86581
EmployeeName        Tony  Preston
JobTitle                Carpenter
BasePay                   88849.6
OvertimePay               1118.14
OtherPay                    162.0
Benefits                 31370.48
TotalPay                 90129.74
TotalPayBenefits        121500.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86580, dtype: object)
(86581, Id                             86582
EmployeeName            Steve F Noya
JobTitle            Street Inspector
BasePay                     78164.04
OvertimePay                 13915.13
OtherPay                       170.0
Benefits                    29246.49
TotalPay                    92249.17
TotalPayBenefits           121495.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86581, dtype: object)
(86582, Id                                      86583
EmployeeName                    Aida P McCray
JobTitle            Rehabilitation Svcs Coord
BasePay                              88306.35
OvertimePay                               0.0
OtherPay                              1685.74
Benefits                             31499.05
TotalPay                             89992.09
TotalPayBenefits                    121491.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86582, dtype: object)
(86583, Id                                   86584
EmployeeName           Stephen M Samuelson
JobTitle            Public SafetyComm Disp
BasePay                           81616.14
OvertimePay                         6238.6
OtherPay                           3931.36
Benefits                          29699.93
TotalPay                           91786.1
TotalPayBenefits                 121486.03
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86583, dtype: object)
(86584, Id                             86585
EmployeeName              Hieu D Ong
JobTitle            Transit Operator
BasePay                     69515.58
OvertimePay                 15348.61
OtherPay                     1730.93
Benefits                    34883.61
TotalPay                    86595.12
TotalPayBenefits           121478.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86584, dtype: object)
(86585, Id                                   86586
EmployeeName                   Nena S Ulep
JobTitle            Patient Care Assistant
BasePay                            67987.3
OvertimePay                        18195.2
OtherPay                           6904.98
Benefits                           28385.5
TotalPay                          93087.48
TotalPayBenefits                 121472.98
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86585, dtype: object)
(86586, Id                           86587
EmployeeName            Tina H Cen
JobTitle            Accountant III
BasePay                   89890.72
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31579.17
TotalPay                  89890.72
TotalPayBenefits         121469.89
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86586, dtype: object)
(86587, Id                                 86588
EmployeeName        Joseph K Huelfenhaus
JobTitle             Arborist Technician
BasePay                          80282.5
OvertimePay                      9524.88
OtherPay                         1702.35
Benefits                        29951.52
TotalPay                        91509.73
TotalPayBenefits               121461.25
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86587, dtype: object)
(86588, Id                             86589
EmployeeName        Carman  Jennings
JobTitle            Transit Operator
BasePay                     64340.31
OvertimePay                 24269.35
OtherPay                     1460.96
Benefits                    31379.21
TotalPay                    90070.62
TotalPayBenefits           121449.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86588, dtype: object)
(86589, Id                              86590
EmployeeName        Eduardo J Barroso
JobTitle                    Carpenter
BasePay                      80589.74
OvertimePay                   9122.11
OtherPay                       2255.0
Benefits                     29482.48
TotalPay                     91966.85
TotalPayBenefits            121449.33
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86589, dtype: object)
(86590, Id                                          86591
EmployeeName                Maria-Zenaida D Camua
JobTitle            Contract Compliance Officer 1
BasePay                                  89129.51
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  32317.5
TotalPay                                 89129.51
TotalPayBenefits                        121447.01
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86590, dtype: object)
(86591, Id                             86592
EmployeeName            Terri L Hall
JobTitle            Transit Operator
BasePay                     67421.61
OvertimePay                 17950.55
OtherPay                     2763.79
Benefits                    33303.22
TotalPay                    88135.95
TotalPayBenefits           121439.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86591, dtype: object)
(86592, Id                                        86593
EmployeeName                    Miguel O Cierra
JobTitle            Station Agent, Muni Railway
BasePay                                 80379.0
OvertimePay                             8463.79
OtherPay                                2470.81
Benefits                                30117.5
TotalPay                                91313.6
TotalPayBenefits                       121431.1
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86592, dtype: object)
(86593, Id                                          86594
EmployeeName                    Narciso R Aguilar
JobTitle            Transit Car Cleaner Asst Sprv
BasePay                                   67041.0
OvertimePay                              15850.74
OtherPay                                  9676.47
Benefits                                 28859.19
TotalPay                                 92568.21
TotalPayBenefits                         121427.4
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86593, dtype: object)
(86594, Id                             86595
EmployeeName            Spencer  Yee
JobTitle            Transit Operator
BasePay                     64017.64
OvertimePay                  25966.1
OtherPay                      389.32
Benefits                    31044.15
TotalPay                    90373.06
TotalPayBenefits           121417.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86594, dtype: object)
(86595, Id                                 86596
EmployeeName           Charles T Silvera
JobTitle            Painter Supervisor 1
BasePay                          93454.5
OvertimePay                       7783.2
OtherPay                             0.0
Benefits                        20170.32
TotalPay                        101237.7
TotalPayBenefits               121408.02
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86595, dtype: object)
(86596, Id                                     86597
EmployeeName             P Rorrie  Tiniakoff
JobTitle            Deputy Probation Officer
BasePay                              92196.1
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29204.02
TotalPay                             92196.1
TotalPayBenefits                   121400.12
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86596, dtype: object)
(86597, Id                             86598
EmployeeName          Halmar A Duran
JobTitle            Transit Operator
BasePay                     66217.47
OvertimePay                 21540.24
OtherPay                     1338.83
Benefits                    32301.48
TotalPay                    89096.54
TotalPayBenefits           121398.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86597, dtype: object)
(86598, Id                                    86599
EmployeeName                   Eugene  Chen
JobTitle            Parking Control Officer
BasePay                            59201.42
OvertimePay                        30495.91
OtherPay                            5255.36
Benefits                           26440.83
TotalPay                           94952.69
TotalPayBenefits                  121393.52
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86598, dtype: object)
(86599, Id                                86600
EmployeeName            Ramon D Ignacio
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                    10105.95
OtherPay                        3008.02
Benefits                       29803.77
TotalPay                       91587.48
TotalPayBenefits              121391.25
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86599, dtype: object)
(86600, Id                                      86601
EmployeeName                   Delia G Carlos
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          10854.96
OtherPay                              7276.84
Benefits                             29646.82
TotalPay                              91733.8
TotalPayBenefits                    121380.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86600, dtype: object)
(86601, Id                              86602
EmployeeName        Darrell  Marshall
JobTitle             Transit Operator
BasePay                      67258.38
OvertimePay                  18800.69
OtherPay                      2257.82
Benefits                     33058.34
TotalPay                     88316.89
TotalPayBenefits            121375.23
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86601, dtype: object)
(86602, Id                                     86603
EmployeeName              Jimmy M Valladares
JobTitle            Track Maintenance Worker
BasePay                              63683.5
OvertimePay                         30884.99
OtherPay                            11735.15
Benefits                            15060.63
TotalPay                           106303.64
TotalPayBenefits                   121364.27
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86602, dtype: object)
(86603, Id                                      86604
EmployeeName              Melissa M Rosenberg
JobTitle            Psychiatric Social Worker
BasePay                              89919.58
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                              31441.8
TotalPay                             89919.58
TotalPayBenefits                    121361.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86603, dtype: object)
(86604, Id                                        86605
EmployeeName                    Arlene E Hylton
JobTitle            Senior Management Assistant
BasePay                                89829.06
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31530.32
TotalPay                               89829.06
TotalPayBenefits                      121359.38
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86604, dtype: object)
(86605, Id                                  86606
EmployeeName           Viktoriya A Dostal
JobTitle            Emp & Training Spec 4
BasePay                          89829.06
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31525.15
TotalPay                         89829.06
TotalPayBenefits                121354.21
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86605, dtype: object)
(86606, Id                                        86607
EmployeeName                Ani B Baghdassarian
JobTitle            Senior Management Assistant
BasePay                                89829.05
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.05
TotalPayBenefits                       121354.2
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86606, dtype: object)
(86607, Id                                        86608
EmployeeName              Asja I Turner-Steeves
JobTitle            Senior Management Assistant
BasePay                                89829.05
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.05
TotalPayBenefits                       121354.2
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86607, dtype: object)
(86608, Id                                        86609
EmployeeName                    Francis P Starr
JobTitle            Senior Management Assistant
BasePay                                89829.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.16
TotalPay                               89829.04
TotalPayBenefits                       121354.2
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86608, dtype: object)
(86609, Id                                  86610
EmployeeName            Margarita P Gallo
JobTitle            Emp & Training Spec 4
BasePay                          89829.04
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31525.15
TotalPay                         89829.04
TotalPayBenefits                121354.19
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86609, dtype: object)
(86610, Id                                        86611
EmployeeName                     Verma L Walton
JobTitle            Senior Management Assistant
BasePay                                89829.04
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.04
TotalPayBenefits                      121354.19
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86610, dtype: object)
(86611, Id                                  86612
EmployeeName        Vladislav  Komanovsky
JobTitle            Emp & Training Spec 4
BasePay                          89829.03
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31525.15
TotalPay                         89829.03
TotalPayBenefits                121354.18
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86611, dtype: object)
(86612, Id                                        86613
EmployeeName                        Monica S Wu
JobTitle            Senior Management Assistant
BasePay                                89829.03
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.03
TotalPayBenefits                      121354.18
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86612, dtype: object)
(86613, Id                                  86614
EmployeeName          Jovita Rose N Ramos
JobTitle            Emp & Training Spec 4
BasePay                          89829.03
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31525.15
TotalPay                         89829.03
TotalPayBenefits                121354.18
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86613, dtype: object)
(86614, Id                                        86615
EmployeeName                      Mary L Hudson
JobTitle            Senior Management Assistant
BasePay                                89829.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.02
TotalPayBenefits                      121354.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86614, dtype: object)
(86615, Id                                        86616
EmployeeName                     Rachelle  Axel
JobTitle            Senior Management Assistant
BasePay                                89829.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.02
TotalPayBenefits                      121354.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86615, dtype: object)
(86616, Id                                        86617
EmployeeName                   Marco A Chavarin
JobTitle            Senior Management Assistant
BasePay                                89829.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.02
TotalPayBenefits                      121354.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86616, dtype: object)
(86617, Id                                  86618
EmployeeName             Miguel V Manalac
JobTitle            Emp & Training Spec 4
BasePay                          89829.02
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31525.15
TotalPay                         89829.02
TotalPayBenefits                121354.17
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86617, dtype: object)
(86618, Id                                        86619
EmployeeName                       Julie A Mark
JobTitle            Senior Management Assistant
BasePay                                89829.02
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.02
TotalPayBenefits                      121354.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86618, dtype: object)
(86619, Id                                        86620
EmployeeName                    Sarah D Hellman
JobTitle            Senior Management Assistant
BasePay                                89829.01
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.01
TotalPayBenefits                      121354.16
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86619, dtype: object)
(86620, Id                                        86621
EmployeeName                 Karen C Burke-Hill
JobTitle            Senior Management Assistant
BasePay                                89829.01
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31525.15
TotalPay                               89829.01
TotalPayBenefits                      121354.16
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86620, dtype: object)
(86621, Id                                   86622
EmployeeName                   Joyce  Chen
JobTitle            Occupational Therapist
BasePay                           91165.71
OvertimePay                            0.0
OtherPay                             920.0
Benefits                          29258.47
TotalPay                          92085.71
TotalPayBenefits                 121344.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86621, dtype: object)
(86622, Id                                           86623
EmployeeName                         Cheryl A Wong
JobTitle            IT Operations Support Admin IV
BasePay                                    89799.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31535.95
TotalPay                                   89799.5
TotalPayBenefits                         121335.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86622, dtype: object)
(86623, Id                                86624
EmployeeName            Ivy B Steverson
JobTitle            Public Health Nurse
BasePay                        88741.42
OvertimePay                         0.0
OtherPay                         3432.1
Benefits                        29159.7
TotalPay                       92173.52
TotalPayBenefits              121333.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86623, dtype: object)
(86624, Id                              86625
EmployeeName        Robert E Thorstad
JobTitle                      Glazier
BasePay                       85585.0
OvertimePay                       0.0
OtherPay                      4232.41
Benefits                     31511.61
TotalPay                     89817.41
TotalPayBenefits            121329.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86624, dtype: object)
(86625, Id                             86626
EmployeeName          Louis C Walker
JobTitle            Transit Operator
BasePay                     68771.89
OvertimePay                 12234.56
OtherPay                     4925.22
Benefits                    35376.82
TotalPay                    85931.67
TotalPayBenefits           121308.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86625, dtype: object)
(86626, Id                                           86627
EmployeeName                  Matthew T Kamelamela
JobTitle            AprntcStatnry Eng,WtrTreatPlnt
BasePay                                   80187.66
OvertimePay                                3773.57
OtherPay                                   7111.55
Benefits                                   30229.4
TotalPay                                  91072.78
TotalPayBenefits                         121302.18
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86626, dtype: object)
(86627, Id                                      86628
EmployeeName                   Wendy  Mendoza
JobTitle            Licensed Vocational Nurse
BasePay                              71792.64
OvertimePay                          20986.89
OtherPay                               833.68
Benefits                             27686.92
TotalPay                             93613.21
TotalPayBenefits                    121300.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86627, dtype: object)
(86628, Id                                       86629
EmployeeName                   Annie Lai  Chan
JobTitle            IS Business Analyst-Senior
BasePay                                84144.0
OvertimePay                            5919.38
OtherPay                                735.35
Benefits                              30499.14
TotalPay                              90798.73
TotalPayBenefits                     121297.87
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86628, dtype: object)
(86629, Id                                  86630
EmployeeName            Kathleen  Bianchi
JobTitle            Executive Secretary 3
BasePay                          88858.58
OvertimePay                       1100.08
OtherPay                              0.0
Benefits                         31319.93
TotalPay                         89958.66
TotalPayBenefits                121278.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86629, dtype: object)
(86630, Id                                         86631
EmployeeName                        James T Wong
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 81940.52
OvertimePay                              2833.01
OtherPay                                 6133.52
Benefits                                30370.42
TotalPay                                90907.05
TotalPayBenefits                       121277.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86630, dtype: object)
(86631, Id                                   86632
EmployeeName                 Steven  Crane
JobTitle            Airport Safety Officer
BasePay                           86373.02
OvertimePay                        3179.66
OtherPay                            739.18
Benefits                          30968.31
TotalPay                          90291.86
TotalPayBenefits                 121260.17
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86631, dtype: object)
(86632, Id                             86633
EmployeeName        John D Sylvester
JobTitle             Junior Engineer
BasePay                     87028.51
OvertimePay                   3236.9
OtherPay                         0.0
Benefits                     30986.4
TotalPay                    90265.41
TotalPayBenefits           121251.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86632, dtype: object)
(86633, Id                                 86634
EmployeeName               Leonard L Hom
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                       332.33
OtherPay                         9340.63
Benefits                        31434.37
TotalPay                        89805.96
TotalPayBenefits               121240.33
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86633, dtype: object)
(86634, Id                             86635
EmployeeName          Susan  Jaballa
JobTitle            Transit Operator
BasePay                     64664.99
OvertimePay                  23444.2
OtherPay                     1514.02
Benefits                    31615.12
TotalPay                    89623.21
TotalPayBenefits           121238.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86634, dtype: object)
(86635, Id                                86636
EmployeeName               Hung H Quach
JobTitle            Automotive Mechanic
BasePay                         61447.4
OvertimePay                     32096.9
OtherPay                        3109.41
Benefits                       24575.37
TotalPay                       96653.71
TotalPayBenefits              121229.08
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86635, dtype: object)
(86636, Id                                         86637
EmployeeName                     Laurie B Lenrow
JobTitle            Sr Psychiatric Social Worker
BasePay                                 89353.16
OvertimePay                                  0.0
OtherPay                                   940.0
Benefits                                30929.12
TotalPay                                90293.16
TotalPayBenefits                       121222.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86636, dtype: object)
(86637, Id                                      86638
EmployeeName                  Tracie M Norris
JobTitle            Diagnostic Imaging Tech I
BasePay                              84821.89
OvertimePay                           3834.48
OtherPay                              1684.17
Benefits                             30872.39
TotalPay                             90340.54
TotalPayBenefits                    121212.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86637, dtype: object)
(86638, Id                                      86639
EmployeeName                       Ian M Hart
JobTitle            Pr Administrative Analyst
BasePay                               91390.1
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29822.07
TotalPay                              91390.1
TotalPayBenefits                    121212.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86638, dtype: object)
(86639, Id                                     86640
EmployeeName                Amir  Murcehajic
JobTitle            Track Maintenance Worker
BasePay                              63681.2
OvertimePay                         25308.54
OtherPay                             4925.05
Benefits                            27295.08
TotalPay                            93914.79
TotalPayBenefits                   121209.87
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86639, dtype: object)
(86640, Id                                          86641
EmployeeName                         Elise  Crane
JobTitle            Senior Administrative Analyst
BasePay                                  99768.88
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 21440.27
TotalPay                                 99768.88
TotalPayBenefits                        121209.15
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86640, dtype: object)
(86641, Id                                   86642
EmployeeName               Gagendra  Singh
JobTitle            Airport Safety Officer
BasePay                            78890.5
OvertimePay                        7591.18
OtherPay                           3753.46
Benefits                          30973.52
TotalPay                          90235.14
TotalPayBenefits                 121208.66
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86641, dtype: object)
(86642, Id                                           86643
EmployeeName                          Irving O Mok
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   88245.02
OvertimePay                                    0.0
OtherPay                                    1440.0
Benefits                                   31520.9
TotalPay                                  89685.02
TotalPayBenefits                         121205.92
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86642, dtype: object)
(86643, Id                             86644
EmployeeName           Bing Hui  Yao
JobTitle            Transit Operator
BasePay                     68392.79
OvertimePay                 17586.34
OtherPay                     1731.59
Benefits                    33487.04
TotalPay                    87710.72
TotalPayBenefits           121197.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86643, dtype: object)
(86644, Id                                          86645
EmployeeName             Kimberly M Ganade-Torres
JobTitle            Senior Administrative Analyst
BasePay                                  89870.69
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31324.81
TotalPay                                 89870.69
TotalPayBenefits                         121195.5
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86644, dtype: object)
(86645, Id                             86646
EmployeeName         Daniel  Ramirez
JobTitle            Transit Operator
BasePay                     68669.71
OvertimePay                 16031.76
OtherPay                     2616.02
Benefits                    33873.89
TotalPay                    87317.49
TotalPayBenefits           121191.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86645, dtype: object)
(86646, Id                                   86647
EmployeeName              Chris J Borchard
JobTitle            Airport Safety Officer
BasePay                            71420.4
OvertimePay                       16392.98
OtherPay                            3863.4
Benefits                          29513.73
TotalPay                          91676.78
TotalPayBenefits                 121190.51
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86646, dtype: object)
(86647, Id                                86648
EmployeeName        Sullivan K Phillips
JobTitle               Transit Operator
BasePay                        68478.46
OvertimePay                    11267.41
OtherPay                        6607.39
Benefits                       34836.28
TotalPay                       86353.26
TotalPayBenefits              121189.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86647, dtype: object)
(86648, Id                                        86649
EmployeeName                    Patrick B Quinn
JobTitle            Senior Management Assistant
BasePay                                89704.25
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31479.75
TotalPay                               89704.25
TotalPayBenefits                       121184.0
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86648, dtype: object)
(86649, Id                                          86650
EmployeeName                        Sarah H Duffy
JobTitle            Senior Administrative Analyst
BasePay                                   90114.1
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31069.04
TotalPay                                  90114.1
TotalPayBenefits                        121183.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86649, dtype: object)
(86650, Id                                          86651
EmployeeName                    Alanna M Wheatley
JobTitle            Senior Administrative Analyst
BasePay                                  85899.62
OvertimePay                                   0.0
OtherPay                                  3895.37
Benefits                                 31385.23
TotalPay                                 89794.99
TotalPayBenefits                        121180.22
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86650, dtype: object)
(86651, Id                             86652
EmployeeName             Peola  Lane
JobTitle            Transit Operator
BasePay                     68282.46
OvertimePay                 17119.34
OtherPay                     2209.35
Benefits                    33566.78
TotalPay                    87611.15
TotalPayBenefits           121177.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86651, dtype: object)
(86652, Id                             86653
EmployeeName        Steven A Motroni
JobTitle                     Glazier
BasePay                     86695.54
OvertimePay                      0.0
OtherPay                      2933.7
Benefits                    31540.66
TotalPay                    89629.24
TotalPayBenefits            121169.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86652, dtype: object)
(86653, Id                                   86654
EmployeeName                 Swati  Sharma
JobTitle            Sr. Environmental Spec
BasePay                           88876.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32274.33
TotalPay                          88876.03
TotalPayBenefits                 121150.36
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86653, dtype: object)
(86654, Id                             86655
EmployeeName         Eugene  Steptoe
JobTitle            Transit Operator
BasePay                     68913.87
OvertimePay                 12600.29
OtherPay                     5045.73
Benefits                    34589.93
TotalPay                    86559.89
TotalPayBenefits           121149.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86654, dtype: object)
(86655, Id                                           86656
EmployeeName                       Patrick W Darcy
JobTitle            Arborist Technician Supervisor
BasePay                                   89620.54
OvertimePay                                    0.0
OtherPay                                     25.65
Benefits                                  31494.99
TotalPay                                  89646.19
TotalPayBenefits                         121141.18
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86655, dtype: object)
(86656, Id                             86657
EmployeeName            Jose R Torna
JobTitle            Transit Operator
BasePay                     67328.31
OvertimePay                  19504.4
OtherPay                     1443.36
Benefits                    32864.92
TotalPay                    88276.07
TotalPayBenefits           121140.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86656, dtype: object)
(86657, Id                                86658
EmployeeName               Jose G Reyes
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                      243.54
OtherPay                       10193.07
Benefits                       31420.53
TotalPay                       89720.11
TotalPayBenefits              121140.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86657, dtype: object)
(86658, Id                                     86659
EmployeeName                     John  Aires
JobTitle            Chief Building Inspector
BasePay                             71920.69
OvertimePay                              0.0
OtherPay                            28311.03
Benefits                            20896.29
TotalPay                           100231.72
TotalPayBenefits                   121128.01
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86658, dtype: object)
(86659, Id                                           86660
EmployeeName                          Grace W Fung
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   88425.71
OvertimePay                                    0.0
OtherPay                                    1500.0
Benefits                                   31201.1
TotalPay                                  89925.71
TotalPayBenefits                         121126.81
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86659, dtype: object)
(86660, Id                             86661
EmployeeName          Chad R Thigpen
JobTitle            Training Officer
BasePay                     88989.72
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    32126.67
TotalPay                    88989.72
TotalPayBenefits           121116.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86660, dtype: object)
(86661, Id                                         86662
EmployeeName                      Brenda  Donald
JobTitle            Wastewater Control Inspector
BasePay                                 88757.02
OvertimePay                               125.14
OtherPay                                     0.0
Benefits                                32233.67
TotalPay                                88882.16
TotalPayBenefits                       121115.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86661, dtype: object)
(86662, Id                             86663
EmployeeName        Jonathan  Benton
JobTitle            Transit Operator
BasePay                      65123.5
OvertimePay                 17106.76
OtherPay                     5818.02
Benefits                    33063.42
TotalPay                    88048.28
TotalPayBenefits            121111.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86662, dtype: object)
(86663, Id                                86664
EmployeeName               John R Naval
JobTitle            Automotive Mechanic
BasePay                        74105.62
OvertimePay                     3701.93
OtherPay                       12452.35
Benefits                       30848.77
TotalPay                        90259.9
TotalPayBenefits              121108.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86663, dtype: object)
(86664, Id                             86665
EmployeeName        Bernardo  Cuevas
JobTitle            Registered Nurse
BasePay                     78535.48
OvertimePay                    815.4
OtherPay                    16279.51
Benefits                    25476.63
TotalPay                    95630.39
TotalPayBenefits           121107.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86664, dtype: object)
(86665, Id                               86666
EmployeeName         Sean M Birmingham
JobTitle            Building Inspector
BasePay                        86102.5
OvertimePay                    1748.61
OtherPay                        1304.0
Benefits                      31947.81
TotalPay                      89155.11
TotalPayBenefits             121102.92
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86665, dtype: object)
(86666, Id                                     86667
EmployeeName              Richard D Marshall
JobTitle            Senior Personnel Analyst
BasePay                             91088.67
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30008.57
TotalPay                            91088.67
TotalPayBenefits                   121097.24
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86666, dtype: object)
(86667, Id                                    86668
EmployeeName                  Azhar  Khaliq
JobTitle            Senior Street Inspector
BasePay                             86921.6
OvertimePay                         3195.03
OtherPay                                0.0
Benefits                           30976.66
TotalPay                           90116.63
TotalPayBenefits                  121093.29
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86667, dtype: object)
(86668, Id                                     86669
EmployeeName               Nanalisa  Rasaily
JobTitle            Patient Accounts Manager
BasePay                             88860.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            32222.63
TotalPay                            88860.01
TotalPayBenefits                   121082.64
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86668, dtype: object)
(86669, Id                             86670
EmployeeName         George J Murray
JobTitle            Transit Operator
BasePay                     66337.67
OvertimePay                 20797.52
OtherPay                     1557.54
Benefits                    32387.89
TotalPay                    88692.73
TotalPayBenefits           121080.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86669, dtype: object)
(86670, Id                             86671
EmployeeName           Maria T McKay
JobTitle            Training Officer
BasePay                     89628.76
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31441.91
TotalPay                    89628.76
TotalPayBenefits           121070.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86670, dtype: object)
(86671, Id                                        86672
EmployeeName                    Diana J Ramirez
JobTitle            Patient Accounts Supervisor
BasePay                                85185.01
OvertimePay                             4387.44
OtherPay                                    0.0
Benefits                               31490.85
TotalPay                               89572.45
TotalPayBenefits                       121063.3
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86671, dtype: object)
(86672, Id                             86673
EmployeeName        Cynthia D Hollis
JobTitle            Transit Operator
BasePay                      68793.1
OvertimePay                  16155.6
OtherPay                     2269.21
Benefits                    33837.41
TotalPay                    87217.91
TotalPayBenefits           121055.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86672, dtype: object)
(86673, Id                              86674
EmployeeName        Gerardo C Guillen
JobTitle             Transit Operator
BasePay                       67123.8
OvertimePay                  21135.61
OtherPay                       311.58
Benefits                     32479.84
TotalPay                     88570.99
TotalPayBenefits            121050.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86673, dtype: object)
(86674, Id                            86675
EmployeeName        Ralph O Hurtado
JobTitle               Truck Driver
BasePay                    80052.04
OvertimePay                 9517.39
OtherPay                    1582.51
Benefits                   29893.27
TotalPay                   91151.94
TotalPayBenefits          121045.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86674, dtype: object)
(86675, Id                                 86676
EmployeeName               Mark A Glover
JobTitle            Painter Supervisor 1
BasePay                         88501.02
OvertimePay                       122.36
OtherPay                          953.75
Benefits                        31458.91
TotalPay                        89577.13
TotalPayBenefits               121036.04
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86675, dtype: object)
(86676, Id                             86677
EmployeeName        Anthony F Parker
JobTitle            Transit Operator
BasePay                     64502.39
OvertimePay                 25026.23
OtherPay                      302.64
Benefits                    31201.57
TotalPay                    89831.26
TotalPayBenefits           121032.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86676, dtype: object)
(86677, Id                                86678
EmployeeName        Katherine C Trajano
JobTitle                         Welder
BasePay                         83090.5
OvertimePay                     11279.2
OtherPay                            0.0
Benefits                       26661.54
TotalPay                        94369.7
TotalPayBenefits              121031.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86677, dtype: object)
(86678, Id                                      86679
EmployeeName                 Eileen M Galarza
JobTitle            Licensed Vocational Nurse
BasePay                               71966.4
OvertimePay                          15309.19
OtherPay                              5123.17
Benefits                             28629.12
TotalPay                             92398.76
TotalPayBenefits                    121027.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86678, dtype: object)
(86679, Id                                   86680
EmployeeName               Travis J Howell
JobTitle            Administrative Analyst
BasePay                           88809.67
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32216.61
TotalPay                          88809.67
TotalPayBenefits                 121026.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86679, dtype: object)
(86680, Id                          86681
EmployeeName           Alan  Fong
JobTitle                Carpenter
BasePay                  84764.55
OvertimePay               5217.93
OtherPay                   481.92
Benefits                 30561.81
TotalPay                  90464.4
TotalPayBenefits        121026.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86680, dtype: object)
(86681, Id                                           86682
EmployeeName                        Rory H O'Neill
JobTitle            Electrical Transit System Mech
BasePay                                   82674.91
OvertimePay                                 435.93
OtherPay                                   6515.54
Benefits                                  31383.66
TotalPay                                  89626.38
TotalPayBenefits                         121010.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86681, dtype: object)
(86682, Id                                 86683
EmployeeName        Santiago B Lagandaon
JobTitle                Transit Operator
BasePay                         65251.59
OvertimePay                     22475.33
OtherPay                         1416.79
Benefits                        31866.16
TotalPay                        89143.71
TotalPayBenefits               121009.87
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86682, dtype: object)
(86683, Id                             86684
EmployeeName        Martin T Rivette
JobTitle                   Carpenter
BasePay                     89002.62
OvertimePay                   372.68
OtherPay                      267.92
Benefits                    31366.04
TotalPay                    89643.22
TotalPayBenefits           121009.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86683, dtype: object)
(86684, Id                            86685
EmployeeName        Dennis  English
JobTitle               Truck Driver
BasePay                    79751.79
OvertimePay                  916.44
OtherPay                     9088.6
Benefits                   31236.09
TotalPay                   89756.83
TotalPayBenefits          120992.92
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86684, dtype: object)
(86685, Id                                       86686
EmployeeName                Ricardo E Arguello
JobTitle            Protective Services Worker
BasePay                                89100.9
OvertimePay                                0.0
OtherPay                                1100.0
Benefits                               30792.0
TotalPay                               90200.9
TotalPayBenefits                      120992.9
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86685, dtype: object)
(86686, Id                                 86687
EmployeeName             Bernett  Porter
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                          0.0
OtherPay                         9409.75
Benefits                         31447.5
TotalPay                        89542.75
TotalPayBenefits               120990.25
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86686, dtype: object)
(86687, Id                                  86688
EmployeeName              Jessica M Brown
JobTitle            Medical Social Worker
BasePay                          88549.01
OvertimePay                           0.0
OtherPay                            250.0
Benefits                         32187.54
TotalPay                         88799.01
TotalPayBenefits                120986.55
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86687, dtype: object)
(86688, Id                             86689
EmployeeName        Gilbert  O'Guinn
JobTitle            Transit Operator
BasePay                     67363.78
OvertimePay                 20075.33
OtherPay                      811.58
Benefits                    32733.14
TotalPay                    88250.69
TotalPayBenefits           120983.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86688, dtype: object)
(86689, Id                          86690
EmployeeName        Joseph  Byrne
JobTitle                Carpenter
BasePay                  84764.51
OvertimePay                4485.0
OtherPay                  1053.92
Benefits                  30675.7
TotalPay                 90303.43
TotalPayBenefits        120979.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86689, dtype: object)
(86690, Id                                86691
EmployeeName             Daniel  Aguada
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                      8804.8
OtherPay                        2895.58
Benefits                       29992.55
TotalPay                       90983.89
TotalPayBenefits              120976.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86690, dtype: object)
(86691, Id                                         86692
EmployeeName                          Pamela  Su
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.06
OvertimePay                             16672.88
OtherPay                                  1728.0
Benefits                                28673.74
TotalPay                                92299.94
TotalPayBenefits                       120973.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86691, dtype: object)
(86692, Id                           86693
EmployeeName        Harry E Hetzer
JobTitle              Truck Driver
BasePay                    78263.4
OvertimePay                8851.92
OtherPay                   4152.27
Benefits                  29703.02
TotalPay                  91267.59
TotalPayBenefits         120970.61
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86692, dtype: object)
(86693, Id                             86694
EmployeeName           John  Higgins
JobTitle            Police Officer 3
BasePay                     57941.62
OvertimePay                      0.0
OtherPay                    46125.08
Benefits                    16899.53
TotalPay                    104066.7
TotalPayBenefits           120966.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86693, dtype: object)
(86694, Id                               86695
EmployeeName        Dorothy M Lockwood
JobTitle             Nursing Assistant
BasePay                        68391.0
OvertimePay                    24313.1
OtherPay                         898.0
Benefits                      27359.08
TotalPay                       93602.1
TotalPayBenefits             120961.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86694, dtype: object)
(86695, Id                             86696
EmployeeName         Reginald  Hicks
JobTitle            Transit Operator
BasePay                     67744.57
OvertimePay                 18992.91
OtherPay                     1199.66
Benefits                    33020.72
TotalPay                    87937.14
TotalPayBenefits           120957.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86695, dtype: object)
(86696, Id                                      86697
EmployeeName                   Eric C Sanchez
JobTitle            Diagnostic Imaging Tech I
BasePay                              82288.61
OvertimePay                           5607.56
OtherPay                               2200.0
Benefits                             30859.55
TotalPay                             90096.17
TotalPayBenefits                    120955.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86696, dtype: object)
(86697, Id                                86698
EmployeeName               Liam C Curry
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                      6176.7
OtherPay                         5886.5
Benefits                       30413.91
TotalPay                        90536.7
TotalPayBenefits              120950.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86697, dtype: object)
(86698, Id                             86699
EmployeeName        David  Hargraves
JobTitle            Transit Operator
BasePay                     67965.41
OvertimePay                 14895.39
OtherPay                     4181.65
Benefits                    33900.99
TotalPay                    87042.45
TotalPayBenefits           120943.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86698, dtype: object)
(86699, Id                                       86700
EmployeeName                       Peter  Tran
JobTitle            Asst Materials Coordinator
BasePay                               97365.51
OvertimePay                            3371.63
OtherPay                                   0.0
Benefits                              20181.65
TotalPay                             100737.14
TotalPayBenefits                     120918.79
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86699, dtype: object)
(86700, Id                             86701
EmployeeName           Erin A Caudle
JobTitle            Registered Nurse
BasePay                      82638.5
OvertimePay                  5317.09
OtherPay                     3542.48
Benefits                    29419.31
TotalPay                    91498.07
TotalPayBenefits           120917.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86700, dtype: object)
(86701, Id                                           86702
EmployeeName                        Mei Phee  Kung
JobTitle            Surgical Procedures Technician
BasePay                                    74144.3
OvertimePay                               16166.68
OtherPay                                   1963.24
Benefits                                  28642.33
TotalPay                                  92274.22
TotalPayBenefits                         120916.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86701, dtype: object)
(86702, Id                                86703
EmployeeName          Allison L Gienger
JobTitle            Public Health Nurse
BasePay                        89077.84
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31831.84
TotalPay                       89077.84
TotalPayBenefits              120909.68
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86702, dtype: object)
(86703, Id                            86704
EmployeeName        Dennis J McGill
JobTitle               Truck Driver
BasePay                     80052.0
OvertimePay                 8516.67
OtherPay                    2311.88
Benefits                   30027.09
TotalPay                   90880.55
TotalPayBenefits          120907.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86703, dtype: object)
(86704, Id                            86705
EmployeeName        Bela J Carreira
JobTitle                Firefighter
BasePay                    73476.29
OvertimePay                 8483.77
OtherPay                   12389.69
Benefits                   26557.64
TotalPay                   94349.75
TotalPayBenefits          120907.39
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86704, dtype: object)
(86705, Id                                   86706
EmployeeName                Arnel C Videna
JobTitle            Auto Svc Wrk Asst Sprv
BasePay                           70369.36
OvertimePay                       10778.92
OtherPay                          10095.93
Benefits                          29660.37
TotalPay                          91244.21
TotalPayBenefits                 120904.58
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86705, dtype: object)
(86706, Id                                     86707
EmployeeName                   James A Perry
JobTitle            Track Maintenance Worker
BasePay                              63683.5
OvertimePay                         20259.67
OtherPay                             8909.88
Benefits                            28045.66
TotalPay                            92853.05
TotalPayBenefits                   120898.71
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86706, dtype: object)
(86707, Id                                   86708
EmployeeName           Alison D Schlageter
JobTitle            Administrative Analyst
BasePay                           89444.41
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           31447.9
TotalPay                          89444.41
TotalPayBenefits                 120892.31
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86707, dtype: object)
(86708, Id                                   86709
EmployeeName               Gina M Gendotti
JobTitle            Administrative Analyst
BasePay                           89444.38
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           31447.9
TotalPay                          89444.38
TotalPayBenefits                 120892.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86708, dtype: object)
(86709, Id                                86710
EmployeeName                Steve Y Lai
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    26209.27
OtherPay                        6493.46
Benefits                       27060.91
TotalPay                       93830.73
TotalPayBenefits              120891.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86709, dtype: object)
(86710, Id                           86711
EmployeeName          Kevin R Quan
JobTitle            Accountant III
BasePay                   88771.76
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32119.57
TotalPay                  88771.76
TotalPayBenefits         120891.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86710, dtype: object)
(86711, Id                             86712
EmployeeName            Jefry M Liem
JobTitle            Transit Operator
BasePay                     63227.06
OvertimePay                 21869.48
OtherPay                     3448.03
Benefits                    32342.67
TotalPay                    88544.57
TotalPayBenefits           120887.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86711, dtype: object)
(86712, Id                                     86713
EmployeeName                 David B Hashemi
JobTitle            Senior Personnel Analyst
BasePay                             89372.26
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31512.41
TotalPay                            89372.26
TotalPayBenefits                   120884.67
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86712, dtype: object)
(86713, Id                               86714
EmployeeName        Dovia  Schexnayder
JobTitle              Mayoral Staff IX
BasePay                        82307.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      38574.01
TotalPay                       82307.5
TotalPayBenefits             120881.51
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86713, dtype: object)
(86714, Id                          86715
EmployeeName         Gary H Hsieh
JobTitle                Asst Engr
BasePay                  88618.45
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32262.82
TotalPay                 88618.45
TotalPayBenefits        120881.27
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86714, dtype: object)
(86715, Id                                      86716
EmployeeName              William J Leemaster
JobTitle            Psychiatric Social Worker
BasePay                              88467.67
OvertimePay                               0.0
OtherPay                              1246.98
Benefits                             31166.11
TotalPay                             89714.65
TotalPayBenefits                    120880.76
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86715, dtype: object)
(86716, Id                             86717
EmployeeName            Carl L Norde
JobTitle            Transit Operator
BasePay                     68293.43
OvertimePay                 15726.05
OtherPay                     4262.47
Benefits                    32595.83
TotalPay                    88281.95
TotalPayBenefits           120877.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86716, dtype: object)
(86717, Id                           86718
EmployeeName        Efren A Campos
JobTitle              Truck Driver
BasePay                   80052.06
OvertimePay                6978.44
OtherPay                    3573.0
Benefits                  30272.56
TotalPay                   90603.5
TotalPayBenefits         120876.06
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86717, dtype: object)
(86718, Id                                    86719
EmployeeName                 Jerad L Weiner
JobTitle            Program Support Analyst
BasePay                            88687.81
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           32182.08
TotalPay                           88687.81
TotalPayBenefits                  120869.89
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86718, dtype: object)
(86719, Id                                           86720
EmployeeName                         Jean A Poling
JobTitle            Planner 3-Environmental Review
BasePay                                   89380.54
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31487.56
TotalPay                                  89380.54
TotalPayBenefits                          120868.1
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86719, dtype: object)
(86720, Id                          86721
EmployeeName        Daniel F Phan
JobTitle            Special Nurse
BasePay                 100137.91
OvertimePay               2973.08
OtherPay                 16554.24
Benefits                  1196.65
TotalPay                119665.23
TotalPayBenefits        120861.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86720, dtype: object)
(86721, Id                                86722
EmployeeName              Robert  Lyons
JobTitle            Stationary Engineer
BasePay                        78783.55
OvertimePay                     5457.92
OtherPay                        6098.88
Benefits                        30513.0
TotalPay                       90340.35
TotalPayBenefits              120853.35
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86721, dtype: object)
(86722, Id                                      86723
EmployeeName                   Sarah E Perata
JobTitle            EMT/Paramedic/Firefighter
BasePay                               87760.3
OvertimePay                           1094.33
OtherPay                              2814.21
Benefits                             29181.55
TotalPay                             91668.84
TotalPayBenefits                    120850.39
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86722, dtype: object)
(86723, Id                                           86724
EmployeeName                        Bennie P G Lee
JobTitle            Electrical Transit System Mech
BasePay                                   81664.44
OvertimePay                                6800.61
OtherPay                                    2211.6
Benefits                                   30164.8
TotalPay                                  90676.65
TotalPayBenefits                         120841.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86723, dtype: object)
(86724, Id                             86725
EmployeeName         Archie  Huff Jr
JobTitle            Transit Operator
BasePay                     63525.28
OvertimePay                 19460.82
OtherPay                      5613.8
Benefits                    32239.85
TotalPay                     88599.9
TotalPayBenefits           120839.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86724, dtype: object)
(86725, Id                          86726
EmployeeName        Carl W Weaver
JobTitle                Carpenter
BasePay                  84764.53
OvertimePay               2770.29
OtherPay                   2330.0
Benefits                 30974.83
TotalPay                 89864.82
TotalPayBenefits        120839.65
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86725, dtype: object)
(86726, Id                                   86727
EmployeeName                Martin R Smith
JobTitle            Public SafetyComm Disp
BasePay                            77106.0
OvertimePay                        8193.88
OtherPay                           4731.39
Benefits                          30798.09
TotalPay                          90031.27
TotalPayBenefits                 120829.36
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86726, dtype: object)
(86727, Id                                86728
EmployeeName               Bruce E Diaz
JobTitle            Automotive Mechanic
BasePay                        68656.34
OvertimePay                     4671.79
OtherPay                       19955.59
Benefits                       27516.14
TotalPay                       93283.72
TotalPayBenefits              120799.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86727, dtype: object)
(86728, Id                             86729
EmployeeName            Jeffrey Q Li
JobTitle            Transit Operator
BasePay                      67953.5
OvertimePay                 18312.99
OtherPay                      692.64
Benefits                    33824.86
TotalPay                    86959.13
TotalPayBenefits           120783.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86728, dtype: object)
(86729, Id                                     86730
EmployeeName                Barbara  Jackson
JobTitle            Sr Cent Proc & Dist Tech
BasePay                              87696.0
OvertimePay                           998.69
OtherPay                               848.0
Benefits                            31225.21
TotalPay                            89542.69
TotalPayBenefits                    120767.9
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86729, dtype: object)
(86730, Id                                          86731
EmployeeName                        Yi-Ching  Kao
JobTitle            Senior Administrative Analyst
BasePay                                  99770.54
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 20995.93
TotalPay                                 99770.54
TotalPayBenefits                        120766.47
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86730, dtype: object)
(86731, Id                                86732
EmployeeName             Joseph M Jazuk
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                     2589.65
OtherPay                        8727.43
Benefits                       30970.85
TotalPay                       89790.59
TotalPayBenefits              120761.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86731, dtype: object)
(86732, Id                             86733
EmployeeName          Ying Chi  Feng
JobTitle            Transit Operator
BasePay                     67976.85
OvertimePay                  16031.5
OtherPay                     3093.76
Benefits                    33657.24
TotalPay                    87102.11
TotalPayBenefits           120759.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86732, dtype: object)
(86733, Id                                86734
EmployeeName        Edgardo S Bonifacio
JobTitle            Stationary Engineer
BasePay                         78544.9
OvertimePay                     5479.77
OtherPay                        6245.02
Benefits                       30479.62
TotalPay                       90269.69
TotalPayBenefits              120749.31
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86733, dtype: object)
(86734, Id                          86735
EmployeeName        Deric J Licko
JobTitle               Auditor II
BasePay                  88563.18
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  32176.2
TotalPay                 88563.18
TotalPayBenefits        120739.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86734, dtype: object)
(86735, Id                                      86736
EmployeeName                 Melvyn C Jarrett
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.09
OvertimePay                               0.0
OtherPay                               703.76
Benefits                             31408.82
TotalPay                             89317.85
TotalPayBenefits                    120726.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86735, dtype: object)
(86736, Id                                           86737
EmployeeName                          Mark J Cahee
JobTitle            Electr Instrmntn Tech Wtr Poll
BasePay                                   91173.65
OvertimePay                                    0.0
OtherPay                                    238.71
Benefits                                  29306.32
TotalPay                                  91412.36
TotalPayBenefits                         120718.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86736, dtype: object)
(86737, Id                             86738
EmployeeName        Michael J Jordan
JobTitle                  Bricklayer
BasePay                     87333.05
OvertimePay                      0.0
OtherPay                      2712.0
Benefits                     30666.2
TotalPay                    90045.05
TotalPayBenefits           120711.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86737, dtype: object)
(86738, Id                                           86739
EmployeeName                     Mitchell G Oliver
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                                4723.13
OtherPay                                   2674.11
Benefits                                  30632.33
TotalPay                                  90078.75
TotalPayBenefits                         120711.08
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86738, dtype: object)
(86739, Id                              86740
EmployeeName        Jose S Villanueva
JobTitle             Transit Operator
BasePay                      68286.54
OvertimePay                  15368.67
OtherPay                      2549.49
Benefits                     34489.24
TotalPay                      86204.7
TotalPayBenefits            120693.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86739, dtype: object)
(86740, Id                                     86741
EmployeeName                   Rhonda L Odom
JobTitle            Commercial Div Asst Sprv
BasePay                             81545.62
OvertimePay                              0.0
OtherPay                               94.22
Benefits                            39053.49
TotalPay                            81639.84
TotalPayBenefits                   120693.33
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86740, dtype: object)
(86741, Id                                          86742
EmployeeName                   Laurence C Roberts
JobTitle            Criminal Justice Specialist 2
BasePay                                  89270.92
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31418.52
TotalPay                                 89270.92
TotalPayBenefits                        120689.44
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86741, dtype: object)
(86742, Id                                      86743
EmployeeName                   Martin C Jones
JobTitle            Rehabilitation Svcs Coord
BasePay                              88614.06
OvertimePay                               0.0
OtherPay                               648.01
Benefits                             31408.94
TotalPay                             89262.07
TotalPayBenefits                    120671.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86742, dtype: object)
(86743, Id                                      86744
EmployeeName                 Cathrine Z Sneed
JobTitle            Rehabilitation Svcs Coord
BasePay                               88614.0
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31408.94
TotalPay                              89262.0
TotalPayBenefits                    120670.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86743, dtype: object)
(86744, Id                                      86745
EmployeeName                    Rodney K Choy
JobTitle            Rehabilitation Svcs Coord
BasePay                               88614.0
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             31408.94
TotalPay                              89262.0
TotalPayBenefits                    120670.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86744, dtype: object)
(86745, Id                                        86746
EmployeeName                 Anita S Ramanathan
JobTitle            Senior Physician Specialist
BasePay                                89939.75
OvertimePay                                 0.0
OtherPay                                4496.99
Benefits                               26231.85
TotalPay                               94436.74
TotalPayBenefits                      120668.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86745, dtype: object)
(86746, Id                                       86747
EmployeeName                       John L Cruz
JobTitle            Utility Plumber Apprentice
BasePay                               86588.46
OvertimePay                            4291.03
OtherPay                                   0.0
Benefits                              29783.38
TotalPay                              90879.49
TotalPayBenefits                     120662.87
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86746, dtype: object)
(86747, Id                                    86748
EmployeeName             Marshalyn  Simmons
JobTitle            Parking Control Officer
BasePay                             59201.4
OvertimePay                        29375.56
OtherPay                            5592.39
Benefits                           26492.31
TotalPay                           94169.35
TotalPayBenefits                  120661.66
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86747, dtype: object)
(86748, Id                                           86749
EmployeeName                      Ronald L Russell
JobTitle            IT Operations Support Admn III
BasePay                                    85755.3
OvertimePay                                    0.0
OtherPay                                   3497.84
Benefits                                  31391.57
TotalPay                                  89253.14
TotalPayBenefits                         120644.71
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86748, dtype: object)
(86749, Id                                  86750
EmployeeName               Lindsay  Evans
JobTitle            Medical Social Worker
BasePay                          88467.72
OvertimePay                           0.0
OtherPay                          1046.64
Benefits                         31126.25
TotalPay                         89514.36
TotalPayBenefits                120640.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86749, dtype: object)
(86750, Id                              86751
EmployeeName              Edward D To
JobTitle            Personnel Analyst
BasePay                      89215.58
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.58
TotalPayBenefits             120639.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86750, dtype: object)
(86751, Id                                 86752
EmployeeName        Jacqueline M Sanders
JobTitle               Personnel Analyst
BasePay                         89215.58
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31423.52
TotalPay                        89215.58
TotalPayBenefits                120639.1
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86751, dtype: object)
(86752, Id                              86753
EmployeeName           Maryann M Poon
JobTitle            Personnel Analyst
BasePay                      89215.54
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.54
TotalPayBenefits            120639.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86752, dtype: object)
(86753, Id                              86754
EmployeeName              Ada  Dupree
JobTitle            Personnel Analyst
BasePay                      89215.54
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.54
TotalPayBenefits            120639.06
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86753, dtype: object)
(86754, Id                               86755
EmployeeName        Angelica M Salazar
JobTitle             Personnel Analyst
BasePay                       89215.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31423.52
TotalPay                      89215.53
TotalPayBenefits             120639.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86754, dtype: object)
(86755, Id                              86756
EmployeeName            Melody G Doan
JobTitle            Personnel Analyst
BasePay                      89215.53
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.53
TotalPayBenefits            120639.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86755, dtype: object)
(86756, Id                              86757
EmployeeName               Kevin  Lee
JobTitle            Personnel Analyst
BasePay                      89215.52
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.52
TotalPayBenefits            120639.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86756, dtype: object)
(86757, Id                              86758
EmployeeName         Lourdes D Torres
JobTitle            Personnel Analyst
BasePay                      89215.52
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.52
TotalPayBenefits            120639.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86757, dtype: object)
(86758, Id                                 86759
EmployeeName        R Margarita  Recinos
JobTitle               Personnel Analyst
BasePay                         89215.52
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31423.52
TotalPay                        89215.52
TotalPayBenefits               120639.04
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86758, dtype: object)
(86759, Id                              86760
EmployeeName        Iris Li-Huei  Goh
JobTitle            Personnel Analyst
BasePay                      89215.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                     89215.51
TotalPayBenefits            120639.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86759, dtype: object)
(86760, Id                              86761
EmployeeName           Denise M Pieri
JobTitle            Personnel Analyst
BasePay                       89215.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                      89215.5
TotalPayBenefits            120639.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86760, dtype: object)
(86761, Id                              86762
EmployeeName        Cristyl F Beltran
JobTitle            Personnel Analyst
BasePay                       89215.5
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31423.52
TotalPay                      89215.5
TotalPayBenefits            120639.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86761, dtype: object)
(86762, Id                                         86763
EmployeeName                    Charles P Rivera
JobTitle            Health Program Coordinator 3
BasePay                                 99284.51
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                21349.17
TotalPay                                99284.51
TotalPayBenefits                       120633.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86762, dtype: object)
(86763, Id                                  86764
EmployeeName                 Greg  Sutter
JobTitle            Water Const&Main Supt
BasePay                          50557.53
OvertimePay                      21147.37
OtherPay                         33736.03
Benefits                         15192.11
TotalPay                        105440.93
TotalPayBenefits                120633.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86763, dtype: object)
(86764, Id                              86765
EmployeeName             Linda A Cole
JobTitle            Personnel Analyst
BasePay                      89213.96
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31418.05
TotalPay                     89213.96
TotalPayBenefits            120632.01
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86764, dtype: object)
(86765, Id                               86766
EmployeeName        Lorceli M Braganza
JobTitle             Personnel Analyst
BasePay                       89213.93
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31418.05
TotalPay                      89213.93
TotalPayBenefits             120631.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86765, dtype: object)
(86766, Id                                   86767
EmployeeName                 Deanna W Chan
JobTitle            Occupational Therapist
BasePay                           88969.44
OvertimePay                            0.0
OtherPay                             100.0
Benefits                          31562.31
TotalPay                          89069.44
TotalPayBenefits                 120631.75
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86766, dtype: object)
(86767, Id                                       86768
EmployeeName                     Xin Feng  Lin
JobTitle            Protective Services Worker
BasePay                               88718.95
OvertimePay                                0.0
OtherPay                                 440.0
Benefits                               31472.8
TotalPay                              89158.95
TotalPayBenefits                     120631.75
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86767, dtype: object)
(86768, Id                                           86769
EmployeeName                        Marcia  Romero
JobTitle            Dir of Act, Therapy & Vol Svcs
BasePay                                    86049.0
OvertimePay                                    0.0
OtherPay                                    3808.5
Benefits                                   30768.0
TotalPay                                   89857.5
TotalPayBenefits                          120625.5
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86768, dtype: object)
(86769, Id                             86770
EmployeeName                Dieu  Au
JobTitle            Transit Operator
BasePay                     65996.99
OvertimePay                 20096.18
OtherPay                     2114.16
Benefits                     32415.1
TotalPay                    88207.33
TotalPayBenefits           120622.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86769, dtype: object)
(86770, Id                                        86771
EmployeeName                James R Shackelford
JobTitle            Senior Physician Specialist
BasePay                                 89018.4
OvertimePay                                 0.0
OtherPay                                5839.73
Benefits                                25763.3
TotalPay                               94858.13
TotalPayBenefits                      120621.43
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86770, dtype: object)
(86771, Id                          86772
EmployeeName        Andrew  Evans
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               3339.95
OtherPay                  6367.13
Benefits                 30858.15
TotalPay                 89759.08
TotalPayBenefits        120617.23
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86771, dtype: object)
(86772, Id                                       86773
EmployeeName                     Ann M Bellesi
JobTitle            Senior Estate Investigator
BasePay                               89190.52
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31418.04
TotalPay                              89190.52
TotalPayBenefits                     120608.56
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86772, dtype: object)
(86773, Id                             86774
EmployeeName           Joseph W Rand
JobTitle            Transit Operator
BasePay                     70539.55
OvertimePay                 12415.99
OtherPay                     2833.52
Benefits                    34809.09
TotalPay                    85789.06
TotalPayBenefits           120598.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86773, dtype: object)
(86774, Id                                   86775
EmployeeName           Alexander S Palacio
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       23947.97
OtherPay                             898.0
Benefits                          27359.08
TotalPay                          93236.97
TotalPayBenefits                 120596.05
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86774, dtype: object)
(86775, Id                             86776
EmployeeName             Walter Y Ip
JobTitle            Transit Operator
BasePay                     67542.67
OvertimePay                 18800.41
OtherPay                      632.35
Benefits                    33612.27
TotalPay                    86975.43
TotalPayBenefits            120587.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86775, dtype: object)
(86776, Id                                   86777
EmployeeName               Tufoua G Peleki
JobTitle            Electrical Line Helper
BasePay                            72262.0
OvertimePay                       21021.74
OtherPay                            260.03
Benefits                           27039.2
TotalPay                          93543.77
TotalPayBenefits                 120582.97
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86776, dtype: object)
(86777, Id                              86778
EmployeeName        Felicidad M Lenon
JobTitle            Nursing Assistant
BasePay                      68175.06
OvertimePay                  18625.43
OtherPay                      5593.74
Benefits                     28181.78
TotalPay                     92394.23
TotalPayBenefits            120576.01
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86777, dtype: object)
(86778, Id                                           86779
EmployeeName                   Anselmo V Revelo Jr
JobTitle            IT Operations Support Admn III
BasePay                                   83120.01
OvertimePay                                1209.29
OtherPay                                   5229.29
Benefits                                  31017.33
TotalPay                                  89558.59
TotalPayBenefits                         120575.92
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86778, dtype: object)
(86779, Id                             86780
EmployeeName              Sary  Chan
JobTitle            Transit Operator
BasePay                     68322.26
OvertimePay                 17087.86
OtherPay                     1734.46
Benefits                    33414.16
TotalPay                    87144.58
TotalPayBenefits           120558.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86779, dtype: object)
(86780, Id                                           86781
EmployeeName                         James H Elkin
JobTitle            Electrical Transit System Mech
BasePay                                   82678.22
OvertimePay                                4613.92
OtherPay                                    2650.0
Benefits                                  30614.74
TotalPay                                  89942.14
TotalPayBenefits                         120556.88
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86780, dtype: object)
(86781, Id                              86782
EmployeeName        Jemar  Villasenor
JobTitle             Transit Operator
BasePay                      67202.53
OvertimePay                   18865.1
OtherPay                      1638.14
Benefits                     32848.43
TotalPay                     87705.77
TotalPayBenefits             120554.2
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86781, dtype: object)
(86782, Id                             86783
EmployeeName              Louis  Rue
JobTitle            Police Officer 3
BasePay                     84099.76
OvertimePay                      0.0
OtherPay                    11045.28
Benefits                    25389.05
TotalPay                    95145.04
TotalPayBenefits           120534.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86782, dtype: object)
(86783, Id                                86784
EmployeeName        Ngoc Trang Q Nguyen
JobTitle               Epidemiologist 2
BasePay                         93422.9
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        27097.6
TotalPay                        93422.9
TotalPayBenefits               120520.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86783, dtype: object)
(86784, Id                             86785
EmployeeName             Alf J Jomoc
JobTitle            Transit Operator
BasePay                     69380.01
OvertimePay                 11943.98
OtherPay                     4503.87
Benefits                    34682.82
TotalPay                    85827.86
TotalPayBenefits           120510.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86784, dtype: object)
(86785, Id                                86786
EmployeeName        Johnnie  Waller III
JobTitle               Transit Operator
BasePay                        68394.86
OvertimePay                     14410.3
OtherPay                         3690.7
Benefits                       34013.64
TotalPay                       86495.86
TotalPayBenefits               120509.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86785, dtype: object)
(86786, Id                                   86787
EmployeeName              Lex Amado B Huab
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       16920.94
OtherPay                           6709.15
Benefits                          28480.52
TotalPay                          92021.09
TotalPayBenefits                 120501.61
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86786, dtype: object)
(86787, Id                                   86788
EmployeeName                Diane  Paulsen
JobTitle            Public SafetyComm Disp
BasePay                            87533.6
OvertimePay                        1520.07
OtherPay                          11641.16
Benefits                          19796.06
TotalPay                         100694.83
TotalPayBenefits                 120490.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86787, dtype: object)
(86788, Id                             86789
EmployeeName         Ismael S Afonso
JobTitle            Transit Operator
BasePay                     69047.89
OvertimePay                  11678.2
OtherPay                     5051.51
Benefits                    34689.62
TotalPay                     85777.6
TotalPayBenefits           120467.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86788, dtype: object)
(86789, Id                          86790
EmployeeName         Jose  Campos
JobTitle               Dep Dir II
BasePay                   85149.2
OvertimePay                   0.0
OtherPay                  4271.67
Benefits                 31038.34
TotalPay                 89420.87
TotalPayBenefits        120459.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86789, dtype: object)
(86790, Id                                   86791
EmployeeName           Gonzalo D Rodriguez
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       16365.71
OtherPay                            7117.8
Benefits                          28584.09
TotalPay                          91874.51
TotalPayBenefits                  120458.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86790, dtype: object)
(86791, Id                            86792
EmployeeName        David M Chapman
JobTitle               Truck Driver
BasePay                     80052.0
OvertimePay                 6912.64
OtherPay                    3278.88
Benefits                   30214.56
TotalPay                   90243.52
TotalPayBenefits          120458.08
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86791, dtype: object)
(86792, Id                                   86793
EmployeeName        Olurazhidaan  Mitchell
JobTitle                 Personnel Analyst
BasePay                            89080.2
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31374.24
TotalPay                           89080.2
TotalPayBenefits                 120454.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86792, dtype: object)
(86793, Id                                         86794
EmployeeName                   Gwendolyn Y Smith
JobTitle            Health Program Coordinator 2
BasePay                                 88758.52
OvertimePay                                  0.0
OtherPay                                   350.0
Benefits                                31331.67
TotalPay                                89108.52
TotalPayBenefits                       120440.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86793, dtype: object)
(86794, Id                                      86795
EmployeeName                James D Stillwell
JobTitle            Pr Administrative Analyst
BasePay                               91742.1
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             28692.15
TotalPay                              91742.1
TotalPayBenefits                    120434.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86794, dtype: object)
(86795, Id                             86796
EmployeeName        Lissette G Souza
JobTitle              Deputy Sheriff
BasePay                      84693.3
OvertimePay                  1473.02
OtherPay                     4163.46
Benefits                    30101.07
TotalPay                    90329.78
TotalPayBenefits           120430.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86795, dtype: object)
(86796, Id                             86797
EmployeeName             Buu K Chung
JobTitle            Transit Operator
BasePay                     67911.64
OvertimePay                 13559.18
OtherPay                     4868.09
Benefits                    34091.84
TotalPay                    86338.91
TotalPayBenefits           120430.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86796, dtype: object)
(86797, Id                           86798
EmployeeName        Karen L Taylor
JobTitle            Safety Officer
BasePay                   92524.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  27897.53
TotalPay                  92524.51
TotalPayBenefits         120422.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86797, dtype: object)
(86798, Id                                      86799
EmployeeName                  Lauren M Monson
JobTitle            Attorney (Civil/Criminal)
BasePay                              99702.11
OvertimePay                               0.0
OtherPay                               937.52
Benefits                             19775.96
TotalPay                            100639.63
TotalPayBenefits                    120415.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86798, dtype: object)
(86799, Id                                         86800
EmployeeName                      Oscar  Rosales
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                             11044.94
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                90878.44
TotalPayBenefits                        120414.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86799, dtype: object)
(86800, Id                                86801
EmployeeName        Gregory  Richardson
JobTitle               Transit Operator
BasePay                        67530.55
OvertimePay                    14818.16
OtherPay                        4323.81
Benefits                       33741.98
TotalPay                       86672.52
TotalPayBenefits               120414.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86800, dtype: object)
(86801, Id                           86802
EmployeeName        Robert  Apland
JobTitle                 Carpenter
BasePay                    84764.5
OvertimePay                4617.03
OtherPay                     458.5
Benefits                  30569.15
TotalPay                  89840.03
TotalPayBenefits         120409.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86801, dtype: object)
(86802, Id                                           86803
EmployeeName                           Gary Y Wong
JobTitle            IT Operations Support Admn III
BasePay                                   85761.54
OvertimePay                                    0.0
OtherPay                                   3896.46
Benefits                                  30750.69
TotalPay                                   89658.0
TotalPayBenefits                         120408.69
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86802, dtype: object)
(86803, Id                                    86804
EmployeeName                Gretchen A Rude
JobTitle            Program Support Analyst
BasePay                            89030.13
OvertimePay                             0.0
OtherPay                               6.53
Benefits                           31370.77
TotalPay                           89036.66
TotalPayBenefits                  120407.43
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86803, dtype: object)
(86804, Id                             86805
EmployeeName        Anna C Golenberg
JobTitle            Registered Nurse
BasePay                     86043.65
OvertimePay                   6498.9
OtherPay                     1984.97
Benefits                    25865.63
TotalPay                    94527.52
TotalPayBenefits           120393.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86804, dtype: object)
(86805, Id                            86806
EmployeeName         Michael D Chow
JobTitle            General Laborer
BasePay                     62468.5
OvertimePay                28328.54
OtherPay                     2948.5
Benefits                   26636.69
TotalPay                   93745.54
TotalPayBenefits          120382.23
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86805, dtype: object)
(86806, Id                                      86807
EmployeeName               Johnny M De Castro
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          18445.81
OtherPay                              9337.32
Benefits                             28281.88
TotalPay                             92095.33
TotalPayBenefits                    120377.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86806, dtype: object)
(86807, Id                            86808
EmployeeName        Tara W Alkadiry
JobTitle              Special Nurse
BasePay                    118426.5
OvertimePay                  752.85
OtherPay                        0.0
Benefits                    1191.79
TotalPay                  119179.35
TotalPayBenefits          120371.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86807, dtype: object)
(86808, Id                                       86809
EmployeeName                      Gilbert  Jue
JobTitle            Protective Services Worker
BasePay                               89585.84
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30782.26
TotalPay                              89585.84
TotalPayBenefits                      120368.1
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86808, dtype: object)
(86809, Id                                         86810
EmployeeName                  Richard C Everhart
JobTitle            General Laborer Supervisor 1
BasePay                                  69202.0
OvertimePay                             21509.53
OtherPay                                 1885.95
Benefits                                27770.58
TotalPay                                92597.48
TotalPayBenefits                       120368.06
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86809, dtype: object)
(86810, Id                                  86811
EmployeeName            Jacqueline L Sabo
JobTitle            Emp & Training Spec 4
BasePay                          88992.04
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31369.53
TotalPay                         88992.04
TotalPayBenefits                120361.57
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86810, dtype: object)
(86811, Id                              86812
EmployeeName        Robert J Ruigomez
JobTitle                    Carpenter
BasePay                      84764.55
OvertimePay                   2259.03
OtherPay                       2353.5
Benefits                     30973.64
TotalPay                     89377.08
TotalPayBenefits            120350.72
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86811, dtype: object)
(86812, Id                                         86813
EmployeeName                  Michael J McGinley
JobTitle            Senior Medical Social Worker
BasePay                                 89662.77
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30684.23
TotalPay                                89662.77
TotalPayBenefits                        120347.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86812, dtype: object)
(86813, Id                                   86814
EmployeeName                    Kean H Tan
JobTitle            Social Work Supervisor
BasePay                           86859.03
OvertimePay                            0.0
OtherPay                            2120.0
Benefits                          31354.19
TotalPay                          88979.03
TotalPayBenefits                 120333.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86813, dtype: object)
(86814, Id                                      86815
EmployeeName                 Marina M Mendoza
JobTitle            Licensed Vocational Nurse
BasePay                              73587.69
OvertimePay                           9854.77
OtherPay                              7248.02
Benefits                             29639.26
TotalPay                             90690.48
TotalPayBenefits                    120329.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86814, dtype: object)
(86815, Id                             86816
EmployeeName               John  Lim
JobTitle            Transit Operator
BasePay                     68582.32
OvertimePay                 13163.99
OtherPay                     3650.87
Benefits                    34927.91
TotalPay                    85397.18
TotalPayBenefits           120325.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86815, dtype: object)
(86816, Id                                   86817
EmployeeName               Margo Y McMahon
JobTitle            Health Program Planner
BasePay                           88965.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           31351.9
TotalPay                          88965.04
TotalPayBenefits                 120316.94
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86816, dtype: object)
(86817, Id                                    86818
EmployeeName                      Loan T Le
JobTitle            Senior Benefits Analyst
BasePay                            88965.01
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31351.89
TotalPay                           88965.01
TotalPayBenefits                   120316.9
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 86817, dtype: object)
(86818, Id                                   86819
EmployeeName             Israel  Nieves Jr
JobTitle            Health Program Planner
BasePay                            88965.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31351.89
TotalPay                           88965.0
TotalPayBenefits                 120316.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86818, dtype: object)
(86819, Id                             86820
EmployeeName          Randall T Buck
JobTitle            Transit Operator
BasePay                     67105.44
OvertimePay                 19698.46
OtherPay                      884.98
Benefits                    32613.26
TotalPay                    87688.88
TotalPayBenefits           120302.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86819, dtype: object)
(86820, Id                                          86821
EmployeeName                    Maritza Z Sanchez
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               5245.63
OtherPay                                   1420.0
Benefits                                 30468.51
TotalPay                                 89825.63
TotalPayBenefits                        120294.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86820, dtype: object)
(86821, Id                             86822
EmployeeName        Jeffrey E Shives
JobTitle                Truck Driver
BasePay                     80052.02
OvertimePay                   5166.0
OtherPay                      3853.0
Benefits                    31221.76
TotalPay                    89071.02
TotalPayBenefits           120292.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86821, dtype: object)
(86822, Id                                        86823
EmployeeName            Felicia A Brown-Meadows
JobTitle            Counselor, Family Court Svc
BasePay                                85435.16
OvertimePay                                 0.0
OtherPay                                5947.17
Benefits                               28906.25
TotalPay                               91382.33
TotalPayBenefits                      120288.58
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86822, dtype: object)
(86823, Id                            86824
EmployeeName          Robert L Gray
JobTitle            Junior Engineer
BasePay                     87028.5
OvertimePay                 2256.22
OtherPay                        0.0
Benefits                    30986.4
TotalPay                   89284.72
TotalPayBenefits          120271.12
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86823, dtype: object)
(86824, Id                                           86825
EmployeeName                       Derek O Omokaro
JobTitle            IT Operations Support Admn III
BasePay                                   85761.52
OvertimePay                                    0.0
OtherPay                                   3761.63
Benefits                                  30732.71
TotalPay                                  89523.15
TotalPayBenefits                         120255.86
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86824, dtype: object)
(86825, Id                                          86826
EmployeeName                       Loraine E Cook
JobTitle            Senior Health Program Planner
BasePay                                   90395.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29853.77
TotalPay                                  90395.0
TotalPayBenefits                        120248.77
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86825, dtype: object)
(86826, Id                                       86827
EmployeeName                 Mihaela D Diamond
JobTitle            Protective Services Worker
BasePay                               88861.08
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31352.47
TotalPay                              88861.08
TotalPayBenefits                     120213.55
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86826, dtype: object)
(86827, Id                                   86828
EmployeeName                 Alla  Pecheny
JobTitle            Social Work Supervisor
BasePay                           86859.05
OvertimePay                            0.0
OtherPay                            2028.0
Benefits                          31324.87
TotalPay                          88887.05
TotalPayBenefits                 120211.92
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86827, dtype: object)
(86828, Id                             86829
EmployeeName           Lyka A Dorado
JobTitle            Transit Operator
BasePay                     66301.28
OvertimePay                 22485.27
OtherPay                       571.2
Benefits                    30844.43
TotalPay                    89357.75
TotalPayBenefits           120202.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86828, dtype: object)
(86829, Id                                   86830
EmployeeName        Abraham Paul  Figueroa
JobTitle               Automotive Mechanic
BasePay                           79213.04
OvertimePay                          482.3
OtherPay                           9270.71
Benefits                          31223.32
TotalPay                          88966.05
TotalPayBenefits                 120189.37
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86829, dtype: object)
(86830, Id                                86831
EmployeeName        Alfreda L Ledbetter
JobTitle             Transit Supervisor
BasePay                        86934.97
OvertimePay                     1155.81
OtherPay                        1533.25
Benefits                       30556.25
TotalPay                       89624.03
TotalPayBenefits              120180.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86830, dtype: object)
(86831, Id                          86832
EmployeeName           Jane Y Kao
JobTitle                Asst Engr
BasePay                   88075.4
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32097.32
TotalPay                  88075.4
TotalPayBenefits        120172.72
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86831, dtype: object)
(86832, Id                                86833
EmployeeName               Vernon  Ting
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                     8542.49
OtherPay                        3644.84
Benefits                       28694.09
TotalPay                       91470.84
TotalPayBenefits              120164.93
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86832, dtype: object)
(86833, Id                            86834
EmployeeName        Michael  Sorini
JobTitle                  Carpenter
BasePay                    84764.51
OvertimePay                 3734.02
OtherPay                     993.75
Benefits                   30672.56
TotalPay                   89492.28
TotalPayBenefits          120164.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86833, dtype: object)
(86834, Id                             86835
EmployeeName        Andrew T Trickel
JobTitle                     Painter
BasePay                     77948.03
OvertimePay                  8640.43
OtherPay                      2940.0
Benefits                     30634.5
TotalPay                    89528.46
TotalPayBenefits           120162.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86834, dtype: object)
(86835, Id                               86836
EmployeeName        Jennifer M Collins
JobTitle                   Librarian 2
BasePay                       88521.41
OvertimePay                        0.0
OtherPay                        628.93
Benefits                      31003.36
TotalPay                      89150.34
TotalPayBenefits              120153.7
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86835, dtype: object)
(86836, Id                          86837
EmployeeName          Ai Yi  Chen
JobTitle            Accountant IV
BasePay                  90428.65
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29715.91
TotalPay                 90428.65
TotalPayBenefits        120144.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86836, dtype: object)
(86837, Id                            86838
EmployeeName        Ira J Burroughs
JobTitle                Firefighter
BasePay                    85097.93
OvertimePay                 3006.79
OtherPay                     2941.6
Benefits                    29094.1
TotalPay                   91046.32
TotalPayBenefits          120140.42
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86837, dtype: object)
(86838, Id                                           86839
EmployeeName                   Ma Digna R Bautista
JobTitle            Worker's Compensation Adjuster
BasePay                                   88182.33
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31302.15
TotalPay                                  88830.33
TotalPayBenefits                         120132.48
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86838, dtype: object)
(86839, Id                             86840
EmployeeName            Judy P Chang
JobTitle            Training Officer
BasePay                     88939.11
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31187.56
TotalPay                    88939.11
TotalPayBenefits           120126.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86839, dtype: object)
(86840, Id                                     86841
EmployeeName                Mario A Guerrero
JobTitle            Counselor, Juvenile Hall
BasePay                              67554.0
OvertimePay                         22695.75
OtherPay                             2928.09
Benefits                            26944.63
TotalPay                            93177.84
TotalPayBenefits                   120122.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86840, dtype: object)
(86841, Id                                      86842
EmployeeName                     Anne R Irwin
JobTitle            Attorney (Civil/Criminal)
BasePay                               91571.5
OvertimePay                               0.0
OtherPay                              1121.59
Benefits                             27426.52
TotalPay                             92693.09
TotalPayBenefits                    120119.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86841, dtype: object)
(86842, Id                             86843
EmployeeName              Dilak  Lau
JobTitle            Transit Operator
BasePay                     66850.43
OvertimePay                 15340.63
OtherPay                      4469.7
Benefits                    33455.85
TotalPay                    86660.76
TotalPayBenefits           120116.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86842, dtype: object)
(86843, Id                                86844
EmployeeName        David E Williams-Jr
JobTitle               Transit Operator
BasePay                        64950.17
OvertimePay                    18632.42
OtherPay                        4095.02
Benefits                       32436.57
TotalPay                       87677.61
TotalPayBenefits              120114.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86843, dtype: object)
(86844, Id                             86845
EmployeeName          Will A Fuentes
JobTitle            Transit Operator
BasePay                     66970.56
OvertimePay                  19007.2
OtherPay                     1434.43
Benefits                    32701.91
TotalPay                    87412.19
TotalPayBenefits            120114.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86844, dtype: object)
(86845, Id                                          86846
EmployeeName                  Veronica L Martinez
JobTitle            Senior Administrative Analyst
BasePay                                   88016.5
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32093.94
TotalPay                                  88016.5
TotalPayBenefits                        120110.44
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86845, dtype: object)
(86846, Id                             86847
EmployeeName           Leon D Dorsey
JobTitle            Transit Operator
BasePay                     67424.53
OvertimePay                 17897.79
OtherPay                      1761.9
Benefits                    33024.39
TotalPay                    87084.22
TotalPayBenefits           120108.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86846, dtype: object)
(86847, Id                                           86848
EmployeeName                       Leslie I Nieves
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   85347.17
OvertimePay                                    0.0
OtherPay                                   2713.47
Benefits                                  32044.07
TotalPay                                  88060.64
TotalPayBenefits                         120104.71
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86847, dtype: object)
(86848, Id                                         86849
EmployeeName                         David M Dao
JobTitle            Health Program Coordinator 2
BasePay                                  74040.0
OvertimePay                                  0.0
OtherPay                                 17445.6
Benefits                                28607.74
TotalPay                                 91485.6
TotalPayBenefits                       120093.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86848, dtype: object)
(86849, Id                                         86850
EmployeeName                       John A Tambis
JobTitle            Health Program Coordinator 2
BasePay                                 88758.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.68
TotalPay                                88758.53
TotalPayBenefits                       120090.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86849, dtype: object)
(86850, Id                                         86851
EmployeeName                         Nikkie S Ho
JobTitle            Health Program Coordinator 2
BasePay                                 88758.52
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.67
TotalPay                                88758.52
TotalPayBenefits                       120090.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86850, dtype: object)
(86851, Id                                         86852
EmployeeName               Sheila  Davis-Jackson
JobTitle            Health Program Coordinator 2
BasePay                                 88758.51
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.65
TotalPay                                88758.51
TotalPayBenefits                       120090.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86851, dtype: object)
(86852, Id                                         86853
EmployeeName                   Mario A Hernandez
JobTitle            Health Program Coordinator 2
BasePay                                  88758.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.65
TotalPay                                 88758.5
TotalPayBenefits                       120090.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86852, dtype: object)
(86853, Id                                         86854
EmployeeName                Houmpheng  Banouvong
JobTitle            Health Program Coordinator 2
BasePay                                  88758.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.65
TotalPay                                 88758.5
TotalPayBenefits                       120090.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86853, dtype: object)
(86854, Id                                         86855
EmployeeName                     Jenee G Johnson
JobTitle            Health Program Coordinator 2
BasePay                                  88758.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31331.65
TotalPay                                 88758.5
TotalPayBenefits                       120090.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86854, dtype: object)
(86855, Id                                 86856
EmployeeName            Nicholas  Alford
JobTitle            Sewer Service Worker
BasePay                         89154.71
OvertimePay                          0.0
OtherPay                            20.0
Benefits                        30912.26
TotalPay                        89174.71
TotalPayBenefits               120086.97
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86855, dtype: object)
(86856, Id                                  86857
EmployeeName                Shuwen  Huang
JobTitle            Medical Social Worker
BasePay                           80384.0
OvertimePay                           0.0
OtherPay                          7653.23
Benefits                         32049.31
TotalPay                         88037.23
TotalPayBenefits                120086.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86856, dtype: object)
(86857, Id                                      86858
EmployeeName                    William S Lin
JobTitle            Attorney (Civil/Criminal)
BasePay                              90372.52
OvertimePay                               0.0
OtherPay                                625.0
Benefits                             29086.02
TotalPay                             90997.52
TotalPayBenefits                    120083.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86857, dtype: object)
(86858, Id                                   86859
EmployeeName                  Araceli C Uy
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       23584.33
OtherPay                             773.8
Benefits                          27328.51
TotalPay                          92749.13
TotalPayBenefits                 120077.64
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86858, dtype: object)
(86859, Id                              86860
EmployeeName        Michael A Rodgers
JobTitle                 Truck Driver
BasePay                       80052.0
OvertimePay                  10281.42
OtherPay                        140.0
Benefits                     29600.02
TotalPay                     90473.42
TotalPayBenefits            120073.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86859, dtype: object)
(86860, Id                                         86861
EmployeeName                     Carol R Chapman
JobTitle            Health Program Coordinator 2
BasePay                                  88758.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31314.75
TotalPay                                 88758.5
TotalPayBenefits                       120073.25
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86860, dtype: object)
(86861, Id                                       86862
EmployeeName                    William T Hill
JobTitle            Counselor, Log Cabin Ranch
BasePay                               66409.82
OvertimePay                           24207.31
OtherPay                                2124.9
Benefits                              27327.33
TotalPay                              92742.03
TotalPayBenefits                     120069.36
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86861, dtype: object)
(86862, Id                              86863
EmployeeName              Vivian M Wu
JobTitle            Personnel Analyst
BasePay                      88735.13
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31331.34
TotalPay                     88735.13
TotalPayBenefits            120066.47
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86862, dtype: object)
(86863, Id                                     86864
EmployeeName                     Tanya R Red
JobTitle            Deputy Probation Officer
BasePay                              90576.6
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29488.95
TotalPay                             90576.6
TotalPayBenefits                   120065.55
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86863, dtype: object)
(86864, Id                              86865
EmployeeName        Ronnie J Phillips
JobTitle             Transit Operator
BasePay                      65781.47
OvertimePay                  20354.04
OtherPay                      1695.96
Benefits                     32222.74
TotalPay                     87831.47
TotalPayBenefits            120054.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86864, dtype: object)
(86865, Id                                         86866
EmployeeName                 Christopher  Rubino
JobTitle            Health Program Coordinator 2
BasePay                                  88758.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31281.52
TotalPay                                 88758.5
TotalPayBenefits                       120040.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86865, dtype: object)
(86866, Id                             86867
EmployeeName             John H Chan
JobTitle            Transit Operator
BasePay                     66588.83
OvertimePay                  19650.8
OtherPay                     1306.26
Benefits                    32477.58
TotalPay                    87545.89
TotalPayBenefits           120023.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86866, dtype: object)
(86867, Id                               86868
EmployeeName        Alejandro A Molina
JobTitle            Transit Supervisor
BasePay                       80935.33
OvertimePay                    5701.35
OtherPay                       3082.89
Benefits                      30298.73
TotalPay                      89719.57
TotalPayBenefits              120018.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86867, dtype: object)
(86868, Id                             86869
EmployeeName                 De  Lam
JobTitle            Transit Operator
BasePay                     66440.06
OvertimePay                 21054.98
OtherPay                       372.3
Benefits                    32141.81
TotalPay                    87867.34
TotalPayBenefits           120009.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86868, dtype: object)
(86869, Id                                      86870
EmployeeName                   Paul J Brennan
JobTitle            Attorney (Civil/Criminal)
BasePay                              67237.61
OvertimePay                               0.0
OtherPay                             33192.77
Benefits                             19577.44
TotalPay                            100430.38
TotalPayBenefits                    120007.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86869, dtype: object)
(86870, Id                                  86871
EmployeeName        Anthony J Castellanos
JobTitle                   Police Officer
BasePay                          90284.69
OvertimePay                           0.0
OtherPay                           850.62
Benefits                         28867.69
TotalPay                         91135.31
TotalPayBenefits                 120003.0
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86870, dtype: object)
(86871, Id                               86872
EmployeeName              Mason K Fong
JobTitle            Payroll Supervisor
BasePay                       87325.21
OvertimePay                        0.0
OtherPay                       1641.41
Benefits                      31032.21
TotalPay                      88966.62
TotalPayBenefits             119998.83
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86871, dtype: object)
(86872, Id                              86873
EmployeeName        Timothy C Alemany
JobTitle              General Laborer
BasePay                       62468.5
OvertimePay                  18769.03
OtherPay                      12203.3
Benefits                     26540.06
TotalPay                     93440.83
TotalPayBenefits            119980.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86872, dtype: object)
(86873, Id                                      86874
EmployeeName               Nestor C Laurencio
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          13016.43
OtherPay                             13572.66
Benefits                             29076.52
TotalPay                             90901.29
TotalPayBenefits                    119977.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86873, dtype: object)
(86874, Id                                   86875
EmployeeName              Chona E Laranang
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       16844.32
OtherPay                            6329.2
Benefits                          28408.94
TotalPay                          91564.52
TotalPayBenefits                 119973.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86874, dtype: object)
(86875, Id                                           86876
EmployeeName                      Wade W Wietgrefe
JobTitle            Planner 3-Environmental Review
BasePay                                   87895.17
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32068.45
TotalPay                                  87895.17
TotalPayBenefits                         119963.62
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86875, dtype: object)
(86876, Id                             86877
EmployeeName             Gordon  Yee
JobTitle            Transit Operator
BasePay                     68928.65
OvertimePay                  12842.6
OtherPay                      3858.9
Benefits                    34332.88
TotalPay                    85630.15
TotalPayBenefits           119963.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86876, dtype: object)
(86877, Id                                           86878
EmployeeName                       Catherine C Art
JobTitle            IT Operations Support Admin IV
BasePay                                    90236.3
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29725.53
TotalPay                                   90236.3
TotalPayBenefits                         119961.83
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86877, dtype: object)
(86878, Id                          86879
EmployeeName        Richard W Low
JobTitle                Asst Engr
BasePay                  87903.13
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 32057.88
TotalPay                 87903.13
TotalPayBenefits        119961.01
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86878, dtype: object)
(86879, Id                            86880
EmployeeName        Karen  Sundheim
JobTitle                Librarian 2
BasePay                    87152.46
OvertimePay                     0.0
OtherPay                    1964.63
Benefits                   30838.01
TotalPay                   89117.09
TotalPayBenefits           119955.1
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86879, dtype: object)
(86880, Id                             86881
EmployeeName         Maria M Alegria
JobTitle            Transit Operator
BasePay                     65948.57
OvertimePay                 20379.34
OtherPay                     1413.06
Benefits                    32202.22
TotalPay                    87740.97
TotalPayBenefits           119943.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86880, dtype: object)
(86881, Id                                   86882
EmployeeName                George  Castro
JobTitle            Water Quality Tech III
BasePay                           87028.52
OvertimePay                         1924.8
OtherPay                               0.0
Benefits                           30986.4
TotalPay                          88953.32
TotalPayBenefits                 119939.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86881, dtype: object)
(86882, Id                                           86883
EmployeeName                         Shana M Dines
JobTitle            Employee Relations Representat
BasePay                                   87840.53
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  32092.22
TotalPay                                  87840.53
TotalPayBenefits                         119932.75
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86882, dtype: object)
(86883, Id                             86884
EmployeeName        Thomas R Redmond
JobTitle              Police Officer
BasePay                     84459.01
OvertimePay                  2796.78
OtherPay                     1585.15
Benefits                    31075.05
TotalPay                    88840.94
TotalPayBenefits           119915.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86883, dtype: object)
(86884, Id                                      86885
EmployeeName                   Jose  Guardado
JobTitle            Architectural Assistant 2
BasePay                              85763.12
OvertimePay                           3412.52
OtherPay                                  0.0
Benefits                             30737.96
TotalPay                             89175.64
TotalPayBenefits                     119913.6
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86884, dtype: object)
(86885, Id                                86886
EmployeeName           Francis W Morris
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     6104.67
OtherPay                        5076.43
Benefits                       30247.17
TotalPay                        89654.6
TotalPayBenefits              119901.77
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86885, dtype: object)
(86886, Id                                  86887
EmployeeName               Liliana M Diaz
JobTitle            Medical Social Worker
BasePay                          87394.92
OvertimePay                           0.0
OtherPay                          1584.44
Benefits                         30918.04
TotalPay                         88979.36
TotalPayBenefits                 119897.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86886, dtype: object)
(86887, Id                           86888
EmployeeName        Sean A Kerrisk
JobTitle                 Carpenter
BasePay                   84764.56
OvertimePay                 1645.5
OtherPay                    2483.5
Benefits                   31002.1
TotalPay                  88893.56
TotalPayBenefits         119895.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86887, dtype: object)
(86888, Id                                         86889
EmployeeName                     Charles P Mayer
JobTitle            Health Program Coordinator 3
BasePay                                  87817.7
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                32071.51
TotalPay                                 87817.7
TotalPayBenefits                       119889.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86888, dtype: object)
(86889, Id                                       86890
EmployeeName                  Jennifer  Curley
JobTitle            Protective Services Worker
BasePay                               88836.36
OvertimePay                                0.0
OtherPay                                 604.5
Benefits                              30447.44
TotalPay                              89440.86
TotalPayBenefits                      119888.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86889, dtype: object)
(86890, Id                                          86891
EmployeeName                 Michael J O'Driscoll
JobTitle            Operating Engineer, Universal
BasePay                                  84373.87
OvertimePay                               4502.85
OtherPay                                   1320.7
Benefits                                 29677.29
TotalPay                                 90197.42
TotalPayBenefits                        119874.71
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86890, dtype: object)
(86891, Id                              86892
EmployeeName         Eufemia R Lawson
JobTitle            Nursing Assistant
BasePay                      68391.01
OvertimePay                  21384.12
OtherPay                       2440.3
Benefits                     27657.81
TotalPay                     92215.43
TotalPayBenefits            119873.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86891, dtype: object)
(86892, Id                             86893
EmployeeName        Noe D Villarreal
JobTitle                Cement Mason
BasePay                      74990.5
OvertimePay                 13859.69
OtherPay                      2054.0
Benefits                    28963.84
TotalPay                    90904.19
TotalPayBenefits           119868.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86892, dtype: object)
(86893, Id                            86894
EmployeeName        Joseph H Rosson
JobTitle                  Locksmith
BasePay                     84764.5
OvertimePay                 3527.42
OtherPay                      141.0
Benefits                   31430.78
TotalPay                   88432.92
TotalPayBenefits           119863.7
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86893, dtype: object)
(86894, Id                                      86895
EmployeeName                    Hale L Guerra
JobTitle            Pr Administrative Analyst
BasePay                              88099.27
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31760.92
TotalPay                             88099.27
TotalPayBenefits                    119860.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86894, dtype: object)
(86895, Id                               86896
EmployeeName              Ilma  Batres
JobTitle            Program Specialist
BasePay                       87318.06
OvertimePay                     227.39
OtherPay                        1080.0
Benefits                      31233.84
TotalPay                      88625.45
TotalPayBenefits             119859.29
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86895, dtype: object)
(86896, Id                          86897
EmployeeName        Denis G Young
JobTitle                Carpenter
BasePay                  84764.54
OvertimePay               1469.13
OtherPay                   2597.5
Benefits                 31026.41
TotalPay                 88831.17
TotalPayBenefits        119857.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86896, dtype: object)
(86897, Id                                   86898
EmployeeName            Joanne Y Kaneshiro
JobTitle            Occupational Therapist
BasePay                           90460.14
OvertimePay                            0.0
OtherPay                             440.0
Benefits                          28955.73
TotalPay                          90900.14
TotalPayBenefits                 119855.87
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86897, dtype: object)
(86898, Id                                   86899
EmployeeName                Maria  Neilson
JobTitle            Public SafetyComm Supv
BasePay                           81507.68
OvertimePay                        3238.41
OtherPay                           6092.37
Benefits                          29014.75
TotalPay                          90838.46
TotalPayBenefits                 119853.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86898, dtype: object)
(86899, Id                               86900
EmployeeName        Andrew J Rodriguez
JobTitle                Deputy Sheriff
BasePay                       84296.15
OvertimePay                    3478.51
OtherPay                       1067.45
Benefits                      31009.07
TotalPay                      88842.11
TotalPayBenefits             119851.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86899, dtype: object)
(86900, Id                           86901
EmployeeName        Steven P Deleo
JobTitle            Biologist I/II
BasePay                   95961.54
OvertimePay                    0.0
OtherPay                   4651.67
Benefits                  19237.31
TotalPay                 100613.21
TotalPayBenefits         119850.52
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86900, dtype: object)
(86901, Id                                          86902
EmployeeName                    Estrella Y Lander
JobTitle            Asst General Services Manager
BasePay                                  81065.51
OvertimePay                                   0.0
OtherPay                                    459.0
Benefits                                 38318.74
TotalPay                                 81524.51
TotalPayBenefits                        119843.25
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86901, dtype: object)
(86902, Id                          86903
EmployeeName        Victor W Wong
JobTitle                Locksmith
BasePay                  84764.55
OvertimePay                2268.0
OtherPay                   1170.0
Benefits                  31629.2
TotalPay                 88202.55
TotalPayBenefits        119831.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86902, dtype: object)
(86903, Id                                   86904
EmployeeName              Manuel  San Juan
JobTitle            Water QualityTech I/II
BasePay                           80903.54
OvertimePay                        9166.06
OtherPay                               0.0
Benefits                          29761.18
TotalPay                           90069.6
TotalPayBenefits                 119830.78
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86903, dtype: object)
(86904, Id                                     86905
EmployeeName                   Keith Z Jones
JobTitle            Sewer Maintenance Worker
BasePay                              69891.5
OvertimePay                         16961.14
OtherPay                             4393.46
Benefits                            28573.91
TotalPay                             91246.1
TotalPayBenefits                   119820.01
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86904, dtype: object)
(86905, Id                                 86906
EmployeeName               Luis  Aguilar
JobTitle            Sewer Service Worker
BasePay                         84098.64
OvertimePay                      1620.38
OtherPay                         2345.54
Benefits                        31742.81
TotalPay                        88064.56
TotalPayBenefits               119807.37
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 86905, dtype: object)
(86906, Id                                86907
EmployeeName        Vawanda J Ferdinand
JobTitle               Transit Operator
BasePay                        70791.94
OvertimePay                    13601.65
OtherPay                         981.08
Benefits                       34429.25
TotalPay                       85374.67
TotalPayBenefits              119803.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86906, dtype: object)
(86907, Id                                86908
EmployeeName        Laurie D Jurkiewicz
JobTitle                  Nurse Midwife
BasePay                        89760.86
OvertimePay                     2920.05
OtherPay                         443.69
Benefits                       26674.55
TotalPay                        93124.6
TotalPayBenefits              119799.15
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86907, dtype: object)
(86908, Id                                         86909
EmployeeName                   Marise  Rodriguez
JobTitle            Health Program Coordinator 3
BasePay                                 89356.13
OvertimePay                                  0.0
OtherPay                                   280.8
Benefits                                30157.21
TotalPay                                89636.93
TotalPayBenefits                       119794.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86908, dtype: object)
(86909, Id                             86910
EmployeeName              Simon C Ma
JobTitle            Transit Operator
BasePay                     65154.18
OvertimePay                 21573.28
OtherPay                     1278.12
Benefits                    31785.69
TotalPay                    88005.58
TotalPayBenefits           119791.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86909, dtype: object)
(86910, Id                            86911
EmployeeName        Lalesh A Sharma
JobTitle             Assoc Engineer
BasePay                    87738.21
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   32051.02
TotalPay                   87738.21
TotalPayBenefits          119789.23
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86910, dtype: object)
(86911, Id                                86912
EmployeeName              Jesus B Reyes
JobTitle            Stationary Engineer
BasePay                        80165.71
OvertimePay                      2621.1
OtherPay                         6245.6
Benefits                       30752.47
TotalPay                       89032.41
TotalPayBenefits              119784.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86911, dtype: object)
(86912, Id                                  86913
EmployeeName          Donald R Nyhagen Jr
JobTitle            Medical Social Worker
BasePay                          87879.91
OvertimePay                           0.0
OtherPay                           977.31
Benefits                         30925.97
TotalPay                         88857.22
TotalPayBenefits                119783.19
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86912, dtype: object)
(86913, Id                                86914
EmployeeName              Sam Wei X Lee
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                       848.8
OtherPay                        8532.38
Benefits                       31106.22
TotalPay                       88664.69
TotalPayBenefits              119770.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86913, dtype: object)
(86914, Id                                       86915
EmployeeName                   Yisel O Ledezma
JobTitle            Protective Services Worker
BasePay                               87085.03
OvertimePay                                0.0
OtherPay                                1420.0
Benefits                              31261.52
TotalPay                              88505.03
TotalPayBenefits                     119766.55
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86914, dtype: object)
(86915, Id                                   86916
EmployeeName               Kathryn J Repka
JobTitle            Public SafetyComm Disp
BasePay                            77120.0
OvertimePay                         7103.7
OtherPay                           4740.25
Benefits                          30794.55
TotalPay                          88963.95
TotalPayBenefits                  119758.5
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86915, dtype: object)
(86916, Id                                      86917
EmployeeName                    HoiYuen J Lee
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          13891.94
OtherPay                             12648.22
Benefits                             28904.62
TotalPay                             90852.36
TotalPayBenefits                    119756.98
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86916, dtype: object)
(86917, Id                             86918
EmployeeName            Walter J Lei
JobTitle            Transit Operator
BasePay                     68614.84
OvertimePay                 15790.02
OtherPay                     1779.63
Benefits                    33568.78
TotalPay                    86184.49
TotalPayBenefits           119753.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86917, dtype: object)
(86918, Id                             86919
EmployeeName          Wei Tao  Zhang
JobTitle            Transit Operator
BasePay                      66303.1
OvertimePay                 20691.84
OtherPay                      601.05
Benefits                    32152.94
TotalPay                    87595.99
TotalPayBenefits           119748.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86918, dtype: object)
(86919, Id                                   86920
EmployeeName             Miriam T Celestan
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       23889.37
OtherPay                             250.0
Benefits                          27216.08
TotalPay                          92530.37
TotalPayBenefits                 119746.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86919, dtype: object)
(86920, Id                                   86921
EmployeeName               Julia A Salinas
JobTitle            Performance Analyst II
BasePay                           87736.25
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          32007.94
TotalPay                          87736.25
TotalPayBenefits                 119744.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86920, dtype: object)
(86921, Id                             86922
EmployeeName           Milton  James
JobTitle            Transit Operator
BasePay                     69015.69
OvertimePay                 13701.25
OtherPay                     2919.41
Benefits                    34100.92
TotalPay                    85636.35
TotalPayBenefits           119737.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86921, dtype: object)
(86922, Id                             86923
EmployeeName            Trina L Boyd
JobTitle            Transit Operator
BasePay                     69751.38
OvertimePay                 13729.33
OtherPay                     2051.81
Benefits                    34204.27
TotalPay                    85532.52
TotalPayBenefits           119736.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86922, dtype: object)
(86923, Id                             86924
EmployeeName          Grand A Gochez
JobTitle            Transit Operator
BasePay                     62680.72
OvertimePay                 20986.54
OtherPay                     4675.79
Benefits                    31393.45
TotalPay                    88343.05
TotalPayBenefits            119736.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86923, dtype: object)
(86924, Id                                          86925
EmployeeName                          Wilson L Ng
JobTitle            Senior Administrative Analyst
BasePay                                  87691.01
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 32037.36
TotalPay                                 87691.01
TotalPayBenefits                        119728.37
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86924, dtype: object)
(86925, Id                             86926
EmployeeName        Rudy T Zamora Jr
JobTitle              Deputy Sheriff
BasePay                     81376.13
OvertimePay                   1365.0
OtherPay                      8140.8
Benefits                    28840.04
TotalPay                    90881.93
TotalPayBenefits           119721.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86925, dtype: object)
(86926, Id                                       86927
EmployeeName                  Amy Lynda  Hipps
JobTitle            Protective Services Worker
BasePay                               83328.02
OvertimePay                                0.0
OtherPay                                5133.5
Benefits                              31259.08
TotalPay                              88461.52
TotalPayBenefits                      119720.6
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86926, dtype: object)
(86927, Id                              86928
EmployeeName        Annabelle  Arenas
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  17640.46
OtherPay                      5436.24
Benefits                     28246.61
TotalPay                      91467.7
TotalPayBenefits            119714.31
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86927, dtype: object)
(86928, Id                                   86929
EmployeeName                    Chun Y Law
JobTitle            Social Work Supervisor
BasePay                           86859.04
OvertimePay                            0.0
OtherPay                            1600.0
Benefits                          31250.21
TotalPay                          88459.04
TotalPayBenefits                 119709.25
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86928, dtype: object)
(86929, Id                                           86930
EmployeeName                         Edgar  Moreno
JobTitle            Sr Airport Communications Disp
BasePay                                   87350.32
OvertimePay                                    0.0
OtherPay                                   1520.17
Benefits                                  30835.23
TotalPay                                  88870.49
TotalPayBenefits                         119705.72
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86929, dtype: object)
(86930, Id                                       86931
EmployeeName                     Norma M Lewis
JobTitle            Senior Estate Investigator
BasePay                               88526.92
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31177.58
TotalPay                              88526.92
TotalPayBenefits                      119704.5
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86930, dtype: object)
(86931, Id                                   86932
EmployeeName                  Sandy S Tran
JobTitle            Social Work Supervisor
BasePay                           86859.05
OvertimePay                            0.0
OtherPay                            1580.0
Benefits                          31241.54
TotalPay                          88439.05
TotalPayBenefits                 119680.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86931, dtype: object)
(86932, Id                                       86933
EmployeeName                    Sharon R Cheng
JobTitle            Asst Materials Coordinator
BasePay                               86774.51
OvertimePay                            1036.89
OtherPay                                   0.0
Benefits                              31866.45
TotalPay                               87811.4
TotalPayBenefits                     119677.85
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86932, dtype: object)
(86933, Id                                   86934
EmployeeName                     Lisa  Lee
JobTitle            Public SafetyComm Disp
BasePay                           74888.73
OvertimePay                        9516.65
OtherPay                           7157.12
Benefits                          28104.59
TotalPay                           91562.5
TotalPayBenefits                 119667.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86933, dtype: object)
(86934, Id                             86935
EmployeeName          Sidney P Smith
JobTitle            Transit Operator
BasePay                     66088.46
OvertimePay                 16259.15
OtherPay                     4306.68
Benefits                    33008.91
TotalPay                    86654.29
TotalPayBenefits            119663.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86934, dtype: object)
(86935, Id                              86936
EmployeeName        George R Brown Jr
JobTitle                 Cement Mason
BasePay                       74990.5
OvertimePay                  15094.28
OtherPay                        820.0
Benefits                      28733.5
TotalPay                     90904.78
TotalPayBenefits            119638.28
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86935, dtype: object)
(86936, Id                                          86937
EmployeeName                         James C Choi
JobTitle            Eligibility Worker Supervisor
BasePay                                   75265.4
OvertimePay                              13570.26
OtherPay                                   1835.0
Benefits                                 28961.37
TotalPay                                 90670.66
TotalPayBenefits                        119632.03
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86936, dtype: object)
(86937, Id                              86938
EmployeeName        Bradley M Philpot
JobTitle               Deputy Sheriff
BasePay                       84655.8
OvertimePay                   2870.55
OtherPay                      1109.64
Benefits                     30994.56
TotalPay                     88635.99
TotalPayBenefits            119630.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86937, dtype: object)
(86938, Id                                           86939
EmployeeName                          Wyman  Kwong
JobTitle            IT Operations Support Admn III
BasePay                                    85761.5
OvertimePay                                    0.0
OtherPay                                   3129.53
Benefits                                  30732.71
TotalPay                                  88891.03
TotalPayBenefits                         119623.74
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86938, dtype: object)
(86939, Id                             86940
EmployeeName             Kwok K Wong
JobTitle            Transit Operator
BasePay                     65287.02
OvertimePay                 22011.24
OtherPay                      635.97
Benefits                    31686.23
TotalPay                    87934.23
TotalPayBenefits           119620.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86939, dtype: object)
(86940, Id                                86941
EmployeeName            Shawn  Campbell
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     4521.31
OtherPay                         6147.6
Benefits                       30464.64
TotalPay                       89142.41
TotalPayBenefits              119607.05
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86940, dtype: object)
(86941, Id                             86942
EmployeeName            Freddie  New
JobTitle            Transit Operator
BasePay                     66274.44
OvertimePay                 20935.67
OtherPay                      312.32
Benefits                    32078.05
TotalPay                    87522.43
TotalPayBenefits           119600.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86941, dtype: object)
(86942, Id                             86943
EmployeeName              Hiu K Chan
JobTitle            Transit Operator
BasePay                     67981.33
OvertimePay                   9746.1
OtherPay                     7139.83
Benefits                     34728.3
TotalPay                    84867.26
TotalPayBenefits           119595.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86942, dtype: object)
(86943, Id                                86944
EmployeeName          Narciso S Zapanta
JobTitle            Stationary Engineer
BasePay                         78467.7
OvertimePay                     1990.42
OtherPay                         8266.9
Benefits                       30859.28
TotalPay                       88725.02
TotalPayBenefits               119584.3
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86943, dtype: object)
(86944, Id                                   86945
EmployeeName           Romualdo  Rodriguez
JobTitle            Water Quality Tech III
BasePay                            87028.5
OvertimePay                        1564.84
OtherPay                               0.0
Benefits                           30986.4
TotalPay                          88593.34
TotalPayBenefits                 119579.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86944, dtype: object)
(86945, Id                                     86946
EmployeeName                   Margot Y Reed
JobTitle            Sr. Community Devl Spc 1
BasePay                             88337.09
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31236.25
TotalPay                            88337.09
TotalPayBenefits                   119573.34
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86945, dtype: object)
(86946, Id                                   86947
EmployeeName        Mitchelene M Tolentino
JobTitle            Patient Care Assistant
BasePay                           68391.02
OvertimePay                       22891.03
OtherPay                            923.34
Benefits                          27364.48
TotalPay                          92205.39
TotalPayBenefits                 119569.87
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86946, dtype: object)
(86947, Id                                        86948
EmployeeName                      Valerie J Loo
JobTitle            Investigator, Tax Collector
BasePay                                 87696.0
OvertimePay                                 0.0
OtherPay                                  648.0
Benefits                               31225.21
TotalPay                                88344.0
TotalPayBenefits                      119569.21
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86947, dtype: object)
(86948, Id                                        86949
EmployeeName                   Larry D Stephens
JobTitle            Investigator, Tax Collector
BasePay                                 87696.0
OvertimePay                                 0.0
OtherPay                                  648.0
Benefits                               31225.21
TotalPay                                88344.0
TotalPayBenefits                      119569.21
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 86948, dtype: object)
(86949, Id                                           86950
EmployeeName                      Loretta N Gordon
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   88602.04
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30960.66
TotalPay                                  88602.04
TotalPayBenefits                          119562.7
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86949, dtype: object)
(86950, Id                             86951
EmployeeName         Cedric B Geeter
JobTitle            Transit Operator
BasePay                     67051.12
OvertimePay                 14014.26
OtherPay                     4830.02
Benefits                    33664.18
TotalPay                     85895.4
TotalPayBenefits           119559.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86950, dtype: object)
(86951, Id                                   86952
EmployeeName            Arturo S Dela Rosa
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        17900.5
OtherPay                           5097.84
Benefits                          28168.26
TotalPay                          91389.34
TotalPayBenefits                  119557.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86951, dtype: object)
(86952, Id                            86953
EmployeeName        Stella I Torrey
JobTitle             Deputy Sheriff
BasePay                    81442.28
OvertimePay                 1615.07
OtherPay                    7668.72
Benefits                   28827.65
TotalPay                   90726.07
TotalPayBenefits          119553.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86952, dtype: object)
(86953, Id                             86954
EmployeeName        Sonsire M Garcia
JobTitle            Registered Nurse
BasePay                     77671.18
OvertimePay                  5329.12
OtherPay                     7995.01
Benefits                    28551.95
TotalPay                    90995.31
TotalPayBenefits           119547.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86953, dtype: object)
(86954, Id                                      86955
EmployeeName             Perlarien  Ramsey II
JobTitle            Automotive Service Worker
BasePay                               64314.6
OvertimePay                          15212.58
OtherPay                             11369.83
Benefits                              28641.8
TotalPay                             90897.01
TotalPayBenefits                    119538.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86954, dtype: object)
(86955, Id                             86956
EmployeeName        Diane E Prentiss
JobTitle            Epidemiologist 2
BasePay                     99554.12
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     19975.6
TotalPay                    99554.12
TotalPayBenefits           119529.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86955, dtype: object)
(86956, Id                                         86957
EmployeeName        Guillermo J Castillo Salgado
JobTitle                        Transit Operator
BasePay                                 65210.57
OvertimePay                             17803.69
OtherPay                                 3922.86
Benefits                                32582.37
TotalPay                                86937.12
TotalPayBenefits                       119519.49
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86956, dtype: object)
(86957, Id                                     86958
EmployeeName                    Edmund F Lee
JobTitle            Sr. Community Devl Spc 1
BasePay                             87552.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                             31964.8
TotalPay                            87552.01
TotalPayBenefits                   119516.81
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86957, dtype: object)
(86958, Id                                         86959
EmployeeName                    Laure E Marshall
JobTitle            Health Program Coordinator 3
BasePay                                  87521.5
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31989.24
TotalPay                                 87521.5
TotalPayBenefits                       119510.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 86958, dtype: object)
(86959, Id                                           86960
EmployeeName                    Anthony D Robinson
JobTitle            Worker's Compensation Adjuster
BasePay                                   87614.43
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  31235.46
TotalPay                                  88262.43
TotalPayBenefits                         119497.89
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86959, dtype: object)
(86960, Id                             86961
EmployeeName           Kenny Y Huang
JobTitle            Transit Operator
BasePay                      68769.9
OvertimePay                 13707.44
OtherPay                     2357.04
Benefits                    34662.27
TotalPay                    84834.38
TotalPayBenefits           119496.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86960, dtype: object)
(86961, Id                            86962
EmployeeName        Daniel J Brooks
JobTitle               Truck Driver
BasePay                     80052.0
OvertimePay                 9592.86
OtherPay                      230.0
Benefits                    29619.1
TotalPay                   89874.86
TotalPayBenefits          119493.96
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 86961, dtype: object)
(86962, Id                             86963
EmployeeName          Joseph  Cortez
JobTitle            Transit Operator
BasePay                     67080.95
OvertimePay                 15422.64
OtherPay                     3625.92
Benefits                    33356.64
TotalPay                    86129.51
TotalPayBenefits           119486.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86962, dtype: object)
(86963, Id                             86964
EmployeeName        Mary A Slaughter
JobTitle            Registered Nurse
BasePay                     77531.98
OvertimePay                 17143.76
OtherPay                      131.86
Benefits                    24662.28
TotalPay                     94807.6
TotalPayBenefits           119469.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86963, dtype: object)
(86964, Id                                          86965
EmployeeName                             Jie  Erh
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               4369.76
OtherPay                                   1460.0
Benefits                                 30477.66
TotalPay                                 88989.76
TotalPayBenefits                        119467.42
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86964, dtype: object)
(86965, Id                              86966
EmployeeName        Emilio J Bidegain
JobTitle             Transit Operator
BasePay                      69427.84
OvertimePay                  11563.34
OtherPay                      3251.63
Benefits                     35223.27
TotalPay                     84242.81
TotalPayBenefits            119466.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86965, dtype: object)
(86966, Id                                86967
EmployeeName              Waykin  Louie
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     8953.86
OtherPay                        1501.53
Benefits                       29722.64
TotalPay                       89738.89
TotalPayBenefits              119461.53
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86966, dtype: object)
(86967, Id                             86968
EmployeeName             Jack  Leong
JobTitle            Transit Operator
BasePay                     68445.96
OvertimePay                  11623.9
OtherPay                     4995.22
Benefits                    34378.93
TotalPay                    85065.08
TotalPayBenefits           119444.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86967, dtype: object)
(86968, Id                                   86969
EmployeeName           Shahram  Sabaghpour
JobTitle            Water QualityTech I/II
BasePay                           72920.05
OvertimePay                       18346.96
OtherPay                               0.0
Benefits                          28163.58
TotalPay                          91267.01
TotalPayBenefits                 119430.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86968, dtype: object)
(86969, Id                                   86970
EmployeeName                 Dawn  Mahoney
JobTitle            Public SafetyComm Disp
BasePay                            87046.4
OvertimePay                        7002.72
OtherPay                           6645.16
Benefits                          18727.97
TotalPay                         100694.28
TotalPayBenefits                 119422.25
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86969, dtype: object)
(86970, Id                               86971
EmployeeName        Rachel A Carpenter
JobTitle                     Asst Engr
BasePay                       87447.82
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31969.22
TotalPay                      87447.82
TotalPayBenefits             119417.04
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 86970, dtype: object)
(86971, Id                          86972
EmployeeName           Mark D Lee
JobTitle                Asst Engr
BasePay                   87447.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31969.22
TotalPay                  87447.8
TotalPayBenefits        119417.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 86971, dtype: object)
(86972, Id                                           86973
EmployeeName                 Valerie  Hughes Tiger
JobTitle            Surgical Procedures Technician
BasePay                                   74140.88
OvertimePay                               10478.18
OtherPay                                   5531.57
Benefits                                  29265.65
TotalPay                                  90150.63
TotalPayBenefits                         119416.28
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 86972, dtype: object)
(86973, Id                             86974
EmployeeName              Peter  Lau
JobTitle            Transit Operator
BasePay                     64690.35
OvertimePay                 18497.74
OtherPay                     3986.63
Benefits                    32236.26
TotalPay                    87174.72
TotalPayBenefits           119410.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86973, dtype: object)
(86974, Id                                      86975
EmployeeName           Charlene  Wayne-Durley
JobTitle            Child Support Officer III
BasePay                              87949.99
OvertimePay                               0.0
OtherPay                                628.4
Benefits                             30827.02
TotalPay                             88578.39
TotalPayBenefits                    119405.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86974, dtype: object)
(86975, Id                             86976
EmployeeName           Lois  Dunning
JobTitle            Registered Nurse
BasePay                     83797.99
OvertimePay                  4905.75
OtherPay                     3846.95
Benefits                    26850.57
TotalPay                    92550.69
TotalPayBenefits           119401.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86975, dtype: object)
(86976, Id                                   86977
EmployeeName                    Nancy  Lew
JobTitle            Occupational Therapist
BasePay                           89309.87
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30081.61
TotalPay                          89309.87
TotalPayBenefits                 119391.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 86976, dtype: object)
(86977, Id                              86978
EmployeeName         Feliciano T Ibay
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  16863.51
OtherPay                      5821.18
Benefits                     28310.91
TotalPay                     91075.69
TotalPayBenefits             119386.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 86977, dtype: object)
(86978, Id                                          86979
EmployeeName                        Derek J Bower
JobTitle            Senior Administrative Analyst
BasePay                                  87420.71
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31958.48
TotalPay                                 87420.71
TotalPayBenefits                        119379.19
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86978, dtype: object)
(86979, Id                                  86980
EmployeeName        Lawrence R McNesby Jr
JobTitle            Recreation Supervisor
BasePay                          87012.05
OvertimePay                           0.0
OtherPay                          1156.05
Benefits                         31206.51
TotalPay                          88168.1
TotalPayBenefits                119374.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86979, dtype: object)
(86980, Id                             86981
EmployeeName          Kevin  Langley
JobTitle            Registered Nurse
BasePay                     79904.89
OvertimePay                  5447.99
OtherPay                    13516.08
Benefits                    20503.62
TotalPay                    98868.96
TotalPayBenefits           119372.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86980, dtype: object)
(86981, Id                                      86982
EmployeeName               Yolanda L Robinson
JobTitle            Rehabilitation Svcs Coord
BasePay                              88220.58
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31149.85
TotalPay                             88220.58
TotalPayBenefits                    119370.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86981, dtype: object)
(86982, Id                                      86983
EmployeeName                 Jennifer E Baity
JobTitle            Psychiatric Social Worker
BasePay                              88698.92
OvertimePay                               0.0
OtherPay                               585.28
Benefits                             30085.25
TotalPay                              89284.2
TotalPayBenefits                    119369.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86982, dtype: object)
(86983, Id                             86984
EmployeeName        Dominic F Monaco
JobTitle                   Carpenter
BasePay                     84764.53
OvertimePay                  3677.04
OtherPay                       371.0
Benefits                    30550.31
TotalPay                    88812.57
TotalPayBenefits           119362.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86983, dtype: object)
(86984, Id                                     86985
EmployeeName                Jaubair G Cassim
JobTitle            Senior Fiscal Technician
BasePay                             84985.88
OvertimePay                              0.0
OtherPay                              3857.0
Benefits                             30515.8
TotalPay                            88842.88
TotalPayBenefits                   119358.68
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86984, dtype: object)
(86985, Id                                86986
EmployeeName              Stanley M Lim
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     4041.96
OtherPay                        5499.76
Benefits                       30520.43
TotalPay                       88825.22
TotalPayBenefits              119345.65
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86985, dtype: object)
(86986, Id                                       86987
EmployeeName               Michael L Henderson
JobTitle            Protective Services Worker
BasePay                               88133.09
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31209.99
TotalPay                              88133.09
TotalPayBenefits                     119343.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 86986, dtype: object)
(86987, Id                                      86988
EmployeeName                   Denise A Brown
JobTitle            Public Health Team Leader
BasePay                              77113.35
OvertimePay                           5223.76
OtherPay                              6776.37
Benefits                             30226.38
TotalPay                             89113.48
TotalPayBenefits                    119339.86
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86987, dtype: object)
(86988, Id                                  86989
EmployeeName               Kelly S Bryant
JobTitle            Medical Social Worker
BasePay                          88137.05
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31202.55
TotalPay                         88137.05
TotalPayBenefits                 119339.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86988, dtype: object)
(86989, Id                                      86990
EmployeeName                Glendora M Tejada
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           17216.4
OtherPay                                250.0
Benefits                              28266.7
TotalPay                              91068.4
TotalPayBenefits                     119335.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86989, dtype: object)
(86990, Id                                86991
EmployeeName         Joselito R Banares
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                     8376.23
OtherPay                        1878.19
Benefits                       29792.33
TotalPay                       89537.94
TotalPayBenefits              119330.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86990, dtype: object)
(86991, Id                                          86992
EmployeeName                           Terry  Yip
JobTitle            Senior Administrative Analyst
BasePay                                  88096.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  31230.9
TotalPay                                 88096.96
TotalPayBenefits                        119327.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 86991, dtype: object)
(86992, Id                           86993
EmployeeName         Mei Juan  Tan
JobTitle            Accountant III
BasePay                   85660.51
OvertimePay                    0.0
OtherPay                    2477.0
Benefits                  31182.54
TotalPay                  88137.51
TotalPayBenefits         119320.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 86992, dtype: object)
(86993, Id                                86994
EmployeeName        Ana V DeLeon-Romero
JobTitle            Pharmacy Technician
BasePay                        80242.81
OvertimePay                     3257.14
OtherPay                        5237.96
Benefits                        30581.3
TotalPay                       88737.91
TotalPayBenefits              119319.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86993, dtype: object)
(86994, Id                                86995
EmployeeName             Anthony A Shiu
JobTitle            Automotive Mechanic
BasePay                        78114.31
OvertimePay                    10811.93
OtherPay                        2861.21
Benefits                       27530.51
TotalPay                       91787.45
TotalPayBenefits              119317.96
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86994, dtype: object)
(86995, Id                                     86996
EmployeeName                   Peter A Rosel
JobTitle            Senior Personnel Analyst
BasePay                             87348.13
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31949.32
TotalPay                            87348.13
TotalPayBenefits                   119297.45
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 86995, dtype: object)
(86996, Id                                      86997
EmployeeName                   Michelle H Lee
JobTitle            Architectural Assistant 2
BasePay                              87038.67
OvertimePay                               0.0
OtherPay                              1034.62
Benefits                             31219.36
TotalPay                             88073.29
TotalPayBenefits                    119292.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 86996, dtype: object)
(86997, Id                             86998
EmployeeName        Nicholas S Birth
JobTitle                   Asst Engr
BasePay                      88075.8
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31211.48
TotalPay                     88075.8
TotalPayBenefits           119287.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 86997, dtype: object)
(86998, Id                                86999
EmployeeName        Manuel  Valles Vera
JobTitle                      Asst Engr
BasePay                         79787.4
OvertimePay                     4649.01
OtherPay                         3597.2
Benefits                       31245.57
TotalPay                       88033.61
TotalPayBenefits              119279.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 86998, dtype: object)
(86999, Id                                  87000
EmployeeName           Thomas J Hanlon Jr
JobTitle            Maintenance Machinist
BasePay                          82681.54
OvertimePay                       5829.25
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         89060.79
TotalPayBenefits                119278.44
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 86999, dtype: object)
(87000, Id                                      87001
EmployeeName                  David W Kolkana
JobTitle            Chief Stationary Engineer
BasePay                              79160.85
OvertimePay                           9604.17
OtherPay                              3689.71
Benefits                             26818.24
TotalPay                             92454.73
TotalPayBenefits                    119272.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87000, dtype: object)
(87001, Id                             87002
EmployeeName         Jerry  Calloway
JobTitle            Transit Operator
BasePay                     68040.34
OvertimePay                 15698.43
OtherPay                     2097.67
Benefits                    33423.15
TotalPay                    85836.44
TotalPayBenefits           119259.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87001, dtype: object)
(87002, Id                               87003
EmployeeName            Mary E Ramirez
JobTitle            Eligibility Worker
BasePay                        65448.0
OvertimePay                   25162.55
OtherPay                        1693.0
Benefits                      26950.99
TotalPay                      92303.55
TotalPayBenefits             119254.54
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87002, dtype: object)
(87003, Id                                          87004
EmployeeName                      Olivia C Moreno
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               4847.78
OtherPay                                    868.0
Benefits                                 30363.65
TotalPay                                 88875.78
TotalPayBenefits                        119239.43
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87003, dtype: object)
(87004, Id                                  87005
EmployeeName        Zenaida S Alejandrino
JobTitle                      Manager III
BasePay                          75056.27
OvertimePay                           0.0
OtherPay                         16910.76
Benefits                         27271.06
TotalPay                         91967.03
TotalPayBenefits                119238.09
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87004, dtype: object)
(87005, Id                                87006
EmployeeName            Lino A Pelesasa
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    19162.07
OtherPay                       11030.48
Benefits                       27915.68
TotalPay                       91320.55
TotalPayBenefits              119236.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87005, dtype: object)
(87006, Id                                     87007
EmployeeName                Deedra R Jackson
JobTitle            Sr. Community Devl Spc 1
BasePay                             88047.09
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31182.18
TotalPay                            88047.09
TotalPayBenefits                   119229.27
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87006, dtype: object)
(87007, Id                                     87008
EmployeeName                  Gregory  Rojas
JobTitle            Sr. Community Devl Spc 1
BasePay                             88047.03
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31182.16
TotalPay                            88047.03
TotalPayBenefits                   119229.19
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87007, dtype: object)
(87008, Id                                           87009
EmployeeName                          Luan Vu D Le
JobTitle            IT Operations Support Admin II
BasePay                                    69594.3
OvertimePay                               12331.39
OtherPay                                   7446.69
Benefits                                  29850.17
TotalPay                                  89372.38
TotalPayBenefits                         119222.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87008, dtype: object)
(87009, Id                             87010
EmployeeName        Hamilton  Moreno
JobTitle            Transit Operator
BasePay                     67057.33
OvertimePay                 11484.47
OtherPay                      6540.3
Benefits                    34138.33
TotalPay                     85082.1
TotalPayBenefits           119220.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87009, dtype: object)
(87010, Id                                         87011
EmployeeName                   Anthony D Estacio
JobTitle            Sr Personal Property Auditor
BasePay                                 86857.07
OvertimePay                                  0.0
OtherPay                                   440.0
Benefits                                31921.63
TotalPay                                87297.07
TotalPayBenefits                        119218.7
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87010, dtype: object)
(87011, Id                               87012
EmployeeName            Sharyn  Gruber
JobTitle            Physical Therapist
BasePay                       88273.59
OvertimePay                        0.0
OtherPay                        990.47
Benefits                      29947.62
TotalPay                      89264.06
TotalPayBenefits             119211.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87011, dtype: object)
(87012, Id                                   87013
EmployeeName                 XiuMei  Huang
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       21407.82
OtherPay                            1870.0
Benefits                          27535.37
TotalPay                          91668.82
TotalPayBenefits                 119204.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87012, dtype: object)
(87013, Id                                    87014
EmployeeName        Valoria  Russell-Benson
JobTitle             Patient Care Assistant
BasePay                             63325.0
OvertimePay                        22999.55
OtherPay                            6508.71
Benefits                           26368.36
TotalPay                           92833.26
TotalPayBenefits                  119201.62
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87013, dtype: object)
(87014, Id                                           87015
EmployeeName                       Jose L Hipolito
JobTitle            Dir of Act, Therapy & Vol Svcs
BasePay                                   86049.01
OvertimePay                                    0.0
OtherPay                                    1988.0
Benefits                                  31159.93
TotalPay                                  88037.01
TotalPayBenefits                         119196.94
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87014, dtype: object)
(87015, Id                                           87016
EmployeeName                            Kyle L Lee
JobTitle            Electrical Transit System Mech
BasePay                                    82678.2
OvertimePay                                 3676.2
OtherPay                                    2280.0
Benefits                                  30551.69
TotalPay                                   88634.4
TotalPayBenefits                         119186.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87015, dtype: object)
(87016, Id                             87017
EmployeeName           Kevin D Davis
JobTitle            Transit Operator
BasePay                     68157.81
OvertimePay                 25644.06
OtherPay                     5470.66
Benefits                    19912.86
TotalPay                    99272.53
TotalPayBenefits           119185.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87016, dtype: object)
(87017, Id                            87018
EmployeeName           Kelly M Toth
JobTitle            Chief Dietitian
BasePay                    87374.61
OvertimePay                     0.0
OtherPay                      659.6
Benefits                   31149.84
TotalPay                   88034.21
TotalPayBenefits          119184.05
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87017, dtype: object)
(87018, Id                             87019
EmployeeName              King  Chan
JobTitle            Transit Operator
BasePay                     69210.85
OvertimePay                  10491.3
OtherPay                     4800.65
Benefits                    34673.63
TotalPay                     84502.8
TotalPayBenefits           119176.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87018, dtype: object)
(87019, Id                                          87020
EmployeeName                   Edgardo C Pagaduan
JobTitle            Eligibility Worker Supervisor
BasePay                                  87318.04
OvertimePay                                833.76
OtherPay                                      0.0
Benefits                                 31022.17
TotalPay                                  88151.8
TotalPayBenefits                        119173.97
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87019, dtype: object)
(87020, Id                                           87021
EmployeeName                          Eugene H Tom
JobTitle            IT Operations Support Admn III
BasePay                                   85761.53
OvertimePay                                    0.0
OtherPay                                   2662.53
Benefits                                  30732.71
TotalPay                                  88424.06
TotalPayBenefits                         119156.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87020, dtype: object)
(87021, Id                                87022
EmployeeName            Todd C Robinson
JobTitle            Stationary Engineer
BasePay                        80246.25
OvertimePay                     2436.41
OtherPay                        5787.98
Benefits                       30682.42
TotalPay                       88470.64
TotalPayBenefits              119153.06
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87021, dtype: object)
(87022, Id                                87023
EmployeeName             Mui Heung  Lam
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                      2431.9
OtherPay                        5458.72
Benefits                       30720.58
TotalPay                       88431.62
TotalPayBenefits               119152.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87022, dtype: object)
(87023, Id                             87024
EmployeeName              Jason  Fan
JobTitle            Transit Operator
BasePay                     67458.22
OvertimePay                 18169.52
OtherPay                      742.27
Benefits                    32781.03
TotalPay                    86370.01
TotalPayBenefits           119151.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87023, dtype: object)
(87024, Id                                           87025
EmployeeName                       Milagros  Aniag
JobTitle            IT Operations Support Admn III
BasePay                                   85758.42
OvertimePay                                    0.0
OtherPay                                    2230.0
Benefits                                  31159.73
TotalPay                                  87988.42
TotalPayBenefits                         119148.15
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87024, dtype: object)
(87025, Id                             87026
EmployeeName          Peter  Cajucom
JobTitle            Transit Operator
BasePay                     67182.52
OvertimePay                 15595.84
OtherPay                     3106.51
Benefits                    33261.18
TotalPay                    85884.87
TotalPayBenefits           119146.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87025, dtype: object)
(87026, Id                              87027
EmployeeName         Rosita B Millare
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                   17064.3
OtherPay                      5448.27
Benefits                     28242.38
TotalPay                     90903.57
TotalPayBenefits            119145.95
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87026, dtype: object)
(87027, Id                               87028
EmployeeName        Geary A Bastain II
JobTitle              Transit Operator
BasePay                       66927.78
OvertimePay                    17770.6
OtherPay                        908.35
Benefits                      33510.06
TotalPay                      85606.73
TotalPayBenefits             119116.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87027, dtype: object)
(87028, Id                            87029
EmployeeName        Kathleen  Brown
JobTitle                 Dep Dir II
BasePay                    71673.51
OvertimePay                     0.0
OtherPay                    22243.5
Benefits                   25186.67
TotalPay                   93917.01
TotalPayBenefits          119103.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87028, dtype: object)
(87029, Id                             87030
EmployeeName         Robert M Gainer
JobTitle            Transit Operator
BasePay                     69277.47
OvertimePay                 15689.69
OtherPay                      540.13
Benefits                    33583.45
TotalPay                    85507.29
TotalPayBenefits           119090.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87029, dtype: object)
(87030, Id                                       87031
EmployeeName                         Shan  Yue
JobTitle            Senior Estate Investigator
BasePay                               87909.64
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31177.03
TotalPay                              87909.64
TotalPayBenefits                     119086.67
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87030, dtype: object)
(87031, Id                              87032
EmployeeName        Renato  Gutierrez
JobTitle             Transit Operator
BasePay                      67225.86
OvertimePay                  17406.41
OtherPay                      1586.63
Benefits                     32863.56
TotalPay                      86218.9
TotalPayBenefits            119082.46
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87031, dtype: object)
(87032, Id                            87033
EmployeeName        Robert J Loberg
JobTitle             Deputy Sheriff
BasePay                     83331.6
OvertimePay                 4224.52
OtherPay                    1119.79
Benefits                   30403.68
TotalPay                   88675.91
TotalPayBenefits          119079.59
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87032, dtype: object)
(87033, Id                            87034
EmployeeName        Timothy P Byrne
JobTitle                  Carpenter
BasePay                     84764.5
OvertimePay                 1178.78
OtherPay                    2185.64
Benefits                   30946.68
TotalPay                   88128.92
TotalPayBenefits           119075.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87033, dtype: object)
(87034, Id                            87035
EmployeeName        Alan M Striegle
JobTitle             Biologist I/II
BasePay                    85289.77
OvertimePay                     0.0
OtherPay                    3099.01
Benefits                    30669.0
TotalPay                   88388.78
TotalPayBenefits          119057.78
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87034, dtype: object)
(87035, Id                            87036
EmployeeName        Anna M Thompson
JobTitle             Accountant III
BasePay                    87001.73
OvertimePay                     0.0
OtherPay                     1850.0
Benefits                   30205.35
TotalPay                   88851.73
TotalPayBenefits          119057.08
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87035, dtype: object)
(87036, Id                                         87037
EmployeeName                   Sandra E Aseltine
JobTitle            Senior Medical Social Worker
BasePay                                  87122.4
OvertimePay                                  0.0
OtherPay                                 1603.67
Benefits                                30329.65
TotalPay                                88726.07
TotalPayBenefits                       119055.72
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87036, dtype: object)
(87037, Id                                          87038
EmployeeName                          Gary C Wong
JobTitle            Contract Compliance Officer 1
BasePay                                  88920.93
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30128.34
TotalPay                                 88920.93
TotalPayBenefits                        119049.27
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87037, dtype: object)
(87038, Id                                      87039
EmployeeName                  Abdul S Hussein
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           10028.3
OtherPay                              15292.1
Benefits                             29407.46
TotalPay                              89632.6
TotalPayBenefits                    119040.06
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87038, dtype: object)
(87039, Id                           87040
EmployeeName        Frank  Aguerre
JobTitle               Electrician
BasePay                    84737.0
OvertimePay                3056.11
OtherPay                    1009.0
Benefits                  30234.96
TotalPay                  88802.11
TotalPayBenefits         119037.07
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87039, dtype: object)
(87040, Id                           87041
EmployeeName        Steve M Hanley
JobTitle                 Carpenter
BasePay                   84764.51
OvertimePay                 2344.5
OtherPay                    1190.0
Benefits                  30734.95
TotalPay                  88299.01
TotalPayBenefits         119033.96
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87040, dtype: object)
(87041, Id                              87042
EmployeeName        Ronaldo E Rondolo
JobTitle             Transit Operator
BasePay                      67712.68
OvertimePay                  12183.33
OtherPay                      5086.26
Benefits                     34044.75
TotalPay                     84982.27
TotalPayBenefits            119027.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87041, dtype: object)
(87042, Id                                  87043
EmployeeName              Nicole C Carter
JobTitle            Medical Social Worker
BasePay                           90693.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         28323.29
TotalPay                          90693.0
TotalPayBenefits                119016.29
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87042, dtype: object)
(87043, Id                          87044
EmployeeName           Chi W Wong
JobTitle                Carpenter
BasePay                  84764.53
OvertimePay               1523.93
OtherPay                   1847.0
Benefits                  30879.5
TotalPay                 88135.46
TotalPayBenefits        119014.96
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87043, dtype: object)
(87044, Id                                          87045
EmployeeName                      Maher  Alhakeem
JobTitle            Program Specialist Supervisor
BasePay                                  88659.76
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30352.19
TotalPay                                 88659.76
TotalPayBenefits                        119011.95
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87044, dtype: object)
(87045, Id                             87046
EmployeeName         Jennifer Y Chiu
JobTitle            Registered Nurse
BasePay                     70004.38
OvertimePay                   7870.0
OtherPay                    21257.35
Benefits                    19880.15
TotalPay                    99131.73
TotalPayBenefits           119011.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87045, dtype: object)
(87046, Id                                  87047
EmployeeName        Katherine M Wingerson
JobTitle                      Librarian 2
BasePay                          86997.89
OvertimePay                           0.0
OtherPay                           883.07
Benefits                         31128.19
TotalPay                         87880.96
TotalPayBenefits                119009.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87046, dtype: object)
(87047, Id                                       87048
EmployeeName        Carmen K Lewis-Cumberbatch
JobTitle                     Personnel Analyst
BasePay                               88020.05
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30988.23
TotalPay                              88020.05
TotalPayBenefits                     119008.28
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87047, dtype: object)
(87048, Id                                          87049
EmployeeName                   Reginald E Kennedy
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                  87848.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31157.59
TotalPay                                 87848.11
TotalPayBenefits                         119005.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87048, dtype: object)
(87049, Id                              87050
EmployeeName          Estrella D Ibay
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  22361.74
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     91650.74
TotalPayBenefits            119001.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87049, dtype: object)
(87050, Id                                     87051
EmployeeName               Nakeisha  Peacock
JobTitle            Deputy Probation Officer
BasePay                              89674.6
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29325.87
TotalPay                             89674.6
TotalPayBenefits                   119000.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87050, dtype: object)
(87051, Id                          87052
EmployeeName         Diana P Dunn
JobTitle            Special Nurse
BasePay                 110390.03
OvertimePay                   0.0
OtherPay                  3762.34
Benefits                  4847.41
TotalPay                114152.37
TotalPayBenefits        118999.78
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87051, dtype: object)
(87052, Id                                          87053
EmployeeName                        Maria H McKee
JobTitle            Asst Chf Victim/Wit Invstgtor
BasePay                                  88468.26
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30522.71
TotalPay                                 88468.26
TotalPayBenefits                        118990.97
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87052, dtype: object)
(87053, Id                            87054
EmployeeName        David N Valstad
JobTitle                  Carpenter
BasePay                    84764.53
OvertimePay                 2505.45
OtherPay                     1005.0
Benefits                   30714.76
TotalPay                   88274.98
TotalPayBenefits          118989.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87053, dtype: object)
(87054, Id                                  87055
EmployeeName             William J Berndt
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                       5537.32
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         88768.84
TotalPayBenefits                118986.49
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87054, dtype: object)
(87055, Id                                    87056
EmployeeName        Michala Catherine Brown
JobTitle                         Manager II
BasePay                             85300.5
OvertimePay                             0.0
OtherPay                               23.0
Benefits                            33662.4
TotalPay                            85323.5
TotalPayBenefits                   118985.9
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87055, dtype: object)
(87056, Id                                   87057
EmployeeName              Lea  Acosta-Chea
JobTitle            Public SafetyComm Disp
BasePay                           79474.09
OvertimePay                        4111.97
OtherPay                           6033.02
Benefits                          29366.79
TotalPay                          89619.08
TotalPayBenefits                 118985.87
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87056, dtype: object)
(87057, Id                                      87058
EmployeeName                     Wade  Taylor
JobTitle            Automotive Service Worker
BasePay                               64314.6
OvertimePay                          14971.68
OtherPay                             11103.39
Benefits                             28593.27
TotalPay                             90389.67
TotalPayBenefits                    118982.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87057, dtype: object)
(87058, Id                           87059
EmployeeName        Katy  Bersamin
JobTitle            Court Reporter
BasePay                    60961.0
OvertimePay                    0.0
OtherPay                   37937.4
Benefits                  20082.48
TotalPay                   98898.4
TotalPayBenefits         118980.88
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87058, dtype: object)
(87059, Id                                         87060
EmployeeName                 Mary Carol  Delgado
JobTitle            Health Program Coordinator 2
BasePay                                 87929.94
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                31047.15
TotalPay                                87929.94
TotalPayBenefits                       118977.09
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87059, dtype: object)
(87060, Id                              87061
EmployeeName        Juliet L Laborete
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  16532.75
OtherPay                      5740.14
Benefits                      28307.0
TotalPay                     90663.89
TotalPayBenefits            118970.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87060, dtype: object)
(87061, Id                           87062
EmployeeName        Paul W Quibell
JobTitle              Truck Driver
BasePay                   80052.05
OvertimePay                5569.64
OtherPay                    3168.0
Benefits                  30179.83
TotalPay                  88789.69
TotalPayBenefits         118969.52
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87061, dtype: object)
(87062, Id                             87063
EmployeeName        Damon J Mayfield
JobTitle            Transit Operator
BasePay                     68780.72
OvertimePay                 11871.28
OtherPay                     3363.29
Benefits                    34949.11
TotalPay                    84015.29
TotalPayBenefits            118964.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87062, dtype: object)
(87063, Id                                    87064
EmployeeName                    Martin  Lum
JobTitle            EEO Programs Specialist
BasePay                            87246.51
OvertimePay                             0.0
OtherPay                              560.0
Benefits                           31148.88
TotalPay                           87806.51
TotalPayBenefits                  118955.39
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87063, dtype: object)
(87064, Id                             87065
EmployeeName           Johnny W Chow
JobTitle            Transit Operator
BasePay                     68866.05
OvertimePay                  6624.86
OtherPay                     8073.73
Benefits                    35389.51
TotalPay                    83564.64
TotalPayBenefits           118954.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87064, dtype: object)
(87065, Id                                  87066
EmployeeName        Elizabeth  Carthagena
JobTitle            Medical Social Worker
BasePay                          86326.31
OvertimePay                           0.0
OtherPay                           2016.8
Benefits                         30605.96
TotalPay                         88343.11
TotalPayBenefits                118949.07
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87065, dtype: object)
(87066, Id                             87067
EmployeeName             Philip  Sue
JobTitle            Transit Operator
BasePay                     68380.47
OvertimePay                  9183.27
OtherPay                     5934.96
Benefits                    35445.27
TotalPay                     83498.7
TotalPayBenefits           118943.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87066, dtype: object)
(87067, Id                                87068
EmployeeName              Jose  Fonseca
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     3939.86
OtherPay                        6075.95
Benefits                       30451.71
TotalPay                       88489.31
TotalPayBenefits              118941.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87067, dtype: object)
(87068, Id                                          87069
EmployeeName                         Alan H Payne
JobTitle            Operating Engineer, Universal
BasePay                                  81511.09
OvertimePay                               8727.69
OtherPay                                  1190.93
Benefits                                  27507.3
TotalPay                                 91429.71
TotalPayBenefits                        118937.01
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87068, dtype: object)
(87069, Id                             87070
EmployeeName                Wah K Li
JobTitle            Transit Operator
BasePay                     68234.01
OvertimePay                 16876.26
OtherPay                      709.22
Benefits                    33112.82
TotalPay                    85819.49
TotalPayBenefits           118932.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87069, dtype: object)
(87070, Id                                 87071
EmployeeName        Lesley A Giovannelli
JobTitle                     Manager III
BasePay                         84894.34
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        34036.16
TotalPay                        84894.34
TotalPayBenefits                118930.5
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87070, dtype: object)
(87071, Id                                   87072
EmployeeName                Phong Q Nguyen
JobTitle            Public SafetyComm Disp
BasePay                            77120.0
OvertimePay                        4408.61
OtherPay                           6279.54
Benefits                          31121.81
TotalPay                          87808.15
TotalPayBenefits                 118929.96
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87071, dtype: object)
(87072, Id                                     87073
EmployeeName                  Jose A Sanchez
JobTitle            Deputy Probation Officer
BasePay                              89708.5
OvertimePay                           598.22
OtherPay                               125.0
Benefits                            28495.14
TotalPay                            90431.72
TotalPayBenefits                   118926.86
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87072, dtype: object)
(87073, Id                                      87074
EmployeeName                     Launce O Yen
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                          13342.47
OtherPay                             12404.78
Benefits                             28861.13
TotalPay                             90064.25
TotalPayBenefits                    118925.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87073, dtype: object)
(87074, Id                              87075
EmployeeName        Pleshette T Pitre
JobTitle             Transit Operator
BasePay                      66600.33
OvertimePay                  14689.45
OtherPay                      4353.61
Benefits                     33280.82
TotalPay                     85643.39
TotalPayBenefits            118924.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87074, dtype: object)
(87075, Id                             87076
EmployeeName          Zi Ming  Huang
JobTitle            Transit Operator
BasePay                     68020.25
OvertimePay                 16905.97
OtherPay                      905.55
Benefits                    33080.61
TotalPay                    85831.77
TotalPayBenefits           118912.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87075, dtype: object)
(87076, Id                             87077
EmployeeName              Kyi  Myint
JobTitle            Transit Operator
BasePay                     67816.31
OvertimePay                 16939.45
OtherPay                      472.15
Benefits                    33677.32
TotalPay                    85227.91
TotalPayBenefits           118905.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87076, dtype: object)
(87077, Id                             87078
EmployeeName        Daniel W McGuire
JobTitle            Registered Nurse
BasePay                     81687.24
OvertimePay                  2106.46
OtherPay                     5941.64
Benefits                    29167.97
TotalPay                    89735.34
TotalPayBenefits           118903.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87077, dtype: object)
(87078, Id                                     87079
EmployeeName           Nanette M Hendrickson
JobTitle            Airport Economic Planner
BasePay                             91677.27
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            27223.74
TotalPay                            91677.27
TotalPayBenefits                   118901.01
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87078, dtype: object)
(87079, Id                                      87080
EmployeeName              Charmine C Delavega
JobTitle            Public Health Team Leader
BasePay                               77436.0
OvertimePay                           3864.42
OtherPay                              7158.36
Benefits                             30437.16
TotalPay                             88458.78
TotalPayBenefits                    118895.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87079, dtype: object)
(87080, Id                             87081
EmployeeName            Jose  Cortes
JobTitle            Transit Operator
BasePay                     66729.64
OvertimePay                  19393.3
OtherPay                      447.05
Benefits                    32320.89
TotalPay                    86569.99
TotalPayBenefits           118890.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87080, dtype: object)
(87081, Id                                         87082
EmployeeName                   Jonathan G Franco
JobTitle            Physical Therapist Assistant
BasePay                                 87678.18
OvertimePay                                  0.0
OtherPay                                   100.0
Benefits                                31107.11
TotalPay                                87778.18
TotalPayBenefits                       118885.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87081, dtype: object)
(87082, Id                              87083
EmployeeName        David  Douangnaly
JobTitle              Junior Engineer
BasePay                      87028.56
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31856.69
TotalPay                     87028.56
TotalPayBenefits            118885.25
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87082, dtype: object)
(87083, Id                                87084
EmployeeName            Brandi  Frazier
JobTitle            Health Care Analyst
BasePay                         87028.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31856.69
TotalPay                        87028.5
TotalPayBenefits              118885.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87083, dtype: object)
(87084, Id                                   87085
EmployeeName              Kenneth J Bowens
JobTitle            Water Quality Tech III
BasePay                           79312.52
OvertimePay                        9236.48
OtherPay                               0.0
Benefits                          30334.87
TotalPay                           88549.0
TotalPayBenefits                 118883.87
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87084, dtype: object)
(87085, Id                              87086
EmployeeName        Michael  Halligan
JobTitle                    Carpenter
BasePay                      84764.56
OvertimePay                    1377.4
OtherPay                       1861.5
Benefits                     30879.39
TotalPay                     88003.46
TotalPayBenefits            118882.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87085, dtype: object)
(87086, Id                             87087
EmployeeName        Barbara J Brooks
JobTitle            Transit Operator
BasePay                     69410.03
OvertimePay                 15520.29
OtherPay                      347.41
Benefits                    33603.78
TotalPay                    85277.73
TotalPayBenefits           118881.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87086, dtype: object)
(87087, Id                                   87088
EmployeeName               Dickson E Sulus
JobTitle            Patient Care Assistant
BasePay                           68066.45
OvertimePay                       18081.46
OtherPay                            4743.3
Benefits                          27987.23
TotalPay                          90891.21
TotalPayBenefits                 118878.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87087, dtype: object)
(87088, Id                                  87089
EmployeeName             Paul  Rullhausen
JobTitle            Maintenance Machinist
BasePay                          84067.53
OvertimePay                        406.93
OtherPay                          3351.65
Benefits                          31048.2
TotalPay                         87826.11
TotalPayBenefits                118874.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87088, dtype: object)
(87089, Id                                        87090
EmployeeName                   Eric S Carpenter
JobTitle            Airport Communications Disp
BasePay                                72732.06
OvertimePay                            12777.04
OtherPay                                3643.32
Benefits                               29719.08
TotalPay                               89152.42
TotalPayBenefits                       118871.5
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87089, dtype: object)
(87090, Id                             87091
EmployeeName         Denise  Griffin
JobTitle            Transit Operator
BasePay                     67851.99
OvertimePay                 12943.45
OtherPay                     4212.09
Benefits                     33861.2
TotalPay                    85007.53
TotalPayBenefits           118868.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87090, dtype: object)
(87091, Id                                    87092
EmployeeName             Melissa A Millsaps
JobTitle            Claims Investigator, CA
BasePay                            96993.54
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           21873.87
TotalPay                           96993.54
TotalPayBenefits                  118867.41
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87091, dtype: object)
(87092, Id                                         87093
EmployeeName                    Dalton M Johnson
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 86530.01
OvertimePay                              5823.61
OtherPay                                 6441.92
Benefits                                20050.46
TotalPay                                98795.54
TotalPayBenefits                        118846.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87092, dtype: object)
(87093, Id                                           87094
EmployeeName                          Phat T Luong
JobTitle            Electrical Transit System Mech
BasePay                                   77404.65
OvertimePay                                12685.2
OtherPay                                     550.0
Benefits                                  28189.76
TotalPay                                  90639.85
TotalPayBenefits                         118829.61
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87093, dtype: object)
(87094, Id                             87095
EmployeeName         Telesia  Telsee
JobTitle            Transit Operator
BasePay                     64473.77
OvertimePay                 15165.14
OtherPay                     6298.57
Benefits                    32874.33
TotalPay                    85937.48
TotalPayBenefits           118811.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87094, dtype: object)
(87095, Id                            87096
EmployeeName        Robert A Harris
JobTitle                  Carpenter
BasePay                    84764.54
OvertimePay                 2302.75
OtherPay                     1012.5
Benefits                   30716.74
TotalPay                   88079.79
TotalPayBenefits          118796.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87095, dtype: object)
(87096, Id                                         87097
EmployeeName                      Linnea N Baver
JobTitle            Physical Therapist Assistant
BasePay                                 87680.51
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 31115.8
TotalPay                                87680.51
TotalPayBenefits                       118796.31
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87096, dtype: object)
(87097, Id                                     87098
EmployeeName                  Daniel W Brown
JobTitle            General Utility Mechanic
BasePay                              85356.5
OvertimePay                          1931.08
OtherPay                                 0.0
Benefits                            31508.53
TotalPay                            87287.58
TotalPayBenefits                   118796.11
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87097, dtype: object)
(87098, Id                                  87099
EmployeeName                  Somay M Loi
JobTitle            Emp & Training Spec 4
BasePay                          87127.24
OvertimePay                           0.0
OtherPay                            552.0
Benefits                          31116.5
TotalPay                         87679.24
TotalPayBenefits                118795.74
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87098, dtype: object)
(87099, Id                           87100
EmployeeName        Jonathan R Hee
JobTitle              Truck Driver
BasePay                   77422.81
OvertimePay                 3250.7
OtherPay                   7967.08
Benefits                  30154.23
TotalPay                  88640.59
TotalPayBenefits         118794.82
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87099, dtype: object)
(87100, Id                                        87101
EmployeeName                    Ronald  Meunier
JobTitle            Investigator, Tax Collector
BasePay                                 87696.0
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31097.84
TotalPay                                87696.0
TotalPayBenefits                      118793.84
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87100, dtype: object)
(87101, Id                                      87102
EmployeeName                 Emily K Anderson
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74629.4
OvertimePay                           3969.39
OtherPay                              9463.19
Benefits                             30717.99
TotalPay                             88061.98
TotalPayBenefits                    118779.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87101, dtype: object)
(87102, Id                                       87103
EmployeeName                     Shelly B Houk
JobTitle            Protective Services Worker
BasePay                                87890.9
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30887.87
TotalPay                               87890.9
TotalPayBenefits                     118778.77
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87102, dtype: object)
(87103, Id                               87104
EmployeeName            Deana M Noonan
JobTitle            Environmental Spec
BasePay                       86181.01
OvertimePay                        0.0
OtherPay                        762.33
Benefits                      31835.32
TotalPay                      86943.34
TotalPayBenefits             118778.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87103, dtype: object)
(87104, Id                               87105
EmployeeName             Brian M Davis
JobTitle            Nurse Practitioner
BasePay                       90716.12
OvertimePay                    2171.97
OtherPay                       8103.83
Benefits                      17779.41
TotalPay                     100991.92
TotalPayBenefits             118771.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87104, dtype: object)
(87105, Id                          87106
EmployeeName         Sean B Lange
JobTitle             Truck Driver
BasePay                  80052.03
OvertimePay               6401.17
OtherPay                  2292.82
Benefits                 30021.46
TotalPay                 88746.02
TotalPayBenefits        118767.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87105, dtype: object)
(87106, Id                                  87107
EmployeeName                Eva P Iraheta
JobTitle            Emp & Training Spec 4
BasePay                          87615.65
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31114.04
TotalPay                         87615.65
TotalPayBenefits                118729.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87106, dtype: object)
(87107, Id                             87108
EmployeeName          Garry M Coward
JobTitle            Transit Operator
BasePay                     68312.26
OvertimePay                 11290.74
OtherPay                     4837.85
Benefits                    34287.42
TotalPay                    84440.85
TotalPayBenefits           118728.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87107, dtype: object)
(87108, Id                           87109
EmployeeName        Terence Y Huey
JobTitle                 Asst Engr
BasePay                    87604.8
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31123.33
TotalPay                   87604.8
TotalPayBenefits         118728.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87108, dtype: object)
(87109, Id                                        87110
EmployeeName                       Sonia A Pena
JobTitle            Airport Communications Disp
BasePay                                74595.88
OvertimePay                             8294.34
OtherPay                                7275.09
Benefits                               28556.61
TotalPay                               90165.31
TotalPayBenefits                      118721.92
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87109, dtype: object)
(87110, Id                          87111
EmployeeName        James  Thomas
JobTitle             Museum Guard
BasePay                  61398.01
OvertimePay              30717.25
OtherPay                    648.0
Benefits                 25958.62
TotalPay                 92763.26
TotalPayBenefits        118721.88
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87110, dtype: object)
(87111, Id                                    87112
EmployeeName                     Alex  Wong
JobTitle            Engineering Associate 2
BasePay                             87164.5
OvertimePay                          421.45
OtherPay                                0.0
Benefits                           31135.31
TotalPay                           87585.95
TotalPayBenefits                  118721.26
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87111, dtype: object)
(87112, Id                                      87113
EmployeeName              Angelita Z Salvador
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          10090.09
OtherPay                              5691.56
Benefits                             29336.04
TotalPay                             89383.65
TotalPayBenefits                    118719.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87112, dtype: object)
(87113, Id                               87114
EmployeeName        Stanulus W Antoine
JobTitle                     Carpenter
BasePay                        84764.5
OvertimePay                      937.8
OtherPay                        2080.0
Benefits                      30924.53
TotalPay                       87782.3
TotalPayBenefits             118706.83
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87113, dtype: object)
(87114, Id                                           87115
EmployeeName                      Victor  Raquinan
JobTitle            Senior Parking Control Officer
BasePay                                   69606.57
OvertimePay                               15176.25
OtherPay                                   5569.01
Benefits                                  28348.45
TotalPay                                  90351.83
TotalPayBenefits                         118700.28
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87114, dtype: object)
(87115, Id                                      87116
EmployeeName               Ferdinand A Jimeno
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                           8602.29
OtherPay                              6915.07
Benefits                              29575.5
TotalPay                             89119.37
TotalPayBenefits                    118694.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87115, dtype: object)
(87116, Id                             87117
EmployeeName           Maria  Cooper
JobTitle            Registered Nurse
BasePay                     78410.52
OvertimePay                 10464.23
OtherPay                     4041.59
Benefits                    25770.55
TotalPay                    92916.34
TotalPayBenefits           118686.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87116, dtype: object)
(87117, Id                               87118
EmployeeName            Dennis R Ponte
JobTitle            Physical Therapist
BasePay                        87211.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       31461.4
TotalPay                       87211.5
TotalPayBenefits              118672.9
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87117, dtype: object)
(87118, Id                                   87119
EmployeeName        Maria Cecilia A Martin
JobTitle                  Registered Nurse
BasePay                           84432.74
OvertimePay                        3357.78
OtherPay                           3363.51
Benefits                          27512.27
TotalPay                          91154.03
TotalPayBenefits                  118666.3
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87118, dtype: object)
(87119, Id                             87120
EmployeeName        Timothy H Nagata
JobTitle                   Asst Engr
BasePay                     86819.22
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31843.15
TotalPay                    86819.22
TotalPayBenefits           118662.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87119, dtype: object)
(87120, Id                                      87121
EmployeeName                  Alexandra  Pray
JobTitle            Attorney (Civil/Criminal)
BasePay                               86348.0
OvertimePay                               0.0
OtherPay                                312.5
Benefits                             31998.45
TotalPay                              86660.5
TotalPayBenefits                    118658.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87120, dtype: object)
(87121, Id                                          87122
EmployeeName                       Wannie N Huynh
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               3561.27
OtherPay                                   1460.0
Benefits                                 30477.01
TotalPay                                 88181.27
TotalPayBenefits                        118658.28
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87121, dtype: object)
(87122, Id                                          87123
EmployeeName                  Michael C Dennis Jr
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                  81239.38
OvertimePay                               1160.59
OtherPay                                  6068.82
Benefits                                 30187.31
TotalPay                                 88468.79
TotalPayBenefits                         118656.1
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87122, dtype: object)
(87123, Id                                      87124
EmployeeName                 Zachary S Beatty
JobTitle            EMT/Paramedic/Firefighter
BasePay                              78685.26
OvertimePay                           3205.24
OtherPay                              8191.73
Benefits                             28572.71
TotalPay                             90082.23
TotalPayBenefits                    118654.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87123, dtype: object)
(87124, Id                             87125
EmployeeName           Helen  Bisbee
JobTitle            Transit Operator
BasePay                     68116.18
OvertimePay                 11115.25
OtherPay                     5146.95
Benefits                    34267.54
TotalPay                    84378.38
TotalPayBenefits           118645.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87124, dtype: object)
(87125, Id                                        87126
EmployeeName                      Melchor  Juan
JobTitle            Investigator, Tax Collector
BasePay                                87584.35
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31060.28
TotalPay                               87584.35
TotalPayBenefits                      118644.63
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87125, dtype: object)
(87126, Id                                         87127
EmployeeName                           Jesse  Su
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.02
OvertimePay                             15190.35
OtherPay                                  1020.0
Benefits                                28533.65
TotalPay                                90109.37
TotalPayBenefits                       118643.02
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87126, dtype: object)
(87127, Id                                87128
EmployeeName         Manuelito C Revelo
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    21276.94
OtherPay                        8730.48
Benefits                       27493.59
TotalPay                       91135.42
TotalPayBenefits              118629.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87127, dtype: object)
(87128, Id                            87129
EmployeeName        Vincent  McEvoy
JobTitle                  Carpenter
BasePay                    84764.57
OvertimePay                     0.0
OtherPay                     2800.0
Benefits                   31063.57
TotalPay                   87564.57
TotalPayBenefits          118628.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87128, dtype: object)
(87129, Id                             87130
EmployeeName        James E Anderson
JobTitle                   Carpenter
BasePay                     84764.53
OvertimePay                  2366.25
OtherPay                      867.92
Benefits                    30628.95
TotalPay                     87998.7
TotalPayBenefits           118627.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87129, dtype: object)
(87130, Id                              87131
EmployeeName        Louise A DiMattio
JobTitle                Nurse Manager
BasePay                      77917.41
OvertimePay                       0.0
OtherPay                     26710.33
Benefits                      13996.0
TotalPay                    104627.74
TotalPayBenefits            118623.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87130, dtype: object)
(87131, Id                                  87132
EmployeeName             Carolyn E Cooper
JobTitle            Regulatory Specialist
BasePay                          86791.03
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31830.34
TotalPay                         86791.03
TotalPayBenefits                118621.37
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87131, dtype: object)
(87132, Id                                  87133
EmployeeName                    Fan T Lau
JobTitle            Regulatory Specialist
BasePay                           86791.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31830.34
TotalPay                          86791.0
TotalPayBenefits                118621.34
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87132, dtype: object)
(87133, Id                             87134
EmployeeName         Jenifer J Reyes
JobTitle            Registered Nurse
BasePay                     83327.39
OvertimePay                  1085.78
OtherPay                     6559.88
Benefits                     27647.5
TotalPay                    90973.05
TotalPayBenefits           118620.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87133, dtype: object)
(87134, Id                               87135
EmployeeName        Rodolfo P Cagampan
JobTitle              Transit Operator
BasePay                       66915.01
OvertimePay                   17558.59
OtherPay                       1464.79
Benefits                      32679.59
TotalPay                      85938.39
TotalPayBenefits             118617.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87134, dtype: object)
(87135, Id                                 87136
EmployeeName             Steven S Kuchac
JobTitle            Painter Supervisor 1
BasePay                         87521.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31084.97
TotalPay                        87521.01
TotalPayBenefits               118605.98
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87135, dtype: object)
(87136, Id                             87137
EmployeeName           Mont  Hubbard
JobTitle            Transit Operator
BasePay                     67780.88
OvertimePay                 16454.62
OtherPay                     1309.09
Benefits                    33059.79
TotalPay                    85544.59
TotalPayBenefits           118604.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87136, dtype: object)
(87137, Id                                87138
EmployeeName              Paul E Nelson
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                     8343.06
OtherPay                        1291.38
Benefits                        29681.2
TotalPay                       88917.95
TotalPayBenefits              118599.15
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87137, dtype: object)
(87138, Id                                        87139
EmployeeName                 Rebecca E Reimbold
JobTitle            Station Agent, Muni Railway
BasePay                                 80379.0
OvertimePay                             3900.38
OtherPay                                3923.01
Benefits                               30393.86
TotalPay                               88202.39
TotalPayBenefits                      118596.25
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87138, dtype: object)
(87139, Id                             87140
EmployeeName         Jerome K Dorton
JobTitle            Transit Operator
BasePay                     66315.36
OvertimePay                 18342.54
OtherPay                     2473.26
Benefits                    31462.75
TotalPay                    87131.16
TotalPayBenefits           118593.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87139, dtype: object)
(87140, Id                             87141
EmployeeName             Li H  Huang
JobTitle            Transit Operator
BasePay                     66946.94
OvertimePay                 18185.02
OtherPay                      906.95
Benefits                    32551.04
TotalPay                    86038.91
TotalPayBenefits           118589.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87140, dtype: object)
(87141, Id                                       87142
EmployeeName                 Dionne M Campbell
JobTitle            Protective Services Worker
BasePay                                85697.3
OvertimePay                                0.0
OtherPay                               2803.95
Benefits                              30085.66
TotalPay                              88501.25
TotalPayBenefits                     118586.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87141, dtype: object)
(87142, Id                               87143
EmployeeName        Michael D Hamilton
JobTitle                   Inspector 3
BasePay                       47099.68
OvertimePay                        0.0
OtherPay                      58479.15
Benefits                      13006.92
TotalPay                     105578.83
TotalPayBenefits             118585.75
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87142, dtype: object)
(87143, Id                                87144
EmployeeName             John H Shea Jr
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                     3717.99
OtherPay                        5967.29
Benefits                       30425.82
TotalPay                       88158.78
TotalPayBenefits               118584.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87143, dtype: object)
(87144, Id                                87145
EmployeeName           Romelito V Ignao
JobTitle            Stationary Engineer
BasePay                        80003.95
OvertimePay                       876.6
OtherPay                        6794.57
Benefits                       30905.81
TotalPay                       87675.12
TotalPayBenefits              118580.93
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87144, dtype: object)
(87145, Id                                           87146
EmployeeName                         Cynthia  Cano
JobTitle            Surgical Procedures Technician
BasePay                                   74587.59
OvertimePay                               12658.25
OtherPay                                   2740.31
Benefits                                  28593.37
TotalPay                                  89986.15
TotalPayBenefits                         118579.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87145, dtype: object)
(87146, Id                             87147
EmployeeName             Jason K Lee
JobTitle            Transit Operator
BasePay                     68005.82
OvertimePay                 16764.72
OtherPay                      799.43
Benefits                     33006.5
TotalPay                    85569.97
TotalPayBenefits           118576.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87146, dtype: object)
(87147, Id                                       87148
EmployeeName                   Mack  McConnell
JobTitle            Senior Stationary Engineer
BasePay                               77342.75
OvertimePay                            12863.5
OtherPay                                   0.0
Benefits                              28360.39
TotalPay                              90206.25
TotalPayBenefits                     118566.64
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87147, dtype: object)
(87148, Id                           87149
EmployeeName        Shona  Navarre
JobTitle               Court Clerk
BasePay                   86859.08
OvertimePay                    0.0
OtherPay                     648.0
Benefits                  31057.55
TotalPay                  87507.08
TotalPayBenefits         118564.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87148, dtype: object)
(87149, Id                                          87150
EmployeeName                       Yelena  Bilyak
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               4851.01
OtherPay                                    300.0
Benefits                                 30251.57
TotalPay                                 88311.01
TotalPayBenefits                        118562.58
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87149, dtype: object)
(87150, Id                                   87151
EmployeeName            Ivette S Rodriguez
JobTitle            Social Work Supervisor
BasePay                           86859.03
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          31052.51
TotalPay                          87507.03
TotalPayBenefits                 118559.54
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87150, dtype: object)
(87151, Id                           87152
EmployeeName        Sharon M Young
JobTitle                 Planner 2
BasePay                    87478.6
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31080.65
TotalPay                   87478.6
TotalPayBenefits         118559.25
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87151, dtype: object)
(87152, Id                                87153
EmployeeName        Kimberly J Durandet
JobTitle                      Planner 2
BasePay                        87477.08
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        31075.3
TotalPay                       87477.08
TotalPayBenefits              118552.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87152, dtype: object)
(87153, Id                                           87154
EmployeeName                      Steven J Shapiro
JobTitle            Assistant Industrial Hygienist
BasePay                                   87477.04
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                   31075.3
TotalPay                                  87477.04
TotalPayBenefits                         118552.34
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87153, dtype: object)
(87154, Id                             87155
EmployeeName        Vishal J Trivedi
JobTitle                   Planner 2
BasePay                     87477.03
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31075.31
TotalPay                    87477.03
TotalPayBenefits           118552.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87154, dtype: object)
(87155, Id                              87156
EmployeeName              Helen  Kwan
JobTitle            Transit Planner 2
BasePay                      87477.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31075.29
TotalPay                     87477.01
TotalPayBenefits             118552.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87155, dtype: object)
(87156, Id                                       87157
EmployeeName        Virginia  Summerell-Rathke
JobTitle                     Transit Planner 2
BasePay                               87477.01
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              31075.29
TotalPay                              87477.01
TotalPayBenefits                      118552.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87156, dtype: object)
(87157, Id                                    87158
EmployeeName        Santos G Reyes-Sandoval
JobTitle                   Transit Operator
BasePay                            67624.69
OvertimePay                        16474.57
OtherPay                             777.15
Benefits                           33667.19
TotalPay                           84876.41
TotalPayBenefits                   118543.6
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87157, dtype: object)
(87158, Id                                87159
EmployeeName        William S Tabajonda
JobTitle                      Asst Engr
BasePay                         87447.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31094.74
TotalPay                        87447.8
TotalPayBenefits              118542.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87158, dtype: object)
(87159, Id                             87160
EmployeeName        William H Taylor
JobTitle            Transit Operator
BasePay                     67740.72
OvertimePay                 17141.61
OtherPay                      751.52
Benefits                    32908.39
TotalPay                    85633.85
TotalPayBenefits           118542.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87159, dtype: object)
(87160, Id                               87161
EmployeeName         Charles  Solinger
JobTitle            Transit Supervisor
BasePay                        81908.0
OvertimePay                    1835.44
OtherPay                       3944.71
Benefits                      30846.16
TotalPay                      87688.15
TotalPayBenefits             118534.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87160, dtype: object)
(87161, Id                             87162
EmployeeName            Mingde  Feng
JobTitle            Transit Operator
BasePay                     69097.79
OvertimePay                 10090.57
OtherPay                     4062.46
Benefits                    35278.41
TotalPay                    83250.82
TotalPayBenefits           118529.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87161, dtype: object)
(87162, Id                                       87163
EmployeeName                     Jewel D Scott
JobTitle            Protective Services Worker
BasePay                               85088.94
OvertimePay                            3139.79
OtherPay                                1177.5
Benefits                              29110.42
TotalPay                              89406.23
TotalPayBenefits                     118516.65
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87162, dtype: object)
(87163, Id                                  87164
EmployeeName        Christian X Gutierrez
JobTitle                        Locksmith
BasePay                          84764.51
OvertimePay                       2192.45
OtherPay                            140.0
Benefits                         31417.09
TotalPay                         87096.96
TotalPayBenefits                118514.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87163, dtype: object)
(87164, Id                                  87165
EmployeeName        Siegfried V Henderson
JobTitle                 Transit Operator
BasePay                          66270.93
OvertimePay                      19689.16
OtherPay                           479.37
Benefits                         32065.46
TotalPay                         86439.46
TotalPayBenefits                118504.92
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87164, dtype: object)
(87165, Id                                    87166
EmployeeName               Mohammad S Latif
JobTitle            Parking Control Officer
BasePay                             59203.5
OvertimePay                        27069.68
OtherPay                            5706.88
Benefits                           26518.94
TotalPay                           91980.06
TotalPayBenefits                   118499.0
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87165, dtype: object)
(87166, Id                                 87167
EmployeeName              Edward M McCue
JobTitle            Sewer Service Worker
BasePay                         70697.52
OvertimePay                      7933.36
OtherPay                        11888.08
Benefits                        27971.39
TotalPay                        90518.96
TotalPayBenefits               118490.35
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87166, dtype: object)
(87167, Id                             87168
EmployeeName         Terry L Sampson
JobTitle            Transit Operator
BasePay                     59971.06
OvertimePay                 23990.96
OtherPay                     4449.69
Benefits                    30076.84
TotalPay                    88411.71
TotalPayBenefits           118488.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87167, dtype: object)
(87168, Id                             87169
EmployeeName        William B Graham
JobTitle                   Manager I
BasePay                     83014.79
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    35471.11
TotalPay                    83014.79
TotalPayBenefits            118485.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87168, dtype: object)
(87169, Id                           87170
EmployeeName        Junior R Garon
JobTitle                 Carpenter
BasePay                   84764.61
OvertimePay                 351.68
OtherPay                    2379.5
Benefits                  30982.29
TotalPay                  87495.79
TotalPayBenefits         118478.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87169, dtype: object)
(87170, Id                             87171
EmployeeName                Nam H Su
JobTitle            Transit Operator
BasePay                     67235.03
OvertimePay                 16571.81
OtherPay                      1081.9
Benefits                    33587.18
TotalPay                    84888.74
TotalPayBenefits           118475.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87170, dtype: object)
(87171, Id                             87172
EmployeeName           Gregory K Kan
JobTitle            Transit Operator
BasePay                     68621.94
OvertimePay                 12929.21
OtherPay                      2311.1
Benefits                    34608.89
TotalPay                    83862.25
TotalPayBenefits           118471.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87171, dtype: object)
(87172, Id                          87173
EmployeeName         Tiffany L Ip
JobTitle                Asst Engr
BasePay                  86661.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31807.89
TotalPay                 86661.24
TotalPayBenefits        118469.13
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87172, dtype: object)
(87173, Id                           87174
EmployeeName        Jenna M Castro
JobTitle                 Asst Engr
BasePay                   86661.22
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   31807.9
TotalPay                  86661.22
TotalPayBenefits         118469.12
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87173, dtype: object)
(87174, Id                              87175
EmployeeName        Richard D Chircop
JobTitle                    Asst Engr
BasePay                       86661.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31807.89
TotalPay                      86661.2
TotalPayBenefits            118469.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87174, dtype: object)
(87175, Id                                          87176
EmployeeName                        Donnie Y Wong
JobTitle            Senior Administrative Analyst
BasePay                                  87389.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31076.54
TotalPay                                 87389.05
TotalPayBenefits                        118465.59
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87175, dtype: object)
(87176, Id                                           87177
EmployeeName                      Danny M Abenojar
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                                4133.25
OtherPay                                     580.0
Benefits                                  31077.25
TotalPay                                  87388.15
TotalPayBenefits                          118465.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87176, dtype: object)
(87177, Id                                      87178
EmployeeName             Robert Craig  Gordon
JobTitle            EMT/Paramedic/Firefighter
BasePay                              76115.45
OvertimePay                           3837.95
OtherPay                              9495.64
Benefits                              29015.2
TotalPay                             89449.04
TotalPayBenefits                    118464.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87177, dtype: object)
(87178, Id                                        87179
EmployeeName                     Cecilia S Wood
JobTitle            Investigator, Tax Collector
BasePay                                 87452.4
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31008.31
TotalPay                                87452.4
TotalPayBenefits                      118460.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87178, dtype: object)
(87179, Id                                      87180
EmployeeName                 Sergio E Herrera
JobTitle            Automotive Service Worker
BasePay                              64312.21
OvertimePay                          11940.86
OtherPay                             13211.01
Benefits                             28995.22
TotalPay                             89464.08
TotalPayBenefits                     118459.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87179, dtype: object)
(87180, Id                             87181
EmployeeName              Ryan G Lee
JobTitle            Transit Operator
BasePay                     68283.95
OvertimePay                  9326.58
OtherPay                     6234.06
Benefits                     34613.4
TotalPay                    83844.59
TotalPayBenefits           118457.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87180, dtype: object)
(87181, Id                                      87182
EmployeeName                  Mary Ann S Chin
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                          12367.88
OtherPay                               2068.0
Benefits                             28972.02
TotalPay                             89468.91
TotalPayBenefits                    118440.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87181, dtype: object)
(87182, Id                             87183
EmployeeName         Gregory  Tucker
JobTitle            Transit Operator
BasePay                     68004.95
OvertimePay                 14449.81
OtherPay                      2571.7
Benefits                    33412.93
TotalPay                    85026.46
TotalPayBenefits           118439.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87182, dtype: object)
(87183, Id                                           87184
EmployeeName                            Ryan D Tom
JobTitle            Electrical Transit System Mech
BasePay                                   82681.52
OvertimePay                                4254.94
OtherPay                                    1160.0
Benefits                                  30334.56
TotalPay                                  88096.46
TotalPayBenefits                         118431.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87183, dtype: object)
(87184, Id                               87185
EmployeeName          Rebecca M Morgan
JobTitle            Physical Therapist
BasePay                       87054.83
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31374.02
TotalPay                      87054.83
TotalPayBenefits             118428.85
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87184, dtype: object)
(87185, Id                                    87186
EmployeeName            Girma-Worku  Zeleke
JobTitle            Parking Control Officer
BasePay                            56703.69
OvertimePay                        36061.98
OtherPay                            1076.59
Benefits                           24581.52
TotalPay                           93842.26
TotalPayBenefits                  118423.78
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87185, dtype: object)
(87186, Id                                  87187
EmployeeName           Roberto  Alvarenga
JobTitle            Maintenance Machinist
BasePay                          86579.51
OvertimePay                        291.64
OtherPay                            550.0
Benefits                          30996.0
TotalPay                         87421.15
TotalPayBenefits                118417.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87186, dtype: object)
(87187, Id                             87188
EmployeeName         Rudy D Faustino
JobTitle            Transit Operator
BasePay                     69244.48
OvertimePay                  13119.8
OtherPay                     2084.91
Benefits                    33967.69
TotalPay                    84449.19
TotalPayBenefits           118416.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87187, dtype: object)
(87188, Id                              87189
EmployeeName         Evelyn R Arienza
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  21769.97
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     91058.97
TotalPayBenefits             118410.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87188, dtype: object)
(87189, Id                                          87190
EmployeeName                   Laurence D Griffin
JobTitle            Contract Compliance Officer 1
BasePay                                  88280.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30125.79
TotalPay                                 88280.11
TotalPayBenefits                         118405.9
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87189, dtype: object)
(87190, Id                                      87191
EmployeeName                 Graham P Hoffman
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74697.4
OvertimePay                           5377.73
OtherPay                               9525.2
Benefits                              28803.0
TotalPay                             89600.33
TotalPayBenefits                    118403.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87190, dtype: object)
(87191, Id                                87192
EmployeeName        Mario G San Agustin
JobTitle            Stationary Engineer
BasePay                        78552.12
OvertimePay                      2191.5
OtherPay                        7001.19
Benefits                       30652.94
TotalPay                       87744.81
TotalPayBenefits              118397.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87191, dtype: object)
(87192, Id                             87193
EmployeeName         Paul Wai C Wong
JobTitle            Transit Operator
BasePay                     68180.32
OvertimePay                  14687.6
OtherPay                     1421.81
Benefits                    34107.36
TotalPay                    84289.73
TotalPayBenefits           118397.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87192, dtype: object)
(87193, Id                                  87194
EmployeeName              Faye G Deguzman
JobTitle            Executive Secretary 3
BasePay                          86623.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31771.64
TotalPay                         86623.56
TotalPayBenefits                 118395.2
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87193, dtype: object)
(87194, Id                               87195
EmployeeName        Mark V Sobichevsky
JobTitle                     Carpenter
BasePay                       84764.54
OvertimePay                    2366.25
OtherPay                        657.92
Benefits                      30598.28
TotalPay                      87788.71
TotalPayBenefits             118386.99
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87194, dtype: object)
(87195, Id                                87196
EmployeeName        Valentine I Omokaro
JobTitle                      Planner 2
BasePay                        87354.64
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31029.15
TotalPay                       87354.64
TotalPayBenefits              118383.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87195, dtype: object)
(87196, Id                               87197
EmployeeName        Alphonsus J Cronin
JobTitle                     Carpenter
BasePay                       84764.56
OvertimePay                    2256.81
OtherPay                        745.92
Benefits                      30611.42
TotalPay                      87767.29
TotalPayBenefits             118378.71
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87196, dtype: object)
(87197, Id                                         87198
EmployeeName                  Gregory G Gonzales
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 80232.71
OvertimePay                              2687.99
OtherPay                                 5778.25
Benefits                                29656.88
TotalPay                                88698.95
TotalPayBenefits                       118355.83
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87197, dtype: object)
(87198, Id                             87199
EmployeeName        Camille A Alpert
JobTitle            Training Officer
BasePay                     87582.84
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30768.14
TotalPay                    87582.84
TotalPayBenefits           118350.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87198, dtype: object)
(87199, Id                             87200
EmployeeName         Darren M Arkava
JobTitle            Registered Nurse
BasePay                     85845.56
OvertimePay                  1154.13
OtherPay                     2993.81
Benefits                    28353.15
TotalPay                     89993.5
TotalPayBenefits           118346.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87199, dtype: object)
(87200, Id                                   87201
EmployeeName             Rosemary  O'Leary
JobTitle            Public SafetyComm Disp
BasePay                           77134.01
OvertimePay                        4387.65
OtherPay                           5823.67
Benefits                           31001.3
TotalPay                          87345.33
TotalPayBenefits                 118346.63
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87200, dtype: object)
(87201, Id                                87202
EmployeeName          Anthony E Gelardi
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     7862.57
OtherPay                        1477.96
Benefits                       29718.24
TotalPay                       88624.03
TotalPayBenefits              118342.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87201, dtype: object)
(87202, Id                                         87203
EmployeeName                     Gary M Najarian
JobTitle            Health Program Coordinator 3
BasePay                                 93308.82
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                25010.87
TotalPay                                93308.82
TotalPayBenefits                       118319.69
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87202, dtype: object)
(87203, Id                             87204
EmployeeName         Renato C Gurion
JobTitle            Registered Nurse
BasePay                      77015.0
OvertimePay                  2611.14
OtherPay                    15086.67
Benefits                    23600.58
TotalPay                    94712.81
TotalPayBenefits           118313.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87203, dtype: object)
(87204, Id                                      87205
EmployeeName                   Jeffrey G Ross
JobTitle            Public Health Team Leader
BasePay                              77395.13
OvertimePay                           3904.08
OtherPay                              6686.03
Benefits                             30324.53
TotalPay                             87985.24
TotalPayBenefits                    118309.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87204, dtype: object)
(87205, Id                                        87206
EmployeeName                   Ana Maria  Gamez
JobTitle            Airport Communications Disp
BasePay                                70326.21
OvertimePay                            14884.36
OtherPay                                4329.14
Benefits                                28768.7
TotalPay                               89539.71
TotalPayBenefits                      118308.41
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87205, dtype: object)
(87206, Id                          87207
EmployeeName        Antoni  Cunha
JobTitle                Carpenter
BasePay                   84764.5
OvertimePay               1212.71
OtherPay                   1513.5
Benefits                 30815.95
TotalPay                 87490.71
TotalPayBenefits        118306.66
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87206, dtype: object)
(87207, Id                                87208
EmployeeName               Young B Hong
JobTitle            Stationary Engineer
BasePay                         66785.5
OvertimePay                     6093.85
OtherPay                       19641.95
Benefits                       25757.45
TotalPay                        92521.3
TotalPayBenefits              118278.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87207, dtype: object)
(87208, Id                                    87209
EmployeeName                 Diana L Garcia
JobTitle            EEO Programs Specialist
BasePay                            87246.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31029.48
TotalPay                           87246.52
TotalPayBenefits                   118276.0
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87208, dtype: object)
(87209, Id                                    87210
EmployeeName              Arla D Escontrias
JobTitle            EEO Programs Specialist
BasePay                            87246.51
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31029.48
TotalPay                           87246.51
TotalPayBenefits                  118275.99
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87209, dtype: object)
(87210, Id                                       87211
EmployeeName                Cathleen A Hoffman
JobTitle            Pr Real Property Appraiser
BasePay                               84136.08
OvertimePay                                0.0
OtherPay                                4200.0
Benefits                              29937.52
TotalPay                              88336.08
TotalPayBenefits                      118273.6
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87210, dtype: object)
(87211, Id                                   87212
EmployeeName               Dominic C Iheme
JobTitle            Administrative Analyst
BasePay                           86291.04
OvertimePay                            0.0
OtherPay                             948.0
Benefits                          31034.55
TotalPay                          87239.04
TotalPayBenefits                 118273.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87211, dtype: object)
(87212, Id                             87213
EmployeeName            Gail  Gaines
JobTitle            Transit Operator
BasePay                     64576.74
OvertimePay                 17935.57
OtherPay                     3682.71
Benefits                    32075.55
TotalPay                    86195.02
TotalPayBenefits           118270.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87212, dtype: object)
(87213, Id                                87214
EmployeeName            Rolando B Narag
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    20924.82
OtherPay                        8714.27
Benefits                       27502.56
TotalPay                       90767.09
TotalPayBenefits              118269.65
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87213, dtype: object)
(87214, Id                             87215
EmployeeName         Clyde E Pinkins
JobTitle            Transit Operator
BasePay                      68489.3
OvertimePay                 15242.43
OtherPay                     1170.84
Benefits                    33352.81
TotalPay                    84902.57
TotalPayBenefits           118255.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87214, dtype: object)
(87215, Id                                         87216
EmployeeName        Ricardo  Zaragoza-Cabrera Jr
JobTitle                         General Laborer
BasePay                                 62468.51
OvertimePay                             17702.91
OtherPay                                11562.42
Benefits                                 26499.9
TotalPay                                91733.84
TotalPayBenefits                       118233.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87215, dtype: object)
(87216, Id                                 87217
EmployeeName        Richard R Nepomuceno
JobTitle                Registered Nurse
BasePay                         81336.62
OvertimePay                      6569.61
OtherPay                         7715.73
Benefits                        22606.58
TotalPay                        95621.96
TotalPayBenefits               118228.54
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87216, dtype: object)
(87217, Id                              87218
EmployeeName        Lawrence L Walker
JobTitle             Street Inspector
BasePay                       78164.0
OvertimePay                   10849.5
OtherPay                          0.0
Benefits                     29213.35
TotalPay                      89013.5
TotalPayBenefits            118226.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87217, dtype: object)
(87218, Id                             87219
EmployeeName              David  Yee
JobTitle            Transit Operator
BasePay                     65328.94
OvertimePay                  19588.5
OtherPay                     1395.07
Benefits                    31902.99
TotalPay                    86312.51
TotalPayBenefits            118215.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87218, dtype: object)
(87219, Id                                    87220
EmployeeName                  Daniel  Reyes
JobTitle            Real Property Appraiser
BasePay                            84937.57
OvertimePay                             0.0
OtherPay                            2281.25
Benefits                            30995.5
TotalPay                           87218.82
TotalPayBenefits                  118214.32
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87219, dtype: object)
(87220, Id                                     87221
EmployeeName              Gail Robert  Wolfe
JobTitle            Commercial Div Asst Sprv
BasePay                             79560.31
OvertimePay                              0.0
OtherPay                               504.0
Benefits                            38130.11
TotalPay                            80064.31
TotalPayBenefits                   118194.42
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87220, dtype: object)
(87221, Id                             87222
EmployeeName        Richard D Vargas
JobTitle            Transit Operator
BasePay                      67488.6
OvertimePay                 15680.78
OtherPay                     1275.94
Benefits                    33748.23
TotalPay                    84445.32
TotalPayBenefits           118193.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87221, dtype: object)
(87222, Id                             87223
EmployeeName         Rondaa  Jackson
JobTitle            Transit Operator
BasePay                     66915.05
OvertimePay                 13674.63
OtherPay                     4190.74
Benefits                    33412.53
TotalPay                    84780.42
TotalPayBenefits           118192.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87222, dtype: object)
(87223, Id                                      87224
EmployeeName               Daniel A Nazzareta
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74738.2
OvertimePay                           3000.98
OtherPay                              9708.77
Benefits                             30744.15
TotalPay                             87447.95
TotalPayBenefits                     118192.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87223, dtype: object)
(87224, Id                             87225
EmployeeName           Lavada  Hicks
JobTitle            Transit Operator
BasePay                     64747.09
OvertimePay                 18028.41
OtherPay                     3231.34
Benefits                    32181.54
TotalPay                    86006.84
TotalPayBenefits           118188.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87224, dtype: object)
(87225, Id                                    87226
EmployeeName              Christopher T Sam
JobTitle            Real Property Appraiser
BasePay                            84937.55
OvertimePay                             0.0
OtherPay                             2259.5
Benefits                           30991.12
TotalPay                           87197.05
TotalPayBenefits                  118188.17
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87225, dtype: object)
(87226, Id                                    87227
EmployeeName              Elizabeth  Cooper
JobTitle            Real Property Appraiser
BasePay                            84939.04
OvertimePay                             0.0
OtherPay                             2254.0
Benefits                            30994.5
TotalPay                           87193.04
TotalPayBenefits                  118187.54
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87226, dtype: object)
(87227, Id                                    87228
EmployeeName                 Ceazar R Milan
JobTitle            Parking Control Officer
BasePay                             59201.4
OvertimePay                        26217.54
OtherPay                            6158.25
Benefits                           26606.97
TotalPay                           91577.19
TotalPayBenefits                  118184.16
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87227, dtype: object)
(87228, Id                             87229
EmployeeName             Peter  Tran
JobTitle            Transit Operator
BasePay                     64284.52
OvertimePay                 21128.59
OtherPay                     1377.19
Benefits                    31393.35
TotalPay                     86790.3
TotalPayBenefits           118183.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87228, dtype: object)
(87229, Id                                      87230
EmployeeName                 Anthony H Dawson
JobTitle            EMT/Paramedic/Firefighter
BasePay                              73459.08
OvertimePay                           1771.96
OtherPay                             12756.43
Benefits                             30194.31
TotalPay                             87987.47
TotalPayBenefits                    118181.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87229, dtype: object)
(87230, Id                             87231
EmployeeName           Marcos  Reyes
JobTitle            Transit Operator
BasePay                     66673.85
OvertimePay                 16985.03
OtherPay                      1846.7
Benefits                    32675.83
TotalPay                    85505.58
TotalPayBenefits           118181.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87230, dtype: object)
(87231, Id                                           87232
EmployeeName                  Elizabeth A Angelini
JobTitle            Worker's Compensation Adjuster
BasePay                                   86447.04
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31732.64
TotalPay                                  86447.04
TotalPayBenefits                         118179.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87231, dtype: object)
(87232, Id                           87233
EmployeeName        Emina H Abrams
JobTitle             Court Manager
BasePay                   85984.73
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32192.71
TotalPay                  85984.73
TotalPayBenefits         118177.44
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87232, dtype: object)
(87233, Id                                      87234
EmployeeName                      Danny M Lin
JobTitle            Automotive Service Worker
BasePay                               64314.6
OvertimePay                          16609.65
OtherPay                              9067.17
Benefits                             28183.98
TotalPay                             89991.42
TotalPayBenefits                     118175.4
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87233, dtype: object)
(87234, Id                             87235
EmployeeName          Calvin A Lewis
JobTitle            Transit Operator
BasePay                     67991.01
OvertimePay                 14570.77
OtherPay                      2193.8
Benefits                    33418.98
TotalPay                    84755.58
TotalPayBenefits           118174.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87234, dtype: object)
(87235, Id                                          87236
EmployeeName                        Emily J Gerth
JobTitle            Senior Administrative Analyst
BasePay                                  86438.61
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31735.66
TotalPay                                 86438.61
TotalPayBenefits                        118174.27
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87235, dtype: object)
(87236, Id                              87237
EmployeeName          Nida P Torrijos
JobTitle            Nursing Assistant
BasePay                      68270.37
OvertimePay                  21688.82
OtherPay                        898.0
Benefits                     27305.29
TotalPay                     90857.19
TotalPayBenefits            118162.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87236, dtype: object)
(87237, Id                                87238
EmployeeName               Luis M Medal
JobTitle            Automotive Mechanic
BasePay                         75775.9
OvertimePay                     8695.07
OtherPay                        6687.59
Benefits                       26999.47
TotalPay                       91158.56
TotalPayBenefits              118158.03
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87237, dtype: object)
(87238, Id                                87239
EmployeeName         Boris J Pikarevich
JobTitle            Stationary Engineer
BasePay                        71081.69
OvertimePay                     9507.76
OtherPay                        9232.32
Benefits                       28333.97
TotalPay                       89821.77
TotalPayBenefits              118155.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87238, dtype: object)
(87239, Id                                    87240
EmployeeName                 Michelle S Mai
JobTitle            Med Staff Svcs Dept Anl
BasePay                            86424.04
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31729.06
TotalPay                           86424.04
TotalPayBenefits                   118153.1
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87239, dtype: object)
(87240, Id                                      87241
EmployeeName                Heather M Domingo
JobTitle            Diagnostic Imaging Tech I
BasePay                               85658.4
OvertimePay                            735.15
OtherPay                                200.0
Benefits                             31559.44
TotalPay                             86593.55
TotalPayBenefits                    118152.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87240, dtype: object)
(87241, Id                               87242
EmployeeName            David R Brandt
JobTitle            Physical Therapist
BasePay                       89546.44
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      28604.68
TotalPay                      89546.44
TotalPayBenefits             118151.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87241, dtype: object)
(87242, Id                                87243
EmployeeName            Pedro  Sandoval
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     7739.75
OtherPay                        1420.53
Benefits                       29706.76
TotalPay                       88443.78
TotalPayBenefits              118150.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87242, dtype: object)
(87243, Id                                        87244
EmployeeName                       Joann C Phan
JobTitle            Patient Accounts Supervisor
BasePay                                 85185.0
OvertimePay                             2366.26
OtherPay                                    0.0
Benefits                               30595.11
TotalPay                               87551.26
TotalPayBenefits                      118146.37
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87243, dtype: object)
(87244, Id                          87245
EmployeeName          Lena B Chen
JobTitle                Architect
BasePay                  88886.09
OvertimePay                   0.0
OtherPay                  6194.04
Benefits                 23063.28
TotalPay                 95080.13
TotalPayBenefits        118143.41
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87244, dtype: object)
(87245, Id                              87246
EmployeeName        Aleena D Galloway
JobTitle             Transit Operator
BasePay                      63906.66
OvertimePay                  21308.52
OtherPay                      1611.52
Benefits                     31315.91
TotalPay                      86826.7
TotalPayBenefits            118142.61
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87245, dtype: object)
(87246, Id                                   87247
EmployeeName               Brennan  Fallon
JobTitle            Airport Safety Officer
BasePay                           77489.05
OvertimePay                       10659.25
OtherPay                           1813.29
Benefits                          28171.19
TotalPay                          89961.59
TotalPayBenefits                 118132.78
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87246, dtype: object)
(87247, Id                                    87248
EmployeeName                 Shu-Chun  Liou
JobTitle            Real Property Appraiser
BasePay                             84940.6
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30989.52
TotalPay                            87140.6
TotalPayBenefits                  118130.12
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87247, dtype: object)
(87248, Id                                    87249
EmployeeName                Hakam A Ibrahim
JobTitle            Real Property Appraiser
BasePay                            84940.56
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30989.52
TotalPay                           87140.56
TotalPayBenefits                  118130.08
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87248, dtype: object)
(87249, Id                                         87250
EmployeeName                  Therese C Sablotny
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.03
OvertimePay                              2503.52
OtherPay                                13260.36
Benefits                                28461.74
TotalPay                                89662.91
TotalPayBenefits                       118124.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87249, dtype: object)
(87250, Id                                    87251
EmployeeName                 George E Gomez
JobTitle            Real Property Appraiser
BasePay                            84939.05
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30984.33
TotalPay                           87139.05
TotalPayBenefits                  118123.38
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87250, dtype: object)
(87251, Id                                    87252
EmployeeName                    Julie  Ford
JobTitle            Real Property Appraiser
BasePay                             84939.0
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30984.33
TotalPay                            87139.0
TotalPayBenefits                  118123.33
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87251, dtype: object)
(87252, Id                            87253
EmployeeName        Michael  Alvers
JobTitle                  Carpenter
BasePay                    84764.56
OvertimePay                 1646.32
OtherPay                     1000.0
Benefits                   30711.29
TotalPay                   87410.88
TotalPayBenefits          118122.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87252, dtype: object)
(87253, Id                             87254
EmployeeName           Harland K Lee
JobTitle            Transit Operator
BasePay                     67029.87
OvertimePay                 17188.23
OtherPay                      583.51
Benefits                    33319.95
TotalPay                    84801.61
TotalPayBenefits           118121.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87253, dtype: object)
(87254, Id                                    87255
EmployeeName           Anita Mei Chih  Chen
JobTitle            Real Property Appraiser
BasePay                            84937.57
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30979.14
TotalPay                           87137.57
TotalPayBenefits                  118116.71
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87254, dtype: object)
(87255, Id                                    87256
EmployeeName                    Larry  Chan
JobTitle            Real Property Appraiser
BasePay                            84937.55
OvertimePay                             0.0
OtherPay                             2200.0
Benefits                           30979.14
TotalPay                           87137.55
TotalPayBenefits                  118116.69
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87255, dtype: object)
(87256, Id                                   87257
EmployeeName                 Brian L Kosch
JobTitle            Ornamental Iron Worker
BasePay                           81848.51
OvertimePay                        3713.04
OtherPay                            2190.0
Benefits                          30362.95
TotalPay                          87751.55
TotalPayBenefits                  118114.5
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87256, dtype: object)
(87257, Id                                    87258
EmployeeName                    John  Synan
JobTitle            Parking Control Officer
BasePay                            59201.41
OvertimePay                        27459.82
OtherPay                            5063.73
Benefits                           26388.08
TotalPay                           91724.96
TotalPayBenefits                  118113.04
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87257, dtype: object)
(87258, Id                             87259
EmployeeName           Truong X Tran
JobTitle            Transit Operator
BasePay                     68163.76
OvertimePay                  9829.71
OtherPay                     5669.53
Benefits                    34446.84
TotalPay                     83663.0
TotalPayBenefits           118109.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87258, dtype: object)
(87259, Id                                         87260
EmployeeName                        Anita W Fong
JobTitle            Health Program Coordinator 2
BasePay                                 87182.57
OvertimePay                                  0.0
OtherPay                                   104.8
Benefits                                30822.43
TotalPay                                87287.37
TotalPayBenefits                        118109.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87259, dtype: object)
(87260, Id                                     87261
EmployeeName                  Martha A Rivas
JobTitle            Counselor, Juvenile Hall
BasePay                              67554.0
OvertimePay                         18208.66
OtherPay                             5177.92
Benefits                            27161.65
TotalPay                            90940.58
TotalPayBenefits                   118102.23
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87260, dtype: object)
(87261, Id                                87262
EmployeeName                  Leo  Goto
JobTitle            Stationary Engineer
BasePay                         73602.9
OvertimePay                     7059.29
OtherPay                        8943.53
Benefits                       28493.07
TotalPay                       89605.72
TotalPayBenefits              118098.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87261, dtype: object)
(87262, Id                                87263
EmployeeName           David A Gonzales
JobTitle            Stationary Engineer
BasePay                        78182.78
OvertimePay                     6826.15
OtherPay                        2557.18
Benefits                       30527.93
TotalPay                       87566.11
TotalPayBenefits              118094.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87262, dtype: object)
(87263, Id                             87264
EmployeeName          Vergel P Ronas
JobTitle            Transit Operator
BasePay                     60111.28
OvertimePay                 26596.06
OtherPay                     1830.77
Benefits                     29545.5
TotalPay                    88538.11
TotalPayBenefits           118083.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87263, dtype: object)
(87264, Id                                           87265
EmployeeName                        Robert J Salas
JobTitle            Arborist Technician Supervisor
BasePay                                    83066.5
OvertimePay                                 3657.4
OtherPay                                     947.2
Benefits                                  30408.73
TotalPay                                   87671.1
TotalPayBenefits                         118079.83
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87264, dtype: object)
(87265, Id                                87266
EmployeeName          Rodante V Angeles
JobTitle            Stationary Engineer
BasePay                        79250.73
OvertimePay                      906.81
OtherPay                        7109.34
Benefits                       30810.56
TotalPay                       87266.88
TotalPayBenefits              118077.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87265, dtype: object)
(87266, Id                                       87267
EmployeeName                      Angela B Lim
JobTitle            IS Business Analyst-Senior
BasePay                                88615.6
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29444.21
TotalPay                               88615.6
TotalPayBenefits                     118059.81
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87266, dtype: object)
(87267, Id                             87268
EmployeeName          Endale Y Sisay
JobTitle            Transit Operator
BasePay                     64422.63
OvertimePay                 19656.38
OtherPay                     2784.94
Benefits                    31183.34
TotalPay                    86863.95
TotalPayBenefits           118047.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87267, dtype: object)
(87268, Id                                     87269
EmployeeName                 Mario V Sanchez
JobTitle            Track Maintenance Worker
BasePay                             57029.66
OvertimePay                         28681.49
OtherPay                             7424.03
Benefits                            24912.02
TotalPay                            93135.18
TotalPayBenefits                    118047.2
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87268, dtype: object)
(87269, Id                               87270
EmployeeName        Ricardo A Martinez
JobTitle              Transit Operator
BasePay                       66919.17
OvertimePay                    10717.0
OtherPay                       6390.89
Benefits                      34016.25
TotalPay                      84027.06
TotalPayBenefits             118043.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87269, dtype: object)
(87270, Id                                    87271
EmployeeName        Fabiola  Cruz-Gutierrez
JobTitle                      Special Nurse
BasePay                           114520.64
OvertimePay                         1877.39
OtherPay                             472.64
Benefits                            1168.72
TotalPay                          116870.67
TotalPayBenefits                  118039.39
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87270, dtype: object)
(87271, Id                                   87272
EmployeeName                 Judy N Rivera
JobTitle            Patient Care Assistant
BasePay                           67528.26
OvertimePay                       16003.46
OtherPay                           6419.11
Benefits                          28081.73
TotalPay                          89950.83
TotalPayBenefits                 118032.56
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87271, dtype: object)
(87272, Id                                  87273
EmployeeName         Jess James Montejano
JobTitle            Legislative Assistant
BasePay                          86236.21
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         31788.96
TotalPay                         86236.21
TotalPayBenefits                118025.17
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87272, dtype: object)
(87273, Id                            87274
EmployeeName          David L Young
JobTitle            Junior Engineer
BasePay                    87028.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                   87028.53
TotalPayBenefits          118014.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87273, dtype: object)
(87274, Id                            87275
EmployeeName           Raoul  Roque
JobTitle            Junior Engineer
BasePay                    87028.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                   87028.52
TotalPayBenefits          118014.92
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87274, dtype: object)
(87275, Id                             87276
EmployeeName        Morris  Green Jr
JobTitle             Junior Engineer
BasePay                     87028.52
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     30986.4
TotalPay                    87028.52
TotalPayBenefits           118014.92
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87275, dtype: object)
(87276, Id                              87277
EmployeeName        Ezequiel A Zamora
JobTitle              Junior Engineer
BasePay                      87028.51
OvertimePay                       0.0
OtherPay                          0.0
Benefits                      30986.4
TotalPay                     87028.51
TotalPayBenefits            118014.91
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87276, dtype: object)
(87277, Id                                87278
EmployeeName               Winnie L Tse
JobTitle            Health Care Analyst
BasePay                        87028.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        30986.4
TotalPay                       87028.51
TotalPayBenefits              118014.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87277, dtype: object)
(87278, Id                                87279
EmployeeName           Charles E Oliver
JobTitle            Health Care Analyst
BasePay                        87028.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        30986.4
TotalPay                       87028.51
TotalPayBenefits              118014.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87278, dtype: object)
(87279, Id                            87280
EmployeeName           Stacey L Lee
JobTitle            Junior Engineer
BasePay                    87028.51
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                   87028.51
TotalPayBenefits          118014.91
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87279, dtype: object)
(87280, Id                            87281
EmployeeName           Brian W Wong
JobTitle            Junior Engineer
BasePay                    87028.51
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                   87028.51
TotalPayBenefits          118014.91
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87280, dtype: object)
(87281, Id                                   87282
EmployeeName                Berhane  Araya
JobTitle            Water Quality Tech III
BasePay                            87028.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30986.4
TotalPay                           87028.5
TotalPayBenefits                  118014.9
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87281, dtype: object)
(87282, Id                            87283
EmployeeName          Clinton  Choy
JobTitle            Junior Engineer
BasePay                     87028.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                    87028.5
TotalPayBenefits           118014.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87282, dtype: object)
(87283, Id                            87284
EmployeeName           Edmund H Lee
JobTitle            Junior Engineer
BasePay                     87028.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    30986.4
TotalPay                    87028.5
TotalPayBenefits           118014.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87283, dtype: object)
(87284, Id                                           87285
EmployeeName                        Jonathan I Yee
JobTitle            Integrated Pest Mgmt Specialst
BasePay                                    78567.0
OvertimePay                                8994.88
OtherPay                                     982.4
Benefits                                  29468.97
TotalPay                                  88544.28
TotalPayBenefits                         118013.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87284, dtype: object)
(87285, Id                                           87286
EmployeeName                             Alan L Ly
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                                4080.31
OtherPay                                     980.0
Benefits                                  30277.73
TotalPay                                  87735.21
TotalPayBenefits                         118012.94
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87285, dtype: object)
(87286, Id                                         87287
EmployeeName                       John A Torell
JobTitle            Sr Personal Property Auditor
BasePay                                 86526.61
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                31005.19
TotalPay                                87006.61
TotalPayBenefits                        118011.8
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87286, dtype: object)
(87287, Id                                     87288
EmployeeName                   Idil  Bereket
JobTitle            Public Relations Officer
BasePay                             87750.24
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30260.12
TotalPay                            87750.24
TotalPayBenefits                   118010.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87287, dtype: object)
(87288, Id                             87289
EmployeeName           Sergio  Perez
JobTitle            Transit Operator
BasePay                     66141.01
OvertimePay                 19317.79
OtherPay                      497.57
Benefits                    32050.87
TotalPay                    85956.37
TotalPayBenefits           118007.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87288, dtype: object)
(87289, Id                              87290
EmployeeName        Ilaria  Salvadori
JobTitle                    Planner 3
BasePay                      88568.34
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     29430.26
TotalPay                     88568.34
TotalPayBenefits             117998.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87289, dtype: object)
(87290, Id                            87291
EmployeeName         Akilah A Cadet
JobTitle            Health Educator
BasePay                    86330.81
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31658.62
TotalPay                   86330.81
TotalPayBenefits          117989.43
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87290, dtype: object)
(87291, Id                                87292
EmployeeName              Tanya M Brown
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    20679.76
OtherPay                        8696.31
Benefits                       27474.05
TotalPay                       90504.07
TotalPayBenefits              117978.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87291, dtype: object)
(87292, Id                          87293
EmployeeName        John M Becker
JobTitle                Asst Engr
BasePay                  86382.93
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31594.21
TotalPay                 86382.93
TotalPayBenefits        117977.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87292, dtype: object)
(87293, Id                          87294
EmployeeName        Sarah H Blain
JobTitle                Asst Engr
BasePay                  98339.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 19634.69
TotalPay                 98339.55
TotalPayBenefits        117974.24
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87293, dtype: object)
(87294, Id                                 87295
EmployeeName        Tamie N Wright-Dasse
JobTitle                     Anesthetist
BasePay                          88635.1
OvertimePay                          0.0
OtherPay                         7366.46
Benefits                        21971.88
TotalPay                        96001.56
TotalPayBenefits               117973.44
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87294, dtype: object)
(87295, Id                             87296
EmployeeName          Alberto  Perez
JobTitle            Transit Operator
BasePay                     65655.06
OvertimePay                 14484.32
OtherPay                     4824.74
Benefits                    32998.95
TotalPay                    84964.12
TotalPayBenefits           117963.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87295, dtype: object)
(87296, Id                                           87297
EmployeeName                   Tomasintak S Rumpak
JobTitle            Electrical Transit System Mech
BasePay                                    82678.2
OvertimePay                                3305.63
OtherPay                                    1574.1
Benefits                                  30394.26
TotalPay                                  87557.93
TotalPayBenefits                         117952.19
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87296, dtype: object)
(87297, Id                                   87298
EmployeeName             Eunice O Chibundu
JobTitle            Patient Care Assistant
BasePay                           68536.33
OvertimePay                        21881.2
OtherPay                             250.0
Benefits                          27277.96
TotalPay                          90667.53
TotalPayBenefits                 117945.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87297, dtype: object)
(87298, Id                               87299
EmployeeName        Robert  Castellano
JobTitle             Personnel Analyst
BasePay                       86937.71
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30999.87
TotalPay                      86937.71
TotalPayBenefits             117937.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87298, dtype: object)
(87299, Id                                         87300
EmployeeName                         Elissa  Lam
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.01
OvertimePay                             14394.91
OtherPay                                  1085.0
Benefits                                28548.77
TotalPay                                89378.92
TotalPayBenefits                       117927.69
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87299, dtype: object)
(87300, Id                                   87301
EmployeeName           Steven  Silvestrini
JobTitle            Water QualityTech I/II
BasePay                           80903.52
OvertimePay                        7252.66
OtherPay                               0.0
Benefits                          29761.15
TotalPay                          88156.18
TotalPayBenefits                 117917.33
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87300, dtype: object)
(87301, Id                             87302
EmployeeName               Kim  Tang
JobTitle            Transit Operator
BasePay                     69342.46
OvertimePay                 12781.68
OtherPay                     1843.33
Benefits                    33945.55
TotalPay                    83967.47
TotalPayBenefits           117913.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87301, dtype: object)
(87302, Id                              87303
EmployeeName        Gloria A Martinez
JobTitle             Training Officer
BasePay                      86912.14
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30998.88
TotalPay                     86912.14
TotalPayBenefits            117911.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87302, dtype: object)
(87303, Id                                        87304
EmployeeName                     Robert C Gerst
JobTitle            Station Agent, Muni Railway
BasePay                                 80379.0
OvertimePay                              664.12
OtherPay                                6041.17
Benefits                               30821.42
TotalPay                               87084.29
TotalPayBenefits                      117905.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87303, dtype: object)
(87304, Id                               87305
EmployeeName            Phoebe  Belsky
JobTitle            Speech Pathologist
BasePay                       88736.58
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      29168.68
TotalPay                      88736.58
TotalPayBenefits             117905.26
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87304, dtype: object)
(87305, Id                                   87306
EmployeeName               Jianming  Zhang
JobTitle            Occupational Therapist
BasePay                           86581.96
OvertimePay                            0.0
OtherPay                           3081.44
Benefits                          28231.81
TotalPay                           89663.4
TotalPayBenefits                 117895.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87305, dtype: object)
(87306, Id                                   87307
EmployeeName              Cirilo F Aguilar
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       14759.96
OtherPay                            6329.2
Benefits                          28410.51
TotalPay                          89480.16
TotalPayBenefits                 117890.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87306, dtype: object)
(87307, Id                                         87308
EmployeeName                         Lisa  Reyes
JobTitle            Health Program Coordinator 2
BasePay                                 87129.85
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30759.94
TotalPay                                87129.85
TotalPayBenefits                       117889.79
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87307, dtype: object)
(87308, Id                                          87309
EmployeeName                Joseph P Haggarty III
JobTitle            District Attry's Investigator
BasePay                                  83528.53
OvertimePay                                   0.0
OtherPay                                   7860.9
Benefits                                 26498.65
TotalPay                                 91389.43
TotalPayBenefits                        117888.08
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87308, dtype: object)
(87309, Id                                87310
EmployeeName              Dereck  Allen
JobTitle            Stationary Engineer
BasePay                        79441.39
OvertimePay                       438.3
OtherPay                         7152.1
Benefits                       30854.91
TotalPay                       87031.79
TotalPayBenefits               117886.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87309, dtype: object)
(87310, Id                                      87311
EmployeeName                   Angela C Jovel
JobTitle            EMT/Paramedic/Firefighter
BasePay                              73505.25
OvertimePay                           6855.01
OtherPay                              8095.98
Benefits                             29408.98
TotalPay                             88456.24
TotalPayBenefits                    117865.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87310, dtype: object)
(87311, Id                                   87312
EmployeeName                 Mark G Zeiter
JobTitle            Social Work Supervisor
BasePay                           86859.06
OvertimePay                            0.0
OtherPay                              60.0
Benefits                          30946.14
TotalPay                          86919.06
TotalPayBenefits                  117865.2
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87311, dtype: object)
(87312, Id                               87313
EmployeeName          Claudia R Espino
JobTitle            Environmental Spec
BasePay                       86181.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31678.17
TotalPay                      86181.01
TotalPayBenefits             117859.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87312, dtype: object)
(87313, Id                             87314
EmployeeName        Liliana  Ventura
JobTitle                   Asst Engr
BasePay                     86153.18
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31696.98
TotalPay                    86153.18
TotalPayBenefits           117850.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87313, dtype: object)
(87314, Id                                87315
EmployeeName            Leonid  Kornach
JobTitle            Stationary Engineer
BasePay                         69784.4
OvertimePay                    11394.13
OtherPay                        8946.01
Benefits                       27724.28
TotalPay                       90124.54
TotalPayBenefits              117848.82
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87314, dtype: object)
(87315, Id                                87316
EmployeeName           Mary Ann W Viray
JobTitle            Pharmacy Technician
BasePay                        80102.93
OvertimePay                     5200.18
OtherPay                        2560.81
Benefits                       29983.07
TotalPay                       87863.92
TotalPayBenefits              117846.99
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87315, dtype: object)
(87316, Id                                    87317
EmployeeName        Susann  Rodriguez-Corns
JobTitle            Senior Benefits Analyst
BasePay                            84457.81
OvertimePay                         2935.63
OtherPay                                0.0
Benefits                           30452.89
TotalPay                           87393.44
TotalPayBenefits                  117846.33
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87316, dtype: object)
(87317, Id                                    87318
EmployeeName        Victor  Rivera-Calderon
JobTitle                   Transit Operator
BasePay                            65007.45
OvertimePay                        19600.45
OtherPay                             794.67
Benefits                           32442.69
TotalPay                           85402.57
TotalPayBenefits                  117845.26
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87317, dtype: object)
(87318, Id                            87319
EmployeeName        Miguel A Gamino
JobTitle                 Dep Dir IV
BasePay                     88264.0
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29576.79
TotalPay                    88264.0
TotalPayBenefits          117840.79
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87318, dtype: object)
(87319, Id                                           87320
EmployeeName                         Robert G Bell
JobTitle            IT Operations Support Admn III
BasePay                                   85761.54
OvertimePay                                    0.0
OtherPay                                   1098.22
Benefits                                  30966.83
TotalPay                                  86859.76
TotalPayBenefits                         117826.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87319, dtype: object)
(87320, Id                                          87321
EmployeeName                        Susan C Fahey
JobTitle            Senior Administrative Analyst
BasePay                                  87288.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30537.59
TotalPay                                 87288.11
TotalPayBenefits                         117825.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87320, dtype: object)
(87321, Id                                     87322
EmployeeName            Benito A Capuyan III
JobTitle            Public Relations Officer
BasePay                             87701.68
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30119.68
TotalPay                            87701.68
TotalPayBenefits                   117821.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87321, dtype: object)
(87322, Id                             87323
EmployeeName        Robert G Daniele
JobTitle                  Sergeant 3
BasePay                     21228.05
OvertimePay                  1034.45
OtherPay                    89538.62
Benefits                     6019.34
TotalPay                   111801.12
TotalPayBenefits           117820.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87322, dtype: object)
(87323, Id                                         87324
EmployeeName                        Leslie G Lee
JobTitle            Institutional Police Officer
BasePay                                  71658.0
OvertimePay                             17219.15
OtherPay                                 1836.05
Benefits                                27104.61
TotalPay                                 90713.2
TotalPayBenefits                       117817.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87323, dtype: object)
(87324, Id                              87325
EmployeeName        William P Rivette
JobTitle                    Carpenter
BasePay                      84764.55
OvertimePay                   2112.23
OtherPay                       387.92
Benefits                     30538.86
TotalPay                      87264.7
TotalPayBenefits            117803.56
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87324, dtype: object)
(87325, Id                                   87326
EmployeeName                   Alma  Jones
JobTitle            Social Work Supervisor
BasePay                           86859.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30935.22
TotalPay                          86859.05
TotalPayBenefits                 117794.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87325, dtype: object)
(87326, Id                                   87327
EmployeeName                   Susan  Gage
JobTitle            Social Work Supervisor
BasePay                           86859.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30935.2
TotalPay                          86859.02
TotalPayBenefits                 117794.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87326, dtype: object)
(87327, Id                              87328
EmployeeName        Michael G Brennan
JobTitle                  Steamfitter
BasePay                      84469.12
OvertimePay                       0.0
OtherPay                      4164.08
Benefits                     29156.04
TotalPay                      88633.2
TotalPayBenefits            117789.24
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87327, dtype: object)
(87328, Id                                   87329
EmployeeName           David G Valdeolivar
JobTitle            Social Work Supervisor
BasePay                           86859.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30930.2
TotalPay                          86859.03
TotalPayBenefits                 117789.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87328, dtype: object)
(87329, Id                                   87330
EmployeeName             Timothy A Ballard
JobTitle            Social Work Supervisor
BasePay                           86859.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30930.2
TotalPay                          86859.01
TotalPayBenefits                 117789.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87329, dtype: object)
(87330, Id                                   87331
EmployeeName             Brenda D McGregor
JobTitle            Social Work Supervisor
BasePay                           86859.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30925.18
TotalPay                          86859.01
TotalPayBenefits                 117784.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87330, dtype: object)
(87331, Id                             87332
EmployeeName           Milton  Ulloa
JobTitle            Transit Operator
BasePay                     67904.25
OvertimePay                  14636.4
OtherPay                     1932.26
Benefits                    33306.65
TotalPay                    84472.91
TotalPayBenefits           117779.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87331, dtype: object)
(87332, Id                                      87333
EmployeeName                  Richard R Platt
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74670.2
OvertimePay                           5403.64
OtherPay                              8039.63
Benefits                             29663.22
TotalPay                             88113.47
TotalPayBenefits                    117776.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87332, dtype: object)
(87333, Id                           87334
EmployeeName        Andrew J Nixon
JobTitle            Accountant III
BasePay                   86101.31
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31675.09
TotalPay                  86101.31
TotalPayBenefits          117776.4
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87333, dtype: object)
(87334, Id                                87335
EmployeeName        Michael R Rottmayer
JobTitle                 Accountant III
BasePay                        86101.31
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31675.09
TotalPay                       86101.31
TotalPayBenefits               117776.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87334, dtype: object)
(87335, Id                             87336
EmployeeName           Tia E Coleman
JobTitle            Transit Operator
BasePay                      69292.9
OvertimePay                  9468.85
OtherPay                     4372.63
Benefits                    34610.35
TotalPay                    83134.38
TotalPayBenefits           117744.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87335, dtype: object)
(87336, Id                                87337
EmployeeName           James W Lunsford
JobTitle            Stationary Engineer
BasePay                        78707.51
OvertimePay                     1800.22
OtherPay                        5904.02
Benefits                       31331.66
TotalPay                       86411.75
TotalPayBenefits              117743.41
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87336, dtype: object)
(87337, Id                                   87338
EmployeeName             Ma.Teresa M Gamit
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       13819.27
OtherPay                            6977.2
Benefits                           28555.2
TotalPay                          89187.47
TotalPayBenefits                 117742.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87337, dtype: object)
(87338, Id                               87339
EmployeeName            Peter  Kapenga
JobTitle            Sheet Metal Worker
BasePay                        79749.8
OvertimePay                        0.0
OtherPay                       8984.99
Benefits                      29007.43
TotalPay                      88734.79
TotalPayBenefits             117742.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87338, dtype: object)
(87339, Id                                           87340
EmployeeName                          Nancy  Amaya
JobTitle            Senior Parking Control Officer
BasePay                                   70701.55
OvertimePay                               17590.57
OtherPay                                   1462.23
Benefits                                  27987.76
TotalPay                                  89754.35
TotalPayBenefits                         117742.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87339, dtype: object)
(87340, Id                            87341
EmployeeName        Daniel S Carlin
JobTitle                  Carpenter
BasePay                    84764.56
OvertimePay                  1875.6
OtherPay                     531.92
Benefits                   30569.37
TotalPay                   87172.08
TotalPayBenefits          117741.45
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87340, dtype: object)
(87341, Id                             87342
EmployeeName           Marilou P Gan
JobTitle            Registered Nurse
BasePay                     75640.88
OvertimePay                   4747.5
OtherPay                    15778.31
Benefits                    21571.02
TotalPay                    96166.69
TotalPayBenefits           117737.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87341, dtype: object)
(87342, Id                                   87343
EmployeeName              Cienesha M Young
JobTitle            Deputy Court Clerk III
BasePay                            84144.0
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          30091.61
TotalPay                           87644.0
TotalPayBenefits                 117735.61
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87342, dtype: object)
(87343, Id                              87344
EmployeeName        Fernando  Herrera
JobTitle             Transit Operator
BasePay                      64893.52
OvertimePay                   20459.3
OtherPay                        834.9
Benefits                     31534.28
TotalPay                     86187.72
TotalPayBenefits             117722.0
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87343, dtype: object)
(87344, Id                              87345
EmployeeName        Roshedy O Rapides
JobTitle                 Cement Mason
BasePay                      74020.21
OvertimePay                  15421.88
OtherPay                         68.0
Benefits                     28211.49
TotalPay                     89510.09
TotalPayBenefits            117721.58
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87344, dtype: object)
(87345, Id                             87346
EmployeeName         Debra A Stevens
JobTitle            Transit Operator
BasePay                     68917.12
OvertimePay                 13428.96
OtherPay                     1661.45
Benefits                    33713.48
TotalPay                    84007.53
TotalPayBenefits           117721.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87345, dtype: object)
(87346, Id                                  87347
EmployeeName           April A Veneracion
JobTitle            Legislative Assistant
BasePay                          85028.01
OvertimePay                           0.0
OtherPay                           2571.7
Benefits                         30119.71
TotalPay                         87599.71
TotalPayBenefits                117719.42
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87346, dtype: object)
(87347, Id                                     87348
EmployeeName                   Nigel E Woods
JobTitle            Track Maintenance Worker
BasePay                              63678.9
OvertimePay                         18061.58
OtherPay                             8096.37
Benefits                            27880.61
TotalPay                            89836.85
TotalPayBenefits                   117717.46
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87347, dtype: object)
(87348, Id                                  87349
EmployeeName        Anna  Pineda-Martinez
JobTitle                      Manager III
BasePay                           84507.2
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         33209.35
TotalPay                          84507.2
TotalPayBenefits                117716.55
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87348, dtype: object)
(87349, Id                             87350
EmployeeName         Nazario  Guinto
JobTitle            Transit Operator
BasePay                     68130.12
OvertimePay                 14663.06
OtherPay                     1602.28
Benefits                     33319.8
TotalPay                    84395.46
TotalPayBenefits           117715.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87349, dtype: object)
(87350, Id                             87351
EmployeeName            Zhong X Yang
JobTitle            Transit Operator
BasePay                     64940.45
OvertimePay                 19816.26
OtherPay                      1272.1
Benefits                    31682.06
TotalPay                    86028.81
TotalPayBenefits           117710.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87350, dtype: object)
(87351, Id                             87352
EmployeeName            Alvin G Chen
JobTitle            Transit Operator
BasePay                     68245.23
OvertimePay                 13818.02
OtherPay                     1492.26
Benefits                    34153.98
TotalPay                    83555.51
TotalPayBenefits           117709.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87351, dtype: object)
(87352, Id                                   87353
EmployeeName             Hortensia G Ponce
JobTitle            Deputy Court Clerk III
BasePay                           83962.46
OvertimePay                         164.75
OtherPay                            3500.0
Benefits                          30079.99
TotalPay                          87627.21
TotalPayBenefits                  117707.2
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87352, dtype: object)
(87353, Id                             87354
EmployeeName            Luke A Jones
JobTitle            Transit Operator
BasePay                     64933.08
OvertimePay                 20292.02
OtherPay                      891.59
Benefits                    31589.65
TotalPay                    86116.69
TotalPayBenefits           117706.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87353, dtype: object)
(87354, Id                             87355
EmployeeName           Jose S Batton
JobTitle            Transit Operator
BasePay                     63498.96
OvertimePay                 21873.36
OtherPay                     1348.66
Benefits                    30982.74
TotalPay                    86720.98
TotalPayBenefits           117703.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87354, dtype: object)
(87355, Id                             87356
EmployeeName        Leslie A Webster
JobTitle             Utility Analyst
BasePay                     84968.09
OvertimePay                      0.0
OtherPay                     1285.57
Benefits                    31442.72
TotalPay                    86253.66
TotalPayBenefits           117696.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87355, dtype: object)
(87356, Id                             87357
EmployeeName         Lenie A De Vera
JobTitle            Registered Nurse
BasePay                      80198.5
OvertimePay                  1225.88
OtherPay                     8807.91
Benefits                     27458.0
TotalPay                    90232.29
TotalPayBenefits           117690.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87356, dtype: object)
(87357, Id                                      87358
EmployeeName                   Ngawang  Tashi
JobTitle            Licensed Vocational Nurse
BasePay                              64974.01
OvertimePay                          19349.77
OtherPay                              4961.04
Benefits                             28387.21
TotalPay                             89284.82
TotalPayBenefits                    117672.03
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87357, dtype: object)
(87358, Id                                  87359
EmployeeName                  Arla S Ertz
JobTitle            Medical Social Worker
BasePay                          86625.08
OvertimePay                           0.0
OtherPay                             75.0
Benefits                         30946.94
TotalPay                         86700.08
TotalPayBenefits                117647.02
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87358, dtype: object)
(87359, Id                             87360
EmployeeName        Kurt J Schneider
JobTitle            Deputy Sheriff 1
BasePay                     66104.41
OvertimePay                  16564.5
OtherPay                     6392.89
Benefits                    28577.27
TotalPay                     89061.8
TotalPayBenefits           117639.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87359, dtype: object)
(87360, Id                                           87361
EmployeeName                     Karen M Lancaster
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    86956.2
OvertimePay                                    0.0
OtherPay                                     215.0
Benefits                                  30456.79
TotalPay                                   87171.2
TotalPayBenefits                         117627.99
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87360, dtype: object)
(87361, Id                               87362
EmployeeName        Patrick J O'Gorman
JobTitle                       Painter
BasePay                       77948.02
OvertimePay                   10315.15
OtherPay                         166.0
Benefits                      29186.36
TotalPay                      88429.17
TotalPayBenefits             117615.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87361, dtype: object)
(87362, Id                                87363
EmployeeName        Nicole Ann  Wheaton
JobTitle               Mayoral Staff IX
BasePay                        79256.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       38347.84
TotalPay                       79256.04
TotalPayBenefits              117603.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87362, dtype: object)
(87363, Id                                          87364
EmployeeName                          Tim F Leung
JobTitle            IS Business Analyst-Principal
BasePay                                   67831.0
OvertimePay                                321.61
OtherPay                                 29887.64
Benefits                                 19559.43
TotalPay                                 98040.25
TotalPayBenefits                        117599.68
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87363, dtype: object)
(87364, Id                             87365
EmployeeName        Norman L Rice Jr
JobTitle            Police Officer 3
BasePay                     84143.28
OvertimePay                  3692.48
OtherPay                      5661.2
Benefits                    24092.56
TotalPay                    93496.96
TotalPayBenefits           117589.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87364, dtype: object)
(87365, Id                                          87366
EmployeeName                        Charles C Lee
JobTitle            Chf Payroll & Personnel Clerk
BasePay                                  86049.03
OvertimePay                                   0.0
OtherPay                                   648.01
Benefits                                 30890.37
TotalPay                                 86697.04
TotalPayBenefits                        117587.41
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87365, dtype: object)
(87366, Id                                  87367
EmployeeName        Maria Estela G Mesias
JobTitle              Pharmacy Technician
BasePay                          80541.03
OvertimePay                       5449.66
OtherPay                          1620.49
Benefits                         29970.52
TotalPay                         87611.18
TotalPayBenefits                 117581.7
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87366, dtype: object)
(87367, Id                                      87368
EmployeeName                      Albert  Tam
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                          11408.11
OtherPay                               2148.0
Benefits                             28986.57
TotalPay                             88589.11
TotalPayBenefits                    117575.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87367, dtype: object)
(87368, Id                             87369
EmployeeName             Daniel M Li
JobTitle            Transit Operator
BasePay                      66653.2
OvertimePay                 17209.59
OtherPay                      558.63
Benefits                    33150.62
TotalPay                    84421.42
TotalPayBenefits           117572.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87368, dtype: object)
(87369, Id                                87370
EmployeeName                 Thet N Soe
JobTitle            Stationary Engineer
BasePay                        78616.03
OvertimePay                     1518.83
OtherPay                        6072.44
Benefits                       31343.71
TotalPay                        86207.3
TotalPayBenefits              117551.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87369, dtype: object)
(87370, Id                             87371
EmployeeName        Carolyn M Odhams
JobTitle            Transit Operator
BasePay                     56336.83
OvertimePay                 28449.56
OtherPay                     4460.27
Benefits                    28303.24
TotalPay                    89246.66
TotalPayBenefits            117549.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87370, dtype: object)
(87371, Id                                      87372
EmployeeName            Miles E DeGraffenreid
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74099.0
OvertimePay                             514.7
OtherPay                              12605.1
Benefits                             30327.62
TotalPay                              87218.8
TotalPayBenefits                    117546.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87371, dtype: object)
(87372, Id                             87373
EmployeeName        Antonio  Cahilig
JobTitle            Transit Operator
BasePay                     69211.71
OvertimePay                  9539.08
OtherPay                     4260.36
Benefits                    34531.72
TotalPay                    83011.15
TotalPayBenefits           117542.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87372, dtype: object)
(87373, Id                             87374
EmployeeName         Jermiah  Bryant
JobTitle            Transit Operator
BasePay                     67363.76
OvertimePay                 14153.16
OtherPay                     2786.41
Benefits                    33238.66
TotalPay                    84303.33
TotalPayBenefits           117541.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87373, dtype: object)
(87374, Id                                   87375
EmployeeName                    King T Lee
JobTitle            Public SafetyComm Disp
BasePay                           77120.04
OvertimePay                        6073.45
OtherPay                            3744.2
Benefits                          30596.59
TotalPay                          86937.69
TotalPayBenefits                 117534.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87374, dtype: object)
(87375, Id                                  87376
EmployeeName            Monica L Quattrin
JobTitle            Executive Secretary 3
BasePay                          86623.62
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30905.43
TotalPay                         86623.62
TotalPayBenefits                117529.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87375, dtype: object)
(87376, Id                                  87377
EmployeeName          Carmelita M Navarro
JobTitle            Executive Secretary 3
BasePay                          86623.55
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30905.42
TotalPay                         86623.55
TotalPayBenefits                117528.97
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87376, dtype: object)
(87377, Id                                  87378
EmployeeName                Rowena V Carr
JobTitle            Executive Secretary 3
BasePay                          86623.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30905.38
TotalPay                         86623.56
TotalPayBenefits                117528.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87377, dtype: object)
(87378, Id                                  87379
EmployeeName               Andrea D Green
JobTitle            Executive Secretary 3
BasePay                          86623.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30905.39
TotalPay                         86623.52
TotalPayBenefits                117528.91
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87378, dtype: object)
(87379, Id                                  87380
EmployeeName                Laini K Scott
JobTitle            Executive Secretary 3
BasePay                           86623.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30905.37
TotalPay                          86623.5
TotalPayBenefits                117528.87
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87379, dtype: object)
(87380, Id                               87381
EmployeeName        Jennifer C Hickman
JobTitle            Program Specialist
BasePay                       82189.82
OvertimePay                    5505.51
OtherPay                           0.0
Benefits                      29824.72
TotalPay                      87695.33
TotalPayBenefits             117520.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87380, dtype: object)
(87381, Id                                     87382
EmployeeName                  Subhash  Chand
JobTitle            Fingerprint Technician 2
BasePay                             64998.04
OvertimePay                         19065.68
OtherPay                             5843.57
Benefits                            27605.67
TotalPay                            89907.29
TotalPayBenefits                   117512.96
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87381, dtype: object)
(87382, Id                             87383
EmployeeName        Wanda D Williams
JobTitle            Transit Operator
BasePay                     65989.71
OvertimePay                 17701.44
OtherPay                      895.34
Benefits                    32918.77
TotalPay                    84586.49
TotalPayBenefits           117505.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87382, dtype: object)
(87383, Id                             87384
EmployeeName            Kyle M Quach
JobTitle            Transit Operator
BasePay                      69435.8
OvertimePay                 10451.34
OtherPay                     2610.01
Benefits                    35008.08
TotalPay                    82497.15
TotalPayBenefits           117505.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87383, dtype: object)
(87384, Id                             87385
EmployeeName        Roberto A Chavez
JobTitle                    Gardener
BasePay                     65813.96
OvertimePay                 19106.39
OtherPay                     4877.41
Benefits                    27701.74
TotalPay                    89797.76
TotalPayBenefits            117499.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87384, dtype: object)
(87385, Id                                 87386
EmployeeName        Gretchen L Alexander
JobTitle                Transit Operator
BasePay                         66858.37
OvertimePay                     17772.49
OtherPay                          463.71
Benefits                         32401.5
TotalPay                        85094.57
TotalPayBenefits               117496.07
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87385, dtype: object)
(87386, Id                             87387
EmployeeName              Dan C Vong
JobTitle            Transit Operator
BasePay                     67243.02
OvertimePay                 15916.56
OtherPay                      836.93
Benefits                     33496.4
TotalPay                    83996.51
TotalPayBenefits           117492.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87386, dtype: object)
(87387, Id                                         87388
EmployeeName                     SushmaD  Bhatia
JobTitle            Principal Environ Specialist
BasePay                                  89130.6
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                28358.43
TotalPay                                 89130.6
TotalPayBenefits                       117489.03
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87387, dtype: object)
(87388, Id                             87389
EmployeeName          Carl  Cranford
JobTitle            Transit Operator
BasePay                     63742.82
OvertimePay                 22387.89
OtherPay                      457.54
Benefits                    30899.59
TotalPay                    86588.25
TotalPayBenefits           117487.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87388, dtype: object)
(87389, Id                              87390
EmployeeName        Gerfre G Tijerino
JobTitle             Transit Operator
BasePay                      67970.96
OvertimePay                  12158.66
OtherPay                      3600.95
Benefits                     33756.09
TotalPay                     83730.57
TotalPayBenefits            117486.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87389, dtype: object)
(87390, Id                                87391
EmployeeName                June Y Shen
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    19237.99
OtherPay                        9484.56
Benefits                       27634.46
TotalPay                       89850.55
TotalPayBenefits              117485.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87390, dtype: object)
(87391, Id                                    87392
EmployeeName                 Adrian J Field
JobTitle            Park Section Supervisor
BasePay                            82495.35
OvertimePay                         4923.91
OtherPay                                0.0
Benefits                           30062.98
TotalPay                           87419.26
TotalPayBenefits                  117482.24
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87391, dtype: object)
(87392, Id                                      87393
EmployeeName                  Enrie M Oblanca
JobTitle            Public Health Team Leader
BasePay                              76006.31
OvertimePay                           5076.54
OtherPay                              6568.67
Benefits                              29820.6
TotalPay                             87651.52
TotalPayBenefits                    117472.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87392, dtype: object)
(87393, Id                             87394
EmployeeName        Jovian O Colbert
JobTitle            Transit Operator
BasePay                     67031.35
OvertimePay                  15763.8
OtherPay                     1825.63
Benefits                     32843.8
TotalPay                    84620.78
TotalPayBenefits           117464.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87393, dtype: object)
(87394, Id                          87395
EmployeeName        Danny G Honma
JobTitle                 Gardener
BasePay                   64641.0
OvertimePay              23019.89
OtherPay                  2752.41
Benefits                  27049.6
TotalPay                  90413.3
TotalPayBenefits         117462.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87394, dtype: object)
(87395, Id                                      87396
EmployeeName                 Phelicia R Jones
JobTitle            Rehabilitation Svcs Coord
BasePay                              85098.22
OvertimePay                               0.0
OtherPay                              1881.35
Benefits                             30475.42
TotalPay                             86979.57
TotalPayBenefits                    117454.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87395, dtype: object)
(87396, Id                              87397
EmployeeName        Timothy J Abraham
JobTitle            Personnel Analyst
BasePay                      85853.01
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     31601.62
TotalPay                     85853.01
TotalPayBenefits            117454.63
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87396, dtype: object)
(87397, Id                            87398
EmployeeName        Laura J Arriola
JobTitle            Utility Analyst
BasePay                    86314.05
OvertimePay                  291.48
OtherPay                        0.0
Benefits                   30843.22
TotalPay                   86605.53
TotalPayBenefits          117448.75
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87397, dtype: object)
(87398, Id                                  87399
EmployeeName                Janet  Moomaw
JobTitle            Medical Social Worker
BasePay                          86482.08
OvertimePay                           0.0
OtherPay                           617.91
Benefits                         30334.85
TotalPay                         87099.99
TotalPayBenefits                117434.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87398, dtype: object)
(87399, Id                             87400
EmployeeName         Shawn D Coleman
JobTitle            Transit Operator
BasePay                     65659.21
OvertimePay                 15055.39
OtherPay                     3970.73
Benefits                    32746.14
TotalPay                    84685.33
TotalPayBenefits           117431.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87399, dtype: object)
(87400, Id                                      87401
EmployeeName                 Benjamin S Lopez
JobTitle            EMT/Paramedic/Firefighter
BasePay                              74198.85
OvertimePay                            379.04
OtherPay                             12389.53
Benefits                             30460.36
TotalPay                             86967.42
TotalPayBenefits                    117427.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87400, dtype: object)
(87401, Id                                      87402
EmployeeName                  Luis A Espinoza
JobTitle            Licensed Vocational Nurse
BasePay                              67568.71
OvertimePay                          14868.39
OtherPay                              6654.74
Benefits                             28328.65
TotalPay                             89091.84
TotalPayBenefits                    117420.49
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87401, dtype: object)
(87402, Id                                87403
EmployeeName             William A Hunt
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                      6819.9
OtherPay                        1572.17
Benefits                       29738.62
TotalPay                       87675.57
TotalPayBenefits              117414.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87402, dtype: object)
(87403, Id                            87404
EmployeeName        Michael J Wrath
JobTitle                    Painter
BasePay                     77948.0
OvertimePay                 6338.05
OtherPay                     3321.5
Benefits                   29797.62
TotalPay                   87607.55
TotalPayBenefits          117405.17
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87403, dtype: object)
(87404, Id                                87405
EmployeeName            John  MacDonald
JobTitle            Stationary Engineer
BasePay                        78473.52
OvertimePay                     2598.39
OtherPay                        5908.17
Benefits                       30417.87
TotalPay                       86980.08
TotalPayBenefits              117397.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87404, dtype: object)
(87405, Id                               87406
EmployeeName        Deborah A McDowell
JobTitle              Transit Operator
BasePay                       66688.34
OvertimePay                   11792.73
OtherPay                       5290.32
Benefits                      33623.26
TotalPay                      83771.39
TotalPayBenefits             117394.65
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87405, dtype: object)
(87406, Id                          87407
EmployeeName         Paul J Quinn
JobTitle                Carpenter
BasePay                   84764.5
OvertimePay                529.42
OtherPay                    636.5
Benefits                 31462.83
TotalPay                 85930.42
TotalPayBenefits        117393.25
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87406, dtype: object)
(87407, Id                          87408
EmployeeName        Jeremy  Reiss
JobTitle                Carpenter
BasePay                  83514.15
OvertimePay               1322.05
OtherPay                   2064.5
Benefits                 30490.47
TotalPay                  86900.7
TotalPayBenefits        117391.17
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87407, dtype: object)
(87408, Id                          87409
EmployeeName          Anne K Lane
JobTitle              Librarian 1
BasePay                  85468.41
OvertimePay                   0.0
OtherPay                  1048.57
Benefits                 30860.52
TotalPay                 86516.98
TotalPayBenefits         117377.5
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87408, dtype: object)
(87409, Id                                           87410
EmployeeName                        Kevin M Woolen
JobTitle            Integrated Pest Mgmt Specialst
BasePay                                    82494.5
OvertimePay                                 4799.3
OtherPay                                       0.0
Benefits                                  30062.77
TotalPay                                   87293.8
TotalPayBenefits                         117356.57
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87409, dtype: object)
(87410, Id                               87411
EmployeeName        Michael E Barrango
JobTitle                  Truck Driver
BasePay                       80052.01
OvertimePay                    4712.29
OtherPay                        2530.0
Benefits                      30060.63
TotalPay                       87294.3
TotalPayBenefits             117354.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87410, dtype: object)
(87411, Id                               87412
EmployeeName        Garry M Nettles Jr
JobTitle             Personnel Analyst
BasePay                       85752.72
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       31601.1
TotalPay                      85752.72
TotalPayBenefits             117353.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87411, dtype: object)
(87412, Id                             87413
EmployeeName          Karen G Wilson
JobTitle            Transit Operator
BasePay                     65179.86
OvertimePay                 18896.37
OtherPay                     1424.92
Benefits                    31845.53
TotalPay                    85501.15
TotalPayBenefits           117346.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87412, dtype: object)
(87413, Id                           87414
EmployeeName        Josephine  Liu
JobTitle            Accountant III
BasePay                   86464.51
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30881.52
TotalPay                  86464.51
TotalPayBenefits         117346.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87413, dtype: object)
(87414, Id                             87415
EmployeeName        Christina B Zhou
JobTitle              Accountant III
BasePay                     86464.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30879.69
TotalPay                    86464.51
TotalPayBenefits            117344.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87414, dtype: object)
(87415, Id                              87416
EmployeeName           Brian J Saiger
JobTitle            Parts Storekeeper
BasePay                       64827.0
OvertimePay                  19296.93
OtherPay                      5597.91
Benefits                     27620.74
TotalPay                     89721.84
TotalPayBenefits            117342.58
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87415, dtype: object)
(87416, Id                                87417
EmployeeName            Jorge L Santana
JobTitle            Automotive Mechanic
BasePay                        77666.35
OvertimePay                     8363.26
OtherPay                         2048.4
Benefits                       29258.76
TotalPay                       88078.01
TotalPayBenefits              117336.77
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87416, dtype: object)
(87417, Id                                      87418
EmployeeName                 Fernando  Garcia
JobTitle            Public Health Team Leader
BasePay                               77436.0
OvertimePay                            4678.8
OtherPay                              5173.02
Benefits                             30047.05
TotalPay                             87287.82
TotalPayBenefits                    117334.87
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87417, dtype: object)
(87418, Id                                       87419
EmployeeName              Jaime S Morin-Arlett
JobTitle            Protective Services Worker
BasePay                               86945.87
OvertimePay                                0.0
OtherPay                                591.64
Benefits                              29796.07
TotalPay                              87537.51
TotalPayBenefits                     117333.58
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87418, dtype: object)
(87419, Id                                 87420
EmployeeName            Alexis  Williams
JobTitle            Physician Specialist
BasePay                         88405.29
OvertimePay                          0.0
OtherPay                          3285.0
Benefits                        25637.44
TotalPay                        91690.29
TotalPayBenefits               117327.73
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87419, dtype: object)
(87420, Id                             87421
EmployeeName            Peter M. Lin
JobTitle            Security Analyst
BasePay                      87956.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29365.55
TotalPay                     87956.0
TotalPayBenefits           117321.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87420, dtype: object)
(87421, Id                             87422
EmployeeName          Matthew R Cole
JobTitle            Police Officer 2
BasePay                     89098.22
OvertimePay                      0.0
OtherPay                     1088.85
Benefits                    27132.19
TotalPay                    90187.07
TotalPayBenefits           117319.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87421, dtype: object)
(87422, Id                                   87423
EmployeeName        Antonio Manuel  Guerra
JobTitle                  Mayoral Staff XI
BasePay                           78741.52
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          38562.72
TotalPay                          78741.52
TotalPayBenefits                 117304.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87422, dtype: object)
(87423, Id                             87424
EmployeeName            Anna  Fisher
JobTitle            Registered Nurse
BasePay                     73850.11
OvertimePay                      0.0
OtherPay                    20387.77
Benefits                    23050.61
TotalPay                    94237.88
TotalPayBenefits           117288.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87423, dtype: object)
(87424, Id                                     87425
EmployeeName                Jasiri I Mshauri
JobTitle            Counselor, Juvenile Hall
BasePay                              64510.7
OvertimePay                         26941.15
OtherPay                               638.8
Benefits                            25193.81
TotalPay                            92090.65
TotalPayBenefits                   117284.46
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87424, dtype: object)
(87425, Id                                87426
EmployeeName           Jackie L Hubbard
JobTitle            Porter Supervisor 1
BasePay                        66744.01
OvertimePay                    19775.08
OtherPay                         3862.5
Benefits                       26901.89
TotalPay                       90381.59
TotalPayBenefits              117283.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87425, dtype: object)
(87426, Id                               87427
EmployeeName             Barry R Chown
JobTitle            Transit Supervisor
BasePay                        78957.2
OvertimePay                    5083.39
OtherPay                       3116.11
Benefits                      30113.89
TotalPay                       87156.7
TotalPayBenefits             117270.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87426, dtype: object)
(87427, Id                                 87428
EmployeeName        Corlette D Balestier
JobTitle              Program Specialist
BasePay                          83160.0
OvertimePay                      2031.75
OtherPay                          1578.0
Benefits                        30497.27
TotalPay                        86769.75
TotalPayBenefits               117267.02
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87427, dtype: object)
(87428, Id                                           87429
EmployeeName                      Francisco R Sosa
JobTitle            IT Operations Support Admn III
BasePay                                   83120.04
OvertimePay                                    0.0
OtherPay                                    3301.5
Benefits                                  30844.06
TotalPay                                  86421.54
TotalPayBenefits                          117265.6
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87428, dtype: object)
(87429, Id                             87430
EmployeeName           Ronald  Oreta
JobTitle            Transit Operator
BasePay                     66032.67
OvertimePay                 17488.02
OtherPay                     1470.54
Benefits                     32270.3
TotalPay                    84991.23
TotalPayBenefits           117261.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87429, dtype: object)
(87430, Id                                           87431
EmployeeName                       Kay K Matsunaga
JobTitle            IT Operations Support Admn III
BasePay                                   85758.42
OvertimePay                                    0.0
OtherPay                                    647.67
Benefits                                  30850.16
TotalPay                                  86406.09
TotalPayBenefits                         117256.25
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87430, dtype: object)
(87431, Id                                      87432
EmployeeName                Barbara  Dimanlig
JobTitle            Medical Records Tech Sprv
BasePay                              81486.09
OvertimePay                           5134.12
OtherPay                               648.07
Benefits                             29981.61
TotalPay                             87268.28
TotalPayBenefits                    117249.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87431, dtype: object)
(87432, Id                                           87433
EmployeeName                             Wei  Chen
JobTitle            IT Operations Support Admn III
BasePay                                   85758.44
OvertimePay                                    0.0
OtherPay                                    634.88
Benefits                                  30847.35
TotalPay                                  86393.32
TotalPayBenefits                         117240.67
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87432, dtype: object)
(87433, Id                             87434
EmployeeName          Scott E Ashley
JobTitle            Transit Operator
BasePay                     68589.09
OvertimePay                  14799.9
OtherPay                      593.95
Benefits                     33254.2
TotalPay                    83982.94
TotalPayBenefits           117237.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87433, dtype: object)
(87434, Id                             87435
EmployeeName           Dong T Nguyen
JobTitle            Transit Operator
BasePay                      68777.2
OvertimePay                 10417.62
OtherPay                     3179.48
Benefits                     34857.4
TotalPay                     82374.3
TotalPayBenefits            117231.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87434, dtype: object)
(87435, Id                             87436
EmployeeName            Carlos  Vado
JobTitle            Transit Operator
BasePay                     68428.26
OvertimePay                  9692.85
OtherPay                     6017.97
Benefits                    33086.72
TotalPay                    84139.08
TotalPayBenefits            117225.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87435, dtype: object)
(87436, Id                               87437
EmployeeName             Michael  Fung
JobTitle            Environmental Spec
BasePay                        85652.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31573.23
TotalPay                       85652.5
TotalPayBenefits             117225.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87436, dtype: object)
(87437, Id                             87438
EmployeeName            Hou Wen  Mai
JobTitle            Transit Operator
BasePay                     68779.49
OvertimePay                 14537.46
OtherPay                      574.89
Benefits                    33314.73
TotalPay                    83891.84
TotalPayBenefits           117206.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87437, dtype: object)
(87438, Id                             87439
EmployeeName             Larry  Chen
JobTitle            Transit Operator
BasePay                     67888.94
OvertimePay                 14380.63
OtherPay                     1717.31
Benefits                    33215.14
TotalPay                    83986.88
TotalPayBenefits           117202.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87438, dtype: object)
(87439, Id                          87440
EmployeeName        Yajing  Huang
JobTitle                Asst Engr
BasePay                  85623.88
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31577.65
TotalPay                 85623.88
TotalPayBenefits        117201.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87439, dtype: object)
(87440, Id                               87441
EmployeeName        Bassam A Aldhafari
JobTitle                     Asst Engr
BasePay                        85618.4
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31571.56
TotalPay                       85618.4
TotalPayBenefits             117189.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87440, dtype: object)
(87441, Id                            87442
EmployeeName        Michael J Bufka
JobTitle               Truck Driver
BasePay                    76269.13
OvertimePay                 8371.77
OtherPay                     3606.0
Benefits                   28940.93
TotalPay                    88246.9
TotalPayBenefits          117187.83
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87441, dtype: object)
(87442, Id                                     87443
EmployeeName                Sebastian  Ambra
JobTitle            Sheet Metal Supervisor 1
BasePay                             77765.01
OvertimePay                              0.0
OtherPay                            15253.48
Benefits                             24168.1
TotalPay                            93018.49
TotalPayBenefits                   117186.59
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87442, dtype: object)
(87443, Id                           87444
EmployeeName        Douglas O Joya
JobTitle               Electrician
BasePay                   92989.15
OvertimePay                 2984.5
OtherPay                     748.0
Benefits                  20463.99
TotalPay                  96721.65
TotalPayBenefits         117185.64
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87443, dtype: object)
(87444, Id                                   87445
EmployeeName                   Shirley  Li
JobTitle            Administrative Analyst
BasePay                            85185.0
OvertimePay                            0.0
OtherPay                            1160.0
Benefits                          30824.26
TotalPay                           86345.0
TotalPayBenefits                 117169.26
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87444, dtype: object)
(87445, Id                                     87446
EmployeeName                    James  Carne
JobTitle            General Utility Mechanic
BasePay                             74230.34
OvertimePay                          3813.61
OtherPay                            12614.76
Benefits                            26508.43
TotalPay                            90658.71
TotalPayBenefits                   117167.14
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87445, dtype: object)
(87446, Id                            87447
EmployeeName          Rosie L Scott
JobTitle            Utility Analyst
BasePay                    86314.12
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30843.28
TotalPay                   86314.12
TotalPayBenefits           117157.4
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87446, dtype: object)
(87447, Id                            87448
EmployeeName        Lorna T Navarro
JobTitle            Utility Analyst
BasePay                    86314.09
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30843.28
TotalPay                   86314.09
TotalPayBenefits          117157.37
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87447, dtype: object)
(87448, Id                            87449
EmployeeName         Eduardo I Diaz
JobTitle            Utility Analyst
BasePay                    86314.02
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30843.24
TotalPay                   86314.02
TotalPayBenefits          117157.26
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87448, dtype: object)
(87449, Id                                          87450
EmployeeName                    Edlyn E Kloefkorn
JobTitle            Program Specialist Supervisor
BasePay                                  87456.21
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29694.88
TotalPay                                 87456.21
TotalPayBenefits                        117151.09
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87449, dtype: object)
(87450, Id                                           87451
EmployeeName                          Haris  Kumar
JobTitle            Community Police Services Aide
BasePay                                   66123.01
OvertimePay                                15002.0
OtherPay                                   7742.56
Benefits                                  28279.39
TotalPay                                  88867.57
TotalPayBenefits                         117146.96
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87450, dtype: object)
(87451, Id                                          87452
EmployeeName                     Irene J Castillo
JobTitle            Asst Chf Victim/Wit Invstgtor
BasePay                                  86319.32
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30825.63
TotalPay                                 86319.32
TotalPayBenefits                        117144.95
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87451, dtype: object)
(87452, Id                                     87453
EmployeeName                    Daniel M Yee
JobTitle            Deputy Probation Officer
BasePay                              84367.1
OvertimePay                          4382.15
OtherPay                                 0.0
Benefits                            28392.87
TotalPay                            88749.25
TotalPayBenefits                   117142.12
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87452, dtype: object)
(87453, Id                                   87454
EmployeeName                Amber D Curran
JobTitle            Public SafetyComm Disp
BasePay                            72289.1
OvertimePay                        11669.1
OtherPay                           6497.88
Benefits                           26681.1
TotalPay                          90456.08
TotalPayBenefits                 117137.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87453, dtype: object)
(87454, Id                                87455
EmployeeName          Steven  Schroeder
JobTitle            Stationary Engineer
BasePay                        69019.43
OvertimePay                    21573.42
OtherPay                            0.0
Benefits                       26516.71
TotalPay                       90592.85
TotalPayBenefits              117109.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87454, dtype: object)
(87455, Id                                   87456
EmployeeName             Charlie M Caparas
JobTitle            Public SafetyComm Disp
BasePay                           75024.72
OvertimePay                        9658.67
OtherPay                           5022.35
Benefits                          27399.55
TotalPay                          89705.74
TotalPayBenefits                 117105.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87455, dtype: object)
(87456, Id                             87457
EmployeeName        Bernard  Chatman
JobTitle            Transit Operator
BasePay                     68953.46
OvertimePay                 11285.79
OtherPay                     2838.42
Benefits                    34025.82
TotalPay                    83077.67
TotalPayBenefits           117103.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87456, dtype: object)
(87457, Id                                  87458
EmployeeName        Richard  Hastings III
JobTitle                 Police Officer 2
BasePay                          82785.86
OvertimePay                       5405.35
OtherPay                          4398.48
Benefits                         24512.19
TotalPay                         92589.69
TotalPayBenefits                117101.88
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87457, dtype: object)
(87458, Id                             87459
EmployeeName            Hugo  Molina
JobTitle            Transit Operator
BasePay                     63989.29
OvertimePay                 19398.65
OtherPay                     2205.12
Benefits                    31504.93
TotalPay                    85593.06
TotalPayBenefits           117097.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87458, dtype: object)
(87459, Id                                     87460
EmployeeName        Alberic Anthony O Rivera
JobTitle                    Transit Operator
BasePay                             68111.21
OvertimePay                         10271.95
OtherPay                             4602.71
Benefits                            34111.38
TotalPay                            82985.87
TotalPayBenefits                   117097.25
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87459, dtype: object)
(87460, Id                            87461
EmployeeName        Michael R Riebe
JobTitle                  Asst Engr
BasePay                     85539.4
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   31552.74
TotalPay                    85539.4
TotalPayBenefits          117092.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87460, dtype: object)
(87461, Id                                       87462
EmployeeName        Gabriela D Toache-Guerrero
JobTitle                    Nurse Practitioner
BasePay                              109297.88
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               7793.45
TotalPay                             109297.88
TotalPayBenefits                     117091.33
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87461, dtype: object)
(87462, Id                                     87463
EmployeeName                Victor L Machado
JobTitle            General Utility Mechanic
BasePay                              85356.5
OvertimePay                          1097.72
OtherPay                                 0.0
Benefits                            30635.65
TotalPay                            86454.22
TotalPayBenefits                   117089.87
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87462, dtype: object)
(87463, Id                               87464
EmployeeName              Linda W Suen
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                        3123.0
Benefits                      30805.05
TotalPay                       86283.0
TotalPayBenefits             117088.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87463, dtype: object)
(87464, Id                                    87465
EmployeeName                 Antonio  Borja
JobTitle            Engineering Associate 1
BasePay                            81294.07
OvertimePay                         5953.95
OtherPay                                0.0
Benefits                           29839.53
TotalPay                           87248.02
TotalPayBenefits                  117087.55
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87464, dtype: object)
(87465, Id                                      87466
EmployeeName                     Mona H Rojas
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           8894.59
OtherPay                              5326.28
Benefits                             29263.76
TotalPay                             87822.87
TotalPayBenefits                    117086.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87465, dtype: object)
(87466, Id                                      87467
EmployeeName                   David P Bartel
JobTitle            Sprv Electronic Main Tech
BasePay                              89825.66
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             27257.29
TotalPay                             89825.66
TotalPayBenefits                    117082.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87466, dtype: object)
(87467, Id                             87468
EmployeeName           Karen D Booth
JobTitle            Transit Operator
BasePay                     68633.42
OvertimePay                  7907.95
OtherPay                     5846.47
Benefits                     34689.9
TotalPay                    82387.84
TotalPayBenefits           117077.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87467, dtype: object)
(87468, Id                                   87469
EmployeeName        Stephanie J Kristovich
JobTitle                  Registered Nurse
BasePay                            78570.3
OvertimePay                        5912.41
OtherPay                           6041.03
Benefits                          26550.02
TotalPay                          90523.74
TotalPayBenefits                 117073.76
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87468, dtype: object)
(87469, Id                                       87470
EmployeeName              Alejandra M Calderon
JobTitle            Protective Services Worker
BasePay                               79450.64
OvertimePay                                0.0
OtherPay                                6112.5
Benefits                              31509.52
TotalPay                              85563.14
TotalPayBenefits                     117072.66
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87469, dtype: object)
(87470, Id                                87471
EmployeeName               Wilfred  Yun
JobTitle            Pharmacy Technician
BasePay                        80541.02
OvertimePay                     3383.85
OtherPay                        2907.96
Benefits                       30234.61
TotalPay                       86832.83
TotalPayBenefits              117067.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87470, dtype: object)
(87471, Id                                87472
EmployeeName            Stephen B Plume
JobTitle            Stationary Engineer
BasePay                        72435.17
OvertimePay                     8919.47
OtherPay                        7764.34
Benefits                       27941.09
TotalPay                       89118.98
TotalPayBenefits              117060.07
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87471, dtype: object)
(87472, Id                                      87473
EmployeeName            Erika M Zipf-Williams
JobTitle            Sprv Clincal Psychologist
BasePay                              89316.82
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             27741.53
TotalPay                             89316.82
TotalPayBenefits                    117058.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87472, dtype: object)
(87473, Id                             87474
EmployeeName          Warren  Motley
JobTitle            Transit Operator
BasePay                      68272.1
OvertimePay                  9258.47
OtherPay                     4535.27
Benefits                    34984.26
TotalPay                    82065.84
TotalPayBenefits            117050.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87473, dtype: object)
(87474, Id                                         87475
EmployeeName                       Margaret  Tse
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81844.48
OvertimePay                               5215.5
OtherPay                                     0.0
Benefits                                29986.72
TotalPay                                87059.98
TotalPayBenefits                        117046.7
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87474, dtype: object)
(87475, Id                           87476
EmployeeName        Spiro P Vestal
JobTitle             Special Nurse
BasePay                   94471.13
OvertimePay                 3350.7
OtherPay                  19220.01
Benefits                       0.0
TotalPay                 117041.84
TotalPayBenefits         117041.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87475, dtype: object)
(87476, Id                            87477
EmployeeName         Scott R Keller
JobTitle            General Laborer
BasePay                     62468.5
OvertimePay                26318.93
OtherPay                     1836.0
Benefits                    26416.1
TotalPay                   90623.43
TotalPayBenefits          117039.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87476, dtype: object)
(87477, Id                             87478
EmployeeName          Lawrence K Lau
JobTitle            Transit Operator
BasePay                     67914.28
OvertimePay                 12458.99
OtherPay                     3035.14
Benefits                    33627.93
TotalPay                    83408.41
TotalPayBenefits           117036.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87477, dtype: object)
(87478, Id                                      87479
EmployeeName               Marthalina S Comia
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                          14140.39
OtherPay                                898.0
Benefits                             28394.14
TotalPay                              88640.4
TotalPayBenefits                    117034.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87478, dtype: object)
(87479, Id                             87480
EmployeeName         Johnny  Randall
JobTitle            Transit Operator
BasePay                     67460.85
OvertimePay                 15970.44
OtherPay                      812.17
Benefits                    32781.16
TotalPay                    84243.46
TotalPayBenefits           117024.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87479, dtype: object)
(87480, Id                                   87481
EmployeeName            Nicholas M Osipoff
JobTitle            Electrical Line Worker
BasePay                            71511.0
OvertimePay                        14826.6
OtherPay                           5193.72
Benefits                          25489.69
TotalPay                          91531.32
TotalPayBenefits                 117021.01
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87480, dtype: object)
(87481, Id                                      87482
EmployeeName                  Matthew W Faris
JobTitle            EMT/Paramedic/Firefighter
BasePay                              75787.48
OvertimePay                           2636.44
OtherPay                             11303.33
Benefits                             27292.28
TotalPay                             89727.25
TotalPayBenefits                    117019.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87481, dtype: object)
(87482, Id                                        87483
EmployeeName                  Danielle F Thomas
JobTitle            Station Agent, Muni Railway
BasePay                                79296.53
OvertimePay                             7404.55
OtherPay                                 897.55
Benefits                               29419.86
TotalPay                               87598.63
TotalPayBenefits                      117018.49
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87482, dtype: object)
(87483, Id                                         87484
EmployeeName                    Angela D Alvarez
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.03
OvertimePay                             13993.88
OtherPay                                  657.98
Benefits                                28464.37
TotalPay                                88550.89
TotalPayBenefits                       117015.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87483, dtype: object)
(87484, Id                                87485
EmployeeName           Donald J Flitter
JobTitle            Stationary Engineer
BasePay                        79459.73
OvertimePay                         0.0
OtherPay                        6769.79
Benefits                       30785.71
TotalPay                       86229.52
TotalPayBenefits              117015.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87484, dtype: object)
(87485, Id                             87486
EmployeeName             Tuong V Luu
JobTitle            Transit Operator
BasePay                     64919.79
OvertimePay                 20238.79
OtherPay                      420.04
Benefits                    31435.84
TotalPay                    85578.62
TotalPayBenefits           117014.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87485, dtype: object)
(87486, Id                               87487
EmployeeName         Cynthia L Knowles
JobTitle            Environmental Spec
BasePay                       86188.11
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30823.66
TotalPay                      86188.11
TotalPayBenefits             117011.77
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87486, dtype: object)
(87487, Id                               87488
EmployeeName            Alex  Dmitriew
JobTitle            Environmental Spec
BasePay                       86181.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30816.38
TotalPay                      86181.03
TotalPayBenefits             116997.41
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87487, dtype: object)
(87488, Id                               87489
EmployeeName              Toni L Moran
JobTitle            Environmental Spec
BasePay                       86181.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30816.36
TotalPay                      86181.03
TotalPayBenefits             116997.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87488, dtype: object)
(87489, Id                               87490
EmployeeName        Michael J Callahan
JobTitle                       Painter
BasePay                       77948.01
OvertimePay                    9422.49
OtherPay                         386.0
Benefits                       29228.5
TotalPay                       87756.5
TotalPayBenefits              116985.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87489, dtype: object)
(87490, Id                                87491
EmployeeName         Virgilio R Rafanan
JobTitle            Health Care Analyst
BasePay                        86270.96
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30707.71
TotalPay                       86270.96
TotalPayBenefits              116978.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87490, dtype: object)
(87491, Id                              87492
EmployeeName        Richard L Schmidt
JobTitle                    Carpenter
BasePay                      84764.54
OvertimePay                     468.9
OtherPay                       1026.0
Benefits                     30716.61
TotalPay                     86259.44
TotalPayBenefits            116976.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87491, dtype: object)
(87492, Id                                      87493
EmployeeName                   Jonathan S Lin
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          24420.53
OtherPay                              4727.44
Benefits                             26694.61
TotalPay                             90275.97
TotalPayBenefits                    116970.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87492, dtype: object)
(87493, Id                             87494
EmployeeName          David P Truong
JobTitle            Transit Operator
BasePay                     66463.39
OvertimePay                  18058.7
OtherPay                      289.52
Benefits                    32158.34
TotalPay                    84811.61
TotalPayBenefits           116969.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87493, dtype: object)
(87494, Id                                           87495
EmployeeName                           Michael  La
JobTitle            Electrical Transit System Mech
BasePay                                   56731.02
OvertimePay                               33495.96
OtherPay                                   5313.86
Benefits                                   21424.4
TotalPay                                  95540.84
TotalPayBenefits                         116965.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87494, dtype: object)
(87495, Id                                      87496
EmployeeName                     Seiya  Okada
JobTitle            Architectural Assistant 2
BasePay                              84496.77
OvertimePay                           1185.76
OtherPay                               808.22
Benefits                             30474.17
TotalPay                             86490.75
TotalPayBenefits                    116964.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87495, dtype: object)
(87496, Id                               87497
EmployeeName        Joseph L Giannelli
JobTitle              Transit Operator
BasePay                       66501.46
OvertimePay                   11787.88
OtherPay                       5174.28
Benefits                       33498.4
TotalPay                      83463.62
TotalPayBenefits             116962.02
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87496, dtype: object)
(87497, Id                                     87498
EmployeeName                  Jemal J Bailey
JobTitle            Track Maintenance Worker
BasePay                             63519.43
OvertimePay                         16383.72
OtherPay                             9051.98
Benefits                            28004.28
TotalPay                            88955.13
TotalPayBenefits                   116959.41
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87497, dtype: object)
(87498, Id                                          87499
EmployeeName                      Sheila D Layton
JobTitle            Senior Administrative Analyst
BasePay                                   85674.8
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31282.71
TotalPay                                  85674.8
TotalPayBenefits                        116957.51
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87498, dtype: object)
(87499, Id                             87500
EmployeeName         Judith L Reneau
JobTitle            Transit Operator
BasePay                      61716.6
OvertimePay                 24475.22
OtherPay                      713.81
Benefits                    30035.58
TotalPay                    86905.63
TotalPayBenefits           116941.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87499, dtype: object)
(87500, Id                          87501
EmployeeName        David A Barsi
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               4578.46
OtherPay                  2287.17
Benefits                  30021.4
TotalPay                 86917.63
TotalPayBenefits        116939.03
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87500, dtype: object)
(87501, Id                                      87502
EmployeeName                 Jason L Landivar
JobTitle            EMT/Paramedic/Firefighter
BasePay                              82115.61
OvertimePay                            666.79
OtherPay                              5220.34
Benefits                             28933.91
TotalPay                             88002.74
TotalPayBenefits                    116936.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87501, dtype: object)
(87502, Id                               87503
EmployeeName         Robert A Muniz Jr
JobTitle            Transit Supervisor
BasePay                        78957.2
OvertimePay                     3533.3
OtherPay                       4153.68
Benefits                      30292.34
TotalPay                      86644.18
TotalPayBenefits             116936.52
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87502, dtype: object)
(87503, Id                                   87504
EmployeeName                   Sherry  Tan
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                             966.0
Benefits                          30784.45
TotalPay                          86151.04
TotalPayBenefits                 116935.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87503, dtype: object)
(87504, Id                                          87505
EmployeeName                Stacey L Blankenbaker
JobTitle            Senior Administrative Analyst
BasePay                                  87459.22
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29471.21
TotalPay                                 87459.22
TotalPayBenefits                        116930.43
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87504, dtype: object)
(87505, Id                                           87506
EmployeeName                        Luis A Ramirez
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   85415.43
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31508.85
TotalPay                                  85415.43
TotalPayBenefits                         116924.28
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87505, dtype: object)
(87506, Id                                           87507
EmployeeName                       David W Mcelroy
JobTitle            Electrical Transit System Mech
BasePay                                    67141.8
OvertimePay                               24198.08
OtherPay                                       0.0
Benefits                                  25575.67
TotalPay                                  91339.88
TotalPayBenefits                         116915.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87506, dtype: object)
(87507, Id                                87508
EmployeeName          Kevin M Mcclendon
JobTitle            Stationary Engineer
BasePay                        69153.83
OvertimePay                     9017.42
OtherPay                       10222.17
Benefits                       28521.71
TotalPay                       88393.42
TotalPayBenefits              116915.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87507, dtype: object)
(87508, Id                                   87509
EmployeeName                Edwino S Baril
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       21046.08
OtherPay                             250.0
Benefits                          27216.08
TotalPay                          89687.08
TotalPayBenefits                 116903.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87508, dtype: object)
(87509, Id                               87510
EmployeeName        Rogelio M Asuncion
JobTitle              Transit Operator
BasePay                       65047.36
OvertimePay                   14178.15
OtherPay                       4912.88
Benefits                      32761.91
TotalPay                      84138.39
TotalPayBenefits              116900.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87509, dtype: object)
(87510, Id                                87511
EmployeeName        Mhalou D Villamejor
JobTitle            Benefits Supervisor
BasePay                         88327.8
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       28568.44
TotalPay                        88327.8
TotalPayBenefits              116896.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87510, dtype: object)
(87511, Id                          87512
EmployeeName           Kim R Lang
JobTitle                Carpenter
BasePay                  84764.52
OvertimePay                117.23
OtherPay                   1252.0
Benefits                 30759.06
TotalPay                 86133.75
TotalPayBenefits        116892.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87511, dtype: object)
(87512, Id                             87513
EmployeeName        Beverly J Atkins
JobTitle             Museum Sec Supv
BasePay                     68391.01
OvertimePay                 21285.13
OtherPay                         0.0
Benefits                    27216.08
TotalPay                    89676.14
TotalPayBenefits           116892.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87512, dtype: object)
(87513, Id                             87514
EmployeeName          Brian L Gordon
JobTitle            Transit Operator
BasePay                      66492.0
OvertimePay                 17227.72
OtherPay                      843.42
Benefits                    32321.28
TotalPay                    84563.14
TotalPayBenefits           116884.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87513, dtype: object)
(87514, Id                             87515
EmployeeName            Judy A Busch
JobTitle            Registered Nurse
BasePay                     74990.73
OvertimePay                  6963.04
OtherPay                     9637.46
Benefits                    25281.94
TotalPay                    91591.23
TotalPayBenefits           116873.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87514, dtype: object)
(87515, Id                             87516
EmployeeName         Jessica  Bullen
JobTitle            Mayoral Staff IX
BasePay                      78380.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    38487.46
TotalPay                     78380.0
TotalPayBenefits           116867.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87515, dtype: object)
(87516, Id                                  87517
EmployeeName        Linda F Gaspard-Berry
JobTitle               Physical Therapist
BasePay                          88602.39
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         28262.02
TotalPay                         88602.39
TotalPayBenefits                116864.41
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87516, dtype: object)
(87517, Id                             87518
EmployeeName          Anthony C Olay
JobTitle            Transit Operator
BasePay                     67212.64
OvertimePay                 15136.73
OtherPay                     1627.18
Benefits                     32883.9
TotalPay                    83976.55
TotalPayBenefits           116860.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87517, dtype: object)
(87518, Id                             87519
EmployeeName            Jose J Gamez
JobTitle            Transit Operator
BasePay                      67481.3
OvertimePay                 15403.49
OtherPay                      460.51
Benefits                    33505.71
TotalPay                     83345.3
TotalPayBenefits           116851.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87518, dtype: object)
(87519, Id                               87520
EmployeeName         Barron A Flemming
JobTitle            Transit Supervisor
BasePay                       72175.54
OvertimePay                    8476.31
OtherPay                       4148.06
Benefits                      32048.07
TotalPay                      84799.91
TotalPayBenefits             116847.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87519, dtype: object)
(87520, Id                                           87521
EmployeeName                         Sherman W Tan
JobTitle            Electrical Transit System Mech
BasePay                                   82463.15
OvertimePay                                 2762.1
OtherPay                                     630.0
Benefits                                  30991.41
TotalPay                                  85855.25
TotalPayBenefits                         116846.66
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87520, dtype: object)
(87521, Id                             87522
EmployeeName        Nathaniel  Moore
JobTitle            Transit Operator
BasePay                     66174.37
OvertimePay                 15696.19
OtherPay                     2378.08
Benefits                    32586.08
TotalPay                    84248.64
TotalPayBenefits           116834.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87521, dtype: object)
(87522, Id                           87523
EmployeeName           Ted A Relan
JobTitle            Deputy Sheriff
BasePay                   84073.57
OvertimePay                 1257.6
OtherPay                   1085.79
Benefits                  30415.95
TotalPay                  86416.96
TotalPayBenefits         116832.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87522, dtype: object)
(87523, Id                                         87524
EmployeeName                    Marshia  Herring
JobTitle            Health Program Coordinator 3
BasePay                                 87515.54
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                29314.24
TotalPay                                87515.54
TotalPayBenefits                       116829.78
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87523, dtype: object)
(87524, Id                                        87525
EmployeeName                     Gayle B Knotts
JobTitle            Customer Service Agent Supv
BasePay                                 81324.0
OvertimePay                             4339.56
OtherPay                                1128.49
Benefits                               30033.56
TotalPay                               86792.05
TotalPayBenefits                      116825.61
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87524, dtype: object)
(87525, Id                             87526
EmployeeName           Luis A Larios
JobTitle            Transit Operator
BasePay                     65287.92
OvertimePay                  18229.9
OtherPay                     1411.25
Benefits                    31888.34
TotalPay                    84929.07
TotalPayBenefits           116817.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87525, dtype: object)
(87526, Id                             87527
EmployeeName        Victor F Pacheco
JobTitle             Legal Assistant
BasePay                     81686.54
OvertimePay                  3963.58
OtherPay                      1040.0
Benefits                    30122.03
TotalPay                    86690.12
TotalPayBenefits           116812.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87526, dtype: object)
(87527, Id                                       87528
EmployeeName                       Randy  Tili
JobTitle            Protective Services Worker
BasePay                               82942.88
OvertimePay                                0.0
OtherPay                               4187.15
Benefits                              29667.08
TotalPay                              87130.03
TotalPayBenefits                     116797.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87527, dtype: object)
(87528, Id                            87529
EmployeeName        Thomas A OBrien
JobTitle                  Carpenter
BasePay                    84764.55
OvertimePay                     0.0
OtherPay                     1264.0
Benefits                   30765.31
TotalPay                   86028.55
TotalPayBenefits          116793.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87528, dtype: object)
(87529, Id                             87530
EmployeeName         Melvin  Sanders
JobTitle            Transit Operator
BasePay                     64368.09
OvertimePay                  17350.3
OtherPay                     3135.45
Benefits                    31938.99
TotalPay                    84853.84
TotalPayBenefits           116792.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87529, dtype: object)
(87530, Id                                  87531
EmployeeName               Vallie S Brown
JobTitle            Legislative Assistant
BasePay                           86642.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30150.72
TotalPay                          86642.0
TotalPayBenefits                116792.72
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87530, dtype: object)
(87531, Id                                          87532
EmployeeName                           Brice P Hy
JobTitle            Aprntc Statnry Eng, Sew Plant
BasePay                                   73761.0
OvertimePay                               6735.88
OtherPay                                   6635.8
Benefits                                 29649.51
TotalPay                                 87132.68
TotalPayBenefits                        116782.19
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87531, dtype: object)
(87532, Id                                      87533
EmployeeName                     Aaron M Chen
JobTitle            Automotive Service Worker
BasePay                              64312.21
OvertimePay                           11361.2
OtherPay                             12291.21
Benefits                              28816.5
TotalPay                             87964.62
TotalPayBenefits                    116781.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87532, dtype: object)
(87533, Id                             87534
EmployeeName          Philip D Chang
JobTitle            Transit Operator
BasePay                     68529.82
OvertimePay                 12613.77
OtherPay                     2019.79
Benefits                     33617.2
TotalPay                    83163.38
TotalPayBenefits           116780.58
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87533, dtype: object)
(87534, Id                                   87535
EmployeeName              Allan M Balancio
JobTitle            Patient Care Assistant
BasePay                           68375.16
OvertimePay                       13921.58
OtherPay                           6124.98
Benefits                          28357.87
TotalPay                          88421.72
TotalPayBenefits                 116779.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87534, dtype: object)
(87535, Id                                          87536
EmployeeName                       Dorothy W Bong
JobTitle            Airport Property Specialist 1
BasePay                                  87646.65
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29124.21
TotalPay                                 87646.65
TotalPayBenefits                        116770.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87535, dtype: object)
(87536, Id                               87537
EmployeeName               Simon  Kwan
JobTitle            Transit Supervisor
BasePay                       68004.94
OvertimePay                    8553.43
OtherPay                       6550.48
Benefits                      33660.24
TotalPay                      83108.85
TotalPayBenefits             116769.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87536, dtype: object)
(87537, Id                                        87538
EmployeeName                    Charles A Smith
JobTitle            Investigator, Tax Collector
BasePay                                 85479.5
OvertimePay                              597.38
OtherPay                                    0.0
Benefits                               30686.37
TotalPay                               86076.88
TotalPayBenefits                      116763.25
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87537, dtype: object)
(87538, Id                                  87539
EmployeeName             Richard P Donati
JobTitle            Maintenance Machinist
BasePay                          82219.51
OvertimePay                       3090.66
OtherPay                            550.0
Benefits                         30902.56
TotalPay                         85860.17
TotalPayBenefits                116762.73
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87538, dtype: object)
(87539, Id                                          87540
EmployeeName             Richard L Giambastini Jr
JobTitle            Senior Administrative Analyst
BasePay                                  76703.13
OvertimePay                                   0.0
OtherPay                                  2304.15
Benefits                                 37752.71
TotalPay                                 79007.28
TotalPayBenefits                        116759.99
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87539, dtype: object)
(87540, Id                                           87541
EmployeeName                    Maximilian A Obado
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                2757.15
OtherPay                                    1010.0
Benefits                                  30307.26
TotalPay                                  86448.65
TotalPayBenefits                         116755.91
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87540, dtype: object)
(87541, Id                            87542
EmployeeName        Harold E Irvine
JobTitle                 Manager VI
BasePay                    86721.01
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30031.26
TotalPay                   86721.01
TotalPayBenefits          116752.27
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87541, dtype: object)
(87542, Id                               87543
EmployeeName            Lesha R McPeak
JobTitle            Nurse Practitioner
BasePay                        81936.0
OvertimePay                     4918.5
OtherPay                       3534.48
Benefits                      26359.55
TotalPay                      90388.98
TotalPayBenefits             116748.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87542, dtype: object)
(87543, Id                           87544
EmployeeName           Sher S Khan
JobTitle            Police Officer
BasePay                   82788.38
OvertimePay                6595.71
OtherPay                   2344.41
Benefits                  25018.42
TotalPay                   91728.5
TotalPayBenefits         116746.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87543, dtype: object)
(87544, Id                                   87545
EmployeeName                    Eric  Chez
JobTitle            Water QualityTech I/II
BasePay                           80900.61
OvertimePay                        6093.57
OtherPay                               0.0
Benefits                          29751.26
TotalPay                          86994.18
TotalPayBenefits                 116745.44
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87544, dtype: object)
(87545, Id                                 87546
EmployeeName                  Daryl H Ng
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       5295.0
OtherPay                         1431.22
Benefits                        29880.15
TotalPay                        86859.23
TotalPayBenefits               116739.38
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87545, dtype: object)
(87546, Id                           87547
EmployeeName         Edwin M Balli
JobTitle            Deputy Sheriff
BasePay                   73734.71
OvertimePay               14180.16
OtherPay                   3554.96
Benefits                  25269.11
TotalPay                  91469.83
TotalPayBenefits         116738.94
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87546, dtype: object)
(87547, Id                             87548
EmployeeName            James M Ryan
JobTitle            Survey Associate
BasePay                     85236.58
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31500.53
TotalPay                    85236.58
TotalPayBenefits           116737.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87547, dtype: object)
(87548, Id                            87549
EmployeeName        Candace D Bruce
JobTitle              Special Nurse
BasePay                    98300.31
OvertimePay                 2284.96
OtherPay                   14983.05
Benefits                    1155.69
TotalPay                  115568.32
TotalPayBenefits          116724.01
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87548, dtype: object)
(87549, Id                            87550
EmployeeName           Sean M Cavan
JobTitle            Utility Plumber
BasePay                    83996.51
OvertimePay                 2912.78
OtherPay                    1198.78
Benefits                   28614.54
TotalPay                   88108.07
TotalPayBenefits          116722.61
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87549, dtype: object)
(87550, Id                                 87551
EmployeeName            Sherman  Bennett
JobTitle            Automotive Machinist
BasePay                         84114.53
OvertimePay                      1546.43
OtherPay                           550.0
Benefits                        30504.36
TotalPay                        86210.96
TotalPayBenefits               116715.32
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87550, dtype: object)
(87551, Id                                    87552
EmployeeName                   Allan  Lucas
JobTitle            Real Property Appraiser
BasePay                            84939.05
OvertimePay                             0.0
OtherPay                             1200.0
Benefits                           30571.66
TotalPay                           86139.05
TotalPayBenefits                  116710.71
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87551, dtype: object)
(87552, Id                                      87553
EmployeeName                 Shawana J Booker
JobTitle            Psychiatric Social Worker
BasePay                               85233.0
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31473.82
TotalPay                              85233.0
TotalPayBenefits                    116706.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87552, dtype: object)
(87553, Id                             87554
EmployeeName           Khaisao  Tham
JobTitle            Transit Operator
BasePay                     68893.19
OvertimePay                 10164.32
OtherPay                     3474.26
Benefits                    34171.67
TotalPay                    82531.77
TotalPayBenefits           116703.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87553, dtype: object)
(87554, Id                                87555
EmployeeName              Rene G Amable
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    18980.22
OtherPay                        9047.63
Benefits                       27545.57
TotalPay                       89155.85
TotalPayBenefits              116701.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87554, dtype: object)
(87555, Id                             87556
EmployeeName           Pei Yu  Zhang
JobTitle            Transit Operator
BasePay                      68506.8
OvertimePay                  9088.13
OtherPay                     4753.98
Benefits                    34352.02
TotalPay                    82348.91
TotalPayBenefits           116700.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87555, dtype: object)
(87556, Id                                   87557
EmployeeName                     Yee  Vang
JobTitle            Airport Safety Officer
BasePay                           79335.25
OvertimePay                        2497.03
OtherPay                           5562.24
Benefits                          29305.94
TotalPay                          87394.52
TotalPayBenefits                 116700.46
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87556, dtype: object)
(87557, Id                                      87558
EmployeeName                 Brandon C Yukich
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74643.0
OvertimePay                           1828.32
OtherPay                              9566.05
Benefits                             30662.31
TotalPay                             86037.37
TotalPayBenefits                    116699.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87557, dtype: object)
(87558, Id                                        87559
EmployeeName                        David Y Kan
JobTitle            Senior Physician Specialist
BasePay                                88177.83
OvertimePay                                 0.0
OtherPay                                4408.84
Benefits                               24111.03
TotalPay                               92586.67
TotalPayBenefits                       116697.7
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87558, dtype: object)
(87559, Id                                           87560
EmployeeName                         Rosa E Serpas
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    82744.1
OvertimePay                                 557.03
OtherPay                                   2018.66
Benefits                                  31370.29
TotalPay                                  85319.79
TotalPayBenefits                         116690.08
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87559, dtype: object)
(87560, Id                                           87561
EmployeeName                           David  Chow
JobTitle            IT Operations Support Admn III
BasePay                                   85761.57
OvertimePay                                    0.0
OtherPay                                    162.03
Benefits                                   30763.2
TotalPay                                   85923.6
TotalPayBenefits                          116686.8
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87560, dtype: object)
(87561, Id                                 87562
EmployeeName             Jeremy M Bowles
JobTitle            Automotive Machinist
BasePay                         80133.03
OvertimePay                      4559.37
OtherPay                         1997.32
Benefits                        29993.78
TotalPay                        86689.72
TotalPayBenefits                116683.5
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87561, dtype: object)
(87562, Id                                        87563
EmployeeName                     Lorina U Rueda
JobTitle            Station Agent, Muni Railway
BasePay                                77735.21
OvertimePay                             8038.84
OtherPay                                1862.96
Benefits                               29043.59
TotalPay                               87637.01
TotalPayBenefits                       116680.6
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87562, dtype: object)
(87563, Id                             87564
EmployeeName           Tammi S Green
JobTitle            Transit Operator
BasePay                      67785.6
OvertimePay                 10685.31
OtherPay                     4332.32
Benefits                    33871.72
TotalPay                    82803.23
TotalPayBenefits           116674.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87563, dtype: object)
(87564, Id                                           87565
EmployeeName                    Timothy M Kingston
JobTitle            Public Defender's Investigator
BasePay                                    85202.4
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31471.12
TotalPay                                   85202.4
TotalPayBenefits                         116673.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87564, dtype: object)
(87565, Id                                87566
EmployeeName              Rachelle W Ha
JobTitle            IS Business Analyst
BasePay                        85894.31
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30776.17
TotalPay                       85894.31
TotalPayBenefits              116670.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87565, dtype: object)
(87566, Id                             87567
EmployeeName           Danze L Yanos
JobTitle            Transit Operator
BasePay                     65249.78
OvertimePay                 19316.17
OtherPay                      499.45
Benefits                    31603.91
TotalPay                     85065.4
TotalPayBenefits           116669.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87566, dtype: object)
(87567, Id                              87568
EmployeeName        Brandon W Obannon
JobTitle             Transit Operator
BasePay                      68056.57
OvertimePay                  12212.68
OtherPay                      2124.37
Benefits                     34258.21
TotalPay                     82393.62
TotalPayBenefits            116651.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87567, dtype: object)
(87568, Id                                         87569
EmployeeName        Lawrence Archimedes O Rivera
JobTitle                        Transit Operator
BasePay                                 69298.99
OvertimePay                              8621.97
OtherPay                                 3485.56
Benefits                                35239.76
TotalPay                                81406.52
TotalPayBenefits                       116646.28
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87568, dtype: object)
(87569, Id                             87570
EmployeeName         Raymond H Trinh
JobTitle            Transit Operator
BasePay                     68378.96
OvertimePay                 14581.98
OtherPay                      537.77
Benefits                    33141.12
TotalPay                    83498.71
TotalPayBenefits           116639.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87569, dtype: object)
(87570, Id                             87571
EmployeeName           Craig P Byrne
JobTitle            Registered Nurse
BasePay                     80615.37
OvertimePay                  3257.63
OtherPay                     6237.05
Benefits                    26527.19
TotalPay                    90110.05
TotalPayBenefits           116637.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87570, dtype: object)
(87571, Id                                  87572
EmployeeName             Roxana Y Morales
JobTitle            Emp & Training Spec 4
BasePay                          85503.05
OvertimePay                           0.0
OtherPay                            348.0
Benefits                         30785.02
TotalPay                         85851.05
TotalPayBenefits                116636.07
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87571, dtype: object)
(87572, Id                                   87573
EmployeeName              Brian W O'Connor
JobTitle            Administrative Analyst
BasePay                           85185.03
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31446.97
TotalPay                          85185.03
TotalPayBenefits                  116632.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87572, dtype: object)
(87573, Id                                   87574
EmployeeName                Angeles  Huang
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31446.97
TotalPay                          85185.02
TotalPayBenefits                 116631.99
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87573, dtype: object)
(87574, Id                                   87575
EmployeeName              Laura C Gaasemyr
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31446.97
TotalPay                          85185.02
TotalPayBenefits                 116631.99
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87574, dtype: object)
(87575, Id                                87576
EmployeeName        Michael V Catanzaro
JobTitle                       Gardener
BasePay                         64641.0
OvertimePay                    19946.65
OtherPay                        4625.56
Benefits                       27416.87
TotalPay                       89213.21
TotalPayBenefits              116630.08
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87575, dtype: object)
(87576, Id                          87577
EmployeeName         John T Gomez
JobTitle                Carpenter
BasePay                  84764.51
OvertimePay               1348.09
OtherPay                      0.0
Benefits                 30516.66
TotalPay                  86112.6
TotalPayBenefits        116629.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87576, dtype: object)
(87577, Id                             87578
EmployeeName              Leon Y Lee
JobTitle            Transit Operator
BasePay                     65112.26
OvertimePay                  17627.1
OtherPay                     1965.75
Benefits                    31924.05
TotalPay                    84705.11
TotalPayBenefits           116629.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87577, dtype: object)
(87578, Id                                   87579
EmployeeName              Timmy M Virgilio
JobTitle            Electrical Line Worker
BasePay                            64556.4
OvertimePay                       25328.84
OtherPay                           2535.55
Benefits                          24206.34
TotalPay                          92420.79
TotalPayBenefits                 116627.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87578, dtype: object)
(87579, Id                                     87580
EmployeeName             Kathryn E Patterson
JobTitle            Public Relations Officer
BasePay                             83001.91
OvertimePay                              0.0
OtherPay                             2170.15
Benefits                            31454.03
TotalPay                            85172.06
TotalPayBenefits                   116626.09
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87579, dtype: object)
(87580, Id                                   87581
EmployeeName                  Mark A Brown
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          31440.83
TotalPay                          85185.02
TotalPayBenefits                 116625.85
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87580, dtype: object)
(87581, Id                                     87582
EmployeeName                  Joel P Hoekman
JobTitle            General Utility Mechanic
BasePay                              85356.5
OvertimePay                            624.8
OtherPay                                 0.0
Benefits                            30635.65
TotalPay                             85981.3
TotalPayBenefits                   116616.95
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87581, dtype: object)
(87582, Id                                        87583
EmployeeName                  Jennifer  Lovvorn
JobTitle            Senior Management Assistant
BasePay                                85155.37
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               31446.74
TotalPay                               85155.37
TotalPayBenefits                      116602.11
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87582, dtype: object)
(87583, Id                                           87584
EmployeeName                  MariaElena  La Saint
JobTitle            IT Operations Support Admn III
BasePay                                   85619.29
OvertimePay                                    0.0
OtherPay                                     240.0
Benefits                                  30732.26
TotalPay                                  85859.29
TotalPayBenefits                         116591.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87583, dtype: object)
(87584, Id                                  87585
EmployeeName             Stephen A Counts
JobTitle            Maintenance Machinist
BasePay                           82681.5
OvertimePay                       2285.25
OtherPay                            550.0
Benefits                         31072.82
TotalPay                         85516.75
TotalPayBenefits                116589.57
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87584, dtype: object)
(87585, Id                                      87586
EmployeeName                      Luz S Arbis
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           7541.12
OtherPay                              6045.16
Benefits                             29400.56
TotalPay                             87188.28
TotalPayBenefits                    116588.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87585, dtype: object)
(87586, Id                                87587
EmployeeName              Ka Sing  Shum
JobTitle            Stationary Engineer
BasePay                         70659.5
OvertimePay                    18562.19
OtherPay                            0.0
Benefits                       27363.51
TotalPay                       89221.69
TotalPayBenefits               116585.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87586, dtype: object)
(87587, Id                             87588
EmployeeName             Dung D Dang
JobTitle            Transit Operator
BasePay                     65109.58
OvertimePay                 18436.21
OtherPay                     1293.23
Benefits                    31745.74
TotalPay                    84839.02
TotalPayBenefits           116584.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87587, dtype: object)
(87588, Id                               87589
EmployeeName           Andre D Beasley
JobTitle            Transit Supervisor
BasePay                       71753.08
OvertimePay                   11136.62
OtherPay                        1981.4
Benefits                      31707.14
TotalPay                       84871.1
TotalPayBenefits             116578.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87588, dtype: object)
(87589, Id                                          87590
EmployeeName                        Eugene C Duru
JobTitle            Comm Pol Svcs Aide Supervisor
BasePay                                  76545.18
OvertimePay                               7907.63
OtherPay                                  2734.19
Benefits                                 29380.79
TotalPay                                  87187.0
TotalPayBenefits                        116567.79
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87589, dtype: object)
(87590, Id                                   87591
EmployeeName                 Suh-Wung  Lee
JobTitle            Administrative Analyst
BasePay                           85185.12
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30722.37
TotalPay                          85833.12
TotalPayBenefits                 116555.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87590, dtype: object)
(87591, Id                                   87592
EmployeeName                Janet C Salyer
JobTitle            Administrative Analyst
BasePay                           85185.06
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30722.36
TotalPay                          85833.06
TotalPayBenefits                 116555.42
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87591, dtype: object)
(87592, Id                                           87593
EmployeeName                           Lupe  Perez
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.06
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  30722.36
TotalPay                                  85833.06
TotalPayBenefits                         116555.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87592, dtype: object)
(87593, Id                                           87594
EmployeeName                           May T Liang
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.05
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  30722.36
TotalPay                                  85833.05
TotalPayBenefits                         116555.41
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87593, dtype: object)
(87594, Id                                           87595
EmployeeName                         Carl B Morgan
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.04
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  30722.36
TotalPay                                  85833.04
TotalPayBenefits                          116555.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87594, dtype: object)
(87595, Id                                   87596
EmployeeName               William  Gaitan
JobTitle            Administrative Analyst
BasePay                           85185.03
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30722.36
TotalPay                          85833.03
TotalPayBenefits                 116555.39
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87595, dtype: object)
(87596, Id                                           87597
EmployeeName                            Cindy Y Du
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.03
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  30722.36
TotalPay                                  85833.03
TotalPayBenefits                         116555.39
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87596, dtype: object)
(87597, Id                                           87598
EmployeeName                           Alice Q Low
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.03
OvertimePay                                    0.0
OtherPay                                     648.0
Benefits                                  30722.36
TotalPay                                  85833.03
TotalPayBenefits                         116555.39
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87597, dtype: object)
(87598, Id                                   87599
EmployeeName                      Lily  Ng
JobTitle            Administrative Analyst
BasePay                           85185.03
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30722.35
TotalPay                          85833.03
TotalPayBenefits                 116555.38
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87598, dtype: object)
(87599, Id                                       87600
EmployeeName                     Jeffrey S Wun
JobTitle            Asst Materials Coordinator
BasePay                                75608.0
OvertimePay                           11391.69
OtherPay                                 648.0
Benefits                              28895.04
TotalPay                              87647.69
TotalPayBenefits                     116542.73
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87599, dtype: object)
(87600, Id                                          87601
EmployeeName                      Lidia M Sanchez
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               1347.51
OtherPay                                   1540.0
Benefits                                 30492.82
TotalPay                                 86047.51
TotalPayBenefits                        116540.33
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87600, dtype: object)
(87601, Id                          87602
EmployeeName           John J Kim
JobTitle                Planner 3
BasePay                  85714.39
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30824.93
TotalPay                 85714.39
TotalPayBenefits        116539.32
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87601, dtype: object)
(87602, Id                                  87603
EmployeeName             Margaret A Nevin
JobTitle            Executive Secretary 3
BasePay                          85897.72
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30637.88
TotalPay                         85897.72
TotalPayBenefits                 116535.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87602, dtype: object)
(87603, Id                             87604
EmployeeName            PJ  Williams
JobTitle            Transit Operator
BasePay                     67370.53
OvertimePay                 11936.87
OtherPay                     3713.01
Benefits                    33509.94
TotalPay                    83020.41
TotalPayBenefits           116530.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87603, dtype: object)
(87604, Id                             87605
EmployeeName              Kent  Chau
JobTitle            Transit Operator
BasePay                     66792.21
OvertimePay                 17064.59
OtherPay                      358.33
Benefits                     32314.7
TotalPay                    84215.13
TotalPayBenefits           116529.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87604, dtype: object)
(87605, Id                                   87606
EmployeeName               David A Baldini
JobTitle            Ornamental Iron Worker
BasePay                            81848.5
OvertimePay                        1020.76
OtherPay                            2392.0
Benefits                          31253.87
TotalPay                          85261.26
TotalPayBenefits                 116515.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87605, dtype: object)
(87606, Id                                87607
EmployeeName              Steven M Lind
JobTitle            Automotive Mechanic
BasePay                        79277.72
OvertimePay                     1315.35
OtherPay                        5444.57
Benefits                       30477.49
TotalPay                       86037.64
TotalPayBenefits              116515.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87606, dtype: object)
(87607, Id                               87608
EmployeeName        Susannah  Prescott
JobTitle              Transit Operator
BasePay                       65571.55
OvertimePay                    9019.94
OtherPay                       8057.64
Benefits                      33865.46
TotalPay                      82649.13
TotalPayBenefits             116514.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87607, dtype: object)
(87608, Id                               87609
EmployeeName        Jeff L Constantino
JobTitle                     Asst Engr
BasePay                        79787.4
OvertimePay                    1946.65
OtherPay                       3567.14
Benefits                      31207.43
TotalPay                      85301.19
TotalPayBenefits             116508.62
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87608, dtype: object)
(87609, Id                                          87610
EmployeeName                     Jonnathan J Ruiz
JobTitle            Operating Engineer, Universal
BasePay                                   91272.6
OvertimePay                                5986.0
OtherPay                                   605.38
Benefits                                  18644.4
TotalPay                                 97863.98
TotalPayBenefits                        116508.38
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87609, dtype: object)
(87610, Id                               87611
EmployeeName        Trinh  Kha-Gammill
JobTitle            Program Specialist
BasePay                       83160.01
OvertimePay                        0.0
OtherPay                        2643.0
Benefits                      30703.85
TotalPay                      85803.01
TotalPayBenefits             116506.86
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87610, dtype: object)
(87611, Id                             87612
EmployeeName        Michael B Morris
JobTitle                Truck Driver
BasePay                      80052.0
OvertimePay                  4148.06
OtherPay                     2278.75
Benefits                    30023.35
TotalPay                    86478.81
TotalPayBenefits           116502.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87611, dtype: object)
(87612, Id                                           87613
EmployeeName                        Paschal Z Cruz
JobTitle            IT Operations Support Admn III
BasePay                                   85761.51
OvertimePay                                    0.0
OtherPay                                      6.32
Benefits                                  30733.86
TotalPay                                  85767.83
TotalPayBenefits                         116501.69
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87612, dtype: object)
(87613, Id                                          87614
EmployeeName                        Robert S Nava
JobTitle            Transit Car Cleaner Asst Sprv
BasePay                                   67041.0
OvertimePay                              11850.06
OtherPay                                  8902.75
Benefits                                 28707.76
TotalPay                                 87793.81
TotalPayBenefits                        116501.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87613, dtype: object)
(87614, Id                                87615
EmployeeName              Elbert P Auro
JobTitle            Stationary Engineer
BasePay                        79201.47
OvertimePay                         0.0
OtherPay                        6600.41
Benefits                       30698.02
TotalPay                       85801.88
TotalPayBenefits               116499.9
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87614, dtype: object)
(87615, Id                             87616
EmployeeName        Richard A Denton
JobTitle             Utility Analyst
BasePay                     85758.73
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30739.36
TotalPay                    85758.73
TotalPayBenefits           116498.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87615, dtype: object)
(87616, Id                                           87617
EmployeeName                           Ling F Hung
JobTitle            IT Operations Support Admn III
BasePay                                   85761.65
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.65
TotalPayBenefits                         116494.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87616, dtype: object)
(87617, Id                                           87618
EmployeeName                            Alan K Liu
JobTitle            IT Operations Support Admn III
BasePay                                   85761.57
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.72
TotalPay                                  85761.57
TotalPayBenefits                         116494.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87617, dtype: object)
(87618, Id                                           87619
EmployeeName                          Neil I Clark
JobTitle            IT Operations Support Admn III
BasePay                                   85761.58
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.58
TotalPayBenefits                         116494.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87618, dtype: object)
(87619, Id                                           87620
EmployeeName                       Mary E Cantrell
JobTitle            IT Operations Support Admn III
BasePay                                   85761.58
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.58
TotalPayBenefits                         116494.29
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87619, dtype: object)
(87620, Id                                           87621
EmployeeName                     Christina  Krauss
JobTitle            IT Operations Support Admn III
BasePay                                   85761.55
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.55
TotalPayBenefits                         116494.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87620, dtype: object)
(87621, Id                                           87622
EmployeeName                        Anthony S Kwok
JobTitle            IT Operations Support Admn III
BasePay                                   85761.55
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.55
TotalPayBenefits                         116494.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87621, dtype: object)
(87622, Id                               87623
EmployeeName         Leticia V Aguilar
JobTitle            IS Trainer-Journey
BasePay                       85761.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30732.71
TotalPay                      85761.53
TotalPayBenefits             116494.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87622, dtype: object)
(87623, Id                                           87624
EmployeeName                        Ronald K Beard
JobTitle            IT Operations Support Admn III
BasePay                                   85761.53
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.53
TotalPayBenefits                         116494.24
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87623, dtype: object)
(87624, Id                               87625
EmployeeName             Nancy P Lecht
JobTitle            IS Trainer-Journey
BasePay                       85761.52
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30732.71
TotalPay                      85761.52
TotalPayBenefits             116494.23
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87624, dtype: object)
(87625, Id                                           87626
EmployeeName                         Joseph  Hicks
JobTitle            IT Operations Support Admn III
BasePay                                   85761.52
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.52
TotalPayBenefits                         116494.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87625, dtype: object)
(87626, Id                                           87627
EmployeeName                             John  Tse
JobTitle            IT Operations Support Admn III
BasePay                                   85761.52
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.52
TotalPayBenefits                         116494.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87626, dtype: object)
(87627, Id                                      87628
EmployeeName                Jose S Cuejilo Jr
JobTitle            Architectural Assistant 2
BasePay                              85761.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30732.71
TotalPay                             85761.52
TotalPayBenefits                    116494.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87627, dtype: object)
(87628, Id                                           87629
EmployeeName                            John T Lam
JobTitle            IT Operations Support Admn III
BasePay                                   85761.52
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.52
TotalPayBenefits                         116494.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87628, dtype: object)
(87629, Id                                           87630
EmployeeName                  Bundit  Dharmasukrit
JobTitle            IT Operations Support Admn III
BasePay                                   85761.51
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.51
TotalPayBenefits                         116494.22
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87629, dtype: object)
(87630, Id                                           87631
EmployeeName                     Melvin  Javonillo
JobTitle            IT Operations Support Admn III
BasePay                                   85761.51
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                  85761.51
TotalPayBenefits                         116494.22
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87630, dtype: object)
(87631, Id                               87632
EmployeeName              Gary  Espina
JobTitle            IS Administrator 2
BasePay                       85761.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30732.71
TotalPay                      85761.51
TotalPayBenefits             116494.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87631, dtype: object)
(87632, Id                               87633
EmployeeName             Alvin C Moses
JobTitle            IS Administrator 2
BasePay                       85761.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30732.71
TotalPay                      85761.51
TotalPayBenefits             116494.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87632, dtype: object)
(87633, Id                               87634
EmployeeName          Armando A Domine
JobTitle            IS Administrator 2
BasePay                       85761.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30732.71
TotalPay                      85761.51
TotalPayBenefits             116494.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87633, dtype: object)
(87634, Id                                           87635
EmployeeName                          Hung K Quach
JobTitle            IT Operations Support Admn III
BasePay                                    85761.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                   85761.5
TotalPayBenefits                         116494.21
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87634, dtype: object)
(87635, Id                                           87636
EmployeeName                            Vinny D To
JobTitle            IT Operations Support Admn III
BasePay                                    85761.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30732.71
TotalPay                                   85761.5
TotalPayBenefits                         116494.21
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87635, dtype: object)
(87636, Id                                87637
EmployeeName        Alessandro  Peruffo
JobTitle                      Asst Engr
BasePay                         85050.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31442.89
TotalPay                        85050.5
TotalPayBenefits              116493.39
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87636, dtype: object)
(87637, Id                             87638
EmployeeName        Roberto  Nolasco
JobTitle                Truck Driver
BasePay                     80052.02
OvertimePay                  3987.98
OtherPay                     2404.47
Benefits                     30045.2
TotalPay                    86444.47
TotalPayBenefits           116489.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87637, dtype: object)
(87638, Id                                      87639
EmployeeName                  Daniel N Goepel
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74629.4
OvertimePay                           3377.93
OtherPay                              8726.51
Benefits                             29750.01
TotalPay                             86733.84
TotalPayBenefits                    116483.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87638, dtype: object)
(87639, Id                                           87640
EmployeeName                      Allen  Ellickson
JobTitle            IT Operations Support Admn III
BasePay                                   85758.42
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30722.22
TotalPay                                  85758.42
TotalPayBenefits                         116480.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87639, dtype: object)
(87640, Id                               87641
EmployeeName           Kianga B Howard
JobTitle            IS Administrator 2
BasePay                       85758.41
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30722.22
TotalPay                      85758.41
TotalPayBenefits             116480.63
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87640, dtype: object)
(87641, Id                                           87642
EmployeeName                         Phillip  Wong
JobTitle            IT Operations Support Admn III
BasePay                                    85758.4
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30722.22
TotalPay                                   85758.4
TotalPayBenefits                         116480.62
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87641, dtype: object)
(87642, Id                               87643
EmployeeName           Leroy  Jones Jr
JobTitle            IS Trainer-Journey
BasePay                       85761.52
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30708.53
TotalPay                      85761.52
TotalPayBenefits             116470.05
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87642, dtype: object)
(87643, Id                             87644
EmployeeName          Benson J Egbon
JobTitle            Transit Operator
BasePay                      67479.8
OvertimePay                 10393.39
OtherPay                     4732.14
Benefits                     33851.8
TotalPay                    82605.33
TotalPayBenefits           116457.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87643, dtype: object)
(87644, Id                                           87645
EmployeeName                      Neil J Militante
JobTitle            Electrical Transit System Mech
BasePay                                   76274.12
OvertimePay                                3242.47
OtherPay                                   7741.59
Benefits                                  29192.98
TotalPay                                  87258.18
TotalPayBenefits                         116451.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87644, dtype: object)
(87645, Id                                           87646
EmployeeName                       Siosiua T Livai
JobTitle            Electrical Transit System Mech
BasePay                                   82678.24
OvertimePay                                2757.16
OtherPay                                     750.0
Benefits                                  30243.87
TotalPay                                   86185.4
TotalPayBenefits                         116429.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87645, dtype: object)
(87646, Id                                 87647
EmployeeName        Elester T Westbrooks
JobTitle                Transit Operator
BasePay                         69038.72
OvertimePay                      8597.51
OtherPay                         4290.71
Benefits                        34499.97
TotalPay                        81926.94
TotalPayBenefits               116426.91
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87646, dtype: object)
(87647, Id                                         87648
EmployeeName                       Tinhha  Luong
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.02
OvertimePay                              4280.11
OtherPay                                  673.35
Benefits                                29986.17
TotalPay                                86439.48
TotalPayBenefits                       116425.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87647, dtype: object)
(87648, Id                             87649
EmployeeName               Tom  Nguy
JobTitle            Transit Operator
BasePay                     67307.34
OvertimePay                 14537.31
OtherPay                     1639.85
Benefits                    32931.66
TotalPay                     83484.5
TotalPayBenefits           116416.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87648, dtype: object)
(87649, Id                              87650
EmployeeName        Olivia  Chng Chee
JobTitle                       Porter
BasePay                       55026.0
OvertimePay                    3362.7
OtherPay                      27928.6
Benefits                     30091.13
TotalPay                      86317.3
TotalPayBenefits            116408.43
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87649, dtype: object)
(87650, Id                           87651
EmployeeName        Steven T Quinn
JobTitle                   Plumber
BasePay                   79527.34
OvertimePay                6678.88
OtherPay                   2999.07
Benefits                  27201.99
TotalPay                  89205.29
TotalPayBenefits         116407.28
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87650, dtype: object)
(87651, Id                                87652
EmployeeName           Timothy D Dowing
JobTitle            Stationary Engineer
BasePay                        76309.89
OvertimePay                     2309.82
OtherPay                        7294.61
Benefits                       30468.81
TotalPay                       85914.32
TotalPayBenefits              116383.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87651, dtype: object)
(87652, Id                                          87653
EmployeeName                     Navtej S Dhillon
JobTitle            Research Asst, Superior Court
BasePay                                   80248.5
OvertimePay                                   0.0
OtherPay                                  5472.08
Benefits                                  30661.7
TotalPay                                 85720.58
TotalPayBenefits                        116382.28
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87652, dtype: object)
(87653, Id                                         87654
EmployeeName                    Jajuan R Redmond
JobTitle            Emergency Services Coord III
BasePay                                 77999.03
OvertimePay                              1502.13
OtherPay                                 7944.57
Benefits                                28933.74
TotalPay                                87445.73
TotalPayBenefits                       116379.47
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87653, dtype: object)
(87654, Id                                      87655
EmployeeName                   Jocelyn G Juan
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                          10210.68
OtherPay                               2148.0
Benefits                             28985.96
TotalPay                              87391.7
TotalPayBenefits                    116377.66
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87654, dtype: object)
(87655, Id                              87656
EmployeeName        Katherine  Fowlis
JobTitle              Manager II, MTA
BasePay                      95155.34
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     21217.55
TotalPay                     95155.34
TotalPayBenefits            116372.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87655, dtype: object)
(87656, Id                                         87657
EmployeeName                     Doris I Padilla
JobTitle            Emergency Services Coord III
BasePay                                 81760.64
OvertimePay                                  0.0
OtherPay                                 3507.52
Benefits                                31104.13
TotalPay                                85268.16
TotalPayBenefits                       116372.29
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87656, dtype: object)
(87657, Id                            87658
EmployeeName        Shulamit J Luck
JobTitle              Special Nurse
BasePay                   115217.42
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    1152.18
TotalPay                  115217.42
TotalPayBenefits           116369.6
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87657, dtype: object)
(87658, Id                               87659
EmployeeName               Anna  Louie
JobTitle            Program Specialist
BasePay                        83434.0
OvertimePay                    1025.66
OtherPay                       1378.38
Benefits                      30526.03
TotalPay                      85838.04
TotalPayBenefits             116364.07
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87658, dtype: object)
(87659, Id                                   87660
EmployeeName             Rosalie J Covello
JobTitle            Occupational Therapist
BasePay                           87546.27
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          28814.11
TotalPay                          87546.27
TotalPayBenefits                 116360.38
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87659, dtype: object)
(87660, Id                               87661
EmployeeName        Raffaella V Wilson
JobTitle                 Special Nurse
BasePay                      114417.34
OvertimePay                        0.0
OtherPay                        784.98
Benefits                       1152.03
TotalPay                     115202.32
TotalPayBenefits             116354.35
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87660, dtype: object)
(87661, Id                                        87662
EmployeeName                     Debra L Benton
JobTitle            Station Agent, Muni Railway
BasePay                                63646.96
OvertimePay                            23415.63
OtherPay                                2554.39
Benefits                               26733.86
TotalPay                               89616.98
TotalPayBenefits                      116350.84
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87661, dtype: object)
(87662, Id                                87663
EmployeeName        Barbara T Schoeffel
JobTitle             Physical Therapist
BasePay                        88215.75
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       28128.88
TotalPay                       88215.75
TotalPayBenefits              116344.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87662, dtype: object)
(87663, Id                              87664
EmployeeName           Leilani T Laxa
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  19699.36
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     88988.36
TotalPayBenefits            116339.49
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87663, dtype: object)
(87664, Id                             87665
EmployeeName         Jerome A Bowers
JobTitle            Transit Operator
BasePay                     68095.85
OvertimePay                  13760.1
OtherPay                     1289.22
Benefits                    33193.67
TotalPay                    83145.17
TotalPayBenefits           116338.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87664, dtype: object)
(87665, Id                                 87666
EmployeeName        Francisco J Castillo
JobTitle                Transit Operator
BasePay                         61696.22
OvertimePay                     19650.56
OtherPay                         4173.26
Benefits                        30806.97
TotalPay                        85520.04
TotalPayBenefits               116327.01
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87665, dtype: object)
(87666, Id                               87667
EmployeeName            Ruben P Novero
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                     2887.5
OtherPay                          65.0
Benefits                      30206.11
TotalPay                       86112.5
TotalPayBenefits             116318.61
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87666, dtype: object)
(87667, Id                                      87668
EmployeeName                       Bill W Tom
JobTitle            Architectural Assistant 1
BasePay                              77786.02
OvertimePay                           9394.29
OtherPay                                  0.0
Benefits                             29137.83
TotalPay                             87180.31
TotalPayBenefits                    116318.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87667, dtype: object)
(87668, Id                          87669
EmployeeName          Amy S Perry
JobTitle              Librarian 2
BasePay                  85163.74
OvertimePay                   0.0
OtherPay                   460.26
Benefits                 30692.73
TotalPay                  85624.0
TotalPayBenefits        116316.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87668, dtype: object)
(87669, Id                             87670
EmployeeName          Monica  Burton
JobTitle            Transit Operator
BasePay                     60685.44
OvertimePay                 25842.86
OtherPay                      397.37
Benefits                    29388.28
TotalPay                    86925.67
TotalPayBenefits           116313.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87669, dtype: object)
(87670, Id                                   87671
EmployeeName               Democrito  Jose
JobTitle            Patient Care Assistant
BasePay                           65493.88
OvertimePay                       17969.84
OtherPay                           5668.46
Benefits                           27179.0
TotalPay                          89132.18
TotalPayBenefits                 116311.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87670, dtype: object)
(87671, Id                                      87672
EmployeeName                   Anita  Peralta
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          12197.47
OtherPay                              1902.71
Benefits                             28593.09
TotalPay                             87702.18
TotalPayBenefits                    116295.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87671, dtype: object)
(87672, Id                             87673
EmployeeName         Jabari L Albert
JobTitle            Transit Operator
BasePay                      67417.5
OvertimePay                 13361.09
OtherPay                     1699.73
Benefits                    33814.24
TotalPay                    82478.32
TotalPayBenefits           116292.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87672, dtype: object)
(87673, Id                                          87674
EmployeeName                      Raymond K Cheng
JobTitle            Eligibility Worker Supervisor
BasePay                                   78617.0
OvertimePay                                7276.5
OtherPay                                   1480.0
Benefits                                 28916.45
TotalPay                                  87373.5
TotalPayBenefits                        116289.95
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87673, dtype: object)
(87674, Id                                   87675
EmployeeName                    Lily J Lew
JobTitle            Senior Personnel Clerk
BasePay                           67878.01
OvertimePay                       21282.58
OtherPay                               0.0
Benefits                           27129.0
TotalPay                          89160.59
TotalPayBenefits                 116289.59
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87674, dtype: object)
(87675, Id                               87676
EmployeeName              Joseph S Lau
JobTitle            Program Specialist
BasePay                       85624.02
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       30655.8
TotalPay                      85624.02
TotalPayBenefits             116279.82
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87675, dtype: object)
(87676, Id                                           87677
EmployeeName                            Ali A Syed
JobTitle            IT Operations Support Admin IV
BasePay                                    85832.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30446.81
TotalPay                                   85832.0
TotalPayBenefits                         116278.81
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87676, dtype: object)
(87677, Id                             87678
EmployeeName        Collette S Baker
JobTitle            Registered Nurse
BasePay                     75216.36
OvertimePay                   3853.5
OtherPay                     9498.08
Benefits                    27710.22
TotalPay                    88567.94
TotalPayBenefits           116278.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87677, dtype: object)
(87678, Id                              87679
EmployeeName        Elisha  Hodges Jr
JobTitle             Transit Operator
BasePay                      68402.28
OvertimePay                  13552.23
OtherPay                      1031.29
Benefits                     33284.89
TotalPay                      82985.8
TotalPayBenefits            116270.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87678, dtype: object)
(87679, Id                               87680
EmployeeName        Almar A Valenzuela
JobTitle                      Gardener
BasePay                       64641.01
OvertimePay                   17913.02
OtherPay                        5291.9
Benefits                      28418.66
TotalPay                      87845.93
TotalPayBenefits             116264.59
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87679, dtype: object)
(87680, Id                               87681
EmployeeName        Miguel A Hernandez
JobTitle                     Asst Engr
BasePay                       85430.12
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30832.03
TotalPay                      85430.12
TotalPayBenefits             116262.15
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87680, dtype: object)
(87681, Id                                           87682
EmployeeName                        Rachael  Perez
JobTitle            IT Operations Support Admn III
BasePay                                   85585.62
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30672.81
TotalPay                                  85585.62
TotalPayBenefits                         116258.43
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87681, dtype: object)
(87682, Id                             87683
EmployeeName         Eleanor  Childs
JobTitle            Transit Operator
BasePay                     64009.69
OvertimePay                 13729.89
OtherPay                     7560.76
Benefits                    30957.67
TotalPay                    85300.34
TotalPayBenefits           116258.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87682, dtype: object)
(87683, Id                                   87684
EmployeeName              Joycelyn  Harris
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        12754.6
OtherPay                            6592.5
Benefits                          28481.81
TotalPay                           87738.1
TotalPayBenefits                 116219.91
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87683, dtype: object)
(87684, Id                             87685
EmployeeName          Cheelin  Chang
JobTitle            Transit Operator
BasePay                     64945.19
OvertimePay                 18143.24
OtherPay                     1413.91
Benefits                    31715.91
TotalPay                    84502.34
TotalPayBenefits           116218.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87684, dtype: object)
(87685, Id                             87686
EmployeeName        Craig R Williams
JobTitle                   Carpenter
BasePay                     84764.51
OvertimePay                      0.0
OtherPay                      829.92
Benefits                    30621.54
TotalPay                    85594.43
TotalPayBenefits           116215.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87685, dtype: object)
(87686, Id                            87687
EmployeeName        Winnette  Allen
JobTitle              Special Nurse
BasePay                   113842.37
OvertimePay                  930.75
OtherPay                    1442.66
Benefits                        0.0
TotalPay                  116215.78
TotalPayBenefits          116215.78
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87686, dtype: object)
(87687, Id                           87688
EmployeeName        Kevin P Nestor
JobTitle            Police Officer
BasePay                   92253.98
OvertimePay                1898.28
OtherPay                   3166.45
Benefits                  18893.39
TotalPay                  97318.71
TotalPayBenefits          116212.1
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87687, dtype: object)
(87688, Id                                          87689
EmployeeName                  Alexander V Demisch
JobTitle            Senior Administrative Analyst
BasePay                                  86014.91
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30197.02
TotalPay                                 86014.91
TotalPayBenefits                        116211.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87688, dtype: object)
(87689, Id                                87690
EmployeeName         Leonardo D Lubigan
JobTitle            Stationary Engineer
BasePay                        77473.47
OvertimePay                      1314.9
OtherPay                        7142.59
Benefits                       30276.17
TotalPay                       85930.96
TotalPayBenefits              116207.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87689, dtype: object)
(87690, Id                                           87691
EmployeeName                Yevgeniy  Skuratovskiy
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                2757.15
OtherPay                                     550.0
Benefits                                  30217.65
TotalPay                                  85988.65
TotalPayBenefits                          116206.3
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87690, dtype: object)
(87691, Id                                       87692
EmployeeName                        Suet F Eng
JobTitle            Hospital Eligiblity Worker
BasePay                               75033.01
OvertimePay                           10414.18
OtherPay                                1853.0
Benefits                              28902.07
TotalPay                              87300.19
TotalPayBenefits                     116202.26
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87691, dtype: object)
(87692, Id                             87693
EmployeeName              Aris  Chan
JobTitle            Transit Operator
BasePay                     67903.66
OvertimePay                 12540.39
OtherPay                     1729.94
Benefits                    34027.69
TotalPay                    82173.99
TotalPayBenefits           116201.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87692, dtype: object)
(87693, Id                           87694
EmployeeName           Susan J Lee
JobTitle            Court Reporter
BasePay                    60961.0
OvertimePay                    0.0
OtherPay                  35766.06
Benefits                  19460.15
TotalPay                  96727.06
TotalPayBenefits         116187.21
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87693, dtype: object)
(87694, Id                              87695
EmployeeName        Michael E Jackson
JobTitle             Transit Operator
BasePay                      66867.22
OvertimePay                  10894.49
OtherPay                      4828.86
Benefits                     33584.47
TotalPay                     82590.57
TotalPayBenefits            116175.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87694, dtype: object)
(87695, Id                                      87696
EmployeeName                   Arnel N Baggao
JobTitle            Automotive Service Worker
BasePay                              64292.46
OvertimePay                          11499.58
OtherPay                             11675.49
Benefits                             28703.42
TotalPay                             87467.53
TotalPayBenefits                    116170.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87695, dtype: object)
(87696, Id                             87697
EmployeeName        Victoria G Swart
JobTitle            Transit Operator
BasePay                     68477.27
OvertimePay                  8600.22
OtherPay                     4778.28
Benefits                    34307.34
TotalPay                    81855.77
TotalPayBenefits           116163.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87696, dtype: object)
(87697, Id                          87698
EmployeeName         Gabriel W Ho
JobTitle                Asst Engr
BasePay                  84775.11
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31384.91
TotalPay                 84775.11
TotalPayBenefits        116160.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87697, dtype: object)
(87698, Id                                          87699
EmployeeName                       Gregory B Chin
JobTitle            Research Asst, Superior Court
BasePay                                   80068.5
OvertimePay                                   0.0
OtherPay                                   5463.5
Benefits                                 30620.61
TotalPay                                  85532.0
TotalPayBenefits                        116152.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87698, dtype: object)
(87699, Id                             87700
EmployeeName          Ramon  Sanchez
JobTitle            Transit Operator
BasePay                     65753.12
OvertimePay                 17984.66
OtherPay                      552.09
Benefits                    31852.07
TotalPay                    84289.87
TotalPayBenefits           116141.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87699, dtype: object)
(87700, Id                                 87701
EmployeeName        Christopher P Norman
JobTitle                         Painter
BasePay                         77948.04
OvertimePay                      8186.13
OtherPay                           717.0
Benefits                        29288.33
TotalPay                        86851.17
TotalPayBenefits                116139.5
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87700, dtype: object)
(87701, Id                          87702
EmployeeName        Marco  Medina
JobTitle                Carpenter
BasePay                  84764.52
OvertimePay                763.46
OtherPay                     78.0
Benefits                 30532.44
TotalPay                 85605.98
TotalPayBenefits        116138.42
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87701, dtype: object)
(87702, Id                              87703
EmployeeName        Terence J Kerrisk
JobTitle                      Glazier
BasePay                      83958.49
OvertimePay                       0.0
OtherPay                       1736.0
Benefits                     30442.07
TotalPay                     85694.49
TotalPayBenefits            116136.56
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87702, dtype: object)
(87703, Id                             87704
EmployeeName         LaRon N Branner
JobTitle            Transit Operator
BasePay                     67329.49
OvertimePay                 10847.64
OtherPay                      4314.7
Benefits                    33636.94
TotalPay                    82491.83
TotalPayBenefits           116128.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87703, dtype: object)
(87704, Id                               87705
EmployeeName        Bethsaida B Novero
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                     2772.0
OtherPay                           0.0
Benefits                      30194.28
TotalPay                       85932.0
TotalPayBenefits             116126.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87704, dtype: object)
(87705, Id                                 87706
EmployeeName        Steven D Koneffklatt
JobTitle                     Manager III
BasePay                         71673.51
OvertimePay                          0.0
OtherPay                        19434.02
Benefits                        25016.79
TotalPay                        91107.53
TotalPayBenefits               116124.32
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87705, dtype: object)
(87706, Id                          87707
EmployeeName           Benny C Ng
JobTitle                Asst Engr
BasePay                   84748.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 31367.58
TotalPay                  84748.5
TotalPayBenefits        116116.08
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87706, dtype: object)
(87707, Id                                      87708
EmployeeName                Melina  Markarian
JobTitle            Architectural Assistant 2
BasePay                              85482.22
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30629.29
TotalPay                             85482.22
TotalPayBenefits                    116111.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87707, dtype: object)
(87708, Id                                87709
EmployeeName                Yun Y Chang
JobTitle            Pharmacy Technician
BasePay                        80540.98
OvertimePay                     5702.17
OtherPay                         185.05
Benefits                       29680.09
TotalPay                        86428.2
TotalPayBenefits              116108.29
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87708, dtype: object)
(87709, Id                                           87710
EmployeeName                     Brian J Rodriguez
JobTitle            IT Operations Support Admn III
BasePay                                   84741.53
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                   31365.0
TotalPay                                  84741.53
TotalPayBenefits                         116106.53
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87709, dtype: object)
(87710, Id                                   87711
EmployeeName                  Kuldip  Kaur
JobTitle            Patient Care Assistant
BasePay                           67499.13
OvertimePay                       15710.73
OtherPay                            5082.1
Benefits                          27809.59
TotalPay                          88291.96
TotalPayBenefits                 116101.55
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87710, dtype: object)
(87711, Id                                  87712
EmployeeName           Claudia A Reinhart
JobTitle            Recreation Supervisor
BasePay                          84402.06
OvertimePay                           0.0
OtherPay                          1053.86
Benefits                         30644.22
TotalPay                         85455.92
TotalPayBenefits                116100.14
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87711, dtype: object)
(87712, Id                                          87713
EmployeeName                      Aida S McIntyre
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                 348.3
OtherPay                                   2008.0
Benefits                                 30581.73
TotalPay                                  85516.3
TotalPayBenefits                        116098.03
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87712, dtype: object)
(87713, Id                             87714
EmployeeName          Vincent X Sien
JobTitle            Transit Operator
BasePay                     67811.58
OvertimePay                  7976.25
OtherPay                     5992.31
Benefits                    34315.98
TotalPay                    81780.14
TotalPayBenefits           116096.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87713, dtype: object)
(87714, Id                              87715
EmployeeName        Kathleen J Keeler
JobTitle                  Librarian 1
BasePay                      81964.41
OvertimePay                       0.0
OtherPay                      3533.24
Benefits                     30593.19
TotalPay                     85497.65
TotalPayBenefits            116090.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87714, dtype: object)
(87715, Id                                 87716
EmployeeName             Jerry P Kondeff
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                      4758.71
OtherPay                         1332.78
Benefits                        29858.23
TotalPay                        86224.49
TotalPayBenefits               116082.72
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87715, dtype: object)
(87716, Id                                      87717
EmployeeName            Epifania G Lardizabal
JobTitle            Personal Property Auditor
BasePay                              84939.08
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.08
TotalPayBenefits                    116080.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87716, dtype: object)
(87717, Id                                      87718
EmployeeName                       Bing K Tam
JobTitle            Personal Property Auditor
BasePay                              84939.04
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.04
TotalPayBenefits                    116080.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87717, dtype: object)
(87718, Id                                      87719
EmployeeName                      Cary K Dare
JobTitle            Personal Property Auditor
BasePay                              84939.04
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.04
TotalPayBenefits                    116080.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87718, dtype: object)
(87719, Id                                      87720
EmployeeName                  May K Gutchinov
JobTitle            Personal Property Auditor
BasePay                              84939.03
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.03
TotalPayBenefits                     116080.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87719, dtype: object)
(87720, Id                                      87721
EmployeeName              Cassandra M Calhoun
JobTitle            Personal Property Auditor
BasePay                              84939.03
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.03
TotalPayBenefits                     116080.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87720, dtype: object)
(87721, Id                                      87722
EmployeeName                Carlota P Hilario
JobTitle            Personal Property Auditor
BasePay                              84939.01
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.01
TotalPayBenefits                    116080.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87721, dtype: object)
(87722, Id                                      87723
EmployeeName                      Louis C Lui
JobTitle            Personal Property Auditor
BasePay                              84939.01
OvertimePay                               0.0
OtherPay                                480.0
Benefits                             30661.77
TotalPay                             85419.01
TotalPayBenefits                    116080.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87722, dtype: object)
(87723, Id                                   87724
EmployeeName                Binta M Jannah
JobTitle            Public SafetyComm Disp
BasePay                           73291.93
OvertimePay                       12813.33
OtherPay                           3205.67
Benefits                           26750.1
TotalPay                          89310.93
TotalPayBenefits                 116061.03
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87723, dtype: object)
(87724, Id                             87725
EmployeeName         Paul A Williams
JobTitle            Training Officer
BasePay                     84681.53
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    31379.45
TotalPay                    84681.53
TotalPayBenefits           116060.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87724, dtype: object)
(87725, Id                             87726
EmployeeName            JinLin  Xiao
JobTitle            Transit Operator
BasePay                     67558.87
OvertimePay                 13598.28
OtherPay                     1174.34
Benefits                    33728.57
TotalPay                    82331.49
TotalPayBenefits           116060.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87725, dtype: object)
(87726, Id                                   87727
EmployeeName                Nancy L Rivers
JobTitle            Water Quality Tech III
BasePay                           85560.48
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30489.65
TotalPay                          85560.48
TotalPayBenefits                 116050.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87726, dtype: object)
(87727, Id                             87728
EmployeeName               John  Wen
JobTitle            Transit Operator
BasePay                     68491.45
OvertimePay                 10341.97
OtherPay                     3279.95
Benefits                    33935.51
TotalPay                    82113.37
TotalPayBenefits           116048.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87727, dtype: object)
(87728, Id                             87729
EmployeeName        Ronald A Witschi
JobTitle                 Pile Worker
BasePay                     82196.13
OvertimePay                  4366.69
OtherPay                       520.0
Benefits                    28964.19
TotalPay                    87082.82
TotalPayBenefits           116047.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87728, dtype: object)
(87729, Id                                87730
EmployeeName                 Vilom  Tam
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     5642.66
OtherPay                        1408.16
Benefits                       29703.96
TotalPay                       86334.32
TotalPayBenefits              116038.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87729, dtype: object)
(87730, Id                             87731
EmployeeName              Jimmy J Gu
JobTitle            Transit Operator
BasePay                     69300.28
OvertimePay                 11894.66
OtherPay                     1117.43
Benefits                     33723.0
TotalPay                    82312.37
TotalPayBenefits           116035.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87730, dtype: object)
(87731, Id                                      87732
EmployeeName               Leopoldo R Briones
JobTitle            Personal Property Auditor
BasePay                              84939.03
OvertimePay                               0.0
OtherPay                                440.0
Benefits                             30654.49
TotalPay                             85379.03
TotalPayBenefits                    116033.52
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87731, dtype: object)
(87732, Id                                   87733
EmployeeName                Lita S Escobar
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       19372.54
OtherPay                             898.0
Benefits                          27351.13
TotalPay                          88661.54
TotalPayBenefits                 116012.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87732, dtype: object)
(87733, Id                             87734
EmployeeName           Jonathan  Lee
JobTitle            Transit Operator
BasePay                     68732.01
OvertimePay                 11914.04
OtherPay                     1723.06
Benefits                    33643.15
TotalPay                    82369.11
TotalPayBenefits           116012.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87733, dtype: object)
(87734, Id                              87735
EmployeeName          Cathy R Billups
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  19360.22
OtherPay                        898.0
Benefits                     27359.08
TotalPay                     88649.22
TotalPayBenefits             116008.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87734, dtype: object)
(87735, Id                                     87736
EmployeeName                   Ellyn  Parker
JobTitle            Sr. Community Devl Spc 1
BasePay                              85354.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30639.53
TotalPay                             85354.0
TotalPayBenefits                   115993.53
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87735, dtype: object)
(87736, Id                                           87737
EmployeeName                            Diane  Rea
JobTitle            Events & Facilities Specialist
BasePay                                   76447.81
OvertimePay                                8492.64
OtherPay                                   1118.03
Benefits                                  29929.97
TotalPay                                  86058.48
TotalPayBenefits                         115988.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87736, dtype: object)
(87737, Id                                  87738
EmployeeName              Johnny  Mayorga
JobTitle            Senior Deputy Sheriff
BasePay                          73515.26
OvertimePay                        661.06
OtherPay                         15133.87
Benefits                         26675.98
TotalPay                         89310.19
TotalPayBenefits                115986.17
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87737, dtype: object)
(87738, Id                                           87739
EmployeeName                     Elizabeth G F Lum
JobTitle            Community Police Services Aide
BasePay                                    66123.0
OvertimePay                               13314.38
OtherPay                                    8180.4
Benefits                                  28364.57
TotalPay                                  87617.78
TotalPayBenefits                         115982.35
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87738, dtype: object)
(87739, Id                             87740
EmployeeName           Donna E White
JobTitle            Transit Operator
BasePay                     66341.75
OvertimePay                 16565.38
OtherPay                      828.91
Benefits                    32237.56
TotalPay                    83736.04
TotalPayBenefits            115973.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87739, dtype: object)
(87740, Id                                     87741
EmployeeName               Martin  Hernandez
JobTitle            Track Maintenance Worker
BasePay                              62190.3
OvertimePay                          24043.1
OtherPay                             3356.54
Benefits                            26378.26
TotalPay                            89589.94
TotalPayBenefits                    115968.2
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87740, dtype: object)
(87741, Id                                         87742
EmployeeName                      Sean M Desmond
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 73172.04
OvertimePay                              7350.09
OtherPay                                 7072.71
Benefits                                28365.77
TotalPay                                87594.84
TotalPayBenefits                       115960.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87741, dtype: object)
(87742, Id                                         87743
EmployeeName                    Isela I Gonzalez
JobTitle            Health Program Coordinator 2
BasePay                                 85303.32
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30653.54
TotalPay                                85303.32
TotalPayBenefits                       115956.86
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87742, dtype: object)
(87743, Id                                   87744
EmployeeName              Edmund  Lucia Jr
JobTitle            Ornamental Iron Worker
BasePay                            81848.5
OvertimePay                        1445.46
OtherPay                            2280.0
Benefits                          30380.53
TotalPay                          85573.96
TotalPayBenefits                 115954.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87743, dtype: object)
(87744, Id                               87745
EmployeeName         Charles M Haletky
JobTitle            Transit Supervisor
BasePay                        81600.8
OvertimePay                     548.34
OtherPay                       3223.54
Benefits                      30577.85
TotalPay                      85372.68
TotalPayBenefits             115950.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87744, dtype: object)
(87745, Id                             87746
EmployeeName            Ivan A Elias
JobTitle            Transit Operator
BasePay                     67240.95
OvertimePay                 14693.89
OtherPay                       576.8
Benefits                    33429.06
TotalPay                    82511.64
TotalPayBenefits            115940.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87745, dtype: object)
(87746, Id                             87747
EmployeeName           Jose R Santos
JobTitle            Transit Operator
BasePay                     67130.17
OvertimePay                 13417.06
OtherPay                     2372.92
Benefits                     33018.6
TotalPay                    82920.15
TotalPayBenefits           115938.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87746, dtype: object)
(87747, Id                                     87748
EmployeeName          Aumijo L Sheftel-Gomes
JobTitle            Sr. Community Devl Spc 1
BasePay                             83315.99
OvertimePay                              0.0
OtherPay                             1252.42
Benefits                            31368.86
TotalPay                            84568.41
TotalPayBenefits                   115937.27
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87747, dtype: object)
(87748, Id                                87749
EmployeeName              Calvin C Tung
JobTitle            Pharmacy Technician
BasePay                        74320.49
OvertimePay                      4393.2
OtherPay                        6653.51
Benefits                       30551.77
TotalPay                        85367.2
TotalPayBenefits              115918.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87748, dtype: object)
(87749, Id                                      87750
EmployeeName                Jaycelle M Pequet
JobTitle            Psychiatric Social Worker
BasePay                              83484.53
OvertimePay                               0.0
OtherPay                              1130.33
Benefits                             31302.61
TotalPay                             84614.86
TotalPayBenefits                    115917.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87749, dtype: object)
(87750, Id                              87751
EmployeeName        James T MacCallum
JobTitle             Survey Associate
BasePay                      81177.52
OvertimePay                   4881.94
OtherPay                          0.0
Benefits                     29851.24
TotalPay                     86059.46
TotalPayBenefits             115910.7
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87750, dtype: object)
(87751, Id                             87752
EmployeeName          Kevin  Breston
JobTitle            Transit Operator
BasePay                     66425.87
OvertimePay                  9309.83
OtherPay                     5703.94
Benefits                     34449.5
TotalPay                    81439.64
TotalPayBenefits           115889.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87751, dtype: object)
(87752, Id                                          87753
EmployeeName                      Olivia N Farmer
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                 693.0
OtherPay                                   1540.0
Benefits                                 30492.21
TotalPay                                  85393.0
TotalPayBenefits                        115885.21
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87752, dtype: object)
(87753, Id                             87754
EmployeeName           Henry J Kuang
JobTitle            Transit Operator
BasePay                     67647.15
OvertimePay                 13900.33
OtherPay                      698.62
Benefits                    33633.03
TotalPay                     82246.1
TotalPayBenefits           115879.13
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87753, dtype: object)
(87754, Id                                      87755
EmployeeName                     Paul S Hobbs
JobTitle            EMT/Paramedic/Firefighter
BasePay                              74008.45
OvertimePay                           4060.66
OtherPay                              8260.34
Benefits                              29548.7
TotalPay                             86329.45
TotalPayBenefits                    115878.15
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87754, dtype: object)
(87755, Id                             87756
EmployeeName        Elliott D Holmes
JobTitle            Transit Operator
BasePay                      63763.2
OvertimePay                 14623.92
OtherPay                     6638.74
Benefits                    30847.14
TotalPay                    85025.86
TotalPayBenefits            115873.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87755, dtype: object)
(87756, Id                                      87757
EmployeeName                  Christine Q Luu
JobTitle            Senior Eligibility Worker
BasePay                              75033.04
OvertimePay                          10447.34
OtherPay                               1480.0
Benefits                             28912.04
TotalPay                             86960.38
TotalPayBenefits                    115872.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87756, dtype: object)
(87757, Id                               87758
EmployeeName        Merla T Apolinario
JobTitle             Nursing Assistant
BasePay                       67266.98
OvertimePay                   15186.68
OtherPay                        5578.8
Benefits                      27825.99
TotalPay                      88032.46
TotalPayBenefits             115858.45
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87757, dtype: object)
(87758, Id                          87759
EmployeeName         Naima S Dean
JobTitle              Librarian 2
BasePay                  83487.84
OvertimePay                   0.0
OtherPay                  1740.17
Benefits                 30628.36
TotalPay                 85228.01
TotalPayBenefits        115856.37
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87758, dtype: object)
(87759, Id                             87760
EmployeeName             Toan G Nham
JobTitle            Transit Operator
BasePay                     66890.83
OvertimePay                 15284.18
OtherPay                      461.74
Benefits                     33203.4
TotalPay                    82636.75
TotalPayBenefits           115840.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87759, dtype: object)
(87760, Id                                          87761
EmployeeName                        Brian E Crisp
JobTitle            Comm Pol Svcs Aide Supervisor
BasePay                                  76545.13
OvertimePay                               3661.44
OtherPay                                  5670.59
Benefits                                 29962.28
TotalPay                                 85877.16
TotalPayBenefits                        115839.44
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87760, dtype: object)
(87761, Id                             87762
EmployeeName          Patricia  King
JobTitle            Transit Operator
BasePay                     67382.08
OvertimePay                 13336.83
OtherPay                     2034.77
Benefits                    33082.63
TotalPay                    82753.68
TotalPayBenefits           115836.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87761, dtype: object)
(87762, Id                             87763
EmployeeName        Donacin  Dunklin
JobTitle            Transit Operator
BasePay                     68549.82
OvertimePay                  9599.35
OtherPay                     2906.78
Benefits                    34779.99
TotalPay                    81055.95
TotalPayBenefits           115835.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87762, dtype: object)
(87763, Id                                           87764
EmployeeName                        Linda  Burgest
JobTitle            IT Operations Support Admn III
BasePay                                    85270.2
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30565.36
TotalPay                                   85270.2
TotalPayBenefits                         115835.56
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87763, dtype: object)
(87764, Id                                         87765
EmployeeName                        Sandie S Yeh
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.04
OvertimePay                              3677.82
OtherPay                                   683.4
Benefits                                 29988.0
TotalPay                                85847.26
TotalPayBenefits                       115835.26
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87764, dtype: object)
(87765, Id                             87766
EmployeeName            Ronnie  Htun
JobTitle            Transit Operator
BasePay                     68954.63
OvertimePay                  6080.19
OtherPay                      5910.6
Benefits                    34872.72
TotalPay                    80945.42
TotalPayBenefits           115818.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87765, dtype: object)
(87766, Id                             87767
EmployeeName           Leroy  Gatlin
JobTitle            Transit Operator
BasePay                     69290.27
OvertimePay                  7783.51
OtherPay                     4165.78
Benefits                    34573.75
TotalPay                    81239.56
TotalPayBenefits           115813.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87766, dtype: object)
(87767, Id                                          87768
EmployeeName                       Olga I Grecova
JobTitle            Research Asst, Superior Court
BasePay                                   79798.5
OvertimePay                                   0.0
OtherPay                                  5452.28
Benefits                                 30559.87
TotalPay                                 85250.78
TotalPayBenefits                        115810.65
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87767, dtype: object)
(87768, Id                                      87769
EmployeeName                    Olga V Kvitko
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           9643.36
OtherPay                               2148.0
Benefits                             28985.33
TotalPay                             86824.39
TotalPayBenefits                    115809.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87768, dtype: object)
(87769, Id                             87770
EmployeeName              Tony  Chou
JobTitle            Transit Operator
BasePay                     68138.65
OvertimePay                 13033.67
OtherPay                      755.76
Benefits                    33877.95
TotalPay                    81928.08
TotalPayBenefits           115806.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87769, dtype: object)
(87770, Id                                     87771
EmployeeName              Brandee N Robinson
JobTitle            Deputy Probation Officer
BasePay                             86221.22
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29584.25
TotalPay                            86221.22
TotalPayBenefits                   115805.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87770, dtype: object)
(87771, Id                                     87772
EmployeeName               Marisela S Duenes
JobTitle            Deputy Probation Officer
BasePay                             86221.22
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29584.24
TotalPay                            86221.22
TotalPayBenefits                   115805.46
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87771, dtype: object)
(87772, Id                             87773
EmployeeName         Lorenzo  Saquic
JobTitle            Transit Operator
BasePay                      65439.9
OvertimePay                 17125.15
OtherPay                     1306.35
Benefits                     31930.2
TotalPay                     83871.4
TotalPayBenefits            115801.6
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87772, dtype: object)
(87773, Id                                   87774
EmployeeName                Heather S Tyks
JobTitle            Airport Safety Officer
BasePay                           71330.33
OvertimePay                       10937.96
OtherPay                           4113.61
Benefits                          29416.19
TotalPay                           86381.9
TotalPayBenefits                 115798.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87773, dtype: object)
(87774, Id                                   87775
EmployeeName               Darlene C Daevu
JobTitle            Administrative Analyst
BasePay                           85184.99
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30600.02
TotalPay                          85184.99
TotalPayBenefits                 115785.01
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87774, dtype: object)
(87775, Id                             87776
EmployeeName             Leon  Ching
JobTitle            Transit Operator
BasePay                     63717.77
OvertimePay                 16803.86
OtherPay                     3477.85
Benefits                    31783.69
TotalPay                    83999.48
TotalPayBenefits           115783.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87775, dtype: object)
(87776, Id                                   87777
EmployeeName                Amber E Vasche
JobTitle            Administrative Analyst
BasePay                           85185.13
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.13
TotalPayBenefits                 115780.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87776, dtype: object)
(87777, Id                                   87778
EmployeeName           Maria C Manasievici
JobTitle            Administrative Analyst
BasePay                            85185.1
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.12
TotalPay                           85185.1
TotalPayBenefits                 115780.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87777, dtype: object)
(87778, Id                                   87779
EmployeeName               Jeanne M Foulis
JobTitle            Administrative Analyst
BasePay                           85185.08
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.08
TotalPayBenefits                 115780.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87778, dtype: object)
(87779, Id                                           87780
EmployeeName                           Victor  Lee
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.07
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30595.12
TotalPay                                  85185.07
TotalPayBenefits                         115780.19
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87779, dtype: object)
(87780, Id                                   87781
EmployeeName                Maria P Hudson
JobTitle            Administrative Analyst
BasePay                           85185.07
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.07
TotalPayBenefits                 115780.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87780, dtype: object)
(87781, Id                                   87782
EmployeeName             Charlene  Puccini
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.12
TotalPay                          85185.04
TotalPayBenefits                 115780.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87781, dtype: object)
(87782, Id                                   87783
EmployeeName                      Tony  Ng
JobTitle            Administrative Analyst
BasePay                           85185.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.05
TotalPayBenefits                 115780.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87782, dtype: object)
(87783, Id                                   87784
EmployeeName             Korey J McCormack
JobTitle            Administrative Analyst
BasePay                           85185.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.05
TotalPayBenefits                 115780.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87783, dtype: object)
(87784, Id                                   87785
EmployeeName                Tahir I Shaikh
JobTitle            Administrative Analyst
BasePay                           85185.05
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.05
TotalPayBenefits                 115780.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87784, dtype: object)
(87785, Id                                           87786
EmployeeName                Elmer Paul R Marasigan
JobTitle            Worker's Compensation Adjuster
BasePay                                   85185.05
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30595.11
TotalPay                                  85185.05
TotalPayBenefits                         115780.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87785, dtype: object)
(87786, Id                                   87787
EmployeeName               Aniana  Salcedo
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.04
TotalPayBenefits                 115780.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87786, dtype: object)
(87787, Id                                   87788
EmployeeName              Alberto  Argente
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.04
TotalPayBenefits                 115780.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87787, dtype: object)
(87788, Id                                   87789
EmployeeName             Charles T Maranon
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.04
TotalPayBenefits                 115780.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87788, dtype: object)
(87789, Id                                   87790
EmployeeName               Romeo M Nicasio
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.04
TotalPayBenefits                 115780.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87789, dtype: object)
(87790, Id                                   87791
EmployeeName                  Patrick  Lew
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.04
TotalPayBenefits                 115780.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87790, dtype: object)
(87791, Id                                   87792
EmployeeName             Adelaida F Galino
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.02
TotalPayBenefits                 115780.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87791, dtype: object)
(87792, Id                                   87793
EmployeeName               Fanny I Lapitan
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.02
TotalPayBenefits                 115780.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87792, dtype: object)
(87793, Id                                   87794
EmployeeName             Mario A Henriquez
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.02
TotalPayBenefits                 115780.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87793, dtype: object)
(87794, Id                                   87795
EmployeeName             Orlando J Tolbert
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.02
TotalPayBenefits                 115780.13
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87794, dtype: object)
(87795, Id                                      87796
EmployeeName        Ma Carina Andrea C Carlos
JobTitle               Administrative Analyst
BasePay                              85185.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30595.11
TotalPay                             85185.02
TotalPayBenefits                    115780.13
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87795, dtype: object)
(87796, Id                                   87797
EmployeeName                   Steve W Lee
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87796, dtype: object)
(87797, Id                                   87798
EmployeeName             Kin Michelle  Dea
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30595.1
TotalPay                          85185.02
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87797, dtype: object)
(87798, Id                                   87799
EmployeeName               Joel  Ventresca
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87798, dtype: object)
(87799, Id                                   87800
EmployeeName                  Wilson K Lau
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87799, dtype: object)
(87800, Id                                   87801
EmployeeName                    Il Y Chung
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87800, dtype: object)
(87801, Id                                   87802
EmployeeName                   David D Eng
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87801, dtype: object)
(87802, Id                                   87803
EmployeeName          Luzviminda B Velasco
JobTitle            Administrative Analyst
BasePay                           85185.01
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                          85185.01
TotalPayBenefits                 115780.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87802, dtype: object)
(87803, Id                                   87804
EmployeeName                  David C Yang
JobTitle            Administrative Analyst
BasePay                            85185.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                           85185.0
TotalPayBenefits                 115780.11
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87803, dtype: object)
(87804, Id                                   87805
EmployeeName                   Stacey J Lo
JobTitle            Administrative Analyst
BasePay                            85185.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30595.11
TotalPay                           85185.0
TotalPayBenefits                 115780.11
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87804, dtype: object)
(87805, Id                                           87806
EmployeeName                     Marina Y Andersen
JobTitle            Worker's Compensation Adjuster
BasePay                                    85185.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30595.11
TotalPay                                   85185.0
TotalPayBenefits                         115780.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87805, dtype: object)
(87806, Id                                           87807
EmployeeName                   Arsenio G Matawaran
JobTitle            Worker's Compensation Adjuster
BasePay                                    85185.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30595.11
TotalPay                                   85185.0
TotalPayBenefits                         115780.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87806, dtype: object)
(87807, Id                                   87808
EmployeeName                     Jane  Chu
JobTitle            Administrative Analyst
BasePay                           85185.08
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30590.21
TotalPay                          85185.08
TotalPayBenefits                 115775.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87807, dtype: object)
(87808, Id                                   87809
EmployeeName            Angela L Whittaker
JobTitle            Administrative Analyst
BasePay                            85185.1
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30588.98
TotalPay                           85185.1
TotalPayBenefits                 115774.08
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87808, dtype: object)
(87809, Id                                87810
EmployeeName            Jan P Voorsluys
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                      136.97
OtherPay                        5893.31
Benefits                        31260.4
TotalPay                       84503.78
TotalPayBenefits              115764.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87809, dtype: object)
(87810, Id                                          87811
EmployeeName                           Irene  Wei
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                   2008.0
Benefits                                 30589.25
TotalPay                                  85168.0
TotalPayBenefits                        115757.25
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87810, dtype: object)
(87811, Id                                   87812
EmployeeName              Michelle Y Chang
JobTitle            Administrative Analyst
BasePay                           85185.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30568.39
TotalPay                          85185.02
TotalPayBenefits                 115753.41
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87811, dtype: object)
(87812, Id                                           87813
EmployeeName                       Reginald R Chow
JobTitle            IT Operations Support Admn III
BasePay                                   79670.51
OvertimePay                                    0.0
OtherPay                                   6482.35
Benefits                                  29598.77
TotalPay                                  86152.86
TotalPayBenefits                         115751.63
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87812, dtype: object)
(87813, Id                                  87814
EmployeeName           Jimmy L Montgomery
JobTitle            Maintenance Machinist
BasePay                          82681.51
OvertimePay                       2300.12
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         85531.63
TotalPayBenefits                115749.28
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87813, dtype: object)
(87814, Id                             87815
EmployeeName        Phillup J Taylor
JobTitle            Transit Operator
BasePay                     68344.69
OvertimePay                 10735.68
OtherPay                     2895.99
Benefits                    33771.72
TotalPay                    81976.36
TotalPayBenefits           115748.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87814, dtype: object)
(87815, Id                                      87816
EmployeeName                       Jane  Kang
JobTitle            EMT/Paramedic/Firefighter
BasePay                              80346.46
OvertimePay                           2570.15
OtherPay                              3167.83
Benefits                             29659.49
TotalPay                             86084.44
TotalPayBenefits                    115743.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87815, dtype: object)
(87816, Id                                           87817
EmployeeName                      Marino A Merlini
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                  462.0
OtherPay                                    2070.0
Benefits                                   30528.9
TotalPay                                   85213.5
TotalPayBenefits                          115742.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87816, dtype: object)
(87817, Id                                     87818
EmployeeName                 Lucinda S Chung
JobTitle            Counselor, Juvenile Hall
BasePay                             67554.02
OvertimePay                         19822.19
OtherPay                              1708.0
Benefits                            26655.12
TotalPay                            89084.21
TotalPayBenefits                   115739.33
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87817, dtype: object)
(87818, Id                             87819
EmployeeName         Marvin A Hooker
JobTitle            Transit Operator
BasePay                     67935.85
OvertimePay                  8692.45
OtherPay                      4964.6
Benefits                    34139.46
TotalPay                     81592.9
TotalPayBenefits           115732.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87818, dtype: object)
(87819, Id                             87820
EmployeeName            Satish  Dutt
JobTitle            Transit Operator
BasePay                     66953.43
OvertimePay                 28769.77
OtherPay                      311.58
Benefits                    19692.12
TotalPay                    96034.78
TotalPayBenefits            115726.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87819, dtype: object)
(87820, Id                             87821
EmployeeName          Juan C Moreira
JobTitle            Transit Operator
BasePay                     67957.93
OvertimePay                 12944.49
OtherPay                      961.07
Benefits                     33861.7
TotalPay                    81863.49
TotalPayBenefits           115725.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87820, dtype: object)
(87821, Id                                87822
EmployeeName        Tanaya D Washington
JobTitle               Transit Operator
BasePay                        69321.84
OvertimePay                    11779.23
OtherPay                         930.43
Benefits                        33690.1
TotalPay                        82031.5
TotalPayBenefits               115721.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87821, dtype: object)
(87822, Id                                      87823
EmployeeName                   Coleman K Wong
JobTitle            Psychiatric Social Worker
BasePay                              84226.93
OvertimePay                               0.0
OtherPay                              1781.82
Benefits                             29703.66
TotalPay                             86008.75
TotalPayBenefits                    115712.41
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87822, dtype: object)
(87823, Id                                           87824
EmployeeName                   Narciso M Paderanga
JobTitle            Worker's Compensation Adjuster
BasePay                                   84573.77
OvertimePay                                    0.0
OtherPay                                    643.35
Benefits                                  30493.92
TotalPay                                  85217.12
TotalPayBenefits                         115711.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87823, dtype: object)
(87824, Id                                87825
EmployeeName        Roberto G Velasquez
JobTitle               Transit Operator
BasePay                        68653.49
OvertimePay                     8647.87
OtherPay                        4160.22
Benefits                       34247.46
TotalPay                       81461.58
TotalPayBenefits              115709.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87824, dtype: object)
(87825, Id                                   87826
EmployeeName             Nicole S Loughran
JobTitle            Airport Safety Officer
BasePay                           80021.55
OvertimePay                        2893.42
OtherPay                           1975.52
Benefits                          30810.66
TotalPay                          84890.49
TotalPayBenefits                 115701.15
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87825, dtype: object)
(87826, Id                                        87827
EmployeeName                     Gloria M Lucas
JobTitle            Senior Management Assistant
BasePay                                85089.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30611.54
TotalPay                               85089.53
TotalPayBenefits                      115701.07
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87826, dtype: object)
(87827, Id                                87828
EmployeeName        Herbert I Hernandez
JobTitle             Program Specialist
BasePay                         83160.0
OvertimePay                         0.0
OtherPay                         1968.0
Benefits                       30572.77
TotalPay                        85128.0
TotalPayBenefits              115700.77
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87827, dtype: object)
(87828, Id                                           87829
EmployeeName                      Brian J Petersen
JobTitle            Electrical Transit System Mech
BasePay                                   82681.51
OvertimePay                                 1386.0
OtherPay                                     550.0
Benefits                                  31063.83
TotalPay                                  84617.51
TotalPayBenefits                         115681.34
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87828, dtype: object)
(87829, Id                                         87830
EmployeeName                        John  Miller
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                              6307.08
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                86140.58
TotalPayBenefits                       115676.94
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87829, dtype: object)
(87830, Id                                   87831
EmployeeName              Victor H Medrano
JobTitle            Administrative Analyst
BasePay                           85106.13
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30565.76
TotalPay                          85106.13
TotalPayBenefits                 115671.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87830, dtype: object)
(87831, Id                          87832
EmployeeName         Gordon G Hoy
JobTitle             Manager VIII
BasePay                  89246.97
OvertimePay                   0.0
OtherPay                   565.82
Benefits                 25858.57
TotalPay                 89812.79
TotalPayBenefits        115671.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87831, dtype: object)
(87832, Id                             87833
EmployeeName            Said  Hassan
JobTitle            Transit Operator
BasePay                     68964.97
OvertimePay                   7175.3
OtherPay                     4915.18
Benefits                    34615.51
TotalPay                    81055.45
TotalPayBenefits           115670.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87832, dtype: object)
(87833, Id                                      87834
EmployeeName                  Claudia E Rivas
JobTitle            Psychiatric Social Worker
BasePay                              81328.51
OvertimePay                           1266.41
OtherPay                              2104.64
Benefits                             30968.04
TotalPay                             84699.56
TotalPayBenefits                     115667.6
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87833, dtype: object)
(87834, Id                              87835
EmployeeName        Desree A Thompson
JobTitle            Nursing Assistant
BasePay                      68351.42
OvertimePay                  19081.01
OtherPay                       897.62
Benefits                     27336.03
TotalPay                     88330.05
TotalPayBenefits            115666.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87834, dtype: object)
(87835, Id                             87836
EmployeeName        Daniel E Frazier
JobTitle                   Carpenter
BasePay                      84764.5
OvertimePay                      0.0
OtherPay                       318.0
Benefits                    30579.02
TotalPay                     85082.5
TotalPayBenefits           115661.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87835, dtype: object)
(87836, Id                              87837
EmployeeName        Pauline B L Liang
JobTitle            Personnel Analyst
BasePay                      85059.78
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30594.36
TotalPay                     85059.78
TotalPayBenefits            115654.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87836, dtype: object)
(87837, Id                                           87838
EmployeeName                        Lucas A Ostrom
JobTitle            IT Operations Support Admn III
BasePay                                   74889.41
OvertimePay                                    0.0
OtherPay                                  10740.29
Benefits                                  30022.74
TotalPay                                   85629.7
TotalPayBenefits                         115652.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87837, dtype: object)
(87838, Id                                   87839
EmployeeName            Delano S Afonsoewa
JobTitle            Patient Care Assistant
BasePay                           68043.02
OvertimePay                       13360.67
OtherPay                           6015.79
Benefits                          28231.14
TotalPay                          87419.48
TotalPayBenefits                 115650.62
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87838, dtype: object)
(87839, Id                                      87840
EmployeeName                        Man S Tam
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                          10212.83
OtherPay                               1540.0
Benefits                             28864.63
TotalPay                             86785.83
TotalPayBenefits                    115650.46
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87839, dtype: object)
(87840, Id                             87841
EmployeeName        Laurene E Bourey
JobTitle            Registered Nurse
BasePay                     87779.32
OvertimePay                      0.0
OtherPay                       250.0
Benefits                    27620.42
TotalPay                    88029.32
TotalPayBenefits           115649.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87840, dtype: object)
(87841, Id                                          87842
EmployeeName                         Emily R Lesk
JobTitle            Senior Administrative Analyst
BasePay                                  84352.02
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  31293.7
TotalPay                                 84352.02
TotalPayBenefits                        115645.72
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87841, dtype: object)
(87842, Id                          87843
EmployeeName             Au H Bui
JobTitle                Asst Engr
BasePay                   85050.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30592.39
TotalPay                  85050.5
TotalPayBenefits        115642.89
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87842, dtype: object)
(87843, Id                                87844
EmployeeName        Deleslie  Hervey Jr
JobTitle               Transit Operator
BasePay                        65759.01
OvertimePay                    13460.41
OtherPay                        3661.71
Benefits                       32760.34
TotalPay                       82881.13
TotalPayBenefits              115641.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87843, dtype: object)
(87844, Id                           87845
EmployeeName        James M Motley
JobTitle            Security Guard
BasePay                   53853.72
OvertimePay               36701.07
OtherPay                   2001.34
Benefits                   23084.3
TotalPay                  92556.13
TotalPayBenefits         115640.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87844, dtype: object)
(87845, Id                              87846
EmployeeName          John T Matthies
JobTitle            Project Manager 2
BasePay                       85394.6
OvertimePay                       0.0
OtherPay                      5286.62
Benefits                     24958.83
TotalPay                     90681.22
TotalPayBenefits            115640.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87845, dtype: object)
(87846, Id                               87847
EmployeeName        Kimberlee A Walden
JobTitle                     Manager I
BasePay                       79758.98
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      35878.52
TotalPay                      79758.98
TotalPayBenefits              115637.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87846, dtype: object)
(87847, Id                                  87848
EmployeeName                Sean O McGrew
JobTitle            Recreation Supervisor
BasePay                          84402.02
OvertimePay                           0.0
OtherPay                           664.55
Benefits                         30570.46
TotalPay                         85066.57
TotalPayBenefits                115637.03
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87847, dtype: object)
(87848, Id                                        87849
EmployeeName                   Yahminah E Suber
JobTitle            Customer Service Agent Supv
BasePay                                81324.04
OvertimePay                               451.8
OtherPay                                3365.55
Benefits                                30470.1
TotalPay                               85141.39
TotalPayBenefits                      115611.49
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 87848, dtype: object)
(87849, Id                                   87850
EmployeeName           Hattie N Shortridge
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       11758.52
OtherPay                           6926.54
Benefits                          28531.69
TotalPay                          87076.06
TotalPayBenefits                 115607.75
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87849, dtype: object)
(87850, Id                               87851
EmployeeName              Phillip  Mau
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                    2252.25
OtherPay                           0.0
Benefits                      30189.49
TotalPay                      85412.25
TotalPayBenefits             115601.74
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87850, dtype: object)
(87851, Id                                87852
EmployeeName             Cecil B Dedmon
JobTitle            Stationary Engineer
BasePay                        78503.53
OvertimePay                         0.0
OtherPay                        6547.94
Benefits                        30550.2
TotalPay                       85051.47
TotalPayBenefits              115601.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87851, dtype: object)
(87852, Id                                 87853
EmployeeName              William  Szeto
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                      1495.46
OtherPay                         3641.62
Benefits                        30328.55
TotalPay                        85270.09
TotalPayBenefits               115598.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87852, dtype: object)
(87853, Id                             87854
EmployeeName        Thomas G Chin Jr
JobTitle                Truck Driver
BasePay                      80052.0
OvertimePay                  3448.71
OtherPay                      2107.5
Benefits                    29990.01
TotalPay                    85608.21
TotalPayBenefits           115598.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87853, dtype: object)
(87854, Id                          87855
EmployeeName        Emma G Bathke
JobTitle            Special Nurse
BasePay                  114433.2
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  1144.34
TotalPay                 114433.2
TotalPayBenefits        115577.54
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87854, dtype: object)
(87855, Id                             87856
EmployeeName          Luria M Powers
JobTitle            Transit Operator
BasePay                     65906.05
OvertimePay                 15552.99
OtherPay                     1825.48
Benefits                    32282.73
TotalPay                    83284.52
TotalPayBenefits           115567.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87855, dtype: object)
(87856, Id                            87857
EmployeeName        Edward D Wilson
JobTitle                  Carpenter
BasePay                    84612.29
OvertimePay                  492.97
OtherPay                        0.0
Benefits                   30460.04
TotalPay                   85105.26
TotalPayBenefits           115565.3
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87856, dtype: object)
(87857, Id                                87858
EmployeeName             Danilo  Dagdag
JobTitle            Stationary Engineer
BasePay                        78473.51
OvertimePay                         0.0
OtherPay                        6545.67
Benefits                        30545.2
TotalPay                       85019.18
TotalPayBenefits              115564.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87857, dtype: object)
(87858, Id                               87859
EmployeeName        Lilli Ann E Bobila
JobTitle             Personnel Analyst
BasePay                        84968.2
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30576.16
TotalPay                       84968.2
TotalPayBenefits             115544.36
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87858, dtype: object)
(87859, Id                             87860
EmployeeName            Daryl  Pitts
JobTitle            Transit Operator
BasePay                     66553.44
OvertimePay                 10664.84
OtherPay                      4889.1
Benefits                    33433.94
TotalPay                    82107.38
TotalPayBenefits           115541.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87859, dtype: object)
(87860, Id                             87861
EmployeeName           Bridget H Fry
JobTitle            Registered Nurse
BasePay                     73792.63
OvertimePay                  4765.86
OtherPay                    10939.27
Benefits                    26043.51
TotalPay                    89497.76
TotalPayBenefits           115541.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87860, dtype: object)
(87861, Id                                      87862
EmployeeName              Jennifer P Landivar
JobTitle            Psychiatric Social Worker
BasePay                               82801.0
OvertimePay                               0.0
OtherPay                               1480.0
Benefits                             31259.72
TotalPay                              84281.0
TotalPayBenefits                    115540.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87861, dtype: object)
(87862, Id                               87863
EmployeeName        Ernesto C Custodio
JobTitle              Survey Associate
BasePay                       83499.51
OvertimePay                     463.05
OtherPay                       1056.16
Benefits                      30516.02
TotalPay                      85018.72
TotalPayBenefits             115534.74
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87862, dtype: object)
(87863, Id                              87864
EmployeeName             Susan A Labo
JobTitle            Transit Manager 2
BasePay                      72223.22
OvertimePay                       0.0
OtherPay                      21495.0
Benefits                     21812.41
TotalPay                     93718.22
TotalPayBenefits            115530.63
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87863, dtype: object)
(87864, Id                               87865
EmployeeName          Jennifer A Kroll
JobTitle            Environmental Spec
BasePay                        84218.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31294.26
TotalPay                       84218.0
TotalPayBenefits             115512.26
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87864, dtype: object)
(87865, Id                             87866
EmployeeName        Matthew T Pruitt
JobTitle                    Gardener
BasePay                      63900.0
OvertimePay                 17877.18
OtherPay                     5430.91
Benefits                    28295.24
TotalPay                    87208.09
TotalPayBenefits           115503.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87865, dtype: object)
(87866, Id                                   87867
EmployeeName                   Dawn L Shaw
JobTitle            Public SafetyComm Disp
BasePay                           75494.88
OvertimePay                        6793.18
OtherPay                           5420.61
Benefits                          27788.82
TotalPay                          87708.67
TotalPayBenefits                 115497.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87866, dtype: object)
(87867, Id                               87868
EmployeeName             Mary A Nelson
JobTitle            Environmental Spec
BasePay                       85088.47
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30406.85
TotalPay                      85088.47
TotalPayBenefits             115495.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87867, dtype: object)
(87868, Id                                          87869
EmployeeName                 Ambi  Bohannon Jones
JobTitle            Senior Administrative Analyst
BasePay                                  85610.54
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29879.99
TotalPay                                 85610.54
TotalPayBenefits                        115490.53
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87868, dtype: object)
(87869, Id                             87870
EmployeeName           Andrew  Holle
JobTitle            Transit Operator
BasePay                     68925.92
OvertimePay                 12484.02
OtherPay                      646.84
Benefits                    33430.72
TotalPay                    82056.78
TotalPayBenefits            115487.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87869, dtype: object)
(87870, Id                               87871
EmployeeName        Carlos T Cervantes
JobTitle             Personnel Analyst
BasePay                       85147.28
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30335.43
TotalPay                      85147.28
TotalPayBenefits             115482.71
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87870, dtype: object)
(87871, Id                             87872
EmployeeName        Mamiko  Nakamura
JobTitle                 Librarian 1
BasePay                     82269.05
OvertimePay                      0.0
OtherPay                     2681.42
Benefits                    30530.57
TotalPay                    84950.47
TotalPayBenefits           115481.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87871, dtype: object)
(87872, Id                                          87873
EmployeeName                      Ernesto  Santos
JobTitle            Airport Operations Supervisor
BasePay                                  81815.36
OvertimePay                               3113.67
OtherPay                                  1275.37
Benefits                                 29276.62
TotalPay                                  86204.4
TotalPayBenefits                        115481.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87872, dtype: object)
(87873, Id                                 87874
EmployeeName          Jose J Castellanos
JobTitle            Automotive Machinist
BasePay                         79834.62
OvertimePay                      3748.65
OtherPay                         1302.85
Benefits                        30589.52
TotalPay                        84886.12
TotalPayBenefits               115475.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87873, dtype: object)
(87874, Id                                 87875
EmployeeName          Richard A Gradwohl
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                      4158.95
OtherPay                         1320.87
Benefits                        29857.91
TotalPay                        85612.83
TotalPayBenefits               115470.74
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87874, dtype: object)
(87875, Id                                 87876
EmployeeName        John Paulo P Cunanan
JobTitle                Registered Nurse
BasePay                         79810.66
OvertimePay                       914.67
OtherPay                         7763.93
Benefits                        26977.38
TotalPay                        88489.26
TotalPayBenefits               115466.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87875, dtype: object)
(87876, Id                                  87877
EmployeeName        Lota  Torres-Clemente
JobTitle               Program Specialist
BasePay                          83160.01
OvertimePay                           0.0
OtherPay                           1763.0
Benefits                         30535.62
TotalPay                         84923.01
TotalPayBenefits                115458.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87876, dtype: object)
(87877, Id                                          87878
EmployeeName                   Tatyana  Rotenberg
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                   1758.0
Benefits                                 30534.55
TotalPay                                  84918.0
TotalPayBenefits                        115452.55
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87877, dtype: object)
(87878, Id                                87879
EmployeeName                  Monu  Afu
JobTitle            Arborist Technician
BasePay                         80282.5
OvertimePay                     5270.67
OtherPay                          226.8
Benefits                       29667.53
TotalPay                       85779.97
TotalPayBenefits               115447.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87878, dtype: object)
(87879, Id                                 87880
EmployeeName        Chinaka L Onyejiekwe
JobTitle             Pharmacy Technician
BasePay                          80541.0
OvertimePay                      1901.65
OtherPay                          2795.4
Benefits                        30206.57
TotalPay                        85238.05
TotalPayBenefits               115444.62
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87879, dtype: object)
(87880, Id                            87881
EmployeeName        Troy  Nicholson
JobTitle                  Carpenter
BasePay                    84764.55
OvertimePay                     0.0
OtherPay                      130.0
Benefits                   30544.38
TotalPay                   84894.55
TotalPayBenefits          115438.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87880, dtype: object)
(87881, Id                                      87882
EmployeeName                     Damian S Eze
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          22073.07
OtherPay                              5394.85
Benefits                             26828.86
TotalPay                             88595.92
TotalPayBenefits                    115424.78
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87881, dtype: object)
(87882, Id                                          87883
EmployeeName                        Linh N Truong
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                   1733.0
Benefits                                 30530.46
TotalPay                                  84893.0
TotalPayBenefits                        115423.46
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87882, dtype: object)
(87883, Id                                           87884
EmployeeName                           Andrew  Hom
JobTitle            Electrical Transit System Mech
BasePay                                    82681.5
OvertimePay                                    0.0
OtherPay                                    2180.0
Benefits                                  30548.59
TotalPay                                   84861.5
TotalPayBenefits                         115410.09
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87883, dtype: object)
(87884, Id                                       87885
EmployeeName                    Maria L Ritner
JobTitle            Protective Services Worker
BasePay                               85852.05
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29542.64
TotalPay                              85852.05
TotalPayBenefits                     115394.69
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87884, dtype: object)
(87885, Id                                      87886
EmployeeName             Luzviminda V Galimba
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           5247.55
OtherPay                              6955.96
Benefits                             29584.64
TotalPay                             85805.51
TotalPayBenefits                    115390.15
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87885, dtype: object)
(87886, Id                                      87887
EmployeeName                   Siu Ling A Mak
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           9224.11
OtherPay                               2148.0
Benefits                             28982.22
TotalPay                             86405.13
TotalPayBenefits                    115387.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87886, dtype: object)
(87887, Id                                   87888
EmployeeName             Edmundo Z Ferraro
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       13075.21
OtherPay                           5638.84
Benefits                          28281.87
TotalPay                          87105.05
TotalPayBenefits                 115386.92
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87887, dtype: object)
(87888, Id                              87889
EmployeeName        Felton B Peterson
JobTitle             Transit Operator
BasePay                      68736.74
OvertimePay                   8011.45
OtherPay                      4301.41
Benefits                     34323.24
TotalPay                      81049.6
TotalPayBenefits            115372.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87888, dtype: object)
(87889, Id                               87890
EmployeeName        Laurent  Grenacher
JobTitle                       Painter
BasePay                       77948.01
OvertimePay                    5482.85
OtherPay                        2357.0
Benefits                      29584.32
TotalPay                      85787.86
TotalPayBenefits             115372.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87889, dtype: object)
(87890, Id                             87891
EmployeeName         Raul  Hernandez
JobTitle            Transit Operator
BasePay                     69305.32
OvertimePay                  7519.03
OtherPay                     3377.49
Benefits                    35165.18
TotalPay                    80201.84
TotalPayBenefits           115367.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87890, dtype: object)
(87891, Id                             87892
EmployeeName        Timothy S Barlow
JobTitle                   Carpenter
BasePay                      84764.5
OvertimePay                      0.0
OtherPay                        71.0
Benefits                    30529.96
TotalPay                     84835.5
TotalPayBenefits           115365.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87891, dtype: object)
(87892, Id                                87893
EmployeeName        Gwendolyn  Williams
JobTitle                      Purchaser
BasePay                        84114.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       31244.56
TotalPay                       84114.53
TotalPayBenefits              115359.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87892, dtype: object)
(87893, Id                               87894
EmployeeName        Carolyn H Sladnick
JobTitle                     Purchaser
BasePay                       84114.52
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31244.56
TotalPay                      84114.52
TotalPayBenefits             115359.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87893, dtype: object)
(87894, Id                                  87895
EmployeeName               Cecilia M Rios
JobTitle            Executive Secretary 2
BasePay                           76732.7
OvertimePay                       9681.52
OtherPay                              0.0
Benefits                         28939.83
TotalPay                         86414.22
TotalPayBenefits                115354.05
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87894, dtype: object)
(87895, Id                          87896
EmployeeName           Mei H Hung
JobTitle              Librarian 1
BasePay                  82573.73
OvertimePay                   0.0
OtherPay                  2227.17
Benefits                  30552.7
TotalPay                  84800.9
TotalPayBenefits         115353.6
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87895, dtype: object)
(87896, Id                                         87897
EmployeeName                    Arthur M Tom III
JobTitle            Sr Personal Property Auditor
BasePay                                 84298.41
OvertimePay                                  0.0
OtherPay                                   480.0
Benefits                                30573.49
TotalPay                                84778.41
TotalPayBenefits                        115351.9
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87896, dtype: object)
(87897, Id                          87898
EmployeeName        Burt E Hamrol
JobTitle                Carpenter
BasePay                  84764.57
OvertimePay                   0.0
OtherPay                     50.0
Benefits                 30527.37
TotalPay                 84814.57
TotalPayBenefits        115341.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87897, dtype: object)
(87898, Id                                   87899
EmployeeName                Vincent A Vega
JobTitle            Ornamental Iron Worker
BasePay                           81848.59
OvertimePay                        2609.56
OtherPay                            829.92
Benefits                          30047.71
TotalPay                          85288.07
TotalPayBenefits                 115335.78
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87898, dtype: object)
(87899, Id                             87900
EmployeeName                Yi H  Wu
JobTitle            Transit Operator
BasePay                     69656.33
OvertimePay                  8960.44
OtherPay                      2441.9
Benefits                    34241.67
TotalPay                    81058.67
TotalPayBenefits           115300.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87899, dtype: object)
(87900, Id                             87901
EmployeeName           Ruben  Malate
JobTitle            Transit Operator
BasePay                     68634.02
OvertimePay                  7169.85
OtherPay                     5029.29
Benefits                    34466.47
TotalPay                    80833.16
TotalPayBenefits           115299.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87900, dtype: object)
(87901, Id                             87902
EmployeeName        Eduardo N Bungay
JobTitle            Transit Operator
BasePay                     64231.13
OvertimePay                 15358.96
OtherPay                      3714.2
Benefits                    31993.88
TotalPay                    83304.29
TotalPayBenefits           115298.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87901, dtype: object)
(87902, Id                                87903
EmployeeName        Ramon A Largaespada
JobTitle                      Locksmith
BasePay                        84559.37
OvertimePay                      150.89
OtherPay                          116.0
Benefits                       30470.37
TotalPay                       84826.26
TotalPayBenefits              115296.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87902, dtype: object)
(87903, Id                                      87904
EmployeeName                    Barry M Beere
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74711.0
OvertimePay                           1899.57
OtherPay                              9052.81
Benefits                             29623.29
TotalPay                             85663.38
TotalPayBenefits                    115286.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87903, dtype: object)
(87904, Id                                   87905
EmployeeName                   Betty L Hue
JobTitle            Administrative Analyst
BasePay                           85185.04
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30100.63
TotalPay                          85185.04
TotalPayBenefits                 115285.67
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87904, dtype: object)
(87905, Id                                           87906
EmployeeName                   Patricia K Jacobsen
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   85305.62
OvertimePay                                    0.0
OtherPay                                      72.0
Benefits                                  29905.58
TotalPay                                  85377.62
TotalPayBenefits                          115283.2
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87905, dtype: object)
(87906, Id                               87907
EmployeeName        Kevin M McLaughlin
JobTitle                     Carpenter
BasePay                       84764.57
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30516.71
TotalPay                      84764.57
TotalPayBenefits             115281.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87906, dtype: object)
(87907, Id                             87908
EmployeeName         Gregory P Smith
JobTitle            Transit Operator
BasePay                     68148.67
OvertimePay                 12262.59
OtherPay                     1569.17
Benefits                    33300.82
TotalPay                    81980.43
TotalPayBenefits           115281.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87907, dtype: object)
(87908, Id                                         87909
EmployeeName                          Steve  Loi
JobTitle            Sr Fare Collections Receiver
BasePay                                  70767.0
OvertimePay                             15448.37
OtherPay                                 1119.92
Benefits                                 27935.4
TotalPay                                87335.29
TotalPayBenefits                       115270.69
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87908, dtype: object)
(87909, Id                                87910
EmployeeName                 Chi W Poon
JobTitle            Automotive Mechanic
BasePay                        79283.56
OvertimePay                      438.45
OtherPay                        5102.08
Benefits                        30429.7
TotalPay                       84824.09
TotalPayBenefits              115253.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87909, dtype: object)
(87910, Id                                87911
EmployeeName                Ricky  Chan
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                     4318.11
OtherPay                          641.6
Benefits                       29745.25
TotalPay                       85500.71
TotalPayBenefits              115245.96
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87910, dtype: object)
(87911, Id                                      87912
EmployeeName                    Mario E Leiva
JobTitle            Psychiatric Social Worker
BasePay                               82497.0
OvertimePay                               0.0
OtherPay                               1540.0
Benefits                             31203.32
TotalPay                              84037.0
TotalPayBenefits                    115240.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87911, dtype: object)
(87912, Id                                         87913
EmployeeName                     Mark T Morewitz
JobTitle            Secretary, Health Commission
BasePay                                 87262.53
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 27976.2
TotalPay                                87262.53
TotalPayBenefits                       115238.73
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87912, dtype: object)
(87913, Id                                   87914
EmployeeName                 Shanti D Dutt
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       18606.24
OtherPay                             898.0
Benefits                          27343.18
TotalPay                          87895.24
TotalPayBenefits                 115238.42
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87913, dtype: object)
(87914, Id                                      87915
EmployeeName            Christopher A Wiseman
JobTitle            Automotive Service Worker
BasePay                              64317.03
OvertimePay                           9775.05
OtherPay                             12304.93
Benefits                             28831.88
TotalPay                             86397.01
TotalPayBenefits                    115228.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87914, dtype: object)
(87915, Id                             87916
EmployeeName          Michael L Wood
JobTitle            Transit Operator
BasePay                     60901.22
OvertimePay                 16588.07
OtherPay                     6508.58
Benefits                    31227.27
TotalPay                    83997.87
TotalPayBenefits           115225.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87915, dtype: object)
(87916, Id                                           87917
EmployeeName                    Reynaldo F Mendoza
JobTitle            IT Operations Support Admn III
BasePay                                   84812.95
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30409.58
TotalPay                                  84812.95
TotalPayBenefits                         115222.53
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87916, dtype: object)
(87917, Id                                           87918
EmployeeName                        Gail D Cochran
JobTitle            Community Police Services Aide
BasePay                                    66123.0
OvertimePay                               12908.86
OtherPay                                   7871.81
Benefits                                  28313.32
TotalPay                                  86903.67
TotalPayBenefits                         115216.99
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87917, dtype: object)
(87918, Id                                          87919
EmployeeName                         Tara H Cohen
JobTitle            Senior Administrative Analyst
BasePay                                  86167.79
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29038.66
TotalPay                                 86167.79
TotalPayBenefits                        115206.45
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87918, dtype: object)
(87919, Id                                  87920
EmployeeName           Maximillian C Luna
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                         914.1
OtherPay                            550.0
Benefits                         31059.11
TotalPay                         84145.62
TotalPayBenefits                115204.73
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87919, dtype: object)
(87920, Id                                   87921
EmployeeName               Nancy  Bautista
JobTitle            Deputy Court Clerk III
BasePay                           81210.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          30488.61
TotalPay                          84710.51
TotalPayBenefits                 115199.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87920, dtype: object)
(87921, Id                                   87922
EmployeeName          Ma Benigna D Goodman
JobTitle            Deputy Court Clerk III
BasePay                            81210.5
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          30488.61
TotalPay                           84710.5
TotalPayBenefits                 115199.11
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87921, dtype: object)
(87922, Id                                    87923
EmployeeName             Charles C Williams
JobTitle            Park Section Supervisor
BasePay                            78567.01
OvertimePay                         7354.43
OtherPay                                0.0
Benefits                           29275.69
TotalPay                           85921.44
TotalPayBenefits                  115197.13
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87922, dtype: object)
(87923, Id                           87924
EmployeeName        Anthony L Tave
JobTitle                 Asst Engr
BasePay                   84193.81
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  31001.79
TotalPay                  84193.81
TotalPayBenefits          115195.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87923, dtype: object)
(87924, Id                                 87925
EmployeeName              Jose L Ledesma
JobTitle            Sewer Service Worker
BasePay                         84683.54
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        30507.09
TotalPay                        84683.54
TotalPayBenefits               115190.63
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87924, dtype: object)
(87925, Id                                   87926
EmployeeName               Christine  Fong
JobTitle            Social Work Supervisor
BasePay                           83177.19
OvertimePay                            0.0
OtherPay                            1260.0
Benefits                          30751.53
TotalPay                          84437.19
TotalPayBenefits                 115188.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87925, dtype: object)
(87926, Id                             87927
EmployeeName        Gerald P Domingo
JobTitle            Transit Operator
BasePay                     66411.73
OvertimePay                  9665.07
OtherPay                     5559.88
Benefits                    33547.82
TotalPay                    81636.68
TotalPayBenefits            115184.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87926, dtype: object)
(87927, Id                               87928
EmployeeName        Michael  Garcia Jr
JobTitle                       Painter
BasePay                       77933.18
OvertimePay                     4863.0
OtherPay                        2699.5
Benefits                      29686.76
TotalPay                      85495.68
TotalPayBenefits             115182.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87927, dtype: object)
(87928, Id                               87929
EmployeeName        Ronnie J Donaldson
JobTitle                       Painter
BasePay                       77948.02
OvertimePay                    6450.42
OtherPay                        1371.4
Benefits                      29412.14
TotalPay                      85769.84
TotalPayBenefits             115181.98
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87928, dtype: object)
(87929, Id                                          87930
EmployeeName                  Christopher E Brown
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                   74740.0
OvertimePay                               8406.28
OtherPay                                  2125.27
Benefits                                 29909.21
TotalPay                                 85271.55
TotalPayBenefits                        115180.76
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 87929, dtype: object)
(87930, Id                                           87931
EmployeeName                        Yvette  Hannah
JobTitle            IT Operations Support Admn III
BasePay                                   84794.58
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30381.19
TotalPay                                  84794.58
TotalPayBenefits                         115175.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87930, dtype: object)
(87931, Id                                 87932
EmployeeName          Kimberley A Tucker
JobTitle            Senior Social Worker
BasePay                         76427.56
OvertimePay                          0.0
OtherPay                         8434.09
Benefits                        30306.32
TotalPay                        84861.65
TotalPayBenefits               115167.97
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87931, dtype: object)
(87932, Id                                   87933
EmployeeName                Karina X Zhang
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                            1505.0
Benefits                           30486.0
TotalPay                           84665.0
TotalPayBenefits                  115151.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87932, dtype: object)
(87933, Id                             87934
EmployeeName             Aaran Y Luo
JobTitle            Transit Operator
BasePay                     66724.34
OvertimePay                 14958.24
OtherPay                       344.2
Benefits                    33122.86
TotalPay                    82026.78
TotalPayBenefits           115149.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87933, dtype: object)
(87934, Id                                           87935
EmployeeName                          Jorge M Wong
JobTitle            IT Operations Support Admn III
BasePay                                   83916.52
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31229.07
TotalPay                                  83916.52
TotalPayBenefits                         115145.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87934, dtype: object)
(87935, Id                                   87936
EmployeeName               Sandra C Avella
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                            1500.0
Benefits                          30484.93
TotalPay                           84660.0
TotalPayBenefits                 115144.93
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87935, dtype: object)
(87936, Id                             87937
EmployeeName        Edward K Wallace
JobTitle            Transit Operator
BasePay                     68378.34
OvertimePay                   9476.0
OtherPay                     3384.94
Benefits                    33902.52
TotalPay                    81239.28
TotalPayBenefits            115141.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87936, dtype: object)
(87937, Id                                      87938
EmployeeName                  Elaine  Samuels
JobTitle            Licensed Vocational Nurse
BasePay                              73582.92
OvertimePay                           11461.2
OtherPay                               1564.2
Benefits                             28518.99
TotalPay                             86608.32
TotalPayBenefits                    115127.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87937, dtype: object)
(87938, Id                                      87939
EmployeeName                 Jennifer S Gamad
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                          12827.85
OtherPay                                402.6
Benefits                              28294.5
TotalPay                             86832.46
TotalPayBenefits                    115126.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87938, dtype: object)
(87939, Id                           87940
EmployeeName        Jane Lee  Chen
JobTitle                 Dietitian
BasePay                   82728.01
OvertimePay                    0.0
OtherPay                   1948.01
Benefits                  30445.56
TotalPay                  84676.02
TotalPayBenefits         115121.58
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87939, dtype: object)
(87940, Id                                 87941
EmployeeName        Jason Dot Mun  Leung
JobTitle             Automotive Mechanic
BasePay                          79283.5
OvertimePay                      4388.85
OtherPay                         1692.38
Benefits                        29755.61
TotalPay                        85364.73
TotalPayBenefits               115120.34
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 87940, dtype: object)
(87941, Id                             87942
EmployeeName            Yi Quan  Zhu
JobTitle            Transit Operator
BasePay                     68676.83
OvertimePay                  6976.05
OtherPay                     4980.36
Benefits                    34483.46
TotalPay                    80633.24
TotalPayBenefits            115116.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87941, dtype: object)
(87942, Id                                87943
EmployeeName             Mazhar  Rashid
JobTitle            Stationary Engineer
BasePay                        78470.62
OvertimePay                     7392.59
OtherPay                            0.0
Benefits                       29247.27
TotalPay                       85863.21
TotalPayBenefits              115110.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87942, dtype: object)
(87943, Id                                87944
EmployeeName          Elizabeth A Silva
JobTitle            IS Business Analyst
BasePay                        94694.54
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        20411.0
TotalPay                       94694.54
TotalPayBenefits              115105.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87943, dtype: object)
(87944, Id                                  87945
EmployeeName             Selamawit  Batti
JobTitle            Medical Social Worker
BasePay                          84402.28
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30696.23
TotalPay                         84402.28
TotalPayBenefits                115098.51
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87944, dtype: object)
(87945, Id                             87946
EmployeeName         Felix J Lagasca
JobTitle            Transit Operator
BasePay                     65797.98
OvertimePay                  13418.4
OtherPay                     3275.38
Benefits                    32603.79
TotalPay                    82491.76
TotalPayBenefits           115095.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87945, dtype: object)
(87946, Id                           87947
EmployeeName        Donna A Loftus
JobTitle               Inspector 3
BasePay                   43053.09
OvertimePay                 913.47
OtherPay                  59377.82
Benefits                  11749.91
TotalPay                 103344.38
TotalPayBenefits         115094.29
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87946, dtype: object)
(87947, Id                               87948
EmployeeName        Thomas A Rodrigues
JobTitle             Project Manager 4
BasePay                        63720.0
OvertimePay                        0.0
OtherPay                       35400.0
Benefits                      15971.73
TotalPay                       99120.0
TotalPayBenefits             115091.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87947, dtype: object)
(87948, Id                             87949
EmployeeName             Mark  Brown
JobTitle            Transit Operator
BasePay                     67968.32
OvertimePay                 11042.67
OtherPay                     2589.41
Benefits                    33489.44
TotalPay                     81600.4
TotalPayBenefits           115089.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87948, dtype: object)
(87949, Id                             87950
EmployeeName        Richard L Adkins
JobTitle            Transit Operator
BasePay                     66101.79
OvertimePay                 15191.69
OtherPay                     1478.25
Benefits                    32314.23
TotalPay                    82771.73
TotalPayBenefits           115085.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87949, dtype: object)
(87950, Id                            87951
EmployeeName        Joseph D Reilly
JobTitle               Wharfinger 2
BasePay                    83727.01
OvertimePay                   203.5
OtherPay                        0.0
Benefits                   31142.25
TotalPay                   83930.51
TotalPayBenefits          115072.76
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 87950, dtype: object)
(87951, Id                                           87952
EmployeeName                      George D Couvson
JobTitle            Senior Transit Traffic Checker
BasePay                                    72495.0
OvertimePay                               11993.96
OtherPay                                   2121.73
Benefits                                  28459.38
TotalPay                                  86610.69
TotalPayBenefits                         115070.07
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87951, dtype: object)
(87952, Id                                87953
EmployeeName             John  Ippolito
JobTitle            Automotive Mechanic
BasePay                         83305.8
OvertimePay                      872.16
OtherPay                          550.0
Benefits                       30341.98
TotalPay                       84727.96
TotalPayBenefits              115069.94
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87952, dtype: object)
(87953, Id                                   87954
EmployeeName                Suzanne S Choi
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                            1435.0
Benefits                          30469.04
TotalPay                           84595.0
TotalPayBenefits                 115064.04
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87953, dtype: object)
(87954, Id                               87955
EmployeeName           Michael T Bynum
JobTitle            Program Specialist
BasePay                       83160.01
OvertimePay                     329.05
OtherPay                        1138.0
Benefits                      30421.24
TotalPay                      84627.06
TotalPayBenefits              115048.3
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87954, dtype: object)
(87955, Id                                87956
EmployeeName                Sam  Flyash
JobTitle            Stationary Engineer
BasePay                        78481.01
OvertimePay                       81.37
OtherPay                        6030.31
Benefits                       30446.11
TotalPay                       84592.69
TotalPayBenefits               115038.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87955, dtype: object)
(87956, Id                                           87957
EmployeeName                        Ginger L Woods
JobTitle            Prpl Permit and Citation Clerk
BasePay                                    79901.5
OvertimePay                                5602.77
OtherPay                                       0.0
Benefits                                  29534.18
TotalPay                                  85504.27
TotalPayBenefits                         115038.45
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87956, dtype: object)
(87957, Id                           87958
EmployeeName        Wen-Chin  Chen
JobTitle               Librarian 2
BasePay                   85216.39
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29821.16
TotalPay                  85216.39
TotalPayBenefits         115037.55
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87957, dtype: object)
(87958, Id                                87959
EmployeeName              Peter G Silva
JobTitle            Park Patrol Officer
BasePay                        61170.62
OvertimePay                    25514.27
OtherPay                        2213.75
Benefits                        26137.9
TotalPay                       88898.64
TotalPayBenefits              115036.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87958, dtype: object)
(87959, Id                              87960
EmployeeName        Shiou-Jyuan  Chen
JobTitle                  Librarian 1
BasePay                      82269.01
OvertimePay                       0.0
OtherPay                      2305.17
Benefits                      30458.3
TotalPay                     84574.18
TotalPayBenefits            115032.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87959, dtype: object)
(87960, Id                                    87961
EmployeeName                 Marion C Meyer
JobTitle            Engineering Associate 1
BasePay                            81294.01
OvertimePay                         3887.87
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           85181.88
TotalPayBenefits                  115021.39
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87960, dtype: object)
(87961, Id                                   87962
EmployeeName                  Albert T Hao
JobTitle            Construction Inspector
BasePay                           84494.57
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30525.94
TotalPay                          84494.57
TotalPayBenefits                 115020.51
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87961, dtype: object)
(87962, Id                                    87963
EmployeeName                    Leland  Pon
JobTitle            Parking Control Officer
BasePay                             59201.4
OvertimePay                        23875.77
OtherPay                            5462.75
Benefits                           26467.67
TotalPay                           88539.92
TotalPayBenefits                  115007.59
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87962, dtype: object)
(87963, Id                           87964
EmployeeName        Henry J Gudino
JobTitle             Accountant IV
BasePay                    96993.9
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  18013.64
TotalPay                   96993.9
TotalPayBenefits         115007.54
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87963, dtype: object)
(87964, Id                               87965
EmployeeName        Stephen E Doyle Jr
JobTitle                  Truck Driver
BasePay                       79973.85
OvertimePay                     825.07
OtherPay                       3207.62
Benefits                      30999.27
TotalPay                      84006.54
TotalPayBenefits             115005.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87964, dtype: object)
(87965, Id                                87966
EmployeeName            Dmitry  Donskoy
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                      219.15
OtherPay                        5896.73
Benefits                       30416.16
TotalPay                       84589.38
TotalPayBenefits              115005.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87965, dtype: object)
(87966, Id                                87967
EmployeeName                 Alan K Yee
JobTitle            Stationary Engineer
BasePay                         78473.5
OvertimePay                      216.98
OtherPay                        5897.32
Benefits                       30415.89
TotalPay                        84587.8
TotalPayBenefits              115003.69
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87966, dtype: object)
(87967, Id                           87968
EmployeeName        Abigayle M Lin
JobTitle            Police Officer
BasePay                   92259.03
OvertimePay                1122.55
OtherPay                   2734.53
Benefits                  18882.46
TotalPay                  96116.11
TotalPayBenefits         114998.57
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 87967, dtype: object)
(87968, Id                             87969
EmployeeName            Alan W Leong
JobTitle            Transit Operator
BasePay                     64050.43
OvertimePay                 19493.46
OtherPay                      437.73
Benefits                     31014.6
TotalPay                    83981.62
TotalPayBenefits           114996.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87968, dtype: object)
(87969, Id                                       87970
EmployeeName                     Monaz J Singh
JobTitle            Protective Services Worker
BasePay                               94611.81
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              20383.59
TotalPay                              94611.81
TotalPayBenefits                      114995.4
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87969, dtype: object)
(87970, Id                                  87971
EmployeeName              Sondra M Angulo
JobTitle            Legislative Assistant
BasePay                          94997.75
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         19996.66
TotalPay                         94997.75
TotalPayBenefits                114994.41
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 87970, dtype: object)
(87971, Id                              87972
EmployeeName          Jeffrey S Banks
JobTitle            Transit Planner 2
BasePay                      84872.24
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30118.93
TotalPay                     84872.24
TotalPayBenefits            114991.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87971, dtype: object)
(87972, Id                               87973
EmployeeName            Sarah L Rhodes
JobTitle            Utility Specialist
BasePay                       86056.23
OvertimePay                        0.0
OtherPay                          27.3
Benefits                      28907.35
TotalPay                      86083.53
TotalPayBenefits             114990.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87972, dtype: object)
(87973, Id                             87974
EmployeeName        Rochelle  Cooper
JobTitle             Museum Sec Supv
BasePay                     68391.02
OvertimePay                 16630.76
OtherPay                     2741.02
Benefits                    27223.96
TotalPay                     87762.8
TotalPayBenefits           114986.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87973, dtype: object)
(87974, Id                                87975
EmployeeName              Nancy B Banda
JobTitle            Senior Clerk Typist
BasePay                        60102.04
OvertimePay                    28520.74
OtherPay                          648.0
Benefits                        25699.2
TotalPay                       89270.78
TotalPayBenefits              114969.98
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87974, dtype: object)
(87975, Id                                    87976
EmployeeName              Christine M Silva
JobTitle            Claims Investigator, CA
BasePay                            86483.36
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           28480.23
TotalPay                           86483.36
TotalPayBenefits                  114963.59
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87975, dtype: object)
(87976, Id                             87977
EmployeeName         Hernan M Porras
JobTitle            Transit Operator
BasePay                     63896.64
OvertimePay                  19841.7
OtherPay                      311.86
Benefits                     30909.0
TotalPay                     84050.2
TotalPayBenefits            114959.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87976, dtype: object)
(87977, Id                             87978
EmployeeName            Elvis  Silot
JobTitle            Transit Operator
BasePay                     69122.82
OvertimePay                 10845.91
OtherPay                     1316.27
Benefits                    33669.52
TotalPay                     81285.0
TotalPayBenefits           114954.52
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87977, dtype: object)
(87978, Id                             87979
EmployeeName        Rosario  Hoskins
JobTitle            Transit Operator
BasePay                     70923.89
OvertimePay                  9804.62
OtherPay                     2292.35
Benefits                    31931.67
TotalPay                    83020.86
TotalPayBenefits           114952.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87978, dtype: object)
(87979, Id                             87980
EmployeeName               Kiet  Ngo
JobTitle            Transit Operator
BasePay                     68710.75
OvertimePay                 11159.48
OtherPay                     1533.08
Benefits                    33542.79
TotalPay                    81403.31
TotalPayBenefits            114946.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87979, dtype: object)
(87980, Id                             87981
EmployeeName        Jose R Pajarillo
JobTitle            Transit Operator
BasePay                     69427.52
OvertimePay                  7787.39
OtherPay                     3338.98
Benefits                    34392.06
TotalPay                    80553.89
TotalPayBenefits           114945.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87980, dtype: object)
(87981, Id                                     87982
EmployeeName                 Thomas R Miller
JobTitle            Deputy Probation Officer
BasePay                             86221.21
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            28722.03
TotalPay                            86221.21
TotalPayBenefits                   114943.24
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 87981, dtype: object)
(87982, Id                              87983
EmployeeName        Yegger L Williams
JobTitle             Transit Operator
BasePay                      65261.05
OvertimePay                  17794.34
OtherPay                       311.58
Benefits                     31567.13
TotalPay                     83366.97
TotalPayBenefits             114934.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87982, dtype: object)
(87983, Id                          87984
EmployeeName         Sherry  Wang
JobTitle              Librarian 1
BasePay                  82269.08
OvertimePay                   0.0
OtherPay                   2208.0
Benefits                 30445.47
TotalPay                 84477.08
TotalPayBenefits        114922.55
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87983, dtype: object)
(87984, Id                                   87985
EmployeeName           Michael A McKiernan
JobTitle            Ornamental Iron Worker
BasePay                           81848.59
OvertimePay                        1527.87
OtherPay                           1391.92
Benefits                          30151.11
TotalPay                          84768.38
TotalPayBenefits                 114919.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87984, dtype: object)
(87985, Id                               87986
EmployeeName             Emily S Chang
JobTitle            Program Specialist
BasePay                       84392.05
OvertimePay                        0.0
OtherPay                          80.0
Benefits                      30440.88
TotalPay                      84472.05
TotalPayBenefits             114912.93
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87985, dtype: object)
(87986, Id                                       87987
EmployeeName                 Loretta E McGrath
JobTitle            IS Business Analyst-Senior
BasePay                               86918.46
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               27991.0
TotalPay                              86918.46
TotalPayBenefits                     114909.46
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 87986, dtype: object)
(87987, Id                                   87988
EmployeeName               Gary G Williams
JobTitle            Ornamental Iron Worker
BasePay                           81848.58
OvertimePay                         509.83
OtherPay                           2227.92
Benefits                          30317.68
TotalPay                          84586.33
TotalPayBenefits                 114904.01
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 87987, dtype: object)
(87988, Id                              87989
EmployeeName        Dennis V Cravalho
JobTitle               Police Officer
BasePay                      81609.05
OvertimePay                   2069.38
OtherPay                      6675.54
Benefits                     24540.11
TotalPay                     90353.97
TotalPayBenefits            114894.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 87988, dtype: object)
(87989, Id                                87990
EmployeeName              Pete B Toledo
JobTitle            Stationary Engineer
BasePay                        70192.23
OvertimePay                     4957.98
OtherPay                       11461.85
Benefits                       28280.48
TotalPay                       86612.06
TotalPayBenefits              114892.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 87989, dtype: object)
(87990, Id                                    87991
EmployeeName               Ana Marie C Lara
JobTitle            Program Support Analyst
BasePay                            83703.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           31189.48
TotalPay                           83703.02
TotalPayBenefits                   114892.5
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 87990, dtype: object)
(87991, Id                                      87992
EmployeeName                      Lan T Trinh
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                           9379.13
OtherPay                               1600.0
Benefits                             28877.41
TotalPay                             86012.13
TotalPayBenefits                    114889.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87991, dtype: object)
(87992, Id                               87993
EmployeeName        Charles  Jefferson
JobTitle              Transit Operator
BasePay                       67885.35
OvertimePay                    9278.36
OtherPay                       3909.87
Benefits                      33813.74
TotalPay                      81073.58
TotalPayBenefits             114887.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 87992, dtype: object)
(87993, Id                                      87994
EmployeeName                   Miguel A Cerda
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           9899.42
OtherPay                             11920.37
Benefits                             28743.19
TotalPay                             86131.99
TotalPayBenefits                    114875.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87993, dtype: object)
(87994, Id                                           87995
EmployeeName                      David J Kerrigan
JobTitle            Electrical Transit System Mech
BasePay                                   82678.22
OvertimePay                                    0.0
OtherPay                                    1764.1
Benefits                                  30429.47
TotalPay                                  84442.32
TotalPayBenefits                         114871.79
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 87994, dtype: object)
(87995, Id                                         87996
EmployeeName                    Thales  Oliveira
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 78812.94
OvertimePay                                  0.0
OtherPay                                  5862.9
Benefits                                 30192.4
TotalPay                                84675.84
TotalPayBenefits                       114868.24
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 87995, dtype: object)
(87996, Id                             87997
EmployeeName        Robert E Crabill
JobTitle                 Librarian 1
BasePay                     82573.74
OvertimePay                      0.0
OtherPay                     1817.83
Benefits                    30474.02
TotalPay                    84391.57
TotalPayBenefits           114865.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87996, dtype: object)
(87997, Id                          87998
EmployeeName         Doris  Tseng
JobTitle              Librarian 1
BasePay                  82250.04
OvertimePay                   0.0
OtherPay                  2202.07
Benefits                 30412.17
TotalPay                 84452.11
TotalPayBenefits        114864.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 87997, dtype: object)
(87998, Id                             87999
EmployeeName          Oliver O Okoro
JobTitle            Transit Operator
BasePay                     66190.87
OvertimePay                 11295.53
OtherPay                     4256.03
Benefits                    33121.29
TotalPay                    81742.43
TotalPayBenefits           114863.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 87998, dtype: object)
(87999, Id                                      88000
EmployeeName                   Martin C Ramos
JobTitle            Automotive Service Worker
BasePay                              64317.06
OvertimePay                           9853.38
OtherPay                             11923.17
Benefits                             28769.87
TotalPay                             86093.61
TotalPayBenefits                    114863.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 87999, dtype: object)
(88000, Id                               88001
EmployeeName        Grant A Harper III
JobTitle              Transit Operator
BasePay                       65449.07
OvertimePay                   16578.01
OtherPay                        1001.8
Benefits                      31824.43
TotalPay                      83028.88
TotalPayBenefits             114853.31
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88000, dtype: object)
(88001, Id                                          88002
EmployeeName                    Ricardo S Cordero
JobTitle            Senior Administrative Analyst
BasePay                                   83672.3
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 31178.36
TotalPay                                  83672.3
TotalPayBenefits                        114850.66
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88001, dtype: object)
(88002, Id                                          88003
EmployeeName                        Kenny C Yeung
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                               1453.38
OtherPay                                     40.0
Benefits                                 30196.76
TotalPay                                 84653.38
TotalPayBenefits                        114850.14
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88002, dtype: object)
(88003, Id                                          88004
EmployeeName                   Juliet F Halverson
JobTitle            Eligibility Worker Supervisor
BasePay                                  84084.02
OvertimePay                                   0.0
OtherPay                                    308.0
Benefits                                 30454.75
TotalPay                                 84392.02
TotalPayBenefits                        114846.77
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88003, dtype: object)
(88004, Id                                  88005
EmployeeName        Khamphone  Keopilavan
JobTitle                 Transit Operator
BasePay                          69403.91
OvertimePay                       9046.86
OtherPay                          2305.59
Benefits                         34088.22
TotalPay                         80756.36
TotalPayBenefits                114844.58
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88004, dtype: object)
(88005, Id                          88006
EmployeeName        Paul W Lamark
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay               5218.72
OtherPay                      0.0
Benefits                 29573.18
TotalPay                 85270.72
TotalPayBenefits         114843.9
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88005, dtype: object)
(88006, Id                                      88007
EmployeeName                  Edna S Santiago
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           4974.09
OtherPay                              6718.01
Benefits                             29537.84
TotalPay                              85294.1
TotalPayBenefits                    114831.94
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88006, dtype: object)
(88007, Id                                          88008
EmployeeName                        Maura E Wayne
JobTitle            Asphalt Finisher Supervisor 1
BasePay                                   74740.0
OvertimePay                               8703.67
OtherPay                                   2284.4
Benefits                                 29090.38
TotalPay                                 85728.07
TotalPayBenefits                        114818.45
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88007, dtype: object)
(88008, Id                               88009
EmployeeName              Kevin E Bird
JobTitle            Soft Floor Coverer
BasePay                       83978.35
OvertimePay                        0.0
OtherPay                        509.92
Benefits                      30328.88
TotalPay                      84488.27
TotalPayBenefits             114817.15
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88008, dtype: object)
(88009, Id                             88010
EmployeeName              Hank  Tsui
JobTitle            Transit Operator
BasePay                     68681.56
OvertimePay                  9943.92
OtherPay                     2391.71
Benefits                    33798.86
TotalPay                    81017.19
TotalPayBenefits           114816.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88009, dtype: object)
(88010, Id                                           88011
EmployeeName                      Linda R Williams
JobTitle            Worker's Compensation Adjuster
BasePay                                   83923.05
OvertimePay                                    0.0
OtherPay                                    637.71
Benefits                                  30250.57
TotalPay                                  84560.76
TotalPayBenefits                         114811.33
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88010, dtype: object)
(88011, Id                                   88012
EmployeeName              Robert L Rowland
JobTitle            Construction Inspector
BasePay                           83566.66
OvertimePay                            0.0
OtherPay                             760.0
Benefits                          30458.19
TotalPay                          84326.66
TotalPayBenefits                 114784.85
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88011, dtype: object)
(88012, Id                              88013
EmployeeName        Valerie  Reichert
JobTitle                  Librarian 1
BasePay                      83183.12
OvertimePay                       0.0
OtherPay                      1057.84
Benefits                     30536.59
TotalPay                     84240.96
TotalPayBenefits            114777.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88012, dtype: object)
(88013, Id                             88014
EmployeeName            Danny S Chau
JobTitle            Transit Operator
BasePay                     69570.34
OvertimePay                 10339.69
OtherPay                     1036.59
Benefits                     33826.4
TotalPay                    80946.62
TotalPayBenefits           114773.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88013, dtype: object)
(88014, Id                                      88015
EmployeeName                 Alicia A Narayan
JobTitle            Medical Records Tech Sprv
BasePay                              81486.07
OvertimePay                           3395.25
OtherPay                                 24.0
Benefits                             29859.41
TotalPay                             84905.32
TotalPayBenefits                    114764.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88014, dtype: object)
(88015, Id                             88016
EmployeeName         Ely B Advincula
JobTitle            Transit Operator
BasePay                     68054.84
OvertimePay                  7392.67
OtherPay                     5110.54
Benefits                    34205.24
TotalPay                    80558.05
TotalPayBenefits           114763.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88015, dtype: object)
(88016, Id                                   88017
EmployeeName                  Steven Z Wen
JobTitle            Water Quality Tech III
BasePay                           83915.96
OvertimePay                         464.49
OtherPay                               0.0
Benefits                          30380.86
TotalPay                          84380.45
TotalPayBenefits                 114761.31
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88016, dtype: object)
(88017, Id                                88018
EmployeeName        Mercedes C Gonzales
JobTitle              Nursing Assistant
BasePay                         68391.0
OvertimePay                     18101.9
OtherPay                          898.0
Benefits                       27359.08
TotalPay                        87390.9
TotalPayBenefits              114749.98
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88017, dtype: object)
(88018, Id                                88019
EmployeeName             Nhung K Phuong
JobTitle            Pharmacy Technician
BasePay                        80541.02
OvertimePay                      4552.8
OtherPay                            0.0
Benefits                       29655.66
TotalPay                       85093.82
TotalPayBenefits              114749.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88018, dtype: object)
(88019, Id                                  88020
EmployeeName              Karla E Rosales
JobTitle            Recreation Supervisor
BasePay                          83218.08
OvertimePay                           0.0
OtherPay                          1308.22
Benefits                         30212.69
TotalPay                          84526.3
TotalPayBenefits                114738.99
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88019, dtype: object)
(88020, Id                          88021
EmployeeName        John E Powell
JobTitle                  Painter
BasePay                   77948.0
OvertimePay               5402.54
OtherPay                   1260.0
Benefits                 30125.28
TotalPay                 84610.54
TotalPayBenefits        114735.82
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88020, dtype: object)
(88021, Id                                  88022
EmployeeName        Shirley A Christopher
JobTitle               Program Specialist
BasePay                           83160.0
OvertimePay                        1386.0
OtherPay                              0.0
Benefits                         30189.49
TotalPay                          84546.0
TotalPayBenefits                114735.49
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88021, dtype: object)
(88022, Id                              88023
EmployeeName        Chester L Blanson
JobTitle             Transit Operator
BasePay                      66251.15
OvertimePay                  14832.26
OtherPay                      1322.44
Benefits                     32329.04
TotalPay                     82405.85
TotalPayBenefits            114734.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88022, dtype: object)
(88023, Id                                           88024
EmployeeName                       Larry R Brenner
JobTitle            IT Operations Support Admn III
BasePay                                   84427.46
OvertimePay                                    0.0
OtherPay                                     37.94
Benefits                                  30260.87
TotalPay                                   84465.4
TotalPayBenefits                         114726.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88023, dtype: object)
(88024, Id                              88025
EmployeeName        Edward  Devereaux
JobTitle                 Truck Driver
BasePay                       80052.0
OvertimePay                   2243.75
OtherPay                      2386.14
Benefits                     30040.25
TotalPay                     84681.89
TotalPayBenefits            114722.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88024, dtype: object)
(88025, Id                           88026
EmployeeName        Brian T Weaver
JobTitle               Librarian 1
BasePay                   83274.57
OvertimePay                    0.0
OtherPay                   1052.29
Benefits                  30394.05
TotalPay                  84326.86
TotalPayBenefits         114720.91
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88025, dtype: object)
(88026, Id                                          88027
EmployeeName                   Michael P Magliulo
JobTitle            IS Business Analyst-Assistant
BasePay                                  84449.41
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  30264.7
TotalPay                                 84449.41
TotalPayBenefits                        114714.11
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88026, dtype: object)
(88027, Id                             88028
EmployeeName            Paul  Bolich
JobTitle            Transit Operator
BasePay                     68325.51
OvertimePay                  10744.6
OtherPay                     1469.89
Benefits                     34173.8
TotalPay                     80540.0
TotalPayBenefits            114713.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88027, dtype: object)
(88028, Id                            88029
EmployeeName        Erich D Camacho
JobTitle             Deputy Sheriff
BasePay                    74733.41
OvertimePay                   47.75
OtherPay                   12653.69
Benefits                   27277.93
TotalPay                   87434.85
TotalPayBenefits          114712.78
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88028, dtype: object)
(88029, Id                             88030
EmployeeName          Calvin S Davis
JobTitle            Transit Operator
BasePay                     70035.64
OvertimePay                  8278.01
OtherPay                     2051.81
Benefits                    34346.66
TotalPay                    80365.46
TotalPayBenefits           114712.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88029, dtype: object)
(88030, Id                           88031
EmployeeName         Mae Ling  Mak
JobTitle            Microbiologist
BasePay                   83788.25
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30920.94
TotalPay                  83788.25
TotalPayBenefits         114709.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88030, dtype: object)
(88031, Id                                   88032
EmployeeName             Vladlena  Gulchin
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                            1125.0
Benefits                          30410.27
TotalPay                           84285.0
TotalPayBenefits                 114695.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88031, dtype: object)
(88032, Id                              88033
EmployeeName        Bounmy  Rasachack
JobTitle             Transit Operator
BasePay                      64901.19
OvertimePay                  16714.69
OtherPay                      1381.15
Benefits                     31698.05
TotalPay                     82997.03
TotalPayBenefits            114695.08
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88032, dtype: object)
(88033, Id                             88034
EmployeeName        Therese J Marzan
JobTitle             Junior Engineer
BasePay                     84239.31
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30450.98
TotalPay                    84239.31
TotalPayBenefits           114690.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88033, dtype: object)
(88034, Id                                          88035
EmployeeName                      Irina I Aptekar
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                   1120.0
Benefits                                 30409.96
TotalPay                                  84280.0
TotalPayBenefits                        114689.96
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88034, dtype: object)
(88035, Id                                88036
EmployeeName           Ricardo  Rosales
JobTitle            Stationary Engineer
BasePay                        82297.28
OvertimePay                     5964.56
OtherPay                        7060.85
Benefits                        19350.1
TotalPay                       95322.69
TotalPayBenefits              114672.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88035, dtype: object)
(88036, Id                             88037
EmployeeName              Tony Y Tse
JobTitle            Transit Operator
BasePay                     69334.57
OvertimePay                   7951.7
OtherPay                     2477.93
Benefits                     34903.8
TotalPay                     79764.2
TotalPayBenefits            114668.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88036, dtype: object)
(88037, Id                                88038
EmployeeName                 Chui S Lee
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    17077.61
OtherPay                        8926.85
Benefits                       27534.01
TotalPay                       87132.46
TotalPayBenefits              114666.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88037, dtype: object)
(88038, Id                               88039
EmployeeName        Michael T Cacatian
JobTitle              Transit Operator
BasePay                       67475.31
OvertimePay                   12244.34
OtherPay                       1901.87
Benefits                      33040.98
TotalPay                      81621.52
TotalPayBenefits              114662.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88038, dtype: object)
(88039, Id                              88040
EmployeeName        Vicktoria M Vella
JobTitle                Special Nurse
BasePay                     102974.07
OvertimePay                   7188.85
OtherPay                      3362.65
Benefits                      1135.29
TotalPay                    113525.57
TotalPayBenefits            114660.86
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88039, dtype: object)
(88040, Id                             88041
EmployeeName          Ronald L Cosey
JobTitle            Transit Operator
BasePay                     65250.68
OvertimePay                 17543.98
OtherPay                      295.77
Benefits                    31569.26
TotalPay                    83090.43
TotalPayBenefits           114659.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88040, dtype: object)
(88041, Id                                      88042
EmployeeName                       Melba  Yee
JobTitle            Attorney (Civil/Criminal)
BasePay                               63061.0
OvertimePay                               0.0
OtherPay                             34774.04
Benefits                             16822.65
TotalPay                             97835.04
TotalPayBenefits                    114657.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88041, dtype: object)
(88042, Id                                  88043
EmployeeName                James E Hearn
JobTitle            Maintenance Machinist
BasePay                          84262.37
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30394.99
TotalPay                         84262.37
TotalPayBenefits                114657.36
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88042, dtype: object)
(88043, Id                                  88044
EmployeeName        Mariebell D Bonggapat
JobTitle                    Special Nurse
BasePay                           96119.1
OvertimePay                       1486.54
OtherPay                         15907.13
Benefits                           1135.1
TotalPay                        113512.77
TotalPayBenefits                114647.87
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88043, dtype: object)
(88044, Id                                          88045
EmployeeName                        Arlyn P Serna
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                522.45
OtherPay                                    648.0
Benefits                                 30316.74
TotalPay                                 84330.45
TotalPayBenefits                        114647.19
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88044, dtype: object)
(88045, Id                             88046
EmployeeName            John S Zhong
JobTitle            Transit Operator
BasePay                     68512.68
OvertimePay                 10677.03
OtherPay                     1247.04
Benefits                    34200.81
TotalPay                    80436.75
TotalPayBenefits           114637.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88045, dtype: object)
(88046, Id                                           88047
EmployeeName                       Juancho R Gella
JobTitle            Prpl Permit and Citation Clerk
BasePay                                    79920.0
OvertimePay                                5175.43
OtherPay                                       0.0
Benefits                                  29540.68
TotalPay                                  85095.43
TotalPayBenefits                         114636.11
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88046, dtype: object)
(88047, Id                             88048
EmployeeName           Steven L Chin
JobTitle            Transit Operator
BasePay                     67288.78
OvertimePay                 12566.24
OtherPay                     1818.64
Benefits                    32951.54
TotalPay                    81673.66
TotalPayBenefits            114625.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88047, dtype: object)
(88048, Id                                  88049
EmployeeName                  Nina  Fiore
JobTitle            Executive Secretary 2
BasePay                          79742.57
OvertimePay                       5339.03
OtherPay                              0.0
Benefits                         29529.09
TotalPay                          85081.6
TotalPayBenefits                114610.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88048, dtype: object)
(88049, Id                                88050
EmployeeName        Patrick J Smithwick
JobTitle                Museum Sec Supv
BasePay                         68391.0
OvertimePay                    14668.47
OtherPay                        4131.01
Benefits                       27416.84
TotalPay                       87190.48
TotalPayBenefits              114607.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88049, dtype: object)
(88050, Id                                      88051
EmployeeName                      Amey S Bhan
JobTitle            Architectural Assistant 2
BasePay                              83464.94
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31137.39
TotalPay                             83464.94
TotalPayBenefits                    114602.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88050, dtype: object)
(88051, Id                             88052
EmployeeName              Kevin  Lee
JobTitle            Transit Operator
BasePay                     68037.09
OvertimePay                 10375.92
OtherPay                     2007.36
Benefits                    34174.44
TotalPay                    80420.37
TotalPayBenefits           114594.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88051, dtype: object)
(88052, Id                           88053
EmployeeName        Grace G Bondoc
JobTitle             Special Nurse
BasePay                   90920.22
OvertimePay                3029.87
OtherPay                    8070.5
Benefits                  12574.17
TotalPay                 102020.59
TotalPayBenefits         114594.76
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88052, dtype: object)
(88053, Id                                   88054
EmployeeName           Christopher A Deluz
JobTitle            Ornamental Iron Worker
BasePay                           81848.53
OvertimePay                        2183.25
OtherPay                            567.92
Benefits                           29994.4
TotalPay                           84599.7
TotalPayBenefits                  114594.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88053, dtype: object)
(88054, Id                          88055
EmployeeName         Amber M Fank
JobTitle            Special Nurse
BasePay                 108716.07
OvertimePay               3204.59
OtherPay                  2673.33
Benefits                      0.0
TotalPay                114593.99
TotalPayBenefits        114593.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88054, dtype: object)
(88055, Id                                      88056
EmployeeName                  Dolores R Morco
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                          10220.73
OtherPay                                648.0
Benefits                             28689.26
TotalPay                             85901.74
TotalPayBenefits                     114591.0
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88055, dtype: object)
(88056, Id                               88057
EmployeeName               Ryan M Chan
JobTitle            Environmental Spec
BasePay                       83459.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       31129.7
TotalPay                      83459.51
TotalPayBenefits             114589.21
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88056, dtype: object)
(88057, Id                                   88058
EmployeeName                 Carmen R Aluy
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                            1035.0
Benefits                          30393.86
TotalPay                           84195.0
TotalPayBenefits                 114588.86
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88057, dtype: object)
(88058, Id                                       88059
EmployeeName                     Nicole M Lock
JobTitle            Protective Services Worker
BasePay                               79514.08
OvertimePay                                0.0
OtherPay                               3975.19
Benefits                              31099.58
TotalPay                              83489.27
TotalPayBenefits                     114588.85
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88058, dtype: object)
(88059, Id                                  88060
EmployeeName        Frank A Piscitello Jr
JobTitle                     Truck Driver
BasePay                           80052.0
OvertimePay                       2281.86
OtherPay                           2240.0
Benefits                         30014.04
TotalPay                         84573.86
TotalPayBenefits                 114587.9
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88059, dtype: object)
(88060, Id                             88061
EmployeeName           Leroy L Vance
JobTitle            Transit Operator
BasePay                     67108.98
OvertimePay                 13596.74
OtherPay                      551.29
Benefits                     33330.6
TotalPay                    81257.01
TotalPayBenefits           114587.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88060, dtype: object)
(88061, Id                                 88062
EmployeeName              John E Mattias
JobTitle            Sewer Service Worker
BasePay                          82612.6
OvertimePay                        444.0
OtherPay                         1186.71
Benefits                        30342.75
TotalPay                        84243.31
TotalPayBenefits               114586.06
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88061, dtype: object)
(88062, Id                                88063
EmployeeName             John F Whigham
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                     2845.65
OtherPay                        2511.06
Benefits                       29934.56
TotalPay                       84640.23
TotalPayBenefits              114574.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88062, dtype: object)
(88063, Id                                      88064
EmployeeName                       Tak P Poon
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           9153.35
OtherPay                               1520.0
Benefits                             28860.99
TotalPay                             85706.37
TotalPayBenefits                    114567.36
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88063, dtype: object)
(88064, Id                                88065
EmployeeName             Julio C Orozco
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    12938.29
OtherPay                       12315.23
Benefits                       28184.19
TotalPay                       86381.52
TotalPayBenefits              114565.71
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88064, dtype: object)
(88065, Id                          88066
EmployeeName             Sam  Woo
JobTitle             Museum Guard
BasePay                   61398.0
OvertimePay              27348.39
OtherPay                      0.0
Benefits                 25817.23
TotalPay                 88746.39
TotalPayBenefits        114563.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88065, dtype: object)
(88066, Id                                           88067
EmployeeName                  Evangeline V Spataro
JobTitle            Community Police Services Aide
BasePay                                    66123.0
OvertimePay                               12625.89
OtherPay                                   7555.85
Benefits                                  28249.77
TotalPay                                  86304.74
TotalPayBenefits                         114554.51
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88066, dtype: object)
(88067, Id                               88068
EmployeeName                Sunny P Fu
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                        1000.0
Benefits                      30392.41
TotalPay                       84160.0
TotalPayBenefits             114552.41
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88067, dtype: object)
(88068, Id                               88069
EmployeeName             May M To-Tang
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                        1000.0
Benefits                      30382.85
TotalPay                       84160.0
TotalPayBenefits             114542.85
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88068, dtype: object)
(88069, Id                                 88070
EmployeeName              Brian A Henson
JobTitle            Automotive Machinist
BasePay                          82203.5
OvertimePay                          0.0
OtherPay                         1224.78
Benefits                        31114.36
TotalPay                        83428.28
TotalPayBenefits               114542.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88069, dtype: object)
(88070, Id                          88071
EmployeeName        Jack P Gisler
JobTitle             Truck Driver
BasePay                  79296.75
OvertimePay               4417.66
OtherPay                   1192.5
Benefits                 29635.53
TotalPay                 84906.91
TotalPayBenefits        114542.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88070, dtype: object)
(88071, Id                             88072
EmployeeName        Mikhail  Pashkov
JobTitle                 Librarian 1
BasePay                     82268.99
OvertimePay                      0.0
OtherPay                     1897.79
Benefits                    30375.45
TotalPay                    84166.78
TotalPayBenefits           114542.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88071, dtype: object)
(88072, Id                             88073
EmployeeName           Cheng J Vaing
JobTitle            Street Inspector
BasePay                      78164.0
OvertimePay                  7164.45
OtherPay                         0.0
Benefits                    29213.34
TotalPay                    85328.45
TotalPayBenefits           114541.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88072, dtype: object)
(88073, Id                                   88074
EmployeeName                  Joan H Burns
JobTitle            Patient Care Assistant
BasePay                            49709.1
OvertimePay                       33889.83
OtherPay                           4217.04
Benefits                          26724.68
TotalPay                          87815.97
TotalPayBenefits                 114540.65
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88073, dtype: object)
(88074, Id                          88075
EmployeeName          Kay J Cheng
JobTitle                Planner 2
BasePay                  83570.01
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30970.61
TotalPay                 83570.01
TotalPayBenefits        114540.62
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88074, dtype: object)
(88075, Id                               88076
EmployeeName        Terrence M Laubach
JobTitle              Police Officer 3
BasePay                       46301.67
OvertimePay                     1411.2
OtherPay                       53031.0
Benefits                      13788.45
TotalPay                     100743.87
TotalPayBenefits             114532.32
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88075, dtype: object)
(88076, Id                                88077
EmployeeName        Maria Sofia  Aleman
JobTitle             Program Specialist
BasePay                        83160.02
OvertimePay                       28.88
OtherPay                          960.0
Benefits                        30377.9
TotalPay                        84148.9
TotalPayBenefits               114526.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88076, dtype: object)
(88077, Id                           88078
EmployeeName        Nathan T Moore
JobTitle               Firefighter
BasePay                   75685.55
OvertimePay                3009.21
OtherPay                   6257.01
Benefits                  29568.31
TotalPay                  84951.77
TotalPayBenefits         114520.08
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88077, dtype: object)
(88078, Id                             88079
EmployeeName               Jun Y Shi
JobTitle            Transit Operator
BasePay                      68951.9
OvertimePay                  7040.11
OtherPay                     4148.64
Benefits                    34377.53
TotalPay                    80140.65
TotalPayBenefits           114518.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88078, dtype: object)
(88079, Id                          88080
EmployeeName        Susan S Leung
JobTitle                Purchaser
BasePay                  84114.56
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30403.41
TotalPay                 84114.56
TotalPayBenefits        114517.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88079, dtype: object)
(88080, Id                          88081
EmployeeName         Gloria  Gill
JobTitle                Purchaser
BasePay                  84114.54
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30403.41
TotalPay                 84114.54
TotalPayBenefits        114517.95
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88080, dtype: object)
(88081, Id                            88082
EmployeeName        Hermilo E Rodis
JobTitle                  Purchaser
BasePay                    84114.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30403.41
TotalPay                   84114.52
TotalPayBenefits          114517.93
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88081, dtype: object)
(88082, Id                                  88083
EmployeeName              Antonio  Morton
JobTitle            Emp & Training Spec 2
BasePay                          79542.06
OvertimePay                        388.76
OtherPay                           4328.0
Benefits                         30257.99
TotalPay                         84258.82
TotalPayBenefits                114516.81
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88082, dtype: object)
(88083, Id                                      88084
EmployeeName                       Shui H Tam
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                           8280.19
OtherPay                               2208.0
Benefits                             28995.62
TotalPay                             85521.19
TotalPayBenefits                    114516.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88083, dtype: object)
(88084, Id                                  88085
EmployeeName           Thomas M Dennis Jr
JobTitle            Maintenance Machinist
BasePay                           82681.5
OvertimePay                         231.0
OtherPay                            550.0
Benefits                         31052.28
TotalPay                          83462.5
TotalPayBenefits                114514.78
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88084, dtype: object)
(88085, Id                          88086
EmployeeName         Diane  Handa
JobTitle                Purchaser
BasePay                  84114.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30400.16
TotalPay                 84114.51
TotalPayBenefits        114514.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88085, dtype: object)
(88086, Id                             88087
EmployeeName         John A Jones Jr
JobTitle            Transit Operator
BasePay                     66642.85
OvertimePay                 13360.48
OtherPay                     1857.07
Benefits                    32650.42
TotalPay                     81860.4
TotalPayBenefits           114510.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88086, dtype: object)
(88087, Id                           88088
EmployeeName        John R Danaher
JobTitle                 Purchaser
BasePay                    84114.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30392.36
TotalPay                   84114.5
TotalPayBenefits         114506.86
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88087, dtype: object)
(88088, Id                                     88089
EmployeeName        Novia L Chandra-Madejski
JobTitle                 Pharmacy Technician
BasePay                              80541.0
OvertimePay                          4034.69
OtherPay                              232.48
Benefits                            29692.96
TotalPay                            84808.17
TotalPayBenefits                   114501.13
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88088, dtype: object)
(88089, Id                                         88090
EmployeeName                  Richard J Mercurio
JobTitle            Utility Plumber Supervisor 1
BasePay                                  73054.7
OvertimePay                             13694.69
OtherPay                                 3706.08
Benefits                                24041.87
TotalPay                                90455.47
TotalPayBenefits                       114497.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88089, dtype: object)
(88090, Id                                 88091
EmployeeName        Jacinto C Pattugalan
JobTitle              Program Specialist
BasePay                          83160.0
OvertimePay                          0.0
OtherPay                           960.0
Benefits                        30376.83
TotalPay                         84120.0
TotalPayBenefits               114496.83
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88090, dtype: object)
(88091, Id                          88092
EmployeeName         John  Montes
JobTitle                  Painter
BasePay                  77948.01
OvertimePay               6045.63
OtherPay                   1121.0
Benefits                 29374.69
TotalPay                 85114.64
TotalPayBenefits        114489.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88091, dtype: object)
(88092, Id                                88093
EmployeeName          Randolf R Wolfert
JobTitle            Pharmacy Technician
BasePay                        80541.01
OvertimePay                     3304.52
OtherPay                          848.0
Benefits                       29792.19
TotalPay                       84693.53
TotalPayBenefits              114485.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88092, dtype: object)
(88093, Id                             88094
EmployeeName        Oscar A Sandoval
JobTitle            Transit Operator
BasePay                     67506.05
OvertimePay                  8809.91
OtherPay                     3750.24
Benefits                    34413.17
TotalPay                     80066.2
TotalPayBenefits           114479.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88093, dtype: object)
(88094, Id                                     88095
EmployeeName              Prince J Onyebuchi
JobTitle            Deputy Probation Officer
BasePay                              86962.1
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            27514.74
TotalPay                             86962.1
TotalPayBenefits                   114476.84
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88094, dtype: object)
(88095, Id                               88096
EmployeeName        Mariano  Maradiaga
JobTitle              Transit Operator
BasePay                       66584.13
OvertimePay                   13667.72
OtherPay                       1650.82
Benefits                      32570.21
TotalPay                      81902.67
TotalPayBenefits             114472.88
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88095, dtype: object)
(88096, Id                                         88097
EmployeeName                        James P Eroh
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  82508.9
OvertimePay                             12108.38
OtherPay                                 2268.22
Benefits                                17586.94
TotalPay                                 96885.5
TotalPayBenefits                       114472.44
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88096, dtype: object)
(88097, Id                          88098
EmployeeName        Timothy  Troy
JobTitle              Librarian 1
BasePay                  82573.76
OvertimePay                   0.0
OtherPay                  1482.82
Benefits                 30407.64
TotalPay                 84056.58
TotalPayBenefits        114464.22
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88097, dtype: object)
(88098, Id                                88099
EmployeeName        Margaret F Kendrick
JobTitle               Transit Operator
BasePay                        61296.51
OvertimePay                    12784.17
OtherPay                        5492.96
Benefits                       34889.24
TotalPay                       79573.64
TotalPayBenefits              114462.88
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88098, dtype: object)
(88099, Id                                        88100
EmployeeName                   Keisha Y Fairley
JobTitle            Customer Service Agent Supv
BasePay                                81324.01
OvertimePay                             1895.87
OtherPay                                1194.98
Benefits                               30046.31
TotalPay                               84414.86
TotalPayBenefits                      114461.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88099, dtype: object)
(88100, Id                                   88101
EmployeeName                 Raul  Ramirez
JobTitle            Patient Care Assistant
BasePay                           68391.01
OvertimePay                       15737.27
OtherPay                           2642.93
Benefits                          27687.34
TotalPay                          86771.21
TotalPayBenefits                 114458.55
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88100, dtype: object)
(88101, Id                                         88102
EmployeeName                          Mimi  Tran
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.04
OvertimePay                              3117.05
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                84603.09
TotalPayBenefits                       114457.39
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88101, dtype: object)
(88102, Id                                        88103
EmployeeName                  Stephanie L Smith
JobTitle            Senior Management Assistant
BasePay                                84033.01
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30412.76
TotalPay                               84033.01
TotalPayBenefits                      114445.77
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88102, dtype: object)
(88103, Id                                    88104
EmployeeName                 Candace B Quan
JobTitle            Senior Benefits Analyst
BasePay                            82544.37
OvertimePay                             0.0
OtherPay                             1528.0
Benefits                            30371.7
TotalPay                           84072.37
TotalPayBenefits                  114444.07
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88103, dtype: object)
(88104, Id                             88105
EmployeeName                Tai S Ng
JobTitle            Transit Operator
BasePay                     69149.15
OvertimePay                  7247.46
OtherPay                     3076.48
Benefits                    34968.57
TotalPay                    79473.09
TotalPayBenefits           114441.66
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88104, dtype: object)
(88105, Id                              88106
EmployeeName        Kenneth J Dittman
JobTitle                 Truck Driver
BasePay                      80052.01
OvertimePay                   2337.41
OtherPay                       2070.0
Benefits                     29977.17
TotalPay                     84459.42
TotalPayBenefits            114436.59
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88105, dtype: object)
(88106, Id                             88107
EmployeeName        Sean D Stagliano
JobTitle            Transit Operator
BasePay                     68396.05
OvertimePay                  5511.46
OtherPay                      5920.4
Benefits                    34600.71
TotalPay                    79827.91
TotalPayBenefits           114428.62
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88106, dtype: object)
(88107, Id                               88108
EmployeeName          Michelle M Berry
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                    1068.38
OtherPay                           0.0
Benefits                      30189.49
TotalPay                      84228.38
TotalPayBenefits             114417.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88107, dtype: object)
(88108, Id                                           88109
EmployeeName                         Scott A Kempf
JobTitle            IT Operations Support Admn III
BasePay                                   83312.92
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  31103.46
TotalPay                                  83312.92
TotalPayBenefits                         114416.38
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88108, dtype: object)
(88109, Id                                       88110
EmployeeName               Katherine A Gaddess
JobTitle            Protective Services Worker
BasePay                               85088.95
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29324.18
TotalPay                              85088.95
TotalPayBenefits                     114413.13
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88109, dtype: object)
(88110, Id                                           88111
EmployeeName                      Terence L Abrams
JobTitle            Integrated Pest Mgmt Specialst
BasePay                                    78567.0
OvertimePay                                5391.14
OtherPay                                     982.4
Benefits                                  29468.97
TotalPay                                  84940.54
TotalPayBenefits                         114409.51
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88110, dtype: object)
(88111, Id                                      88112
EmployeeName                    Fe V  Foronda
JobTitle            Licensed Vocational Nurse
BasePay                              73593.48
OvertimePay                           11523.6
OtherPay                               897.92
Benefits                             28391.01
TotalPay                              86015.0
TotalPayBenefits                    114406.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88111, dtype: object)
(88112, Id                            88113
EmployeeName        Leonor  Saldana
JobTitle                Firefighter
BasePay                    59242.11
OvertimePay                24150.76
OtherPay                   10823.89
Benefits                    20183.0
TotalPay                   94216.76
TotalPayBenefits          114399.76
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88112, dtype: object)
(88113, Id                                88114
EmployeeName             Haafe H Lavalu
JobTitle            Arborist Technician
BasePay                        80279.61
OvertimePay                     4433.19
OtherPay                           59.2
Benefits                       29620.09
TotalPay                        84772.0
TotalPayBenefits              114392.09
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88113, dtype: object)
(88114, Id                          88115
EmployeeName        Karla R Smoak
JobTitle              Librarian 1
BasePay                  82176.89
OvertimePay                   0.0
OtherPay                  1855.67
Benefits                 30351.36
TotalPay                 84032.56
TotalPayBenefits        114383.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88114, dtype: object)
(88115, Id                               88116
EmployeeName        Cristy M Dieterich
JobTitle               Health Educator
BasePay                       83306.51
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      31074.57
TotalPay                      83306.51
TotalPayBenefits             114381.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88115, dtype: object)
(88116, Id                                      88117
EmployeeName                Nora P Capistrano
JobTitle            Senior Eligibility Worker
BasePay                              75033.05
OvertimePay                           9905.39
OtherPay                                733.0
Benefits                             28704.73
TotalPay                             85671.44
TotalPayBenefits                    114376.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88116, dtype: object)
(88117, Id                                88118
EmployeeName        Alejandro C Damasco
JobTitle               Transit Operator
BasePay                        68262.94
OvertimePay                     8153.64
OtherPay                         3952.5
Benefits                       34005.56
TotalPay                       80369.08
TotalPayBenefits              114374.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88117, dtype: object)
(88118, Id                                           88119
EmployeeName                         Jonas  Knight
JobTitle            Forensic Laboratory Technician
BasePay                                   80635.09
OvertimePay                                 798.54
OtherPay                                   2929.66
Benefits                                  30009.66
TotalPay                                  84363.29
TotalPayBenefits                         114372.95
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88118, dtype: object)
(88119, Id                             88120
EmployeeName           Jeff D Fisher
JobTitle            Transit Operator
BasePay                     66515.34
OvertimePay                 13432.49
OtherPay                     1834.67
Benefits                    32588.31
TotalPay                     81782.5
TotalPayBenefits           114370.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88119, dtype: object)
(88120, Id                                88121
EmployeeName        Joshua-Roger S Ipac
JobTitle               Transit Operator
BasePay                        67060.83
OvertimePay                    11946.03
OtherPay                        1710.82
Benefits                       33652.23
TotalPay                       80717.68
TotalPayBenefits              114369.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88120, dtype: object)
(88121, Id                                           88122
EmployeeName                   Vivian T Solemnidad
JobTitle            Worker's Compensation Adjuster
BasePay                                   83587.43
OvertimePay                                    0.0
OtherPay                                    635.85
Benefits                                  30145.08
TotalPay                                  84223.28
TotalPayBenefits                         114368.36
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88121, dtype: object)
(88122, Id                                          88123
EmployeeName                   Elizabeth C Harris
JobTitle            Senior Administrative Analyst
BasePay                                  83823.11
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30542.59
TotalPay                                 83823.11
TotalPayBenefits                         114365.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88122, dtype: object)
(88123, Id                             88124
EmployeeName           Manuel  Perez
JobTitle            Transit Operator
BasePay                     65178.39
OvertimePay                 14902.27
OtherPay                     2215.66
Benefits                    32068.76
TotalPay                    82296.32
TotalPayBenefits           114365.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88123, dtype: object)
(88124, Id                              88125
EmployeeName        Catherine L Starr
JobTitle                  Librarian 1
BasePay                      82521.98
OvertimePay                       0.0
OtherPay                      1454.69
Benefits                     30387.07
TotalPay                     83976.67
TotalPayBenefits            114363.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88124, dtype: object)
(88125, Id                           88126
EmployeeName        Melissa  Riley
JobTitle               Librarian 1
BasePay                   81773.89
OvertimePay                    0.0
OtherPay                   2291.57
Benefits                  30288.27
TotalPay                  84065.46
TotalPayBenefits         114353.73
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88125, dtype: object)
(88126, Id                             88127
EmployeeName          Arthur D Padua
JobTitle            Transit Operator
BasePay                     64881.13
OvertimePay                 17801.64
OtherPay                       288.5
Benefits                    31380.14
TotalPay                    82971.27
TotalPayBenefits           114351.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88126, dtype: object)
(88127, Id                                         88128
EmployeeName                        Wendy P Wong
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.09
OvertimePay                              3008.57
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                84494.66
TotalPayBenefits                       114348.96
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88127, dtype: object)
(88128, Id                                     88129
EmployeeName                   Nulia  Harris
JobTitle            Track Maintenance Worker
BasePay                              63683.5
OvertimePay                         24091.08
OtherPay                               229.8
Benefits                            26342.72
TotalPay                            88004.38
TotalPayBenefits                    114347.1
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88128, dtype: object)
(88129, Id                                   88130
EmployeeName                   Maria W Tom
JobTitle            Administrative Analyst
BasePay                           85185.06
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29147.01
TotalPay                          85185.06
TotalPayBenefits                 114332.07
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88129, dtype: object)
(88130, Id                           88131
EmployeeName        Mark Y Antonio
JobTitle               Chief Clerk
BasePay                   79735.05
OvertimePay                    0.0
OtherPay                   3542.77
Benefits                  31046.78
TotalPay                  83277.82
TotalPayBenefits          114324.6
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88130, dtype: object)
(88131, Id                              88132
EmployeeName        Mauricio F Garcia
JobTitle             Transit Operator
BasePay                      68599.18
OvertimePay                   9285.79
OtherPay                      2619.85
Benefits                     33798.07
TotalPay                     80504.82
TotalPayBenefits            114302.89
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88131, dtype: object)
(88132, Id                                      88133
EmployeeName                       Gary A Gee
JobTitle            Assistant Const Inspector
BasePay                              81686.52
OvertimePay                           2695.07
OtherPay                                  0.0
Benefits                             29917.74
TotalPay                             84381.59
TotalPayBenefits                    114299.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88132, dtype: object)
(88133, Id                          88134
EmployeeName        David T Banks
JobTitle                  Painter
BasePay                  77948.01
OvertimePay               6058.68
OtherPay                    945.1
Benefits                 29339.22
TotalPay                 84951.79
TotalPayBenefits        114291.01
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88133, dtype: object)
(88134, Id                             88135
EmployeeName         Gee Sing  Jeung
JobTitle            Transit Operator
BasePay                     67606.71
OvertimePay                 12741.52
OtherPay                     1039.56
Benefits                    32898.74
TotalPay                    81387.79
TotalPayBenefits           114286.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88134, dtype: object)
(88135, Id                               88136
EmployeeName         Virginia V Ah-Nin
JobTitle            Program Specialist
BasePay                        83275.5
OvertimePay                        0.0
OtherPay                         648.9
Benefits                      30360.38
TotalPay                       83924.4
TotalPayBenefits             114284.78
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88135, dtype: object)
(88136, Id                             88137
EmployeeName        Toni M Singleton
JobTitle            Transit Operator
BasePay                     65071.21
OvertimePay                 16351.69
OtherPay                     1134.75
Benefits                    31721.74
TotalPay                    82557.65
TotalPayBenefits           114279.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88136, dtype: object)
(88137, Id                          88138
EmployeeName         Aida C Henry
JobTitle              Librarian 1
BasePay                  82269.03
OvertimePay                   0.0
OtherPay                  1675.37
Benefits                 30330.47
TotalPay                  83944.4
TotalPayBenefits        114274.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88137, dtype: object)
(88138, Id                                  88139
EmployeeName                Carlos  Ayala
JobTitle            Deputy Court Clerk II
BasePay                          75784.36
OvertimePay                           0.0
OtherPay                           8855.0
Benefits                         29634.66
TotalPay                         84639.36
TotalPayBenefits                114274.02
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88138, dtype: object)
(88139, Id                                          88140
EmployeeName                      Augusta  Duncan
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                924.01
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                 84084.01
TotalPayBenefits                         114273.5
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88139, dtype: object)
(88140, Id                                88141
EmployeeName             Elizabeth H Ye
JobTitle            Estate Investigator
BasePay                        82782.97
OvertimePay                      1375.2
OtherPay                            0.0
Benefits                       30112.37
TotalPay                       84158.17
TotalPayBenefits              114270.54
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88140, dtype: object)
(88141, Id                                      88142
EmployeeName                 Julio C Martinez
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                            4388.5
OtherPay                               6735.2
Benefits                             29540.61
TotalPay                              84725.7
TotalPayBenefits                    114266.31
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88141, dtype: object)
(88142, Id                                88143
EmployeeName                 Lila  Seto
JobTitle            Pharmacy Technician
BasePay                        80541.02
OvertimePay                     3280.21
OtherPay                         648.01
Benefits                       29792.19
TotalPay                       84469.24
TotalPayBenefits              114261.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88142, dtype: object)
(88143, Id                             88144
EmployeeName         Basheba V Walls
JobTitle            Transit Operator
BasePay                     64386.95
OvertimePay                 13860.68
OtherPay                      3921.7
Benefits                    32090.48
TotalPay                    82169.33
TotalPayBenefits           114259.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88143, dtype: object)
(88144, Id                                           88145
EmployeeName                          Joy T Gamble
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   82937.81
OvertimePay                                    0.0
OtherPay                                     261.5
Benefits                                  31038.28
TotalPay                                  83199.31
TotalPayBenefits                         114237.59
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88144, dtype: object)
(88145, Id                            88146
EmployeeName        Sylvia S Pascal
JobTitle                Librarian 1
BasePay                    82269.04
OvertimePay                     0.0
OtherPay                    1635.71
Benefits                   30322.99
TotalPay                   83904.75
TotalPayBenefits          114227.74
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88145, dtype: object)
(88146, Id                                           88147
EmployeeName                        Steadman  Kwan
JobTitle            Electrical Transit System Mech
BasePay                                   82674.91
OvertimePay                                    0.0
OtherPay                                    1220.0
Benefits                                  30325.74
TotalPay                                  83894.91
TotalPayBenefits                         114220.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88146, dtype: object)
(88147, Id                                     88148
EmployeeName            Alexander D Randolph
JobTitle            Volunteer/Outreach Coord
BasePay                              83151.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            31067.36
TotalPay                             83151.0
TotalPayBenefits                   114218.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88147, dtype: object)
(88148, Id                             88149
EmployeeName          Kelly R Booker
JobTitle            Transit Operator
BasePay                     68482.01
OvertimePay                  7214.74
OtherPay                      4311.5
Benefits                    34208.44
TotalPay                    80008.25
TotalPayBenefits           114216.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88148, dtype: object)
(88149, Id                                   88150
EmployeeName               Agnes  Trinidad
JobTitle            Patient Care Assistant
BasePay                           68090.21
OvertimePay                       18002.73
OtherPay                            895.15
Benefits                          27227.54
TotalPay                          86988.09
TotalPayBenefits                 114215.63
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88149, dtype: object)
(88150, Id                                      88151
EmployeeName                     David Z Chen
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          23235.74
OtherPay                              3402.71
Benefits                             26443.89
TotalPay                             87766.45
TotalPayBenefits                    114210.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88150, dtype: object)
(88151, Id                              88152
EmployeeName        Orlando  Williams
JobTitle             Transit Operator
BasePay                      67823.07
OvertimePay                  11166.08
OtherPay                      1959.94
Benefits                     33260.57
TotalPay                     80949.09
TotalPayBenefits            114209.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88151, dtype: object)
(88152, Id                           88153
EmployeeName              Mei C Wu
JobTitle            Accountant III
BasePay                   85267.36
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  28936.83
TotalPay                  85267.36
TotalPayBenefits         114204.19
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88152, dtype: object)
(88153, Id                                         88154
EmployeeName                           Joe F Lee
JobTitle            ASR Senior Office Specialist
BasePay                                  80278.8
OvertimePay                              1974.38
OtherPay                                     0.0
Benefits                                31935.41
TotalPay                                82253.18
TotalPayBenefits                       114188.59
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88153, dtype: object)
(88154, Id                             88155
EmployeeName             John T Tran
JobTitle            Transit Operator
BasePay                     59739.33
OvertimePay                 24057.69
OtherPay                      693.79
Benefits                    29691.84
TotalPay                    84490.81
TotalPayBenefits           114182.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88154, dtype: object)
(88155, Id                            88156
EmployeeName        Adeline L Hwang
JobTitle                Librarian 1
BasePay                    82269.04
OvertimePay                     0.0
OtherPay                    1585.62
Benefits                   30314.98
TotalPay                   83854.66
TotalPayBenefits          114169.64
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88155, dtype: object)
(88156, Id                             88157
EmployeeName        Sancho M Miranda
JobTitle               Special Nurse
BasePay                      97503.5
OvertimePay                  1446.55
OtherPay                    14086.79
Benefits                     1130.37
TotalPay                   113036.84
TotalPayBenefits           114167.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88156, dtype: object)
(88157, Id                           88158
EmployeeName        Betsy J Levine
JobTitle               Librarian 1
BasePay                   82230.94
OvertimePay                    0.0
OtherPay                   1629.34
Benefits                  30306.47
TotalPay                  83860.28
TotalPayBenefits         114166.75
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88157, dtype: object)
(88158, Id                          88159
EmployeeName         Luisa M Inca
JobTitle              Librarian 1
BasePay                  82269.07
OvertimePay                   0.0
OtherPay                   1560.0
Benefits                 30319.27
TotalPay                 83829.07
TotalPayBenefits        114148.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88158, dtype: object)
(88159, Id                          88160
EmployeeName        Anzhong  Yang
JobTitle              Librarian 1
BasePay                  82269.03
OvertimePay                   0.0
OtherPay                   1560.0
Benefits                 30319.23
TotalPay                 83829.03
TotalPayBenefits        114148.26
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88159, dtype: object)
(88160, Id                             88161
EmployeeName         Erin D Anderson
JobTitle            Transit Operator
BasePay                     66583.43
OvertimePay                 13964.23
OtherPay                     2139.52
Benefits                    31459.63
TotalPay                    82687.18
TotalPayBenefits           114146.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88160, dtype: object)
(88161, Id                          88162
EmployeeName          Ann C Isely
JobTitle              Librarian 1
BasePay                  82173.81
OvertimePay                   0.0
OtherPay                  1656.31
Benefits                 30302.41
TotalPay                 83830.12
TotalPayBenefits        114132.53
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88161, dtype: object)
(88162, Id                                88163
EmployeeName         Larissa E Villante
JobTitle            IS Business Analyst
BasePay                        83790.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30338.71
TotalPay                       83790.52
TotalPayBenefits              114129.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88162, dtype: object)
(88163, Id                                88164
EmployeeName            Joan  Lefkowitz
JobTitle            IS Business Analyst
BasePay                         83790.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30338.71
TotalPay                        83790.5
TotalPayBenefits              114129.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88163, dtype: object)
(88164, Id                                      88165
EmployeeName                  Derrick G Homer
JobTitle            Architectural Assistant 2
BasePay                              83766.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30362.59
TotalPay                             83766.52
TotalPayBenefits                    114129.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88164, dtype: object)
(88165, Id                                       88166
EmployeeName                       Karen T Fan
JobTitle            Medical Records Technician
BasePay                               69714.05
OvertimePay                           16141.09
OtherPay                                 648.0
Benefits                              27623.97
TotalPay                              86503.14
TotalPayBenefits                     114127.11
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88165, dtype: object)
(88166, Id                                         88167
EmployeeName                 Alexander A Ramirez
JobTitle            Sr Fare Collections Receiver
BasePay                                 70767.01
OvertimePay                             14883.42
OtherPay                                   648.0
Benefits                                27826.54
TotalPay                                86298.43
TotalPayBenefits                       114124.97
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88166, dtype: object)
(88167, Id                                   88168
EmployeeName                 Kyle D Bourne
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30316.74
TotalPay                           83808.0
TotalPayBenefits                 114124.74
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88167, dtype: object)
(88168, Id                                 88169
EmployeeName        Audrey H Nauer-Allen
JobTitle              Program Specialist
BasePay                          83160.0
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        30316.74
TotalPay                         83808.0
TotalPayBenefits               114124.74
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88168, dtype: object)
(88169, Id                               88170
EmployeeName          Stuart A Gurtman
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                         648.0
Benefits                      30316.74
TotalPay                       83808.0
TotalPayBenefits             114124.74
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88169, dtype: object)
(88170, Id                            88171
EmployeeName        Tuti I Suardana
JobTitle                Chief Clerk
BasePay                    82728.02
OvertimePay                     0.0
OtherPay                     1080.0
Benefits                   30314.55
TotalPay                   83808.02
TotalPayBenefits          114122.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88170, dtype: object)
(88171, Id                              88172
EmployeeName        Wai-Fong C Cheung
JobTitle                  Chief Clerk
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                       1080.0
Benefits                     30314.55
TotalPay                      83808.0
TotalPayBenefits            114122.55
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88171, dtype: object)
(88172, Id                               88173
EmployeeName          Cornelia M Huang
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                         648.0
Benefits                      30311.91
TotalPay                       83808.0
TotalPayBenefits             114119.91
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88172, dtype: object)
(88173, Id                                        88174
EmployeeName                      David N Ogami
JobTitle            Senior Physician Specialist
BasePay                                86614.28
OvertimePay                                 0.0
OtherPay                                4330.77
Benefits                               23173.85
TotalPay                               90945.05
TotalPayBenefits                       114118.9
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88173, dtype: object)
(88174, Id                                          88175
EmployeeName                      Charles Z Naray
JobTitle            Senior Administrative Analyst
BasePay                                  84158.73
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29942.58
TotalPay                                 84158.73
TotalPayBenefits                        114101.31
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88174, dtype: object)
(88175, Id                                   88176
EmployeeName                    Karen  Liu
JobTitle            Deputy Court Clerk III
BasePay                           80777.89
OvertimePay                            0.0
OtherPay                           4079.18
Benefits                          29242.93
TotalPay                          84857.07
TotalPayBenefits                  114100.0
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88175, dtype: object)
(88176, Id                                 88177
EmployeeName        Carlos A Martinez Jr
JobTitle                   Accountant IV
BasePay                         82968.01
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31128.65
TotalPay                        82968.01
TotalPayBenefits               114096.66
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88176, dtype: object)
(88177, Id                                         88178
EmployeeName                      Tim J Lavorini
JobTitle            Building Services Technician
BasePay                                 80278.51
OvertimePay                                  0.0
OtherPay                                  3500.0
Benefits                                30314.65
TotalPay                                83778.51
TotalPayBenefits                       114093.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88177, dtype: object)
(88178, Id                                      88179
EmployeeName          Maneka Michelle  Spidle
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74251.7
OvertimePay                           4975.04
OtherPay                              6650.24
Benefits                             28215.94
TotalPay                             85876.98
TotalPayBenefits                    114092.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88178, dtype: object)
(88179, Id                                           88180
EmployeeName                   Alexander S Cabugos
JobTitle            Central Processing & Dist Tech
BasePay                                   71419.37
OvertimePay                                7087.38
OtherPay                                   6521.37
Benefits                                  29063.93
TotalPay                                  85028.12
TotalPayBenefits                         114092.05
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88179, dtype: object)
(88180, Id                                        88181
EmployeeName                     Caroline J Lee
JobTitle            Senior Physician Specialist
BasePay                                89934.53
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               24153.62
TotalPay                               89934.53
TotalPayBenefits                      114088.15
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88180, dtype: object)
(88181, Id                                           88182
EmployeeName                 Allison K Vanderslice
JobTitle            Planner 3-Environmental Review
BasePay                                   83344.07
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30741.57
TotalPay                                  83344.07
TotalPayBenefits                         114085.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88181, dtype: object)
(88182, Id                                88183
EmployeeName               Kien C Vuong
JobTitle            Pharmacy Technician
BasePay                        80541.03
OvertimePay                     3672.63
OtherPay                         202.98
Benefits                        29665.6
TotalPay                       84416.64
TotalPayBenefits              114082.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88182, dtype: object)
(88183, Id                                88184
EmployeeName                  Mela  Yee
JobTitle            Pharmacy Technician
BasePay                        80839.32
OvertimePay                     3942.27
OtherPay                         850.38
Benefits                       28443.63
TotalPay                       85631.97
TotalPayBenefits               114075.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88183, dtype: object)
(88184, Id                                    88185
EmployeeName        Anne Christina  Adamson
JobTitle                 Program Specialist
BasePay                             83121.5
OvertimePay                             0.0
OtherPay                              647.7
Benefits                           30298.57
TotalPay                            83769.2
TotalPayBenefits                  114067.77
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88184, dtype: object)
(88185, Id                                          88186
EmployeeName                         Lupita L Yee
JobTitle            Library Technical Assistant 2
BasePay                                  76584.33
OvertimePay                               5902.09
OtherPay                                  2304.37
Benefits                                 29273.06
TotalPay                                 84790.79
TotalPayBenefits                        114063.85
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88185, dtype: object)
(88186, Id                                88187
EmployeeName            Daniel J Potter
JobTitle            Arborist Technician
BasePay                         80282.5
OvertimePay                     2184.08
OtherPay                        1639.35
Benefits                       29940.69
TotalPay                       84105.93
TotalPayBenefits              114046.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88186, dtype: object)
(88187, Id                                        88188
EmployeeName                         Lucy S Lin
JobTitle            Senior Management Assistant
BasePay                                84077.11
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29967.89
TotalPay                               84077.11
TotalPayBenefits                       114045.0
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88187, dtype: object)
(88188, Id                                          88189
EmployeeName                     Rosario  Argenal
JobTitle            Victim/Witness Investigator 3
BasePay                                   82694.0
OvertimePay                                   0.0
OtherPay                                   1040.0
Benefits                                 30306.82
TotalPay                                  83734.0
TotalPayBenefits                        114040.82
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88188, dtype: object)
(88189, Id                             88190
EmployeeName        Latasha M Finley
JobTitle            Transit Operator
BasePay                     68693.93
OvertimePay                   6244.6
OtherPay                      4674.3
Benefits                    34423.58
TotalPay                    79612.83
TotalPayBenefits           114036.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88189, dtype: object)
(88190, Id                                      88191
EmployeeName                 Michelle L Meier
JobTitle            Psychiatric Social Worker
BasePay                              83029.01
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             31005.92
TotalPay                             83029.01
TotalPayBenefits                    114034.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88190, dtype: object)
(88191, Id                          88192
EmployeeName        Aaron  Golbus
JobTitle             Wharfinger 2
BasePay                  83727.04
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30302.96
TotalPay                 83727.04
TotalPayBenefits         114030.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88191, dtype: object)
(88192, Id                             88193
EmployeeName         David J Stevens
JobTitle            Transit Operator
BasePay                     63606.79
OvertimePay                 16919.05
OtherPay                     3147.79
Benefits                    30350.47
TotalPay                    83673.63
TotalPayBenefits            114024.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88192, dtype: object)
(88193, Id                                 88194
EmployeeName        Maria Teresa P Cenit
JobTitle                    Museum Guard
BasePay                         58612.35
OvertimePay                      20023.3
OtherPay                         9795.96
Benefits                        25590.68
TotalPay                        88431.61
TotalPayBenefits               114022.29
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88193, dtype: object)
(88194, Id                           88195
EmployeeName          Sonya  Foree
JobTitle            Biologist I/II
BasePay                   84851.35
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29169.69
TotalPay                  84851.35
TotalPayBenefits         114021.04
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88194, dtype: object)
(88195, Id                             88196
EmployeeName            Eddy O Suazo
JobTitle            Transit Operator
BasePay                     65775.27
OvertimePay                 13539.41
OtherPay                     2334.15
Benefits                    32368.12
TotalPay                    81648.83
TotalPayBenefits           114016.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88195, dtype: object)
(88196, Id                                   88197
EmployeeName                    Weldon  Ng
JobTitle            Water QualityTech I/II
BasePay                           72920.02
OvertimePay                       12931.98
OtherPay                               0.0
Benefits                          28163.58
TotalPay                           85852.0
TotalPayBenefits                 114015.58
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88196, dtype: object)
(88197, Id                             88198
EmployeeName         Lorain G Caruso
JobTitle            Transit Operator
BasePay                     67147.47
OvertimePay                 12714.43
OtherPay                      703.67
Benefits                    33448.83
TotalPay                    80565.57
TotalPayBenefits            114014.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88197, dtype: object)
(88198, Id                           88199
EmployeeName        Marc P Basuino
JobTitle              Truck Driver
BasePay                   80052.02
OvertimePay                1643.26
OtherPay                   2288.14
Benefits                  30024.37
TotalPay                  83983.42
TotalPayBenefits         114007.79
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88198, dtype: object)
(88199, Id                                      88200
EmployeeName                  Rommel D Taylor
JobTitle            Architectural Assistant 2
BasePay                               83903.9
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30099.92
TotalPay                              83903.9
TotalPayBenefits                    114003.82
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88199, dtype: object)
(88200, Id                                      88201
EmployeeName              Aurora Arlene L Ong
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           5657.11
OtherPay                              5455.23
Benefits                             29288.59
TotalPay                             84714.34
TotalPayBenefits                    114002.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88200, dtype: object)
(88201, Id                               88202
EmployeeName          Lavinia  Meadows
JobTitle            Program Specialist
BasePay                       83073.46
OvertimePay                        0.0
OtherPay                        647.44
Benefits                      30280.43
TotalPay                       83720.9
TotalPayBenefits             114001.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88201, dtype: object)
(88202, Id                                        88203
EmployeeName                       David  Green
JobTitle            Senior Electrical Inpsector
BasePay                                65018.03
OvertimePay                             5006.35
OtherPay                               24502.74
Benefits                               19472.55
TotalPay                               94527.12
TotalPayBenefits                      113999.67
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88202, dtype: object)
(88203, Id                                88204
EmployeeName        Vicki L Solls Davis
JobTitle               Transit Operator
BasePay                        63352.02
OvertimePay                    18781.05
OtherPay                        1065.68
Benefits                       30799.59
TotalPay                       83198.75
TotalPayBenefits              113998.34
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88203, dtype: object)
(88204, Id                             88205
EmployeeName           Karen A Boyle
JobTitle            Registered Nurse
BasePay                     80641.57
OvertimePay                  2532.01
OtherPay                     4629.12
Benefits                    26194.07
TotalPay                     87802.7
TotalPayBenefits           113996.77
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88204, dtype: object)
(88205, Id                                          88206
EmployeeName                      James H Elliott
JobTitle            Transit Car Cleaner Asst Sprv
BasePay                                   66095.6
OvertimePay                               9504.44
OtherPay                                  9895.01
Benefits                                 28501.12
TotalPay                                 85495.05
TotalPayBenefits                        113996.17
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88205, dtype: object)
(88206, Id                                      88207
EmployeeName                  Manuel E Alvior
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          23059.29
OtherPay                              3373.85
Benefits                             26431.56
TotalPay                             87561.14
TotalPayBenefits                     113992.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88206, dtype: object)
(88207, Id                                88208
EmployeeName           Elizabeth J Choy
JobTitle            Pharmacy Technician
BasePay                        80541.01
OvertimePay                     2840.55
OtherPay                         828.78
Benefits                       29779.12
TotalPay                       84210.34
TotalPayBenefits              113989.46
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88207, dtype: object)
(88208, Id                           88209
EmployeeName        Kerry  Wilhite
JobTitle                Manager II
BasePay                   82230.98
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   31753.4
TotalPay                  82230.98
TotalPayBenefits         113984.38
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88208, dtype: object)
(88209, Id                                88210
EmployeeName         Patrick D Martinez
JobTitle            Estate Investigator
BasePay                        82899.53
OvertimePay                       916.8
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       83816.33
TotalPayBenefits              113976.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88209, dtype: object)
(88210, Id                             88211
EmployeeName        Yemila J Alvarez
JobTitle                 Librarian 2
BasePay                     80976.01
OvertimePay                      0.0
OtherPay                     1998.08
Benefits                    31000.05
TotalPay                    82974.09
TotalPayBenefits           113974.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88210, dtype: object)
(88211, Id                               88212
EmployeeName        Marianne A Palisoc
JobTitle              Registered Nurse
BasePay                       73211.58
OvertimePay                     2521.8
OtherPay                      12456.95
Benefits                      25779.84
TotalPay                      88190.33
TotalPayBenefits             113970.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88211, dtype: object)
(88212, Id                                         88213
EmployeeName                         Gary K Fong
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                               2860.8
OtherPay                                  1991.0
Benefits                                29830.85
TotalPay                                 84135.3
TotalPayBenefits                       113966.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88212, dtype: object)
(88213, Id                                 88214
EmployeeName        Charles A Richardson
JobTitle                Transit Operator
BasePay                         64831.52
OvertimePay                     17420.16
OtherPay                          346.79
Benefits                        31363.79
TotalPay                        82598.47
TotalPayBenefits               113962.26
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88213, dtype: object)
(88214, Id                              88215
EmployeeName        Annette M Hopkins
JobTitle             Transit Operator
BasePay                      66038.87
OvertimePay                  13511.01
OtherPay                      2001.34
Benefits                     32399.21
TotalPay                     81551.22
TotalPayBenefits            113950.43
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88214, dtype: object)
(88215, Id                                  88216
EmployeeName            Edward J Martinez
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                         231.0
OtherPay                            778.0
Benefits                         30259.17
TotalPay                         83690.52
TotalPayBenefits                113949.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88215, dtype: object)
(88216, Id                                   88217
EmployeeName                 Kathryn  Hall
JobTitle            Public SafetyComm Disp
BasePay                           66429.32
OvertimePay                        15083.1
OtherPay                           7621.74
Benefits                          24812.57
TotalPay                          89134.16
TotalPayBenefits                 113946.73
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88216, dtype: object)
(88217, Id                             88218
EmployeeName        Timothy T Wilson
JobTitle                 Librarian 1
BasePay                     82269.02
OvertimePay                      0.0
OtherPay                     1392.19
Benefits                    30284.64
TotalPay                    83661.21
TotalPayBenefits           113945.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88217, dtype: object)
(88218, Id                                          88219
EmployeeName                     Lyslynn  Lacoste
JobTitle            Criminal Justice Specialist 2
BasePay                                   82938.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30999.25
TotalPay                                  82938.0
TotalPayBenefits                        113937.25
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88218, dtype: object)
(88219, Id                           88220
EmployeeName        Ruth  Amernick
JobTitle               Librarian 1
BasePay                   82269.04
OvertimePay                    0.0
OtherPay                   1385.65
Benefits                  30282.55
TotalPay                  83654.69
TotalPayBenefits         113937.24
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88219, dtype: object)
(88220, Id                            88221
EmployeeName        Andrea V Grimes
JobTitle                Librarian 1
BasePay                    82269.01
OvertimePay                     0.0
OtherPay                     1392.2
Benefits                   30274.59
TotalPay                   83661.21
TotalPayBenefits           113935.8
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88220, dtype: object)
(88221, Id                                  88222
EmployeeName                  Prem  Chand
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                        485.62
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         83717.14
TotalPayBenefits                113934.79
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88221, dtype: object)
(88222, Id                              88223
EmployeeName        Jeffrey A Mandala
JobTitle             Transit Operator
BasePay                      68735.88
OvertimePay                   5079.95
OtherPay                      5466.31
Benefits                     34643.18
TotalPay                     79282.14
TotalPayBenefits            113925.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88222, dtype: object)
(88223, Id                              88224
EmployeeName        Christine  Gerber
JobTitle                  Librarian 1
BasePay                      81964.32
OvertimePay                       0.0
OtherPay                       1733.9
Benefits                     30226.77
TotalPay                     83698.22
TotalPayBenefits            113924.99
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88223, dtype: object)
(88224, Id                          88225
EmployeeName        Mary M Carder
JobTitle              Firefighter
BasePay                  62453.53
OvertimePay              18045.44
OtherPay                 11901.66
Benefits                 21498.37
TotalPay                 92400.63
TotalPayBenefits         113899.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88224, dtype: object)
(88225, Id                                      88226
EmployeeName                       Keith K Yu
JobTitle            Automotive Service Worker
BasePay                               64075.1
OvertimePay                           12039.7
OtherPay                              9589.99
Benefits                             28193.86
TotalPay                             85704.79
TotalPayBenefits                    113898.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88225, dtype: object)
(88226, Id                                         88227
EmployeeName                      David  Roberts
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                              4525.65
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                84359.15
TotalPayBenefits                       113895.51
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88226, dtype: object)
(88227, Id                                      88228
EmployeeName                Colleen  Matthews
JobTitle            Psychiatric Social Worker
BasePay                              84325.19
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29568.39
TotalPay                             84325.19
TotalPayBenefits                    113893.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88227, dtype: object)
(88228, Id                             88229
EmployeeName           Benjamin  Dam
JobTitle            Transit Operator
BasePay                     65153.31
OvertimePay                 16853.25
OtherPay                      348.39
Benefits                    31536.44
TotalPay                    82354.95
TotalPayBenefits           113891.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88228, dtype: object)
(88229, Id                                      88230
EmployeeName                 Margot D Ragosta
JobTitle            Psychiatric Social Worker
BasePay                              82907.42
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30978.77
TotalPay                             82907.42
TotalPayBenefits                    113886.19
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88229, dtype: object)
(88230, Id                                88231
EmployeeName           Ramon K Williams
JobTitle            Estate Investigator
BasePay                        82897.98
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30984.54
TotalPay                       82897.98
TotalPayBenefits              113882.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88230, dtype: object)
(88231, Id                                88232
EmployeeName            Lucas S Swanson
JobTitle            Estate Investigator
BasePay                        82897.95
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30984.54
TotalPay                       82897.95
TotalPayBenefits              113882.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88231, dtype: object)
(88232, Id                             88233
EmployeeName          Ernesto  Fortu
JobTitle            Transit Operator
BasePay                     67080.63
OvertimePay                  12111.2
OtherPay                     1818.44
Benefits                    32871.49
TotalPay                    81010.27
TotalPayBenefits           113881.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88232, dtype: object)
(88233, Id                               88234
EmployeeName        Jonathan H Carmack
JobTitle                  Truck Driver
BasePay                        80052.0
OvertimePay                       5.01
OtherPay                        3538.0
Benefits                      30269.43
TotalPay                      83595.01
TotalPayBenefits             113864.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88233, dtype: object)
(88234, Id                            88235
EmployeeName        Alice L Vasilev
JobTitle                  Dietitian
BasePay                    82728.04
OvertimePay                     0.0
OtherPay                      200.0
Benefits                   30932.17
TotalPay                   82928.04
TotalPayBenefits          113860.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88234, dtype: object)
(88235, Id                                           88236
EmployeeName                   Martin JJJ  Harjani
JobTitle            Electrical Transit System Mech
BasePay                                   82678.21
OvertimePay                                    0.0
OtherPay                                     900.0
Benefits                                  30279.26
TotalPay                                  83578.21
TotalPayBenefits                         113857.47
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88235, dtype: object)
(88236, Id                             88237
EmployeeName        Grace L Mattioli
JobTitle                 Librarian 1
BasePay                     81963.18
OvertimePay                      0.0
OtherPay                     1666.85
Benefits                    30212.46
TotalPay                    83630.03
TotalPayBenefits           113842.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88236, dtype: object)
(88237, Id                                           88238
EmployeeName                           Wilson S Lu
JobTitle            Electrical Transit System Mech
BasePay                                    82674.9
OvertimePay                                 228.53
OtherPay                                     710.0
Benefits                                  30228.89
TotalPay                                  83613.43
TotalPayBenefits                         113842.32
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88237, dtype: object)
(88238, Id                             88239
EmployeeName        Raymond  Galarce
JobTitle                     Painter
BasePay                     77948.01
OvertimePay                  6281.87
OtherPay                       378.5
Benefits                    29228.13
TotalPay                    84608.38
TotalPayBenefits           113836.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88238, dtype: object)
(88239, Id                           88240
EmployeeName        Joseph K Barry
JobTitle              Truck Driver
BasePay                    79830.7
OvertimePay                 3098.1
OtherPay                   1177.25
Benefits                  29728.85
TotalPay                  84106.05
TotalPayBenefits          113834.9
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88239, dtype: object)
(88240, Id                                      88241
EmployeeName                    Marta J Perez
JobTitle            Psychiatric Social Worker
BasePay                              81254.02
OvertimePay                               0.0
OtherPay                               1600.0
Benefits                             30966.56
TotalPay                             82854.02
TotalPayBenefits                    113820.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88240, dtype: object)
(88241, Id                                       88242
EmployeeName              Alice M Chatmon-Ruiz
JobTitle            Medical Records Technician
BasePay                               69714.03
OvertimePay                           15826.96
OtherPay                                 648.0
Benefits                              27623.97
TotalPay                              86188.99
TotalPayBenefits                     113812.96
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88241, dtype: object)
(88242, Id                                   88243
EmployeeName                Vencie M Ramos
JobTitle            Patient Care Assistant
BasePay                           66784.12
OvertimePay                        13137.2
OtherPay                           6129.07
Benefits                          27762.45
TotalPay                          86050.39
TotalPayBenefits                 113812.84
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88242, dtype: object)
(88243, Id                                   88244
EmployeeName        Linda P Fong-Elbaggari
JobTitle                         Dietitian
BasePay                           82728.01
OvertimePay                            0.0
OtherPay                             848.0
Benefits                          30230.21
TotalPay                          83576.01
TotalPayBenefits                 113806.22
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88243, dtype: object)
(88244, Id                                 88245
EmployeeName        Mary Ann L Langvardt
JobTitle                       Dietitian
BasePay                         82728.01
OvertimePay                          0.0
OtherPay                           848.0
Benefits                        30230.21
TotalPay                        83576.01
TotalPayBenefits               113806.22
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88244, dtype: object)
(88245, Id                          88246
EmployeeName        Julieta A Lai
JobTitle                Dietitian
BasePay                   82728.0
OvertimePay                   0.0
OtherPay                    848.0
Benefits                 30230.21
TotalPay                  83576.0
TotalPayBenefits        113806.21
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88245, dtype: object)
(88246, Id                                      88247
EmployeeName                       Kevin  Ngu
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           12939.6
OtherPay                              8488.04
Benefits                             28064.92
TotalPay                             85739.84
TotalPayBenefits                    113804.76
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88246, dtype: object)
(88247, Id                           88248
EmployeeName        Thomas J Carey
JobTitle               Librarian 1
BasePay                    82269.2
OvertimePay                    0.0
OtherPay                   1273.25
Benefits                  30261.18
TotalPay                  83542.45
TotalPayBenefits         113803.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88247, dtype: object)
(88248, Id                               88249
EmployeeName            Ivan A Morales
JobTitle            Program Specialist
BasePay                        83530.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30259.06
TotalPay                       83530.5
TotalPayBenefits             113789.56
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88248, dtype: object)
(88249, Id                                         88250
EmployeeName                    Veronica  Davila
JobTitle            Employment & Training Spec 3
BasePay                                 81486.05
OvertimePay                                  0.0
OtherPay                                  2045.0
Benefits                                30257.77
TotalPay                                83531.05
TotalPayBenefits                       113788.82
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88249, dtype: object)
(88250, Id                             88251
EmployeeName             Todd A Bell
JobTitle            Transit Operator
BasePay                     68045.94
OvertimePay                  8967.27
OtherPay                     3112.97
Benefits                    33661.24
TotalPay                    80126.18
TotalPayBenefits           113787.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88250, dtype: object)
(88251, Id                                   88252
EmployeeName                  Victor  Tran
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                             360.0
Benefits                          30266.19
TotalPay                           83520.0
TotalPayBenefits                 113786.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88251, dtype: object)
(88252, Id                             88253
EmployeeName        Rebecca A Alcala
JobTitle                 Librarian 2
BasePay                     80464.28
OvertimePay                      0.0
OtherPay                     2427.06
Benefits                    30893.75
TotalPay                    82891.34
TotalPayBenefits           113785.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88252, dtype: object)
(88253, Id                             88254
EmployeeName         Phillip A Green
JobTitle            Transit Operator
BasePay                     60514.53
OvertimePay                 23437.13
OtherPay                      467.52
Benefits                    29361.09
TotalPay                    84419.18
TotalPayBenefits           113780.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88253, dtype: object)
(88254, Id                                88255
EmployeeName          Michael E Pfeffer
JobTitle            Health Care Analyst
BasePay                        83106.48
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30672.16
TotalPay                       83106.48
TotalPayBenefits              113778.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88254, dtype: object)
(88255, Id                             88256
EmployeeName          Cedric  Geegan
JobTitle            Transit Operator
BasePay                     67209.61
OvertimePay                  9809.05
OtherPay                     3406.08
Benefits                     33344.4
TotalPay                    80424.74
TotalPayBenefits           113769.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88255, dtype: object)
(88256, Id                            88257
EmployeeName         Mark  Radovich
JobTitle            Utility Plumber
BasePay                    80187.23
OvertimePay                 5200.66
OtherPay                     1020.0
Benefits                   27360.12
TotalPay                   86407.89
TotalPayBenefits          113768.01
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88256, dtype: object)
(88257, Id                          88258
EmployeeName        Tami J Suzuki
JobTitle              Librarian 1
BasePay                  82269.06
OvertimePay                   0.0
OtherPay                  1257.97
Benefits                 30238.55
TotalPay                 83527.03
TotalPayBenefits        113765.58
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88257, dtype: object)
(88258, Id                                      88259
EmployeeName                 Sherry A Mahoney
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74439.0
OvertimePay                            2437.8
OtherPay                              7550.24
Benefits                             29330.66
TotalPay                             84427.04
TotalPayBenefits                     113757.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88258, dtype: object)
(88259, Id                             88260
EmployeeName            Robert  Wong
JobTitle            Transit Operator
BasePay                     64082.92
OvertimePay                 13154.46
OtherPay                      4471.0
Benefits                    32035.79
TotalPay                    81708.38
TotalPayBenefits           113744.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88259, dtype: object)
(88260, Id                               88261
EmployeeName            Knar S Palayan
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                     389.82
OtherPay                           0.0
Benefits                      30194.28
TotalPay                      83549.82
TotalPayBenefits              113744.1
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88260, dtype: object)
(88261, Id                             88262
EmployeeName            Hoke L Chang
JobTitle            Transit Operator
BasePay                      67385.9
OvertimePay                  9023.79
OtherPay                     3798.97
Benefits                    33534.37
TotalPay                    80208.66
TotalPayBenefits           113743.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88261, dtype: object)
(88262, Id                             88263
EmployeeName               Kim F Tam
JobTitle            Transit Operator
BasePay                     68757.16
OvertimePay                  6192.42
OtherPay                     3796.85
Benefits                    34993.02
TotalPay                    78746.43
TotalPayBenefits           113739.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88262, dtype: object)
(88263, Id                                          88264
EmployeeName                       Sandra  Urbina
JobTitle            Eligibility Worker Supervisor
BasePay                                  83160.03
OvertimePay                                   0.0
OtherPay                                    320.0
Benefits                                 30257.67
TotalPay                                 83480.03
TotalPayBenefits                         113737.7
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88263, dtype: object)
(88264, Id                             88265
EmployeeName         Phillip W Swain
JobTitle            Transit Operator
BasePay                     68588.85
OvertimePay                  9384.17
OtherPay                     1475.79
Benefits                    34287.48
TotalPay                    79448.81
TotalPayBenefits           113736.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88264, dtype: object)
(88265, Id                               88266
EmployeeName        Rodel Luna  Ocampo
JobTitle               Utility Analyst
BasePay                       83147.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30587.43
TotalPay                      83147.53
TotalPayBenefits             113734.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88265, dtype: object)
(88266, Id                          88267
EmployeeName        John B Nelson
JobTitle              Librarian 1
BasePay                   82269.0
OvertimePay                   0.0
OtherPay                  1227.47
Benefits                 30233.29
TotalPay                 83496.47
TotalPayBenefits        113729.76
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88266, dtype: object)
(88267, Id                            88268
EmployeeName        Emily M Melaugh
JobTitle               Nutritionist
BasePay                    83021.85
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30706.01
TotalPay                   83021.85
TotalPayBenefits          113727.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88267, dtype: object)
(88268, Id                                    88269
EmployeeName                  John R Raulli
JobTitle            Park Section Supervisor
BasePay                             78567.0
OvertimePay                         5648.56
OtherPay                             190.32
Benefits                           29316.28
TotalPay                           84405.88
TotalPayBenefits                  113722.16
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88268, dtype: object)
(88269, Id                                          88270
EmployeeName                     Lynn M Menicucci
JobTitle            Comm Pol Svcs Aide Supervisor
BasePay                                  76332.53
OvertimePay                               1784.65
OtherPay                                  5700.33
Benefits                                 29890.81
TotalPay                                 83817.51
TotalPayBenefits                        113708.32
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88269, dtype: object)
(88270, Id                                     88271
EmployeeName                   Ruby G Harris
JobTitle            Sr. Community Devl Spc 1
BasePay                              84424.0
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29281.03
TotalPay                             84424.0
TotalPayBenefits                   113705.03
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88270, dtype: object)
(88271, Id                               88272
EmployeeName        Cynthia J Anderson
JobTitle              Transit Operator
BasePay                       66646.45
OvertimePay                    8844.83
OtherPay                       4789.88
Benefits                      33421.92
TotalPay                      80281.16
TotalPayBenefits             113703.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88271, dtype: object)
(88272, Id                             88273
EmployeeName           Melody M Hall
JobTitle            Transit Operator
BasePay                     67770.58
OvertimePay                  3561.87
OtherPay                     7589.94
Benefits                    34777.48
TotalPay                    78922.39
TotalPayBenefits           113699.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88272, dtype: object)
(88273, Id                             88274
EmployeeName          Oscar  Canjura
JobTitle            Transit Operator
BasePay                     60518.92
OvertimePay                 19014.77
OtherPay                     3907.85
Benefits                    30250.74
TotalPay                    83441.54
TotalPayBenefits           113692.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88273, dtype: object)
(88274, Id                                88275
EmployeeName              Paul  McCrory
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     3408.34
OtherPay                         1310.5
Benefits                       29686.56
TotalPay                       84002.34
TotalPayBenefits               113688.9
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88274, dtype: object)
(88275, Id                             88276
EmployeeName        Kathryn L Fowler
JobTitle               Nurse Manager
BasePay                      50504.0
OvertimePay                      0.0
OtherPay                    48788.55
Benefits                    14393.52
TotalPay                    99292.55
TotalPayBenefits           113686.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88275, dtype: object)
(88276, Id                                    88277
EmployeeName                     Johnny  He
JobTitle            Parking Control Officer
BasePay                             59203.5
OvertimePay                        25078.65
OtherPay                            3354.92
Benefits                           26047.64
TotalPay                           87637.07
TotalPayBenefits                  113684.71
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88276, dtype: object)
(88277, Id                          88278
EmployeeName         Pouran  Lind
JobTitle              Librarian 1
BasePay                   82269.0
OvertimePay                   0.0
OtherPay                  1175.62
Benefits                 30231.77
TotalPay                 83444.62
TotalPayBenefits        113676.39
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88277, dtype: object)
(88278, Id                             88279
EmployeeName        Kenneth E Nieman
JobTitle            Police Officer 3
BasePay                      46301.7
OvertimePay                  1718.46
OtherPay                    51841.36
Benefits                    13797.11
TotalPay                    99861.52
TotalPayBenefits           113658.63
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88278, dtype: object)
(88279, Id                                      88280
EmployeeName                     Delma  Lopez
JobTitle            Senior Eligibility Worker
BasePay                              75033.05
OvertimePay                           8215.43
OtherPay                               1540.0
Benefits                             28864.63
TotalPay                             84788.48
TotalPayBenefits                    113653.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88279, dtype: object)
(88280, Id                             88281
EmployeeName          Lorena M Corea
JobTitle            Transit Operator
BasePay                     68639.35
OvertimePay                 10795.71
OtherPay                      872.67
Benefits                    33341.73
TotalPay                    80307.73
TotalPayBenefits           113649.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88280, dtype: object)
(88281, Id                                         88282
EmployeeName                   Zekarias  Berhane
JobTitle            General Laborer Supervisor 1
BasePay                                 69328.36
OvertimePay                             12300.92
OtherPay                                 4448.77
Benefits                                27570.36
TotalPay                                86078.05
TotalPayBenefits                       113648.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88281, dtype: object)
(88282, Id                             88283
EmployeeName           Kyle M Thomas
JobTitle            Police Officer 3
BasePay                     77741.03
OvertimePay                  3562.16
OtherPay                     7382.95
Benefits                    24954.94
TotalPay                    88686.14
TotalPayBenefits           113641.08
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88282, dtype: object)
(88283, Id                              88284
EmployeeName        Donald P Dal Broi
JobTitle                    Carpenter
BasePay                      83344.64
OvertimePay                       0.0
OtherPay                       485.37
Benefits                     29810.13
TotalPay                     83830.01
TotalPayBenefits            113640.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88283, dtype: object)
(88284, Id                               88285
EmployeeName        Yohandris  Mederos
JobTitle              Transit Operator
BasePay                       67533.83
OvertimePay                   11787.42
OtherPay                        728.92
Benefits                      33589.32
TotalPay                      80050.17
TotalPayBenefits             113639.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88284, dtype: object)
(88285, Id                           88286
EmployeeName        Ronald  Aquino
JobTitle                   Painter
BasePay                   77948.06
OvertimePay                3807.34
OtherPay                    2280.0
Benefits                  29598.63
TotalPay                   84035.4
TotalPayBenefits         113634.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88285, dtype: object)
(88286, Id                            88287
EmployeeName        Sally  Buchmann
JobTitle                  Dietitian
BasePay                    82603.53
OvertimePay                     0.0
OtherPay                     847.03
Benefits                   30183.11
TotalPay                   83450.56
TotalPayBenefits          113633.67
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88286, dtype: object)
(88287, Id                                     88288
EmployeeName                Charles  Satcher
JobTitle            Counselor, Juvenile Hall
BasePay                             65438.58
OvertimePay                         18554.64
OtherPay                             3493.35
Benefits                            26146.32
TotalPay                            87486.57
TotalPayBenefits                   113632.89
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88287, dtype: object)
(88288, Id                             88289
EmployeeName         Danilo  Celeste
JobTitle            Transit Operator
BasePay                      60578.4
OvertimePay                 18486.67
OtherPay                     4231.65
Benefits                    30334.76
TotalPay                    83296.72
TotalPayBenefits           113631.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88288, dtype: object)
(88289, Id                              88290
EmployeeName        Ricardo  Cuaresma
JobTitle             Transit Operator
BasePay                      63495.44
OvertimePay                   18466.9
OtherPay                       772.63
Benefits                     30895.69
TotalPay                     82734.97
TotalPayBenefits            113630.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88289, dtype: object)
(88290, Id                                  88291
EmployeeName                  Vanessa  Wu
JobTitle            Deputy Court Clerk II
BasePay                          76070.55
OvertimePay                           0.0
OtherPay                          7983.01
Benefits                         29575.33
TotalPay                         84053.56
TotalPayBenefits                113628.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88290, dtype: object)
(88291, Id                                  88292
EmployeeName          Carolyn  Balistreri
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           7983.0
Benefits                         29575.33
TotalPay                         84053.53
TotalPayBenefits                113628.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88291, dtype: object)
(88292, Id                                  88293
EmployeeName              Cynthia  Rayala
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           7983.0
Benefits                         29575.33
TotalPay                         84053.53
TotalPayBenefits                113628.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88292, dtype: object)
(88293, Id                                  88294
EmployeeName         Geraldine W Anderson
JobTitle            Deputy Court Clerk II
BasePay                          76070.52
OvertimePay                           0.0
OtherPay                           7983.0
Benefits                         29575.33
TotalPay                         84053.52
TotalPayBenefits                113628.85
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88293, dtype: object)
(88294, Id                                  88295
EmployeeName                  Tran L Khuu
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           7983.0
Benefits                         29575.33
TotalPay                         84053.51
TotalPayBenefits                113628.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88294, dtype: object)
(88295, Id                                    88296
EmployeeName        Leslie Elizabeth  Gomez
JobTitle              Deputy Court Clerk II
BasePay                             76070.5
OvertimePay                             0.0
OtherPay                             7983.0
Benefits                           29575.33
TotalPay                            84053.5
TotalPayBenefits                  113628.83
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88295, dtype: object)
(88296, Id                          88297
EmployeeName        Osvaldo  Lugo
JobTitle                  Painter
BasePay                  77948.02
OvertimePay                6392.8
OtherPay                    110.5
Benefits                 29172.02
TotalPay                 84451.32
TotalPayBenefits        113623.34
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88296, dtype: object)
(88297, Id                                      88298
EmployeeName                  Azalia M Dorner
JobTitle            Assistant Const Inspector
BasePay                              81686.52
OvertimePay                           1187.62
OtherPay                                  0.0
Benefits                             30746.48
TotalPay                             82874.14
TotalPayBenefits                    113620.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88297, dtype: object)
(88298, Id                                  88299
EmployeeName                Melissa  Dong
JobTitle            Deputy Court Clerk II
BasePay                          76061.58
OvertimePay                           0.0
OtherPay                          7982.94
Benefits                         29571.84
TotalPay                         84044.52
TotalPayBenefits                113616.36
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88298, dtype: object)
(88299, Id                           88300
EmployeeName        Shawn D Loucks
JobTitle               Counselor 2
BasePay                   79800.32
OvertimePay                3215.54
OtherPay                    2029.7
Benefits                  28564.14
TotalPay                  85045.56
TotalPayBenefits          113609.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88299, dtype: object)
(88300, Id                            88301
EmployeeName        Deborah L Brown
JobTitle                Chief Clerk
BasePay                    82728.07
OvertimePay                     0.0
OtherPay                      648.0
Benefits                   30230.24
TotalPay                   83376.07
TotalPayBenefits          113606.31
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88300, dtype: object)
(88301, Id                                 88302
EmployeeName        Rachel A Gosiengfiao
JobTitle                     Chief Clerk
BasePay                         82728.03
OvertimePay                          0.0
OtherPay                          648.01
Benefits                        30230.23
TotalPay                        83376.04
TotalPayBenefits               113606.27
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88301, dtype: object)
(88302, Id                              88303
EmployeeName             Karen A Chin
JobTitle            Legal Secretary 2
BasePay                      82728.03
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.23
TotalPay                     83376.03
TotalPayBenefits            113606.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88302, dtype: object)
(88303, Id                             88304
EmployeeName        Jennifer L Novak
JobTitle                 Chief Clerk
BasePay                     82728.02
OvertimePay                      0.0
OtherPay                       648.0
Benefits                    30230.22
TotalPay                    83376.02
TotalPayBenefits           113606.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88303, dtype: object)
(88304, Id                                   88305
EmployeeName                   Mark R Fenn
JobTitle            Assoc Musm Cnsrvt, AAM
BasePay                            82728.0
OvertimePay                            0.0
OtherPay                             648.0
Benefits                          30230.21
TotalPay                           83376.0
TotalPayBenefits                 113606.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88304, dtype: object)
(88305, Id                              88306
EmployeeName         Cathy A McCarthy
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88305, dtype: object)
(88306, Id                              88307
EmployeeName         Joycelyn G Perez
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88306, dtype: object)
(88307, Id                              88308
EmployeeName             Susan L Chiu
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88307, dtype: object)
(88308, Id                              88309
EmployeeName         Debbie A Crowley
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88308, dtype: object)
(88309, Id                              88310
EmployeeName        Colleen M Garrett
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88309, dtype: object)
(88310, Id                                88311
EmployeeName        Catherine G Pearson
JobTitle              Legal Secretary 2
BasePay                         82728.0
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       30230.21
TotalPay                        83376.0
TotalPayBenefits              113606.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88310, dtype: object)
(88311, Id                              88312
EmployeeName              Diana  Quan
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                        648.0
Benefits                     30230.21
TotalPay                      83376.0
TotalPayBenefits            113606.21
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88311, dtype: object)
(88312, Id                            88313
EmployeeName           Brian  Barry
JobTitle            Junior Engineer
BasePay                    82662.26
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30942.95
TotalPay                   82662.26
TotalPayBenefits          113605.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88312, dtype: object)
(88313, Id                                 88314
EmployeeName              Yao Ming  Peng
JobTitle            Automotive Machinist
BasePay                         80133.02
OvertimePay                      2272.58
OtherPay                          1335.7
Benefits                        29861.05
TotalPay                         83741.3
TotalPayBenefits               113602.35
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88313, dtype: object)
(88314, Id                             88315
EmployeeName        Sean M McClendon
JobTitle            Transit Operator
BasePay                     68603.01
OvertimePay                  6410.95
OtherPay                     4316.46
Benefits                     34255.6
TotalPay                    79330.42
TotalPayBenefits           113586.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88314, dtype: object)
(88315, Id                             88316
EmployeeName            Ancil O Wade
JobTitle            Transit Operator
BasePay                     67731.25
OvertimePay                 11899.61
OtherPay                      1005.3
Benefits                    32948.96
TotalPay                    80636.16
TotalPayBenefits           113585.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88315, dtype: object)
(88316, Id                                           88317
EmployeeName                   Stewart D Armstrong
JobTitle            IT Operations Support Admin II
BasePay                                    70564.0
OvertimePay                               10693.32
OtherPay                                   3872.77
Benefits                                  28446.66
TotalPay                                  85130.09
TotalPayBenefits                         113576.75
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88316, dtype: object)
(88317, Id                              88318
EmployeeName        Nancy A Silverrod
JobTitle                  Librarian 1
BasePay                      81773.16
OvertimePay                       0.0
OtherPay                      1637.91
Benefits                     30160.89
TotalPay                     83411.07
TotalPayBenefits            113571.96
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88317, dtype: object)
(88318, Id                                  88319
EmployeeName            Mario A Sotomayor
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           7923.0
Benefits                          29564.4
TotalPay                         83993.54
TotalPayBenefits                113557.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88318, dtype: object)
(88319, Id                                           88320
EmployeeName                        Cynthia  Grady
JobTitle            IT Operations Support Admn III
BasePay                                   83286.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30270.49
TotalPay                                  83286.03
TotalPayBenefits                         113556.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88319, dtype: object)
(88320, Id                                           88321
EmployeeName                             Lisa  Mak
JobTitle            IT Operations Support Admn III
BasePay                                   83286.03
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30270.49
TotalPay                                  83286.03
TotalPayBenefits                         113556.52
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88320, dtype: object)
(88321, Id                              88322
EmployeeName        Anthony J Caruana
JobTitle                      Painter
BasePay                      77948.05
OvertimePay                   2968.55
OtherPay                       2904.0
Benefits                      29733.0
TotalPay                      83820.6
TotalPayBenefits             113553.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88321, dtype: object)
(88322, Id                                         88323
EmployeeName                        Ruben  Irias
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86211.0
OvertimePay                               209.34
OtherPay                                  174.69
Benefits                                26958.56
TotalPay                                86595.03
TotalPayBenefits                       113553.59
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88322, dtype: object)
(88323, Id                              88324
EmployeeName        Laurence  Gabriel
JobTitle               Police Officer
BasePay                       84412.2
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     29129.22
TotalPay                      84412.2
TotalPayBenefits            113541.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88323, dtype: object)
(88324, Id                            88325
EmployeeName         Esau  Brewster
JobTitle            General Laborer
BasePay                    50881.38
OvertimePay                34012.95
OtherPay                    2168.15
Benefits                    26477.8
TotalPay                   87062.48
TotalPayBenefits          113540.28
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88324, dtype: object)
(88325, Id                             88326
EmployeeName            Ernest A Egu
JobTitle            Transit Operator
BasePay                     69106.02
OvertimePay                   4792.3
OtherPay                     4941.81
Benefits                    34690.46
TotalPay                    78840.13
TotalPayBenefits           113530.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88325, dtype: object)
(88326, Id                                     88327
EmployeeName               Heather A Pulford
JobTitle            Fingerprint Technician 3
BasePay                             70389.06
OvertimePay                         10004.05
OtherPay                             3892.87
Benefits                             29237.9
TotalPay                            84285.98
TotalPayBenefits                   113523.88
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88326, dtype: object)
(88327, Id                                           88328
EmployeeName                       Malik M Imtiyaz
JobTitle            IT Operations Support Admin II
BasePay                                   70564.01
OvertimePay                                8100.78
OtherPay                                   5986.83
Benefits                                  28859.95
TotalPay                                  84651.62
TotalPayBenefits                         113511.57
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88327, dtype: object)
(88328, Id                            88329
EmployeeName         Chanda J Ikeda
JobTitle            Mayoral Staff X
BasePay                    75748.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   37759.61
TotalPay                   75748.53
TotalPayBenefits          113508.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88328, dtype: object)
(88329, Id                          88330
EmployeeName         Dorcas  Wong
JobTitle              Librarian 1
BasePay                   82269.0
OvertimePay                   0.0
OtherPay                  1033.45
Benefits                 30204.88
TotalPay                 83302.45
TotalPayBenefits        113507.33
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88329, dtype: object)
(88330, Id                                        88331
EmployeeName                   Serafin  Verdugo
JobTitle            Station Agent, Muni Railway
BasePay                                80667.44
OvertimePay                             2283.97
OtherPay                                  695.0
Benefits                               29860.68
TotalPay                               83646.41
TotalPayBenefits                      113507.09
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88330, dtype: object)
(88331, Id                              88332
EmployeeName        Sharonda L Payton
JobTitle             Transit Operator
BasePay                      67505.45
OvertimePay                  11274.54
OtherPay                      1065.63
Benefits                     33656.47
TotalPay                     79845.62
TotalPayBenefits            113502.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88331, dtype: object)
(88332, Id                               88333
EmployeeName         Danica A Martinez
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                         120.0
Benefits                      30215.06
TotalPay                       83280.0
TotalPayBenefits             113495.06
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88332, dtype: object)
(88333, Id                          88334
EmployeeName         Sally J Wong
JobTitle              Librarian 1
BasePay                   82269.0
OvertimePay                   0.0
OtherPay                  1021.29
Benefits                 30202.65
TotalPay                 83290.29
TotalPayBenefits        113492.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88333, dtype: object)
(88334, Id                                           88335
EmployeeName                      William R Kettle
JobTitle            Senior Parking Control Officer
BasePay                                   70701.51
OvertimePay                                12862.8
OtherPay                                   1860.36
Benefits                                  28064.91
TotalPay                                  85424.67
TotalPayBenefits                         113489.58
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88334, dtype: object)
(88335, Id                              88336
EmployeeName        Mario R Gutierrez
JobTitle             Transit Operator
BasePay                      66281.69
OvertimePay                  15801.59
OtherPay                       474.02
Benefits                     30926.99
TotalPay                      82557.3
TotalPayBenefits            113484.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88335, dtype: object)
(88336, Id                                      88337
EmployeeName                 Priscilla S Lenh
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           8044.69
OtherPay                               1540.0
Benefits                             28864.01
TotalPay                              84617.7
TotalPayBenefits                    113481.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88336, dtype: object)
(88337, Id                              88338
EmployeeName        Ronald O De Arman
JobTitle             Transit Operator
BasePay                      67740.44
OvertimePay                   7426.47
OtherPay                      4433.49
Benefits                     33877.71
TotalPay                      79600.4
TotalPayBenefits            113478.11
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88337, dtype: object)
(88338, Id                               88339
EmployeeName         Joyce Y Hutchings
JobTitle            Transit Supervisor
BasePay                       91633.59
OvertimePay                    1190.74
OtherPay                        679.79
Benefits                      19970.37
TotalPay                      93504.12
TotalPayBenefits             113474.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88338, dtype: object)
(88339, Id                           88340
EmployeeName        Janice  Torbet
JobTitle               Librarian 1
BasePay                   82269.02
OvertimePay                    0.0
OtherPay                   1007.57
Benefits                  30196.89
TotalPay                  83276.59
TotalPayBenefits         113473.48
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88339, dtype: object)
(88340, Id                             88341
EmployeeName                 Xu  Gao
JobTitle            Transit Operator
BasePay                     69356.71
OvertimePay                  5686.02
OtherPay                     3910.64
Benefits                    34514.97
TotalPay                    78953.37
TotalPayBenefits           113468.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88340, dtype: object)
(88341, Id                                          88342
EmployeeName                        Avelino A Lee
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                 115.5
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                  83275.5
TotalPayBenefits                        113464.99
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88341, dtype: object)
(88342, Id                                   88343
EmployeeName             Rosallie G Gumpal
JobTitle            Deputy Court Clerk III
BasePay                           79740.53
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          30215.59
TotalPay                          83240.53
TotalPayBenefits                 113456.12
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88342, dtype: object)
(88343, Id                                 88344
EmployeeName        Richard P Lacampagne
JobTitle                    Truck Driver
BasePay                         80052.02
OvertimePay                      1416.58
OtherPay                          2012.5
Benefits                        29972.99
TotalPay                         83481.1
TotalPayBenefits               113454.09
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88343, dtype: object)
(88344, Id                            88345
EmployeeName        Michael A Short
JobTitle               Truck Driver
BasePay                     80049.0
OvertimePay                     0.0
OtherPay                    3414.55
Benefits                   29987.92
TotalPay                   83463.55
TotalPayBenefits          113451.47
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88344, dtype: object)
(88345, Id                                      88346
EmployeeName                   James C Sapaen
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          20419.94
OtherPay                              5121.17
Benefits                             26781.07
TotalPay                             86669.11
TotalPayBenefits                    113450.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88345, dtype: object)
(88346, Id                                  88347
EmployeeName            Richard D Sherman
JobTitle            Maintenance Machinist
BasePay                          82681.54
OvertimePay                           0.0
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         83231.54
TotalPayBenefits                113449.19
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88346, dtype: object)
(88347, Id                                  88348
EmployeeName              Michael T Perry
JobTitle            Maintenance Machinist
BasePay                          82681.52
OvertimePay                           0.0
OtherPay                            550.0
Benefits                         30217.65
TotalPay                         83231.52
TotalPayBenefits                113449.17
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88347, dtype: object)
(88348, Id                                      88349
EmployeeName          Michelle Louise S Sarte
JobTitle            Licensed Vocational Nurse
BasePay                               65257.2
OvertimePay                          14814.33
OtherPay                              4976.96
Benefits                             28396.65
TotalPay                             85048.49
TotalPayBenefits                    113445.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88348, dtype: object)
(88349, Id                             88350
EmployeeName          Dennis  Strong
JobTitle            Transit Operator
BasePay                     68578.25
OvertimePay                 10987.27
OtherPay                      601.97
Benefits                    33270.51
TotalPay                    80167.49
TotalPayBenefits            113438.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88349, dtype: object)
(88350, Id                             88351
EmployeeName               Tony C Yu
JobTitle            Transit Operator
BasePay                     67989.88
OvertimePay                 10154.74
OtherPay                     1951.07
Benefits                    33333.25
TotalPay                    80095.69
TotalPayBenefits           113428.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88350, dtype: object)
(88351, Id                                           88352
EmployeeName                         Curtis  Smith
JobTitle            Senior Parking Control Officer
BasePay                                    70701.5
OvertimePay                               14162.07
OtherPay                                    722.69
Benefits                                  27841.78
TotalPay                                  85586.26
TotalPayBenefits                         113428.04
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88351, dtype: object)
(88352, Id                                   88353
EmployeeName                  Merle L Ryan
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                              60.0
Benefits                          30201.48
TotalPay                           83220.0
TotalPayBenefits                 113421.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88352, dtype: object)
(88353, Id                             88354
EmployeeName          Matthew K Hong
JobTitle            Transit Operator
BasePay                     69073.29
OvertimePay                  5570.42
OtherPay                     4299.51
Benefits                    34475.27
TotalPay                    78943.22
TotalPayBenefits           113418.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88353, dtype: object)
(88354, Id                            88355
EmployeeName        Robert P Bowman
JobTitle               Truck Driver
BasePay                     80052.0
OvertimePay                 1168.45
OtherPay                    2193.75
Benefits                   30002.96
TotalPay                    83414.2
TotalPayBenefits          113417.16
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88354, dtype: object)
(88355, Id                             88356
EmployeeName           Guo Kun  Fang
JobTitle            Transit Operator
BasePay                     67081.51
OvertimePay                 13464.07
OtherPay                      403.41
Benefits                    32464.91
TotalPay                    80948.99
TotalPayBenefits            113413.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88355, dtype: object)
(88356, Id                               88357
EmployeeName            Amie Z Zapanta
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                      57.75
OtherPay                           0.0
Benefits                      30184.71
TotalPay                      83217.75
TotalPayBenefits             113402.46
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88356, dtype: object)
(88357, Id                                     88358
EmployeeName           Stephanie Rene  Brown
JobTitle            Sr. Community Devl Spc 1
BasePay                             82491.02
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30909.83
TotalPay                            82491.02
TotalPayBenefits                   113400.85
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88357, dtype: object)
(88358, Id                                     88359
EmployeeName           James Michael  Hewitt
JobTitle            Sr. Community Devl Spc 1
BasePay                             82491.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30909.83
TotalPay                            82491.01
TotalPayBenefits                   113400.84
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88358, dtype: object)
(88359, Id                              88360
EmployeeName        Margaret  Lindsey
JobTitle             Registered Nurse
BasePay                      78604.16
OvertimePay                   9881.27
OtherPay                      6247.55
Benefits                     18665.48
TotalPay                     94732.98
TotalPayBenefits            113398.46
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88359, dtype: object)
(88360, Id                                  88361
EmployeeName           Peter G Lauterborn
JobTitle            Legislative Assistant
BasePay                           82471.8
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30917.62
TotalPay                          82471.8
TotalPayBenefits                113389.42
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88360, dtype: object)
(88361, Id                             88362
EmployeeName        Yohannes  Bemnet
JobTitle            Transit Operator
BasePay                     66241.98
OvertimePay                 13929.81
OtherPay                      985.41
Benefits                    32227.94
TotalPay                     81157.2
TotalPayBenefits           113385.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88361, dtype: object)
(88362, Id                               88363
EmployeeName        Mitchell D Yangson
JobTitle                   Librarian 1
BasePay                       82269.03
OvertimePay                        0.0
OtherPay                        932.88
Benefits                      30182.76
TotalPay                      83201.91
TotalPayBenefits             113384.67
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88362, dtype: object)
(88363, Id                                           88364
EmployeeName                        Stephen K Fong
JobTitle            AprntcStatnry Eng,WtrTreatPlnt
BasePay                                    75029.1
OvertimePay                                3094.61
OtherPay                                   5561.93
Benefits                                  29698.52
TotalPay                                  83685.64
TotalPayBenefits                         113384.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88363, dtype: object)
(88364, Id                                   88365
EmployeeName               Matthew R Galli
JobTitle            Airport Safety Officer
BasePay                            71565.6
OvertimePay                        6578.21
OtherPay                           5481.65
Benefits                          29758.31
TotalPay                          83625.46
TotalPayBenefits                 113383.77
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88364, dtype: object)
(88365, Id                                      88366
EmployeeName                      Vera  Vasey
JobTitle            Psychiatric Social Worker
BasePay                              82562.59
OvertimePay                               0.0
OtherPay                              1603.84
Benefits                             29211.54
TotalPay                             84166.43
TotalPayBenefits                    113377.97
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88365, dtype: object)
(88366, Id                                         88367
EmployeeName                       Derek R Smith
JobTitle            Health Program Coordinator 2
BasePay                                 87858.43
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                25516.28
TotalPay                                87858.43
TotalPayBenefits                       113374.71
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88366, dtype: object)
(88367, Id                                          88368
EmployeeName                    Lucila C Borromeo
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                     20.0
Benefits                                 30193.75
TotalPay                                  83180.0
TotalPayBenefits                        113373.75
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88367, dtype: object)
(88368, Id                                   88369
EmployeeName              Cynthia J Karadi
JobTitle            Deputy Court Clerk III
BasePay                           80746.57
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          29117.74
TotalPay                          84246.57
TotalPayBenefits                 113364.31
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88368, dtype: object)
(88369, Id                             88370
EmployeeName            Amy S Lilley
JobTitle            Training Officer
BasePay                     83975.83
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29386.66
TotalPay                    83975.83
TotalPayBenefits           113362.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88369, dtype: object)
(88370, Id                             88371
EmployeeName           Ronnie  Jones
JobTitle            Transit Operator
BasePay                     69292.02
OvertimePay                  5314.14
OtherPay                     4179.65
Benefits                    34576.16
TotalPay                    78785.81
TotalPayBenefits           113361.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88370, dtype: object)
(88371, Id                                    88372
EmployeeName        Luis E Mendivil-Nevarez
JobTitle                   Transit Operator
BasePay                            68089.68
OvertimePay                          8734.5
OtherPay                            2283.03
Benefits                           34247.54
TotalPay                           79107.21
TotalPayBenefits                  113354.75
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88371, dtype: object)
(88372, Id                                          88373
EmployeeName                         Vonica C Yee
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30194.28
TotalPay                                  83160.0
TotalPayBenefits                        113354.28
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88372, dtype: object)
(88373, Id                                   88374
EmployeeName            Mary Ann  Cerasoli
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30194.28
TotalPay                           83160.0
TotalPayBenefits                 113354.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88373, dtype: object)
(88374, Id                               88375
EmployeeName              Mari P Solis
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30194.28
TotalPay                       83160.0
TotalPayBenefits             113354.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88374, dtype: object)
(88375, Id                               88376
EmployeeName               Eric S Chow
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30194.28
TotalPay                       83160.0
TotalPayBenefits             113354.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88375, dtype: object)
(88376, Id                               88377
EmployeeName            Mohamed S Bham
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30194.28
TotalPay                       83160.0
TotalPayBenefits             113354.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88376, dtype: object)
(88377, Id                                  88378
EmployeeName        Darice D Murray-Mckay
JobTitle                      Librarian 1
BasePay                          81232.66
OvertimePay                           0.0
OtherPay                          2070.92
Benefits                         30046.66
TotalPay                         83303.58
TotalPayBenefits                113350.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88377, dtype: object)
(88378, Id                               88379
EmployeeName               Robert T Ho
JobTitle            Program Specialist
BasePay                       83160.04
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                      83160.04
TotalPayBenefits             113349.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88378, dtype: object)
(88379, Id                               88380
EmployeeName         Joseph B Tanizawa
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88379, dtype: object)
(88380, Id                                          88381
EmployeeName                    Fidela D Bulaclac
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                  83160.0
TotalPayBenefits                        113349.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88380, dtype: object)
(88381, Id                               88382
EmployeeName             Ashraf M Mann
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88381, dtype: object)
(88382, Id                               88383
EmployeeName              Vivian  Hyun
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88382, dtype: object)
(88383, Id                                   88384
EmployeeName           Gregory I Solomonow
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30189.49
TotalPay                           83160.0
TotalPayBenefits                 113349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88383, dtype: object)
(88384, Id                                   88385
EmployeeName               Latarsha  Green
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30189.49
TotalPay                           83160.0
TotalPayBenefits                 113349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88384, dtype: object)
(88385, Id                                          88386
EmployeeName                    Angelica E Varela
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                  83160.0
TotalPayBenefits                        113349.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88385, dtype: object)
(88386, Id                               88387
EmployeeName         Bennette L Hooker
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88386, dtype: object)
(88387, Id                               88388
EmployeeName                Du L  Mack
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88387, dtype: object)
(88388, Id                                   88389
EmployeeName             Gabriel  Castillo
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30189.49
TotalPay                           83160.0
TotalPayBenefits                 113349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88388, dtype: object)
(88389, Id                               88390
EmployeeName             Elaine Y Wong
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88389, dtype: object)
(88390, Id                               88391
EmployeeName           Albert K Hsiung
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30189.49
TotalPay                       83160.0
TotalPayBenefits             113349.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88390, dtype: object)
(88391, Id                                   88392
EmployeeName              Damon J Martinez
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30189.49
TotalPay                           83160.0
TotalPayBenefits                 113349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88391, dtype: object)
(88392, Id                                          88393
EmployeeName                       Aurora M Boado
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                  83160.0
TotalPayBenefits                        113349.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88392, dtype: object)
(88393, Id                                   88394
EmployeeName               Nina  Nikolaeva
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30189.49
TotalPay                           83160.0
TotalPayBenefits                 113349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88393, dtype: object)
(88394, Id                                          88395
EmployeeName                        Kelly J Smith
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30189.49
TotalPay                                  83160.0
TotalPayBenefits                        113349.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88394, dtype: object)
(88395, Id                               88396
EmployeeName             Jarmee  Thieu
JobTitle            Program Specialist
BasePay                       83160.05
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30184.71
TotalPay                      83160.05
TotalPayBenefits             113344.76
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88395, dtype: object)
(88396, Id                               88397
EmployeeName            Joan L Almeida
JobTitle            Program Specialist
BasePay                        83160.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30184.71
TotalPay                       83160.0
TotalPayBenefits             113344.71
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88396, dtype: object)
(88397, Id                                          88398
EmployeeName                           Htin K Soe
JobTitle            Eligibility Worker Supervisor
BasePay                                   83160.0
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30184.71
TotalPay                                  83160.0
TotalPayBenefits                        113344.71
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88397, dtype: object)
(88398, Id                                   88399
EmployeeName                   Lisa  Hines
JobTitle            Social Work Specialist
BasePay                            83160.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           30184.7
TotalPay                           83160.0
TotalPayBenefits                  113344.7
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88398, dtype: object)
(88399, Id                           88400
EmployeeName         Kevin J Brady
JobTitle            Police Officer
BasePay                   92259.08
OvertimePay                6147.91
OtherPay                   2046.18
Benefits                  12889.71
TotalPay                 100453.17
TotalPayBenefits         113342.88
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88399, dtype: object)
(88400, Id                                        88401
EmployeeName                      Albert  Glenn
JobTitle            Station Agent, Muni Railway
BasePay                                 80379.0
OvertimePay                              2147.9
OtherPay                                1013.25
Benefits                               29801.56
TotalPay                               83540.15
TotalPayBenefits                      113341.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88400, dtype: object)
(88401, Id                                  88402
EmployeeName         Sophia M Simpliciano
JobTitle            Executive Secretary 3
BasePay                          83081.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30248.71
TotalPay                         83081.54
TotalPayBenefits                113330.25
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88401, dtype: object)
(88402, Id                               88403
EmployeeName          Raymond N Manion
JobTitle            Environmental Spec
BasePay                       83448.07
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      29881.78
TotalPay                      83448.07
TotalPayBenefits             113329.85
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88402, dtype: object)
(88403, Id                              88404
EmployeeName        Andre  Richardson
JobTitle             Transit Operator
BasePay                      55956.92
OvertimePay                  23980.88
OtherPay                      4861.98
Benefits                     28522.64
TotalPay                     84799.78
TotalPayBenefits            113322.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88403, dtype: object)
(88404, Id                                  88405
EmployeeName        Lucas A Metcalf Tobin
JobTitle            Recreation Supervisor
BasePay                           80826.0
OvertimePay                           0.0
OtherPay                          2313.56
Benefits                         30182.37
TotalPay                         83139.56
TotalPayBenefits                113321.93
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88404, dtype: object)
(88405, Id                                   88406
EmployeeName             Brenda R Abarquez
JobTitle            Patient Care Assistant
BasePay                           68391.01
OvertimePay                       17462.18
OtherPay                             250.0
Benefits                          27216.08
TotalPay                          86103.19
TotalPayBenefits                 113319.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88405, dtype: object)
(88406, Id                                   88407
EmployeeName             Angela P Teodosio
JobTitle            Patient Care Assistant
BasePay                           68375.16
OvertimePay                       17484.03
OtherPay                             250.0
Benefits                          27210.07
TotalPay                          86109.19
TotalPayBenefits                 113319.26
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88406, dtype: object)
(88407, Id                                      88408
EmployeeName                  Carlos B Imbong
JobTitle            Automotive Service Worker
BasePay                               64314.6
OvertimePay                          11215.41
OtherPay                              9507.33
Benefits                             28279.11
TotalPay                             85037.34
TotalPayBenefits                    113316.45
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88407, dtype: object)
(88408, Id                             88409
EmployeeName               Frank  Ho
JobTitle            Transit Operator
BasePay                     66243.77
OvertimePay                 12600.09
OtherPay                     1952.22
Benefits                    32514.16
TotalPay                    80796.08
TotalPayBenefits           113310.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88408, dtype: object)
(88409, Id                                  88410
EmployeeName                 Connie M Lau
JobTitle            Deputy Court Clerk II
BasePay                          76070.56
OvertimePay                           0.0
OtherPay                          7458.28
Benefits                         29779.52
TotalPay                         83528.84
TotalPayBenefits                113308.36
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88409, dtype: object)
(88410, Id                             88411
EmployeeName         James  Robinson
JobTitle            Transit Operator
BasePay                     68080.76
OvertimePay                  6235.13
OtherPay                     4829.18
Benefits                    34158.17
TotalPay                    79145.07
TotalPayBenefits           113303.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88410, dtype: object)
(88411, Id                                   88412
EmployeeName               Cynthia A Oneto
JobTitle            Social Work Specialist
BasePay                            83121.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30180.99
TotalPay                           83121.5
TotalPayBenefits                 113302.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88411, dtype: object)
(88412, Id                                          88413
EmployeeName                     Josefina G Gumba
JobTitle            Eligibility Worker Supervisor
BasePay                                  83125.74
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30176.61
TotalPay                                 83125.74
TotalPayBenefits                        113302.35
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88412, dtype: object)
(88413, Id                                      88414
EmployeeName              Ligaya S De La Cruz
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                          10397.89
OtherPay                                898.0
Benefits                             28402.69
TotalPay                             84897.89
TotalPayBenefits                    113300.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88413, dtype: object)
(88414, Id                           88415
EmployeeName        Paul L Murtagh
JobTitle                 Carpenter
BasePay                   80559.36
OvertimePay                2945.05
OtherPay                       0.0
Benefits                  29795.92
TotalPay                  83504.41
TotalPayBenefits         113300.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88414, dtype: object)
(88415, Id                                         88416
EmployeeName                    Kevin E Sullivan
JobTitle            Physical Therapist Assistant
BasePay                                 83612.54
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29686.0
TotalPay                                83612.54
TotalPayBenefits                       113298.54
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88415, dtype: object)
(88416, Id                                   88417
EmployeeName            Christine E Butler
JobTitle            Public SafetyComm Disp
BasePay                           72688.21
OvertimePay                        4549.23
OtherPay                           8402.26
Benefits                          27656.26
TotalPay                           85639.7
TotalPayBenefits                 113295.96
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88416, dtype: object)
(88417, Id                                          88418
EmployeeName              Christopher L Trenschel
JobTitle            Senior Administrative Analyst
BasePay                                  77486.54
OvertimePay                                   0.0
OtherPay                                 10097.44
Benefits                                 25709.02
TotalPay                                 87583.98
TotalPayBenefits                         113293.0
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88417, dtype: object)
(88418, Id                                       88419
EmployeeName                   Richard  Kurylo
JobTitle            Community Development Spec
BasePay                               83138.99
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30153.63
TotalPay                              83138.99
TotalPayBenefits                     113292.62
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88418, dtype: object)
(88419, Id                                 88420
EmployeeName            Chris D Anderson
JobTitle            Shelter Veterinarian
BasePay                         85058.27
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        28220.49
TotalPay                        85058.27
TotalPayBenefits               113278.76
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88419, dtype: object)
(88420, Id                                   88421
EmployeeName                Stella L Yeung
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       14904.45
OtherPay                            2350.0
Benefits                          27631.87
TotalPay                          85645.45
TotalPayBenefits                 113277.32
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88420, dtype: object)
(88421, Id                             88422
EmployeeName            Lela R Russo
JobTitle            Registered Nurse
BasePay                     77426.24
OvertimePay                  1585.95
OtherPay                     8442.69
Benefits                    25815.94
TotalPay                    87454.88
TotalPayBenefits           113270.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88421, dtype: object)
(88422, Id                             88423
EmployeeName           Arnold E Gray
JobTitle            Transit Operator
BasePay                     68054.18
OvertimePay                 11090.31
OtherPay                      396.08
Benefits                    33724.68
TotalPay                    79540.57
TotalPayBenefits           113265.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88422, dtype: object)
(88423, Id                             88424
EmployeeName          Ralph E Gaines
JobTitle            Transit Operator
BasePay                     67994.91
OvertimePay                  9966.22
OtherPay                     1357.04
Benefits                     33936.5
TotalPay                    79318.17
TotalPayBenefits           113254.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88423, dtype: object)
(88424, Id                             88425
EmployeeName           Ollie L Wolfe
JobTitle            Transit Operator
BasePay                     68633.11
OvertimePay                   6291.5
OtherPay                     4115.59
Benefits                    34212.86
TotalPay                     79040.2
TotalPayBenefits           113253.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88424, dtype: object)
(88425, Id                                      88426
EmployeeName                     Dennis B Lim
JobTitle            Licensed Vocational Nurse
BasePay                              73602.02
OvertimePay                           4427.83
OtherPay                              5856.92
Benefits                             29362.03
TotalPay                             83886.77
TotalPayBenefits                     113248.8
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88425, dtype: object)
(88426, Id                                   88427
EmployeeName                 Amelia M Cruz
JobTitle            Psychiatric Technician
BasePay                           73881.89
OvertimePay                        2739.75
OtherPay                           6941.22
Benefits                          29678.62
TotalPay                          83562.86
TotalPayBenefits                 113241.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88426, dtype: object)
(88427, Id                                 88428
EmployeeName        Linda F Wilson-Allen
JobTitle                Transit Operator
BasePay                         63247.18
OvertimePay                     16591.85
OtherPay                         2298.99
Benefits                        31099.63
TotalPay                        82138.02
TotalPayBenefits               113237.65
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88427, dtype: object)
(88428, Id                             88429
EmployeeName        Gerald L Coleman
JobTitle            Transit Operator
BasePay                     68579.86
OvertimePay                  6433.99
OtherPay                     3990.27
Benefits                     34233.3
TotalPay                    79004.12
TotalPayBenefits           113237.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88428, dtype: object)
(88429, Id                             88430
EmployeeName          Alonzo  Harden
JobTitle            Transit Operator
BasePay                     68617.47
OvertimePay                  6746.22
OtherPay                      3119.0
Benefits                    34749.49
TotalPay                    78482.69
TotalPayBenefits           113232.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88429, dtype: object)
(88430, Id                                        88431
EmployeeName                      Jerrica T Hau
JobTitle            Senior Management Assistant
BasePay                                83031.01
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30188.94
TotalPay                               83031.01
TotalPayBenefits                      113219.95
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88430, dtype: object)
(88431, Id                                      88432
EmployeeName                  Petra G Johnson
JobTitle            EMT/Paramedic/Firefighter
BasePay                              72702.98
OvertimePay                           8193.63
OtherPay                              9773.79
Benefits                             22548.08
TotalPay                              90670.4
TotalPayBenefits                    113218.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88431, dtype: object)
(88432, Id                             88433
EmployeeName            Rudy H Tirta
JobTitle            Transit Operator
BasePay                      66604.8
OvertimePay                 12264.55
OtherPay                     1743.22
Benefits                    32603.12
TotalPay                    80612.57
TotalPayBenefits           113215.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88432, dtype: object)
(88433, Id                              88434
EmployeeName        Karen M Passanisi
JobTitle            Legal Secretary 2
BasePay                      82433.53
OvertimePay                       0.0
OtherPay                        645.7
Benefits                     30128.03
TotalPay                     83079.23
TotalPayBenefits            113207.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88433, dtype: object)
(88434, Id                                         88435
EmployeeName                         Sue K Kyaun
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.05
OvertimePay                             10194.72
OtherPay                                   648.0
Benefits                                28462.26
TotalPay                                84741.77
TotalPayBenefits                       113204.03
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88434, dtype: object)
(88435, Id                                   88436
EmployeeName           Christian W Murdock
JobTitle            Administrative Analyst
BasePay                           82335.02
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30868.27
TotalPay                          82335.02
TotalPayBenefits                 113203.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88435, dtype: object)
(88436, Id                                88437
EmployeeName            Bereket T Segid
JobTitle            Survey Assistant II
BasePay                         82899.5
OvertimePay                         0.0
OtherPay                         118.36
Benefits                       30182.19
TotalPay                       83017.86
TotalPayBenefits              113200.05
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88436, dtype: object)
(88437, Id                                          88438
EmployeeName                         Menh H Voong
JobTitle            Snr Permit and Citation Clerk
BasePay                                  73412.99
OvertimePay                              10489.37
OtherPay                                    880.0
Benefits                                 28410.09
TotalPay                                 84782.36
TotalPayBenefits                        113192.45
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88437, dtype: object)
(88438, Id                                      88439
EmployeeName                 Phillip A Romero
JobTitle            EMT/Paramedic/Firefighter
BasePay                              70674.94
OvertimePay                           7154.87
OtherPay                              7327.63
Benefits                             28024.09
TotalPay                             85157.44
TotalPayBenefits                    113181.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88438, dtype: object)
(88439, Id                                      88440
EmployeeName                       Linda H Wu
JobTitle            Psychiatric Social Worker
BasePay                              82419.26
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30760.47
TotalPay                             82419.26
TotalPayBenefits                    113179.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88439, dtype: object)
(88440, Id                          88441
EmployeeName        Martin T Gold
JobTitle                   Welder
BasePay                   73080.8
OvertimePay                4938.8
OtherPay                  7308.07
Benefits                 27844.89
TotalPay                 85327.67
TotalPayBenefits        113172.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88440, dtype: object)
(88441, Id                            88442
EmployeeName            Allen J Lee
JobTitle            General Laborer
BasePay                     62468.5
OvertimePay                22549.71
OtherPay                     1752.3
Benefits                   26398.93
TotalPay                   86770.51
TotalPayBenefits          113169.44
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88441, dtype: object)
(88442, Id                                  88443
EmployeeName             John S Dal Porto
JobTitle            Fire Alarm Dispatcher
BasePay                          68392.05
OvertimePay                       11678.1
OtherPay                          5008.77
Benefits                         28090.12
TotalPay                         85078.92
TotalPayBenefits                113169.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88442, dtype: object)
(88443, Id                             88444
EmployeeName                 Kam  Li
JobTitle            Transit Operator
BasePay                     67100.44
OvertimePay                  9465.96
OtherPay                      3319.7
Benefits                    33279.55
TotalPay                     79886.1
TotalPayBenefits           113165.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88443, dtype: object)
(88444, Id                                88445
EmployeeName        Christina L Moretta
JobTitle                    Librarian 1
BasePay                        82269.05
OvertimePay                         0.0
OtherPay                         741.13
Benefits                       30146.58
TotalPay                       83010.18
TotalPayBenefits              113156.76
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88444, dtype: object)
(88445, Id                             88446
EmployeeName           Wei Ming  Lei
JobTitle            Transit Operator
BasePay                     67881.58
OvertimePay                 11151.09
OtherPay                      464.16
Benefits                    33657.18
TotalPay                    79496.83
TotalPayBenefits           113154.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88445, dtype: object)
(88446, Id                          88447
EmployeeName        James T Jeske
JobTitle              Librarian 1
BasePay                  82269.01
OvertimePay                   0.0
OtherPay                   734.72
Benefits                 30146.39
TotalPay                 83003.73
TotalPayBenefits        113150.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88446, dtype: object)
(88447, Id                             88448
EmployeeName        Theresa A Looney
JobTitle                Truck Driver
BasePay                     80052.03
OvertimePay                  1001.59
OtherPay                      2095.0
Benefits                    29986.08
TotalPay                    83148.62
TotalPayBenefits            113134.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88447, dtype: object)
(88448, Id                           88449
EmployeeName        Wendy S Kramer
JobTitle               Librarian 1
BasePay                   82269.16
OvertimePay                    0.0
OtherPay                     719.8
Benefits                  30142.72
TotalPay                  82988.96
TotalPayBenefits         113131.68
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88448, dtype: object)
(88449, Id                               88450
EmployeeName        Jessie A Beronilla
JobTitle              Transit Operator
BasePay                       67442.57
OvertimePay                     7766.0
OtherPay                       4243.27
Benefits                      33675.65
TotalPay                      79451.84
TotalPayBenefits             113127.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88449, dtype: object)
(88450, Id                                88451
EmployeeName               Elroy  Moore
JobTitle            Stationary Engineer
BasePay                        72920.78
OvertimePay                     1998.06
OtherPay                        9903.34
Benefits                       28305.02
TotalPay                       84822.18
TotalPayBenefits               113127.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88450, dtype: object)
(88451, Id                                88452
EmployeeName             Yin Myo  Kaung
JobTitle            Survey Assistant II
BasePay                        82899.51
OvertimePay                         0.0
OtherPay                          56.54
Benefits                       30170.93
TotalPay                       82956.05
TotalPayBenefits              113126.98
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88451, dtype: object)
(88452, Id                                           88453
EmployeeName                         Monica T Wong
JobTitle            Deputy Probation Officer SFERS
BasePay                                   83331.63
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29788.99
TotalPay                                  83331.63
TotalPayBenefits                         113120.62
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88452, dtype: object)
(88453, Id                             88454
EmployeeName                Andy  Ng
JobTitle            Transit Operator
BasePay                     67215.29
OvertimePay                 11377.85
OtherPay                     1650.86
Benefits                    32874.71
TotalPay                     80244.0
TotalPayBenefits           113118.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88453, dtype: object)
(88454, Id                            88455
EmployeeName        Charlie M Ruaro
JobTitle                    Painter
BasePay                    77948.02
OvertimePay                 3406.99
OtherPay                     2176.0
Benefits                   29578.13
TotalPay                   83531.01
TotalPayBenefits          113109.14
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88454, dtype: object)
(88455, Id                                      88456
EmployeeName                      Harry H Lam
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                           25416.1
OtherPay                                648.0
Benefits                             25904.49
TotalPay                              87192.1
TotalPayBenefits                    113096.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88455, dtype: object)
(88456, Id                             88457
EmployeeName         Bruce A Edwards
JobTitle            Transit Operator
BasePay                     68730.26
OvertimePay                  7037.42
OtherPay                     3284.54
Benefits                    34040.76
TotalPay                    79052.22
TotalPayBenefits           113092.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88456, dtype: object)
(88457, Id                          88458
EmployeeName        Sylvia N Thai
JobTitle              Chief Clerk
BasePay                   82728.0
OvertimePay                   0.0
OtherPay                    216.0
Benefits                 30148.93
TotalPay                  82944.0
TotalPayBenefits        113092.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88457, dtype: object)
(88458, Id                                          88459
EmployeeName                     Trina A Harrison
JobTitle            Eligibility Worker Supervisor
BasePay                                  82967.51
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                  30123.1
TotalPay                                 82967.51
TotalPayBenefits                        113090.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88458, dtype: object)
(88459, Id                                          88460
EmployeeName                      Inna V Verdiyan
JobTitle            Criminal Justice Specialist 2
BasePay                                   82923.1
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30167.16
TotalPay                                  82923.1
TotalPayBenefits                        113090.26
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88459, dtype: object)
(88460, Id                             88461
EmployeeName           Evelyn  McWay
JobTitle            Transit Operator
BasePay                     68123.64
OvertimePay                  9225.56
OtherPay                     2286.08
Benefits                    33454.88
TotalPay                    79635.28
TotalPayBenefits           113090.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88460, dtype: object)
(88461, Id                                      88462
EmployeeName                      Lilian H Li
JobTitle            Medical Records Tech Sprv
BasePay                              81486.04
OvertimePay                           1499.57
OtherPay                                250.0
Benefits                              29854.3
TotalPay                             83235.61
TotalPayBenefits                    113089.91
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88461, dtype: object)
(88462, Id                          88463
EmployeeName        Daniela C Yew
JobTitle              Librarian 1
BasePay                  81964.31
OvertimePay                   0.0
OtherPay                  1025.82
Benefits                 30097.54
TotalPay                 82990.13
TotalPayBenefits        113087.67
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88462, dtype: object)
(88463, Id                             88464
EmployeeName        William J Bender
JobTitle                   Locksmith
BasePay                     68590.64
OvertimePay                 17774.97
OtherPay                      1450.0
Benefits                    25270.89
TotalPay                    87815.61
TotalPayBenefits            113086.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88463, dtype: object)
(88464, Id                             88465
EmployeeName        Barbara J Hauser
JobTitle             Utility Analyst
BasePay                     82155.38
OvertimePay                      0.0
OtherPay                       780.0
Benefits                     30146.6
TotalPay                    82935.38
TotalPayBenefits           113081.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88464, dtype: object)
(88465, Id                              88466
EmployeeName          Carmelita  Acda
JobTitle            Nursing Assistant
BasePay                      68380.55
OvertimePay                   9658.64
OtherPay                      6570.78
Benefits                     28468.13
TotalPay                     84609.97
TotalPayBenefits             113078.1
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88465, dtype: object)
(88466, Id                                88467
EmployeeName                 Grace  Lin
JobTitle            Estate Investigator
BasePay                        82901.08
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30165.72
TotalPay                       82901.08
TotalPayBenefits               113066.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88466, dtype: object)
(88467, Id                                88468
EmployeeName              Theresa M Mok
JobTitle            Estate Investigator
BasePay                        82901.09
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30163.77
TotalPay                       82901.09
TotalPayBenefits              113064.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88467, dtype: object)
(88468, Id                                          88469
EmployeeName                            Jerry  Ng
JobTitle            Comm Pol Svcs Aide Supervisor
BasePay                                  76545.17
OvertimePay                                4030.0
OtherPay                                  3025.57
Benefits                                 29461.98
TotalPay                                 83600.74
TotalPayBenefits                        113062.72
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88468, dtype: object)
(88469, Id                                88470
EmployeeName           John W Gallagher
JobTitle            Estate Investigator
BasePay                        82899.57
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       82899.57
TotalPayBenefits              113060.21
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88469, dtype: object)
(88470, Id                                 88471
EmployeeName        Yesenia M Marie-Rose
JobTitle             Estate Investigator
BasePay                         82899.55
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        30160.64
TotalPay                        82899.55
TotalPayBenefits               113060.19
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88470, dtype: object)
(88471, Id                                88472
EmployeeName           Gwendolyn T Lane
JobTitle            Estate Investigator
BasePay                        82899.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       82899.53
TotalPayBenefits              113060.17
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88471, dtype: object)
(88472, Id                                88473
EmployeeName            Emily A Roberts
JobTitle            Estate Investigator
BasePay                        82899.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       82899.52
TotalPayBenefits              113060.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88472, dtype: object)
(88473, Id                                88474
EmployeeName          Ricardo E De Leon
JobTitle            Estate Investigator
BasePay                        82899.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       82899.51
TotalPayBenefits              113060.15
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88473, dtype: object)
(88474, Id                                88475
EmployeeName            Jeffrey S Price
JobTitle            Estate Investigator
BasePay                        82899.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                       82899.51
TotalPayBenefits              113060.15
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88474, dtype: object)
(88475, Id                                88476
EmployeeName          Rashida  Chaudhry
JobTitle            Estate Investigator
BasePay                         82899.5
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.64
TotalPay                        82899.5
TotalPayBenefits              113060.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88475, dtype: object)
(88476, Id                                88477
EmployeeName            Michael D Zaugg
JobTitle            Estate Investigator
BasePay                        82899.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30160.63
TotalPay                       82899.51
TotalPayBenefits              113060.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88476, dtype: object)
(88477, Id                            88478
EmployeeName        Matthew J Bufka
JobTitle                  Carpenter
BasePay                    81021.56
OvertimePay                     0.0
OtherPay                     2341.0
Benefits                    29696.1
TotalPay                   83362.56
TotalPayBenefits          113058.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88477, dtype: object)
(88478, Id                                88479
EmployeeName              John J Bitner
JobTitle            Estate Investigator
BasePay                        82897.58
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30159.92
TotalPay                       82897.58
TotalPayBenefits               113057.5
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88478, dtype: object)
(88479, Id                                  88480
EmployeeName           Jeffrey T Fresnoza
JobTitle            Deputy Court Clerk II
BasePay                           75653.7
OvertimePay                           0.0
OtherPay                           7979.4
Benefits                         29423.55
TotalPay                          83633.1
TotalPayBenefits                113056.65
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88479, dtype: object)
(88480, Id                          88481
EmployeeName           Jane H Bao
JobTitle              Librarian 1
BasePay                  82269.01
OvertimePay                   0.0
OtherPay                    648.0
Benefits                 30138.35
TotalPay                 82917.01
TotalPayBenefits        113055.36
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88480, dtype: object)
(88481, Id                                88482
EmployeeName              Andrew G Chen
JobTitle            Estate Investigator
BasePay                         82898.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30155.56
TotalPay                        82898.0
TotalPayBenefits              113053.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88481, dtype: object)
(88482, Id                                      88483
EmployeeName                   Sarah B Curtin
JobTitle            Psychiatric Social Worker
BasePay                              81026.77
OvertimePay                               0.0
OtherPay                              1219.52
Benefits                             30797.93
TotalPay                             82246.29
TotalPayBenefits                    113044.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88482, dtype: object)
(88483, Id                                88484
EmployeeName            Richard C Sears
JobTitle            Estate Investigator
BasePay                        82899.53
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30143.74
TotalPay                       82899.53
TotalPayBenefits              113043.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88483, dtype: object)
(88484, Id                                           88485
EmployeeName                  Joseph Royce P Mateo
JobTitle            Central Processing & Dist Tech
BasePay                                    71469.0
OvertimePay                                12151.7
OtherPay                                    1355.0
Benefits                                  28064.22
TotalPay                                   84975.7
TotalPayBenefits                         113039.92
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88484, dtype: object)
(88485, Id                                           88486
EmployeeName                      Darnel S Briosos
JobTitle            Central Processing & Dist Tech
BasePay                                   70277.85
OvertimePay                               10056.81
OtherPay                                   4490.05
Benefits                                  28211.49
TotalPay                                  84824.71
TotalPayBenefits                          113036.2
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88485, dtype: object)
(88486, Id                          88487
EmployeeName         Tiffany  Luu
JobTitle                Dietitian
BasePay                   82728.0
OvertimePay                   0.0
OtherPay                    200.0
Benefits                 30102.85
TotalPay                  82928.0
TotalPayBenefits        113030.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88486, dtype: object)
(88487, Id                                           88488
EmployeeName                       Luisa  Castillo
JobTitle            Worker's Compensation Adjuster
BasePay                                   83131.54
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29894.86
TotalPay                                  83131.54
TotalPayBenefits                          113026.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88487, dtype: object)
(88488, Id                                88489
EmployeeName           John T Wadsworth
JobTitle            Pharmacy Technician
BasePay                        79721.79
OvertimePay                     3915.19
OtherPay                          32.81
Benefits                       29348.11
TotalPay                       83669.79
TotalPayBenefits               113017.9
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88488, dtype: object)
(88489, Id                              88490
EmployeeName          Catherine  Yuen
JobTitle            Personnel Analyst
BasePay                      83557.38
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     29453.91
TotalPay                     83557.38
TotalPayBenefits            113011.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88489, dtype: object)
(88490, Id                           88491
EmployeeName        James M Miller
JobTitle            Deputy Sheriff
BasePay                   82270.61
OvertimePay                   8.99
OtherPay                   2751.44
Benefits                  27966.14
TotalPay                  85031.04
TotalPayBenefits         112997.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88490, dtype: object)
(88491, Id                               88492
EmployeeName        Shelly A Wilkerson
JobTitle                  Truck Driver
BasePay                       75567.45
OvertimePay                        0.0
OtherPay                       7984.49
Benefits                      29437.26
TotalPay                      83551.94
TotalPayBenefits              112989.2
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88491, dtype: object)
(88492, Id                          88493
EmployeeName          Alec G Kauf
JobTitle              Firefighter
BasePay                  75665.95
OvertimePay                8049.9
OtherPay                   506.27
Benefits                 28754.72
TotalPay                 84222.12
TotalPayBenefits        112976.84
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88492, dtype: object)
(88493, Id                             88494
EmployeeName            Maung W Latt
JobTitle            Transit Operator
BasePay                     68419.42
OvertimePay                  6048.32
OtherPay                     4315.51
Benefits                    34192.11
TotalPay                    78783.25
TotalPayBenefits           112975.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88493, dtype: object)
(88494, Id                               88495
EmployeeName        Maureen V Conefrey
JobTitle             Legal Secretary 2
BasePay                        82728.0
OvertimePay                     143.63
OtherPay                           0.0
Benefits                      30102.85
TotalPay                      82871.63
TotalPayBenefits             112974.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88494, dtype: object)
(88495, Id                                    88496
EmployeeName        Sheila F Bishop-Griffin
JobTitle                Transit Car Cleaner
BasePay                             61128.0
OvertimePay                        18223.87
OtherPay                            6551.38
Benefits                           27069.88
TotalPay                           85903.25
TotalPayBenefits                  112973.13
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88495, dtype: object)
(88496, Id                             88497
EmployeeName           Tae Woo  Kang
JobTitle            Deputy Sheriff 1
BasePay                      66104.4
OvertimePay                 12761.46
OtherPay                     5705.86
Benefits                    28398.12
TotalPay                    84571.72
TotalPayBenefits           112969.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88496, dtype: object)
(88497, Id                                88498
EmployeeName            Shorna J Murphy
JobTitle            Survey Assistant II
BasePay                        82822.36
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30131.66
TotalPay                       82822.36
TotalPayBenefits              112954.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88497, dtype: object)
(88498, Id                                    88499
EmployeeName               Dominic  Garrett
JobTitle            Parking Control Officer
BasePay                            58494.71
OvertimePay                        27341.42
OtherPay                            1692.04
Benefits                           25418.49
TotalPay                           87528.17
TotalPayBenefits                  112946.66
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88498, dtype: object)
(88499, Id                                88500
EmployeeName                   San  Lin
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                     5176.62
OtherPay                          41.84
Benefits                       29255.87
TotalPay                       83689.06
TotalPayBenefits              112944.93
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88499, dtype: object)
(88500, Id                                 88501
EmployeeName        Richard D Bridges Jr
JobTitle                Transit Operator
BasePay                         68462.81
OvertimePay                      5191.74
OtherPay                         4304.61
Benefits                        34975.93
TotalPay                        77959.16
TotalPayBenefits               112935.09
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88500, dtype: object)
(88501, Id                             88502
EmployeeName               Jacky  Le
JobTitle            Transit Operator
BasePay                     67636.23
OvertimePay                  7153.94
OtherPay                     3733.88
Benefits                    34407.01
TotalPay                    78524.05
TotalPayBenefits           112931.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88501, dtype: object)
(88502, Id                             88503
EmployeeName        Marrialee A Salm
JobTitle               Special Nurse
BasePay                     76070.46
OvertimePay                  7276.88
OtherPay                     16517.7
Benefits                    13064.89
TotalPay                    99865.04
TotalPayBenefits           112929.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88502, dtype: object)
(88503, Id                          88504
EmployeeName        Jon A Jackson
JobTitle              Librarian 1
BasePay                  82116.72
OvertimePay                   0.0
OtherPay                    706.8
Benefits                 30091.48
TotalPay                 82823.52
TotalPayBenefits         112915.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88503, dtype: object)
(88504, Id                                          88505
EmployeeName                       Maria L Sutton
JobTitle            Senior Administrative Analyst
BasePay                                   82091.5
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30819.69
TotalPay                                  82091.5
TotalPayBenefits                        112911.19
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88504, dtype: object)
(88505, Id                                           88506
EmployeeName                        Donwell Y Chan
JobTitle            IT Operations Support Admin II
BasePay                                    69558.5
OvertimePay                               14151.64
OtherPay                                   1463.56
Benefits                                  27736.67
TotalPay                                   85173.7
TotalPayBenefits                         112910.37
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88505, dtype: object)
(88506, Id                               88507
EmployeeName        Robert K Gillespie
JobTitle              Transit Operator
BasePay                       68187.11
OvertimePay                    9641.24
OtherPay                       1738.85
Benefits                      33340.69
TotalPay                       79567.2
TotalPayBenefits             112907.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88506, dtype: object)
(88507, Id                             88508
EmployeeName           Sonya  Cirino
JobTitle            Transit Operator
BasePay                     68808.77
OvertimePay                  4376.63
OtherPay                     5124.19
Benefits                    34597.72
TotalPay                    78309.59
TotalPayBenefits           112907.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88507, dtype: object)
(88508, Id                                         88509
EmployeeName                Divine Grace M Ogden
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 74127.41
OvertimePay                              9488.28
OtherPay                                   758.3
Benefits                                28533.08
TotalPay                                84373.99
TotalPayBenefits                       112907.07
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88508, dtype: object)
(88509, Id                             88510
EmployeeName         Deborah D Mills
JobTitle            Registered Nurse
BasePay                     82588.56
OvertimePay                      0.0
OtherPay                     3753.16
Benefits                    26564.78
TotalPay                    86341.72
TotalPayBenefits            112906.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88509, dtype: object)
(88510, Id                                 88511
EmployeeName        Christopher A Miller
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       723.42
OtherPay                         1357.75
Benefits                        30686.26
TotalPay                        82214.18
TotalPayBenefits               112900.44
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88510, dtype: object)
(88511, Id                             88512
EmployeeName         Adina M Diamond
JobTitle            Registered Nurse
BasePay                     80812.37
OvertimePay                  1732.73
OtherPay                     2567.43
Benefits                    27777.57
TotalPay                    85112.53
TotalPayBenefits            112890.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88511, dtype: object)
(88512, Id                               88513
EmployeeName          Jonathan G Bulos
JobTitle            Physical Therapist
BasePay                        82066.5
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30820.59
TotalPay                       82066.5
TotalPayBenefits             112887.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88512, dtype: object)
(88513, Id                           88514
EmployeeName        John J Orourke
JobTitle                Hodcarrier
BasePay                    75092.6
OvertimePay                8072.19
OtherPay                     988.0
Benefits                  28722.75
TotalPay                  84152.79
TotalPayBenefits         112875.54
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88513, dtype: object)
(88514, Id                             88515
EmployeeName          Tiffany N Gray
JobTitle            Transit Operator
BasePay                     67433.71
OvertimePay                  11385.7
OtherPay                      573.35
Benefits                    33482.65
TotalPay                    79392.76
TotalPayBenefits           112875.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88514, dtype: object)
(88515, Id                              88516
EmployeeName           Alicia C Frias
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  10599.02
OtherPay                      5598.32
Benefits                     28283.08
TotalPay                     84588.34
TotalPayBenefits            112871.42
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88515, dtype: object)
(88516, Id                               88517
EmployeeName        Christina L Jaldon
JobTitle            Eligibility Worker
BasePay                       57701.65
OvertimePay                   22737.94
OtherPay                       4793.12
Benefits                      27637.55
TotalPay                      85232.71
TotalPayBenefits             112870.26
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88516, dtype: object)
(88517, Id                             88518
EmployeeName          Douglas  Liang
JobTitle            Transit Operator
BasePay                     67214.39
OvertimePay                  6919.83
OtherPay                     4952.94
Benefits                    33781.73
TotalPay                    79087.16
TotalPayBenefits           112868.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88517, dtype: object)
(88518, Id                                  88519
EmployeeName                 Gordon  Fong
JobTitle            Deputy Court Clerk II
BasePay                          76070.55
OvertimePay                           0.0
OtherPay                          6715.56
Benefits                         30080.37
TotalPay                         82786.11
TotalPayBenefits                112866.48
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88518, dtype: object)
(88519, Id                                  88520
EmployeeName                Marevel R Tam
JobTitle            Deputy Court Clerk II
BasePay                          76070.55
OvertimePay                           0.0
OtherPay                           7335.0
Benefits                         29447.97
TotalPay                         83405.55
TotalPayBenefits                112853.52
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88519, dtype: object)
(88520, Id                                  88521
EmployeeName               Warren T White
JobTitle            Deputy Court Clerk II
BasePay                          76070.52
OvertimePay                           0.0
OtherPay                           7335.0
Benefits                         29447.97
TotalPay                         83405.52
TotalPayBenefits                112853.49
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88520, dtype: object)
(88521, Id                                           88522
EmployeeName                         Daisy R Lucas
JobTitle            Senior Parking Control Officer
BasePay                                   70701.52
OvertimePay                               14229.39
OtherPay                                    184.41
Benefits                                  27736.38
TotalPay                                  85115.32
TotalPayBenefits                          112851.7
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88521, dtype: object)
(88522, Id                                          88523
EmployeeName                       Liam S O'Byrne
JobTitle            Airport Operations Supervisor
BasePay                                  81425.15
OvertimePay                                 564.0
OtherPay                                  3845.54
Benefits                                 27016.48
TotalPay                                 85834.69
TotalPayBenefits                        112851.17
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88522, dtype: object)
(88523, Id                                      88524
EmployeeName              Aimee Ruth  Allison
JobTitle            Rep, Comm Status of Women
BasePay                              84246.76
OvertimePay                               0.0
OtherPay                              2597.02
Benefits                             26007.07
TotalPay                             86843.78
TotalPayBenefits                    112850.85
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88523, dtype: object)
(88524, Id                                    88525
EmployeeName               Zackary T Taylor
JobTitle            Park Section Supervisor
BasePay                            82495.35
OvertimePay                             0.0
OtherPay                             246.16
Benefits                           30107.81
TotalPay                           82741.51
TotalPayBenefits                  112849.32
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88524, dtype: object)
(88525, Id                            88526
EmployeeName          Martha L Vera
JobTitle            Legal Assistant
BasePay                    81686.54
OvertimePay                     0.0
OtherPay                     1040.0
Benefits                   30122.03
TotalPay                   82726.54
TotalPayBenefits          112848.57
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88525, dtype: object)
(88526, Id                             88527
EmployeeName            Eric  Lawson
JobTitle            Transit Operator
BasePay                     60384.03
OvertimePay                 18538.32
OtherPay                     3915.17
Benefits                    30007.74
TotalPay                    82837.52
TotalPayBenefits           112845.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88526, dtype: object)
(88527, Id                             88528
EmployeeName         Gregory N Tyson
JobTitle            Transit Operator
BasePay                     67523.15
OvertimePay                 10408.83
OtherPay                     1211.15
Benefits                    33700.98
TotalPay                    79143.13
TotalPayBenefits           112844.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88527, dtype: object)
(88528, Id                                       88529
EmployeeName                      Perry L Dion
JobTitle            IS Business Analyst-Senior
BasePay                               79901.24
OvertimePay                                0.0
OtherPay                               5139.82
Benefits                              27798.42
TotalPay                              85041.06
TotalPayBenefits                     112839.48
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88528, dtype: object)
(88529, Id                               88530
EmployeeName        Richard V Walls Jr
JobTitle              Transit Operator
BasePay                       64594.78
OvertimePay                   12590.15
OtherPay                       3524.17
Benefits                      32127.79
TotalPay                       80709.1
TotalPayBenefits             112836.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88529, dtype: object)
(88530, Id                             88531
EmployeeName              Binh  Doan
JobTitle            Transit Operator
BasePay                     69249.25
OvertimePay                  4746.65
OtherPay                     4274.41
Benefits                    34561.48
TotalPay                    78270.31
TotalPayBenefits           112831.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88530, dtype: object)
(88531, Id                              88532
EmployeeName            Arlene G Hall
JobTitle            Legal Secretary 2
BasePay                      82728.12
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30102.97
TotalPay                     82728.12
TotalPayBenefits            112831.09
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88531, dtype: object)
(88532, Id                             88533
EmployeeName        Cheryl L Coleman
JobTitle                 Chief Clerk
BasePay                     82728.01
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30102.86
TotalPay                    82728.01
TotalPayBenefits           112830.87
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88532, dtype: object)
(88533, Id                          88534
EmployeeName        Peter  Aviles
JobTitle              Chief Clerk
BasePay                   82728.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30102.85
TotalPay                  82728.0
TotalPayBenefits        112830.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88533, dtype: object)
(88534, Id                              88535
EmployeeName             Renee  Young
JobTitle            Legal Secretary 2
BasePay                       82728.0
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30102.85
TotalPay                      82728.0
TotalPayBenefits            112830.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88534, dtype: object)
(88535, Id                                88536
EmployeeName          Jerry J Archuleta
JobTitle            Stationary Engineer
BasePay                        75056.55
OvertimePay                     8470.88
OtherPay                         395.07
Benefits                       28908.14
TotalPay                        83922.5
TotalPayBenefits              112830.64
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88535, dtype: object)
(88536, Id                                 88537
EmployeeName              Andrew W Healy
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       639.77
OtherPay                          1358.9
Benefits                        30686.46
TotalPay                        82131.68
TotalPayBenefits               112818.14
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88536, dtype: object)
(88537, Id                                          88538
EmployeeName                          Heidi H Chu
JobTitle            Eligibility Worker Supervisor
BasePay                                  77077.01
OvertimePay                                4454.5
OtherPay                                   1904.0
Benefits                                 29379.16
TotalPay                                 83435.51
TotalPayBenefits                        112814.67
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88537, dtype: object)
(88538, Id                             88539
EmployeeName        Yolanda D Ruffin
JobTitle            Transit Operator
BasePay                     68355.03
OvertimePay                  6542.76
OtherPay                     3272.67
Benefits                    34640.02
TotalPay                    78170.46
TotalPayBenefits           112810.48
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88538, dtype: object)
(88539, Id                                         88540
EmployeeName                        Wyman K Wong
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.55
OvertimePay                               2630.7
OtherPay                                 1199.45
Benefits                                29674.81
TotalPay                                 83113.7
TotalPayBenefits                       112788.51
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88539, dtype: object)
(88540, Id                             88541
EmployeeName          Felipe  Alfaro
JobTitle            Transit Operator
BasePay                      67348.1
OvertimePay                 11672.62
OtherPay                      992.93
Benefits                     32771.7
TotalPay                    80013.65
TotalPayBenefits           112785.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88540, dtype: object)
(88541, Id                            88542
EmployeeName        John A Melendez
JobTitle               Truck Driver
BasePay                     71199.0
OvertimePay                 14930.6
OtherPay                      186.0
Benefits                   26467.88
TotalPay                    86315.6
TotalPayBenefits          112783.48
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88541, dtype: object)
(88542, Id                                  88543
EmployeeName                 Alvin  Otani
JobTitle            Maintenance Machinist
BasePay                          82681.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30100.39
TotalPay                         82681.56
TotalPayBenefits                112781.95
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88542, dtype: object)
(88543, Id                                    88544
EmployeeName                  David H Leung
JobTitle            Engineering Associate 1
BasePay                            80095.22
OvertimePay                         3263.49
OtherPay                                0.0
Benefits                           29420.71
TotalPay                           83358.71
TotalPayBenefits                  112779.42
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88543, dtype: object)
(88544, Id                             88545
EmployeeName        Richard H Aceret
JobTitle            Police Officer 3
BasePay                     48016.57
OvertimePay                  1232.57
OtherPay                     49224.1
Benefits                    14296.49
TotalPay                    98473.24
TotalPayBenefits           112769.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88544, dtype: object)
(88545, Id                                      88546
EmployeeName                  Mary A Alatorre
JobTitle            Child Support Officer III
BasePay                               83630.3
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                              29138.2
TotalPay                              83630.3
TotalPayBenefits                     112768.5
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88545, dtype: object)
(88546, Id                             88547
EmployeeName             Jose R Cruz
JobTitle            Transit Operator
BasePay                     68114.79
OvertimePay                  8540.98
OtherPay                     2527.62
Benefits                    33579.34
TotalPay                    79183.39
TotalPayBenefits           112762.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88546, dtype: object)
(88547, Id                                  88548
EmployeeName            Jessica C Dicenzo
JobTitle            Medical Social Worker
BasePay                          82877.87
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          29872.8
TotalPay                         82877.87
TotalPayBenefits                112750.67
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88547, dtype: object)
(88548, Id                             88549
EmployeeName             Frank  Enis
JobTitle            Transit Operator
BasePay                     69921.97
OvertimePay                  7626.36
OtherPay                     1165.23
Benefits                    34035.68
TotalPay                    78713.56
TotalPayBenefits           112749.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88548, dtype: object)
(88549, Id                             88550
EmployeeName        Grant R Garrison
JobTitle            Transit Operator
BasePay                     67988.71
OvertimePay                   8570.9
OtherPay                     2673.66
Benefits                    33514.06
TotalPay                    79233.27
TotalPayBenefits           112747.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88549, dtype: object)
(88550, Id                                 88551
EmployeeName               Owen R Davies
JobTitle            Automotive Machinist
BasePay                         80133.02
OvertimePay                       643.43
OtherPay                         1296.78
Benefits                        30673.88
TotalPay                        82073.23
TotalPayBenefits               112747.11
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88550, dtype: object)
(88551, Id                             88552
EmployeeName        Ladonna R Duncan
JobTitle            Transit Operator
BasePay                     65059.99
OvertimePay                 15892.44
OtherPay                       314.6
Benefits                    31477.02
TotalPay                    81267.03
TotalPayBenefits           112744.05
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88551, dtype: object)
(88552, Id                                      88553
EmployeeName            Christina R Altenberg
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74493.4
OvertimePay                           1584.64
OtherPay                              6772.04
Benefits                             29893.75
TotalPay                             82850.08
TotalPayBenefits                    112743.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88552, dtype: object)
(88553, Id                           88554
EmployeeName        Ronald M Andre
JobTitle                   Painter
BasePay                   77730.37
OvertimePay                 5245.6
OtherPay                     585.0
Benefits                  29172.21
TotalPay                  83560.97
TotalPayBenefits         112733.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88553, dtype: object)
(88554, Id                            88555
EmployeeName             Jose  Lara
JobTitle            Court Paralegal
BasePay                    77586.31
OvertimePay                     0.0
OtherPay                     5080.0
Benefits                   30042.21
TotalPay                   82666.31
TotalPayBenefits          112708.52
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88554, dtype: object)
(88555, Id                                    88556
EmployeeName               Marol D Connelly
JobTitle            Real Property Appraiser
BasePay                            78513.31
OvertimePay                             0.0
OtherPay                             3400.0
Benefits                           30792.42
TotalPay                           81913.31
TotalPayBenefits                  112705.73
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88555, dtype: object)
(88556, Id                          88557
EmployeeName        Sarah G Stone
JobTitle              Librarian 1
BasePay                  82573.71
OvertimePay                   0.0
OtherPay                     3.05
Benefits                 30117.17
TotalPay                 82576.76
TotalPayBenefits        112693.93
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88556, dtype: object)
(88557, Id                                           88558
EmployeeName                   Kathleen T Robinson
JobTitle            Principal Water Services Clerk
BasePay                                    74628.0
OvertimePay                                9583.53
OtherPay                                       0.0
Benefits                                  28480.73
TotalPay                                  84211.53
TotalPayBenefits                         112692.26
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88557, dtype: object)
(88558, Id                                           88559
EmployeeName                          Lincoln  Lee
JobTitle            Community Police Services Aide
BasePay                                   66123.12
OvertimePay                               12794.84
OtherPay                                   5847.14
Benefits                                  27925.61
TotalPay                                   84765.1
TotalPayBenefits                         112690.71
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88558, dtype: object)
(88559, Id                                    88560
EmployeeName             Nicholas A Repetto
JobTitle            Park Section Supervisor
BasePay                             78567.0
OvertimePay                         4846.77
OtherPay                                0.0
Benefits                           29275.68
TotalPay                           83413.77
TotalPayBenefits                  112689.45
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88559, dtype: object)
(88560, Id                             88561
EmployeeName            Gordon K Tom
JobTitle            Transit Operator
BasePay                      67675.2
OvertimePay                  9947.01
OtherPay                     1890.11
Benefits                    33173.61
TotalPay                    79512.32
TotalPayBenefits           112685.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88560, dtype: object)
(88561, Id                                  88562
EmployeeName               Joseph P Nauer
JobTitle            Assistant Storekeeper
BasePay                          52542.02
OvertimePay                      31711.87
OtherPay                          2298.89
Benefits                         26130.49
TotalPay                         86552.78
TotalPayBenefits                112683.27
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88561, dtype: object)
(88562, Id                                         88563
EmployeeName                       Roger  Varela
JobTitle            Employment & Training Spec 3
BasePay                                 81486.01
OvertimePay                                  0.0
OtherPay                                  1120.0
Benefits                                30074.43
TotalPay                                82606.01
TotalPayBenefits                       112680.44
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88562, dtype: object)
(88563, Id                            88564
EmployeeName        Seth C Plotnick
JobTitle                    Painter
BasePay                     77948.0
OvertimePay                  1724.4
OtherPay                     3202.0
Benefits                   29802.66
TotalPay                    82874.4
TotalPayBenefits          112677.06
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88563, dtype: object)
(88564, Id                             88565
EmployeeName           David C Luong
JobTitle            Transit Operator
BasePay                     68199.48
OvertimePay                  8489.86
OtherPay                     2417.59
Benefits                    33566.23
TotalPay                    79106.93
TotalPayBenefits           112673.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88564, dtype: object)
(88565, Id                          88566
EmployeeName           Jack H Mok
JobTitle            Accountant II
BasePay                  82553.67
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30101.14
TotalPay                 82553.67
TotalPayBenefits        112654.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88565, dtype: object)
(88566, Id                                88567
EmployeeName           Jessica B Morton
JobTitle            Health Care Analyst
BasePay                         81862.9
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30787.12
TotalPay                        81862.9
TotalPayBenefits              112650.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88566, dtype: object)
(88567, Id                                          88568
EmployeeName                        Mark D Nagayo
JobTitle            Med Examiner's Investigator I
BasePay                                  67940.87
OvertimePay                               16748.6
OtherPay                                      0.0
Benefits                                 27958.68
TotalPay                                 84689.47
TotalPayBenefits                        112648.15
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88567, dtype: object)
(88568, Id                               88569
EmployeeName        Catherine M Bremer
JobTitle                   Librarian 2
BasePay                       79325.66
OvertimePay                        0.0
OtherPay                       5620.12
Benefits                       27699.8
TotalPay                      84945.78
TotalPayBenefits             112645.58
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88568, dtype: object)
(88569, Id                                        88570
EmployeeName                    Debera L Taylor
JobTitle            Station Agent, Muni Railway
BasePay                                74250.87
OvertimePay                             7668.95
OtherPay                                2702.26
Benefits                               28019.63
TotalPay                               84622.08
TotalPayBenefits                      112641.71
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88569, dtype: object)
(88570, Id                                      88571
EmployeeName                      Hannah  Liu
JobTitle            Senior Eligibility Worker
BasePay                              75033.05
OvertimePay                           6472.19
OtherPay                               2148.0
Benefits                             28984.08
TotalPay                             83653.24
TotalPayBenefits                    112637.32
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88570, dtype: object)
(88571, Id                                         88572
EmployeeName                Letecia B Hutchinson
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.04
OvertimePay                             10400.62
OtherPay                                     0.0
Benefits                                28334.89
TotalPay                                84299.66
TotalPayBenefits                       112634.55
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88571, dtype: object)
(88572, Id                                           88573
EmployeeName                            Kevin  Lee
JobTitle            IT Operations Support Admn III
BasePay                                   82522.51
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30098.31
TotalPay                                  82522.51
TotalPayBenefits                         112620.82
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88572, dtype: object)
(88573, Id                                         88574
EmployeeName                  Christiana M Terou
JobTitle            Stationary Eng, Sewage Plant
BasePay                                  86530.0
OvertimePay                                 64.3
OtherPay                                 6483.72
Benefits                                19540.59
TotalPay                                93078.02
TotalPayBenefits                       112618.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88573, dtype: object)
(88574, Id                                      88575
EmployeeName                      Ivan  Mejia
JobTitle            Licensed Vocational Nurse
BasePay                              73550.55
OvertimePay                           4054.33
OtherPay                              5674.34
Benefits                             29333.21
TotalPay                             83279.22
TotalPayBenefits                    112612.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88574, dtype: object)
(88575, Id                          88576
EmployeeName         Bruce A Fung
JobTitle             Museum Guard
BasePay                  55322.24
OvertimePay              33848.38
OtherPay                   138.16
Benefits                 23288.16
TotalPay                 89308.78
TotalPayBenefits        112596.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88575, dtype: object)
(88576, Id                                   88577
EmployeeName                   Mary  Leong
JobTitle            Deputy Court Clerk III
BasePay                           79862.52
OvertimePay                            0.0
OtherPay                           4074.75
Benefits                          28658.45
TotalPay                          83937.27
TotalPayBenefits                 112595.72
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88576, dtype: object)
(88577, Id                                88578
EmployeeName           Venus M Castillo
JobTitle            Pharmacy Technician
BasePay                        80541.03
OvertimePay                      664.46
OtherPay                        1438.77
Benefits                       29947.21
TotalPay                       82644.26
TotalPayBenefits              112591.47
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88577, dtype: object)
(88578, Id                             88579
EmployeeName              Eric Y Lam
JobTitle            Transit Operator
BasePay                     69106.87
OvertimePay                  4120.85
OtherPay                     4037.21
Benefits                    35316.36
TotalPay                    77264.93
TotalPayBenefits           112581.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88578, dtype: object)
(88579, Id                                88580
EmployeeName               Jose A Lopez
JobTitle            Porter Supervisor 1
BasePay                         66744.0
OvertimePay                    17904.73
OtherPay                         862.92
Benefits                       27065.96
TotalPay                       85511.65
TotalPayBenefits              112577.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88579, dtype: object)
(88580, Id                                88581
EmployeeName                   Min  Zaw
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     1315.35
OtherPay                        2136.44
Benefits                       29835.85
TotalPay                       82735.29
TotalPayBenefits              112571.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88580, dtype: object)
(88581, Id                                  88582
EmployeeName              Michael C Lydon
JobTitle            Maintenance Machinist
BasePay                          81807.42
OvertimePay                        288.75
OtherPay                            550.0
Benefits                         29914.66
TotalPay                         82646.17
TotalPayBenefits                112560.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88581, dtype: object)
(88582, Id                                  88583
EmployeeName                     Ivy  Lee
JobTitle            Legislative Assistant
BasePay                           82640.8
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29914.15
TotalPay                          82640.8
TotalPayBenefits                112554.95
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88582, dtype: object)
(88583, Id                             88584
EmployeeName         Roberto  Garcia
JobTitle            Transit Operator
BasePay                     67363.48
OvertimePay                 10636.71
OtherPay                      1638.6
Benefits                    32915.41
TotalPay                    79638.79
TotalPayBenefits            112554.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88583, dtype: object)
(88584, Id                             88585
EmployeeName          Virgil  Foster
JobTitle            Transit Operator
BasePay                     68440.93
OvertimePay                   7709.2
OtherPay                     2035.68
Benefits                    34364.38
TotalPay                    78185.81
TotalPayBenefits           112550.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88584, dtype: object)
(88585, Id                                      88586
EmployeeName                     Winola S Lau
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           7242.77
OtherPay                               1420.0
Benefits                             28842.78
TotalPay                             83695.78
TotalPayBenefits                    112538.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88585, dtype: object)
(88586, Id                                           88587
EmployeeName                   Benedicto  Bermudez
JobTitle            Community Police Services Aide
BasePay                                   66123.17
OvertimePay                               11466.28
OtherPay                                    6821.8
Benefits                                  28127.06
TotalPay                                  84411.25
TotalPayBenefits                         112538.31
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88586, dtype: object)
(88587, Id                                  88588
EmployeeName               Maria C Degati
JobTitle            IS Programmer Analyst
BasePay                           81780.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30754.31
TotalPay                          81780.0
TotalPayBenefits                112534.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88587, dtype: object)
(88588, Id                                     88589
EmployeeName                Precious  Malone
JobTitle            Deputy Probation Officer
BasePay                             84172.82
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            28360.57
TotalPay                            84172.82
TotalPayBenefits                   112533.39
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88588, dtype: object)
(88589, Id                               88590
EmployeeName           Marlen  Sanchez
JobTitle            Program Specialist
BasePay                       82044.01
OvertimePay                        0.0
OtherPay                         432.0
Benefits                      30056.62
TotalPay                      82476.01
TotalPayBenefits             112532.63
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88589, dtype: object)
(88590, Id                                         88591
EmployeeName                    Joseph F Almeida
JobTitle            Assistant Retirement Analyst
BasePay                                 81836.31
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                30044.84
TotalPay                                82484.31
TotalPayBenefits                       112529.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88590, dtype: object)
(88591, Id                            88592
EmployeeName        Ronnie E Arnold
JobTitle               Museum Guard
BasePay                     61398.0
OvertimePay                17961.82
OtherPay                    6137.64
Benefits                   27018.87
TotalPay                   85497.46
TotalPayBenefits          112516.33
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88591, dtype: object)
(88592, Id                               88593
EmployeeName        Guadalupe  Camacho
JobTitle                       Painter
BasePay                       77948.02
OvertimePay                    2810.55
OtherPay                        2176.0
Benefits                      29579.52
TotalPay                      82934.57
TotalPayBenefits             112514.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88592, dtype: object)
(88593, Id                             88594
EmployeeName              Jian  Zhou
JobTitle            Transit Operator
BasePay                     68602.47
OvertimePay                  5799.12
OtherPay                      3341.0
Benefits                    34768.12
TotalPay                    77742.59
TotalPayBenefits           112510.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88593, dtype: object)
(88594, Id                               88595
EmployeeName        Anthony L St.Clair
JobTitle              Transit Operator
BasePay                       68682.85
OvertimePay                    4099.08
OtherPay                       4525.41
Benefits                      35192.94
TotalPay                      77307.34
TotalPayBenefits             112500.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88594, dtype: object)
(88595, Id                                   88596
EmployeeName               Lisa A Gonzales
JobTitle            Electrical Line Helper
BasePay                            78380.0
OvertimePay                        4662.18
OtherPay                             180.0
Benefits                           29277.1
TotalPay                          83222.18
TotalPayBenefits                 112499.28
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88595, dtype: object)
(88596, Id                                      88597
EmployeeName                     Angela  Wong
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           7008.29
OtherPay                               1600.0
Benefits                             28853.89
TotalPay                             83641.32
TotalPayBenefits                    112495.21
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88596, dtype: object)
(88597, Id                             88598
EmployeeName          John G Hagerty
JobTitle            Training Officer
BasePay                     81823.11
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    30667.17
TotalPay                    81823.11
TotalPayBenefits           112490.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88597, dtype: object)
(88598, Id                                          88599
EmployeeName                       Pamela A Stone
JobTitle            Senior Administrative Analyst
BasePay                                  84220.17
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 28269.85
TotalPay                                 84220.17
TotalPayBenefits                        112490.02
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88598, dtype: object)
(88599, Id                                   88600
EmployeeName               Nidia M Abaunza
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       14920.99
OtherPay                            1670.0
Benefits                           27503.1
TotalPay                          84981.99
TotalPayBenefits                 112485.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88599, dtype: object)
(88600, Id                                    88601
EmployeeName                Michael S Roche
JobTitle            Park Section Supervisor
BasePay                             78567.0
OvertimePay                          4640.5
OtherPay                                0.0
Benefits                           29275.68
TotalPay                            83207.5
TotalPayBenefits                  112483.18
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88600, dtype: object)
(88601, Id                              88602
EmployeeName        Carole L Davidson
JobTitle                  Librarian 2
BasePay                      80800.82
OvertimePay                       0.0
OtherPay                       942.99
Benefits                     30737.24
TotalPay                     81743.81
TotalPayBenefits            112481.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88601, dtype: object)
(88602, Id                                           88603
EmployeeName                        Damon M Holmes
JobTitle            Apprentice Stationary Engineer
BasePay                                   73878.25
OvertimePay                                5506.81
OtherPay                                   4185.14
Benefits                                  28895.35
TotalPay                                   83570.2
TotalPayBenefits                         112465.55
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88602, dtype: object)
(88603, Id                          88604
EmployeeName          Anita A Yao
JobTitle             Wharfinger 2
BasePay                  81344.22
OvertimePay                   0.0
OtherPay                   1060.0
Benefits                 30060.97
TotalPay                 82404.22
TotalPayBenefits        112465.19
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88603, dtype: object)
(88604, Id                             88605
EmployeeName            Albert G Lee
JobTitle            Transit Operator
BasePay                     69002.79
OvertimePay                   509.32
OtherPay                      7605.7
Benefits                    35347.34
TotalPay                    77117.81
TotalPayBenefits           112465.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88604, dtype: object)
(88605, Id                             88606
EmployeeName            Hans W Bayer
JobTitle            Watershed Keeper
BasePay                     68391.03
OvertimePay                  4226.95
OtherPay                    12614.76
Benefits                    27223.96
TotalPay                    85232.74
TotalPayBenefits            112456.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88605, dtype: object)
(88606, Id                          88607
EmployeeName         Cuong  Quach
JobTitle              Chief Clerk
BasePay                  82336.03
OvertimePay                 114.9
OtherPay                      0.0
Benefits                 30004.94
TotalPay                 82450.93
TotalPayBenefits        112455.87
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88606, dtype: object)
(88607, Id                                 88608
EmployeeName        Imelda D Del Rosario
JobTitle                Registered Nurse
BasePay                         83989.89
OvertimePay                       791.25
OtherPay                          1736.9
Benefits                        25937.68
TotalPay                        86518.04
TotalPayBenefits               112455.72
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88607, dtype: object)
(88608, Id                             88609
EmployeeName         Dennis C Guintu
JobTitle            Transit Operator
BasePay                      68842.5
OvertimePay                  6528.27
OtherPay                     2437.05
Benefits                    34642.09
TotalPay                    77807.82
TotalPayBenefits           112449.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88608, dtype: object)
(88609, Id                                88610
EmployeeName             Amy L Petersen
JobTitle            Health Care Analyst
BasePay                        81966.66
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30473.97
TotalPay                       81966.66
TotalPayBenefits              112440.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88609, dtype: object)
(88610, Id                              88611
EmployeeName        Jonathan P Kocher
JobTitle                    Asst Engr
BasePay                      79611.05
OvertimePay                       0.0
OtherPay                      2484.06
Benefits                     30334.54
TotalPay                     82095.11
TotalPayBenefits            112429.65
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88610, dtype: object)
(88611, Id                            88612
EmployeeName        Nadia E Mohamed
JobTitle             Police Officer
BasePay                    78591.04
OvertimePay                 5417.82
OtherPay                    1214.63
Benefits                   27204.66
TotalPay                   85223.49
TotalPayBenefits          112428.15
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88611, dtype: object)
(88612, Id                              88613
EmployeeName          Anne C Fritzler
JobTitle            Transit Planner 2
BasePay                       81671.3
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30754.85
TotalPay                      81671.3
TotalPayBenefits            112426.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88612, dtype: object)
(88613, Id                                   88614
EmployeeName                 Myrna B Radoc
JobTitle            Patient Care Assistant
BasePay                           68391.01
OvertimePay                        15783.9
OtherPay                             898.0
Benefits                          27351.13
TotalPay                          85072.91
TotalPayBenefits                 112424.04
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88613, dtype: object)
(88614, Id                                      88615
EmployeeName                      Sally S Yip
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           6930.14
OtherPay                               1580.0
Benefits                             28873.77
TotalPay                             83543.16
TotalPayBenefits                    112416.93
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88614, dtype: object)
(88615, Id                          88616
EmployeeName        Eugene Y Chin
JobTitle             Truck Driver
BasePay                   80052.0
OvertimePay                791.62
OtherPay                  1678.52
Benefits                 29891.14
TotalPay                 82522.14
TotalPayBenefits        112413.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88615, dtype: object)
(88616, Id                          88617
EmployeeName        Masako  Kasai
JobTitle              Librarian 1
BasePay                   70995.1
OvertimePay                   0.0
OtherPay                 15332.41
Benefits                 26083.17
TotalPay                 86327.51
TotalPayBenefits        112410.68
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88616, dtype: object)
(88617, Id                                    88618
EmployeeName                 Robert S Louie
JobTitle            Parking Control Officer
BasePay                             59203.5
OvertimePay                        26264.42
OtherPay                            1290.52
Benefits                           25651.26
TotalPay                           86758.44
TotalPayBenefits                   112409.7
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88617, dtype: object)
(88618, Id                                          88619
EmployeeName                   Carmen J Rodriguez
JobTitle            Eligibility Worker Supervisor
BasePay                                  80580.51
OvertimePay                                866.25
OtherPay                                   1380.0
Benefits                                 29571.67
TotalPay                                 82826.76
TotalPayBenefits                        112398.43
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88618, dtype: object)
(88619, Id                                       88620
EmployeeName                  Cheryll E Abriam
JobTitle            Patient Accounts Asst Sprv
BasePay                               75871.84
OvertimePay                            4617.61
OtherPay                               2685.83
Benefits                               29218.7
TotalPay                              83175.28
TotalPayBenefits                     112393.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88619, dtype: object)
(88620, Id                             88621
EmployeeName          Lionel N Allen
JobTitle            Transit Operator
BasePay                     66301.58
OvertimePay                 10084.99
OtherPay                      3150.0
Benefits                    32850.55
TotalPay                    79536.57
TotalPayBenefits           112387.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88620, dtype: object)
(88621, Id                             88622
EmployeeName              Ali E Azam
JobTitle            Transit Operator
BasePay                     60440.73
OvertimePay                 15111.11
OtherPay                      5280.6
Benefits                    31550.93
TotalPay                    80832.44
TotalPayBenefits           112383.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88621, dtype: object)
(88622, Id                             88623
EmployeeName         Shavon R Wilson
JobTitle            Transit Operator
BasePay                     68600.91
OvertimePay                  9724.45
OtherPay                       754.2
Benefits                     33295.9
TotalPay                    79079.56
TotalPayBenefits           112375.46
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88622, dtype: object)
(88623, Id                                           88624
EmployeeName                          Maria D Kern
JobTitle            Depty Sealer of Weights & Meas
BasePay                                   81221.75
OvertimePay                                    0.0
OtherPay                                    1080.0
Benefits                                  30061.73
TotalPay                                  82301.75
TotalPayBenefits                         112363.48
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88623, dtype: object)
(88624, Id                             88625
EmployeeName               Minh T Lu
JobTitle            Transit Operator
BasePay                     67481.79
OvertimePay                 10205.67
OtherPay                     1068.71
Benefits                    33605.79
TotalPay                    78756.17
TotalPayBenefits           112361.96
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88624, dtype: object)
(88625, Id                                      88626
EmployeeName                    Jessica D The
JobTitle            Licensed Vocational Nurse
BasePay                              71715.27
OvertimePay                          12160.04
OtherPay                               793.87
Benefits                             27685.55
TotalPay                             84669.18
TotalPayBenefits                    112354.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88625, dtype: object)
(88626, Id                                           88627
EmployeeName                      Joslyn J Timmons
JobTitle            Public Defender's Investigator
BasePay                                    81636.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30714.07
TotalPay                                   81636.0
TotalPayBenefits                         112350.07
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88626, dtype: object)
(88627, Id                                     88628
EmployeeName                Julian H McAdams
JobTitle            Track Maintenance Worker
BasePay                             63701.55
OvertimePay                         14124.67
OtherPay                             6887.83
Benefits                            27620.75
TotalPay                            84714.05
TotalPayBenefits                    112334.8
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88627, dtype: object)
(88628, Id                                      88629
EmployeeName                   Jose R Escobar
JobTitle            Senior Eligibility Worker
BasePay                              74738.47
OvertimePay                           6498.38
OtherPay                              2205.46
Benefits                             28890.26
TotalPay                             83442.31
TotalPayBenefits                    112332.57
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88628, dtype: object)
(88629, Id                             88630
EmployeeName        Richard J Martin
JobTitle                 Inspector 3
BasePay                      84912.0
OvertimePay                      0.0
OtherPay                     3741.15
Benefits                    23676.83
TotalPay                    88653.15
TotalPayBenefits           112329.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88629, dtype: object)
(88630, Id                               88631
EmployeeName             Kim C Baggett
JobTitle            Program Specialist
BasePay                       82399.63
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      29927.26
TotalPay                      82399.63
TotalPayBenefits             112326.89
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88630, dtype: object)
(88631, Id                                        88632
EmployeeName                   Michael P Rieger
JobTitle            Landscape Architect Assoc 1
BasePay                                81663.34
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30662.46
TotalPay                               81663.34
TotalPayBenefits                       112325.8
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88631, dtype: object)
(88632, Id                             88633
EmployeeName          Damon A Porter
JobTitle            Transit Operator
BasePay                     66670.42
OvertimePay                  11214.0
OtherPay                     2809.05
Benefits                    31629.21
TotalPay                    80693.47
TotalPayBenefits           112322.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88632, dtype: object)
(88633, Id                             88634
EmployeeName            Hung  Nguyen
JobTitle            Transit Operator
BasePay                     63651.58
OvertimePay                  13299.2
OtherPay                     3745.29
Benefits                     31623.6
TotalPay                    80696.07
TotalPayBenefits           112319.67
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88633, dtype: object)
(88634, Id                                      88635
EmployeeName                 Emmanuel T Buban
JobTitle            Licensed Vocational Nurse
BasePay                              64572.59
OvertimePay                          13190.39
OtherPay                              6128.74
Benefits                             28426.23
TotalPay                             83891.72
TotalPayBenefits                    112317.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88634, dtype: object)
(88635, Id                               88636
EmployeeName        Cherylynn H Norona
JobTitle             Personnel Analyst
BasePay                       82279.35
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30038.15
TotalPay                      82279.35
TotalPayBenefits              112317.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88635, dtype: object)
(88636, Id                                          88637
EmployeeName                        Brent W Begin
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  81606.83
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30707.22
TotalPay                                 81606.83
TotalPayBenefits                        112314.05
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88636, dtype: object)
(88637, Id                                          88638
EmployeeName                         Kacy K Green
JobTitle            Invstgtor Ofc Citizen Cmplnts
BasePay                                  81606.82
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30707.22
TotalPay                                 81606.82
TotalPayBenefits                        112314.04
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88637, dtype: object)
(88638, Id                                88639
EmployeeName        Juliet L Huntington
JobTitle               Registered Nurse
BasePay                        69000.31
OvertimePay                     3289.55
OtherPay                       13739.18
Benefits                       26281.27
TotalPay                       86029.04
TotalPayBenefits              112310.31
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88638, dtype: object)
(88639, Id                                88640
EmployeeName           Virginia R Jones
JobTitle            Transit Car Cleaner
BasePay                        59841.19
OvertimePay                     16969.0
OtherPay                        8580.99
Benefits                       26917.24
TotalPay                       85391.18
TotalPayBenefits              112308.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88639, dtype: object)
(88640, Id                              88641
EmployeeName        Stefanie  Jackson
JobTitle             Transit Operator
BasePay                       66950.2
OvertimePay                  11403.73
OtherPay                      1300.33
Benefits                     32648.94
TotalPay                     79654.26
TotalPayBenefits             112303.2
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88640, dtype: object)
(88641, Id                           88642
EmployeeName        Avant D Ramsey
JobTitle                 Planner 2
BasePay                   82255.35
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30046.76
TotalPay                  82255.35
TotalPayBenefits         112302.11
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88641, dtype: object)
(88642, Id                                        88643
EmployeeName               G. Michael  Matsuoka
JobTitle            Landscape Architect Assoc 1
BasePay                                 82068.3
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30232.87
TotalPay                                82068.3
TotalPayBenefits                      112301.17
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88642, dtype: object)
(88643, Id                                88644
EmployeeName               Mary  Nguyen
JobTitle            Pharmacy Technician
BasePay                        80541.05
OvertimePay                      1351.3
OtherPay                          623.7
Benefits                       29778.79
TotalPay                       82516.05
TotalPayBenefits              112294.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88643, dtype: object)
(88644, Id                                88645
EmployeeName                 Hue M Tran
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                       894.9
OtherPay                         1000.0
Benefits                       29852.66
TotalPay                        82435.9
TotalPayBenefits              112288.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88644, dtype: object)
(88645, Id                                      88646
EmployeeName            Frederick V Alexander
JobTitle            Public Health Team Leader
BasePay                              76682.43
OvertimePay                            475.62
OtherPay                              5366.73
Benefits                             29757.87
TotalPay                             82524.78
TotalPayBenefits                    112282.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88645, dtype: object)
(88646, Id                          88647
EmployeeName         Dale H Jenne
JobTitle              Librarian 1
BasePay                  82269.09
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30010.98
TotalPay                 82269.09
TotalPayBenefits        112280.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88646, dtype: object)
(88647, Id                              88648
EmployeeName        Rosalind L Merlin
JobTitle                  Librarian 1
BasePay                      82269.04
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30010.99
TotalPay                     82269.04
TotalPayBenefits            112280.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88647, dtype: object)
(88648, Id                             88649
EmployeeName           John L Nguyen
JobTitle            Transit Operator
BasePay                     68718.71
OvertimePay                  5150.17
OtherPay                     4132.99
Benefits                    34274.06
TotalPay                    78001.87
TotalPayBenefits           112275.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88648, dtype: object)
(88649, Id                                   88650
EmployeeName        Domonic  Spaccarotelli
JobTitle               Health Care Analyst
BasePay                            81541.7
OvertimePay                            0.0
OtherPay                              7.64
Benefits                          30725.75
TotalPay                          81549.34
TotalPayBenefits                 112275.09
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88649, dtype: object)
(88650, Id                                88651
EmployeeName             Johnny  Burgos
JobTitle            Stationary Engineer
BasePay                        79469.31
OvertimePay                         0.0
OtherPay                        2827.25
Benefits                        29973.3
TotalPay                       82296.56
TotalPayBenefits              112269.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88650, dtype: object)
(88651, Id                                      88652
EmployeeName                   Lucas W Muncal
JobTitle            EMT/Paramedic/Firefighter
BasePay                               74499.6
OvertimePay                            1422.2
OtherPay                              6735.33
Benefits                             29611.01
TotalPay                             82657.13
TotalPayBenefits                    112268.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88651, dtype: object)
(88652, Id                                    88653
EmployeeName         Christopher P Campbell
JobTitle            Park Section Supervisor
BasePay                            76685.79
OvertimePay                         6181.46
OtherPay                             405.96
Benefits                           28993.63
TotalPay                           83273.21
TotalPayBenefits                  112266.84
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88652, dtype: object)
(88653, Id                                     88654
EmployeeName                  Gayle B Martin
JobTitle            Deputy Probation Officer
BasePay                             80200.02
OvertimePay                              0.0
OtherPay                              6717.8
Benefits                            25335.91
TotalPay                            86917.82
TotalPayBenefits                   112253.73
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88653, dtype: object)
(88654, Id                                 88655
EmployeeName             David A Charney
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                      1863.08
OtherPay                           550.0
Benefits                        29706.64
TotalPay                        82546.08
TotalPayBenefits               112252.72
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88654, dtype: object)
(88655, Id                               88656
EmployeeName        Alphonsus N Okorie
JobTitle              Transit Operator
BasePay                       76720.01
OvertimePay                   11920.08
OtherPay                       3850.04
Benefits                      19757.63
TotalPay                      92490.13
TotalPayBenefits             112247.76
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88655, dtype: object)
(88656, Id                                88657
EmployeeName             James F Burket
JobTitle            Arborist Technician
BasePay                         80282.5
OvertimePay                     2291.16
OtherPay                           45.9
Benefits                       29627.99
TotalPay                       82619.56
TotalPayBenefits              112247.55
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88656, dtype: object)
(88657, Id                                88658
EmployeeName        Alizabeth A Cherian
JobTitle                      Asst Engr
BasePay                        82791.67
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29454.99
TotalPay                       82791.67
TotalPayBenefits              112246.66
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88657, dtype: object)
(88658, Id                                 88659
EmployeeName           Robert W Bergesen
JobTitle            Automotive Machinist
BasePay                         80133.02
OvertimePay                        223.8
OtherPay                          1232.2
Benefits                        30656.47
TotalPay                        81589.02
TotalPayBenefits               112245.49
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88658, dtype: object)
(88659, Id                                88660
EmployeeName              Joel T Hughes
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                     3063.16
OtherPay                         534.44
Benefits                       30175.97
TotalPay                        82068.2
TotalPayBenefits              112244.17
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88659, dtype: object)
(88660, Id                                 88661
EmployeeName        Rosa Vilma  Bautista
JobTitle                Registered Nurse
BasePay                         76788.85
OvertimePay                      7700.19
OtherPay                        11506.84
Benefits                        16242.65
TotalPay                        95995.88
TotalPayBenefits               112238.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88660, dtype: object)
(88661, Id                                   88662
EmployeeName             Rosalinda  Priven
JobTitle            Psychiatric Technician
BasePay                           73309.86
OvertimePay                         2314.5
OtherPay                           7114.84
Benefits                          29495.79
TotalPay                           82739.2
TotalPayBenefits                 112234.99
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88661, dtype: object)
(88662, Id                             88663
EmployeeName             Hung D Dang
JobTitle            Transit Operator
BasePay                     68312.51
OvertimePay                  8301.74
OtherPay                     2082.85
Benefits                    33530.49
TotalPay                     78697.1
TotalPayBenefits           112227.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88662, dtype: object)
(88663, Id                             88664
EmployeeName         Rochelle  Larry
JobTitle            Transit Operator
BasePay                     67899.77
OvertimePay                 10694.46
OtherPay                      699.65
Benefits                    32932.94
TotalPay                    79293.88
TotalPayBenefits           112226.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88663, dtype: object)
(88664, Id                               88665
EmployeeName              Elise B Lusk
JobTitle            Speech Pathologist
BasePay                       85751.78
OvertimePay                        0.0
OtherPay                         100.0
Benefits                      26368.61
TotalPay                      85851.78
TotalPayBenefits             112220.39
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88664, dtype: object)
(88665, Id                            88666
EmployeeName        Andrew H Molina
JobTitle               Cement Mason
BasePay                     74990.5
OvertimePay                 7947.51
OtherPay                      600.0
Benefits                   28675.47
TotalPay                   83538.01
TotalPayBenefits          112213.48
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88665, dtype: object)
(88666, Id                                       88667
EmployeeName                   Shirley M Green
JobTitle            Protective Services Worker
BasePay                               83193.16
OvertimePay                                0.0
OtherPay                                 566.1
Benefits                              28434.02
TotalPay                              83759.26
TotalPayBenefits                     112193.28
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88666, dtype: object)
(88667, Id                                      88668
EmployeeName                        Al  Garza
JobTitle            EMT/Paramedic/Firefighter
BasePay                              59187.03
OvertimePay                          16039.93
OtherPay                             18398.74
Benefits                             18566.53
TotalPay                              93625.7
TotalPayBenefits                    112192.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88667, dtype: object)
(88668, Id                                88669
EmployeeName        Caroline M Deblasio
JobTitle               Registered Nurse
BasePay                        78348.67
OvertimePay                     6142.95
OtherPay                         3534.5
Benefits                       24164.68
TotalPay                       88026.12
TotalPayBenefits               112190.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88668, dtype: object)
(88669, Id                                          88670
EmployeeName        Veronica Victoria S Salvacruz
JobTitle                   Patient Care Assistant
BasePay                                  65818.41
OvertimePay                              19282.87
OtherPay                                   761.36
Benefits                                 26318.82
TotalPay                                 85862.64
TotalPayBenefits                        112181.46
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88669, dtype: object)
(88670, Id                              88671
EmployeeName        Sandra L Phillips
JobTitle             Police Officer 3
BasePay                      84431.87
OvertimePay                       0.0
OtherPay                       2350.9
Benefits                     25395.38
TotalPay                     86782.77
TotalPayBenefits            112178.15
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88670, dtype: object)
(88671, Id                              88672
EmployeeName         Cheryl J Consing
JobTitle            Fiscal Technician
BasePay                      76070.58
OvertimePay                       0.0
OtherPay                      6525.05
Benefits                     29575.33
TotalPay                     82595.63
TotalPayBenefits            112170.96
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88671, dtype: object)
(88672, Id                                  88673
EmployeeName              Julius M Campos
JobTitle            Deputy Court Clerk II
BasePay                          76070.56
OvertimePay                           0.0
OtherPay                          6525.05
Benefits                         29575.33
TotalPay                         82595.61
TotalPayBenefits                112170.94
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88672, dtype: object)
(88673, Id                                  88674
EmployeeName              Eric A Apolonio
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                          6525.05
Benefits                         29575.33
TotalPay                         82595.59
TotalPayBenefits                112170.92
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88673, dtype: object)
(88674, Id                                  88675
EmployeeName           Janet G Dimayacyac
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                          6525.05
Benefits                         29575.33
TotalPay                         82595.55
TotalPayBenefits                112170.88
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88674, dtype: object)
(88675, Id                                   88676
EmployeeName                Romeo  Cabasal
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        8322.61
OtherPay                           6926.54
Benefits                          28523.76
TotalPay                          83640.15
TotalPayBenefits                 112163.91
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88675, dtype: object)
(88676, Id                                          88677
EmployeeName                      Stella C Wu-Chu
JobTitle            Senior Administrative Analyst
BasePay                                  81257.29
OvertimePay                                   0.0
OtherPay                                  4752.53
Benefits                                 26153.66
TotalPay                                 86009.82
TotalPayBenefits                        112163.48
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88676, dtype: object)
(88677, Id                             88678
EmployeeName          Jorge L Flores
JobTitle            Transit Operator
BasePay                     68886.74
OvertimePay                  2743.63
OtherPay                     5811.59
Benefits                    34719.98
TotalPay                    77441.96
TotalPayBenefits           112161.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88677, dtype: object)
(88678, Id                                         88679
EmployeeName                         Alan Z Yuan
JobTitle            Sr Fare Collections Receiver
BasePay                                 70767.01
OvertimePay                             12900.79
OtherPay                                   648.0
Benefits                                27834.77
TotalPay                                 84315.8
TotalPayBenefits                       112150.57
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88678, dtype: object)
(88679, Id                          88680
EmployeeName           Anna T Lau
JobTitle                Asst Engr
BasePay                  81514.64
OvertimePay                   0.0
OtherPay                   122.53
Benefits                 30512.97
TotalPay                 81637.17
TotalPayBenefits        112150.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88679, dtype: object)
(88680, Id                                88681
EmployeeName          John T Thrailkill
JobTitle            Arborist Technician
BasePay                        80282.52
OvertimePay                      1544.2
OtherPay                         585.91
Benefits                       29734.61
TotalPay                       82412.63
TotalPayBenefits              112147.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88680, dtype: object)
(88681, Id                            88682
EmployeeName        Flavia  Gallion
JobTitle                    Painter
BasePay                    77948.03
OvertimePay                 1056.84
OtherPay                     3323.0
Benefits                   29817.66
TotalPay                   82327.87
TotalPayBenefits          112145.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88681, dtype: object)
(88682, Id                                    88683
EmployeeName                   Jeremy K Eng
JobTitle            Engineering Associate 1
BasePay                            81294.04
OvertimePay                         1011.49
OtherPay                                0.0
Benefits                           29839.52
TotalPay                           82305.53
TotalPayBenefits                  112145.05
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88682, dtype: object)
(88683, Id                                 88684
EmployeeName            Jason J Bernardo
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                          0.0
OtherPay                          1334.8
Benefits                        30675.35
TotalPay                        81467.81
TotalPayBenefits               112143.16
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88683, dtype: object)
(88684, Id                             88685
EmployeeName           Derek A Moore
JobTitle            Transit Operator
BasePay                     61169.58
OvertimePay                 14455.89
OtherPay                     5691.45
Benefits                     30823.9
TotalPay                    81316.92
TotalPayBenefits           112140.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88684, dtype: object)
(88685, Id                                      88686
EmployeeName                  Sayad M Hussein
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           5302.86
OtherPay                             13475.86
Benefits                              29049.1
TotalPay                             83090.92
TotalPayBenefits                    112140.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88685, dtype: object)
(88686, Id                                      88687
EmployeeName                    Mannie  Thang
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           6773.81
OtherPay                               1480.0
Benefits                             28851.83
TotalPay                             83286.82
TotalPayBenefits                    112138.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88686, dtype: object)
(88687, Id                              88688
EmployeeName         Ignacio  Antonio
JobTitle            Parts Storekeeper
BasePay                       64827.0
OvertimePay                  19736.36
OtherPay                       883.33
Benefits                     26689.53
TotalPay                     85446.69
TotalPayBenefits            112136.22
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88687, dtype: object)
(88688, Id                                  88689
EmployeeName               Linda  Allston
JobTitle            Deputy Court Clerk II
BasePay                          76044.48
OvertimePay                           0.0
OtherPay                          6524.81
Benefits                         29565.83
TotalPay                         82569.29
TotalPayBenefits                112135.12
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88688, dtype: object)
(88689, Id                             88690
EmployeeName              Max  Lopez
JobTitle            Transit Operator
BasePay                     64438.31
OvertimePay                 14474.79
OtherPay                     1683.05
Benefits                    31535.79
TotalPay                    80596.15
TotalPayBenefits           112131.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88689, dtype: object)
(88690, Id                                  88691
EmployeeName                 Michael V Ng
JobTitle            Deputy Court Clerk II
BasePay                          76038.92
OvertimePay                           0.0
OtherPay                          6524.78
Benefits                         29563.82
TotalPay                          82563.7
TotalPayBenefits                112127.52
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88690, dtype: object)
(88691, Id                             88692
EmployeeName        Cornel J Zachary
JobTitle            Transit Operator
BasePay                     61995.79
OvertimePay                 18734.68
OtherPay                     1116.09
Benefits                    30279.38
TotalPay                    81846.56
TotalPayBenefits           112125.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88691, dtype: object)
(88692, Id                                   88693
EmployeeName                Patricia  Ruiz
JobTitle            Transit Fare Inspector
BasePay                           66744.01
OvertimePay                        5318.51
OtherPay                           6415.39
Benefits                          33647.51
TotalPay                          78477.91
TotalPayBenefits                 112125.42
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88692, dtype: object)
(88693, Id                                88694
EmployeeName        Jeremiah R McGovern
JobTitle                    Librarian 1
BasePay                        82269.01
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29856.19
TotalPay                       82269.01
TotalPayBenefits               112125.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88693, dtype: object)
(88694, Id                          88695
EmployeeName         Joseph  Sims
JobTitle             Truck Driver
BasePay                  79844.01
OvertimePay                 28.33
OtherPay                  2278.33
Benefits                 29970.85
TotalPay                 82150.67
TotalPayBenefits        112121.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88694, dtype: object)
(88695, Id                                         88696
EmployeeName                   Shannon P Limjuco
JobTitle            Health Program Coordinator 2
BasePay                                 86104.03
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                26012.78
TotalPay                                86104.03
TotalPayBenefits                       112116.81
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88695, dtype: object)
(88696, Id                                  88697
EmployeeName               Erika  Crowder
JobTitle            Executive Secretary 2
BasePay                          79742.53
OvertimePay                       2845.15
OtherPay                              0.0
Benefits                         29529.04
TotalPay                         82587.68
TotalPayBenefits                112116.72
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88696, dtype: object)
(88697, Id                                         88698
EmployeeName                     Magdalene E Lee
JobTitle            Employment & Training Spec 3
BasePay                                 81486.06
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29981.59
TotalPay                                82134.06
TotalPayBenefits                       112115.65
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88697, dtype: object)
(88698, Id                                         88699
EmployeeName                     Jeffrey L Black
JobTitle            Employment & Training Spec 3
BasePay                                 81486.06
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29981.57
TotalPay                                82134.06
TotalPayBenefits                       112115.63
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88698, dtype: object)
(88699, Id                                         88700
EmployeeName                         Lynn  Levey
JobTitle            Employment & Training Spec 3
BasePay                                 81486.06
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29981.56
TotalPay                                82134.06
TotalPayBenefits                       112115.62
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88699, dtype: object)
(88700, Id                                         88701
EmployeeName                     Kathy D Knudson
JobTitle            Employment & Training Spec 3
BasePay                                 81486.05
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29981.56
TotalPay                                82134.05
TotalPayBenefits                       112115.61
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88700, dtype: object)
(88701, Id                                         88702
EmployeeName              Roxie  Vinson-Hardeman
JobTitle            Employment & Training Spec 3
BasePay                                 81486.01
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29981.55
TotalPay                                82134.01
TotalPayBenefits                       112115.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88701, dtype: object)
(88702, Id                               88703
EmployeeName         Catherine A Beier
JobTitle            Speech Pathologist
BasePay                       85305.34
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      26797.47
TotalPay                      85305.34
TotalPayBenefits             112102.81
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88702, dtype: object)
(88703, Id                             88704
EmployeeName        Jerry R Southern
JobTitle            Transit Operator
BasePay                     66377.72
OvertimePay                   6723.6
OtherPay                     5495.26
Benefits                    33505.54
TotalPay                    78596.58
TotalPayBenefits           112102.12
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88703, dtype: object)
(88704, Id                             88705
EmployeeName        Kimberly E Leung
JobTitle                   Asst Engr
BasePay                      81387.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     30712.9
TotalPay                     81387.0
TotalPayBenefits            112099.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88704, dtype: object)
(88705, Id                                   88706
EmployeeName                   Ely T Silva
JobTitle            Psychiatric Technician
BasePay                            71983.1
OvertimePay                        5729.59
OtherPay                           5679.15
Benefits                           28706.1
TotalPay                          83391.84
TotalPayBenefits                 112097.94
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88705, dtype: object)
(88706, Id                                 88707
EmployeeName                Trong  Vuong
JobTitle            Automotive Machinist
BasePay                         80133.02
OvertimePay                       775.43
OtherPay                         1320.85
Benefits                        29858.58
TotalPay                         82229.3
TotalPayBenefits               112087.88
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88706, dtype: object)
(88707, Id                                      88708
EmployeeName                  Arturo P Martin
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           8227.23
OtherPay                             10985.66
Benefits                             28557.08
TotalPay                             83525.09
TotalPayBenefits                    112082.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88707, dtype: object)
(88708, Id                                      88709
EmployeeName                      Rena Y Chan
JobTitle            Senior Eligibility Worker
BasePay                              72120.99
OvertimePay                            9983.4
OtherPay                              2102.85
Benefits                              27874.5
TotalPay                             84207.24
TotalPayBenefits                    112081.74
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88708, dtype: object)
(88709, Id                               88710
EmployeeName        Michelle J Galicia
JobTitle              Transit Operator
BasePay                       67564.51
OvertimePay                    7108.82
OtherPay                        3182.8
Benefits                      34224.66
TotalPay                      77856.13
TotalPayBenefits             112080.79
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88709, dtype: object)
(88710, Id                                      88711
EmployeeName                    Ramon E Cisne
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                          10438.38
OtherPay                              9112.83
Benefits                             28212.13
TotalPay                             83868.21
TotalPayBenefits                    112080.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88710, dtype: object)
(88711, Id                             88712
EmployeeName        Karina L Raygoza
JobTitle               Payroll Clerk
BasePay                      70761.6
OvertimePay                 13611.78
OtherPay                         0.0
Benefits                    27706.45
TotalPay                    84373.38
TotalPayBenefits           112079.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88711, dtype: object)
(88712, Id                                         88713
EmployeeName                   Michael J Godfrey
JobTitle            General Laborer Supervisor 1
BasePay                                  69202.0
OvertimePay                              1483.39
OtherPay                                11689.36
Benefits                                29696.61
TotalPay                                82374.75
TotalPayBenefits                       112071.36
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88712, dtype: object)
(88713, Id                             88714
EmployeeName          Tyrone C Simon
JobTitle            Transit Operator
BasePay                     63594.21
OvertimePay                 12914.88
OtherPay                     3862.99
Benefits                    31694.14
TotalPay                    80372.08
TotalPayBenefits           112066.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88713, dtype: object)
(88714, Id                          88715
EmployeeName        Aaron E Vurek
JobTitle                   Roofer
BasePay                  79136.84
OvertimePay                 883.8
OtherPay                   2220.0
Benefits                 29824.99
TotalPay                 82240.64
TotalPayBenefits        112065.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88714, dtype: object)
(88715, Id                                88716
EmployeeName             Henry  Stevens
JobTitle            Transit Car Cleaner
BasePay                        61122.34
OvertimePay                     14531.5
OtherPay                        8894.58
Benefits                       27516.01
TotalPay                       84548.42
TotalPayBenefits              112064.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88715, dtype: object)
(88716, Id                                          88717
EmployeeName                          San H Voong
JobTitle            Snr Permit and Citation Clerk
BasePay                                  72503.01
OvertimePay                              10660.56
OtherPay                                      0.0
Benefits                                 28900.04
TotalPay                                 83163.57
TotalPayBenefits                        112063.61
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88716, dtype: object)
(88717, Id                               88718
EmployeeName        Christine E Hanson
JobTitle               Health Worker 4
BasePay                       79569.03
OvertimePay                    1989.65
OtherPay                        871.84
Benefits                      29631.59
TotalPay                      82430.52
TotalPayBenefits             112062.11
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88717, dtype: object)
(88718, Id                                         88719
EmployeeName                   Joleen  Kensinger
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.03
OvertimePay                                  0.0
OtherPay                                   600.0
Benefits                                29972.81
TotalPay                                82086.03
TotalPayBenefits                       112058.84
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88718, dtype: object)
(88719, Id                                    88720
EmployeeName          Christopher E Caparro
JobTitle            Engineering Associate 1
BasePay                            81294.02
OvertimePay                          924.22
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           82218.24
TotalPayBenefits                  112057.75
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88719, dtype: object)
(88720, Id                                      88721
EmployeeName           Maria Teresa G De Leon
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                           6865.21
OtherPay                              1327.99
Benefits                             28829.24
TotalPay                              83226.2
TotalPayBenefits                    112055.44
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88720, dtype: object)
(88721, Id                                        88722
EmployeeName                    Kelli E Rudnick
JobTitle            Landscape Architect Assoc 1
BasePay                                81775.21
OvertimePay                              111.86
OtherPay                                    0.0
Benefits                               30160.68
TotalPay                               81887.07
TotalPayBenefits                      112047.75
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88721, dtype: object)
(88722, Id                                   88723
EmployeeName               Graham E Dobson
JobTitle            Administrative Analyst
BasePay                           82445.28
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29597.17
TotalPay                          82445.28
TotalPayBenefits                 112042.45
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88722, dtype: object)
(88723, Id                               88724
EmployeeName           Augustine C Cho
JobTitle            Program Specialist
BasePay                        79247.0
OvertimePay                    2848.07
OtherPay                        408.01
Benefits                       29533.4
TotalPay                      82503.08
TotalPayBenefits             112036.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88723, dtype: object)
(88724, Id                                   88725
EmployeeName             Jonathan Z Wrobel
JobTitle            Administrative Analyst
BasePay                            81870.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30159.66
TotalPay                           81870.0
TotalPayBenefits                 112029.66
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88724, dtype: object)
(88725, Id                           88726
EmployeeName        Jeffrey D Drew
JobTitle            Accountant III
BasePay                   81345.11
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30684.02
TotalPay                  81345.11
TotalPayBenefits         112029.13
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88725, dtype: object)
(88726, Id                                        88727
EmployeeName                   Richard D Duffey
JobTitle            Watershed Keeper Supervisor
BasePay                                 76545.0
OvertimePay                             6626.82
OtherPay                                    0.0
Benefits                               28855.85
TotalPay                               83171.82
TotalPayBenefits                      112027.67
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88726, dtype: object)
(88727, Id                                   88728
EmployeeName           Dartanian A Woodard
JobTitle            Water QualityTech I/II
BasePay                           80903.53
OvertimePay                         1355.4
OtherPay                               0.0
Benefits                          29761.17
TotalPay                          82258.93
TotalPayBenefits                  112020.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88727, dtype: object)
(88728, Id                                         88729
EmployeeName                        Cindy L Ngai
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.04
OvertimePay                               679.06
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                 82165.1
TotalPayBenefits                        112019.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88728, dtype: object)
(88729, Id                           88730
EmployeeName        Jason C Baxter
JobTitle               Librarian 1
BasePay                   82071.37
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29936.34
TotalPay                  82071.37
TotalPayBenefits         112007.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88729, dtype: object)
(88730, Id                             88731
EmployeeName         Audrey L Armour
JobTitle            Transit Operator
BasePay                     67739.23
OvertimePay                  6807.27
OtherPay                     3757.95
Benefits                    33696.66
TotalPay                    78304.45
TotalPayBenefits           112001.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88730, dtype: object)
(88731, Id                                        88732
EmployeeName                     Laryta  Blount
JobTitle            Communications Dispatcher 2
BasePay                                64476.01
OvertimePay                            16699.02
OtherPay                                3663.45
Benefits                               27161.66
TotalPay                               84838.48
TotalPayBenefits                      112000.14
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88731, dtype: object)
(88732, Id                              88733
EmployeeName        Clifton E Puckett
JobTitle             Transit Operator
BasePay                      66439.48
OvertimePay                   20475.3
OtherPay                      5597.98
Benefits                     19486.35
TotalPay                     92512.76
TotalPayBenefits            111999.11
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88732, dtype: object)
(88733, Id                                      88734
EmployeeName                 Patricia A Lloyd
JobTitle            Janitorial Svcs Asst Sprv
BasePay                              72333.05
OvertimePay                          10838.94
OtherPay                                648.0
Benefits                             28148.64
TotalPay                             83819.99
TotalPayBenefits                    111968.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88733, dtype: object)
(88734, Id                                      88735
EmployeeName                Nicole L Humphrey
JobTitle            Automotive Service Worker
BasePay                              58389.99
OvertimePay                          14022.83
OtherPay                             13098.07
Benefits                             26456.84
TotalPay                             85510.89
TotalPayBenefits                    111967.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88734, dtype: object)
(88735, Id                                      88736
EmployeeName                      Ching Y Lui
JobTitle            Senior Eligibility Worker
BasePay                              75033.04
OvertimePay                           6513.29
OtherPay                               1540.0
Benefits                             28864.63
TotalPay                             83086.33
TotalPayBenefits                    111950.96
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88735, dtype: object)
(88736, Id                             88737
EmployeeName         Matthew E Smith
JobTitle            Transit Operator
BasePay                     66845.98
OvertimePay                 11059.42
OtherPay                     1401.05
Benefits                    32620.66
TotalPay                    79306.45
TotalPayBenefits           111927.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88736, dtype: object)
(88737, Id                                        88738
EmployeeName                Antenor D Arenas Jr
JobTitle            Customer Service Agent Supv
BasePay                                81324.06
OvertimePay                              456.32
OtherPay                                 274.68
Benefits                               29866.24
TotalPay                               82055.06
TotalPayBenefits                       111921.3
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88737, dtype: object)
(88738, Id                                88739
EmployeeName        Alexander  Estelita
JobTitle                        Painter
BasePay                        77948.02
OvertimePay                     4817.51
OtherPay                            0.0
Benefits                       29151.49
TotalPay                       82765.53
TotalPayBenefits              111917.02
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88738, dtype: object)
(88739, Id                                           88740
EmployeeName                          Mary E Owens
JobTitle            Prpl Permit and Citation Clerk
BasePay                                    79920.0
OvertimePay                                2455.88
OtherPay                                       0.0
Benefits                                  29540.68
TotalPay                                  82375.88
TotalPayBenefits                         111916.56
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88739, dtype: object)
(88740, Id                                           88741
EmployeeName                           Luz  Cosico
JobTitle            Central Processing & Dist Tech
BasePay                                    71469.0
OvertimePay                                5973.42
OtherPay                                   5568.49
Benefits                                  28901.51
TotalPay                                  83010.91
TotalPayBenefits                         111912.42
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88740, dtype: object)
(88741, Id                           88742
EmployeeName        Philip J Henry
JobTitle                   Painter
BasePay                   77948.03
OvertimePay                3077.89
OtherPay                    1438.0
Benefits                  29447.18
TotalPay                  82463.92
TotalPayBenefits          111911.1
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88741, dtype: object)
(88742, Id                             88743
EmployeeName           Peter  Chiong
JobTitle            Transit Operator
BasePay                     64897.34
OvertimePay                  14707.3
OtherPay                      775.89
Benefits                    31528.68
TotalPay                    80380.53
TotalPayBenefits           111909.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88742, dtype: object)
(88743, Id                                     88744
EmployeeName                    Lisa L Moore
JobTitle            Counselor, Juvenile Hall
BasePay                             67824.64
OvertimePay                         15636.45
OtherPay                             1753.94
Benefits                            26680.84
TotalPay                            85215.03
TotalPayBenefits                   111895.87
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88743, dtype: object)
(88744, Id                                    88745
EmployeeName                       Van L Ha
JobTitle            Engineering Associate 1
BasePay                            81294.03
OvertimePay                          761.71
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           82055.74
TotalPayBenefits                  111895.25
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88744, dtype: object)
(88745, Id                                      88746
EmployeeName                    Noel J Fermin
JobTitle            Licensed Vocational Nurse
BasePay                              73602.02
OvertimePay                           3339.69
OtherPay                              5631.61
Benefits                              29321.9
TotalPay                             82573.32
TotalPayBenefits                    111895.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88745, dtype: object)
(88746, Id                                      88747
EmployeeName                  Sandra E Molina
JobTitle            Senior Eligibility Worker
BasePay                              74894.13
OvertimePay                           5869.49
OtherPay                               2186.8
Benefits                             28940.78
TotalPay                             82950.42
TotalPayBenefits                     111891.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88746, dtype: object)
(88747, Id                             88748
EmployeeName           Dohrman  Wong
JobTitle            Transit Operator
BasePay                     67694.03
OvertimePay                  9441.27
OtherPay                     1626.34
Benefits                     33124.8
TotalPay                    78761.64
TotalPayBenefits           111886.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88747, dtype: object)
(88748, Id                                      88749
EmployeeName               Lawrence  Roberson
JobTitle            Automotive Service Worker
BasePay                              60915.27
OvertimePay                          15859.95
OtherPay                              8402.17
Benefits                             26701.37
TotalPay                             85177.39
TotalPayBenefits                    111878.76
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88748, dtype: object)
(88749, Id                                   88750
EmployeeName               Patricia L Ford
JobTitle            Water QualityTech I/II
BasePay                           79876.35
OvertimePay                        2604.91
OtherPay                               0.0
Benefits                          29395.95
TotalPay                          82481.26
TotalPayBenefits                 111877.21
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88749, dtype: object)
(88750, Id                                88751
EmployeeName           Albert A Santoyo
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    12703.55
OtherPay                       10248.87
Benefits                       27787.21
TotalPay                       84080.42
TotalPayBenefits              111867.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88750, dtype: object)
(88751, Id                                  88752
EmployeeName              Norbert B Ralph
JobTitle            Clinical Psychologist
BasePay                           83008.8
OvertimePay                           0.0
OtherPay                          1297.67
Benefits                         27560.68
TotalPay                         84306.47
TotalPayBenefits                111867.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88751, dtype: object)
(88752, Id                                           88753
EmployeeName                      Benita M Briones
JobTitle            IT Operations Support Admn III
BasePay                                   81287.38
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30579.74
TotalPay                                  81287.38
TotalPayBenefits                         111867.12
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88752, dtype: object)
(88753, Id                            88754
EmployeeName           Rory  Pinson
JobTitle            Utility Plumber
BasePay                    83747.84
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    28103.0
TotalPay                   83747.84
TotalPayBenefits          111850.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88753, dtype: object)
(88754, Id                           88755
EmployeeName             Judy  Lam
JobTitle            Accountant III
BasePay                   88931.71
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   22916.7
TotalPay                  88931.71
TotalPayBenefits         111848.41
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88754, dtype: object)
(88755, Id                                          88756
EmployeeName                    Mary S Rohrbacker
JobTitle            Senior Administrative Analyst
BasePay                                  83549.96
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 28295.02
TotalPay                                 83549.96
TotalPayBenefits                        111844.98
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88755, dtype: object)
(88756, Id                             88757
EmployeeName          Sara J Paredes
JobTitle            Registered Nurse
BasePay                     84111.91
OvertimePay                      0.0
OtherPay                      1150.0
Benefits                    26570.47
TotalPay                    85261.91
TotalPayBenefits           111832.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88756, dtype: object)
(88757, Id                               88758
EmployeeName        Errol T Washington
JobTitle              Transit Operator
BasePay                       66708.39
OvertimePay                   11219.84
OtherPay                       1337.16
Benefits                      32562.57
TotalPay                      79265.39
TotalPayBenefits             111827.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88757, dtype: object)
(88758, Id                           88759
EmployeeName        David M Graham
JobTitle                 Asst Engr
BasePay                    81188.5
OvertimePay                    0.0
OtherPay                       0.0
Benefits                   30633.8
TotalPay                   81188.5
TotalPayBenefits          111822.3
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88758, dtype: object)
(88759, Id                             88760
EmployeeName          Jackey W Zheng
JobTitle            Transit Operator
BasePay                     66689.81
OvertimePay                 11320.44
OtherPay                      674.39
Benefits                    33136.06
TotalPay                    78684.64
TotalPayBenefits            111820.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88759, dtype: object)
(88760, Id                                  88761
EmployeeName          David J Crutchfield
JobTitle            Medical Social Worker
BasePay                          81196.05
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30623.86
TotalPay                         81196.05
TotalPayBenefits                111819.91
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88760, dtype: object)
(88761, Id                               88762
EmployeeName        Joseph V Demafeliz
JobTitle                       Painter
BasePay                        77948.0
OvertimePay                    2949.35
OtherPay                         798.0
Benefits                      30123.31
TotalPay                      81695.35
TotalPayBenefits             111818.66
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88761, dtype: object)
(88762, Id                                 88763
EmployeeName                Winston  Hom
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                       445.35
OtherPay                          1370.8
Benefits                        29868.48
TotalPay                        81949.15
TotalPayBenefits               111817.63
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88762, dtype: object)
(88763, Id                                        88764
EmployeeName                        Lana  Ewing
JobTitle            Communications Dispatcher 2
BasePay                                 62029.5
OvertimePay                            16845.47
OtherPay                                6317.94
Benefits                               26617.61
TotalPay                               85192.91
TotalPayBenefits                      111810.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88763, dtype: object)
(88764, Id                           88765
EmployeeName           Eric Y Wang
JobTitle            Police Officer
BasePay                    78591.0
OvertimePay                3622.53
OtherPay                   1839.32
Benefits                  27754.31
TotalPay                  84052.85
TotalPayBenefits         111807.16
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88764, dtype: object)
(88765, Id                               88766
EmployeeName        Curtis D Hartdegen
JobTitle               Junior Engineer
BasePay                       81841.03
OvertimePay                        0.0
OtherPay                           0.0
Benefits                       29964.5
TotalPay                      81841.03
TotalPayBenefits             111805.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88765, dtype: object)
(88766, Id                                      88767
EmployeeName                    Craig A Jones
JobTitle            Personal Property Auditor
BasePay                              81807.02
OvertimePay                               0.0
OtherPay                                440.0
Benefits                              29557.1
TotalPay                             82247.02
TotalPayBenefits                    111804.12
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88766, dtype: object)
(88767, Id                                    88768
EmployeeName                 Lori A Morales
JobTitle            Parking Control Officer
BasePay                            59201.42
OvertimePay                        20813.06
OtherPay                            5334.49
Benefits                           26439.81
TotalPay                           85348.97
TotalPayBenefits                  111788.78
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88767, dtype: object)
(88768, Id                                   88769
EmployeeName                 Luciana  Tsay
JobTitle            Social Work Supervisor
BasePay                           81179.05
OvertimePay                            0.0
OtherPay                             600.0
Benefits                           29990.7
TotalPay                          81779.05
TotalPayBenefits                 111769.75
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88768, dtype: object)
(88769, Id                             88770
EmployeeName            Lai Lung  Ng
JobTitle            Transit Operator
BasePay                     67816.63
OvertimePay                  9418.71
OtherPay                      815.77
Benefits                    33715.18
TotalPay                    78051.11
TotalPayBenefits           111766.29
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88769, dtype: object)
(88770, Id                             88771
EmployeeName          Marvin L Terry
JobTitle            Transit Operator
BasePay                     67328.06
OvertimePay                  4442.12
OtherPay                     5914.01
Benefits                    34080.01
TotalPay                    77684.19
TotalPayBenefits            111764.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88770, dtype: object)
(88771, Id                             88772
EmployeeName            Tho A Nguyen
JobTitle            Transit Operator
BasePay                     69145.98
OvertimePay                  5465.66
OtherPay                     2335.51
Benefits                    34808.84
TotalPay                    76947.15
TotalPayBenefits           111755.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88771, dtype: object)
(88772, Id                                   88773
EmployeeName              Staycee M Gordon
JobTitle            Public SafetyComm Disp
BasePay                            74344.7
OvertimePay                        4621.91
OtherPay                           5285.26
Benefits                          27502.42
TotalPay                          84251.87
TotalPayBenefits                 111754.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88772, dtype: object)
(88773, Id                          88774
EmployeeName        James P Chase
JobTitle             Truck Driver
BasePay                   80049.0
OvertimePay                 817.0
OtherPay                  1102.36
Benefits                 29781.28
TotalPay                 81968.36
TotalPayBenefits        111749.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88773, dtype: object)
(88774, Id                                      88775
EmployeeName                        Hung T Ma
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           6304.86
OtherPay                               1540.0
Benefits                             28866.51
TotalPay                             82877.87
TotalPayBenefits                    111744.38
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88774, dtype: object)
(88775, Id                          88776
EmployeeName        Denise  Nucum
JobTitle            Special Nurse
BasePay                  97376.17
OvertimePay                282.32
OtherPay                 12975.99
Benefits                  1106.37
TotalPay                110634.48
TotalPayBenefits        111740.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88775, dtype: object)
(88776, Id                                88777
EmployeeName                Gary W Chen
JobTitle            IS Business Analyst
BasePay                         81789.0
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29947.52
TotalPay                        81789.0
TotalPayBenefits              111736.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88776, dtype: object)
(88777, Id                                          88778
EmployeeName                    Lawrence G Nichol
JobTitle            Transit Fare Insp. Sup/Invst.
BasePay                                  80115.81
OvertimePay                                   0.0
OtherPay                                  1677.75
Benefits                                 29940.56
TotalPay                                 81793.56
TotalPayBenefits                        111734.12
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88777, dtype: object)
(88778, Id                              88779
EmployeeName        Manuel D Bermudez
JobTitle             Transit Operator
BasePay                      62007.93
OvertimePay                  18135.49
OtherPay                      1374.24
Benefits                     30208.91
TotalPay                     81517.66
TotalPayBenefits            111726.57
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88778, dtype: object)
(88779, Id                             88780
EmployeeName         Howard J Nelson
JobTitle            Transit Operator
BasePay                     64385.21
OvertimePay                 14514.58
OtherPay                     1411.57
Benefits                    31407.58
TotalPay                    80311.36
TotalPayBenefits           111718.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88779, dtype: object)
(88780, Id                                          88781
EmployeeName                      Charles A Belov
JobTitle            IS Business Analyst-Assistant
BasePay                                  81780.05
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29936.53
TotalPay                                 81780.05
TotalPayBenefits                        111716.58
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88780, dtype: object)
(88781, Id                                          88782
EmployeeName                         Buckman  Lee
JobTitle            IS Business Analyst-Assistant
BasePay                                  81780.04
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29936.53
TotalPay                                 81780.04
TotalPayBenefits                        111716.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88781, dtype: object)
(88782, Id                                  88783
EmployeeName               Michael W Jula
JobTitle            IS Programmer Analyst
BasePay                           81780.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          29936.5
TotalPay                          81780.0
TotalPayBenefits                 111716.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88782, dtype: object)
(88783, Id                                 88784
EmployeeName           William E Wallace
JobTitle            Automotive Machinist
BasePay                         80133.02
OvertimePay                       391.65
OtherPay                         1324.91
Benefits                        29858.95
TotalPay                        81849.58
TotalPayBenefits               111708.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88783, dtype: object)
(88784, Id                                       88785
EmployeeName                   Liliana D Mejia
JobTitle            Protective Services Worker
BasePay                               80459.72
OvertimePay                                0.0
OtherPay                               3143.66
Benefits                              28104.14
TotalPay                              83603.38
TotalPayBenefits                     111707.52
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88784, dtype: object)
(88785, Id                                88786
EmployeeName            Kimvan L Nguyen
JobTitle            Health Care Analyst
BasePay                        81074.51
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30632.29
TotalPay                       81074.51
TotalPayBenefits               111706.8
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88785, dtype: object)
(88786, Id                              88787
EmployeeName        Raymond H Johnson
JobTitle               Deputy Sheriff
BasePay                      63282.53
OvertimePay                  17234.61
OtherPay                      8074.85
Benefits                     23111.84
TotalPay                     88591.99
TotalPayBenefits            111703.83
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88786, dtype: object)
(88787, Id                              88788
EmployeeName         Denise M Thurman
JobTitle            Nursing Assistant
BasePay                      68335.59
OvertimePay                   9479.28
OtherPay                      5629.48
Benefits                      28256.7
TotalPay                     83444.35
TotalPayBenefits            111701.05
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88787, dtype: object)
(88788, Id                             88789
EmployeeName              Huy H Tran
JobTitle            Transit Operator
BasePay                     68769.22
OvertimePay                  7999.01
OtherPay                     1379.31
Benefits                    33550.11
TotalPay                    78147.54
TotalPayBenefits           111697.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88788, dtype: object)
(88789, Id                                     88790
EmployeeName             Patrick M O'Connell
JobTitle            Track Maintenance Worker
BasePay                             62970.64
OvertimePay                         19680.92
OtherPay                             2529.88
Benefits                            26515.99
TotalPay                            85181.44
TotalPayBenefits                   111697.43
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88789, dtype: object)
(88790, Id                                   88791
EmployeeName                   Joseph  Szu
JobTitle            Social Work Supervisor
BasePay                           79759.03
OvertimePay                            0.0
OtherPay                            2000.0
Benefits                          29937.94
TotalPay                          81759.03
TotalPayBenefits                 111696.97
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88790, dtype: object)
(88791, Id                             88792
EmployeeName              Quang D Ly
JobTitle            Transit Operator
BasePay                     68767.43
OvertimePay                  5048.82
OtherPay                     3685.57
Benefits                    34194.86
TotalPay                    77501.82
TotalPayBenefits           111696.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88791, dtype: object)
(88792, Id                            88793
EmployeeName        James R Celedon
JobTitle            Switch Repairer
BasePay                    64176.87
OvertimePay                11219.61
OtherPay                    8705.18
Benefits                   27585.87
TotalPay                   84101.66
TotalPayBenefits          111687.53
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88792, dtype: object)
(88793, Id                                   88794
EmployeeName                   Kevin  Hinh
JobTitle            Customer Service Agent
BasePay                            71288.0
OvertimePay                        4274.37
OtherPay                           7038.07
Benefits                          29083.63
TotalPay                          82600.44
TotalPayBenefits                 111684.07
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88793, dtype: object)
(88794, Id                                       88795
EmployeeName                     Ana R Vasquez
JobTitle            Protective Services Worker
BasePay                               79659.03
OvertimePay                                0.0
OtherPay                                1420.0
Benefits                              30601.21
TotalPay                              81079.03
TotalPayBenefits                     111680.24
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88794, dtype: object)
(88795, Id                                88796
EmployeeName            David G Cleasby
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                     3145.82
OtherPay                         678.37
Benefits                       29380.33
TotalPay                       82294.79
TotalPayBenefits              111675.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88795, dtype: object)
(88796, Id                                   88797
EmployeeName           Evangeline P Blanco
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       15036.33
OtherPay                             898.0
Benefits                          27343.18
TotalPay                          84325.33
TotalPayBenefits                 111668.51
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88796, dtype: object)
(88797, Id                                   88798
EmployeeName                 Roger  Walker
JobTitle            Psychiatric Technician
BasePay                           69570.11
OvertimePay                        8924.02
OtherPay                           5431.19
Benefits                          27740.11
TotalPay                          83925.32
TotalPayBenefits                 111665.43
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88797, dtype: object)
(88798, Id                                           88799
EmployeeName                          Alvin S Tong
JobTitle            IT Operations Support Admn III
BasePay                                   81895.16
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29769.96
TotalPay                                  81895.16
TotalPayBenefits                         111665.12
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88798, dtype: object)
(88799, Id                                           88800
EmployeeName                         Natalie C Coe
JobTitle            IT Operations Support Admn III
BasePay                                   77995.64
OvertimePay                                    0.0
OtherPay                                   3038.19
Benefits                                  30625.93
TotalPay                                  81033.83
TotalPayBenefits                         111659.76
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88799, dtype: object)
(88800, Id                                  88801
EmployeeName                  Wendy P Lee
JobTitle            Deputy Court Clerk II
BasePay                           74658.1
OvertimePay                           0.0
OtherPay                          7497.05
Benefits                          29504.3
TotalPay                         82155.15
TotalPayBenefits                111659.45
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88800, dtype: object)
(88801, Id                                    88802
EmployeeName                Enkhtuya  Bliss
JobTitle            Engineering Associate 1
BasePay                            81585.02
OvertimePay                          181.18
OtherPay                                0.0
Benefits                            29892.5
TotalPay                            81766.2
TotalPayBenefits                   111658.7
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88801, dtype: object)
(88802, Id                               88803
EmployeeName          Irene T Kozakura
JobTitle            Program Specialist
BasePay                       81418.02
OvertimePay                        0.0
OtherPay                         312.0
Benefits                      29922.32
TotalPay                      81730.02
TotalPayBenefits             111652.34
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88802, dtype: object)
(88803, Id                              88804
EmployeeName        Marcel C Williams
JobTitle                    Asst Engr
BasePay                      81001.88
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30643.71
TotalPay                     81001.88
TotalPayBenefits            111645.59
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88803, dtype: object)
(88804, Id                               88805
EmployeeName        Catalina  Gonzalez
JobTitle                     Asst Engr
BasePay                       81000.01
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30643.07
TotalPay                      81000.01
TotalPayBenefits             111643.08
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88804, dtype: object)
(88805, Id                                          88806
EmployeeName                          Henry  Choy
JobTitle            Airport Operations Supervisor
BasePay                                  80589.84
OvertimePay                               1241.63
OtherPay                                   983.86
Benefits                                 28821.08
TotalPay                                 82815.33
TotalPayBenefits                        111636.41
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88805, dtype: object)
(88806, Id                                  88807
EmployeeName           Gracia  Monterrosa
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           5688.0
Benefits                         29877.43
TotalPay                         81758.53
TotalPayBenefits                111635.96
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88806, dtype: object)
(88807, Id                                      88808
EmployeeName               Patricia M Vicente
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           5578.51
OtherPay                               2048.0
Benefits                             28964.63
TotalPay                             82659.53
TotalPayBenefits                    111624.16
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88807, dtype: object)
(88808, Id                                        88809
EmployeeName             Jaroslaw  Wedrychowski
JobTitle            Forensic Autopsy Technician
BasePay                                 73899.0
OvertimePay                             7162.09
OtherPay                                 1863.0
Benefits                               28700.06
TotalPay                               82924.09
TotalPayBenefits                      111624.15
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88808, dtype: object)
(88809, Id                             88810
EmployeeName         James E Shelton
JobTitle            Transit Operator
BasePay                     67112.83
OvertimePay                  9206.12
OtherPay                     2294.23
Benefits                    33010.23
TotalPay                    78613.18
TotalPayBenefits           111623.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88809, dtype: object)
(88810, Id                                          88811
EmployeeName                      Abigail F Maher
JobTitle            Senior Administrative Analyst
BasePay                                  92179.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 19430.74
TotalPay                                 92179.03
TotalPayBenefits                        111609.77
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88810, dtype: object)
(88811, Id                               88812
EmployeeName        Ivania G Navarrete
JobTitle               Legal Assistant
BasePay                       81686.53
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      29917.74
TotalPay                      81686.53
TotalPayBenefits             111604.27
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88811, dtype: object)
(88812, Id                             88813
EmployeeName        Tyrene L Labutan
JobTitle             Legal Assistant
BasePay                     81686.51
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29917.74
TotalPay                    81686.51
TotalPayBenefits           111604.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88812, dtype: object)
(88813, Id                            88814
EmployeeName         Tamar K Eggers
JobTitle            Legal Assistant
BasePay                     81686.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29917.74
TotalPay                    81686.5
TotalPayBenefits          111604.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88813, dtype: object)
(88814, Id                                      88815
EmployeeName                Isaiah D Njissang
JobTitle            Assistant Const Inspector
BasePay                               81686.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29917.74
TotalPay                              81686.5
TotalPayBenefits                    111604.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88814, dtype: object)
(88815, Id                            88816
EmployeeName        Benjamin K Tsui
JobTitle            Legal Assistant
BasePay                     81686.5
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29917.74
TotalPay                    81686.5
TotalPayBenefits          111604.24
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88815, dtype: object)
(88816, Id                            88817
EmployeeName        Renee H Beaupre
JobTitle            Legal Assistant
BasePay                    81685.11
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29912.75
TotalPay                   81685.11
TotalPayBenefits          111597.86
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88816, dtype: object)
(88817, Id                          88818
EmployeeName          Janey  Chan
JobTitle                Asst Engr
BasePay                  81908.53
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29686.96
TotalPay                 81908.53
TotalPayBenefits        111595.49
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88817, dtype: object)
(88818, Id                                         88819
EmployeeName                      Craig S Rigler
JobTitle            Sr Fare Collections Receiver
BasePay                                  70767.0
OvertimePay                              5605.01
OtherPay                                  6289.1
Benefits                                28933.19
TotalPay                                82661.11
TotalPayBenefits                        111594.3
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88818, dtype: object)
(88819, Id                                 88820
EmployeeName               James A Cecil
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       333.46
OtherPay                         1271.35
Benefits                         29849.1
TotalPay                        81737.82
TotalPayBenefits               111586.92
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88819, dtype: object)
(88820, Id                                  88821
EmployeeName               Ramona  Torres
JobTitle            Emp & Training Spec 2
BasePay                          79542.07
OvertimePay                           0.0
OtherPay                           2148.0
Benefits                         29887.81
TotalPay                         81690.07
TotalPayBenefits                111577.88
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88820, dtype: object)
(88821, Id                             88822
EmployeeName             Gary R Farr
JobTitle            Transit Operator
BasePay                     68020.28
OvertimePay                  6437.57
OtherPay                     3379.62
Benefits                    33731.26
TotalPay                    77837.47
TotalPayBenefits           111568.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88821, dtype: object)
(88822, Id                                     88823
EmployeeName               Theodore J Flores
JobTitle            Counselor, Juvenile Hall
BasePay                             67553.37
OvertimePay                          9889.98
OtherPay                             6731.71
Benefits                            27389.41
TotalPay                            84175.06
TotalPayBenefits                   111564.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88822, dtype: object)
(88823, Id                             88824
EmployeeName        Jeffrey H Bishop
JobTitle                 Electrician
BasePay                     73069.38
OvertimePay                 12344.66
OtherPay                         0.0
Benefits                    26147.94
TotalPay                    85414.04
TotalPayBenefits           111561.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88823, dtype: object)
(88824, Id                             88825
EmployeeName            Foster H Xie
JobTitle            Transit Operator
BasePay                     68392.85
OvertimePay                  7159.53
OtherPay                     1788.24
Benefits                    34220.65
TotalPay                    77340.62
TotalPayBenefits           111561.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88824, dtype: object)
(88825, Id                                  88826
EmployeeName                 Jesus V Diaz
JobTitle            Medical Social Worker
BasePay                           80348.6
OvertimePay                           0.0
OtherPay                           1300.0
Benefits                         29911.07
TotalPay                          81648.6
TotalPayBenefits                111559.67
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88825, dtype: object)
(88826, Id                                88827
EmployeeName        Rolly A Paningbatan
JobTitle               Transit Operator
BasePay                        68094.98
OvertimePay                     7779.69
OtherPay                        1626.06
Benefits                       34047.02
TotalPay                       77500.73
TotalPayBenefits              111547.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88826, dtype: object)
(88827, Id                                      88828
EmployeeName          Philippe Jason C Cabral
JobTitle            Assistant Const Inspector
BasePay                               70531.4
OvertimePay                          15339.97
OtherPay                                  0.0
Benefits                             25673.05
TotalPay                             85871.37
TotalPayBenefits                    111544.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88827, dtype: object)
(88828, Id                                      88829
EmployeeName                   Kwok Hop  Chui
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           6148.58
OtherPay                               1500.0
Benefits                             28859.21
TotalPay                              82681.6
TotalPayBenefits                    111540.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88828, dtype: object)
(88829, Id                                 88830
EmployeeName        Leonardo A Hernandez
JobTitle            Automotive Machinist
BasePay                         80133.04
OvertimePay                       221.55
OtherPay                          1322.2
Benefits                        29858.21
TotalPay                        81676.79
TotalPayBenefits                111535.0
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88829, dtype: object)
(88830, Id                                  88831
EmployeeName                  Edward  Lau
JobTitle            Emp & Training Spec 2
BasePay                          79542.16
OvertimePay                           0.0
OtherPay                           2108.0
Benefits                         29880.53
TotalPay                         81650.16
TotalPayBenefits                111530.69
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88830, dtype: object)
(88831, Id                                     88832
EmployeeName                    Sandy  Thong
JobTitle            Personnel/Payroll Repres
BasePay                             75775.43
OvertimePay                           609.51
OtherPay                             5371.95
Benefits                            29757.45
TotalPay                            81756.89
TotalPayBenefits                   111514.34
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88831, dtype: object)
(88832, Id                                88833
EmployeeName             Jeffrey J Kyee
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                     1154.47
OtherPay                        1376.68
Benefits                        29698.3
TotalPay                       81814.65
TotalPayBenefits              111512.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88832, dtype: object)
(88833, Id                                      88834
EmployeeName                Anne So-Yan T Mak
JobTitle            Janitorial Svcs Asst Sprv
BasePay                               72333.0
OvertimePay                           3536.32
OtherPay                              6373.28
Benefits                              29268.5
TotalPay                              82242.6
TotalPayBenefits                     111511.1
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88833, dtype: object)
(88834, Id                                88835
EmployeeName        Ernestina  Carrillo
JobTitle                     Manager II
BasePay                        64134.04
OvertimePay                         0.0
OtherPay                        23953.7
Benefits                       23410.86
TotalPay                       88087.74
TotalPayBenefits               111498.6
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88834, dtype: object)
(88835, Id                             88836
EmployeeName        Peter  Gorbachev
JobTitle                     Painter
BasePay                     77948.01
OvertimePay                  3331.46
OtherPay                       889.0
Benefits                    29325.69
TotalPay                    82168.47
TotalPayBenefits           111494.16
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88835, dtype: object)
(88836, Id                             88837
EmployeeName             Jimmy Y Cai
JobTitle            Transit Operator
BasePay                     68468.38
OvertimePay                  4218.75
OtherPay                     3942.22
Benefits                    34856.86
TotalPay                    76629.35
TotalPayBenefits           111486.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88836, dtype: object)
(88837, Id                                   88838
EmployeeName        Francisco J Solorio Jr
JobTitle                  Transit Operator
BasePay                           67982.52
OvertimePay                        6436.73
OtherPay                           2760.42
Benefits                          34301.93
TotalPay                          77179.67
TotalPayBenefits                  111481.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88837, dtype: object)
(88838, Id                              88839
EmployeeName        Teresa M Kavanagh
JobTitle            Project Manager 1
BasePay                       84378.7
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     27097.96
TotalPay                      84378.7
TotalPayBenefits            111476.66
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88838, dtype: object)
(88839, Id                                   88840
EmployeeName                  Bill H Trinh
JobTitle            Water QualityTech I/II
BasePay                           80903.54
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30570.21
TotalPay                          80903.54
TotalPayBenefits                 111473.75
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88839, dtype: object)
(88840, Id                                   88841
EmployeeName          Constantino A Campos
JobTitle            Water QualityTech I/II
BasePay                            80903.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30570.19
TotalPay                           80903.5
TotalPayBenefits                 111473.69
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88840, dtype: object)
(88841, Id                                   88842
EmployeeName                  Cynthia  Hoe
JobTitle            Administrative Analyst
BasePay                           82049.74
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29419.27
TotalPay                          82049.74
TotalPayBenefits                 111469.01
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88841, dtype: object)
(88842, Id                                88843
EmployeeName             Jesus M Lezama
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    12443.93
OtherPay                       10126.29
Benefits                       27769.16
TotalPay                       83698.22
TotalPayBenefits              111467.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88842, dtype: object)
(88843, Id                                 88844
EmployeeName        Tewolde  Weldetensae
JobTitle             Survey Assistant II
BasePay                          80877.5
OvertimePay                       799.53
OtherPay                             0.0
Benefits                        29787.28
TotalPay                        81677.03
TotalPayBenefits               111464.31
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88843, dtype: object)
(88844, Id                               88845
EmployeeName        Mabel  Chow Phipps
JobTitle                   Secretary 2
BasePay                       67398.06
OvertimePay                   12747.01
OtherPay                       3614.58
Benefits                      27699.58
TotalPay                      83759.65
TotalPayBenefits             111459.23
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88844, dtype: object)
(88845, Id                                         88846
EmployeeName                    Sarah F Richmond
JobTitle            Sr Psychiatric Social Worker
BasePay                                  82223.4
OvertimePay                                  0.0
OtherPay                                   830.0
Benefits                                28405.75
TotalPay                                 83053.4
TotalPayBenefits                       111459.15
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88845, dtype: object)
(88846, Id                                     88847
EmployeeName             Jennifer K Landgren
JobTitle            Senior Personnel Analyst
BasePay                             82347.62
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29107.18
TotalPay                            82347.62
TotalPayBenefits                    111454.8
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 88846, dtype: object)
(88847, Id                             88848
EmployeeName        Donya J Drummond
JobTitle                 Librarian 1
BasePay                     80897.89
OvertimePay                      0.0
OtherPay                      944.87
Benefits                    29610.71
TotalPay                    81842.76
TotalPayBenefits           111453.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88847, dtype: object)
(88848, Id                            88849
EmployeeName        Brenda L Sgamba
JobTitle               Truck Driver
BasePay                     79347.4
OvertimePay                 1662.69
OtherPay                     937.81
Benefits                   29498.12
TotalPay                    81947.9
TotalPayBenefits          111446.02
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88848, dtype: object)
(88849, Id                                        88850
EmployeeName        Pearline M Hawkins-Williams
JobTitle                        Legal Assistant
BasePay                                81571.74
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29872.13
TotalPay                               81571.74
TotalPayBenefits                      111443.87
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88849, dtype: object)
(88850, Id                                        88851
EmployeeName                    Wendy  Hamilton
JobTitle            Senior Management Assistant
BasePay                                81562.99
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29871.58
TotalPay                               81562.99
TotalPayBenefits                      111434.57
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88850, dtype: object)
(88851, Id                                           88852
EmployeeName                       Teresita O Arao
JobTitle            Central Processing & Dist Tech
BasePay                                   71419.37
OvertimePay                                5039.77
OtherPay                                   6003.55
Benefits                                  28967.58
TotalPay                                  82462.69
TotalPayBenefits                         111430.27
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88851, dtype: object)
(88852, Id                                      88853
EmployeeName                       DinHop  Ng
JobTitle            Automotive Service Worker
BasePay                               64317.0
OvertimePay                          12409.66
OtherPay                              6930.86
Benefits                             27771.11
TotalPay                             83657.52
TotalPayBenefits                    111428.63
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88852, dtype: object)
(88853, Id                          88854
EmployeeName        Daniel  Pagee
JobTitle             Truck Driver
BasePay                   79249.7
OvertimePay                231.08
OtherPay                   2214.0
Benefits                 29725.73
TotalPay                 81694.78
TotalPayBenefits        111420.51
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88853, dtype: object)
(88854, Id                           88855
EmployeeName        Joan M Ignacio
JobTitle             Special Nurse
BasePay                   97602.46
OvertimePay                    0.0
OtherPay                  12714.82
Benefits                   1103.18
TotalPay                 110317.28
TotalPayBenefits         111420.46
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88854, dtype: object)
(88855, Id                                      88856
EmployeeName                 Tim J Bowersmith
JobTitle            Automotive Service Worker
BasePay                              64077.53
OvertimePay                          10193.82
OtherPay                              9049.95
Benefits                             28097.81
TotalPay                              83321.3
TotalPayBenefits                    111419.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88855, dtype: object)
(88856, Id                                   88857
EmployeeName               Brigitte D King
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        8173.89
OtherPay                           6419.94
Benefits                          28433.11
TotalPay                          82984.83
TotalPayBenefits                 111417.94
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88856, dtype: object)
(88857, Id                                  88858
EmployeeName              Theresa Y Yeung
JobTitle            Deputy Court Clerk II
BasePay                          75784.34
OvertimePay                           0.0
OtherPay                          5945.93
Benefits                         29676.37
TotalPay                         81730.27
TotalPayBenefits                111406.64
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88857, dtype: object)
(88858, Id                                   88859
EmployeeName             Salvacion G Aldon
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        8115.19
OtherPay                           6455.85
Benefits                          28440.69
TotalPay                          82962.04
TotalPayBenefits                 111402.73
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88858, dtype: object)
(88859, Id                              88860
EmployeeName          Marivic D Viray
JobTitle            Fiscal Technician
BasePay                      76070.56
OvertimePay                       0.0
OtherPay                      5877.05
Benefits                     29447.97
TotalPay                     81947.61
TotalPayBenefits            111395.58
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88859, dtype: object)
(88860, Id                                  88861
EmployeeName               Julius G Casas
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                          5877.05
Benefits                         29447.97
TotalPay                         81947.56
TotalPayBenefits                111395.53
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88860, dtype: object)
(88861, Id                                  88862
EmployeeName                 Heng May  Tu
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                          5877.05
Benefits                         29447.97
TotalPay                         81947.56
TotalPayBenefits                111395.53
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88861, dtype: object)
(88862, Id                                88863
EmployeeName          Victoria T Flores
JobTitle            Estate Investigator
BasePay                        81683.23
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29707.18
TotalPay                       81683.23
TotalPayBenefits              111390.41
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88862, dtype: object)
(88863, Id                               88864
EmployeeName            Jose A Aguirre
JobTitle            Transit Supervisor
BasePay                       62005.32
OvertimePay                    11294.1
OtherPay                       6801.79
Benefits                      31288.96
TotalPay                      80101.21
TotalPayBenefits             111390.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88863, dtype: object)
(88864, Id                                           88865
EmployeeName                      Victoria D Mycue
JobTitle            Marriage, Family & Child Cnslr
BasePay                                   81581.77
OvertimePay                                    0.0
OtherPay                                    1080.0
Benefits                                  28725.83
TotalPay                                  82661.77
TotalPayBenefits                          111387.6
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88864, dtype: object)
(88865, Id                            88866
EmployeeName          Gino  Larrain
JobTitle            Health Worker 2
BasePay                    59805.01
OvertimePay                 16235.0
OtherPay                     9708.0
Benefits                    25639.5
TotalPay                   85748.01
TotalPayBenefits          111387.51
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88865, dtype: object)
(88866, Id                                 88867
EmployeeName                     Ken  Wu
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                          0.0
OtherPay                          1378.0
Benefits                        29869.31
TotalPay                         81511.0
TotalPayBenefits               111380.31
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88866, dtype: object)
(88867, Id                                   88868
EmployeeName        Charito S Amores-Bello
JobTitle                  Registered Nurse
BasePay                            71396.2
OvertimePay                        4756.52
OtherPay                          11243.81
Benefits                          23977.13
TotalPay                          87396.53
TotalPayBenefits                 111373.66
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88867, dtype: object)
(88868, Id                             88869
EmployeeName        Mohammed N Warsi
JobTitle            Transit Operator
BasePay                     66823.84
OvertimePay                  6256.67
OtherPay                     4776.55
Benefits                     33512.5
TotalPay                    77857.06
TotalPayBenefits           111369.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88868, dtype: object)
(88869, Id                                      88870
EmployeeName                      Jaimeg  Lim
JobTitle            Fare Collections Receiver
BasePay                               61128.0
OvertimePay                          19197.81
OtherPay                               4406.4
Benefits                             26625.71
TotalPay                             84732.21
TotalPayBenefits                    111357.92
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88869, dtype: object)
(88870, Id                              88871
EmployeeName           Marlo C Thomas
JobTitle            Personnel Analyst
BasePay                      81827.54
OvertimePay                       0.0
OtherPay                          0.0
Benefits                      29528.4
TotalPay                     81827.54
TotalPayBenefits            111355.94
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88870, dtype: object)
(88871, Id                              88872
EmployeeName        Thomas N McDonald
JobTitle                 Truck Driver
BasePay                      78309.06
OvertimePay                    365.19
OtherPay                      3133.63
Benefits                     29545.29
TotalPay                     81807.88
TotalPayBenefits            111353.17
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88871, dtype: object)
(88872, Id                                  88873
EmployeeName              Rudy J Gonzalez
JobTitle            Emp & Training Spec 2
BasePay                          79542.06
OvertimePay                           0.0
OtherPay                           1956.0
Benefits                         29852.19
TotalPay                         81498.06
TotalPayBenefits                111350.25
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88872, dtype: object)
(88873, Id                                   88874
EmployeeName               Esther J Berick
JobTitle            Deputy Court Clerk III
BasePay                           73247.51
OvertimePay                            0.0
OtherPay                          11901.54
Benefits                          26200.44
TotalPay                          85149.05
TotalPayBenefits                 111349.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88873, dtype: object)
(88874, Id                                      88875
EmployeeName                  Joaquin  Moreno
JobTitle            Senior Eligibility Worker
BasePay                              74998.26
OvertimePay                           6053.01
OtherPay                               1460.0
Benefits                             28837.03
TotalPay                             82511.27
TotalPayBenefits                     111348.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88874, dtype: object)
(88875, Id                                 88876
EmployeeName               Minh Tich  Vu
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       138.47
OtherPay                          1231.3
Benefits                         29841.0
TotalPay                        81502.78
TotalPayBenefits               111343.78
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88875, dtype: object)
(88876, Id                                         88877
EmployeeName                     Ramona P Graham
JobTitle            Employment & Training Spec 3
BasePay                                 81486.14
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.14
TotalPayBenefits                       111340.44
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88876, dtype: object)
(88877, Id                                         88878
EmployeeName                        Agnes Y Chau
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 81486.12
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.12
TotalPayBenefits                       111340.42
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88877, dtype: object)
(88878, Id                                         88879
EmployeeName               Minerva  Escalona-Hua
JobTitle            Employment & Training Spec 3
BasePay                                 81486.11
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.11
TotalPayBenefits                       111340.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88878, dtype: object)
(88879, Id                                         88880
EmployeeName                       Peter D Ernst
JobTitle            Employment & Training Spec 3
BasePay                                 81486.09
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.09
TotalPayBenefits                       111340.39
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88879, dtype: object)
(88880, Id                                         88881
EmployeeName                        David L Soss
JobTitle            Employment & Training Spec 3
BasePay                                 81486.08
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.08
TotalPayBenefits                       111340.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88880, dtype: object)
(88881, Id                                         88882
EmployeeName                      Nina L Marillo
JobTitle            Employment & Training Spec 3
BasePay                                 81486.06
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.06
TotalPayBenefits                       111340.36
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88881, dtype: object)
(88882, Id                                         88883
EmployeeName                   Blanche J Clyburn
JobTitle            Employment & Training Spec 3
BasePay                                 81486.05
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.05
TotalPayBenefits                       111340.35
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88882, dtype: object)
(88883, Id                                         88884
EmployeeName                  Clifford  Courrier
JobTitle            Employment & Training Spec 3
BasePay                                 81486.03
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.03
TotalPayBenefits                       111340.33
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88883, dtype: object)
(88884, Id                                         88885
EmployeeName                Evangeline A Eneliko
JobTitle            Employment & Training Spec 3
BasePay                                 81486.02
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29854.3
TotalPay                                81486.02
TotalPayBenefits                       111340.32
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88884, dtype: object)
(88885, Id                                 88886
EmployeeName            Robert  Saccuzzo
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       111.34
OtherPay                          1238.5
Benefits                        29840.96
TotalPay                        81482.85
TotalPayBenefits               111323.81
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88885, dtype: object)
(88886, Id                                 88887
EmployeeName        Peterjohn M Lacrosby
JobTitle                Transit Operator
BasePay                         67490.12
OvertimePay                      4518.82
OtherPay                         4696.68
Benefits                        34614.23
TotalPay                        76705.62
TotalPayBenefits               111319.85
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88886, dtype: object)
(88887, Id                                88888
EmployeeName                Cindy P Tom
JobTitle            Pharmacy Technician
BasePay                        80541.01
OvertimePay                         0.0
OtherPay                         922.17
Benefits                       29845.77
TotalPay                       81463.18
TotalPayBenefits              111308.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88887, dtype: object)
(88888, Id                                  88889
EmployeeName                Ronnie  Otero
JobTitle            Deputy Court Clerk II
BasePay                          75447.08
OvertimePay                           0.0
OtherPay                          6520.02
Benefits                         29340.29
TotalPay                          81967.1
TotalPayBenefits                111307.39
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88888, dtype: object)
(88889, Id                           88890
EmployeeName           Dan M Stark
JobTitle            Police Officer
BasePay                   78591.03
OvertimePay                3350.95
OtherPay                   1601.73
Benefits                  27749.23
TotalPay                  83543.71
TotalPayBenefits         111292.94
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88889, dtype: object)
(88890, Id                                88891
EmployeeName            Elena  Kaledina
JobTitle            IS Business Analyst
BasePay                        82432.39
OvertimePay                         0.0
OtherPay                         302.49
Benefits                       28556.78
TotalPay                       82734.88
TotalPayBenefits              111291.66
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88890, dtype: object)
(88891, Id                             88892
EmployeeName        Rodrigo  Huazano
JobTitle                Cement Mason
BasePay                     74990.52
OvertimePay                  5219.12
OtherPay                      2100.0
Benefits                    28972.22
TotalPay                    82309.64
TotalPayBenefits           111281.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88891, dtype: object)
(88892, Id                             88893
EmployeeName            Joseph  Choi
JobTitle            Transit Operator
BasePay                     62567.93
OvertimePay                  18072.8
OtherPay                      308.43
Benefits                    30325.62
TotalPay                    80949.16
TotalPayBenefits           111274.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88892, dtype: object)
(88893, Id                                  88894
EmployeeName             Jesus C Figueroa
JobTitle            Emp & Training Spec 2
BasePay                          79542.09
OvertimePay                           0.0
OtherPay                           1888.0
Benefits                         29836.74
TotalPay                         81430.09
TotalPayBenefits                111266.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88893, dtype: object)
(88894, Id                             88895
EmployeeName         Wyvonna M Pratt
JobTitle            Transit Operator
BasePay                     66568.48
OvertimePay                 11715.18
OtherPay                      674.07
Benefits                    32305.25
TotalPay                    78957.73
TotalPayBenefits           111262.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88894, dtype: object)
(88895, Id                             88896
EmployeeName        Adrean  Mitchell
JobTitle            Transit Operator
BasePay                     66791.31
OvertimePay                  9358.59
OtherPay                     2253.47
Benefits                    32857.34
TotalPay                    78403.37
TotalPayBenefits           111260.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88895, dtype: object)
(88896, Id                          88897
EmployeeName          Jason Y Hui
JobTitle                Asst Engr
BasePay                   80722.0
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30537.92
TotalPay                  80722.0
TotalPayBenefits        111259.92
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88896, dtype: object)
(88897, Id                             88898
EmployeeName          Howard D Dixon
JobTitle            Transit Operator
BasePay                      66342.3
OvertimePay                 12035.36
OtherPay                      695.22
Benefits                    32186.12
TotalPay                    79072.88
TotalPayBenefits            111259.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88897, dtype: object)
(88898, Id                                 88899
EmployeeName               Erick N Moran
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                          0.0
OtherPay                         1275.85
Benefits                        29849.11
TotalPay                        81408.86
TotalPayBenefits               111257.97
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88898, dtype: object)
(88899, Id                                 88900
EmployeeName               Craig J Cohen
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                          0.0
OtherPay                          1274.5
Benefits                        29849.13
TotalPay                        81407.51
TotalPayBenefits               111256.64
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88899, dtype: object)
(88900, Id                            88901
EmployeeName        Martha M Jensen
JobTitle                 Manager IV
BasePay                    67307.74
OvertimePay                     0.0
OtherPay                   20292.08
Benefits                    23655.9
TotalPay                   87599.82
TotalPayBenefits          111255.72
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88900, dtype: object)
(88901, Id                                           88902
EmployeeName                  Tracy A Mack-Montoya
JobTitle            Community Police Services Aide
BasePay                                   65572.11
OvertimePay                               13081.61
OtherPay                                   5052.62
Benefits                                  27546.31
TotalPay                                  83706.34
TotalPayBenefits                         111252.65
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88901, dtype: object)
(88902, Id                             88903
EmployeeName         Chana M Sanders
JobTitle            Registered Nurse
BasePay                     73288.73
OvertimePay                  2489.56
OtherPay                    15542.07
Benefits                     19920.2
TotalPay                    91320.36
TotalPayBenefits           111240.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88902, dtype: object)
(88903, Id                             88904
EmployeeName          Emilio  Corona
JobTitle            Transit Operator
BasePay                     67748.99
OvertimePay                  7544.29
OtherPay                     2558.35
Benefits                    33376.02
TotalPay                    77851.63
TotalPayBenefits           111227.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88903, dtype: object)
(88904, Id                                88905
EmployeeName                 Jim C Kwan
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                       876.9
OtherPay                         1369.9
Benefits                       29696.54
TotalPay                        81530.3
TotalPayBenefits              111226.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88904, dtype: object)
(88905, Id                              88906
EmployeeName        Patrick T Cummins
JobTitle               Police Officer
BasePay                      78591.01
OvertimePay                   3368.97
OtherPay                      1516.32
Benefits                     27748.54
TotalPay                      83476.3
TotalPayBenefits            111224.84
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88905, dtype: object)
(88906, Id                              88907
EmployeeName        Helene  Campagnet
JobTitle             Registered Nurse
BasePay                       83981.5
OvertimePay                       0.0
OtherPay                      1787.12
Benefits                      25438.7
TotalPay                     85768.62
TotalPayBenefits            111207.32
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88906, dtype: object)
(88907, Id                                        88908
EmployeeName                  Michell N Hampton
JobTitle            Customer Service Agent Supv
BasePay                                81324.02
OvertimePay                                 0.0
OtherPay                                  34.64
Benefits                                29828.8
TotalPay                               81358.66
TotalPayBenefits                      111187.46
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 88907, dtype: object)
(88908, Id                                88909
EmployeeName        Christie  Hernandez
JobTitle               Transit Operator
BasePay                        66192.38
OvertimePay                    12117.47
OtherPay                         736.38
Benefits                       32136.38
TotalPay                       79046.23
TotalPayBenefits              111182.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88908, dtype: object)
(88909, Id                                           88910
EmployeeName              Rafael  Ramirez Gonzalez
JobTitle            IT Operations Support Admn III
BasePay                                    81326.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29851.06
TotalPay                                   81326.5
TotalPayBenefits                         111177.56
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88909, dtype: object)
(88910, Id                                    88911
EmployeeName             Sharon C Steckline
JobTitle            Senior Museum Registrar
BasePay                             80703.0
OvertimePay                             0.0
OtherPay                              648.0
Benefits                           29824.73
TotalPay                            81351.0
TotalPayBenefits                  111175.73
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88910, dtype: object)
(88911, Id                                      88912
EmployeeName                   Rafael H Anabo
JobTitle            Automotive Service Worker
BasePay                              63429.06
OvertimePay                           7347.06
OtherPay                             11971.64
Benefits                             28425.91
TotalPay                             82747.76
TotalPayBenefits                    111173.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88911, dtype: object)
(88912, Id                                   88913
EmployeeName            Roberto V Gonzales
JobTitle            Water QualityTech I/II
BasePay                            80903.5
OvertimePay                         508.28
OtherPay                               0.0
Benefits                          29761.15
TotalPay                          81411.78
TotalPayBenefits                 111172.93
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88912, dtype: object)
(88913, Id                                88914
EmployeeName              John A Cauchi
JobTitle            Automotive Mechanic
BasePay                         64376.2
OvertimePay                    20599.71
OtherPay                        1030.39
Benefits                       25165.43
TotalPay                        86006.3
TotalPayBenefits              111171.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88913, dtype: object)
(88914, Id                             88915
EmployeeName          Denise  Lawson
JobTitle            Transit Operator
BasePay                     66900.87
OvertimePay                  9593.58
OtherPay                     1882.37
Benefits                    32792.24
TotalPay                    78376.82
TotalPayBenefits           111169.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88914, dtype: object)
(88915, Id                           88916
EmployeeName        Thomas J Nolan
JobTitle                 Manager I
BasePay                   78759.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  32406.49
TotalPay                  78759.54
TotalPayBenefits         111166.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88915, dtype: object)
(88916, Id                              88917
EmployeeName        Gilberto  Alarcon
JobTitle                      Painter
BasePay                       77948.0
OvertimePay                   2997.71
OtherPay                        893.5
Benefits                      29325.2
TotalPay                     81839.21
TotalPayBenefits            111164.41
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88916, dtype: object)
(88917, Id                                88918
EmployeeName           Manuel  Espinoza
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                         0.0
OtherPay                        2043.96
Benefits                       29836.48
TotalPay                       81327.47
TotalPayBenefits              111163.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88917, dtype: object)
(88918, Id                                          88919
EmployeeName                        Luis M Aroche
JobTitle            Victim/Witness Investigator 3
BasePay                                   80646.3
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30517.63
TotalPay                                  80646.3
TotalPayBenefits                        111163.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88918, dtype: object)
(88919, Id                              88920
EmployeeName          Felipe E Robles
JobTitle            Transit Planner 2
BasePay                      80627.12
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     30533.42
TotalPay                     80627.12
TotalPayBenefits            111160.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88919, dtype: object)
(88920, Id                                88921
EmployeeName           Bruce I Porteous
JobTitle            Arborist Technician
BasePay                        80282.53
OvertimePay                      693.75
OtherPay                         471.17
Benefits                       29709.86
TotalPay                       81447.45
TotalPayBenefits              111157.31
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88920, dtype: object)
(88921, Id                                   88922
EmployeeName                  Karin K Yuen
JobTitle            Administrative Analyst
BasePay                           81316.58
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           29827.3
TotalPay                          81316.58
TotalPayBenefits                 111143.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88921, dtype: object)
(88922, Id                             88923
EmployeeName         L'Tanya R Demby
JobTitle            Transit Operator
BasePay                      62244.7
OvertimePay                 17977.66
OtherPay                      714.66
Benefits                    30200.93
TotalPay                    80937.02
TotalPayBenefits           111137.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88922, dtype: object)
(88923, Id                                    88924
EmployeeName                    Alla  Rykov
JobTitle            Engineering Associate 1
BasePay                            81294.12
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.56
TotalPay                           81294.12
TotalPayBenefits                  111133.68
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88923, dtype: object)
(88924, Id                                    88925
EmployeeName                   Ana  Mombeni
JobTitle            Engineering Associate 1
BasePay                             81294.1
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.54
TotalPay                            81294.1
TotalPayBenefits                  111133.64
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88924, dtype: object)
(88925, Id                                    88926
EmployeeName                     Irene L Yu
JobTitle            Engineering Associate 1
BasePay                            81294.06
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           81294.06
TotalPayBenefits                  111133.57
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88925, dtype: object)
(88926, Id                                    88927
EmployeeName                     John K Hui
JobTitle            Engineering Associate 1
BasePay                            81294.03
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.53
TotalPay                           81294.03
TotalPayBenefits                  111133.56
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88926, dtype: object)
(88927, Id                                    88928
EmployeeName               Generoso V Dizon
JobTitle            Engineering Associate 1
BasePay                            81294.03
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.52
TotalPay                           81294.03
TotalPayBenefits                  111133.55
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88927, dtype: object)
(88928, Id                                    88929
EmployeeName                     Nora K Lee
JobTitle            Engineering Associate 1
BasePay                            81294.03
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.52
TotalPay                           81294.03
TotalPayBenefits                  111133.55
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88928, dtype: object)
(88929, Id                                    88930
EmployeeName                Paulino  Limpin
JobTitle            Engineering Associate 1
BasePay                            81294.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           81294.02
TotalPayBenefits                  111133.53
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88929, dtype: object)
(88930, Id                                    88931
EmployeeName                Wai Yin  Cheung
JobTitle            Engineering Associate 1
BasePay                            81294.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           81294.02
TotalPayBenefits                  111133.53
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88930, dtype: object)
(88931, Id                                         88932
EmployeeName                    Barbara  McMahan
JobTitle            Illustrator and Art Designer
BasePay                                 81294.02
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                29839.51
TotalPay                                81294.02
TotalPayBenefits                       111133.53
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88931, dtype: object)
(88932, Id                                    88933
EmployeeName                Luis L Salvador
JobTitle            Engineering Associate 1
BasePay                            81294.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           81294.02
TotalPayBenefits                  111133.53
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88932, dtype: object)
(88933, Id                                    88934
EmployeeName                      My Y  Luc
JobTitle            Engineering Associate 1
BasePay                            81294.03
OvertimePay                             0.0
OtherPay                                0.0
Benefits                            29839.5
TotalPay                           81294.03
TotalPayBenefits                  111133.53
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88933, dtype: object)
(88934, Id                                    88935
EmployeeName                     Boon C Lim
JobTitle            Engineering Associate 1
BasePay                            81294.01
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29839.51
TotalPay                           81294.01
TotalPayBenefits                  111133.52
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88934, dtype: object)
(88935, Id                                    88936
EmployeeName              Ferdinand O Gawat
JobTitle            Engineering Associate 1
BasePay                             81294.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                            29839.5
TotalPay                            81294.0
TotalPayBenefits                   111133.5
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88935, dtype: object)
(88936, Id                                         88937
EmployeeName                     Chimmy C.M. Lee
JobTitle            Illustrator and Art Designer
BasePay                                  81294.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                 29839.5
TotalPay                                 81294.0
TotalPayBenefits                        111133.5
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88936, dtype: object)
(88937, Id                               88938
EmployeeName        Sergio G Solorzano
JobTitle              Transit Operator
BasePay                        67127.0
OvertimePay                   10286.02
OtherPay                        442.28
Benefits                      33277.94
TotalPay                       77855.3
TotalPayBenefits             111133.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88937, dtype: object)
(88938, Id                              88939
EmployeeName        Mustafa H Mohamed
JobTitle             Transit Operator
BasePay                      62634.68
OvertimePay                   9595.59
OtherPay                      6755.12
Benefits                     32147.47
TotalPay                     78985.39
TotalPayBenefits            111132.86
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88938, dtype: object)
(88939, Id                                   88940
EmployeeName                  Nam Hang  To
JobTitle            Patient Accounts Clerk
BasePay                            71982.0
OvertimePay                       11197.22
OtherPay                               0.0
Benefits                          27950.97
TotalPay                          83179.22
TotalPayBenefits                 111130.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88939, dtype: object)
(88940, Id                                    88941
EmployeeName                   Henry N Kwan
JobTitle            Engineering Associate 1
BasePay                            81295.53
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29833.43
TotalPay                           81295.53
TotalPayBenefits                  111128.96
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88940, dtype: object)
(88941, Id                             88942
EmployeeName        Evelyn G Mendoza
JobTitle               Special Nurse
BasePay                     84739.81
OvertimePay                  1151.82
OtherPay                    12577.47
Benefits                    12659.14
TotalPay                     98469.1
TotalPayBenefits           111128.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88941, dtype: object)
(88942, Id                                    88943
EmployeeName                    Yukswa  Lau
JobTitle            Engineering Associate 1
BasePay                            81292.55
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29834.54
TotalPay                           81292.55
TotalPayBenefits                  111127.09
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88942, dtype: object)
(88943, Id                                       88944
EmployeeName                    Thu-Suong T Vo
JobTitle            Protective Services Worker
BasePay                               79126.19
OvertimePay                                0.0
OtherPay                                1500.0
Benefits                              30500.32
TotalPay                              80626.19
TotalPayBenefits                     111126.51
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 88943, dtype: object)
(88944, Id                             88945
EmployeeName        Matthew J Barden
JobTitle                     Painter
BasePay                     77948.05
OvertimePay                  1682.59
OtherPay                      1931.0
Benefits                    29559.29
TotalPay                    81561.64
TotalPayBenefits           111120.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88944, dtype: object)
(88945, Id                                  88946
EmployeeName               Noelia  Rivera
JobTitle            Deputy Court Clerk II
BasePay                          75319.27
OvertimePay                           0.0
OtherPay                          6518.75
Benefits                         29282.21
TotalPay                         81838.02
TotalPayBenefits                111120.23
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88945, dtype: object)
(88946, Id                                88947
EmployeeName              Eugenia M Tom
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                       136.6
OtherPay                          648.0
Benefits                       29792.19
TotalPay                        81325.6
TotalPayBenefits              111117.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88946, dtype: object)
(88947, Id                                      88948
EmployeeName                    Raul M Garcia
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                          14399.24
OtherPay                              5011.24
Benefits                             27394.85
TotalPay                             83722.68
TotalPayBenefits                    111117.53
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88947, dtype: object)
(88948, Id                                    88949
EmployeeName               Shiu Gook  Liang
JobTitle            Engineering Associate 1
BasePay                            81294.02
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29822.62
TotalPay                           81294.02
TotalPayBenefits                  111116.64
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88948, dtype: object)
(88949, Id                                    88950
EmployeeName                     Liong T Cy
JobTitle            Engineering Associate 1
BasePay                             81294.0
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29822.61
TotalPay                            81294.0
TotalPayBenefits                  111116.61
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88949, dtype: object)
(88950, Id                            88951
EmployeeName        Timothy  Cresci
JobTitle               Truck Driver
BasePay                    73853.53
OvertimePay                     0.0
OtherPay                    8266.29
Benefits                    28995.3
TotalPay                   82119.82
TotalPayBenefits          111115.12
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 88950, dtype: object)
(88951, Id                             88952
EmployeeName        Ahmed M Elassaly
JobTitle             Junior Engineer
BasePay                     80532.65
OvertimePay                    57.88
OtherPay                         0.0
Benefits                    30519.88
TotalPay                    80590.53
TotalPayBenefits           111110.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88951, dtype: object)
(88952, Id                                    88953
EmployeeName                 Tracy W Cheong
JobTitle            Engineering Associate 1
BasePay                            81294.04
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29814.59
TotalPay                           81294.04
TotalPayBenefits                  111108.63
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88952, dtype: object)
(88953, Id                                         88954
EmployeeName                   Eileen M Loughran
JobTitle            Health Program Coordinator 1
BasePay                                 77948.02
OvertimePay                                  0.0
OtherPay                                 3375.53
Benefits                                29785.01
TotalPay                                81323.55
TotalPayBenefits                       111108.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88953, dtype: object)
(88954, Id                                    88955
EmployeeName                John P Seagrave
JobTitle            Engineering Associate 1
BasePay                            81275.28
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29832.96
TotalPay                           81275.28
TotalPayBenefits                  111108.24
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88954, dtype: object)
(88955, Id                             88956
EmployeeName         Francis  Givens
JobTitle            Transit Operator
BasePay                     63828.77
OvertimePay                 11652.52
OtherPay                     3808.12
Benefits                    31814.44
TotalPay                    79289.41
TotalPayBenefits           111103.85
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88955, dtype: object)
(88956, Id                                      88957
EmployeeName                   Alice  Fulgham
JobTitle            Licensed Vocational Nurse
BasePay                              73874.61
OvertimePay                           7824.87
OtherPay                                900.4
Benefits                             28502.91
TotalPay                             82599.88
TotalPayBenefits                    111102.79
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88956, dtype: object)
(88957, Id                          88958
EmployeeName         Jio  Saephan
JobTitle                  Painter
BasePay                  77948.02
OvertimePay                2590.8
OtherPay                   1162.0
Benefits                 29399.18
TotalPay                 81700.82
TotalPayBenefits         111100.0
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 88957, dtype: object)
(88958, Id                                    88959
EmployeeName                 Jose S Cuejilo
JobTitle            Engineering Associate 1
BasePay                             81294.1
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29805.79
TotalPay                            81294.1
TotalPayBenefits                  111099.89
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88958, dtype: object)
(88959, Id                                  88960
EmployeeName                Frank S Kuoch
JobTitle            Emp & Training Spec 2
BasePay                          79542.01
OvertimePay                           0.0
OtherPay                           1743.0
Benefits                         29808.58
TotalPay                         81285.01
TotalPayBenefits                111093.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88959, dtype: object)
(88960, Id                                         88961
EmployeeName                        Lilian W Yin
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 80334.02
OvertimePay                              1116.88
OtherPay                                     0.0
Benefits                                29639.66
TotalPay                                 81450.9
TotalPayBenefits                       111090.56
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88960, dtype: object)
(88961, Id                                88962
EmployeeName        Jeffrey P Derderian
JobTitle                        Painter
BasePay                         77948.0
OvertimePay                     2574.63
OtherPay                         1183.0
Benefits                       29380.98
TotalPay                       81705.63
TotalPayBenefits              111086.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88961, dtype: object)
(88962, Id                                   88963
EmployeeName            Alejandro C Valdez
JobTitle            Transit Fare Inspector
BasePay                            66744.0
OvertimePay                        5283.02
OtherPay                           5626.67
Benefits                          33427.66
TotalPay                          77653.69
TotalPayBenefits                 111081.35
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 88962, dtype: object)
(88963, Id                                         88964
EmployeeName                       Scott A Tyler
JobTitle            Illustrator and Art Designer
BasePay                                 81256.17
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                29825.17
TotalPay                                81256.17
TotalPayBenefits                       111081.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88963, dtype: object)
(88964, Id                             88965
EmployeeName         Dountes D Diggs
JobTitle            Transit Operator
BasePay                     68320.24
OvertimePay                  5712.19
OtherPay                     3208.93
Benefits                    33836.64
TotalPay                    77241.36
TotalPayBenefits            111078.0
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88964, dtype: object)
(88965, Id                                  88966
EmployeeName               Christina M Ho
JobTitle            Emp & Training Spec 2
BasePay                          79542.07
OvertimePay                           0.0
OtherPay                           1728.0
Benefits                         29805.07
TotalPay                         81270.07
TotalPayBenefits                111075.14
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88965, dtype: object)
(88966, Id                                  88967
EmployeeName         Tamara Z Yagolnitser
JobTitle            Emp & Training Spec 2
BasePay                          79542.03
OvertimePay                           0.0
OtherPay                           1723.0
Benefits                         29805.42
TotalPay                         81265.03
TotalPayBenefits                111070.45
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88966, dtype: object)
(88967, Id                             88968
EmployeeName                Jia  Yan
JobTitle            Transit Operator
BasePay                     68306.33
OvertimePay                   4216.9
OtherPay                     4394.44
Benefits                     34145.8
TotalPay                    76917.67
TotalPayBenefits           111063.47
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88967, dtype: object)
(88968, Id                                 88969
EmployeeName           Victor J Guerrero
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                        671.4
OtherPay                           550.0
Benefits                        29706.63
TotalPay                         81354.4
TotalPayBenefits               111061.03
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88968, dtype: object)
(88969, Id                             88970
EmployeeName        Samuel  Espinosa
JobTitle            Transit Operator
BasePay                     60918.06
OvertimePay                 13563.95
OtherPay                     5723.69
Benefits                    30852.37
TotalPay                     80205.7
TotalPayBenefits           111058.07
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88969, dtype: object)
(88970, Id                                88971
EmployeeName                  Ivy  Wong
JobTitle            Pharmacy Technician
BasePay                        80541.01
OvertimePay                      650.49
OtherPay                          200.0
Benefits                       29664.94
TotalPay                        81391.5
TotalPayBenefits              111056.44
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88970, dtype: object)
(88971, Id                                          88972
EmployeeName                   Juliano P Nocos Jr
JobTitle            Transit Operations Specialist
BasePay                                   60134.4
OvertimePay                                615.94
OtherPay                                 29594.63
Benefits                                 20704.52
TotalPay                                 90344.97
TotalPayBenefits                        111049.49
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88971, dtype: object)
(88972, Id                             88973
EmployeeName             Max  Alfaro
JobTitle            Transit Operator
BasePay                      68369.0
OvertimePay                  4646.82
OtherPay                     3971.05
Benefits                    34060.38
TotalPay                    76986.87
TotalPayBenefits           111047.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88972, dtype: object)
(88973, Id                             88974
EmployeeName              Edward  Li
JobTitle            Transit Operator
BasePay                     67876.83
OvertimePay                  4694.87
OtherPay                      4502.2
Benefits                    33973.28
TotalPay                     77073.9
TotalPayBenefits           111047.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88973, dtype: object)
(88974, Id                                           88975
EmployeeName                     Armagodon  Ravago
JobTitle            Central Processing & Dist Tech
BasePay                                    71469.0
OvertimePay                                4584.99
OtherPay                                   6011.73
Benefits                                  28979.92
TotalPay                                  82065.72
TotalPayBenefits                         111045.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 88974, dtype: object)
(88975, Id                                    88976
EmployeeName        Brian Henri S De Guzman
JobTitle                    Junior Engineer
BasePay                            80527.52
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           30513.62
TotalPay                           80527.52
TotalPayBenefits                  111041.14
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 88975, dtype: object)
(88976, Id                           88977
EmployeeName        Jean A Sweeney
JobTitle               Librarian 1
BasePay                    80514.0
OvertimePay                    0.0
OtherPay                    981.59
Benefits                  29544.44
TotalPay                  81495.59
TotalPayBenefits         111040.03
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88976, dtype: object)
(88977, Id                                         88978
EmployeeName                       Jody A McCown
JobTitle            Sprv, Traffic & Street Signs
BasePay                                 80548.02
OvertimePay                               756.53
OtherPay                                     0.0
Benefits                                29730.79
TotalPay                                81304.55
TotalPayBenefits                       111035.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88977, dtype: object)
(88978, Id                           88979
EmployeeName        Randall J Renn
JobTitle            Biologist I/II
BasePay                   77654.96
OvertimePay                    0.0
OtherPay                   3437.61
Benefits                  29937.13
TotalPay                  81092.57
TotalPayBenefits          111029.7
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88978, dtype: object)
(88979, Id                                  88980
EmployeeName              Lawrence T Diep
JobTitle            Emp & Training Spec 2
BasePay                          79542.02
OvertimePay                           0.0
OtherPay                           1688.0
Benefits                         29797.78
TotalPay                         81230.02
TotalPayBenefits                 111027.8
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88979, dtype: object)
(88980, Id                                          88981
EmployeeName                      Jeanne M Andaya
JobTitle            Medical Evaluations Assistant
BasePay                                   60901.6
OvertimePay                              20382.55
OtherPay                                  3437.91
Benefits                                 26304.51
TotalPay                                 84722.06
TotalPayBenefits                        111026.57
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 88980, dtype: object)
(88981, Id                             88982
EmployeeName                Alan  Li
JobTitle            Transit Operator
BasePay                     67933.44
OvertimePay                   7773.3
OtherPay                     1397.95
Benefits                    33919.25
TotalPay                    77104.69
TotalPayBenefits           111023.94
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88981, dtype: object)
(88982, Id                                         88983
EmployeeName                    Benjamin R Chang
JobTitle            Sr Fare Collections Receiver
BasePay                                  70767.0
OvertimePay                              8258.82
OtherPay                                 3596.14
Benefits                                28397.72
TotalPay                                82621.96
TotalPayBenefits                       111019.68
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 88982, dtype: object)
(88983, Id                              88984
EmployeeName        Brandie N Ancheta
JobTitle               Deputy Sheriff
BasePay                      77072.69
OvertimePay                    566.95
OtherPay                      6428.18
Benefits                     26948.78
TotalPay                     84067.82
TotalPayBenefits             111016.6
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88983, dtype: object)
(88984, Id                                  88985
EmployeeName                 Hector  Mero
JobTitle            Deputy Court Clerk II
BasePay                          76053.15
OvertimePay                           0.0
OtherPay                          5187.84
Benefits                         29774.44
TotalPay                         81240.99
TotalPayBenefits                111015.43
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 88984, dtype: object)
(88985, Id                             88986
EmployeeName         Curtis L Burton
JobTitle            Transit Operator
BasePay                     67074.76
OvertimePay                   6132.0
OtherPay                     4300.36
Benefits                    33503.97
TotalPay                    77507.12
TotalPayBenefits           111011.09
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88985, dtype: object)
(88986, Id                               88987
EmployeeName            Evelyn J Reyes
JobTitle            Program Specialist
BasePay                        80846.0
OvertimePay                     404.25
OtherPay                           0.0
Benefits                      29758.97
TotalPay                      81250.25
TotalPayBenefits             111009.22
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 88986, dtype: object)
(88987, Id                             88988
EmployeeName            Daniel  Wong
JobTitle            Transit Operator
BasePay                     61636.45
OvertimePay                 16174.54
OtherPay                     2868.64
Benefits                    30328.88
TotalPay                    80679.63
TotalPayBenefits           111008.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88987, dtype: object)
(88988, Id                                 88989
EmployeeName           Martin D Jequinto
JobTitle            Senior Social Worker
BasePay                         77274.12
OvertimePay                          0.0
OtherPay                         3947.33
Benefits                        29781.01
TotalPay                        81221.45
TotalPayBenefits               111002.46
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 88988, dtype: object)
(88989, Id                              88990
EmployeeName        Douglas B Edwards
JobTitle                      Painter
BasePay                      77948.03
OvertimePay                   2954.98
OtherPay                        108.0
Benefits                     29984.61
TotalPay                     81011.01
TotalPayBenefits            110995.62
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 88989, dtype: object)
(88990, Id                                88991
EmployeeName          Catherine  Taylor
JobTitle            Pharmacy Technician
BasePay                        80541.05
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       29792.22
TotalPay                       81189.05
TotalPayBenefits              110981.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88990, dtype: object)
(88991, Id                                88992
EmployeeName            Richard O Ortiz
JobTitle            Pharmacy Technician
BasePay                        80541.04
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       29792.22
TotalPay                       81189.04
TotalPayBenefits              110981.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88991, dtype: object)
(88992, Id                                88993
EmployeeName               Janae  Perez
JobTitle            Pharmacy Technician
BasePay                        80541.03
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       29792.21
TotalPay                       81189.03
TotalPayBenefits              110981.24
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88992, dtype: object)
(88993, Id                                88994
EmployeeName             Rebecca C Fung
JobTitle            Pharmacy Technician
BasePay                        80541.02
OvertimePay                         0.0
OtherPay                          648.0
Benefits                        29792.2
TotalPay                       81189.02
TotalPayBenefits              110981.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88993, dtype: object)
(88994, Id                                88995
EmployeeName             David A Waters
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       29792.19
TotalPay                        81189.0
TotalPayBenefits              110981.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88994, dtype: object)
(88995, Id                                88996
EmployeeName            Eloisa  Wolfert
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                         0.0
OtherPay                          648.0
Benefits                       29792.19
TotalPay                        81189.0
TotalPayBenefits              110981.19
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 88995, dtype: object)
(88996, Id                           88997
EmployeeName         Lina M Castro
JobTitle            Microbiologist
BasePay                   82280.36
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  28690.98
TotalPay                  82280.36
TotalPayBenefits         110971.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 88996, dtype: object)
(88997, Id                                      88998
EmployeeName             Mary Grace N Rosales
JobTitle            Licensed Vocational Nurse
BasePay                              73602.01
OvertimePay                           8850.98
OtherPay                                250.0
Benefits                             28266.71
TotalPay                             82702.99
TotalPayBenefits                     110969.7
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 88997, dtype: object)
(88998, Id                             88999
EmployeeName        Nancy  Gutierrez
JobTitle             Principal Clerk
BasePay                      69972.3
OvertimePay                  9128.94
OtherPay                     3631.54
Benefits                    28234.45
TotalPay                    82732.78
TotalPayBenefits           110967.23
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88998, dtype: object)
(88999, Id                             89000
EmployeeName        Frederick  Ortiz
JobTitle            Transit Operator
BasePay                     67615.59
OvertimePay                  9780.54
OtherPay                      752.03
Benefits                    32812.94
TotalPay                    78148.16
TotalPayBenefits            110961.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 88999, dtype: object)
(89000, Id                            89001
EmployeeName        David  Carrasco
JobTitle               Truck Driver
BasePay                    77566.17
OvertimePay                 3577.22
OtherPay                     929.72
Benefits                   28880.05
TotalPay                   82073.11
TotalPayBenefits          110953.16
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89000, dtype: object)
(89001, Id                                      89002
EmployeeName               Dennes D Hernandez
JobTitle            Senior Eligibility Worker
BasePay                              74865.25
OvertimePay                            5792.5
OtherPay                               1500.0
Benefits                             28794.67
TotalPay                             82157.75
TotalPayBenefits                    110952.42
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89001, dtype: object)
(89002, Id                                         89003
EmployeeName                          Sau H Chan
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.04
OvertimePay                              8716.51
OtherPay                                     0.0
Benefits                                28334.89
TotalPay                                82615.55
TotalPayBenefits                       110950.44
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89002, dtype: object)
(89003, Id                                 89004
EmployeeName            William A Tarran
JobTitle            Physician Specialist
BasePay                         92199.68
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        18749.64
TotalPay                        92199.68
TotalPayBenefits               110949.32
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89003, dtype: object)
(89004, Id                                   89005
EmployeeName              Leslie A Erekson
JobTitle            Customer Service Agent
BasePay                           71392.74
OvertimePay                        3950.52
OtherPay                           6575.74
Benefits                          29027.38
TotalPay                           81919.0
TotalPayBenefits                 110946.38
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89004, dtype: object)
(89005, Id                                 89006
EmployeeName             Jonathan H Chan
JobTitle            Automotive Machinist
BasePay                          80133.0
OvertimePay                      1223.03
OtherPay                             0.0
Benefits                        29589.37
TotalPay                        81356.03
TotalPayBenefits                110945.4
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89005, dtype: object)
(89006, Id                           89007
EmployeeName        Alexis L Smith
JobTitle                 Planner 2
BasePay                   80449.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30492.69
TotalPay                  80449.54
TotalPayBenefits         110942.23
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89006, dtype: object)
(89007, Id                          89008
EmployeeName        Paul S Chasan
JobTitle                Planner 2
BasePay                   80449.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 30492.66
TotalPay                  80449.5
TotalPayBenefits        110942.16
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89007, dtype: object)
(89008, Id                          89009
EmployeeName             Chi K Yu
JobTitle                 Engineer
BasePay                  67403.61
OvertimePay                   0.0
OtherPay                 24623.89
Benefits                 18900.34
TotalPay                  92027.5
TotalPayBenefits        110927.84
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89008, dtype: object)
(89009, Id                             89010
EmployeeName        Rolando A Bobila
JobTitle              Security Guard
BasePay                      50517.0
OvertimePay                 30716.38
OtherPay                     3809.51
Benefits                    25880.94
TotalPay                    85042.89
TotalPayBenefits           110923.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89009, dtype: object)
(89010, Id                             89011
EmployeeName        Christina C Wang
JobTitle             Principal Clerk
BasePay                      81160.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29761.93
TotalPay                     81160.0
TotalPayBenefits           110921.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89010, dtype: object)
(89011, Id                                        89012
EmployeeName                  Teresita T Plevin
JobTitle            Station Agent, Muni Railway
BasePay                                78348.33
OvertimePay                             4051.32
OtherPay                                 858.56
Benefits                               27663.34
TotalPay                               83258.21
TotalPayBenefits                      110921.55
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89011, dtype: object)
(89012, Id                                  89013
EmployeeName             Wesley G Ramirez
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                          5402.12
Benefits                         29447.97
TotalPay                         81472.63
TotalPayBenefits                 110920.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89012, dtype: object)
(89013, Id                                      89014
EmployeeName                     Diana N Fung
JobTitle            Senior Eligibility Worker
BasePay                              75033.07
OvertimePay                           4730.89
OtherPay                               2168.0
Benefits                             28987.72
TotalPay                             81931.96
TotalPayBenefits                    110919.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89013, dtype: object)
(89014, Id                                      89015
EmployeeName                  Lutricia  Keane
JobTitle            Licensed Vocational Nurse
BasePay                               71148.6
OvertimePay                           4900.56
OtherPay                              6306.93
Benefits                             28562.16
TotalPay                             82356.09
TotalPayBenefits                    110918.25
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89014, dtype: object)
(89015, Id                                          89016
EmployeeName                           Ana C Eric
JobTitle            Snr Permit and Citation Clerk
BasePay                                   73413.0
OvertimePay                               8067.79
OtherPay                                   1000.0
Benefits                                 28434.43
TotalPay                                 82480.79
TotalPayBenefits                        110915.22
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89015, dtype: object)
(89016, Id                              89017
EmployeeName        Michael E Basurto
JobTitle               Police Officer
BasePay                      77676.39
OvertimePay                   1721.32
OtherPay                      1566.76
Benefits                     29946.07
TotalPay                     80964.47
TotalPayBenefits            110910.54
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89016, dtype: object)
(89017, Id                                  89018
EmployeeName                   Jason  Hui
JobTitle            IS Programmer Analyst
BasePay                           81096.0
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29810.21
TotalPay                          81096.0
TotalPayBenefits                110906.21
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89017, dtype: object)
(89018, Id                               89019
EmployeeName        Eduardo A Lesaguis
JobTitle              Transit Operator
BasePay                       67415.39
OvertimePay                    9469.51
OtherPay                        573.61
Benefits                      33446.82
TotalPay                      77458.51
TotalPayBenefits             110905.33
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89018, dtype: object)
(89019, Id                            89020
EmployeeName        Elias H Hishmeh
JobTitle                   Gardener
BasePay                    63817.84
OvertimePay                14695.47
OtherPay                     4360.6
Benefits                   28027.84
TotalPay                   82873.91
TotalPayBenefits          110901.75
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89019, dtype: object)
(89020, Id                             89021
EmployeeName          Michael  Broom
JobTitle            Transit Operator
BasePay                      66923.0
OvertimePay                  8745.02
OtherPay                     2302.08
Benefits                    32931.04
TotalPay                     77970.1
TotalPayBenefits           110901.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89020, dtype: object)
(89021, Id                            89022
EmployeeName        Roman A Korolev
JobTitle                  Curator 3
BasePay                    81104.76
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29795.27
TotalPay                   81104.76
TotalPayBenefits          110900.03
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89021, dtype: object)
(89022, Id                                 89023
EmployeeName           Timothy C Benetti
JobTitle            Special Assistant 15
BasePay                          79163.8
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        31724.96
TotalPay                         79163.8
TotalPayBenefits               110888.76
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89022, dtype: object)
(89023, Id                                      89024
EmployeeName            Grace Renee T Lam Yee
JobTitle            Assistant Health Educator
BasePay                              79339.54
OvertimePay                             662.4
OtherPay                               1200.0
Benefits                             29686.64
TotalPay                             81201.94
TotalPayBenefits                    110888.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89023, dtype: object)
(89024, Id                                      89025
EmployeeName                       Hanh B Ngu
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           5523.28
OtherPay                               1480.0
Benefits                             28851.84
TotalPay                              82036.3
TotalPayBenefits                    110888.14
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89024, dtype: object)
(89025, Id                                   89026
EmployeeName            Erwin  Mangalindan
JobTitle            Patient Care Assistant
BasePay                           67369.88
OvertimePay                        9525.76
OtherPay                           6039.51
Benefits                           27944.1
TotalPay                          82935.15
TotalPayBenefits                 110879.25
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89025, dtype: object)
(89026, Id                                89027
EmployeeName        Andy Jung-Wah  Kwan
JobTitle                      Asst Engr
BasePay                        80903.51
OvertimePay                         0.0
OtherPay                         178.98
Benefits                       29793.78
TotalPay                       81082.49
TotalPayBenefits              110876.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89026, dtype: object)
(89027, Id                                        89028
EmployeeName                        Henry  Vong
JobTitle            Electronic Maintenance Tech
BasePay                                 56376.0
OvertimePay                             14361.3
OtherPay                               22172.76
Benefits                               17965.35
TotalPay                               92910.06
TotalPayBenefits                      110875.41
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89027, dtype: object)
(89028, Id                                  89029
EmployeeName            Rachel P Thompson
JobTitle            Deputy Court Clerk II
BasePay                          75686.35
OvertimePay                           0.0
OtherPay                          5877.05
Benefits                          29308.7
TotalPay                          81563.4
TotalPayBenefits                 110872.1
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89028, dtype: object)
(89029, Id                                89030
EmployeeName             Dennis B Dizon
JobTitle            Stationary Engineer
BasePay                        78470.61
OvertimePay                     3141.96
OtherPay                           9.31
Benefits                       29249.26
TotalPay                       81621.88
TotalPayBenefits              110871.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89029, dtype: object)
(89030, Id                                89031
EmployeeName         Aubree M Robertson
JobTitle            Pharmacy Technician
BasePay                        72826.69
OvertimePay                     3033.85
OtherPay                        5106.86
Benefits                       29903.12
TotalPay                        80967.4
TotalPayBenefits              110870.52
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89030, dtype: object)
(89031, Id                                     89032
EmployeeName               Melvin V Brown Jr
JobTitle            Senior Parts Storekeeper
BasePay                             70389.07
OvertimePay                         12822.56
OtherPay                               20.86
Benefits                            27635.68
TotalPay                            83232.49
TotalPayBenefits                   110868.17
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89031, dtype: object)
(89032, Id                             89033
EmployeeName        Dominic T Piazza
JobTitle                Truck Driver
BasePay                     78060.13
OvertimePay                  2525.16
OtherPay                      1177.5
Benefits                    29104.85
TotalPay                    81762.79
TotalPayBenefits           110867.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89032, dtype: object)
(89033, Id                                  89034
EmployeeName        Michael L Delos Reyes
JobTitle              Automotive Mechanic
BasePay                           64376.2
OvertimePay                      20481.78
OtherPay                           877.95
Benefits                         25130.91
TotalPay                         85735.93
TotalPayBenefits                110866.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89033, dtype: object)
(89034, Id                             89035
EmployeeName         Chia Lee  Huang
JobTitle            Transit Operator
BasePay                     67974.56
OvertimePay                  6553.16
OtherPay                     2785.37
Benefits                    33553.19
TotalPay                    77313.09
TotalPayBenefits           110866.28
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89034, dtype: object)
(89035, Id                             89036
EmployeeName         Peter  Quiambao
JobTitle            Transit Operator
BasePay                     65412.76
OvertimePay                 12918.76
OtherPay                      767.49
Benefits                    31766.64
TotalPay                    79099.01
TotalPayBenefits           110865.65
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89035, dtype: object)
(89036, Id                           89037
EmployeeName        Tiffany M Chin
JobTitle                 Asst Engr
BasePay                   80339.41
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30514.36
TotalPay                  80339.41
TotalPayBenefits         110853.77
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89036, dtype: object)
(89037, Id                           89038
EmployeeName        Dennis G Sharp
JobTitle                 Curator 3
BasePay                   81065.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29775.99
TotalPay                  81065.54
TotalPayBenefits         110841.53
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89037, dtype: object)
(89038, Id                                 89039
EmployeeName        Ramekon  O'Arwisters
JobTitle                       Curator 3
BasePay                         81065.54
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        29775.99
TotalPay                        81065.54
TotalPayBenefits               110841.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89038, dtype: object)
(89039, Id                                89040
EmployeeName        Margaret A Shiffler
JobTitle                      Curator 3
BasePay                        81065.52
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29775.99
TotalPay                       81065.52
TotalPayBenefits              110841.51
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89039, dtype: object)
(89040, Id                                  89041
EmployeeName              Danny D Humrich
JobTitle            Maintenance Machinist
BasePay                          80779.06
OvertimePay                           0.0
OtherPay                            550.0
Benefits                         29511.33
TotalPay                         81329.06
TotalPayBenefits                110840.39
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89040, dtype: object)
(89041, Id                             89042
EmployeeName          Inetta N Pitre
JobTitle            Transit Operator
BasePay                     68521.84
OvertimePay                  6660.02
OtherPay                     2053.47
Benefits                    33604.39
TotalPay                    77235.33
TotalPayBenefits           110839.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89041, dtype: object)
(89042, Id                             89043
EmployeeName         Liza S Williams
JobTitle            Transit Operator
BasePay                     68619.83
OvertimePay                  3876.52
OtherPay                     3520.42
Benefits                     34820.2
TotalPay                    76016.77
TotalPayBenefits           110836.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89042, dtype: object)
(89043, Id                          89044
EmployeeName        Ann  Brunetta
JobTitle            Special Nurse
BasePay                  92958.66
OvertimePay              14097.99
OtherPay                  3777.82
Benefits                      0.0
TotalPay                110834.47
TotalPayBenefits        110834.47
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89043, dtype: object)
(89044, Id                                   89045
EmployeeName            Kristan  Fulkerson
JobTitle            Water QualityTech I/II
BasePay                           80903.53
OvertimePay                         167.79
OtherPay                               0.0
Benefits                          29761.15
TotalPay                          81071.32
TotalPayBenefits                 110832.47
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89044, dtype: object)
(89045, Id                                        89046
EmployeeName                    Rosanne M Torre
JobTitle            Senior Management Assistant
BasePay                                81024.07
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29807.48
TotalPay                               81024.07
TotalPayBenefits                      110831.55
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89045, dtype: object)
(89046, Id                                  89047
EmployeeName                Melanie  Bien
JobTitle            Medical Social Worker
BasePay                          80370.67
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30459.37
TotalPay                         80370.67
TotalPayBenefits                110830.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89046, dtype: object)
(89047, Id                                  89048
EmployeeName                 Helen L Chin
JobTitle            Emp & Training Spec 2
BasePay                          79542.05
OvertimePay                           0.0
OtherPay                          1528.01
Benefits                         29755.59
TotalPay                         81070.06
TotalPayBenefits                110825.65
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89047, dtype: object)
(89048, Id                             89049
EmployeeName               Leng  Sok
JobTitle            Transit Operator
BasePay                     64845.44
OvertimePay                  9036.41
OtherPay                     4477.62
Benefits                    32462.27
TotalPay                    78359.47
TotalPayBenefits           110821.74
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89048, dtype: object)
(89049, Id                                   89050
EmployeeName                    Linda  Ong
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       14172.58
OtherPay                             898.0
Benefits                          27359.08
TotalPay                          83461.58
TotalPayBenefits                 110820.66
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89049, dtype: object)
(89050, Id                             89051
EmployeeName               Hai N Ngo
JobTitle            Transit Operator
BasePay                     63928.19
OvertimePay                  9753.53
OtherPay                      5025.3
Benefits                    32113.51
TotalPay                    78707.02
TotalPayBenefits           110820.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89050, dtype: object)
(89051, Id                             89052
EmployeeName         Darrell E James
JobTitle            Transit Operator
BasePay                     66680.06
OvertimePay                  8893.83
OtherPay                     1790.69
Benefits                    33454.03
TotalPay                    77364.58
TotalPayBenefits           110818.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89051, dtype: object)
(89052, Id                                        89053
EmployeeName             Gustavo A Bojorquez Jr
JobTitle            Customer Service Agent Supv
BasePay                                76429.88
OvertimePay                             2792.12
OtherPay                                2919.35
Benefits                               28673.46
TotalPay                               82141.35
TotalPayBenefits                      110814.81
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89052, dtype: object)
(89053, Id                                  89054
EmployeeName            Araceli I Vallejo
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           5000.0
Benefits                         29743.41
TotalPay                         81070.54
TotalPayBenefits                110813.95
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89053, dtype: object)
(89054, Id                           89055
EmployeeName         Jenny  Cheung
JobTitle            Accountant III
BasePay                   80978.94
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29810.78
TotalPay                  80978.94
TotalPayBenefits         110789.72
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89054, dtype: object)
(89055, Id                                   89056
EmployeeName           Nestor E Gatchalian
JobTitle            Psychiatric Technician
BasePay                           68259.76
OvertimePay                        8895.05
OtherPay                           6208.37
Benefits                          27425.79
TotalPay                          83363.18
TotalPayBenefits                 110788.97
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89055, dtype: object)
(89056, Id                             89057
EmployeeName              Jack  Knox
JobTitle            Transit Operator
BasePay                     64925.39
OvertimePay                 12724.18
OtherPay                     1416.06
Benefits                    31720.18
TotalPay                    79065.63
TotalPayBenefits           110785.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89056, dtype: object)
(89057, Id                                      89058
EmployeeName                     Pamela C Lui
JobTitle            Senior Eligibility Worker
BasePay                              75033.05
OvertimePay                           7190.66
OtherPay                                  0.0
Benefits                              28561.9
TotalPay                             82223.71
TotalPayBenefits                    110785.61
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89057, dtype: object)
(89058, Id                             89059
EmployeeName          Shawna D Pitts
JobTitle            Transit Operator
BasePay                     67196.37
OvertimePay                  9732.63
OtherPay                      535.79
Benefits                    33318.54
TotalPay                    77464.79
TotalPayBenefits           110783.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89058, dtype: object)
(89059, Id                             89060
EmployeeName          Peter T Cheung
JobTitle            Transit Operator
BasePay                     68071.07
OvertimePay                  6140.55
OtherPay                     2326.84
Benefits                    34241.91
TotalPay                    76538.46
TotalPayBenefits           110780.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89059, dtype: object)
(89060, Id                             89061
EmployeeName           Milton W Tong
JobTitle            Transit Operator
BasePay                     67191.65
OvertimePay                  7437.71
OtherPay                     2370.04
Benefits                    33775.03
TotalPay                     76999.4
TotalPayBenefits           110774.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89060, dtype: object)
(89061, Id                                      89062
EmployeeName                Charlotte L Leung
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                            4533.7
OtherPay                               2208.0
Benefits                             28996.88
TotalPay                              81774.7
TotalPayBenefits                    110771.58
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89061, dtype: object)
(89062, Id                             89063
EmployeeName              Tuan A Cao
JobTitle            Transit Operator
BasePay                     69352.07
OvertimePay                  4939.64
OtherPay                      1783.8
Benefits                     34695.1
TotalPay                    76075.51
TotalPayBenefits           110770.61
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89062, dtype: object)
(89063, Id                                 89064
EmployeeName              Steven W Cloud
JobTitle            Automotive Machinist
BasePay                         75482.42
OvertimePay                          0.0
OtherPay                         8595.73
Benefits                        26691.14
TotalPay                        84078.15
TotalPayBenefits               110769.29
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89063, dtype: object)
(89064, Id                                      89065
EmployeeName                   Evert  Saravia
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           4480.73
OtherPay                               2248.0
Benefits                             29004.78
TotalPay                             81761.76
TotalPayBenefits                    110766.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89064, dtype: object)
(89065, Id                                 89066
EmployeeName         James R Shackelford
JobTitle            Physician Specialist
BasePay                          85478.4
OvertimePay                          0.0
OtherPay                         7054.57
Benefits                         18227.1
TotalPay                        92532.97
TotalPayBenefits               110760.07
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89065, dtype: object)
(89066, Id                                89067
EmployeeName             David H.F. Hum
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                      438.45
OtherPay                        1344.02
Benefits                       29692.75
TotalPay                       81065.99
TotalPayBenefits              110758.74
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89066, dtype: object)
(89067, Id                                          89068
EmployeeName                      Tiana  Wertheim
JobTitle            Senior Administrative Analyst
BasePay                                  82839.13
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 27917.14
TotalPay                                 82839.13
TotalPayBenefits                        110756.27
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89067, dtype: object)
(89068, Id                                89069
EmployeeName        Amelia N Valenzuela
JobTitle                  Special Nurse
BasePay                        94692.45
OvertimePay                         0.0
OtherPay                       14962.88
Benefits                        1096.54
TotalPay                      109655.33
TotalPayBenefits              110751.87
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89068, dtype: object)
(89069, Id                             89070
EmployeeName          Marco V Flores
JobTitle            Transit Operator
BasePay                     65386.77
OvertimePay                  4481.54
OtherPay                     7384.31
Benefits                    33494.82
TotalPay                    77252.62
TotalPayBenefits           110747.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89069, dtype: object)
(89070, Id                                       89071
EmployeeName                    Laura M Sumner
JobTitle            Protective Services Worker
BasePay                               80978.16
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29765.81
TotalPay                              80978.16
TotalPayBenefits                     110743.97
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89070, dtype: object)
(89071, Id                          89072
EmployeeName           Sui K Song
JobTitle            Special Nurse
BasePay                  95728.25
OvertimePay                   0.0
OtherPay                 13910.62
Benefits                  1096.41
TotalPay                109638.87
TotalPayBenefits        110735.28
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89071, dtype: object)
(89072, Id                                89073
EmployeeName          Abdiwahab H Hashi
JobTitle            Stationary Engineer
BasePay                        78470.61
OvertimePay                     2649.32
OtherPay                          300.2
Benefits                        29311.3
TotalPay                       81420.13
TotalPayBenefits              110731.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89072, dtype: object)
(89073, Id                              89074
EmployeeName        Richard  Ortiz-Jr
JobTitle                      Painter
BasePay                      77948.02
OvertimePay                   3044.24
OtherPay                        485.0
Benefits                     29245.88
TotalPay                     81477.26
TotalPayBenefits            110723.14
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89073, dtype: object)
(89074, Id                           89075
EmployeeName        Romulo L Adiao
JobTitle             Special Nurse
BasePay                   73561.57
OvertimePay                3026.95
OtherPay                  21304.08
Benefits                  12829.83
TotalPay                   97892.6
TotalPayBenefits         110722.43
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89074, dtype: object)
(89075, Id                                   89076
EmployeeName                  Xiaoqing  He
JobTitle            Administrative Analyst
BasePay                            80965.1
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29751.85
TotalPay                           80965.1
TotalPayBenefits                 110716.95
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89075, dtype: object)
(89076, Id                               89077
EmployeeName        Saul G Gomez-Ocana
JobTitle              Transit Operator
BasePay                        67315.9
OvertimePay                    9562.17
OtherPay                       1065.29
Benefits                      32768.76
TotalPay                      77943.36
TotalPayBenefits             110712.12
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89076, dtype: object)
(89077, Id                                      89078
EmployeeName              Griselda G Renteria
JobTitle            Janitorial Svcs Asst Sprv
BasePay                               72333.0
OvertimePay                           2072.06
OtherPay                              6252.74
Benefits                             30049.28
TotalPay                              80657.8
TotalPayBenefits                    110707.08
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89077, dtype: object)
(89078, Id                             89079
EmployeeName            Letha  Jones
JobTitle            Transit Operator
BasePay                     65365.87
OvertimePay                  8699.64
OtherPay                     4002.45
Benefits                    32635.31
TotalPay                    78067.96
TotalPayBenefits           110703.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89078, dtype: object)
(89079, Id                                  89080
EmployeeName           Elinoemi C Asenloo
JobTitle            Emp & Training Spec 4
BasePay                          77819.96
OvertimePay                           0.0
OtherPay                          2455.01
Benefits                         30423.49
TotalPay                         80274.97
TotalPayBenefits                110698.46
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89079, dtype: object)
(89080, Id                           89081
EmployeeName        Frankey A Nava
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                2102.26
OtherPay                   2261.08
Benefits                  27743.33
TotalPay                  82954.36
TotalPayBenefits         110697.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89080, dtype: object)
(89081, Id                             89082
EmployeeName           Cherk Y Tsang
JobTitle            Transit Operator
BasePay                     68110.66
OvertimePay                  4189.58
OtherPay                      4338.5
Benefits                    34055.82
TotalPay                    76638.74
TotalPayBenefits           110694.56
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89081, dtype: object)
(89082, Id                                89083
EmployeeName           Hongmai T Nguyen
JobTitle            IS Business Analyst
BasePay                        82255.63
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       28437.55
TotalPay                       82255.63
TotalPayBenefits              110693.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89082, dtype: object)
(89083, Id                                89084
EmployeeName            Sytana D Khloth
JobTitle            Pharmacy Technician
BasePay                        80149.49
OvertimePay                         0.0
OtherPay                         895.83
Benefits                       29643.08
TotalPay                       81045.32
TotalPayBenefits               110688.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89083, dtype: object)
(89084, Id                                 89085
EmployeeName             Daniel W Llamas
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                        298.4
OtherPay                           550.0
Benefits                        29706.64
TotalPay                        80981.41
TotalPayBenefits               110688.05
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89084, dtype: object)
(89085, Id                            89086
EmployeeName        James M Leonard
JobTitle                    Painter
BasePay                    77948.03
OvertimePay                 1760.01
OtherPay                      850.0
Benefits                   30124.17
TotalPay                   80558.04
TotalPayBenefits          110682.21
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89085, dtype: object)
(89086, Id                               89087
EmployeeName        Selwyn K Woodworth
JobTitle              Transit Operator
BasePay                       67603.76
OvertimePay                    1612.78
OtherPay                       6943.91
Benefits                      34513.09
TotalPay                      76160.45
TotalPayBenefits             110673.54
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89086, dtype: object)
(89087, Id                                      89088
EmployeeName              Bronia  Kantorovich
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           8552.65
OtherPay                                250.0
Benefits                              28266.7
TotalPay                             82404.65
TotalPayBenefits                    110671.35
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89087, dtype: object)
(89088, Id                                89089
EmployeeName         Tsegereda  Naizghi
JobTitle            Survey Assistant II
BasePay                        80877.55
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29787.29
TotalPay                       80877.55
TotalPayBenefits              110664.84
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89088, dtype: object)
(89089, Id                                           89090
EmployeeName                          Justin  Volk
JobTitle            Forensic Laboratory Technician
BasePay                                   80903.54
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29761.17
TotalPay                                  80903.54
TotalPayBenefits                         110664.71
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89089, dtype: object)
(89090, Id                                   89091
EmployeeName         Jacqueline M Phillips
JobTitle            Water QualityTech I/II
BasePay                            80903.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29761.15
TotalPay                           80903.5
TotalPayBenefits                 110664.65
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89090, dtype: object)
(89091, Id                                 89092
EmployeeName              Roberto C Alas
JobTitle            Sewer Service Worker
BasePay                         74381.01
OvertimePay                      8152.42
OtherPay                             0.0
Benefits                         28130.3
TotalPay                        82533.43
TotalPayBenefits               110663.73
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89091, dtype: object)
(89092, Id                                      89093
EmployeeName                    Mark A Murphy
JobTitle            EMT/Paramedic/Firefighter
BasePay                              71602.26
OvertimePay                           4482.94
OtherPay                              5933.81
Benefits                             28644.27
TotalPay                             82019.01
TotalPayBenefits                    110663.28
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89092, dtype: object)
(89093, Id                                      89094
EmployeeName                Maria  De la Cruz
JobTitle            Licensed Vocational Nurse
BasePay                              71796.11
OvertimePay                           4205.88
OtherPay                              5953.67
Benefits                             28703.82
TotalPay                             81955.66
TotalPayBenefits                    110659.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89093, dtype: object)
(89094, Id                             89095
EmployeeName            Dawn A Hawks
JobTitle            Transit Operator
BasePay                     67095.31
OvertimePay                  9817.09
OtherPay                      436.19
Benefits                    33310.13
TotalPay                    77348.59
TotalPayBenefits           110658.72
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89094, dtype: object)
(89095, Id                                         89096
EmployeeName                        George  Gong
JobTitle            Institutional Police Officer
BasePay                                 71658.01
OvertimePay                              3075.17
OtherPay                                 7732.11
Benefits                                28185.81
TotalPay                                82465.29
TotalPayBenefits                        110651.1
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89095, dtype: object)
(89096, Id                                   89097
EmployeeName              Joseph S Alberto
JobTitle            Administrative Analyst
BasePay                           81445.17
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29203.53
TotalPay                          81445.17
TotalPayBenefits                  110648.7
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89096, dtype: object)
(89097, Id                              89098
EmployeeName        Alvin L Bailey Jr
JobTitle             Transit Operator
BasePay                      64147.27
OvertimePay                  13290.22
OtherPay                      1730.34
Benefits                     31479.73
TotalPay                     79167.83
TotalPayBenefits            110647.56
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89097, dtype: object)
(89098, Id                               89099
EmployeeName        Ramon S Oropeza Jr
JobTitle              Street Inspector
BasePay                        69079.8
OvertimePay                   13319.18
OtherPay                           0.0
Benefits                      28246.19
TotalPay                      82398.98
TotalPayBenefits             110645.17
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89098, dtype: object)
(89099, Id                             89100
EmployeeName          Cintia O Jones
JobTitle            Train Controller
BasePay                      70887.9
OvertimePay                 12130.31
OtherPay                     2638.01
Benefits                    24986.49
TotalPay                    85656.22
TotalPayBenefits           110642.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89099, dtype: object)
(89100, Id                                      89101
EmployeeName                 Marcus R Maillet
JobTitle            Automotive Service Worker
BasePay                              64317.03
OvertimePay                           8287.47
OtherPay                              9711.49
Benefits                             28324.35
TotalPay                             82315.99
TotalPayBenefits                    110640.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89100, dtype: object)
(89101, Id                            89102
EmployeeName        William P Walsh
JobTitle                  Carpenter
BasePay                    78155.04
OvertimePay                  999.13
OtherPay                     2702.5
Benefits                   28783.23
TotalPay                   81856.67
TotalPayBenefits           110639.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89101, dtype: object)
(89102, Id                                89103
EmployeeName          Scott W Schofield
JobTitle            Stationary Engineer
BasePay                        70120.69
OvertimePay                     4488.77
OtherPay                        8138.86
Benefits                       27889.43
TotalPay                       82748.32
TotalPayBenefits              110637.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89102, dtype: object)
(89103, Id                                  89104
EmployeeName         Angelberto  Gonzalez
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           4848.8
Benefits                         29718.01
TotalPay                          80919.3
TotalPayBenefits                110637.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89103, dtype: object)
(89104, Id                                      89105
EmployeeName                       David T Lo
JobTitle            Assistant Health Educator
BasePay                              79339.54
OvertimePay                               0.0
OtherPay                               1540.0
Benefits                             29749.76
TotalPay                             80879.54
TotalPayBenefits                     110629.3
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89104, dtype: object)
(89105, Id                             89106
EmployeeName          Julie  Molitor
JobTitle            Registered Nurse
BasePay                     77731.29
OvertimePay                   7385.5
OtherPay                     4001.18
Benefits                    21505.78
TotalPay                    89117.97
TotalPayBenefits           110623.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89105, dtype: object)
(89106, Id                             89107
EmployeeName           Edward Y Chen
JobTitle            Transit Operator
BasePay                     66028.56
OvertimePay                  8907.92
OtherPay                      2417.3
Benefits                    33268.71
TotalPay                    77353.78
TotalPayBenefits           110622.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89106, dtype: object)
(89107, Id                             89108
EmployeeName            Howard S Liu
JobTitle            Transit Operator
BasePay                     69387.09
OvertimePay                  3467.41
OtherPay                     3385.21
Benefits                    34379.86
TotalPay                    76239.71
TotalPayBenefits           110619.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89107, dtype: object)
(89108, Id                            89109
EmployeeName         Edwin B Gipson
JobTitle            General Laborer
BasePay                    62341.26
OvertimePay                22275.38
OtherPay                        0.0
Benefits                   25999.56
TotalPay                   84616.64
TotalPayBenefits           110616.2
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89108, dtype: object)
(89109, Id                                   89110
EmployeeName              Danica W Jenkins
JobTitle            Social Work Supervisor
BasePay                           80824.12
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29787.02
TotalPay                          80824.12
TotalPayBenefits                 110611.14
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89109, dtype: object)
(89110, Id                             89111
EmployeeName           Jerry D Jones
JobTitle            Transit Operator
BasePay                     68938.92
OvertimePay                  4419.98
OtherPay                     3143.66
Benefits                    34108.37
TotalPay                    76502.56
TotalPayBenefits           110610.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89110, dtype: object)
(89111, Id                                 89112
EmployeeName             Mark A Schepers
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       888.45
OtherPay                             0.0
Benefits                        29589.38
TotalPay                        81021.46
TotalPayBenefits               110610.84
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89111, dtype: object)
(89112, Id                           89113
EmployeeName        Michael L Lacy
JobTitle                   Painter
BasePay                   77948.09
OvertimePay                 1171.0
OtherPay                   1938.52
Benefits                  29538.59
TotalPay                  81057.61
TotalPayBenefits          110596.2
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89112, dtype: object)
(89113, Id                                  89114
EmployeeName               Nina E Delgado
JobTitle            Deputy Court Clerk II
BasePay                           75839.9
OvertimePay                           0.0
OtherPay                           5080.0
Benefits                         29672.81
TotalPay                          80919.9
TotalPayBenefits                110592.71
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89113, dtype: object)
(89114, Id                             89115
EmployeeName             Scott R Cox
JobTitle            Transit Operator
BasePay                     67764.03
OvertimePay                  6749.99
OtherPay                     2090.48
Benefits                    33986.75
TotalPay                     76604.5
TotalPayBenefits           110591.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89114, dtype: object)
(89115, Id                                           89116
EmployeeName                     Michael O Higgins
JobTitle            Food Service Mgr Administrator
BasePay                                   73436.31
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  37148.55
TotalPay                                  73436.31
TotalPayBenefits                         110584.86
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89115, dtype: object)
(89116, Id                                           89117
EmployeeName                        Vincent  Phung
JobTitle            Community Police Services Aide
BasePay                                   64522.58
OvertimePay                                10933.2
OtherPay                                   7543.12
Benefits                                  27578.09
TotalPay                                   82998.9
TotalPayBenefits                         110576.99
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89116, dtype: object)
(89117, Id                                           89118
EmployeeName                     Maria A Contreras
JobTitle            Senior Parking Control Officer
BasePay                                   70701.49
OvertimePay                               10713.42
OtherPay                                   1218.31
Benefits                                  27938.69
TotalPay                                  82633.22
TotalPayBenefits                         110571.91
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89117, dtype: object)
(89118, Id                             89119
EmployeeName          Arturo C Abueg
JobTitle            Transit Operator
BasePay                     68012.02
OvertimePay                  4108.92
OtherPay                     4382.79
Benefits                    34066.76
TotalPay                    76503.73
TotalPayBenefits           110570.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89118, dtype: object)
(89119, Id                                          89120
EmployeeName                         Benson L Kha
JobTitle            Library Technical Assistant 2
BasePay                                  73027.04
OvertimePay                               7432.21
OtherPay                                  1584.28
Benefits                                  28513.4
TotalPay                                 82043.53
TotalPayBenefits                        110556.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89119, dtype: object)
(89120, Id                                  89121
EmployeeName        Alexander  Boitchenko
JobTitle              Stationary Engineer
BasePay                          67207.73
OvertimePay                           0.0
OtherPay                         17079.79
Benefits                         26268.24
TotalPay                         84287.52
TotalPayBenefits                110555.76
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89120, dtype: object)
(89121, Id                                           89122
EmployeeName             Frances  Thompson-Andreas
JobTitle            Worker's Compensation Adjuster
BasePay                                    80840.2
OvertimePay                                    0.0
OtherPay                                    614.95
Benefits                                  29098.62
TotalPay                                  81455.15
TotalPayBenefits                         110553.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89121, dtype: object)
(89122, Id                           89123
EmployeeName        Felipe M Ochoa
JobTitle                  Gardener
BasePay                   64638.65
OvertimePay                17748.7
OtherPay                   1404.96
Benefits                  26751.96
TotalPay                  83792.31
TotalPayBenefits         110544.27
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89122, dtype: object)
(89123, Id                                 89124
EmployeeName              James L Barnes
JobTitle            Automotive Machinist
BasePay                         80133.03
OvertimePay                       812.35
OtherPay                             0.0
Benefits                         29589.4
TotalPay                        80945.38
TotalPayBenefits               110534.78
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89123, dtype: object)
(89124, Id                                      89125
EmployeeName                    Nancy H Zhang
JobTitle            Licensed Vocational Nurse
BasePay                              71558.52
OvertimePay                           3552.08
OtherPay                              6604.97
Benefits                             28815.54
TotalPay                             81715.57
TotalPayBenefits                    110531.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89124, dtype: object)
(89125, Id                            89126
EmployeeName        Ricardo  Antoni
JobTitle                Librarian 1
BasePay                    78318.19
OvertimePay                     0.0
OtherPay                    2461.48
Benefits                   29746.23
TotalPay                   80779.67
TotalPayBenefits           110525.9
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89125, dtype: object)
(89126, Id                                      89127
EmployeeName                Licinia  McMorrow
JobTitle            Pr Administrative Analyst
BasePay                              89938.45
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                              20586.7
TotalPay                             89938.45
TotalPayBenefits                    110525.15
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89126, dtype: object)
(89127, Id                             89128
EmployeeName        Latonya G Rogers
JobTitle            Transit Operator
BasePay                     66280.05
OvertimePay                 11544.73
OtherPay                      577.26
Benefits                    32122.66
TotalPay                    78402.04
TotalPayBenefits            110524.7
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89127, dtype: object)
(89128, Id                           89129
EmployeeName           David A Lee
JobTitle            Police Officer
BasePay                   78591.03
OvertimePay                2781.64
OtherPay                   1962.12
Benefits                  27189.02
TotalPay                  83334.79
TotalPayBenefits         110523.81
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89128, dtype: object)
(89129, Id                                89130
EmployeeName        Michael  Leutzinger
JobTitle               Transit Operator
BasePay                        68939.24
OvertimePay                     4009.68
OtherPay                        3404.81
Benefits                       34168.43
TotalPay                       76353.73
TotalPayBenefits              110522.16
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89129, dtype: object)
(89130, Id                                        89131
EmployeeName                     Monica V Giese
JobTitle            Senior Management Assistant
BasePay                                78612.25
OvertimePay                                 0.0
OtherPay                                 2192.0
Benefits                               29716.17
TotalPay                               80804.25
TotalPayBenefits                      110520.42
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89130, dtype: object)
(89131, Id                            89132
EmployeeName        Nicholas J Rose
JobTitle             Police Officer
BasePay                    78591.02
OvertimePay                 2885.78
OtherPay                    1288.06
Benefits                   27741.44
TotalPay                   82764.86
TotalPayBenefits           110506.3
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89131, dtype: object)
(89132, Id                                  89133
EmployeeName                Anna C Keaney
JobTitle            Medical Social Worker
BasePay                           79879.6
OvertimePay                           0.0
OtherPay                           1965.4
Benefits                          28660.5
TotalPay                          81845.0
TotalPayBenefits                 110505.5
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89132, dtype: object)
(89133, Id                                   89134
EmployeeName              Terrance L Smith
JobTitle            Transit Fare Inspector
BasePay                           66490.62
OvertimePay                        5371.01
OtherPay                           5378.09
Benefits                          33247.01
TotalPay                          77239.72
TotalPayBenefits                 110486.73
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89133, dtype: object)
(89134, Id                             89135
EmployeeName            Danny G Ruan
JobTitle            Transit Operator
BasePay                     68884.36
OvertimePay                  4450.69
OtherPay                     3078.02
Benefits                    34069.66
TotalPay                    76413.07
TotalPayBenefits           110482.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89134, dtype: object)
(89135, Id                                           89136
EmployeeName                    Alfredo  Flotte Jr
JobTitle            Electrical Transit System Mech
BasePay                                   62224.25
OvertimePay                               24547.06
OtherPay                                       0.0
Benefits                                  23709.99
TotalPay                                  86771.31
TotalPayBenefits                          110481.3
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89135, dtype: object)
(89136, Id                                      89137
EmployeeName                      Lily W Chin
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           5106.42
OtherPay                               1480.0
Benefits                             28851.84
TotalPay                             81619.43
TotalPayBenefits                    110471.27
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89136, dtype: object)
(89137, Id                             89138
EmployeeName             Hubert  Yee
JobTitle            Transit Operator
BasePay                     68724.06
OvertimePay                  5421.77
OtherPay                     1900.29
Benefits                    34423.67
TotalPay                    76046.12
TotalPayBenefits           110469.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89137, dtype: object)
(89138, Id                           89139
EmployeeName        Martin J Munoz
JobTitle              Cement Mason
BasePay                   71413.02
OvertimePay                9741.47
OtherPay                    1080.0
Benefits                  28231.53
TotalPay                  82234.49
TotalPayBenefits         110466.02
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89138, dtype: object)
(89139, Id                                 89140
EmployeeName        Antonio  Gonzalez Jr
JobTitle                Transit Operator
BasePay                         62711.44
OvertimePay                     16877.63
OtherPay                          424.93
Benefits                        30442.67
TotalPay                         80014.0
TotalPayBenefits               110456.67
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89139, dtype: object)
(89140, Id                                   89141
EmployeeName              Michael I Powell
JobTitle            Social Work Specialist
BasePay                            80058.3
OvertimePay                            0.0
OtherPay                              10.0
Benefits                          30384.74
TotalPay                           80068.3
TotalPayBenefits                 110453.04
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89140, dtype: object)
(89141, Id                                         89142
EmployeeName                       Betsy  Rhodes
JobTitle            Coord of Citizen Involvement
BasePay                                 82247.27
OvertimePay                                  0.0
OtherPay                                 1874.25
Benefits                                26327.35
TotalPay                                84121.52
TotalPayBenefits                       110448.87
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89141, dtype: object)
(89142, Id                                        89143
EmployeeName                   Marcia H Camacho
JobTitle            Landscape Architect Assoc 1
BasePay                                80280.07
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30158.94
TotalPay                               80280.07
TotalPayBenefits                      110439.01
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89142, dtype: object)
(89143, Id                               89144
EmployeeName        Shalonda A Baldwin
JobTitle                Manager V, MTA
BasePay                        64213.0
OvertimePay                        0.0
OtherPay                      24313.65
Benefits                       21906.2
TotalPay                      88526.65
TotalPayBenefits             110432.85
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89143, dtype: object)
(89144, Id                                 89145
EmployeeName        Christopher G Rivera
JobTitle                Transit Operator
BasePay                         68847.15
OvertimePay                       5054.1
OtherPay                         2612.18
Benefits                         33917.1
TotalPay                        76513.43
TotalPayBenefits               110430.53
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89144, dtype: object)
(89145, Id                             89146
EmployeeName          Daniel B Adams
JobTitle            Mayoral Staff XV
BasePay                     74628.82
OvertimePay                      0.0
OtherPay                     7345.05
Benefits                    28455.58
TotalPay                    81973.87
TotalPayBenefits           110429.45
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89145, dtype: object)
(89146, Id                                   89147
EmployeeName               Edward J Matias
JobTitle            Transit Fare Inspector
BasePay                            66744.0
OvertimePay                       11548.01
OtherPay                            184.45
Benefits                          31950.83
TotalPay                          78476.46
TotalPayBenefits                 110427.29
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89146, dtype: object)
(89147, Id                                   89148
EmployeeName               Neville A Hunte
JobTitle            Prnpl Admin Analyst II
BasePay                           67599.01
OvertimePay                            0.0
OtherPay                           23310.0
Benefits                          19517.55
TotalPay                          90909.01
TotalPayBenefits                 110426.56
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89147, dtype: object)
(89148, Id                                  89149
EmployeeName               Ruby G Alberto
JobTitle            Deputy Court Clerk II
BasePay                           74815.4
OvertimePay                           0.0
OtherPay                          6502.29
Benefits                         29107.71
TotalPay                         81317.69
TotalPayBenefits                 110425.4
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89148, dtype: object)
(89149, Id                              89150
EmployeeName           Sylvia M Cotto
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  13159.94
OtherPay                      1425.27
Benefits                     27445.15
TotalPay                     82976.21
TotalPayBenefits            110421.36
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89149, dtype: object)
(89150, Id                             89151
EmployeeName        Charlene  Pettus
JobTitle            Transit Operator
BasePay                     61899.57
OvertimePay                 13778.75
OtherPay                     3836.05
Benefits                    30905.32
TotalPay                    79514.37
TotalPayBenefits           110419.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89150, dtype: object)
(89151, Id                              89152
EmployeeName        Isheal  Martin Jr
JobTitle             Transit Operator
BasePay                      66834.74
OvertimePay                   8714.57
OtherPay                      2052.77
Benefits                     32813.18
TotalPay                     77602.08
TotalPayBenefits            110415.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89151, dtype: object)
(89152, Id                                  89153
EmployeeName                 Benny C Chan
JobTitle            Emp & Training Spec 2
BasePay                          79079.92
OvertimePay                           0.0
OtherPay                          1704.22
Benefits                         29624.27
TotalPay                         80784.14
TotalPayBenefits                110408.41
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89152, dtype: object)
(89153, Id                              89154
EmployeeName        Roberto V Barroga
JobTitle             Transit Operator
BasePay                      67588.41
OvertimePay                   5698.82
OtherPay                      3551.09
Benefits                     33568.55
TotalPay                     76838.32
TotalPayBenefits            110406.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89153, dtype: object)
(89154, Id                              89155
EmployeeName        Blaine F Waterman
JobTitle                  Librarian 1
BasePay                       80214.2
OvertimePay                       0.0
OtherPay                       905.29
Benefits                     29285.73
TotalPay                     81119.49
TotalPayBenefits            110405.22
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89154, dtype: object)
(89155, Id                                          89156
EmployeeName                      Darryl R Person
JobTitle            Transit Car Cleaner Asst Sprv
BasePay                                   67041.0
OvertimePay                               5152.52
OtherPay                                  9408.73
Benefits                                  28798.2
TotalPay                                 81602.25
TotalPayBenefits                        110400.45
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89155, dtype: object)
(89156, Id                                       89157
EmployeeName                       Ricky T Lam
JobTitle            Community Development Spec
BasePay                               80703.04
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29697.39
TotalPay                              80703.04
TotalPayBenefits                     110400.43
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89156, dtype: object)
(89157, Id                                       89158
EmployeeName                        Angie  Lee
JobTitle            Community Development Spec
BasePay                               80703.02
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29697.39
TotalPay                              80703.02
TotalPayBenefits                     110400.41
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89157, dtype: object)
(89158, Id                                       89159
EmployeeName                     Maria  Arinez
JobTitle            Community Development Spec
BasePay                               80703.02
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29697.38
TotalPay                              80703.02
TotalPayBenefits                      110400.4
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89158, dtype: object)
(89159, Id                                       89160
EmployeeName              Rey Emmanuel  Javier
JobTitle            Community Development Spec
BasePay                               80703.02
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29697.37
TotalPay                              80703.02
TotalPayBenefits                     110400.39
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89159, dtype: object)
(89160, Id                                       89161
EmployeeName                    Yeshey  Beyene
JobTitle            Community Development Spec
BasePay                                80703.0
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29697.37
TotalPay                               80703.0
TotalPayBenefits                     110400.37
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89160, dtype: object)
(89161, Id                                         89162
EmployeeName                 Nathaniel D Mansker
JobTitle            General Laborer Supervisor 1
BasePay                                 69199.42
OvertimePay                               8026.4
OtherPay                                 4832.27
Benefits                                28338.29
TotalPay                                82058.09
TotalPayBenefits                       110396.38
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89161, dtype: object)
(89162, Id                             89163
EmployeeName             Siu M Leung
JobTitle            Transit Operator
BasePay                      68968.8
OvertimePay                  4120.34
OtherPay                     3170.34
Benefits                    34133.95
TotalPay                    76259.48
TotalPayBenefits           110393.43
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89162, dtype: object)
(89163, Id                                          89164
EmployeeName                     Cynthia B Torres
JobTitle            Contract Compliance Officer 1
BasePay                                  80005.87
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30373.58
TotalPay                                 80005.87
TotalPayBenefits                        110379.45
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89163, dtype: object)
(89164, Id                                   89165
EmployeeName               Carlos E Chavez
JobTitle            Psychiatric Technician
BasePay                            73899.0
OvertimePay                        2216.95
OtherPay                           4960.35
Benefits                          29302.84
TotalPay                           81076.3
TotalPayBenefits                 110379.14
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89164, dtype: object)
(89165, Id                             89166
EmployeeName          Karl F Nickola
JobTitle            Transit Operator
BasePay                     65646.58
OvertimePay                 10724.08
OtherPay                     1843.46
Benefits                    32158.69
TotalPay                    78214.12
TotalPayBenefits           110372.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89165, dtype: object)
(89166, Id                          89167
EmployeeName           Elise  Lew
JobTitle                 Gardener
BasePay                   64641.0
OvertimePay              11604.63
OtherPay                  7351.93
Benefits                 26771.21
TotalPay                 83597.56
TotalPayBenefits        110368.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89166, dtype: object)
(89167, Id                                89168
EmployeeName            Ari A Agapekian
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                         0.0
OtherPay                        1384.75
Benefits                       29700.15
TotalPay                       80668.25
TotalPayBenefits               110368.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89167, dtype: object)
(89168, Id                                    89169
EmployeeName             Elizabeth B McMath
JobTitle            Claims Investigator, CA
BasePay                            82645.43
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           27720.43
TotalPay                           82645.43
TotalPayBenefits                  110365.86
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89168, dtype: object)
(89169, Id                                      89170
EmployeeName                Jennifer D Phuong
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           4166.59
OtherPay                               2168.0
Benefits                             28987.72
TotalPay                             81367.61
TotalPayBenefits                    110355.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89169, dtype: object)
(89170, Id                            89171
EmployeeName        Thomas D Taylor
JobTitle               Truck Driver
BasePay                    75044.86
OvertimePay                 4951.89
OtherPay                    2196.26
Benefits                   28161.17
TotalPay                   82193.01
TotalPayBenefits          110354.18
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89170, dtype: object)
(89171, Id                                89172
EmployeeName               Jose  DeLuna
JobTitle            Arborist Technician
BasePay                        80282.51
OvertimePay                      448.35
OtherPay                            0.0
Benefits                       29619.14
TotalPay                       80730.86
TotalPayBenefits               110350.0
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89171, dtype: object)
(89172, Id                             89173
EmployeeName        Balmore  Arriaza
JobTitle            Transit Operator
BasePay                     67966.87
OvertimePay                  7442.52
OtherPay                     1689.15
Benefits                    33246.79
TotalPay                    77098.54
TotalPayBenefits           110345.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89172, dtype: object)
(89173, Id                                  89174
EmployeeName        Arsenio G Del Rosario
JobTitle                    Accountant II
BasePay                          79531.09
OvertimePay                           0.0
OtherPay                           440.64
Benefits                         30373.58
TotalPay                         79971.73
TotalPayBenefits                110345.31
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89173, dtype: object)
(89174, Id                                    89175
EmployeeName        Tiffany H D Torrevillas
JobTitle             Administrative Analyst
BasePay                            79976.72
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           30368.01
TotalPay                           79976.72
TotalPayBenefits                  110344.73
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89174, dtype: object)
(89175, Id                             89176
EmployeeName           Lesia M Davis
JobTitle            Transit Operator
BasePay                     67378.51
OvertimePay                  8880.34
OtherPay                      638.44
Benefits                    33447.02
TotalPay                    76897.29
TotalPayBenefits           110344.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89175, dtype: object)
(89176, Id                             89177
EmployeeName           James L Green
JobTitle            Transit Operator
BasePay                     69039.65
OvertimePay                  4286.33
OtherPay                     2913.74
Benefits                    34099.27
TotalPay                    76239.72
TotalPayBenefits           110338.99
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89176, dtype: object)
(89177, Id                                     89178
EmployeeName                    Carol J Chew
JobTitle            Counselor, Juvenile Hall
BasePay                             67533.04
OvertimePay                         11627.27
OtherPay                             4190.24
Benefits                            26988.33
TotalPay                            83350.55
TotalPayBenefits                   110338.88
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89177, dtype: object)
(89178, Id                                89179
EmployeeName             Raymond  Young
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                         0.0
OtherPay                        1357.97
Benefits                       29695.26
TotalPay                       80641.47
TotalPayBenefits              110336.73
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89178, dtype: object)
(89179, Id                                89180
EmployeeName               Todd A Power
JobTitle            Arborist Technician
BasePay                        80282.52
OvertimePay                         0.0
OtherPay                         355.05
Benefits                       29689.06
TotalPay                       80637.57
TotalPayBenefits              110326.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89179, dtype: object)
(89180, Id                                       89181
EmployeeName                Macario Y Dagdagan
JobTitle            Protective Services Worker
BasePay                                79949.1
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30377.13
TotalPay                               79949.1
TotalPayBenefits                     110326.23
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89180, dtype: object)
(89181, Id                             89182
EmployeeName            Tanya S Lain
JobTitle            Transit Operator
BasePay                     67353.95
OvertimePay                  6928.15
OtherPay                     2111.55
Benefits                    33915.36
TotalPay                    76393.65
TotalPayBenefits           110309.01
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89181, dtype: object)
(89182, Id                            89183
EmployeeName        Cella  Mitchell
JobTitle                Librarian 1
BasePay                     79982.3
OvertimePay                     0.0
OtherPay                     984.62
Benefits                   29341.81
TotalPay                   80966.92
TotalPayBenefits          110308.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89182, dtype: object)
(89183, Id                                89184
EmployeeName        Angela M Washington
JobTitle               Transit Operator
BasePay                        66852.47
OvertimePay                     7557.31
OtherPay                        2838.17
Benefits                        33056.6
TotalPay                       77247.95
TotalPayBenefits              110304.55
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89183, dtype: object)
(89184, Id                                       89185
EmployeeName               Danielle M Bernardo
JobTitle            Protective Services Worker
BasePay                               79932.78
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30364.47
TotalPay                              79932.78
TotalPayBenefits                     110297.25
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89184, dtype: object)
(89185, Id                             89186
EmployeeName             Gene  Tsang
JobTitle            Transit Operator
BasePay                     67617.66
OvertimePay                  7664.05
OtherPay                     1304.16
Benefits                    33708.62
TotalPay                    76585.87
TotalPayBenefits           110294.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89185, dtype: object)
(89186, Id                                           89187
EmployeeName                         John J Caldon
JobTitle            Events & Facilities Specialist
BasePay                                   79933.82
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  30359.76
TotalPay                                  79933.82
TotalPayBenefits                         110293.58
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89186, dtype: object)
(89187, Id                            89188
EmployeeName        Tadhge K Conway
JobTitle             Police Officer
BasePay                    78591.02
OvertimePay                 2269.75
OtherPay                     1692.5
Benefits                   27739.31
TotalPay                   82553.27
TotalPayBenefits          110292.58
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89187, dtype: object)
(89188, Id                                  89189
EmployeeName                   Dan  Leung
JobTitle            Deputy Court Clerk II
BasePay                          76070.52
OvertimePay                           0.0
OtherPay                           4560.0
Benefits                         29656.51
TotalPay                         80630.52
TotalPayBenefits                110287.03
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89188, dtype: object)
(89189, Id                                      89190
EmployeeName                    Dara L Meiser
JobTitle            Psychiatric Social Worker
BasePay                              81203.81
OvertimePay                               0.0
OtherPay                                580.2
Benefits                             28501.82
TotalPay                             81784.01
TotalPayBenefits                    110285.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89189, dtype: object)
(89190, Id                                89191
EmployeeName           Michael L Steady
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                         0.0
OtherPay                        1315.01
Benefits                       29687.24
TotalPay                       80598.51
TotalPayBenefits              110285.75
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89190, dtype: object)
(89191, Id                           89192
EmployeeName        Jason P Horsey
JobTitle             Special Nurse
BasePay                   102137.2
OvertimePay                3665.77
OtherPay                    3383.1
Benefits                   1091.92
TotalPay                 109186.07
TotalPayBenefits         110277.99
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89191, dtype: object)
(89192, Id                                 89193
EmployeeName           Ronald  Tolentino
JobTitle            Automotive Machinist
BasePay                         80133.01
OvertimePay                       553.88
OtherPay                             0.0
Benefits                        29589.38
TotalPay                        80686.89
TotalPayBenefits               110276.27
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89192, dtype: object)
(89193, Id                                89194
EmployeeName              Michael P Lew
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                       82.21
OtherPay                        1237.38
Benefits                       29671.78
TotalPay                       80603.09
TotalPayBenefits              110274.87
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89193, dtype: object)
(89194, Id                             89195
EmployeeName        Willie R Johnson
JobTitle            Transit Operator
BasePay                     66724.66
OvertimePay                  9113.84
OtherPay                     1747.97
Benefits                     32688.1
TotalPay                    77586.47
TotalPayBenefits           110274.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89194, dtype: object)
(89195, Id                                          89196
EmployeeName                        James E Moore
JobTitle            Asst General Services Manager
BasePay                                  73522.03
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 36748.59
TotalPay                                 73522.03
TotalPayBenefits                        110270.62
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89195, dtype: object)
(89196, Id                                          89197
EmployeeName                       Eliza E Lucero
JobTitle            Senior Administrative Analyst
BasePay                                   79900.4
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 30369.85
TotalPay                                  79900.4
TotalPayBenefits                        110270.25
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89196, dtype: object)
(89197, Id                                      89198
EmployeeName                        Soay  New
JobTitle            Senior Eligibility Worker
BasePay                              75033.04
OvertimePay                           3956.66
OtherPay                               2268.0
Benefits                             29008.41
TotalPay                              81257.7
TotalPayBenefits                    110266.11
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89197, dtype: object)
(89198, Id                                89199
EmployeeName              Rafael R Yera
JobTitle            Arborist Technician
BasePay                         76498.0
OvertimePay                     5494.48
OtherPay                           59.2
Benefits                       28211.74
TotalPay                       82051.68
TotalPayBenefits              110263.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89198, dtype: object)
(89199, Id                               89200
EmployeeName        Donnell M Thompson
JobTitle              Transit Operator
BasePay                       62560.25
OvertimePay                    13642.1
OtherPay                        3131.0
Benefits                      30926.65
TotalPay                      79333.35
TotalPayBenefits              110260.0
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89199, dtype: object)
(89200, Id                                       89201
EmployeeName             Alexis C King-Gallman
JobTitle            Protective Services Worker
BasePay                               79900.12
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30357.17
TotalPay                              79900.12
TotalPayBenefits                     110257.29
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89200, dtype: object)
(89201, Id                                89202
EmployeeName             Ataklti  Betre
JobTitle            Automotive Mechanic
BasePay                        79283.52
OvertimePay                       885.6
OtherPay                          550.0
Benefits                       29536.36
TotalPay                       80719.12
TotalPayBenefits              110255.48
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89201, dtype: object)
(89202, Id                                   89203
EmployeeName                 Vincent C Woo
JobTitle            Airport Safety Officer
BasePay                           71559.64
OvertimePay                        5604.31
OtherPay                           3700.68
Benefits                          29390.42
TotalPay                          80864.63
TotalPayBenefits                 110255.05
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89202, dtype: object)
(89203, Id                                89204
EmployeeName         Evelyn C Suson-Lee
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                         0.0
OtherPay                           40.0
Benefits                       29672.23
TotalPay                        80581.0
TotalPayBenefits              110253.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89203, dtype: object)
(89204, Id                                  89205
EmployeeName                 Delbert  Lee
JobTitle            X-Ray Laboratory Aide
BasePay                           66107.7
OvertimePay                      15035.85
OtherPay                          2004.22
Benefits                         27099.35
TotalPay                         83147.77
TotalPayBenefits                110247.12
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89204, dtype: object)
(89205, Id                                   89206
EmployeeName                 Nancy P Lacap
JobTitle            Patient Care Assistant
BasePay                           68391.01
OvertimePay                        7096.43
OtherPay                            6348.2
Benefits                          28409.25
TotalPay                          81835.64
TotalPayBenefits                 110244.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89205, dtype: object)
(89206, Id                                  89207
EmployeeName                  Paul R Fiol
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4520.0
Benefits                         29650.48
TotalPay                         80590.51
TotalPayBenefits                110240.99
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89206, dtype: object)
(89207, Id                                          89208
EmployeeName                     Andrew E Melomet
JobTitle            Eligibility Worker Supervisor
BasePay                                  79247.03
OvertimePay                               1524.54
OtherPay                                      0.0
Benefits                                 29461.66
TotalPay                                 80771.57
TotalPayBenefits                        110233.23
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89207, dtype: object)
(89208, Id                               89209
EmployeeName        Christina  Serzant
JobTitle               Health Worker 4
BasePay                        76545.0
OvertimePay                    3528.11
OtherPay                       1091.68
Benefits                      29066.68
TotalPay                      81164.79
TotalPayBenefits             110231.47
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89208, dtype: object)
(89209, Id                                     89210
EmployeeName                Kristy M Delgado
JobTitle            Deputy Probation Officer
BasePay                             82212.71
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            28015.77
TotalPay                            82212.71
TotalPayBenefits                   110228.48
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89209, dtype: object)
(89210, Id                                 89211
EmployeeName        Patrick R O'Donoghue
JobTitle                    Cement Mason
BasePay                         73435.76
OvertimePay                      6776.41
OtherPay                          1690.0
Benefits                        28326.24
TotalPay                        81902.17
TotalPayBenefits               110228.41
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89210, dtype: object)
(89211, Id                             89212
EmployeeName         George F Oro Jr
JobTitle            Transit Operator
BasePay                     68941.65
OvertimePay                  3216.61
OtherPay                     3775.33
Benefits                    34291.79
TotalPay                    75933.59
TotalPayBenefits           110225.38
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89211, dtype: object)
(89212, Id                                89213
EmployeeName              Graig H Inaba
JobTitle            Pharmacy Technician
BasePay                         80541.0
OvertimePay                         0.0
OtherPay                           17.9
Benefits                       29661.01
TotalPay                        80558.9
TotalPayBenefits              110219.91
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89212, dtype: object)
(89213, Id                             89214
EmployeeName           Wen Wei  Chen
JobTitle            Transit Operator
BasePay                     64330.44
OvertimePay                  12929.4
OtherPay                     2056.32
Benefits                    30901.86
TotalPay                    79316.16
TotalPayBenefits           110218.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89213, dtype: object)
(89214, Id                           89215
EmployeeName        Leslie A Kanno
JobTitle               Librarian 1
BasePay                    79035.1
OvertimePay                    0.0
OtherPay                     915.4
Benefits                  30264.84
TotalPay                   79950.5
TotalPayBenefits         110215.34
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89214, dtype: object)
(89215, Id                                      89216
EmployeeName             Jose Antonio F Sarte
JobTitle            Licensed Vocational Nurse
BasePay                               70573.0
OvertimePay                          10081.57
OtherPay                                931.5
Benefits                              28629.1
TotalPay                             81586.07
TotalPayBenefits                    110215.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89215, dtype: object)
(89216, Id                                89217
EmployeeName           Michael H Ouyang
JobTitle            Pharmacy Technician
BasePay                        80541.04
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29664.97
TotalPay                       80541.04
TotalPayBenefits              110206.01
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89216, dtype: object)
(89217, Id                                89218
EmployeeName               Peter K Ngau
JobTitle            Pharmacy Technician
BasePay                        80541.02
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       29664.94
TotalPay                       80541.02
TotalPayBenefits              110205.96
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89217, dtype: object)
(89218, Id                             89219
EmployeeName             Leslie A Li
JobTitle            Registered Nurse
BasePay                     75099.02
OvertimePay                  5196.66
OtherPay                     5386.57
Benefits                    24519.92
TotalPay                    85682.25
TotalPayBenefits           110202.17
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89218, dtype: object)
(89219, Id                                         89220
EmployeeName                    Michael E Schell
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.52
OvertimePay                                  0.0
OtherPay                                  1242.0
Benefits                                29674.88
TotalPay                                80525.52
TotalPayBenefits                        110200.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89219, dtype: object)
(89220, Id                                    89221
EmployeeName                 Andrew J Stone
JobTitle            Park Section Supervisor
BasePay                            78567.03
OvertimePay                         2356.38
OtherPay                                0.0
Benefits                           29275.71
TotalPay                           80923.41
TotalPayBenefits                  110199.12
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89220, dtype: object)
(89221, Id                                89222
EmployeeName            John C Ferretti
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                      824.81
OtherPay                          550.0
Benefits                       29536.36
TotalPay                       80658.31
TotalPayBenefits              110194.67
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89221, dtype: object)
(89222, Id                                    89223
EmployeeName               Yalemzwed  Worku
JobTitle            Parking Control Officer
BasePay                            59203.51
OvertimePay                        24026.96
OtherPay                            1303.66
Benefits                           25656.12
TotalPay                           84534.13
TotalPayBenefits                  110190.25
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89222, dtype: object)
(89223, Id                             89224
EmployeeName           Robert  Smith
JobTitle            Transit Operator
BasePay                     66398.44
OvertimePay                 11069.49
OtherPay                      530.75
Benefits                    32187.03
TotalPay                    77998.68
TotalPayBenefits           110185.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89223, dtype: object)
(89224, Id                             89225
EmployeeName         Detra D Batiste
JobTitle            Transit Operator
BasePay                     67548.86
OvertimePay                  8375.66
OtherPay                      729.82
Benefits                    33531.34
TotalPay                    76654.34
TotalPayBenefits           110185.68
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89224, dtype: object)
(89225, Id                             89226
EmployeeName          Kwanza Z Swift
JobTitle            Transit Operator
BasePay                      65912.6
OvertimePay                  7080.72
OtherPay                     4198.09
Benefits                    32993.77
TotalPay                    77191.41
TotalPayBenefits           110185.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89225, dtype: object)
(89226, Id                                89227
EmployeeName               Debra  Hines
JobTitle            Public Health Nurse
BasePay                         80540.9
OvertimePay                         0.0
OtherPay                        3138.21
Benefits                       26501.03
TotalPay                       83679.11
TotalPayBenefits              110180.14
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89226, dtype: object)
(89227, Id                                      89228
EmployeeName                   Priscilla C Sy
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           4314.99
OtherPay                               1888.0
Benefits                             28933.64
TotalPay                              81236.0
TotalPayBenefits                    110169.64
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89227, dtype: object)
(89228, Id                                       89229
EmployeeName                     Andrea  Monah
JobTitle            Protective Services Worker
BasePay                               79820.38
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30347.17
TotalPay                              79820.38
TotalPayBenefits                     110167.55
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89228, dtype: object)
(89229, Id                             89230
EmployeeName        Adolfo  Sandoval
JobTitle                Truck Driver
BasePay                     71565.92
OvertimePay                  2869.93
OtherPay                     7864.72
Benefits                    27854.34
TotalPay                    82300.57
TotalPayBenefits           110154.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89229, dtype: object)
(89230, Id                                89231
EmployeeName        Manuel D Santamaria
JobTitle               Transit Operator
BasePay                        67486.57
OvertimePay                     4818.71
OtherPay                        4153.45
Benefits                       33695.54
TotalPay                       76458.73
TotalPayBenefits              110154.27
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89230, dtype: object)
(89231, Id                              89232
EmployeeName        Alma Rosa  Garcia
JobTitle             Registered Nurse
BasePay                      79190.64
OvertimePay                     453.0
OtherPay                      4287.48
Benefits                     26222.26
TotalPay                     83931.12
TotalPayBenefits            110153.38
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89231, dtype: object)
(89232, Id                                89233
EmployeeName             Ronnie  Medina
JobTitle            Stationary Engineer
BasePay                        78470.62
OvertimePay                     2043.51
OtherPay                          322.1
Benefits                       29315.97
TotalPay                       80836.23
TotalPayBenefits               110152.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89232, dtype: object)
(89233, Id                                           89234
EmployeeName                    Willie B Thomas Jr
JobTitle            Community Police Services Aide
BasePay                                    65802.0
OvertimePay                                14693.8
OtherPay                                   2510.77
Benefits                                  27142.48
TotalPay                                  83006.57
TotalPayBenefits                         110149.05
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89233, dtype: object)
(89234, Id                             89235
EmployeeName            Aeris  Liang
JobTitle            Transit Operator
BasePay                     67034.87
OvertimePay                  9145.35
OtherPay                      689.37
Benefits                    33277.05
TotalPay                    76869.59
TotalPayBenefits           110146.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89234, dtype: object)
(89235, Id                               89236
EmployeeName        Durante M Anderson
JobTitle              Transit Operator
BasePay                        64328.0
OvertimePay                   13486.89
OtherPay                       1769.24
Benefits                      30555.74
TotalPay                      79584.13
TotalPayBenefits             110139.87
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89235, dtype: object)
(89236, Id                             89237
EmployeeName        Kenard  Williams
JobTitle            Transit Operator
BasePay                     67088.63
OvertimePay                 10242.93
OtherPay                      345.76
Benefits                    32459.88
TotalPay                    77677.32
TotalPayBenefits            110137.2
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89236, dtype: object)
(89237, Id                                     89238
EmployeeName        James D Cheeseborough II
JobTitle                  Transit Supervisor
BasePay                             78567.91
OvertimePay                            60.49
OtherPay                             2840.87
Benefits                            28662.09
TotalPay                            81469.27
TotalPayBenefits                   110131.36
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89237, dtype: object)
(89238, Id                                    89239
EmployeeName                  Gilbert  Tang
JobTitle            Real Property Appraiser
BasePay                            79068.07
OvertimePay                             0.0
OtherPay                             2100.0
Benefits                           28961.96
TotalPay                           81168.07
TotalPayBenefits                  110130.03
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89238, dtype: object)
(89239, Id                                          89240
EmployeeName                         Lucia S Wong
JobTitle            Library Technical Assistant 2
BasePay                                  76869.04
OvertimePay                                   0.0
OtherPay                                  3622.36
Benefits                                 29637.13
TotalPay                                  80491.4
TotalPayBenefits                        110128.53
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89239, dtype: object)
(89240, Id                           89241
EmployeeName        Ronald W Quock
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                 2643.5
OtherPay                   1155.91
Benefits                  27737.68
TotalPay                  82390.43
TotalPayBenefits         110128.11
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89240, dtype: object)
(89241, Id                             89242
EmployeeName             Peter  Poon
JobTitle            Transit Operator
BasePay                     68404.32
OvertimePay                  5016.69
OtherPay                     2903.31
Benefits                    33803.02
TotalPay                    76324.32
TotalPayBenefits           110127.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89241, dtype: object)
(89242, Id                                  89243
EmployeeName                  Queena U Lu
JobTitle            Emp & Training Spec 4
BasePay                          79070.51
OvertimePay                           0.0
OtherPay                            625.0
Benefits                         30427.35
TotalPay                         79695.51
TotalPayBenefits                110122.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89242, dtype: object)
(89243, Id                              89244
EmployeeName        Sarah E Rainville
JobTitle                Special Nurse
BasePay                      97438.92
OvertimePay                    376.43
OtherPay                     11721.23
Benefits                       579.53
TotalPay                    109536.58
TotalPayBenefits            110116.11
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89243, dtype: object)
(89244, Id                                         89245
EmployeeName                         Walter  Ang
JobTitle            General Laborer Supervisor 1
BasePay                                  69199.4
OvertimePay                             13116.42
OtherPay                                  336.04
Benefits                                27457.14
TotalPay                                82651.86
TotalPayBenefits                        110109.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89244, dtype: object)
(89245, Id                              89246
EmployeeName           Queen E Taylor
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  13230.26
OtherPay                      1087.83
Benefits                     27399.58
TotalPay                     82709.09
TotalPayBenefits            110108.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89245, dtype: object)
(89246, Id                                89247
EmployeeName           Matthew J Saxton
JobTitle            Arborist Technician
BasePay                        80282.54
OvertimePay                         0.0
OtherPay                         171.46
Benefits                       29654.56
TotalPay                        80454.0
TotalPayBenefits              110108.56
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89246, dtype: object)
(89247, Id                                   89248
EmployeeName             Rolando C Soriano
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       13613.69
OtherPay                             778.0
Benefits                          27321.33
TotalPay                          82782.69
TotalPayBenefits                 110104.02
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89247, dtype: object)
(89248, Id                                         89249
EmployeeName                         Emily  Chea
JobTitle            Employment & Training Spec 3
BasePay                                 79758.01
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30329.92
TotalPay                                79758.01
TotalPayBenefits                       110087.93
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89248, dtype: object)
(89249, Id                                         89250
EmployeeName                  Lilli Ann  Morales
JobTitle            Employment & Training Spec 3
BasePay                                  79758.0
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30329.92
TotalPay                                 79758.0
TotalPayBenefits                       110087.92
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89249, dtype: object)
(89250, Id                             89251
EmployeeName        Hildie B Golding
JobTitle            Registered Nurse
BasePay                      81657.8
OvertimePay                      0.0
OtherPay                     1459.97
Benefits                    26966.38
TotalPay                    83117.77
TotalPayBenefits           110084.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89250, dtype: object)
(89251, Id                                           89252
EmployeeName                       John E Manering
JobTitle            IT Operations Support Admn III
BasePay                                   76389.88
OvertimePay                                    0.0
OtherPay                                   5312.83
Benefits                                  28380.05
TotalPay                                  81702.71
TotalPayBenefits                         110082.76
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89251, dtype: object)
(89252, Id                           89253
EmployeeName         Brian I Carew
JobTitle            Police Officer
BasePay                   78591.01
OvertimePay                 1821.2
OtherPay                   1932.75
Benefits                  27737.22
TotalPay                  82344.96
TotalPayBenefits         110082.18
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89252, dtype: object)
(89253, Id                           89254
EmployeeName         Anika A Lyons
JobTitle            Accountant III
BasePay                   84884.37
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  25197.64
TotalPay                  84884.37
TotalPayBenefits         110082.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89253, dtype: object)
(89254, Id                                  89255
EmployeeName             Barbara J Bucton
JobTitle            Executive Secretary 2
BasePay                          79742.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30326.48
TotalPay                         79742.52
TotalPayBenefits                 110069.0
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89254, dtype: object)
(89255, Id                                  89256
EmployeeName            Lenore D Crawford
JobTitle            Executive Secretary 2
BasePay                          79742.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30326.47
TotalPay                         79742.51
TotalPayBenefits                110068.98
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89255, dtype: object)
(89256, Id                                  89257
EmployeeName           Darlene M Armanino
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30326.47
TotalPay                          79742.5
TotalPayBenefits                110068.97
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89256, dtype: object)
(89257, Id                                89258
EmployeeName        Rosemarie C Maghari
JobTitle                  Special Nurse
BasePay                        82795.24
OvertimePay                    12266.77
OtherPay                       13914.76
Benefits                        1089.78
TotalPay                      108976.77
TotalPayBenefits              110066.55
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89257, dtype: object)
(89258, Id                                   89259
EmployeeName         Marlene  Osorio-Agard
JobTitle            Public SafetyComm Disp
BasePay                           68333.46
OvertimePay                         6346.2
OtherPay                            9547.1
Benefits                          25836.42
TotalPay                          84226.76
TotalPayBenefits                 110063.18
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89258, dtype: object)
(89259, Id                                          89260
EmployeeName                         Cherie X Liu
JobTitle            Library Technical Assistant 2
BasePay                                  77153.72
OvertimePay                                   0.0
OtherPay                                  3229.66
Benefits                                 29674.67
TotalPay                                 80383.38
TotalPayBenefits                        110058.05
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89259, dtype: object)
(89260, Id                                89261
EmployeeName        Celerina V Valiente
JobTitle                  Special Nurse
BasePay                        78754.61
OvertimePay                         0.0
OtherPay                       19287.78
Benefits                       12015.58
TotalPay                       98042.39
TotalPayBenefits              110057.97
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89260, dtype: object)
(89261, Id                                  89262
EmployeeName            Glafira Y Beasley
JobTitle            Executive Secretary 2
BasePay                          79742.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30314.12
TotalPay                         79742.51
TotalPayBenefits                110056.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89261, dtype: object)
(89262, Id                                          89263
EmployeeName                           May K Chan
JobTitle            Eligibility Worker Supervisor
BasePay                                  79618.02
OvertimePay                                   0.0
OtherPay                                   1320.0
Benefits                                 29117.81
TotalPay                                 80938.02
TotalPayBenefits                        110055.83
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89262, dtype: object)
(89263, Id                          89264
EmployeeName        Conzy M Jones
JobTitle              Secretary 2
BasePay                  66258.02
OvertimePay               16992.9
OtherPay                      0.0
Benefits                 26804.53
TotalPay                 83250.92
TotalPayBenefits        110055.45
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89263, dtype: object)
(89264, Id                             89265
EmployeeName        Myron K Calloway
JobTitle            Transit Operator
BasePay                     67410.99
OvertimePay                  4241.08
OtherPay                     4610.05
Benefits                    33784.28
TotalPay                    76262.12
TotalPayBenefits            110046.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89264, dtype: object)
(89265, Id                                      89266
EmployeeName                   Hilda L Hooker
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           3917.39
OtherPay                               2108.0
Benefits                              28976.8
TotalPay                             81058.42
TotalPayBenefits                    110035.22
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89265, dtype: object)
(89266, Id                                    89267
EmployeeName                   Adrian D Law
JobTitle            Real Property Appraiser
BasePay                            78498.92
OvertimePay                             0.0
OtherPay                             1200.0
Benefits                           30336.14
TotalPay                           79698.92
TotalPayBenefits                  110035.06
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89266, dtype: object)
(89267, Id                                        89268
EmployeeName                   Sutanto  Darsono
JobTitle            Investigator, Tax Collector
BasePay                                 80991.5
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29039.57
TotalPay                                80991.5
TotalPayBenefits                      110031.07
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89267, dtype: object)
(89268, Id                          89269
EmployeeName        John C Gudino
JobTitle                  Painter
BasePay                  77768.47
OvertimePay               1137.42
OtherPay                   1700.0
Benefits                 29421.67
TotalPay                 80605.89
TotalPayBenefits        110027.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89268, dtype: object)
(89269, Id                             89270
EmployeeName          Estacia  Wells
JobTitle            Transit Operator
BasePay                     69039.91
OvertimePay                  5495.44
OtherPay                     1708.93
Benefits                    33780.97
TotalPay                    76244.28
TotalPayBenefits           110025.25
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89269, dtype: object)
(89270, Id                             89271
EmployeeName             Anwar  Baig
JobTitle            Transit Operator
BasePay                     68595.33
OvertimePay                  1850.13
OtherPay                     5101.64
Benefits                    34470.26
TotalPay                     75547.1
TotalPayBenefits           110017.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89270, dtype: object)
(89271, Id                              89272
EmployeeName        David  Rickard Jr
JobTitle                      Painter
BasePay                      76988.21
OvertimePay                   3272.03
OtherPay                        804.5
Benefits                     28951.29
TotalPay                     81064.74
TotalPayBenefits            110016.03
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89271, dtype: object)
(89272, Id                             89273
EmployeeName                Nam  Chu
JobTitle            Transit Operator
BasePay                     67888.38
OvertimePay                  3021.35
OtherPay                     4317.18
Benefits                    34786.97
TotalPay                    75226.91
TotalPayBenefits           110013.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89272, dtype: object)
(89273, Id                             89274
EmployeeName          Troy D Almeida
JobTitle            Registered Nurse
BasePay                     80025.19
OvertimePay                  2242.28
OtherPay                    11805.79
Benefits                     15931.0
TotalPay                    94073.26
TotalPayBenefits           110004.26
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89273, dtype: object)
(89274, Id                                      89275
EmployeeName                  Larisa  Vitenko
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                            5266.1
OtherPay                               2438.0
Benefits                             28697.49
TotalPay                              81306.1
TotalPayBenefits                    110003.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89274, dtype: object)
(89275, Id                             89276
EmployeeName        Renato A Soriano
JobTitle             General Laborer
BasePay                      62468.5
OvertimePay                  9085.53
OtherPay                    10361.34
Benefits                    28087.54
TotalPay                    81915.37
TotalPayBenefits           110002.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89275, dtype: object)
(89276, Id                             89277
EmployeeName          Todd P Sterner
JobTitle            Deputy Sheriff 1
BasePay                      66104.4
OvertimePay                 10106.11
OtherPay                     5471.64
Benefits                    28320.42
TotalPay                    81682.15
TotalPayBenefits           110002.57
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89276, dtype: object)
(89277, Id                                     89278
EmployeeName                  Nick D Jacoban
JobTitle            Counselor, Juvenile Hall
BasePay                             67549.95
OvertimePay                         14442.38
OtherPay                             1687.96
Benefits                            26322.11
TotalPay                            83680.29
TotalPayBenefits                    110002.4
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89277, dtype: object)
(89278, Id                                         89279
EmployeeName                           Linda  Ng
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                 73899.02
OvertimePay                               6993.1
OtherPay                                  648.02
Benefits                                28462.26
TotalPay                                81540.14
TotalPayBenefits                        110002.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89278, dtype: object)
(89279, Id                                      89280
EmployeeName                   Tyrone  Harper
JobTitle            EMT/Paramedic/Firefighter
BasePay                              74106.57
OvertimePay                           1094.05
OtherPay                              8697.25
Benefits                             26096.56
TotalPay                             83897.87
TotalPayBenefits                    109994.43
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89279, dtype: object)
(89280, Id                                       89281
EmployeeName               Lorene  Delos Reyes
JobTitle            Community Development Spec
BasePay                                80404.1
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29583.52
TotalPay                               80404.1
TotalPayBenefits                     109987.62
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89280, dtype: object)
(89281, Id                                       89282
EmployeeName             Diane Yvette Crowther
JobTitle            Protective Services Worker
BasePay                               81244.48
OvertimePay                                0.0
OtherPay                                 482.1
Benefits                              28260.39
TotalPay                              81726.58
TotalPayBenefits                     109986.97
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89281, dtype: object)
(89282, Id                             89283
EmployeeName            Tac A Chuong
JobTitle            Transit Operator
BasePay                     67810.64
OvertimePay                  7971.54
OtherPay                      582.15
Benefits                    33619.85
TotalPay                    76364.33
TotalPayBenefits           109984.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89282, dtype: object)
(89283, Id                             89284
EmployeeName        Sheetal  Kataria
JobTitle                   Dietitian
BasePay                     79516.07
OvertimePay                      0.0
OtherPay                       200.0
Benefits                    30259.72
TotalPay                    79716.07
TotalPayBenefits           109975.79
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89283, dtype: object)
(89284, Id                               89285
EmployeeName        Jonathan J Emerson
JobTitle              Transit Operator
BasePay                       67962.15
OvertimePay                    8099.43
OtherPay                         897.8
Benefits                       33011.3
TotalPay                      76959.38
TotalPayBenefits             109970.68
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89284, dtype: object)
(89285, Id                                         89286
EmployeeName                 Dick Wei Shing  Lui
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.51
OvertimePay                                54.81
OtherPay                                  1001.0
Benefits                                 29627.2
TotalPay                                80339.32
TotalPayBenefits                       109966.52
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89285, dtype: object)
(89286, Id                                          89287
EmployeeName                            Mary  Hom
JobTitle            Senior Administrative Analyst
BasePay                                  82124.17
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 27836.14
TotalPay                                 82124.17
TotalPayBenefits                        109960.31
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89286, dtype: object)
(89287, Id                           89288
EmployeeName        Patrick E Shea
JobTitle               Librarian 1
BasePay                   78721.22
OvertimePay                    0.0
OtherPay                   2082.76
Benefits                  29150.73
TotalPay                  80803.98
TotalPayBenefits         109954.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89287, dtype: object)
(89288, Id                                           89289
EmployeeName                          Jennifer  Xu
JobTitle            Community Police Services Aide
BasePay                                   66123.13
OvertimePay                                13264.0
OtherPay                                   3167.67
Benefits                                  27394.58
TotalPay                                   82554.8
TotalPayBenefits                         109949.38
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89288, dtype: object)
(89289, Id                                89290
EmployeeName        Charlotte R Sanders
JobTitle                    Librarian 1
BasePay                         79145.9
OvertimePay                         0.0
OtherPay                        1656.82
Benefits                       29132.68
TotalPay                       80802.72
TotalPayBenefits               109935.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89289, dtype: object)
(89290, Id                             89291
EmployeeName              Tuan  Banh
JobTitle            Transit Operator
BasePay                     68659.12
OvertimePay                  5604.21
OtherPay                     2013.37
Benefits                    33657.63
TotalPay                     76276.7
TotalPayBenefits           109934.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89290, dtype: object)
(89291, Id                                  89292
EmployeeName        Aleksandr  Andreyenko
JobTitle                 Transit Operator
BasePay                          68627.22
OvertimePay                        4749.8
OtherPay                          2126.23
Benefits                         34423.57
TotalPay                         75503.25
TotalPayBenefits                109926.82
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89291, dtype: object)
(89292, Id                             89293
EmployeeName            Niema  Higgs
JobTitle            Transit Operator
BasePay                     67625.59
OvertimePay                  7793.41
OtherPay                     1462.93
Benefits                     33039.9
TotalPay                    76881.93
TotalPayBenefits           109921.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89292, dtype: object)
(89293, Id                                  89294
EmployeeName               Carla D Vaughn
JobTitle            Executive Secretary 2
BasePay                          79238.34
OvertimePay                       1333.08
OtherPay                              0.0
Benefits                         29349.11
TotalPay                         80571.42
TotalPayBenefits                109920.53
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89293, dtype: object)
(89294, Id                          89295
EmployeeName         Lisa M Guide
JobTitle            Special Nurse
BasePay                 105343.05
OvertimePay                   0.0
OtherPay                  3487.11
Benefits                  1088.28
TotalPay                108830.16
TotalPayBenefits        109918.44
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89294, dtype: object)
(89295, Id                                    89296
EmployeeName        Budiman R Poespowidjojo
JobTitle                     Police Officer
BasePay                            78591.01
OvertimePay                         2082.24
OtherPay                            1508.31
Benefits                           27735.59
TotalPay                           82181.56
TotalPayBenefits                  109917.15
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89295, dtype: object)
(89296, Id                          89297
EmployeeName        Attila M Foti
JobTitle             Truck Driver
BasePay                  80052.01
OvertimePay                 55.89
OtherPay                    192.0
Benefits                 29614.09
TotalPay                  80299.9
TotalPayBenefits        109913.99
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89296, dtype: object)
(89297, Id                                       89298
EmployeeName                       Lynda  Tran
JobTitle            Protective Services Worker
BasePay                               79615.51
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30296.91
TotalPay                              79615.51
TotalPayBenefits                     109912.42
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89297, dtype: object)
(89298, Id                           89299
EmployeeName        Paula  Kotakis
JobTitle              Museum Guard
BasePay                   61398.01
OvertimePay               15114.17
OtherPay                   6330.87
Benefits                   27067.0
TotalPay                  82843.05
TotalPayBenefits         109910.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89298, dtype: object)
(89299, Id                              89300
EmployeeName          Corazon  Estiva
JobTitle            Nursing Assistant
BasePay                       53595.4
OvertimePay                  34312.51
OtherPay                       757.82
Benefits                     21238.57
TotalPay                     88665.73
TotalPayBenefits             109904.3
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89299, dtype: object)
(89300, Id                                 89301
EmployeeName        Dominic G Busalacchi
JobTitle                  Police Officer
BasePay                         78591.03
OvertimePay                      2033.52
OtherPay                          1543.0
Benefits                        27735.47
TotalPay                        82167.55
TotalPayBenefits               109903.02
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89300, dtype: object)
(89301, Id                             89302
EmployeeName         Carlos A Miller
JobTitle            Transit Operator
BasePay                     64446.29
OvertimePay                   9480.3
OtherPay                     3821.32
Benefits                    32148.62
TotalPay                    77747.91
TotalPayBenefits           109896.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89301, dtype: object)
(89302, Id                                89303
EmployeeName             Gary  McArthur
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                      525.83
OtherPay                          550.0
Benefits                       29536.36
TotalPay                       80359.34
TotalPayBenefits               109895.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89302, dtype: object)
(89303, Id                                      89304
EmployeeName               Blossom S Martinez
JobTitle            Licensed Vocational Nurse
BasePay                              70208.73
OvertimePay                           3501.72
OtherPay                              6583.88
Benefits                             29601.34
TotalPay                             80294.33
TotalPayBenefits                    109895.67
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89303, dtype: object)
(89304, Id                                   89305
EmployeeName                 JoAnn  Torres
JobTitle            Customer Service Agent
BasePay                           71820.02
OvertimePay                        4971.02
OtherPay                           4327.23
Benefits                          28766.07
TotalPay                          81118.27
TotalPayBenefits                 109884.34
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89304, dtype: object)
(89305, Id                                      89306
EmployeeName            Jerame James  Barrion
JobTitle            Licensed Vocational Nurse
BasePay                               70521.0
OvertimePay                           3041.28
OtherPay                              6610.26
Benefits                             29710.48
TotalPay                             80172.54
TotalPayBenefits                    109883.02
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89305, dtype: object)
(89306, Id                             89307
EmployeeName             Simon  Suen
JobTitle            Transit Operator
BasePay                     68934.85
OvertimePay                  4132.69
OtherPay                     2785.64
Benefits                    34024.64
TotalPay                    75853.18
TotalPayBenefits           109877.82
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89306, dtype: object)
(89307, Id                           89308
EmployeeName         Edith  Horner
JobTitle            Accountant III
BasePay                   95961.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  13915.95
TotalPay                  95961.52
TotalPayBenefits         109877.47
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89307, dtype: object)
(89308, Id                                89309
EmployeeName              Erica M Cline
JobTitle            Graphics Supervisor
BasePay                        79561.61
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       30313.22
TotalPay                       79561.61
TotalPayBenefits              109874.83
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89308, dtype: object)
(89309, Id                                   89310
EmployeeName                 Sharon  Black
JobTitle            Psychiatric Technician
BasePay                           71429.21
OvertimePay                        2630.27
OtherPay                           7044.59
Benefits                          28765.64
TotalPay                          81104.07
TotalPayBenefits                 109869.71
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89309, dtype: object)
(89310, Id                              89311
EmployeeName            Norma M Radoc
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                   7643.02
OtherPay                      5567.93
Benefits                     28262.27
TotalPay                     81601.95
TotalPayBenefits            109864.22
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89310, dtype: object)
(89311, Id                             89312
EmployeeName         Zhen Hang  Zhuo
JobTitle            Transit Operator
BasePay                     67142.63
OvertimePay                  9008.67
OtherPay                      432.87
Benefits                    33274.93
TotalPay                    76584.17
TotalPayBenefits            109859.1
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89311, dtype: object)
(89312, Id                                   89313
EmployeeName              Sheena C Johnson
JobTitle            Administrative Analyst
BasePay                           80234.12
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29616.31
TotalPay                          80234.12
TotalPayBenefits                 109850.43
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89312, dtype: object)
(89313, Id                              89314
EmployeeName        Sonia O Rodriguez
JobTitle             Transit Operator
BasePay                      67556.54
OvertimePay                   7087.73
OtherPay                       2058.7
Benefits                     33145.07
TotalPay                     76702.97
TotalPayBenefits            109848.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89313, dtype: object)
(89314, Id                                      89315
EmployeeName                    Darren M Page
JobTitle            Public Health Team Leader
BasePay                               77436.0
OvertimePay                            2593.2
OtherPay                                650.4
Benefits                             29161.94
TotalPay                              80679.6
TotalPayBenefits                    109841.54
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89314, dtype: object)
(89315, Id                                      89316
EmployeeName              Rosa M Rivera Palma
JobTitle            Senior Eligibility Worker
BasePay                              75033.06
OvertimePay                           4402.98
OtherPay                               1540.0
Benefits                             28864.64
TotalPay                             80976.04
TotalPayBenefits                    109840.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89315, dtype: object)
(89316, Id                                           89317
EmployeeName                     Florencio  Devera
JobTitle            Central Processing & Dist Tech
BasePay                                   71435.91
OvertimePay                                 4096.5
OtherPay                                   5441.11
Benefits                                  28863.64
TotalPay                                  80973.52
TotalPayBenefits                         109837.16
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89316, dtype: object)
(89317, Id                                      89318
EmployeeName                  Stephen M Gomes
JobTitle            Psychiatric Social Worker
BasePay                              79514.01
OvertimePay                               0.0
OtherPay                                 40.0
Benefits                             30280.72
TotalPay                             79554.01
TotalPayBenefits                    109834.73
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89317, dtype: object)
(89318, Id                           89319
EmployeeName        Douglas A Bias
JobTitle                   Painter
BasePay                    77946.2
OvertimePay                    0.0
OtherPay                    2284.0
Benefits                  29598.43
TotalPay                   80230.2
TotalPayBenefits         109828.63
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89318, dtype: object)
(89319, Id                               89320
EmployeeName         Patrick A Guilles
JobTitle            Transit Supervisor
BasePay                       67196.96
OvertimePay                    5942.13
OtherPay                       3914.97
Benefits                      32772.48
TotalPay                      77054.06
TotalPayBenefits             109826.54
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89319, dtype: object)
(89320, Id                                        89321
EmployeeName                      Mark V Lovett
JobTitle            Customer Service Agent Supv
BasePay                                80043.97
OvertimePay                               451.8
OtherPay                                   3.01
Benefits                               29327.18
TotalPay                               80498.78
TotalPayBenefits                      109825.96
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89320, dtype: object)
(89321, Id                                      89322
EmployeeName                     Myrna L Lazo
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           4018.21
OtherPay                               1848.0
Benefits                             28925.77
TotalPay                             80899.24
TotalPayBenefits                    109825.01
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89321, dtype: object)
(89322, Id                             89323
EmployeeName               Tony  Yan
JobTitle            Transit Operator
BasePay                     67073.31
OvertimePay                  4854.75
OtherPay                     4338.81
Benefits                     33558.1
TotalPay                    76266.87
TotalPayBenefits           109824.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89322, dtype: object)
(89323, Id                                         89324
EmployeeName                    Salina A Mickles
JobTitle            Cement Finisher Supervisor 1
BasePay                                 87505.57
OvertimePay                              1693.23
OtherPay                                  3108.6
Benefits                                17515.12
TotalPay                                 92307.4
TotalPayBenefits                       109822.52
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89323, dtype: object)
(89324, Id                                 89325
EmployeeName          Humberto A Alvarez
JobTitle            Senior Social Worker
BasePay                         77274.12
OvertimePay                          0.0
OtherPay                          2953.0
Benefits                        29594.23
TotalPay                        80227.12
TotalPayBenefits               109821.35
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89324, dtype: object)
(89325, Id                                   89326
EmployeeName              Benjamin J Poole
JobTitle            Administrative Analyst
BasePay                           79533.42
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30281.63
TotalPay                          79533.42
TotalPayBenefits                 109815.05
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89325, dtype: object)
(89326, Id                                89327
EmployeeName            Richard K Oneal
JobTitle            Stationary Engineer
BasePay                        77027.73
OvertimePay                     4043.41
OtherPay                            0.0
Benefits                       28743.08
TotalPay                       81071.14
TotalPayBenefits              109814.22
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89326, dtype: object)
(89327, Id                             89328
EmployeeName             Peter S Lee
JobTitle            Transit Operator
BasePay                     66938.71
OvertimePay                    88.56
OtherPay                     8215.26
Benefits                    34558.36
TotalPay                    75242.53
TotalPayBenefits           109800.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89327, dtype: object)
(89328, Id                                        89329
EmployeeName        Rossaly E De La Vega-Navarr
JobTitle                  Deputy Court Clerk II
BasePay                                76070.57
OvertimePay                                 0.0
OtherPay                                 4148.0
Benefits                               29575.33
TotalPay                               80218.57
TotalPayBenefits                       109793.9
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89328, dtype: object)
(89329, Id                                  89330
EmployeeName                Nadita  Mason
JobTitle            Deputy Court Clerk II
BasePay                          76070.56
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.56
TotalPayBenefits                109793.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89329, dtype: object)
(89330, Id                                  89331
EmployeeName                Jeffrey V Lee
JobTitle            Deputy Court Clerk II
BasePay                          76070.56
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.56
TotalPayBenefits                109793.89
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89330, dtype: object)
(89331, Id                                  89332
EmployeeName              Dennis H Toyama
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                          4148.02
Benefits                         29575.33
TotalPay                         80218.55
TotalPayBenefits                109793.88
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89331, dtype: object)
(89332, Id                                   89333
EmployeeName        Yolanda A Tabo-Ramirez
JobTitle             Deputy Court Clerk II
BasePay                           76070.55
OvertimePay                            0.0
OtherPay                            4148.0
Benefits                          29575.33
TotalPay                          80218.55
TotalPayBenefits                 109793.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89332, dtype: object)
(89333, Id                                  89334
EmployeeName            Sonia G Velasquez
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.54
TotalPayBenefits                109793.87
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89333, dtype: object)
(89334, Id                                  89335
EmployeeName                Darlene E Lum
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.53
TotalPayBenefits                109793.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89334, dtype: object)
(89335, Id                                  89336
EmployeeName           Generosa  Gonzalez
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.53
TotalPayBenefits                109793.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89335, dtype: object)
(89336, Id                                  89337
EmployeeName               Alison Y Agbay
JobTitle            Deputy Court Clerk II
BasePay                          76070.53
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.53
TotalPayBenefits                109793.86
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89336, dtype: object)
(89337, Id                                  89338
EmployeeName              Nelia R Gabriel
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89337, dtype: object)
(89338, Id                                  89339
EmployeeName                Deborah  King
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89338, dtype: object)
(89339, Id                                  89340
EmployeeName         Carolina  Mazariegos
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89339, dtype: object)
(89340, Id                                  89341
EmployeeName              Percy M Renigen
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89340, dtype: object)
(89341, Id                                  89342
EmployeeName                 Irene  Leong
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89341, dtype: object)
(89342, Id                                  89343
EmployeeName               Maurice S Elma
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                          4148.01
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89342, dtype: object)
(89343, Id                                  89344
EmployeeName              Richard M Diles
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                          4148.02
Benefits                         29575.31
TotalPay                         80218.53
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89343, dtype: object)
(89344, Id                                  89345
EmployeeName                  Joyce  Lung
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                         80218.51
TotalPayBenefits                109793.84
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89344, dtype: object)
(89345, Id                                  89346
EmployeeName             Jennifer  Lohman
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                          80218.5
TotalPayBenefits                109793.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89345, dtype: object)
(89346, Id                                  89347
EmployeeName             Kathryn L Jenson
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                          80218.5
TotalPayBenefits                109793.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89346, dtype: object)
(89347, Id                                  89348
EmployeeName             Leonel P Soloria
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29575.33
TotalPay                          80218.5
TotalPayBenefits                109793.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89347, dtype: object)
(89348, Id                                  89349
EmployeeName             William E Trupek
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                          4147.99
Benefits                         29575.32
TotalPay                          80218.5
TotalPayBenefits                109793.82
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89348, dtype: object)
(89349, Id                          89350
EmployeeName          Jose  Rivas
JobTitle                  Painter
BasePay                  77948.05
OvertimePay               1568.52
OtherPay                    930.0
Benefits                 29346.81
TotalPay                 80446.57
TotalPayBenefits        109793.38
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89349, dtype: object)
(89350, Id                              89351
EmployeeName             Linna  Huang
JobTitle            Fiscal Technician
BasePay                      76070.53
OvertimePay                       0.0
OtherPay                       4148.0
Benefits                     29572.45
TotalPay                     80218.53
TotalPayBenefits            109790.98
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89350, dtype: object)
(89351, Id                                           89352
EmployeeName                   Antoinette L Flores
JobTitle            Environmental Health Inspector
BasePay                                   82052.15
OvertimePay                                    0.0
OtherPay                                     450.0
Benefits                                  27288.62
TotalPay                                  82502.15
TotalPayBenefits                         109790.77
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89351, dtype: object)
(89352, Id                              89353
EmployeeName        Neil R Cetrangolo
JobTitle                     Gardener
BasePay                      64641.08
OvertimePay                  18661.72
OtherPay                          0.0
Benefits                     26485.65
TotalPay                      83302.8
TotalPayBenefits            109788.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89352, dtype: object)
(89353, Id                             89354
EmployeeName        Robert A Macario
JobTitle                     Painter
BasePay                     77948.04
OvertimePay                      0.0
OtherPay                      2244.5
Benefits                    29593.65
TotalPay                    80192.54
TotalPayBenefits           109786.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89353, dtype: object)
(89354, Id                                  89355
EmployeeName                  Pam  Criste
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29567.01
TotalPay                         80218.54
TotalPayBenefits                109785.55
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89354, dtype: object)
(89355, Id                                  89356
EmployeeName           Raymundo  Gonzalez
JobTitle            Deputy Court Clerk II
BasePay                          76070.52
OvertimePay                           0.0
OtherPay                           4148.0
Benefits                         29567.01
TotalPay                         80218.52
TotalPayBenefits                109785.53
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89355, dtype: object)
(89356, Id                          89357
EmployeeName         Tan M Yilmaz
JobTitle                Asst Engr
BasePay                  82104.98
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 27677.75
TotalPay                 82104.98
TotalPayBenefits        109782.73
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89356, dtype: object)
(89357, Id                                89358
EmployeeName                  Jimmy  Ng
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                      276.75
OtherPay                         663.19
Benefits                       29558.95
TotalPay                       80223.45
TotalPayBenefits               109782.4
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89357, dtype: object)
(89358, Id                                  89359
EmployeeName           Brenda G Velasquez
JobTitle            Emp & Training Spec 2
BasePay                           79542.1
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.29
TotalPay                          80190.1
TotalPayBenefits                109782.39
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89358, dtype: object)
(89359, Id                                  89360
EmployeeName                  Umar E Bham
JobTitle            Emp & Training Spec 2
BasePay                           79542.1
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.28
TotalPay                          80190.1
TotalPayBenefits                109782.38
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89359, dtype: object)
(89360, Id                                  89361
EmployeeName              Leinda N Perine
JobTitle            Emp & Training Spec 2
BasePay                          79542.08
OvertimePay                           0.0
OtherPay                            648.0
Benefits                          29592.3
TotalPay                         80190.08
TotalPayBenefits                109782.38
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89360, dtype: object)
(89361, Id                                  89362
EmployeeName               Lori A Johnson
JobTitle            Emp & Training Spec 2
BasePay                          79542.08
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.28
TotalPay                         80190.08
TotalPayBenefits                109782.36
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89361, dtype: object)
(89362, Id                                      89363
EmployeeName        Evelyn O Buitrago-Morales
JobTitle                Emp & Training Spec 2
BasePay                              79542.04
OvertimePay                               0.0
OtherPay                               648.01
Benefits                             29592.29
TotalPay                             80190.05
TotalPayBenefits                    109782.34
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89362, dtype: object)
(89363, Id                                  89364
EmployeeName                Juan B Cortez
JobTitle            Emp & Training Spec 2
BasePay                          79542.03
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.27
TotalPay                         80190.03
TotalPayBenefits                 109782.3
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89363, dtype: object)
(89364, Id                                  89365
EmployeeName            Sandra F Menjivar
JobTitle            Emp & Training Spec 2
BasePay                          79542.04
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.25
TotalPay                         80190.04
TotalPayBenefits                109782.29
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89364, dtype: object)
(89365, Id                                  89366
EmployeeName            Myrna V Churchill
JobTitle            Emp & Training Spec 2
BasePay                          79542.04
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.25
TotalPay                         80190.04
TotalPayBenefits                109782.29
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89365, dtype: object)
(89366, Id                                  89367
EmployeeName         Rose-Sarrie P Tecson
JobTitle            Emp & Training Spec 2
BasePay                          79542.01
OvertimePay                           0.0
OtherPay                            648.0
Benefits                         29592.26
TotalPay                         80190.01
TotalPayBenefits                109782.27
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89366, dtype: object)
(89367, Id                                89368
EmployeeName        Daniel R Wiedinmyer
JobTitle                         Roofer
BasePay                         79136.0
OvertimePay                      173.26
OtherPay                          240.0
Benefits                        30232.6
TotalPay                       79549.26
TotalPayBenefits              109781.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89367, dtype: object)
(89368, Id                             89369
EmployeeName             Joseph  Lei
JobTitle            Transit Operator
BasePay                     69111.02
OvertimePay                  4274.65
OtherPay                     2396.65
Benefits                    33995.04
TotalPay                    75782.32
TotalPayBenefits           109777.36
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89368, dtype: object)
(89369, Id                               89370
EmployeeName        Martin L Jendrysik
JobTitle                       Painter
BasePay                       77948.01
OvertimePay                     323.33
OtherPay                        1294.2
Benefits                       30211.1
TotalPay                      79565.54
TotalPayBenefits             109776.64
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89369, dtype: object)
(89370, Id                             89371
EmployeeName        Wallace  Johnson
JobTitle             Manager II, MTA
BasePay                     82089.93
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    27684.41
TotalPay                    82089.93
TotalPayBenefits           109774.34
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89370, dtype: object)
(89371, Id                             89372
EmployeeName        Jack D Carniglia
JobTitle                     Painter
BasePay                     77948.01
OvertimePay                  2649.41
OtherPay                        20.0
Benefits                    29155.13
TotalPay                    80617.42
TotalPayBenefits           109772.55
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89371, dtype: object)
(89372, Id                                      89373
EmployeeName                    My D Do-Kruse
JobTitle            Pr Administrative Analyst
BasePay                              80994.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             28771.66
TotalPay                             80994.02
TotalPayBenefits                    109765.68
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89372, dtype: object)
(89373, Id                                           89374
EmployeeName                      Deshelia N Mixon
JobTitle            Integrated Pest Mgmt Specialst
BasePay                                    77732.9
OvertimePay                                    0.0
OtherPay                                   2532.06
Benefits                                  29474.27
TotalPay                                  80264.96
TotalPayBenefits                         109739.23
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89373, dtype: object)
(89374, Id                                    89375
EmployeeName            Veronica  Rodriguez
JobTitle            Senior Benefits Analyst
BasePay                            79062.02
OvertimePay                             0.0
OtherPay                             1080.0
Benefits                           29591.46
TotalPay                           80142.02
TotalPayBenefits                  109733.48
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89374, dtype: object)
(89375, Id                                      89376
EmployeeName               Crista S Underwood
JobTitle            Psychiatric Social Worker
BasePay                              79469.61
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30263.11
TotalPay                             79469.61
TotalPayBenefits                    109732.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89375, dtype: object)
(89376, Id                           89377
EmployeeName         David J Perez
JobTitle            Police Officer
BasePay                   78249.31
OvertimePay                2266.44
OtherPay                   1591.05
Benefits                   27624.2
TotalPay                   82106.8
TotalPayBenefits          109731.0
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89376, dtype: object)
(89377, Id                             89378
EmployeeName         Sheena C Estomo
JobTitle            Registered Nurse
BasePay                     73829.02
OvertimePay                  1969.03
OtherPay                     9274.08
Benefits                    24648.29
TotalPay                    85072.13
TotalPayBenefits           109720.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89377, dtype: object)
(89378, Id                                      89379
EmployeeName                       Fion H Mau
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           4272.71
OtherPay                               1540.0
Benefits                             28865.87
TotalPay                             80845.72
TotalPayBenefits                    109711.59
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89378, dtype: object)
(89379, Id                             89380
EmployeeName              Edmond  Yu
JobTitle            Transit Operator
BasePay                     67518.74
OvertimePay                  7218.74
OtherPay                     1874.97
Benefits                    33090.66
TotalPay                    76612.45
TotalPayBenefits           109703.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89379, dtype: object)
(89380, Id                                 89381
EmployeeName             Scott  Thompson
JobTitle            Car and Auto Painter
BasePay                         79283.52
OvertimePay                        331.3
OtherPay                           550.0
Benefits                        29536.36
TotalPay                        80164.82
TotalPayBenefits               109701.18
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89380, dtype: object)
(89381, Id                                89382
EmployeeName           John M Schembari
JobTitle            Automotive Mechanic
BasePay                        77861.32
OvertimePay                       553.5
OtherPay                        1996.22
Benefits                       29289.68
TotalPay                       80411.04
TotalPayBenefits              109700.72
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89381, dtype: object)
(89382, Id                             89383
EmployeeName              Lan T Tran
JobTitle            Transit Operator
BasePay                     66820.53
OvertimePay                  9317.78
OtherPay                      346.78
Benefits                    33205.02
TotalPay                    76485.09
TotalPayBenefits           109690.11
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89382, dtype: object)
(89383, Id                                     89384
EmployeeName               Irving  Garcia Jr
JobTitle            Counselor, Juvenile Hall
BasePay                             67331.05
OvertimePay                         16142.61
OtherPay                              170.01
Benefits                            26039.02
TotalPay                            83643.67
TotalPayBenefits                   109682.69
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89383, dtype: object)
(89384, Id                             89385
EmployeeName        Raul A Rodriguez
JobTitle            Transit Operator
BasePay                      68100.0
OvertimePay                  6830.93
OtherPay                     1502.55
Benefits                    33246.66
TotalPay                    76433.48
TotalPayBenefits           109680.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89384, dtype: object)
(89385, Id                                   89386
EmployeeName            Blair L Lilomaiava
JobTitle            Electrical Line Helper
BasePay                           76536.07
OvertimePay                        4251.37
OtherPay                            320.28
Benefits                          28569.81
TotalPay                          81107.72
TotalPayBenefits                 109677.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89385, dtype: object)
(89386, Id                                89387
EmployeeName              William  Wong
JobTitle            Automotive Mechanic
BasePay                         61745.5
OvertimePay                    17335.93
OtherPay                        5534.41
Benefits                       25056.79
TotalPay                       84615.84
TotalPayBenefits              109672.63
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89386, dtype: object)
(89387, Id                                           89388
EmployeeName                          Russell  Lau
JobTitle            Community Police Services Aide
BasePay                                   65817.04
OvertimePay                                9511.85
OtherPay                                   6420.88
Benefits                                  27919.63
TotalPay                                  81749.77
TotalPayBenefits                          109669.4
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89387, dtype: object)
(89388, Id                           89389
EmployeeName        Julia P Durand
JobTitle               Manager III
BasePay                    79688.0
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29980.26
TotalPay                   79688.0
TotalPayBenefits         109668.26
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89388, dtype: object)
(89389, Id                                    89390
EmployeeName             Ayodele E Mitchell
JobTitle            Parking Control Officer
BasePay                             59162.4
OvertimePay                         22107.3
OtherPay                            2520.02
Benefits                           25876.71
TotalPay                           83789.72
TotalPayBenefits                  109666.43
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89389, dtype: object)
(89390, Id                                   89391
EmployeeName                 Carolina  Ong
JobTitle            Occupational Therapist
BasePay                           82899.37
OvertimePay                            0.0
OtherPay                             100.0
Benefits                          26664.73
TotalPay                          82999.37
TotalPayBenefits                  109664.1
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89390, dtype: object)
(89391, Id                             89392
EmployeeName        Gerald V Maxwell
JobTitle                     Painter
BasePay                     77948.04
OvertimePay                  1460.22
OtherPay                       913.5
Benefits                    29336.68
TotalPay                    80321.76
TotalPayBenefits           109658.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89391, dtype: object)
(89392, Id                           89393
EmployeeName        John P Quinlan
JobTitle            Police Officer
BasePay                   78591.04
OvertimePay                2108.91
OtherPay                    1225.3
Benefits                  27733.05
TotalPay                  81925.25
TotalPayBenefits          109658.3
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89392, dtype: object)
(89393, Id                              89394
EmployeeName        Pamela R Williams
JobTitle             Transit Operator
BasePay                      67783.25
OvertimePay                   7077.88
OtherPay                      1050.23
Benefits                     33735.54
TotalPay                     75911.36
TotalPayBenefits             109646.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89393, dtype: object)
(89394, Id                                89395
EmployeeName                Weng K Wong
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                      220.31
OtherPay                          595.0
Benefits                       29544.96
TotalPay                       80098.82
TotalPayBenefits              109643.78
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89394, dtype: object)
(89395, Id                            89396
EmployeeName        Selvin  Cabrera
JobTitle                     Roofer
BasePay                     79136.0
OvertimePay                  218.85
OtherPay                      750.0
Benefits                   29538.34
TotalPay                   80104.85
TotalPayBenefits          109643.19
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89395, dtype: object)
(89396, Id                                      89397
EmployeeName                   Victor M Perez
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           4168.51
OtherPay                               1560.0
Benefits                             28868.29
TotalPay                             80761.52
TotalPayBenefits                    109629.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89396, dtype: object)
(89397, Id                              89398
EmployeeName        Michael A Canning
JobTitle               Police Officer
BasePay                      78591.01
OvertimePay                   2044.85
OtherPay                      1257.36
Benefits                     27732.71
TotalPay                     81893.22
TotalPayBenefits            109625.93
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89397, dtype: object)
(89398, Id                                       89399
EmployeeName                    Tania D Chacon
JobTitle            Citizens Complaint Officer
BasePay                               78354.13
OvertimePay                                0.0
OtherPay                                1040.0
Benefits                              30229.75
TotalPay                              79394.13
TotalPayBenefits                     109623.88
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89398, dtype: object)
(89399, Id                                89400
EmployeeName               Paul  Attard
JobTitle            Automotive Mechanic
BasePay                         74410.9
OvertimePay                     5866.21
OtherPay                        1490.52
Benefits                       27850.79
TotalPay                       81767.63
TotalPayBenefits              109618.42
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89399, dtype: object)
(89400, Id                                        89401
EmployeeName                      Cheryl W Chan
JobTitle            Senior Management Assistant
BasePay                                80031.61
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29583.38
TotalPay                               80031.61
TotalPayBenefits                      109614.99
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89400, dtype: object)
(89401, Id                                   89402
EmployeeName                     Kim H Lit
JobTitle            Patient Care Assistant
BasePay                            54378.0
OvertimePay                       23016.93
OtherPay                           6551.51
Benefits                          25658.26
TotalPay                          83946.44
TotalPayBenefits                  109604.7
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89401, dtype: object)
(89402, Id                               89403
EmployeeName        Raphroger  Gonzaga
JobTitle                 Special Nurse
BasePay                       92706.59
OvertimePay                     959.84
OtherPay                       5025.62
Benefits                      10908.78
TotalPay                      98692.05
TotalPayBenefits             109600.83
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89402, dtype: object)
(89403, Id                                      89404
EmployeeName                    Patty B Liang
JobTitle            Senior Eligibility Worker
BasePay                              75033.06
OvertimePay                           4185.88
OtherPay                               1520.0
Benefits                             28861.01
TotalPay                             80738.94
TotalPayBenefits                    109599.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89403, dtype: object)
(89404, Id                                  89405
EmployeeName           Victoria  Gonzalez
JobTitle            Deputy Court Clerk II
BasePay                          75923.91
OvertimePay                           0.0
OtherPay                          4146.73
Benefits                         29521.96
TotalPay                         80070.64
TotalPayBenefits                 109592.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89404, dtype: object)
(89405, Id                            89406
EmployeeName          Eric T Nelson
JobTitle            Principal Clerk
BasePay                     74882.8
OvertimePay                 6163.56
OtherPay                        0.0
Benefits                   28543.06
TotalPay                   81046.36
TotalPayBenefits          109589.42
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89405, dtype: object)
(89406, Id                                   89407
EmployeeName           Kenneth W Thomas Jr
JobTitle            Transit Fare Inspector
BasePay                           66720.84
OvertimePay                        3941.41
OtherPay                           5525.55
Benefits                          33392.69
TotalPay                           76187.8
TotalPayBenefits                 109580.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89406, dtype: object)
(89407, Id                            89408
EmployeeName        Cheryl L Santos
JobTitle              Accountant II
BasePay                    79338.22
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30236.74
TotalPay                   79338.22
TotalPayBenefits          109574.96
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89407, dtype: object)
(89408, Id                             89409
EmployeeName            Jose  Flores
JobTitle            Transit Operator
BasePay                     67094.22
OvertimePay                  8522.52
OtherPay                       651.8
Benefits                    33299.83
TotalPay                    76268.54
TotalPayBenefits           109568.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89408, dtype: object)
(89409, Id                              89410
EmployeeName           Nercy V Powell
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                  12925.84
OtherPay                        898.0
Benefits                     27351.13
TotalPay                     82214.84
TotalPayBenefits            109565.97
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89409, dtype: object)
(89410, Id                            89411
EmployeeName        Nicole M Mullen
JobTitle                  Curator 3
BasePay                    79987.57
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29575.76
TotalPay                   79987.57
TotalPayBenefits          109563.33
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89410, dtype: object)
(89411, Id                                         89412
EmployeeName                  Hernando  Betancur
JobTitle            General Laborer Supervisor 1
BasePay                                 69202.06
OvertimePay                              5075.69
OtherPay                                 6595.23
Benefits                                28687.86
TotalPay                                80872.98
TotalPayBenefits                       109560.84
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89411, dtype: object)
(89412, Id                                      89413
EmployeeName                      Melba M Oco
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           5188.22
OtherPay                                648.0
Benefits                             28689.26
TotalPay                             80869.23
TotalPayBenefits                    109558.49
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89412, dtype: object)
(89413, Id                                    89414
EmployeeName              Catherine A Garza
JobTitle            Claims Investigator, CA
BasePay                            82023.32
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           27535.08
TotalPay                           82023.32
TotalPayBenefits                   109558.4
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89413, dtype: object)
(89414, Id                                      89415
EmployeeName              Margaret A McFadden
JobTitle            Traffic Survey Technician
BasePay                              72319.51
OvertimePay                           9193.01
OtherPay                                  0.0
Benefits                             28044.99
TotalPay                             81512.52
TotalPayBenefits                    109557.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89414, dtype: object)
(89415, Id                          89416
EmployeeName         Paul H Koski
JobTitle                  Painter
BasePay                  77948.03
OvertimePay                 448.3
OtherPay                   1676.0
Benefits                 29484.61
TotalPay                 80072.33
TotalPayBenefits        109556.94
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89415, dtype: object)
(89416, Id                             89417
EmployeeName        Carl H Stevenson
JobTitle                      Roofer
BasePay                      79136.0
OvertimePay                      0.0
OtherPay                       860.0
Benefits                    29556.18
TotalPay                     79996.0
TotalPayBenefits           109552.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89416, dtype: object)
(89417, Id                                        89418
EmployeeName                    Dana L Thompson
JobTitle            Station Agent, Muni Railway
BasePay                                 73019.5
OvertimePay                             9400.06
OtherPay                                 156.35
Benefits                               26972.75
TotalPay                               82575.91
TotalPayBenefits                      109548.66
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89417, dtype: object)
(89418, Id                                  89419
EmployeeName            Ruel M Ongchangco
JobTitle            Deputy Court Clerk II
BasePay                           75891.6
OvertimePay                           0.0
OtherPay                          4146.47
Benefits                          29510.2
TotalPay                         80038.07
TotalPayBenefits                109548.27
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89418, dtype: object)
(89419, Id                          89420
EmployeeName         Teddy O Dowd
JobTitle                  Painter
BasePay                   77948.0
OvertimePay                   0.0
OtherPay                   1373.0
Benefits                 30226.91
TotalPay                  79321.0
TotalPayBenefits        109547.91
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89419, dtype: object)
(89420, Id                              89421
EmployeeName        Paulinped C Ledda
JobTitle             Transit Operator
BasePay                      64073.75
OvertimePay                   9066.82
OtherPay                      3657.98
Benefits                      32749.2
TotalPay                     76798.55
TotalPayBenefits            109547.75
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89420, dtype: object)
(89421, Id                               89422
EmployeeName        Caesar  Villanueva
JobTitle              Transit Operator
BasePay                       64858.09
OvertimePay                   10914.34
OtherPay                       1939.58
Benefits                      31834.02
TotalPay                      77712.01
TotalPayBenefits             109546.03
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89421, dtype: object)
(89422, Id                                89423
EmployeeName           Michael T Benton
JobTitle            Automotive Mechanic
BasePay                        79283.51
OvertimePay                         0.0
OtherPay                         694.66
Benefits                       29565.01
TotalPay                       79978.17
TotalPayBenefits              109543.18
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89422, dtype: object)
(89423, Id                              89424
EmployeeName        Monica G Mitchell
JobTitle                  Librarian 2
BasePay                      80365.11
OvertimePay                       0.0
OtherPay                        883.2
Benefits                     28294.71
TotalPay                     81248.31
TotalPayBenefits            109543.02
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89423, dtype: object)
(89424, Id                                89425
EmployeeName        Anuar  Murrar-Garay
JobTitle             Program Specialist
BasePay                        79247.01
OvertimePay                         0.0
OtherPay                          700.0
Benefits                       29589.06
TotalPay                       79947.01
TotalPayBenefits              109536.07
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89424, dtype: object)
(89425, Id                             89426
EmployeeName          Charles E Bell
JobTitle            Transit Operator
BasePay                     67606.74
OvertimePay                  3327.09
OtherPay                     4697.33
Benefits                     33904.7
TotalPay                    75631.16
TotalPayBenefits           109535.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89425, dtype: object)
(89426, Id                                 89427
EmployeeName          Armando  Tolentino
JobTitle            Power House Operator
BasePay                          75733.4
OvertimePay                      5103.17
OtherPay                             0.0
Benefits                        28698.79
TotalPay                        80836.57
TotalPayBenefits               109535.36
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89426, dtype: object)
(89427, Id                             89428
EmployeeName             Yi Xin J Li
JobTitle            Transit Operator
BasePay                     67735.46
OvertimePay                  8134.34
OtherPay                       790.8
Benefits                    32874.43
TotalPay                     76660.6
TotalPayBenefits           109535.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89427, dtype: object)
(89428, Id                                        89429
EmployeeName              Stephanie S Francisco
JobTitle            Senior Management Assistant
BasePay                                 79956.0
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               29575.24
TotalPay                                79956.0
TotalPayBenefits                      109531.24
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89428, dtype: object)
(89429, Id                                      89430
EmployeeName               Alex L Del Rosario
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           3336.63
OtherPay                               2168.0
Benefits                             28988.34
TotalPay                             80537.65
TotalPayBenefits                    109525.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89429, dtype: object)
(89430, Id                                   89431
EmployeeName             Antonio  Espinoza
JobTitle            Customer Service Agent
BasePay                            71820.0
OvertimePay                        3455.37
OtherPay                           5289.45
Benefits                          28957.16
TotalPay                          80564.82
TotalPayBenefits                 109521.98
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89430, dtype: object)
(89431, Id                          89432
EmployeeName        Craig T White
JobTitle             Cement Mason
BasePay                  70153.39
OvertimePay              11569.76
OtherPay                    870.0
Benefits                 26920.92
TotalPay                 82593.15
TotalPayBenefits        109514.07
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89431, dtype: object)
(89432, Id                              89433
EmployeeName        Jeannette L Cross
JobTitle             Transit Operator
BasePay                      68473.16
OvertimePay                   4543.58
OtherPay                      2712.06
Benefits                     33782.12
TotalPay                      75728.8
TotalPayBenefits            109510.92
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89432, dtype: object)
(89433, Id                                           89434
EmployeeName                        Ricardo  Matic
JobTitle            Central Processing & Dist Tech
BasePay                                   71187.76
OvertimePay                                4080.53
OtherPay                                   5472.49
Benefits                                  28762.53
TotalPay                                  80740.78
TotalPayBenefits                         109503.31
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89433, dtype: object)
(89434, Id                           89435
EmployeeName        Bary  Marshall
JobTitle            Police Officer
BasePay                   78591.03
OvertimePay                 2447.8
OtherPay                    720.77
Benefits                  27731.41
TotalPay                   81759.6
TotalPayBenefits         109491.01
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89434, dtype: object)
(89435, Id                                           89436
EmployeeName                     Otmar B Van Tholl
JobTitle            Electrical Transit System Mech
BasePay                                   78413.79
OvertimePay                                    0.0
OtherPay                                    2030.0
Benefits                                  29041.67
TotalPay                                  80443.79
TotalPayBenefits                         109485.46
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89435, dtype: object)
(89436, Id                               89437
EmployeeName        Matthew V Kabanuck
JobTitle                Police Officer
BasePay                       78591.03
OvertimePay                    1829.97
OtherPay                       1332.11
Benefits                      27731.33
TotalPay                      81753.11
TotalPayBenefits             109484.44
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89436, dtype: object)
(89437, Id                             89438
EmployeeName        Valerie B Barall
JobTitle            Registered Nurse
BasePay                     83407.72
OvertimePay                      0.0
OtherPay                       250.0
Benefits                    25817.92
TotalPay                    83657.72
TotalPayBenefits           109475.64
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89437, dtype: object)
(89438, Id                                   89439
EmployeeName         Eleonor M Collemacine
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       12835.02
OtherPay                             898.0
Benefits                          27343.18
TotalPay                          82124.02
TotalPayBenefits                  109467.2
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89438, dtype: object)
(89439, Id                                           89440
EmployeeName                       Beatriz E Gella
JobTitle            Prpl Permit and Citation Clerk
BasePay                                    79920.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29540.68
TotalPay                                   79920.0
TotalPayBenefits                         109460.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89439, dtype: object)
(89440, Id                             89441
EmployeeName         Ronald  Jarrell
JobTitle            Transit Operator
BasePay                     67638.61
OvertimePay                   2717.9
OtherPay                     5113.59
Benefits                    33988.92
TotalPay                     75470.1
TotalPayBenefits           109459.02
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89440, dtype: object)
(89441, Id                               89442
EmployeeName        Jeffrey B Atanacio
JobTitle                  Museum Guard
BasePay                       59805.95
OvertimePay                   17909.12
OtherPay                       5503.85
Benefits                      26234.17
TotalPay                      83218.92
TotalPayBenefits             109453.09
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89441, dtype: object)
(89442, Id                                89443
EmployeeName             Nelson C Ayala
JobTitle            Automotive Mechanic
BasePay                        68361.11
OvertimePay                         0.0
OtherPay                       14434.01
Benefits                        26654.5
TotalPay                       82795.12
TotalPayBenefits              109449.62
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89442, dtype: object)
(89443, Id                                  89444
EmployeeName                  Fenny  Wong
JobTitle            Emp & Training Spec 2
BasePay                           79542.1
OvertimePay                           0.0
OtherPay                            362.4
Benefits                         29540.25
TotalPay                          79904.5
TotalPayBenefits                109444.75
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89443, dtype: object)
(89444, Id                                    89445
EmployeeName                   Dennis A May
JobTitle            Real Property Appraiser
BasePay                             78515.0
OvertimePay                             0.0
OtherPay                             2210.0
Benefits                           28716.14
TotalPay                            80725.0
TotalPayBenefits                  109441.14
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89444, dtype: object)
(89445, Id                                   89446
EmployeeName                  Cliff E Bell
JobTitle            Water QualityTech I/II
BasePay                           79667.94
OvertimePay                          451.8
OtherPay                               0.0
Benefits                           29318.5
TotalPay                          80119.74
TotalPayBenefits                 109438.24
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89445, dtype: object)
(89446, Id                                      89447
EmployeeName                    Remedios  Tan
JobTitle            Licensed Vocational Nurse
BasePay                              73472.17
OvertimePay                            6719.5
OtherPay                               896.86
Benefits                             28346.42
TotalPay                             81088.53
TotalPayBenefits                    109434.95
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89446, dtype: object)
(89447, Id                             89448
EmployeeName               Yuan L Ye
JobTitle            Transit Operator
BasePay                     67131.43
OvertimePay                  3835.99
OtherPay                     4785.55
Benefits                    33681.81
TotalPay                    75752.97
TotalPayBenefits           109434.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89447, dtype: object)
(89448, Id                                      89449
EmployeeName                Prisco H Somontan
JobTitle            EMT/Paramedic/Firefighter
BasePay                              78106.97
OvertimePay                           2899.52
OtherPay                               989.55
Benefits                             27437.84
TotalPay                             81996.04
TotalPayBenefits                    109433.88
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89448, dtype: object)
(89449, Id                                   89450
EmployeeName               Christina M Lee
JobTitle            Performance Analyst II
BasePay                           82031.31
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          27398.92
TotalPay                          82031.31
TotalPayBenefits                 109430.23
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89449, dtype: object)
(89450, Id                             89451
EmployeeName        Carlos M Aguilar
JobTitle                      Roofer
BasePay                      79142.7
OvertimePay                    883.8
OtherPay                        10.0
Benefits                    29393.68
TotalPay                     80036.5
TotalPayBenefits           109430.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89450, dtype: object)
(89451, Id                                      89452
EmployeeName                Alemash  Stefanos
JobTitle            Psychiatric Social Worker
BasePay                              90693.01
OvertimePay                               0.0
OtherPay                                648.0
Benefits                             18081.32
TotalPay                             91341.01
TotalPayBenefits                    109422.33
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89451, dtype: object)
(89452, Id                                      89453
EmployeeName                   Michael W Fong
JobTitle            Automotive Service Worker
BasePay                               64312.2
OvertimePay                           1951.03
OtherPay                             14005.05
Benefits                             29153.98
TotalPay                             80268.28
TotalPayBenefits                    109422.26
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89452, dtype: object)
(89453, Id                           89454
EmployeeName        David E Romero
JobTitle                   Painter
BasePay                    77948.0
OvertimePay                 326.48
OtherPay                     992.0
Benefits                  30153.64
TotalPay                  79266.48
TotalPayBenefits         109420.12
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89453, dtype: object)
(89454, Id                                       89455
EmployeeName                 Charles L Stewart
JobTitle            IS Business Analyst-Senior
BasePay                               82885.85
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              26533.02
TotalPay                              82885.85
TotalPayBenefits                     109418.87
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89454, dtype: object)
(89455, Id                                    89456
EmployeeName                    Helen M Hui
JobTitle            Real Property Appraiser
BasePay                             77989.1
OvertimePay                             0.0
OtherPay                             1200.0
Benefits                           30224.55
TotalPay                            79189.1
TotalPayBenefits                  109413.65
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89455, dtype: object)
(89456, Id                                    89457
EmployeeName                 Trevor J Adams
JobTitle            Parking Control Officer
BasePay                            59203.52
OvertimePay                        23426.88
OtherPay                            1159.01
Benefits                            25620.7
TotalPay                           83789.41
TotalPayBenefits                  109410.11
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89456, dtype: object)
(89457, Id                                  89458
EmployeeName             Jeremy D Pollock
JobTitle            Legislative Assistant
BasePay                          90915.31
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         18494.06
TotalPay                         90915.31
TotalPayBenefits                109409.37
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89457, dtype: object)
(89458, Id                            89459
EmployeeName        Brian D McBride
JobTitle                    Painter
BasePay                    77948.02
OvertimePay                   431.1
OtherPay                      903.0
Benefits                   30123.36
TotalPay                   79282.12
TotalPayBenefits          109405.48
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89458, dtype: object)
(89459, Id                                 89460
EmployeeName        Wendy S Zambrano-Mah
JobTitle                 Junior Engineer
BasePay                         77633.65
OvertimePay                          0.0
OtherPay                         3553.77
Benefits                         28218.0
TotalPay                        81187.42
TotalPayBenefits               109405.42
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89459, dtype: object)
(89460, Id                               89461
EmployeeName        Mike I Agelopoulos
JobTitle               Utility Plumber
BasePay                       78254.14
OvertimePay                      70.16
OtherPay                       4361.21
Benefits                      26715.64
TotalPay                      82685.51
TotalPayBenefits             109401.15
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89460, dtype: object)
(89461, Id                                    89462
EmployeeName                  Richard Y Sin
JobTitle            Real Property Appraiser
BasePay                            77980.51
OvertimePay                             0.0
OtherPay                             1200.0
Benefits                           30218.24
TotalPay                           79180.51
TotalPayBenefits                  109398.75
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89461, dtype: object)
(89462, Id                           89463
EmployeeName        Maria  Antonio
JobTitle             Special Nurse
BasePay                   80817.72
OvertimePay                1038.55
OtherPay                  15520.63
Benefits                  12009.15
TotalPay                   97376.9
TotalPayBenefits         109386.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89462, dtype: object)
(89463, Id                                    89464
EmployeeName            Timothy M Landregan
JobTitle            Real Property Appraiser
BasePay                            77971.96
OvertimePay                             0.0
OtherPay                             1200.0
Benefits                           30211.92
TotalPay                           79171.96
TotalPayBenefits                  109383.88
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89463, dtype: object)
(89464, Id                           89465
EmployeeName        Daniel A Welch
JobTitle               Tile Setter
BasePay                   77948.02
OvertimePay                    0.0
OtherPay                    1910.0
Benefits                  29524.33
TotalPay                  79858.02
TotalPayBenefits         109382.35
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89464, dtype: object)
(89465, Id                             89466
EmployeeName             Raul  Perez
JobTitle            Transit Operator
BasePay                     65669.62
OvertimePay                 10543.83
OtherPay                     1963.59
Benefits                    31202.45
TotalPay                    78177.04
TotalPayBenefits           109379.49
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89465, dtype: object)
(89466, Id                                         89467
EmployeeName                         Randy  Chow
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.51
OvertimePay                                  0.0
OtherPay                                   553.6
Benefits                                29537.01
TotalPay                                79837.11
TotalPayBenefits                       109374.12
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89466, dtype: object)
(89467, Id                                         89468
EmployeeName                       William  Wong
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.52
OvertimePay                                  0.0
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                79833.52
TotalPayBenefits                       109369.88
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89467, dtype: object)
(89468, Id                                 89469
EmployeeName           Miguel A Casanova
JobTitle            Car and Auto Painter
BasePay                         79283.51
OvertimePay                          0.0
OtherPay                           550.0
Benefits                        29536.36
TotalPay                        79833.51
TotalPayBenefits               109369.87
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89468, dtype: object)
(89469, Id                                         89470
EmployeeName                       Tom B Bencich
JobTitle            Automotive Body & Fender Wrk
BasePay                                 79283.51
OvertimePay                                  0.0
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                79833.51
TotalPayBenefits                       109369.87
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89469, dtype: object)
(89470, Id                                 89471
EmployeeName             Peter N Misthos
JobTitle            Car and Auto Painter
BasePay                         79283.51
OvertimePay                          0.0
OtherPay                           550.0
Benefits                        29536.36
TotalPay                        79833.51
TotalPayBenefits               109369.87
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89470, dtype: object)
(89471, Id                                         89472
EmployeeName                           Peter  Wu
JobTitle            Automotive Body & Fender Wrk
BasePay                                  79283.5
OvertimePay                                  0.0
OtherPay                                   550.0
Benefits                                29536.36
TotalPay                                 79833.5
TotalPayBenefits                       109369.86
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89471, dtype: object)
(89472, Id                                89473
EmployeeName             Raymond  Russo
JobTitle            Automotive Mechanic
BasePay                         79283.5
OvertimePay                         0.0
OtherPay                          550.0
Benefits                       29536.36
TotalPay                        79833.5
TotalPayBenefits              109369.86
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89472, dtype: object)
(89473, Id                              89474
EmployeeName        Orlando  Bastidas
JobTitle                      Painter
BasePay                      77948.06
OvertimePay                    917.14
OtherPay                       1118.5
Benefits                     29372.78
TotalPay                      79983.7
TotalPayBenefits            109356.48
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89473, dtype: object)
(89474, Id                                  89475
EmployeeName              Verlinda  Jones
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           3778.4
Benefits                         29507.34
TotalPay                         79848.91
TotalPayBenefits                109356.25
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89474, dtype: object)
(89475, Id                              89476
EmployeeName        Roselind M Barnes
JobTitle             Transit Operator
BasePay                      67155.96
OvertimePay                   5214.95
OtherPay                      3597.27
Benefits                     33382.95
TotalPay                     75968.18
TotalPayBenefits            109351.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89475, dtype: object)
(89476, Id                             89477
EmployeeName              Justin  Lo
JobTitle            Security Analyst
BasePay                      81959.0
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    27391.91
TotalPay                     81959.0
TotalPayBenefits           109350.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89476, dtype: object)
(89477, Id                              89478
EmployeeName        Jorge A Rodriguez
JobTitle              Switch Repairer
BasePay                      64143.01
OvertimePay                  13304.26
OtherPay                      5081.57
Benefits                     26818.42
TotalPay                     82528.84
TotalPayBenefits            109347.26
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89477, dtype: object)
(89478, Id                                        89479
EmployeeName                        Cris  Cohen
JobTitle            Principal Parts Storekeeper
BasePay                                71130.02
OvertimePay                             8732.34
OtherPay                                 741.66
Benefits                               28742.76
TotalPay                               80604.02
TotalPayBenefits                      109346.78
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89478, dtype: object)
(89479, Id                                       89480
EmployeeName                      Shari L Zinn
JobTitle            Diagnostic Imaging Tech II
BasePay                               80344.47
OvertimePay                            2672.04
OtherPay                               1097.77
Benefits                              25216.28
TotalPay                              84114.28
TotalPayBenefits                     109330.56
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89479, dtype: object)
(89480, Id                               89481
EmployeeName               Paul G Gray
JobTitle            Environmental Spec
BasePay                        79113.0
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      30210.18
TotalPay                       79113.0
TotalPayBenefits             109323.18
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89480, dtype: object)
(89481, Id                                   89482
EmployeeName               Eric  Gornitsky
JobTitle            Public SafetyComm Disp
BasePay                           71302.08
OvertimePay                        3940.26
OtherPay                            5910.9
Benefits                          28164.93
TotalPay                          81153.24
TotalPayBenefits                 109318.17
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89481, dtype: object)
(89482, Id                                 89483
EmployeeName        Bienvenido N Ocenada
JobTitle             Porter Supervisor 1
BasePay                         66713.13
OvertimePay                     11395.02
OtherPay                          4326.0
Benefits                        26882.29
TotalPay                        82434.15
TotalPayBenefits               109316.44
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89482, dtype: object)
(89483, Id                             89484
EmployeeName        Michael  Salvato
JobTitle                Chemist I/II
BasePay                     79768.22
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29547.64
TotalPay                    79768.22
TotalPayBenefits           109315.86
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89483, dtype: object)
(89484, Id                                       89485
EmployeeName        Alberto  De Gracia Sanchez
JobTitle                               Painter
BasePay                               77948.01
OvertimePay                                0.0
OtherPay                                1843.0
Benefits                              29516.66
TotalPay                              79791.01
TotalPayBenefits                     109307.67
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89484, dtype: object)
(89485, Id                                   89486
EmployeeName            Santino C Cabrales
JobTitle            Customer Service Agent
BasePay                            71725.9
OvertimePay                        3835.72
OtherPay                           4909.85
Benefits                          28834.56
TotalPay                          80471.47
TotalPayBenefits                 109306.03
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89485, dtype: object)
(89486, Id                                    89487
EmployeeName               Teresa M O'Brien
JobTitle            Park Section Supervisor
BasePay                            78274.44
OvertimePay                         1856.33
OtherPay                                0.0
Benefits                            29163.2
TotalPay                           80130.77
TotalPayBenefits                  109293.97
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89486, dtype: object)
(89487, Id                          89488
EmployeeName        Michael K Yee
JobTitle                     Cook
BasePay                   63855.0
OvertimePay              15711.97
OtherPay                  2856.95
Benefits                  26869.6
TotalPay                 82423.92
TotalPayBenefits        109293.52
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89487, dtype: object)
(89488, Id                             89489
EmployeeName              Benson  La
JobTitle            Transit Operator
BasePay                     68720.81
OvertimePay                  2632.38
OtherPay                     3180.04
Benefits                    34760.07
TotalPay                    74533.23
TotalPayBenefits            109293.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89488, dtype: object)
(89489, Id                                   89490
EmployeeName                 Sean P Murphy
JobTitle            Electrical Line Helper
BasePay                           57310.98
OvertimePay                        19520.8
OtherPay                          10823.29
Benefits                          21635.46
TotalPay                          87655.07
TotalPayBenefits                 109290.53
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89489, dtype: object)
(89490, Id                              89491
EmployeeName        Richard P McGuire
JobTitle             Watershed Keeper
BasePay                      68391.01
OvertimePay                    2635.9
OtherPay                     11037.92
Benefits                     27223.96
TotalPay                     82064.83
TotalPayBenefits            109288.79
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89490, dtype: object)
(89491, Id                                  89492
EmployeeName              Millie P Aranda
JobTitle            Executive Secretary 2
BasePay                          79743.99
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29533.92
TotalPay                         79743.99
TotalPayBenefits                109277.91
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89491, dtype: object)
(89492, Id                          89493
EmployeeName        Anthony J Lee
JobTitle             Truck Driver
BasePay                  78950.54
OvertimePay                   0.0
OtherPay                    940.0
Benefits                 29384.66
TotalPay                 79890.54
TotalPayBenefits         109275.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89492, dtype: object)
(89493, Id                                89494
EmployeeName            Micah A Joncich
JobTitle            IS Engineer-Journey
BasePay                         82284.6
OvertimePay                         0.0
OtherPay                            0.0
Benefits                       26990.19
TotalPay                        82284.6
TotalPayBenefits              109274.79
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89493, dtype: object)
(89494, Id                                  89495
EmployeeName                 Henry Y Fong
JobTitle            Assistant Storekeeper
BasePay                           52542.0
OvertimePay                      25490.46
OtherPay                          4597.42
Benefits                          26643.8
TotalPay                         82629.88
TotalPayBenefits                109273.68
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89494, dtype: object)
(89495, Id                                  89496
EmployeeName                 Laurie P Kum
JobTitle            Executive Secretary 2
BasePay                          79742.61
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.13
TotalPay                         79742.61
TotalPayBenefits                109271.74
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89495, dtype: object)
(89496, Id                                  89497
EmployeeName          Seretha L Gallaread
JobTitle            Executive Secretary 2
BasePay                          79742.58
OvertimePay                           0.0
OtherPay                              0.0
Benefits                          29529.1
TotalPay                         79742.58
TotalPayBenefits                109271.68
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89496, dtype: object)
(89497, Id                                  89498
EmployeeName             Theresa L Ludwig
JobTitle            Executive Secretary 2
BasePay                          79742.57
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.09
TotalPay                         79742.57
TotalPayBenefits                109271.66
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89497, dtype: object)
(89498, Id                                  89499
EmployeeName         Sharon Page  Ritchie
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.09
TotalPay                         79742.56
TotalPayBenefits                109271.65
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89498, dtype: object)
(89499, Id                                  89500
EmployeeName              Arlene A Rubino
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.09
TotalPay                         79742.56
TotalPayBenefits                109271.65
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89499, dtype: object)
(89500, Id                                  89501
EmployeeName          Myrna B Evangelista
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.08
TotalPay                         79742.56
TotalPayBenefits                109271.64
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89500, dtype: object)
(89501, Id                                  89502
EmployeeName           Michaela J Greeley
JobTitle            Executive Secretary 2
BasePay                          79742.57
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.57
TotalPayBenefits                109271.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89501, dtype: object)
(89502, Id                                  89503
EmployeeName               Jeanne M Buick
JobTitle            Executive Secretary 2
BasePay                          79742.55
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.08
TotalPay                         79742.55
TotalPayBenefits                109271.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89502, dtype: object)
(89503, Id                                  89504
EmployeeName               Cynthia L Bura
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.07
TotalPay                         79742.56
TotalPayBenefits                109271.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89503, dtype: object)
(89504, Id                                  89505
EmployeeName           Adoracion  Legaspi
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.07
TotalPay                         79742.56
TotalPayBenefits                109271.63
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89504, dtype: object)
(89505, Id                                  89506
EmployeeName             Irene  Cheng-Tam
JobTitle            Executive Secretary 2
BasePay                          79742.56
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.56
TotalPayBenefits                109271.62
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89505, dtype: object)
(89506, Id                                  89507
EmployeeName                 Linda L Quan
JobTitle            Executive Secretary 2
BasePay                          79742.55
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.07
TotalPay                         79742.55
TotalPayBenefits                109271.62
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89506, dtype: object)
(89507, Id                                  89508
EmployeeName                Deborah F Toy
JobTitle            Executive Secretary 2
BasePay                          79742.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.07
TotalPay                         79742.54
TotalPayBenefits                109271.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89507, dtype: object)
(89508, Id                                  89509
EmployeeName              Andree M Mouton
JobTitle            Executive Secretary 2
BasePay                          79742.55
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.55
TotalPayBenefits                109271.61
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89508, dtype: object)
(89509, Id                                  89510
EmployeeName         Christine A Arrigale
JobTitle            Executive Secretary 2
BasePay                          79742.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.54
TotalPayBenefits                 109271.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89509, dtype: object)
(89510, Id                                  89511
EmployeeName                Christina  Ho
JobTitle            Executive Secretary 2
BasePay                          79742.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.07
TotalPay                         79742.53
TotalPayBenefits                 109271.6
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89510, dtype: object)
(89511, Id                                  89512
EmployeeName          Almerita S Castillo
JobTitle            Executive Secretary 2
BasePay                          79742.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.53
TotalPayBenefits                109271.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89511, dtype: object)
(89512, Id                                  89513
EmployeeName                Annie  Knight
JobTitle            Executive Secretary 2
BasePay                          79742.54
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.05
TotalPay                         79742.54
TotalPayBenefits                109271.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89512, dtype: object)
(89513, Id                                  89514
EmployeeName             Sylvia A Padilla
JobTitle            Executive Secretary 2
BasePay                          79742.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.05
TotalPay                         79742.53
TotalPayBenefits                109271.58
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89513, dtype: object)
(89514, Id                                  89515
EmployeeName             Luzviminda D Tan
JobTitle            Executive Secretary 2
BasePay                          79742.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.06
TotalPay                         79742.52
TotalPayBenefits                109271.58
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89514, dtype: object)
(89515, Id                                  89516
EmployeeName               Carolyn  Jayin
JobTitle            Executive Secretary 2
BasePay                          79742.53
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.05
TotalPay                         79742.53
TotalPayBenefits                109271.58
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89515, dtype: object)
(89516, Id                                  89517
EmployeeName           Eugenia L Taulealo
JobTitle            Executive Secretary 2
BasePay                          79742.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.05
TotalPay                         79742.52
TotalPayBenefits                109271.57
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89516, dtype: object)
(89517, Id                                  89518
EmployeeName           Lorelei A Patricio
JobTitle            Executive Secretary 2
BasePay                          79742.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                         79742.52
TotalPayBenefits                109271.56
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89517, dtype: object)
(89518, Id                                  89519
EmployeeName          Virginia M Franklin
JobTitle            Executive Secretary 2
BasePay                          79742.52
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                         79742.52
TotalPayBenefits                109271.56
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89518, dtype: object)
(89519, Id                                      89520
EmployeeName        Sounthone N Nakhiengchanh
JobTitle                Executive Secretary 2
BasePay                              79742.52
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29529.04
TotalPay                             79742.52
TotalPayBenefits                    109271.56
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89519, dtype: object)
(89520, Id                                  89521
EmployeeName             Jaime C Tijerino
JobTitle            Executive Secretary 2
BasePay                          79742.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                         79742.51
TotalPayBenefits                109271.55
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89520, dtype: object)
(89521, Id                                           89522
EmployeeName        Sherrill A Quartini-Huddleston
JobTitle                     Executive Secretary 2
BasePay                                    79742.5
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29529.04
TotalPay                                   79742.5
TotalPayBenefits                         109271.54
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89521, dtype: object)
(89522, Id                                  89523
EmployeeName             Mela A Armstrong
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89522, dtype: object)
(89523, Id                                  89524
EmployeeName                   Helen  Lau
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89523, dtype: object)
(89524, Id                                  89525
EmployeeName             Laura F Hathhorn
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89524, dtype: object)
(89525, Id                                     89526
EmployeeName        Mercedes B Gharechedaghy
JobTitle               Executive Secretary 2
BasePay                              79742.5
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29529.04
TotalPay                             79742.5
TotalPayBenefits                   109271.54
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89525, dtype: object)
(89526, Id                                  89527
EmployeeName             Lucille  Sanchez
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89526, dtype: object)
(89527, Id                                  89528
EmployeeName            William F Fein Jr
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89527, dtype: object)
(89528, Id                                  89529
EmployeeName                Teresa G Roiz
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89528, dtype: object)
(89529, Id                                  89530
EmployeeName             Ruby L Henderson
JobTitle            Executive Secretary 2
BasePay                           79742.5
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29529.04
TotalPay                          79742.5
TotalPayBenefits                109271.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89529, dtype: object)
(89530, Id                             89531
EmployeeName          Alvaro  Franco
JobTitle            Transit Operator
BasePay                     67859.39
OvertimePay                  6929.37
OtherPay                      780.17
Benefits                    33692.88
TotalPay                    75568.93
TotalPayBenefits           109261.81
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89530, dtype: object)
(89531, Id                                         89532
EmployeeName                     Cynthia  Monzon
JobTitle            Perf Analyst III Project Mgr
BasePay                                  83776.3
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                25482.11
TotalPay                                 83776.3
TotalPayBenefits                       109258.41
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89531, dtype: object)
(89532, Id                             89533
EmployeeName            Earl J Smith
JobTitle            Transit Operator
BasePay                     67067.67
OvertimePay                  6989.94
OtherPay                     1667.69
Benefits                    33529.12
TotalPay                     75725.3
TotalPayBenefits           109254.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89532, dtype: object)
(89533, Id                                89534
EmployeeName           Maria D Carranza
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    11883.58
OtherPay                        8755.34
Benefits                       27482.57
TotalPay                       81766.92
TotalPayBenefits              109249.49
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89533, dtype: object)
(89534, Id                                      89535
EmployeeName                  Patrick K Leong
JobTitle            Licensed Vocational Nurse
BasePay                               73602.0
OvertimePay                           5263.75
OtherPay                               1799.1
Benefits                             28582.62
TotalPay                             80664.85
TotalPayBenefits                    109247.47
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89534, dtype: object)
(89535, Id                                       89536
EmployeeName                   Sarah A Jimenez
JobTitle            Protective Services Worker
BasePay                               81517.83
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               27728.9
TotalPay                              81517.83
TotalPayBenefits                     109246.73
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89535, dtype: object)
(89536, Id                           89537
EmployeeName        Andre R Taylor
JobTitle            Police Officer
BasePay                   78591.03
OvertimePay                1780.59
OtherPay                   1137.24
Benefits                  27728.88
TotalPay                  81508.86
TotalPayBenefits         109237.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89536, dtype: object)
(89537, Id                           89538
EmployeeName        Daniel R Casey
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                 1286.7
OtherPay                   1631.09
Benefits                  27728.87
TotalPay                  81508.81
TotalPayBenefits         109237.68
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89537, dtype: object)
(89538, Id                                      89539
EmployeeName                     Patty  Tsang
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                            3286.5
OtherPay                               1968.0
Benefits                             28948.21
TotalPay                             80287.51
TotalPayBenefits                    109235.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89538, dtype: object)
(89539, Id                                     89540
EmployeeName               Debbonyce  Cannon
JobTitle            Counselor, Juvenile Hall
BasePay                             67347.61
OvertimePay                          7571.75
OtherPay                             6844.39
Benefits                            27468.66
TotalPay                            81763.75
TotalPayBenefits                   109232.41
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89539, dtype: object)
(89540, Id                               89541
EmployeeName          Timoteo R Garcia
JobTitle            Eligibility Worker
BasePay                       61214.16
OvertimePay                   15985.18
OtherPay                       4548.96
Benefits                      27479.66
TotalPay                       81748.3
TotalPayBenefits             109227.96
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89540, dtype: object)
(89541, Id                                     89542
EmployeeName                 Gregory A Foote
JobTitle            Counselor, Juvenile Hall
BasePay                             67554.03
OvertimePay                         10625.42
OtherPay                             4088.95
Benefits                            26956.51
TotalPay                             82268.4
TotalPayBenefits                   109224.91
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89541, dtype: object)
(89542, Id                                      89543
EmployeeName              Hirdaypal S Dhillon
JobTitle            Assistant Const Inspector
BasePay                              75579.41
OvertimePay                           4119.18
OtherPay                                  0.0
Benefits                             29518.56
TotalPay                             79698.59
TotalPayBenefits                    109217.15
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89542, dtype: object)
(89543, Id                                         89544
EmployeeName                    Saturnino G Cano
JobTitle            Sr Fare Collections Receiver
BasePay                                 70767.01
OvertimePay                              9977.82
OtherPay                                   648.0
Benefits                                27818.31
TotalPay                                81392.83
TotalPayBenefits                       109211.14
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89543, dtype: object)
(89544, Id                               89545
EmployeeName        Johnnie L Williams
JobTitle              Transit Operator
BasePay                       66995.62
OvertimePay                    4588.48
OtherPay                       4179.24
Benefits                      33446.14
TotalPay                      75763.34
TotalPayBenefits             109209.48
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89544, dtype: object)
(89545, Id                             89546
EmployeeName             Chan  Duong
JobTitle            Transit Operator
BasePay                     68808.78
OvertimePay                  4623.97
OtherPay                     2033.36
Benefits                    33739.78
TotalPay                    75466.11
TotalPayBenefits           109205.89
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89545, dtype: object)
(89546, Id                              89547
EmployeeName         Leticia P Cabato
JobTitle            Nursing Assistant
BasePay                       68137.7
OvertimePay                  11244.37
OtherPay                      2293.55
Benefits                     27520.29
TotalPay                     81675.62
TotalPayBenefits            109195.91
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89546, dtype: object)
(89547, Id                             89548
EmployeeName              Nien  Vien
JobTitle            Transit Operator
BasePay                     67980.42
OvertimePay                  2622.54
OtherPay                     4571.95
Benefits                    34016.07
TotalPay                    75174.91
TotalPayBenefits           109190.98
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89547, dtype: object)
(89548, Id                                89549
EmployeeName        Rhea Mae C Bautista
JobTitle                     Pharmacist
BasePay                        67898.77
OvertimePay                     2290.38
OtherPay                       17309.35
Benefits                        21691.7
TotalPay                        87498.5
TotalPayBenefits               109190.2
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89548, dtype: object)
(89549, Id                                89550
EmployeeName                 Mark  Foti
JobTitle            Automotive Mechanic
BasePay                        78138.25
OvertimePay                      415.13
OtherPay                        1371.68
Benefits                       29263.55
TotalPay                       79925.06
TotalPayBenefits              109188.61
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89549, dtype: object)
(89550, Id                                         89551
EmployeeName                       John K Murray
JobTitle            Stationary Eng, Sewage Plant
BasePay                                 76330.07
OvertimePay                                  0.0
OtherPay                                 5183.99
Benefits                                27659.66
TotalPay                                81514.06
TotalPayBenefits                       109173.72
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89550, dtype: object)
(89551, Id                             89552
EmployeeName           Geraldo J Pua
JobTitle            Transit Operator
BasePay                     67870.91
OvertimePay                  4922.52
OtherPay                     2852.03
Benefits                    33520.93
TotalPay                    75645.46
TotalPayBenefits           109166.39
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89551, dtype: object)
(89552, Id                             89553
EmployeeName         Anthony B Moody
JobTitle            Transit Operator
BasePay                     67578.64
OvertimePay                  7723.08
OtherPay                     1007.84
Benefits                    32854.63
TotalPay                    76309.56
TotalPayBenefits           109164.19
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89552, dtype: object)
(89553, Id                                89554
EmployeeName             Dave C Pallera
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    10609.56
OtherPay                        9730.89
Benefits                       27685.83
TotalPay                       81468.45
TotalPayBenefits              109154.28
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89553, dtype: object)
(89554, Id                            89555
EmployeeName        Jaime  Espinoza
JobTitle                   Gardener
BasePay                    64641.04
OvertimePay                18021.19
OtherPay                        0.0
Benefits                   26485.61
TotalPay                   82662.23
TotalPayBenefits          109147.84
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89554, dtype: object)
(89555, Id                                  89556
EmployeeName                  Pilar  Mero
JobTitle            Deputy Court Clerk II
BasePay                          74624.67
OvertimePay                           0.0
OtherPay                          5255.64
Benefits                         29258.23
TotalPay                         79880.31
TotalPayBenefits                109138.54
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89555, dtype: object)
(89556, Id                                  89557
EmployeeName         Regina R.S. Gonzalez
JobTitle            Deputy Court Clerk II
BasePay                          75601.54
OvertimePay                           0.0
OtherPay                          4144.07
Benefits                         29392.34
TotalPay                         79745.61
TotalPayBenefits                109137.95
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89556, dtype: object)
(89557, Id                                      89558
EmployeeName              Amparo A Balladares
JobTitle            Senior Eligibility Worker
BasePay                              74547.81
OvertimePay                           3782.98
OtherPay                              2030.51
Benefits                             28773.47
TotalPay                              80361.3
TotalPayBenefits                    109134.77
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89557, dtype: object)
(89558, Id                               89559
EmployeeName              Peter H Ling
JobTitle            Transit Supervisor
BasePay                        68795.2
OvertimePay                    2817.71
OtherPay                       4106.06
Benefits                      33407.27
TotalPay                      75718.97
TotalPayBenefits             109126.24
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89558, dtype: object)
(89559, Id                              89560
EmployeeName        Eduardo F Pacheco
JobTitle              General Laborer
BasePay                       62466.2
OvertimePay                   7825.26
OtherPay                      10689.7
Benefits                     28143.28
TotalPay                     80981.16
TotalPayBenefits            109124.44
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89559, dtype: object)
(89560, Id                                89561
EmployeeName        Reginald B Willpitz
JobTitle            Automotive Mechanic
BasePay                        73637.94
OvertimePay                         0.0
OtherPay                        6902.35
Benefits                       28574.09
TotalPay                       80540.29
TotalPayBenefits              109114.38
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89560, dtype: object)
(89561, Id                                       89562
EmployeeName                      Leo  Fedigan
JobTitle            Counselor, Log Cabin Ranch
BasePay                               72696.52
OvertimePay                            6314.57
OtherPay                               2405.03
Benefits                              27696.12
TotalPay                              81416.12
TotalPayBenefits                     109112.24
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89561, dtype: object)
(89562, Id                                 89563
EmployeeName        Jeanne M Schoenstein
JobTitle                            Cook
BasePay                          63618.5
OvertimePay                     17849.44
OtherPay                         1187.82
Benefits                        26455.52
TotalPay                        82655.76
TotalPayBenefits               109111.28
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89562, dtype: object)
(89563, Id                                89564
EmployeeName           Richard A Spence
JobTitle            Stationary Engineer
BasePay                         75425.7
OvertimePay                      2407.8
OtherPay                        2125.26
Benefits                       29152.28
TotalPay                       79958.76
TotalPayBenefits              109111.04
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89563, dtype: object)
(89564, Id                                89565
EmployeeName          Valerie K Taybron
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                     9300.38
OtherPay                       10788.12
Benefits                       27893.93
TotalPay                        81216.5
TotalPayBenefits              109110.43
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89564, dtype: object)
(89565, Id                             89566
EmployeeName           Anthony A Lin
JobTitle            Transit Operator
BasePay                     67867.71
OvertimePay                  6254.48
OtherPay                     1769.66
Benefits                    33212.59
TotalPay                    75891.85
TotalPayBenefits           109104.44
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89565, dtype: object)
(89566, Id                                   89567
EmployeeName           Josephine G Angeles
JobTitle            Social Work Specialist
BasePay                            80003.0
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29100.75
TotalPay                           80003.0
TotalPayBenefits                 109103.75
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89566, dtype: object)
(89567, Id                             89568
EmployeeName          Karl H Sattler
JobTitle            Transit Operator
BasePay                      67718.5
OvertimePay                  6585.84
OtherPay                     2891.37
Benefits                    31906.19
TotalPay                    77195.71
TotalPayBenefits            109101.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89567, dtype: object)
(89568, Id                               89569
EmployeeName        Marcus C Camilleri
JobTitle              Transit Operator
BasePay                       68533.37
OvertimePay                    3519.34
OtherPay                       3144.62
Benefits                      33889.38
TotalPay                      75197.33
TotalPayBenefits             109086.71
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89568, dtype: object)
(89569, Id                                   89570
EmployeeName              Michael  Osipoff
JobTitle            Electrical Line Helper
BasePay                           72016.01
OvertimePay                        7597.93
OtherPay                           1253.69
Benefits                           28208.2
TotalPay                          80867.63
TotalPayBenefits                 109075.83
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89569, dtype: object)
(89570, Id                                         89571
EmployeeName                    Aristotle T Chee
JobTitle            Sr Fare Collections Receiver
BasePay                                  70767.0
OvertimePay                              9815.21
OtherPay                                   648.0
Benefits                                27834.76
TotalPay                                81230.21
TotalPayBenefits                       109064.97
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89570, dtype: object)
(89571, Id                                89572
EmployeeName        Victor M Serrato Jr
JobTitle               Transit Operator
BasePay                        67775.68
OvertimePay                      6382.5
OtherPay                        1157.64
Benefits                       33749.13
TotalPay                       75315.82
TotalPayBenefits              109064.95
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89571, dtype: object)
(89572, Id                                     89573
EmployeeName                   Kirk  Edwards
JobTitle            Counselor, Juvenile Hall
BasePay                             66376.83
OvertimePay                         15311.47
OtherPay                             1181.75
Benefits                            26191.61
TotalPay                            82870.05
TotalPayBenefits                   109061.66
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89572, dtype: object)
(89573, Id                                      89574
EmployeeName                Alfredo  Gonzalez
JobTitle            Automotive Service Worker
BasePay                              64317.03
OvertimePay                          14048.24
OtherPay                              3569.62
Benefits                             27123.59
TotalPay                             81934.89
TotalPayBenefits                    109058.48
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89573, dtype: object)
(89574, Id                                  89575
EmployeeName                   Alvin  Mok
JobTitle            Deputy Court Clerk II
BasePay                          74486.57
OvertimePay                           0.0
OtherPay                           5100.0
Benefits                         29467.67
TotalPay                         79586.57
TotalPayBenefits                109054.24
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89574, dtype: object)
(89575, Id                                 89576
EmployeeName                 Kitty S Man
JobTitle            Senior Social Worker
BasePay                         77381.37
OvertimePay                          0.0
OtherPay                          2188.9
Benefits                         29479.5
TotalPay                        79570.27
TotalPayBenefits               109049.77
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89575, dtype: object)
(89576, Id                                  89577
EmployeeName                   Timmy  Kyu
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           3524.0
Benefits                         29453.09
TotalPay                          79594.5
TotalPayBenefits                109047.59
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89576, dtype: object)
(89577, Id                                         89578
EmployeeName                        Albert C Tam
JobTitle            Pr Payroll & Personnel Clerk
BasePay                                 78163.97
OvertimePay                              2287.09
OtherPay                                     0.0
Benefits                                28594.21
TotalPay                                80451.06
TotalPayBenefits                       109045.27
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89577, dtype: object)
(89578, Id                                        89579
EmployeeName                     Mark J Kennedy
JobTitle            Senior Management Assistant
BasePay                                69867.07
OvertimePay                                 0.0
OtherPay                                14971.5
Benefits                               24204.95
TotalPay                               84838.57
TotalPayBenefits                      109043.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89578, dtype: object)
(89579, Id                                  89580
EmployeeName        Cristina E Busalacchi
JobTitle                   Police Officer
BasePay                          77787.41
OvertimePay                           0.0
OtherPay                          1333.17
Benefits                         29920.25
TotalPay                         79120.58
TotalPayBenefits                109040.83
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89579, dtype: object)
(89580, Id                                  89581
EmployeeName                 Steven  Tang
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                          3518.76
Benefits                         29451.38
TotalPay                         79589.26
TotalPayBenefits                109040.64
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89580, dtype: object)
(89581, Id                                         89582
EmployeeName                     Cheryl A Kalson
JobTitle            Health Program Coordinator 2
BasePay                                 82891.21
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                26144.15
TotalPay                                82891.21
TotalPayBenefits                       109035.36
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89581, dtype: object)
(89582, Id                           89583
EmployeeName         Rene S Duenes
JobTitle            Police Officer
BasePay                   80641.23
OvertimePay                 125.46
OtherPay                   1032.69
Benefits                  27225.69
TotalPay                  81799.38
TotalPayBenefits         109025.07
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89582, dtype: object)
(89583, Id                                  89584
EmployeeName             Juanita D Murphy
JobTitle            Deputy Court Clerk II
BasePay                          76070.55
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                         79570.55
TotalPayBenefits                109018.52
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89583, dtype: object)
(89584, Id                                  89585
EmployeeName                 David W Yuen
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                         79570.54
TotalPayBenefits                109018.51
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89584, dtype: object)
(89585, Id                                  89586
EmployeeName                  Bowman  Liu
JobTitle            Deputy Court Clerk II
BasePay                          76070.54
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                         79570.54
TotalPayBenefits                109018.51
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89585, dtype: object)
(89586, Id                              89587
EmployeeName            Ernest W Wong
JobTitle            Fiscal Technician
BasePay                      76070.53
OvertimePay                       0.0
OtherPay                       3500.0
Benefits                     29447.97
TotalPay                     79570.53
TotalPayBenefits             109018.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89586, dtype: object)
(89587, Id                                  89588
EmployeeName              Lilia  Fastidio
JobTitle            Deputy Court Clerk II
BasePay                          76070.52
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                         79570.52
TotalPayBenefits                109018.49
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89587, dtype: object)
(89588, Id                                  89589
EmployeeName              Suzanne L Leacy
JobTitle            Deputy Court Clerk II
BasePay                          76070.51
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                         79570.51
TotalPayBenefits                109018.48
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89588, dtype: object)
(89589, Id                                  89590
EmployeeName               Damon L Carter
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                          79570.5
TotalPayBenefits                109018.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89589, dtype: object)
(89590, Id                                  89591
EmployeeName              Taku  Morohoshi
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                          79570.5
TotalPayBenefits                109018.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89590, dtype: object)
(89591, Id                                  89592
EmployeeName              Nestor A Panelo
JobTitle            Deputy Court Clerk II
BasePay                           76070.5
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29447.97
TotalPay                          79570.5
TotalPayBenefits                109018.47
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89591, dtype: object)
(89592, Id                             89593
EmployeeName         Richard J Filer
JobTitle            Transit Operator
BasePay                     64110.85
OvertimePay                 13815.58
OtherPay                      845.48
Benefits                    30243.27
TotalPay                    78771.91
TotalPayBenefits           109015.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89592, dtype: object)
(89593, Id                             89594
EmployeeName        Thomas J Mudrick
JobTitle                    Gardener
BasePay                      64641.0
OvertimePay                 15988.38
OtherPay                     1586.14
Benefits                    26795.85
TotalPay                    82215.52
TotalPayBenefits           109011.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89593, dtype: object)
(89594, Id                             89595
EmployeeName         Philip D Aragon
JobTitle            Transit Operator
BasePay                     67304.44
OvertimePay                  8062.36
OtherPay                      333.76
Benefits                    33308.24
TotalPay                    75700.56
TotalPayBenefits            109008.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89594, dtype: object)
(89595, Id                                 89596
EmployeeName              Angela L Chung
JobTitle            Senior Social Worker
BasePay                         77274.14
OvertimePay                          0.0
OtherPay                          2268.0
Benefits                        29461.92
TotalPay                        79542.14
TotalPayBenefits               109004.06
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89595, dtype: object)
(89596, Id                                 89597
EmployeeName             Marina  Portnov
JobTitle            Senior Social Worker
BasePay                         77274.15
OvertimePay                          0.0
OtherPay                          2268.0
Benefits                        29461.26
TotalPay                        79542.15
TotalPayBenefits               109003.41
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89596, dtype: object)
(89597, Id                             89598
EmployeeName            Kelvin  Tran
JobTitle            Transit Operator
BasePay                     68706.31
OvertimePay                  2988.72
OtherPay                      3261.3
Benefits                    34042.09
TotalPay                    74956.33
TotalPayBenefits           108998.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89597, dtype: object)
(89598, Id                             89599
EmployeeName               Wai T Lau
JobTitle            Transit Operator
BasePay                     67797.71
OvertimePay                  6077.54
OtherPay                     1891.96
Benefits                    33230.63
TotalPay                    75767.21
TotalPayBenefits           108997.84
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89598, dtype: object)
(89599, Id                               89600
EmployeeName        Joaquin  Rodriguez
JobTitle              Transit Operator
BasePay                       68951.39
OvertimePay                    5713.03
OtherPay                        834.77
Benefits                      33493.09
TotalPay                      75499.19
TotalPayBenefits             108992.28
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89599, dtype: object)
(89600, Id                             89601
EmployeeName          Ariel N Tosini
JobTitle            Transit Operator
BasePay                     68655.26
OvertimePay                  4892.49
OtherPay                     1832.78
Benefits                     33605.8
TotalPay                    75380.53
TotalPayBenefits           108986.33
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89600, dtype: object)
(89601, Id                              89602
EmployeeName        Herman  Pratt III
JobTitle             Transit Operator
BasePay                      66249.56
OvertimePay                   9451.39
OtherPay                       357.96
Benefits                     32926.38
TotalPay                     76058.91
TotalPayBenefits            108985.29
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89601, dtype: object)
(89602, Id                               89603
EmployeeName           Earlon M Israel
JobTitle            Transit Supervisor
BasePay                       68836.52
OvertimePay                    3200.31
OtherPay                       3489.53
Benefits                      33458.29
TotalPay                      75526.36
TotalPayBenefits             108984.65
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89602, dtype: object)
(89603, Id                              89604
EmployeeName            Romeo V Tagle
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                    6604.0
OtherPay                      5681.89
Benefits                     28303.96
TotalPay                     80676.89
TotalPayBenefits            108980.85
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89603, dtype: object)
(89604, Id                                      89605
EmployeeName                      Desmond  Ho
JobTitle            Senior Eligibility Worker
BasePay                              75033.02
OvertimePay                           2960.96
OtherPay                               2028.0
Benefits                             28957.91
TotalPay                             80021.98
TotalPayBenefits                    108979.89
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89604, dtype: object)
(89605, Id                                    89606
EmployeeName              Deborah A McGuire
JobTitle            Senior Benefits Analyst
BasePay                            78682.58
OvertimePay                         1691.74
OtherPay                             573.13
Benefits                           28028.77
TotalPay                           80947.45
TotalPayBenefits                  108976.22
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89605, dtype: object)
(89606, Id                                      89607
EmployeeName                    Doris J Brown
JobTitle            Licensed Vocational Nurse
BasePay                              73544.76
OvertimePay                            888.02
OtherPay                              5280.67
Benefits                             29261.38
TotalPay                             79713.45
TotalPayBenefits                    108974.83
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89606, dtype: object)
(89607, Id                              89608
EmployeeName        Michael A Pardini
JobTitle               Police Officer
BasePay                       78591.0
OvertimePay                   1765.89
OtherPay                      1429.53
Benefits                     27183.27
TotalPay                     81786.42
TotalPayBenefits            108969.69
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89607, dtype: object)
(89608, Id                          89609
EmployeeName        Irwin  Silver
JobTitle                  Painter
BasePay                  77804.36
OvertimePay                   0.0
OtherPay                   1730.0
Benefits                 29433.38
TotalPay                 79534.36
TotalPayBenefits        108967.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89608, dtype: object)
(89609, Id                             89610
EmployeeName        Whitney  Miskell
JobTitle            Registered Nurse
BasePay                     79397.41
OvertimePay                    744.6
OtherPay                     3631.73
Benefits                    25190.57
TotalPay                    83773.74
TotalPayBenefits           108964.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89609, dtype: object)
(89610, Id                                        89611
EmployeeName                     Leila J Haddad
JobTitle            Senior Management Assistant
BasePay                                80529.62
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               28430.48
TotalPay                               80529.62
TotalPayBenefits                       108960.1
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89610, dtype: object)
(89611, Id                                     89612
EmployeeName                Juana F Gonzalez
JobTitle            Rehabilitation Counselor
BasePay                             75937.52
OvertimePay                              0.0
OtherPay                             3967.53
Benefits                            29054.56
TotalPay                            79905.05
TotalPayBenefits                   108959.61
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89611, dtype: object)
(89612, Id                               89613
EmployeeName        Albert J Tuipulotu
JobTitle                Police Officer
BasePay                       78249.32
OvertimePay                    2235.73
OtherPay                        856.91
Benefits                      27616.57
TotalPay                      81341.96
TotalPayBenefits             108958.53
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89612, dtype: object)
(89613, Id                             89614
EmployeeName          Sukia  Jackson
JobTitle            Transit Operator
BasePay                     67387.77
OvertimePay                   5098.4
OtherPay                     2479.74
Benefits                    33990.31
TotalPay                    74965.91
TotalPayBenefits           108956.22
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89613, dtype: object)
(89614, Id                              89615
EmployeeName        Nadereh  Fanaeian
JobTitle                Special Nurse
BasePay                       94645.8
OvertimePay                   2246.68
OtherPay                     12057.27
Benefits                          0.0
TotalPay                    108949.75
TotalPayBenefits            108949.75
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89614, dtype: object)
(89615, Id                                 89616
EmployeeName                Beben F Chan
JobTitle            Senior Social Worker
BasePay                         77274.14
OvertimePay                          0.0
OtherPay                          2228.0
Benefits                        29445.64
TotalPay                        79502.14
TotalPayBenefits               108947.78
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89615, dtype: object)
(89616, Id                             89617
EmployeeName          Myra  Brummell
JobTitle            Transit Operator
BasePay                     55742.63
OvertimePay                 18332.76
OtherPay                     6420.14
Benefits                    28451.79
TotalPay                    80495.53
TotalPayBenefits           108947.32
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89616, dtype: object)
(89617, Id                                 89618
EmployeeName               Karina K Chan
JobTitle            Senior Social Worker
BasePay                         77274.18
OvertimePay                          0.0
OtherPay                          2228.0
Benefits                        29445.02
TotalPay                        79502.18
TotalPayBenefits                108947.2
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89617, dtype: object)
(89618, Id                                         89619
EmployeeName                          Po Yee  Au
JobTitle            Health Program Coordinator 2
BasePay                                 80412.77
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                28533.63
TotalPay                                80412.77
TotalPayBenefits                        108946.4
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89618, dtype: object)
(89619, Id                                    89620
EmployeeName        June A Schlotfeldt-Cato
JobTitle                    Principal Clerk
BasePay                             72144.0
OvertimePay                         8811.12
OtherPay                                0.0
Benefits                           27983.38
TotalPay                           80955.12
TotalPayBenefits                   108938.5
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89619, dtype: object)
(89620, Id                             89621
EmployeeName        Krisztina  Emodi
JobTitle            Registered Nurse
BasePay                     78033.53
OvertimePay                    29.76
OtherPay                     4061.39
Benefits                    26812.69
TotalPay                    82124.68
TotalPayBenefits           108937.37
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89620, dtype: object)
(89621, Id                            89622
EmployeeName         Edwin W Myrick
JobTitle            General Laborer
BasePay                    60825.94
OvertimePay                14609.69
OtherPay                    7703.27
Benefits                   25796.65
TotalPay                    83138.9
TotalPayBenefits          108935.55
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89621, dtype: object)
(89622, Id                             89623
EmployeeName            Zhuoxin  Wen
JobTitle            Transit Operator
BasePay                     67515.49
OvertimePay                   6636.8
OtherPay                     1149.49
Benefits                    33630.05
TotalPay                    75301.78
TotalPayBenefits           108931.83
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89622, dtype: object)
(89623, Id                              89624
EmployeeName        Algerine  Clayton
JobTitle             Transit Operator
BasePay                      67752.22
OvertimePay                   7587.78
OtherPay                       719.25
Benefits                      32870.2
TotalPay                     76059.25
TotalPayBenefits            108929.45
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89623, dtype: object)
(89624, Id                                        89625
EmployeeName                      James R Avant
JobTitle            Watershed Keeper Supervisor
BasePay                                76545.02
OvertimePay                              3534.9
OtherPay                                    0.0
Benefits                               28847.05
TotalPay                               80079.92
TotalPayBenefits                      108926.97
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89624, dtype: object)
(89625, Id                                 89626
EmployeeName            Sharon M Lai-Moy
JobTitle            Senior Social Worker
BasePay                         77345.64
OvertimePay                          0.0
OtherPay                          2128.6
Benefits                        29452.24
TotalPay                        79474.24
TotalPayBenefits               108926.48
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89625, dtype: object)
(89626, Id                           89627
EmployeeName        Dustin V Tsang
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                 1328.1
OtherPay                   1281.39
Benefits                  27725.79
TotalPay                  81200.51
TotalPayBenefits          108926.3
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89626, dtype: object)
(89627, Id                                           89628
EmployeeName                       Joseph W Harris
JobTitle            Marriage, Family & Child Cnslr
BasePay                                    79456.0
OvertimePay                                    0.0
OtherPay                                       0.0
Benefits                                  29465.51
TotalPay                                   79456.0
TotalPayBenefits                         108921.51
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89627, dtype: object)
(89628, Id                             89629
EmployeeName           Ernest U Madu
JobTitle            Transit Operator
BasePay                     68041.56
OvertimePay                  5165.84
OtherPay                     2253.94
Benefits                    33443.44
TotalPay                    75461.34
TotalPayBenefits           108904.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89628, dtype: object)
(89629, Id                                   89630
EmployeeName               Eddie R Valadez
JobTitle            Transit Fare Inspector
BasePay                            66744.0
OvertimePay                        3311.25
OtherPay                            5462.6
Benefits                          33385.46
TotalPay                          75517.85
TotalPayBenefits                 108903.31
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89629, dtype: object)
(89630, Id                          89631
EmployeeName          Aida  Teklu
JobTitle                 Gardener
BasePay                  64641.01
OvertimePay              16061.33
OtherPay                  1425.68
Benefits                 26767.79
TotalPay                 82128.02
TotalPayBenefits        108895.81
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89630, dtype: object)
(89631, Id                                 89632
EmployeeName         Michael R Duckworth
JobTitle            Automotive Machinist
BasePay                         78390.81
OvertimePay                          0.0
OtherPay                         1290.03
Benefits                        29214.01
TotalPay                        79680.84
TotalPayBenefits               108894.85
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89631, dtype: object)
(89632, Id                            89633
EmployeeName           Craig  David
JobTitle            Junior Engineer
BasePay                     78765.6
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   30123.84
TotalPay                    78765.6
TotalPayBenefits          108889.44
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89632, dtype: object)
(89633, Id                               89634
EmployeeName          Marissa C Pacleb
JobTitle            Program Specialist
BasePay                       77742.07
OvertimePay                        0.0
OtherPay                        1680.0
Benefits                      29466.66
TotalPay                      79422.07
TotalPayBenefits             108888.73
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89633, dtype: object)
(89634, Id                              89635
EmployeeName        Lavelle R Shaw Sr
JobTitle             Transit Operator
BasePay                      68599.19
OvertimePay                    3864.8
OtherPay                      2054.31
Benefits                     34369.74
TotalPay                      74518.3
TotalPayBenefits            108888.04
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89634, dtype: object)
(89635, Id                                           89636
EmployeeName                      Michael L Ordona
JobTitle            IT Operations Support Admn III
BasePay                                   79366.51
OvertimePay                                    0.0
OtherPay                                     30.45
Benefits                                  29486.57
TotalPay                                  79396.96
TotalPayBenefits                         108883.53
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89635, dtype: object)
(89636, Id                              89637
EmployeeName        Nannette M Harris
JobTitle             Transit Operator
BasePay                       64862.4
OvertimePay                   9249.54
OtherPay                      2755.95
Benefits                     32007.85
TotalPay                     76867.89
TotalPayBenefits            108875.74
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89636, dtype: object)
(89637, Id                                   89638
EmployeeName        Jean Pit Fong Li  Yuen
JobTitle             Deputy Court Clerk II
BasePay                           75950.51
OvertimePay                            0.0
OtherPay                            3500.0
Benefits                          29422.38
TotalPay                          79450.51
TotalPayBenefits                 108872.89
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89637, dtype: object)
(89638, Id                                  89639
EmployeeName                Shaw M Talley
JobTitle            Medical Social Worker
BasePay                          77733.18
OvertimePay                           0.0
OtherPay                          1883.15
Benefits                         29253.82
TotalPay                         79616.33
TotalPayBenefits                108870.15
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89638, dtype: object)
(89639, Id                          89640
EmployeeName         Jenny J Qiao
JobTitle            Accountant II
BasePay                  79409.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29459.86
TotalPay                 79409.57
TotalPayBenefits        108869.43
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89639, dtype: object)
(89640, Id                           89641
EmployeeName        Abby  Abinanti
JobTitle              Duty Officer
BasePay                   72555.02
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  36313.31
TotalPay                  72555.02
TotalPayBenefits         108868.33
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89640, dtype: object)
(89641, Id                                   89642
EmployeeName            Christine Q Fermin
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        5862.69
OtherPay                           6224.15
Benefits                          28390.48
TotalPay                          80477.84
TotalPayBenefits                 108868.32
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89641, dtype: object)
(89642, Id                                           89643
EmployeeName                    Peter A Tansiongco
JobTitle            Community Police Services Aide
BasePay                                   65817.03
OvertimePay                                10293.0
OtherPay                                   5118.73
Benefits                                  27638.88
TotalPay                                  81228.76
TotalPayBenefits                         108867.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89642, dtype: object)
(89643, Id                          89644
EmployeeName         Bren  Turner
JobTitle            Special Nurse
BasePay                  93057.83
OvertimePay                   0.0
OtherPay                   129.82
Benefits                 15679.37
TotalPay                 93187.65
TotalPayBenefits        108867.02
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89643, dtype: object)
(89644, Id                             89645
EmployeeName               Wei  Suen
JobTitle            Transit Operator
BasePay                     60455.24
OvertimePay                 15941.37
OtherPay                     2652.85
Benefits                    29814.89
TotalPay                    79049.46
TotalPayBenefits           108864.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89644, dtype: object)
(89645, Id                                   89646
EmployeeName                  Julie Y Chen
JobTitle            Administrative Analyst
BasePay                           79390.44
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29459.04
TotalPay                          79390.44
TotalPayBenefits                 108849.48
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89645, dtype: object)
(89646, Id                             89647
EmployeeName        Kimberly  Molina
JobTitle            Transit Operator
BasePay                     67047.31
OvertimePay                  6558.61
OtherPay                     2273.54
Benefits                     32965.6
TotalPay                    75879.46
TotalPayBenefits           108845.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89646, dtype: object)
(89647, Id                                      89648
EmployeeName                       Khanh M Au
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                           3595.32
OtherPay                               1380.0
Benefits                             28832.39
TotalPay                             80008.32
TotalPayBenefits                    108840.71
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89647, dtype: object)
(89648, Id                             89649
EmployeeName        Adam B Lobsinger
JobTitle              Police Officer
BasePay                     78591.02
OvertimePay                  1603.07
OtherPay                      920.99
Benefits                    27724.95
TotalPay                    81115.08
TotalPayBenefits           108840.03
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89648, dtype: object)
(89649, Id                                 89650
EmployeeName                 Teresa T Le
JobTitle            Senior Social Worker
BasePay                         77274.21
OvertimePay                          0.0
OtherPay                          2128.0
Benefits                        29435.78
TotalPay                        79402.21
TotalPayBenefits               108837.99
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89649, dtype: object)
(89650, Id                          89651
EmployeeName         Vilma J Ruiz
JobTitle            Payroll Clerk
BasePay                   67121.5
OvertimePay              12819.12
OtherPay                  1645.42
Benefits                 27247.16
TotalPay                 81586.04
TotalPayBenefits         108833.2
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89650, dtype: object)
(89651, Id                                      89652
EmployeeName                 Seaborn H Chiles
JobTitle            EMT/Paramedic/Firefighter
BasePay                              70658.72
OvertimePay                           1205.69
OtherPay                              8326.04
Benefits                             28638.73
TotalPay                             80190.45
TotalPayBenefits                    108829.18
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89651, dtype: object)
(89652, Id                                 89653
EmployeeName               Edna J Guzman
JobTitle            Senior Social Worker
BasePay                         77274.12
OvertimePay                          0.0
OtherPay                          2128.0
Benefits                        29424.95
TotalPay                        79402.12
TotalPayBenefits               108827.07
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89652, dtype: object)
(89653, Id                                 89654
EmployeeName              Pedro  Herrera
JobTitle            Senior Social Worker
BasePay                         77274.11
OvertimePay                          0.0
OtherPay                          2128.0
Benefits                         29423.7
TotalPay                        79402.11
TotalPayBenefits               108825.81
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89653, dtype: object)
(89654, Id                                  89655
EmployeeName           Monica N Nichelson
JobTitle            Executive Secretary 3
BasePay                          78354.37
OvertimePay                         518.4
OtherPay                              0.0
Benefits                         29952.46
TotalPay                         78872.77
TotalPayBenefits                108825.23
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89654, dtype: object)
(89655, Id                                 89656
EmployeeName           Zhanna  Poychenko
JobTitle            Senior Social Worker
BasePay                          77274.2
OvertimePay                          0.0
OtherPay                          2108.0
Benefits                         29430.9
TotalPay                         79382.2
TotalPayBenefits                108813.1
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89655, dtype: object)
(89656, Id                                 89657
EmployeeName          Sergey  Trofimenko
JobTitle            Senior Social Worker
BasePay                         77274.12
OvertimePay                          0.0
OtherPay                          2108.0
Benefits                        29420.06
TotalPay                        79382.12
TotalPayBenefits               108802.18
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89656, dtype: object)
(89657, Id                                    89658
EmployeeName             Carol J Sionkowski
JobTitle            Park Section Supervisor
BasePay                             78726.3
OvertimePay                          769.47
OtherPay                                0.0
Benefits                            29304.7
TotalPay                           79495.77
TotalPayBenefits                  108800.47
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89657, dtype: object)
(89658, Id                          89659
EmployeeName          Sally J Xie
JobTitle            Accountant II
BasePay                  79340.94
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29453.03
TotalPay                 79340.94
TotalPayBenefits        108793.97
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89658, dtype: object)
(89659, Id                          89660
EmployeeName        Isabella H Li
JobTitle                Asst Engr
BasePay                  78490.81
OvertimePay                218.25
OtherPay                      0.0
Benefits                 30079.08
TotalPay                 78709.06
TotalPayBenefits        108788.14
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89659, dtype: object)
(89660, Id                          89661
EmployeeName        Phillip R Joe
JobTitle            Accountant II
BasePay                  79339.61
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29448.24
TotalPay                 79339.61
TotalPayBenefits        108787.85
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89660, dtype: object)
(89661, Id                            89662
EmployeeName        Peter M Turdici
JobTitle              Accountant II
BasePay                     79339.6
OvertimePay                     0.0
OtherPay                        0.0
Benefits                    29448.2
TotalPay                    79339.6
TotalPayBenefits           108787.8
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89661, dtype: object)
(89662, Id                          89663
EmployeeName         Luis C Adona
JobTitle            Accountant II
BasePay                  79339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  29448.2
TotalPay                 79339.57
TotalPayBenefits        108787.77
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89662, dtype: object)
(89663, Id                          89664
EmployeeName          Vicky H Tan
JobTitle            Accountant II
BasePay                  79339.58
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29448.17
TotalPay                 79339.58
TotalPayBenefits        108787.75
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89663, dtype: object)
(89664, Id                           89665
EmployeeName        Christine O Ng
JobTitle             Accountant II
BasePay                   79339.56
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29448.18
TotalPay                  79339.56
TotalPayBenefits         108787.74
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89664, dtype: object)
(89665, Id                          89666
EmployeeName        Edwards W Lew
JobTitle            Accountant II
BasePay                  79339.57
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29448.17
TotalPay                 79339.57
TotalPayBenefits        108787.74
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89665, dtype: object)
(89666, Id                           89667
EmployeeName        Andrea C Chong
JobTitle             Accountant II
BasePay                   79339.56
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29448.15
TotalPay                  79339.56
TotalPayBenefits         108787.71
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89666, dtype: object)
(89667, Id                            89668
EmployeeName        Peter A Pardini
JobTitle              Accountant II
BasePay                    79339.55
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29448.16
TotalPay                   79339.55
TotalPayBenefits          108787.71
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89667, dtype: object)
(89668, Id                          89669
EmployeeName        Melanie M Lin
JobTitle            Accountant II
BasePay                  79339.55
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29448.16
TotalPay                 79339.55
TotalPayBenefits        108787.71
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89668, dtype: object)
(89669, Id                                      89670
EmployeeName                     Harriet  Lem
JobTitle            Assistant Health Educator
BasePay                              79339.55
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29448.14
TotalPay                             79339.55
TotalPayBenefits                    108787.69
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89669, dtype: object)
(89670, Id                           89671
EmployeeName        Gerardo L Juan
JobTitle             Accountant II
BasePay                   79339.54
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29448.15
TotalPay                  79339.54
TotalPayBenefits         108787.69
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89670, dtype: object)
(89671, Id                            89672
EmployeeName        Lilian  Valerio
JobTitle              Accountant II
BasePay                    79339.54
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29448.14
TotalPay                   79339.54
TotalPayBenefits          108787.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89671, dtype: object)
(89672, Id                            89673
EmployeeName        James Lok  Yung
JobTitle              Accountant II
BasePay                    79339.53
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29448.15
TotalPay                   79339.53
TotalPayBenefits          108787.68
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89672, dtype: object)
(89673, Id                           89674
EmployeeName        Inna  Grinberg
JobTitle             Accountant II
BasePay                   79339.52
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29448.14
TotalPay                  79339.52
TotalPayBenefits         108787.66
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89673, dtype: object)
(89674, Id                            89675
EmployeeName        Janet R Dacanay
JobTitle              Accountant II
BasePay                    79339.52
OvertimePay                     0.0
OtherPay                        0.0
Benefits                   29448.14
TotalPay                   79339.52
TotalPayBenefits          108787.66
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89674, dtype: object)
(89675, Id                          89676
EmployeeName           Tuy V Tran
JobTitle            Accountant II
BasePay                  79339.51
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29448.13
TotalPay                 79339.51
TotalPayBenefits        108787.64
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89675, dtype: object)
(89676, Id                                   89677
EmployeeName        Victoria  Vasilevitsky
JobTitle                     Accountant II
BasePay                            79339.5
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29448.13
TotalPay                           79339.5
TotalPayBenefits                 108787.63
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89676, dtype: object)
(89677, Id                               89678
EmployeeName        Aniceto E Manongdo
JobTitle                 Accountant II
BasePay                       79338.25
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      29443.39
TotalPay                      79338.25
TotalPayBenefits             108781.64
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89677, dtype: object)
(89678, Id                          89679
EmployeeName           Ellen Z Hu
JobTitle            Accountant II
BasePay                  79338.18
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29443.32
TotalPay                 79338.18
TotalPayBenefits         108781.5
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89678, dtype: object)
(89679, Id                                       89680
EmployeeName          Maria Grace B Martiniano
JobTitle            Medical Records Technician
BasePay                               69714.01
OvertimePay                            10814.2
OtherPay                                 648.0
Benefits                               27603.7
TotalPay                              81176.21
TotalPayBenefits                     108779.91
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89679, dtype: object)
(89680, Id                                89681
EmployeeName            Joseph C Curran
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                      273.94
OtherPay                            0.0
Benefits                       30034.72
TotalPay                       78744.54
TotalPayBenefits              108779.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89680, dtype: object)
(89681, Id                              89682
EmployeeName        Priscila C Moreto
JobTitle                Accountant II
BasePay                      79339.55
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     29431.25
TotalPay                     79339.55
TotalPayBenefits             108770.8
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89681, dtype: object)
(89682, Id                                  89683
EmployeeName             Vaughn V Gregory
JobTitle            Executive Secretary 2
BasePay                          78650.51
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         30113.53
TotalPay                         78650.51
TotalPayBenefits                108764.04
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89682, dtype: object)
(89683, Id                           89684
EmployeeName        James C Hsiong
JobTitle             Accountant II
BasePay                   79339.55
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  29424.24
TotalPay                  79339.55
TotalPayBenefits         108763.79
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89683, dtype: object)
(89684, Id                                 89685
EmployeeName        Herminia M Sangalang
JobTitle                   Accountant II
BasePay                         79339.53
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        29423.97
TotalPay                        79339.53
TotalPayBenefits                108763.5
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89684, dtype: object)
(89685, Id                                     89686
EmployeeName                  Stephen A Kech
JobTitle            Public Relations Officer
BasePay                             80179.13
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            28579.36
TotalPay                            80179.13
TotalPayBenefits                   108758.49
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89685, dtype: object)
(89686, Id                                      89687
EmployeeName               Laronda R Mayfield
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                           4384.77
OtherPay                                648.0
Benefits                             28689.26
TotalPay                              80065.8
TotalPayBenefits                    108755.06
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89686, dtype: object)
(89687, Id                                     89688
EmployeeName                 Ramzie J Questo
JobTitle            General Utility Mechanic
BasePay                              85356.5
OvertimePay                          3957.06
OtherPay                                 0.0
Benefits                            19441.36
TotalPay                            89313.56
TotalPayBenefits                   108754.92
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89687, dtype: object)
(89688, Id                                89689
EmployeeName               Marie  Henry
JobTitle            Transit Car Cleaner
BasePay                         61128.0
OvertimePay                    11854.47
OtherPay                        8348.32
Benefits                       27420.13
TotalPay                       81330.79
TotalPayBenefits              108750.92
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89688, dtype: object)
(89689, Id                             89690
EmployeeName          Rafael  Garcia
JobTitle            Transit Operator
BasePay                      66885.2
OvertimePay                  9110.66
OtherPay                      372.64
Benefits                    32380.65
TotalPay                     76368.5
TotalPayBenefits           108749.15
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89689, dtype: object)
(89690, Id                                        89691
EmployeeName                AnnMarie P Callahan
JobTitle            Airport Communications Disp
BasePay                                75040.47
OvertimePay                             4621.88
OtherPay                                1309.91
Benefits                               27771.26
TotalPay                               80972.26
TotalPayBenefits                      108743.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89690, dtype: object)
(89691, Id                          89692
EmployeeName        Kevin  Reavey
JobTitle             Truck Driver
BasePay                  64864.41
OvertimePay              13302.55
OtherPay                  5410.32
Benefits                  25166.2
TotalPay                 83577.28
TotalPayBenefits        108743.48
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89691, dtype: object)
(89692, Id                                          89693
EmployeeName                      Carla V Godfrey
JobTitle            Chf Stationary Eng, Sew Plant
BasePay                                  74020.64
OvertimePay                               4817.97
OtherPay                                  5550.69
Benefits                                 24352.71
TotalPay                                  84389.3
TotalPayBenefits                        108742.01
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89692, dtype: object)
(89693, Id                                      89694
EmployeeName                        Truc T Ly
JobTitle            Senior Eligibility Worker
BasePay                              75033.03
OvertimePay                            3230.6
OtherPay                               1600.0
Benefits                             28877.44
TotalPay                             79863.63
TotalPayBenefits                    108741.07
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89693, dtype: object)
(89694, Id                                           89695
EmployeeName                    Elnora  Truvillion
JobTitle            Senior Parking Control Officer
BasePay                                    70699.0
OvertimePay                                2412.79
OtherPay                                   6629.67
Benefits                                  28993.98
TotalPay                                  79741.46
TotalPayBenefits                         108735.44
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89694, dtype: object)
(89695, Id                             89696
EmployeeName         Eugene  Collins
JobTitle            Transit Operator
BasePay                     63010.48
OvertimePay                  9208.29
OtherPay                     4783.07
Benefits                    31733.22
TotalPay                    77001.84
TotalPayBenefits           108735.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89695, dtype: object)
(89696, Id                              89697
EmployeeName        Efren S Antoniano
JobTitle             Transit Operator
BasePay                      65637.11
OvertimePay                    9869.4
OtherPay                       644.17
Benefits                     32584.11
TotalPay                     76150.68
TotalPayBenefits            108734.79
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89696, dtype: object)
(89697, Id                                           89698
EmployeeName                      Richard M Ordona
JobTitle            Senior Parking Control Officer
BasePay                                    66135.0
OvertimePay                                8361.91
OtherPay                                    6219.6
Benefits                                  28018.15
TotalPay                                  80716.51
TotalPayBenefits                         108734.66
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89697, dtype: object)
(89698, Id                          89699
EmployeeName        Fazil H Sadiq
JobTitle                 Gardener
BasePay                   64641.0
OvertimePay              12430.93
OtherPay                  3813.09
Benefits                  27849.1
TotalPay                 80885.02
TotalPayBenefits        108734.12
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89698, dtype: object)
(89699, Id                                 89700
EmployeeName              Klara P Libman
JobTitle            Senior Social Worker
BasePay                         77274.08
OvertimePay                          0.0
OtherPay                          2048.0
Benefits                        29410.95
TotalPay                        79322.08
TotalPayBenefits               108733.03
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89699, dtype: object)
(89700, Id                             89701
EmployeeName        Allison J Seibel
JobTitle                   Asst Engr
BasePay                      77949.5
OvertimePay                   779.63
OtherPay                         0.0
Benefits                    30000.91
TotalPay                    78729.13
TotalPayBenefits           108730.04
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89700, dtype: object)
(89701, Id                              89702
EmployeeName        Marcus  Alexander
JobTitle             Transit Operator
BasePay                      66764.24
OvertimePay                   4807.41
OtherPay                      3899.94
Benefits                     33252.54
TotalPay                     75471.59
TotalPayBenefits            108724.13
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89701, dtype: object)
(89702, Id                               89703
EmployeeName        Rhonda  Washington
JobTitle              Transit Operator
BasePay                        68012.9
OvertimePay                    6678.38
OtherPay                        940.27
Benefits                      33087.95
TotalPay                      75631.55
TotalPayBenefits              108719.5
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89702, dtype: object)
(89703, Id                             89704
EmployeeName           Frank  Chacon
JobTitle            Transit Operator
BasePay                     67818.11
OvertimePay                  5908.25
OtherPay                     1211.67
Benefits                    33772.37
TotalPay                    74938.03
TotalPayBenefits            108710.4
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89703, dtype: object)
(89704, Id                             89705
EmployeeName          Dorian T Yanos
JobTitle            Transit Operator
BasePay                     62628.48
OvertimePay                 10190.67
OtherPay                     4402.65
Benefits                    31483.91
TotalPay                     77221.8
TotalPayBenefits           108705.71
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89704, dtype: object)
(89705, Id                                  89706
EmployeeName                 Maurice  Kyu
JobTitle            Deputy Court Clerk II
BasePay                          75806.51
OvertimePay                           0.0
OtherPay                           3500.0
Benefits                         29398.77
TotalPay                         79306.51
TotalPayBenefits                108705.28
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89705, dtype: object)
(89706, Id                           89707
EmployeeName           Wayne C Lok
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                1804.61
OtherPay                   1123.87
Benefits                  27180.81
TotalPay                   81519.5
TotalPayBenefits         108700.31
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89706, dtype: object)
(89707, Id                                       89708
EmployeeName                 Loretta M Johnson
JobTitle            Diagnostic Imaging Tech II
BasePay                                78498.9
OvertimePay                            1924.23
OtherPay                                 778.3
Benefits                              27498.65
TotalPay                              81201.43
TotalPayBenefits                     108700.08
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89707, dtype: object)
(89708, Id                             89709
EmployeeName            Raymond  Lee
JobTitle            Transit Operator
BasePay                     67208.73
OvertimePay                  6103.56
OtherPay                     2320.97
Benefits                    33064.47
TotalPay                    75633.26
TotalPayBenefits           108697.73
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89708, dtype: object)
(89709, Id                          89710
EmployeeName          Stuart J On
JobTitle             Truck Driver
BasePay                   74398.5
OvertimePay               1449.21
OtherPay                  3684.37
Benefits                 29164.55
TotalPay                 79532.08
TotalPayBenefits        108696.63
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89709, dtype: object)
(89710, Id                                          89711
EmployeeName                      Carlos  Navarro
JobTitle            Library Technical Assistant 2
BasePay                                  76869.03
OvertimePay                                   0.0
OtherPay                                   2417.0
Benefits                                  29407.9
TotalPay                                 79286.03
TotalPayBenefits                        108693.93
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89710, dtype: object)
(89711, Id                                   89712
EmployeeName             Ronald  Rodriguez
JobTitle            Customer Service Agent
BasePay                           71820.01
OvertimePay                        5004.82
OtherPay                           3301.09
Benefits                          28567.68
TotalPay                          80125.92
TotalPayBenefits                  108693.6
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89711, dtype: object)
(89712, Id                              89713
EmployeeName        Pierre L Copeland
JobTitle             Transit Operator
BasePay                      66490.84
OvertimePay                   7912.38
OtherPay                      1707.55
Benefits                     32576.45
TotalPay                     76110.77
TotalPayBenefits            108687.22
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89712, dtype: object)
(89713, Id                            89714
EmployeeName        Miranda J Martz
JobTitle              Special Nurse
BasePay                     91774.5
OvertimePay                 1083.24
OtherPay                   15827.37
Benefits                        0.0
TotalPay                  108685.11
TotalPayBenefits          108685.11
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89713, dtype: object)
(89714, Id                                   89715
EmployeeName                    Min S Wong
JobTitle            Transit Fare Inspector
BasePay                            66744.0
OvertimePay                        3009.02
OtherPay                           5525.63
Benefits                          33401.69
TotalPay                          75278.65
TotalPayBenefits                 108680.34
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89714, dtype: object)
(89715, Id                                       89716
EmployeeName                      Susan F Mose
JobTitle            Patient Accounts Asst Sprv
BasePay                                74628.0
OvertimePay                            4795.52
OtherPay                                 648.0
Benefits                               28608.1
TotalPay                              80071.52
TotalPayBenefits                     108679.62
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89715, dtype: object)
(89716, Id                                   89717
EmployeeName               Sraddha S Mehta
JobTitle            Sr. Environmental Spec
BasePay                           81326.25
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          27349.02
TotalPay                          81326.25
TotalPayBenefits                 108675.27
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89716, dtype: object)
(89717, Id                             89718
EmployeeName             Carl W Love
JobTitle            Transit Operator
BasePay                     67553.86
OvertimePay                   4801.8
OtherPay                     2949.87
Benefits                    33362.98
TotalPay                    75305.53
TotalPayBenefits           108668.51
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89717, dtype: object)
(89718, Id                          89719
EmployeeName         Helen M Jung
JobTitle            Accountant II
BasePay                  79247.24
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29412.82
TotalPay                 79247.24
TotalPayBenefits        108660.06
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89718, dtype: object)
(89719, Id                             89720
EmployeeName         Justin P Madden
JobTitle            Police Officer 3
BasePay                     66308.62
OvertimePay                  1813.48
OtherPay                    21208.17
Benefits                    19328.14
TotalPay                    89330.27
TotalPayBenefits           108658.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89719, dtype: object)
(89720, Id                                   89721
EmployeeName                 Justin M Good
JobTitle            Customer Service Agent
BasePay                           71820.02
OvertimePay                        3042.89
OtherPay                           4903.18
Benefits                           28887.4
TotalPay                          79766.09
TotalPayBenefits                 108653.49
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89720, dtype: object)
(89721, Id                             89722
EmployeeName           Lavonne  Kyle
JobTitle            Transit Operator
BasePay                     67640.37
OvertimePay                  6947.46
OtherPay                      1111.7
Benefits                    32950.16
TotalPay                    75699.53
TotalPayBenefits           108649.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89721, dtype: object)
(89722, Id                                89723
EmployeeName        Daisy L Evangelista
JobTitle                  Special Nurse
BasePay                        80716.19
OvertimePay                         0.0
OtherPay                        15712.3
Benefits                       12212.21
TotalPay                       96428.49
TotalPayBenefits               108640.7
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89722, dtype: object)
(89723, Id                                         89724
EmployeeName                         Grace  Chin
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.08
OvertimePay                                  0.0
OtherPay                                   880.0
Benefits                                29402.08
TotalPay                                79234.08
TotalPayBenefits                       108636.16
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89723, dtype: object)
(89724, Id                             89725
EmployeeName         William G Brice
JobTitle            Transit Operator
BasePay                     66425.89
OvertimePay                  5942.09
OtherPay                     3271.95
Benefits                    32985.82
TotalPay                    75639.93
TotalPayBenefits           108625.75
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89724, dtype: object)
(89725, Id                                          89726
EmployeeName                        George R Diaz
JobTitle            Eligibility Worker Supervisor
BasePay                                  78925.01
OvertimePay                                 367.7
OtherPay                                    615.0
Benefits                                 28717.51
TotalPay                                 79907.71
TotalPayBenefits                        108625.22
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89725, dtype: object)
(89726, Id                             89727
EmployeeName           Darrel W Hill
JobTitle            Transit Operator
BasePay                      66744.7
OvertimePay                  7532.42
OtherPay                     1681.94
Benefits                    32661.29
TotalPay                    75959.06
TotalPayBenefits           108620.35
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89726, dtype: object)
(89727, Id                             89728
EmployeeName             Tony H Chau
JobTitle            Transit Operator
BasePay                     66985.27
OvertimePay                  7002.91
OtherPay                     1824.75
Benefits                    32804.66
TotalPay                    75812.93
TotalPayBenefits           108617.59
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89727, dtype: object)
(89728, Id                                 89729
EmployeeName        Gregory D Sutherland
JobTitle                  Police Officer
BasePay                         78591.03
OvertimePay                       939.02
OtherPay                         1361.48
Benefits                         27722.7
TotalPay                        80891.53
TotalPayBenefits               108614.23
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89728, dtype: object)
(89729, Id                                         89730
EmployeeName                     Ines B Ascencio
JobTitle            Sr Psychiatric Social Worker
BasePay                                 75880.92
OvertimePay                               817.49
OtherPay                                 5551.43
Benefits                                26363.55
TotalPay                                82249.84
TotalPayBenefits                       108613.39
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89729, dtype: object)
(89730, Id                             89731
EmployeeName         Stephanie  Camp
JobTitle            Transit Operator
BasePay                      67734.0
OvertimePay                  6791.39
OtherPay                     1116.75
Benefits                    32963.64
TotalPay                    75642.14
TotalPayBenefits           108605.78
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89730, dtype: object)
(89731, Id                                      89732
EmployeeName                    Wesley S Wong
JobTitle            Assistant Health Educator
BasePay                              79193.21
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             29396.44
TotalPay                             79193.21
TotalPayBenefits                    108589.65
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89731, dtype: object)
(89732, Id                                      89733
EmployeeName                    Monica P Diaz
JobTitle            Public Health Team Leader
BasePay                               77149.2
OvertimePay                            1730.4
OtherPay                                645.6
Benefits                             29049.64
TotalPay                              79525.2
TotalPayBenefits                    108574.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89732, dtype: object)
(89733, Id                                      89734
EmployeeName                   Renea M Cooper
JobTitle            Senior Eligibility Worker
BasePay                              74894.08
OvertimePay                            5167.2
OtherPay                                  0.0
Benefits                             28511.53
TotalPay                             80061.28
TotalPayBenefits                    108572.81
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89733, dtype: object)
(89734, Id                          89735
EmployeeName        Justin D Foon
JobTitle                Asst Engr
BasePay                   78490.8
OvertimePay                   0.0
OtherPay                      0.0
Benefits                  30076.9
TotalPay                  78490.8
TotalPayBenefits         108567.7
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89734, dtype: object)
(89735, Id                                         89736
EmployeeName                        Felix H Chan
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.01
OvertimePay                                41.04
OtherPay                                  784.02
Benefits                                29380.25
TotalPay                                79179.07
TotalPayBenefits                       108559.32
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89735, dtype: object)
(89736, Id                             89737
EmployeeName         Jared A Johnson
JobTitle            Transit Operator
BasePay                     68321.12
OvertimePay                  3433.85
OtherPay                     2461.33
Benefits                     34340.5
TotalPay                     74216.3
TotalPayBenefits            108556.8
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89736, dtype: object)
(89737, Id                              89738
EmployeeName        Shirley A Hubbard
JobTitle             Transit Operator
BasePay                      61589.07
OvertimePay                  12541.43
OtherPay                      3770.62
Benefits                     30650.79
TotalPay                     77901.12
TotalPayBenefits            108551.91
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89737, dtype: object)
(89738, Id                             89739
EmployeeName           Michael  Jang
JobTitle            Transit Operator
BasePay                     68032.08
OvertimePay                  2774.54
OtherPay                     3889.56
Benefits                    33854.06
TotalPay                    74696.18
TotalPayBenefits           108550.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89738, dtype: object)
(89739, Id                                          89740
EmployeeName                      Ananda D Hirsch
JobTitle            Senior Administrative Analyst
BasePay                                  79374.82
OvertimePay                                   0.0
OtherPay                                      0.0
Benefits                                 29174.26
TotalPay                                 79374.82
TotalPayBenefits                        108549.08
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89739, dtype: object)
(89740, Id                            89741
EmployeeName        Maria  Mavridis
JobTitle              Special Nurse
BasePay                   103093.59
OvertimePay                  960.93
OtherPay                    3417.59
Benefits                    1074.68
TotalPay                  107472.11
TotalPayBenefits          108546.79
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89740, dtype: object)
(89741, Id                             89742
EmployeeName         Mari L Anderson
JobTitle            Street Inspector
BasePay                     78136.98
OvertimePay                      0.0
OtherPay                     1011.45
Benefits                    29385.88
TotalPay                    79148.43
TotalPayBenefits           108534.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89741, dtype: object)
(89742, Id                             89743
EmployeeName          Armando  Lopez
JobTitle            Transit Operator
BasePay                     63424.58
OvertimePay                 11876.64
OtherPay                     2076.94
Benefits                    31151.11
TotalPay                    77378.16
TotalPayBenefits           108529.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89742, dtype: object)
(89743, Id                             89744
EmployeeName             Paul  Louie
JobTitle            Transit Operator
BasePay                     67023.69
OvertimePay                  6785.87
OtherPay                     1285.07
Benefits                    33428.13
TotalPay                    75094.63
TotalPayBenefits           108522.76
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89743, dtype: object)
(89744, Id                              89745
EmployeeName        Devonce K Sanders
JobTitle             Transit Operator
BasePay                      68496.16
OvertimePay                   2689.02
OtherPay                      3381.35
Benefits                     33954.14
TotalPay                     74566.53
TotalPayBenefits            108520.67
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89744, dtype: object)
(89745, Id                                       89746
EmployeeName                     Gui Lin  Chen
JobTitle            Hospital Eligiblity Worker
BasePay                               74993.43
OvertimePay                             2501.1
OtherPay                                1425.0
Benefits                              29599.84
TotalPay                              78919.53
TotalPayBenefits                     108519.37
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89745, dtype: object)
(89746, Id                                           89747
EmployeeName                            Guy Q Gong
JobTitle            IT Operations Support Admin II
BasePay                                   70564.07
OvertimePay                               10104.89
OtherPay                                    135.95
Benefits                                  27712.48
TotalPay                                  80804.91
TotalPayBenefits                         108517.39
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89746, dtype: object)
(89747, Id                                 89748
EmployeeName            June M Waechtler
JobTitle            Management Assistant
BasePay                         78303.97
OvertimePay                          0.0
OtherPay                          839.59
Benefits                        29371.34
TotalPay                        79143.56
TotalPayBenefits                108514.9
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89747, dtype: object)
(89748, Id                                 89749
EmployeeName        Eric J Hollingsworth
JobTitle                 General Laborer
BasePay                         62468.51
OvertimePay                     13954.48
OtherPay                         5630.72
Benefits                        26460.69
TotalPay                        82053.71
TotalPayBenefits                108514.4
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89748, dtype: object)
(89749, Id                             89750
EmployeeName           Shela  Hayter
JobTitle            Transit Operator
BasePay                     67070.62
OvertimePay                  8190.31
OtherPay                       720.3
Benefits                    32527.67
TotalPay                    75981.23
TotalPayBenefits            108508.9
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89749, dtype: object)
(89750, Id                          89751
EmployeeName           Jinan  Liu
JobTitle            Accountant II
BasePay                   79059.5
OvertimePay                   0.0
OtherPay                      0.0
Benefits                 29447.96
TotalPay                  79059.5
TotalPayBenefits        108507.46
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89750, dtype: object)
(89751, Id                             89752
EmployeeName        Jesse S Acedillo
JobTitle                   Asst Engr
BasePay                     78654.61
OvertimePay                      0.0
OtherPay                         0.0
Benefits                    29850.27
TotalPay                    78654.61
TotalPayBenefits           108504.88
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89751, dtype: object)
(89752, Id                                           89753
EmployeeName                        Robert T Bacon
JobTitle            Community Police Services Aide
BasePay                                   66123.01
OvertimePay                                6363.79
OtherPay                                   7732.19
Benefits                                  28285.77
TotalPay                                  80218.99
TotalPayBenefits                         108504.76
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89752, dtype: object)
(89753, Id                                      89754
EmployeeName              Mitchelene J Walker
JobTitle            Psychiatric Social Worker
BasePay                               78484.5
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30015.01
TotalPay                              78484.5
TotalPayBenefits                    108499.51
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89753, dtype: object)
(89754, Id                          89755
EmployeeName          Ken J Viola
JobTitle                   Roofer
BasePay                  78901.44
OvertimePay                   0.0
OtherPay                    250.0
Benefits                 29347.42
TotalPay                 79151.44
TotalPayBenefits        108498.86
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89754, dtype: object)
(89755, Id                                89756
EmployeeName        Brooke L Pleasanton
JobTitle                  Special Nurse
BasePay                        98400.53
OvertimePay                     2635.68
OtherPay                        6387.18
Benefits                        1074.27
TotalPay                      107423.39
TotalPayBenefits              108497.66
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89755, dtype: object)
(89756, Id                                   89757
EmployeeName               Thomas  Cumming
JobTitle            Electrical Line Helper
BasePay                           76264.52
OvertimePay                        3806.24
OtherPay                               0.0
Benefits                          28423.43
TotalPay                          80070.76
TotalPayBenefits                 108494.19
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89756, dtype: object)
(89757, Id                           89758
EmployeeName        Barry D Fraser
JobTitle                Manager IV
BasePay                   63307.85
OvertimePay                    0.0
OtherPay                   23863.5
Benefits                  21316.49
TotalPay                  87171.35
TotalPayBenefits         108487.84
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89757, dtype: object)
(89758, Id                            89759
EmployeeName        Stephen P Sofos
JobTitle               Cement Mason
BasePay                    74158.41
OvertimePay                 5978.28
OtherPay                       80.0
Benefits                   28263.61
TotalPay                   80216.69
TotalPayBenefits           108480.3
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89758, dtype: object)
(89759, Id                             89760
EmployeeName        Frank A McDowell
JobTitle            Transit Operator
BasePay                     66763.28
OvertimePay                  8433.96
OtherPay                      839.61
Benefits                    32443.29
TotalPay                    76036.85
TotalPayBenefits           108480.14
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89759, dtype: object)
(89760, Id                                         89761
EmployeeName                     Michael W Guess
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.03
OvertimePay                               123.11
OtherPay                                  648.01
Benefits                                29354.19
TotalPay                                79125.15
TotalPayBenefits                       108479.34
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89760, dtype: object)
(89761, Id                              89762
EmployeeName        Loverne L Mendoza
JobTitle                Payroll Clerk
BasePay                       70761.6
OvertimePay                   9232.93
OtherPay                       647.99
Benefits                     27833.82
TotalPay                     80642.52
TotalPayBenefits            108476.34
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89761, dtype: object)
(89762, Id                              89763
EmployeeName              Tracy A Pon
JobTitle            Personnel Analyst
BasePay                      79053.02
OvertimePay                       0.0
OtherPay                          0.0
Benefits                     29419.48
TotalPay                     79053.02
TotalPayBenefits             108472.5
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89762, dtype: object)
(89763, Id                                   89764
EmployeeName        Christopher J Prescott
JobTitle                    Police Officer
BasePay                           78591.01
OvertimePay                        1269.35
OtherPay                            886.29
Benefits                          27721.23
TotalPay                          80746.65
TotalPayBenefits                 108467.88
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89763, dtype: object)
(89764, Id                              89765
EmployeeName        Therese A Deignan
JobTitle               Police Officer
BasePay                      78591.02
OvertimePay                   1668.46
OtherPay                       483.19
Benefits                     27721.23
TotalPay                     80742.67
TotalPayBenefits             108463.9
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89764, dtype: object)
(89765, Id                                   89766
EmployeeName               Edna V Dimailig
JobTitle            Patient Care Assistant
BasePay                           68026.88
OvertimePay                        6082.41
OtherPay                           6117.06
Benefits                          28233.85
TotalPay                          80226.35
TotalPayBenefits                  108460.2
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89765, dtype: object)
(89766, Id                                          89767
EmployeeName                        James  Curran
JobTitle            Operating Engineer, Universal
BasePay                                   78752.1
OvertimePay                                326.43
OtherPay                                  1514.09
Benefits                                 27865.24
TotalPay                                 80592.62
TotalPayBenefits                        108457.86
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89766, dtype: object)
(89767, Id                                         89768
EmployeeName                        Emmett D Lew
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.02
OvertimePay                                  0.0
OtherPay                                   728.0
Benefits                                29369.98
TotalPay                                79082.02
TotalPayBenefits                        108452.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89767, dtype: object)
(89768, Id                                           89769
EmployeeName                         Angel C Lalic
JobTitle            Community Police Services Aide
BasePay                                   65878.28
OvertimePay                                9138.61
OtherPay                                   4990.17
Benefits                                  28438.91
TotalPay                                  80007.06
TotalPayBenefits                         108445.97
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89768, dtype: object)
(89769, Id                                      89770
EmployeeName                Patricia A Bailey
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                           4074.58
OtherPay                                648.0
Benefits                             28689.26
TotalPay                             79755.58
TotalPayBenefits                    108444.84
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89769, dtype: object)
(89770, Id                                    89771
EmployeeName               James  McCormick
JobTitle            Park Section Supervisor
BasePay                            78567.01
OvertimePay                          600.68
OtherPay                                0.0
Benefits                           29275.69
TotalPay                           79167.69
TotalPayBenefits                  108443.38
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89770, dtype: object)
(89771, Id                                     89772
EmployeeName               Kimberly L Kiefer
JobTitle            Volunteer/Outreach Coord
BasePay                              79058.8
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29382.16
TotalPay                             79058.8
TotalPayBenefits                   108440.96
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89771, dtype: object)
(89772, Id                             89773
EmployeeName            Erika  Erazo
JobTitle            Transit Operator
BasePay                     67551.77
OvertimePay                  5896.71
OtherPay                     1883.81
Benefits                     33108.4
TotalPay                    75332.29
TotalPayBenefits           108440.69
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89772, dtype: object)
(89773, Id                                89774
EmployeeName             Gordon H Poett
JobTitle            Survey Assistant II
BasePay                        78984.45
OvertimePay                      362.97
OtherPay                            0.0
Benefits                       29092.71
TotalPay                       79347.42
TotalPayBenefits              108440.13
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89773, dtype: object)
(89774, Id                                        89775
EmployeeName            Francesca M Garciagodos
JobTitle            Senior Management Assistant
BasePay                                 78404.4
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               30034.12
TotalPay                                78404.4
TotalPayBenefits                      108438.52
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89774, dtype: object)
(89775, Id                                    89776
EmployeeName        Ellsworth M Jennison Jr
JobTitle                          Carpenter
BasePay                            77143.26
OvertimePay                         1174.97
OtherPay                             1880.0
Benefits                           28228.75
TotalPay                           80198.23
TotalPayBenefits                  108426.98
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89775, dtype: object)
(89776, Id                                         89777
EmployeeName                   David A Gutierrez
JobTitle            Sr Payroll & Personnel Clerk
BasePay                                  73899.0
OvertimePay                              5412.81
OtherPay                                  647.98
Benefits                                28462.21
TotalPay                                79959.79
TotalPayBenefits                        108422.0
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89776, dtype: object)
(89777, Id                                 89778
EmployeeName            Manuel B Yap III
JobTitle            Water Meter Repairer
BasePay                         75307.92
OvertimePay                      2311.88
OtherPay                         1857.39
Benefits                        28943.79
TotalPay                        79477.19
TotalPayBenefits               108420.98
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89777, dtype: object)
(89778, Id                           89779
EmployeeName        Ernie B Prieto
JobTitle                   Painter
BasePay                   77948.01
OvertimePay                    0.0
OtherPay                    1096.5
Benefits                  29372.95
TotalPay                  79044.51
TotalPayBenefits         108417.46
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89778, dtype: object)
(89779, Id                                89780
EmployeeName           William  Huggins
JobTitle            Stationary Engineer
BasePay                        78473.53
OvertimePay                      684.84
OtherPay                            0.0
Benefits                       29256.89
TotalPay                       79158.37
TotalPayBenefits              108415.26
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89779, dtype: object)
(89780, Id                             89781
EmployeeName              Adam H Tau
JobTitle            Transit Operator
BasePay                     68070.78
OvertimePay                  2966.71
OtherPay                     3549.13
Benefits                    33818.65
TotalPay                    74586.62
TotalPayBenefits           108405.27
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89780, dtype: object)
(89781, Id                                   89782
EmployeeName              Gina M Di Grazia
JobTitle            Occupational Therapist
BasePay                           82094.69
OvertimePay                            0.0
OtherPay                             100.0
Benefits                          26204.99
TotalPay                          82194.69
TotalPayBenefits                 108399.68
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89781, dtype: object)
(89782, Id                                      89783
EmployeeName                 Jose O Bojorquez
JobTitle            Window Cleaner Supervisor
BasePay                              77937.93
OvertimePay                            497.37
OtherPay                               698.65
Benefits                             29265.04
TotalPay                             79133.95
TotalPayBenefits                    108398.99
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89782, dtype: object)
(89783, Id                                          89784
EmployeeName                  Alexander M Ingalls
JobTitle            Operating Engineer, Universal
BasePay                                   77145.2
OvertimePay                               1071.95
OtherPay                                   2041.8
Benefits                                 28136.68
TotalPay                                 80258.95
TotalPayBenefits                        108395.63
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89783, dtype: object)
(89784, Id                           89785
EmployeeName          Thomas P Lee
JobTitle            Police Officer
BasePay                   78591.02
OvertimePay                 962.36
OtherPay                   1118.55
Benefits                  27720.51
TotalPay                  80671.93
TotalPayBenefits         108392.44
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89784, dtype: object)
(89785, Id                                   89786
EmployeeName             Kevin J Valentine
JobTitle            Materials Testing Aide
BasePay                            67866.5
OvertimePay                         9664.6
OtherPay                           3706.45
Benefits                          27154.41
TotalPay                          81237.55
TotalPayBenefits                 108391.96
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89785, dtype: object)
(89786, Id                                89787
EmployeeName        Matelina  Alexander
JobTitle               Transit Operator
BasePay                        66819.11
OvertimePay                      274.39
OtherPay                        7117.03
Benefits                       34181.13
TotalPay                       74210.53
TotalPayBenefits              108391.66
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89786, dtype: object)
(89787, Id                                   89788
EmployeeName                Franklin T Lee
JobTitle            Track Maint Wrk Sprv 1
BasePay                           67239.98
OvertimePay                       14119.95
OtherPay                              10.8
Benefits                          27014.74
TotalPay                          81370.73
TotalPayBenefits                 108385.47
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89787, dtype: object)
(89788, Id                             89789
EmployeeName           Angela M Dean
JobTitle            Transit Operator
BasePay                     66279.18
OvertimePay                  5036.15
OtherPay                     3980.16
Benefits                    33084.93
TotalPay                    75295.49
TotalPayBenefits           108380.42
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89788, dtype: object)
(89789, Id                                    89790
EmployeeName        Pierangelo  Espinocilla
JobTitle             Water QualityTech I/II
BasePay                            78972.35
OvertimePay                             0.0
OtherPay                                0.0
Benefits                           29403.11
TotalPay                           78972.35
TotalPayBenefits                  108375.46
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89789, dtype: object)
(89790, Id                                   89791
EmployeeName                Adam T Daniels
JobTitle            Water QualityTech I/II
BasePay                            78972.3
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          29403.11
TotalPay                           78972.3
TotalPayBenefits                 108375.41
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89790, dtype: object)
(89791, Id                                89792
EmployeeName        Timothy L McDonough
JobTitle            Stationary Engineer
BasePay                         78470.6
OvertimePay                      653.12
OtherPay                            0.0
Benefits                       29247.27
TotalPay                       79123.72
TotalPayBenefits              108370.99
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89791, dtype: object)
(89792, Id                               89793
EmployeeName        Anthony  Ballester
JobTitle              Transit Operator
BasePay                       65081.99
OvertimePay                   10244.23
OtherPay                       2082.62
Benefits                      30960.59
TotalPay                      77408.84
TotalPayBenefits             108369.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89792, dtype: object)
(89793, Id                                 89794
EmployeeName          Elizabeth J Lilley
JobTitle            Management Assistant
BasePay                         78354.13
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        30015.02
TotalPay                        78354.13
TotalPayBenefits               108369.15
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89793, dtype: object)
(89794, Id                              89795
EmployeeName          Cecilia P Adiaz
JobTitle            Nursing Assistant
BasePay                       68391.0
OvertimePay                   11728.6
OtherPay                        898.0
Benefits                     27351.13
TotalPay                      81017.6
TotalPayBenefits            108368.73
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89794, dtype: object)
(89795, Id                                      89796
EmployeeName                    Emily  Hunter
JobTitle            Senior Eligibility Worker
BasePay                              75010.46
OvertimePay                           2909.27
OtherPay                               1580.0
Benefits                             28864.99
TotalPay                             79499.73
TotalPayBenefits                    108364.72
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89795, dtype: object)
(89796, Id                                 89797
EmployeeName          Elizabeth M Iriart
JobTitle            Management Assistant
BasePay                         78354.14
OvertimePay                          0.0
OtherPay                             0.0
Benefits                        30010.52
TotalPay                        78354.14
TotalPayBenefits               108364.66
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89796, dtype: object)
(89797, Id                                         89798
EmployeeName                  Sabrina L Lawrence
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.02
OvertimePay                                  0.0
OtherPay                                     0.0
Benefits                                30010.46
TotalPay                                78354.02
TotalPayBenefits                       108364.48
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89797, dtype: object)
(89798, Id                                     89799
EmployeeName        Madeleine B Chanbanchong
JobTitle                Management Assistant
BasePay                             78354.01
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            30010.46
TotalPay                            78354.01
TotalPayBenefits                   108364.47
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89798, dtype: object)
(89799, Id                             89800
EmployeeName          Ebele M Agboma
JobTitle            Registered Nurse
BasePay                     76682.24
OvertimePay                  1707.04
OtherPay                     3844.11
Benefits                    26128.14
TotalPay                    82233.39
TotalPayBenefits           108361.53
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89799, dtype: object)
(89800, Id                                 89801
EmployeeName          Gloria M Carniglia
JobTitle            Management Assistant
BasePay                         78354.17
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29358.86
TotalPay                        79002.17
TotalPayBenefits               108361.03
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89800, dtype: object)
(89801, Id                             89802
EmployeeName               Hong B Wu
JobTitle            Transit Operator
BasePay                     68808.81
OvertimePay                  2164.82
OtherPay                     2723.01
Benefits                    34663.54
TotalPay                    73696.64
TotalPayBenefits           108360.18
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89801, dtype: object)
(89802, Id                                      89803
EmployeeName              Umecke P Cannariato
JobTitle            Psychiatric Social Worker
BasePay                              78354.02
OvertimePay                               0.0
OtherPay                                  0.0
Benefits                             30003.15
TotalPay                             78354.02
TotalPayBenefits                    108357.17
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89802, dtype: object)
(89803, Id                                 89804
EmployeeName               Howard  Lazar
JobTitle            Management Assistant
BasePay                         78354.13
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29354.28
TotalPay                        79002.13
TotalPayBenefits               108356.41
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89803, dtype: object)
(89804, Id                                       89805
EmployeeName                     Roger B Levin
JobTitle            Citizens Complaint Officer
BasePay                               78354.12
OvertimePay                                0.0
OtherPay                                648.01
Benefits                              29354.26
TotalPay                              79002.13
TotalPayBenefits                     108356.39
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89804, dtype: object)
(89805, Id                                       89806
EmployeeName                         Rod  Wong
JobTitle            Citizens Complaint Officer
BasePay                               78354.08
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                              29354.22
TotalPay                              79002.08
TotalPayBenefits                      108356.3
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89805, dtype: object)
(89806, Id                                 89807
EmployeeName            Eileen  Marshall
JobTitle            Management Assistant
BasePay                         78354.07
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29354.22
TotalPay                        79002.07
TotalPayBenefits               108356.29
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89806, dtype: object)
(89807, Id                                 89808
EmployeeName        Carol Marie  Daniels
JobTitle            Management Assistant
BasePay                         78354.06
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29354.22
TotalPay                        79002.06
TotalPayBenefits               108356.28
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89807, dtype: object)
(89808, Id                                       89809
EmployeeName                  Elizabeth  Chang
JobTitle            Citizens Complaint Officer
BasePay                               78354.05
OvertimePay                                0.0
OtherPay                                 648.0
Benefits                               29354.2
TotalPay                              79002.05
TotalPayBenefits                     108356.25
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89808, dtype: object)
(89809, Id                                 89810
EmployeeName                 Betty C Lew
JobTitle            Management Assistant
BasePay                         78354.04
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29354.19
TotalPay                        79002.04
TotalPayBenefits               108356.23
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89809, dtype: object)
(89810, Id                                         89811
EmployeeName                    Mark S Cervantes
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.04
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29354.18
TotalPay                                79002.04
TotalPayBenefits                       108356.22
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89810, dtype: object)
(89811, Id                                 89812
EmployeeName             Nancy Q Serrano
JobTitle            Management Assistant
BasePay                         78354.03
OvertimePay                          0.0
OtherPay                           648.0
Benefits                        29354.18
TotalPay                        79002.03
TotalPayBenefits               108356.21
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89811, dtype: object)
(89812, Id                                         89813
EmployeeName                           John T Ho
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.03
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29354.18
TotalPay                                79002.03
TotalPayBenefits                       108356.21
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89812, dtype: object)
(89813, Id                                         89814
EmployeeName                      Diane  Terrell
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.02
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29354.17
TotalPay                                79002.02
TotalPayBenefits                       108356.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89813, dtype: object)
(89814, Id                                         89815
EmployeeName                         Mary Y Fong
JobTitle            Assistant Retirement Analyst
BasePay                                 78354.02
OvertimePay                                  0.0
OtherPay                                   648.0
Benefits                                29354.17
TotalPay                                79002.02
TotalPayBenefits                       108356.19
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89814, dtype: object)
(89815, Id                                   89816
EmployeeName             Adrienne L Ricker
JobTitle            Administrative Analyst
BasePay                           78332.24
OvertimePay                            0.0
OtherPay                               0.0
Benefits                          30023.34
TotalPay                          78332.24
TotalPayBenefits                 108355.58
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89815, dtype: object)
(89816, Id                                   89817
EmployeeName               Nerissa T Marte
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                        5300.34
OtherPay                           6253.21
Benefits                          28400.61
TotalPay                          79944.55
TotalPayBenefits                 108345.16
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89816, dtype: object)
(89817, Id                                      89818
EmployeeName                  Gloria L Aragon
JobTitle            Senior Eligibility Worker
BasePay                              75033.07
OvertimePay                           2358.89
OtherPay                               1994.4
Benefits                             28954.88
TotalPay                             79386.36
TotalPayBenefits                    108341.24
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89817, dtype: object)
(89818, Id                                      89819
EmployeeName                Scandy  Silverman
JobTitle            Senior Eligibility Worker
BasePay                              75033.01
OvertimePay                           1537.14
OtherPay                              2677.23
Benefits                             29090.24
TotalPay                             79247.38
TotalPayBenefits                    108337.62
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89818, dtype: object)
(89819, Id                               89820
EmployeeName        Domingo  Rodriguez
JobTitle              Transit Operator
BasePay                       62488.23
OvertimePay                   12481.26
OtherPay                       1977.69
Benefits                      31390.31
TotalPay                      76947.18
TotalPayBenefits             108337.49
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89819, dtype: object)
(89820, Id                                   89821
EmployeeName            Elizabeth V Garcia
JobTitle            Patient Care Assistant
BasePay                            68391.0
OvertimePay                       11701.37
OtherPay                             898.0
Benefits                          27343.18
TotalPay                          80990.37
TotalPayBenefits                 108333.55
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89820, dtype: object)
(89821, Id                                89822
EmployeeName          Lusia S Tuimavave
JobTitle            Senior Clerk Typist
BasePay                        63107.14
OvertimePay                    18223.39
OtherPay                          688.0
Benefits                       26309.41
TotalPay                       82018.53
TotalPayBenefits              108327.94
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89821, dtype: object)
(89822, Id                                      89823
EmployeeName                      Hedda M Chy
JobTitle            Licensed Vocational Nurse
BasePay                              71368.05
OvertimePay                            8505.8
OtherPay                               878.33
Benefits                             27572.91
TotalPay                             80752.18
TotalPayBenefits                    108325.09
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89822, dtype: object)
(89823, Id                             89824
EmployeeName           James N Medel
JobTitle            Transit Operator
BasePay                     66746.49
OvertimePay                  8769.04
OtherPay                      473.04
Benefits                    32333.74
TotalPay                    75988.57
TotalPayBenefits           108322.31
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89823, dtype: object)
(89824, Id                              89825
EmployeeName        Juan  Ruiz Dealda
JobTitle                      Painter
BasePay                       77948.0
OvertimePay                    215.55
OtherPay                        830.0
Benefits                     29326.88
TotalPay                     78993.55
TotalPayBenefits            108320.43
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89824, dtype: object)
(89825, Id                                89826
EmployeeName            Dennis  Jackson
JobTitle            Automotive Mechanic
BasePay                        66296.37
OvertimePay                     6164.48
OtherPay                        9361.89
Benefits                       26496.49
TotalPay                       81822.74
TotalPayBenefits              108319.23
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89825, dtype: object)
(89826, Id                                        89827
EmployeeName                     Denise M Smith
JobTitle            Station Agent, Muni Railway
BasePay                                 66972.0
OvertimePay                             2869.04
OtherPay                                5281.39
Benefits                               33196.07
TotalPay                               75122.43
TotalPayBenefits                       108318.5
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89826, dtype: object)
(89827, Id                                           89828
EmployeeName                         Mark  Calgaro
JobTitle            Senior Parking Control Officer
BasePay                                   70701.51
OvertimePay                                8055.02
OtherPay                                   1555.83
Benefits                                  28005.67
TotalPay                                  80312.36
TotalPayBenefits                         108318.03
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89827, dtype: object)
(89828, Id                                       89829
EmployeeName                    Kenya M Briggs
JobTitle            Public Information Officer
BasePay                               78945.07
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              29369.91
TotalPay                              78945.07
TotalPayBenefits                     108314.98
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89828, dtype: object)
(89829, Id                             89830
EmployeeName             Ann  Santos
JobTitle            Epidemiologist 1
BasePay                     78945.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     29369.9
TotalPay                    78945.05
TotalPayBenefits           108314.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89829, dtype: object)
(89830, Id                             89831
EmployeeName        Michelle  Malick
JobTitle                Statistician
BasePay                     78945.05
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     29369.9
TotalPay                    78945.05
TotalPayBenefits           108314.95
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89830, dtype: object)
(89831, Id                                       89832
EmployeeName                     Dadisi  Najib
JobTitle            Public Information Officer
BasePay                               78945.04
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               29369.9
TotalPay                              78945.04
TotalPayBenefits                     108314.94
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89831, dtype: object)
(89832, Id                                       89833
EmployeeName                   Cedric V Lavina
JobTitle            Public Information Officer
BasePay                               78945.03
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                               29369.9
TotalPay                              78945.03
TotalPayBenefits                     108314.93
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89832, dtype: object)
(89833, Id                             89834
EmployeeName           Haroon  Ahmad
JobTitle            Epidemiologist 1
BasePay                     78945.03
OvertimePay                      0.0
OtherPay                         0.0
Benefits                     29369.9
TotalPay                    78945.03
TotalPayBenefits           108314.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89833, dtype: object)
(89834, Id                                89835
EmployeeName        Anna Lisa M Austria
JobTitle               Registered Nurse
BasePay                        76952.53
OvertimePay                     3427.52
OtherPay                        2441.86
Benefits                       25492.21
TotalPay                       82821.91
TotalPayBenefits              108314.12
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89834, dtype: object)
(89835, Id                                 89836
EmployeeName        Danielle R Parmenter
JobTitle              Transit Supervisor
BasePay                         76582.19
OvertimePay                      1035.15
OtherPay                         3149.96
Benefits                        27544.26
TotalPay                         80767.3
TotalPayBenefits               108311.56
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89835, dtype: object)
(89836, Id                               89837
EmployeeName           Carolyn J Adams
JobTitle            Nursery Specialist
BasePay                       74813.23
OvertimePay                     4981.2
OtherPay                           0.0
Benefits                      28514.98
TotalPay                      79794.43
TotalPayBenefits             108309.41
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89836, dtype: object)
(89837, Id                             89838
EmployeeName             Ellis  Cato
JobTitle            Transit Operator
BasePay                     57369.49
OvertimePay                 18822.44
OtherPay                     3529.01
Benefits                    28587.56
TotalPay                    79720.94
TotalPayBenefits            108308.5
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89837, dtype: object)
(89838, Id                             89839
EmployeeName              Jimmy  Won
JobTitle            Transit Operator
BasePay                     68200.04
OvertimePay                  4989.79
OtherPay                     1158.68
Benefits                     33957.7
TotalPay                    74348.51
TotalPayBenefits           108306.21
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89838, dtype: object)
(89839, Id                                     89840
EmployeeName              Deborah A Campbell
JobTitle            Volunteer/Outreach Coord
BasePay                             78942.04
OvertimePay                              0.0
OtherPay                                 0.0
Benefits                            29360.21
TotalPay                            78942.04
TotalPayBenefits                   108302.25
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89839, dtype: object)
(89840, Id                                           89841
EmployeeName                      Elvira C Alarcon
JobTitle            Central Processing & Dist Tech
BasePay                                   71204.31
OvertimePay                                5451.52
OtherPay                                   3299.53
Benefits                                   28346.1
TotalPay                                  79955.36
TotalPayBenefits                         108301.46
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89840, dtype: object)
(89841, Id                                  89842
EmployeeName               Corazon C Ella
JobTitle            Executive Secretary 2
BasePay                          79028.41
OvertimePay                           0.0
OtherPay                              0.0
Benefits                         29272.67
TotalPay                         79028.41
TotalPayBenefits                108301.08
Year                                 2013
Notes                                 NaN
Agency                      San Francisco
Status                                NaN
Name: 89841, dtype: object)
(89842, Id                            89843
EmployeeName          David R Gibbs
JobTitle            General Laborer
BasePay                     62468.5
OvertimePay                17416.38
OtherPay                    2004.77
Benefits                   26411.08
TotalPay                   81889.65
TotalPayBenefits          108300.73
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89842, dtype: object)
(89843, Id                                   89844
EmployeeName                    Diane  Tom
JobTitle            Occupational Therapist
BasePay                            82094.7
OvertimePay                            0.0
OtherPay                               0.0
Benefits                           26205.0
TotalPay                           82094.7
TotalPayBenefits                  108299.7
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89843, dtype: object)
(89844, Id                                           89845
EmployeeName                      Michelle M Miner
JobTitle            Events & Facilities Specialist
BasePay                                   76648.46
OvertimePay                                 397.11
OtherPay                                   1316.81
Benefits                                  29936.19
TotalPay                                  78362.38
TotalPayBenefits                         108298.57
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89844, dtype: object)
(89845, Id                                 89846
EmployeeName             Oscar D Lechado
JobTitle            Senior Social Worker
BasePay                         77274.07
OvertimePay                          0.0
OtherPay                          1682.4
Benefits                        29340.14
TotalPay                        78956.47
TotalPayBenefits               108296.61
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89845, dtype: object)
(89846, Id                           89847
EmployeeName        Matthew J Ryan
JobTitle            Police Officer
BasePay                   78591.03
OvertimePay                 758.15
OtherPay                   1225.32
Benefits                  27719.55
TotalPay                   80574.5
TotalPayBenefits         108294.05
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89846, dtype: object)
(89847, Id                          89848
EmployeeName         Liam J Kenny
JobTitle                  Painter
BasePay                  77948.06
OvertimePay                592.76
OtherPay                    500.0
Benefits                 29252.79
TotalPay                 79040.82
TotalPayBenefits        108293.61
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89847, dtype: object)
(89848, Id                                           89849
EmployeeName                           Henry T Toy
JobTitle            Community Police Services Aide
BasePay                                    66123.0
OvertimePay                                6195.86
OtherPay                                    7702.2
Benefits                                  28272.28
TotalPay                                  80021.06
TotalPayBenefits                         108293.34
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89848, dtype: object)
(89849, Id                             89850
EmployeeName            Jacky K Chau
JobTitle            Transit Operator
BasePay                     66420.35
OvertimePay                  8581.25
OtherPay                      385.78
Benefits                    32892.03
TotalPay                    75387.38
TotalPayBenefits           108279.41
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89849, dtype: object)
(89850, Id                          89851
EmployeeName          Linda K Kyi
JobTitle            Payroll Clerk
BasePay                   67392.0
OvertimePay               13852.8
OtherPay                      0.0
Benefits                 27031.76
TotalPay                  81244.8
TotalPayBenefits        108276.56
Year                         2013
Notes                         NaN
Agency              San Francisco
Status                        NaN
Name: 89850, dtype: object)
(89851, Id                             89852
EmployeeName              Chang S Hu
JobTitle            Transit Operator
BasePay                     66332.01
OvertimePay                  7938.19
OtherPay                      1577.7
Benefits                     32423.4
TotalPay                     75847.9
TotalPayBenefits            108271.3
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89851, dtype: object)
(89852, Id                                        89853
EmployeeName                  Kristin D Opbroek
JobTitle            Landscape Architect Assoc 1
BasePay                                83588.63
OvertimePay                                 0.0
OtherPay                                    0.0
Benefits                               24674.96
TotalPay                               83588.63
TotalPayBenefits                      108263.59
Year                                       2013
Notes                                       NaN
Agency                            San Francisco
Status                                      NaN
Name: 89852, dtype: object)
(89853, Id                                 89854
EmployeeName               Anna  Sorkina
JobTitle            Senior Social Worker
BasePay                         77274.09
OvertimePay                          0.0
OtherPay                          1648.0
Benefits                        29338.75
TotalPay                        78922.09
TotalPayBenefits               108260.84
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89853, dtype: object)
(89854, Id                            89855
EmployeeName        Andrea  Pittman
JobTitle              Payroll Clerk
BasePay                     67360.8
OvertimePay                13109.51
OtherPay                      647.7
Benefits                   27142.11
TotalPay                   81118.01
TotalPayBenefits          108260.12
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89854, dtype: object)
(89855, Id                                       89856
EmployeeName                  Aissia R Ashoori
JobTitle            Community Development Spec
BasePay                                78246.5
OvertimePay                                0.0
OtherPay                                   0.0
Benefits                              30010.54
TotalPay                               78246.5
TotalPayBenefits                     108257.04
Year                                      2013
Notes                                      NaN
Agency                           San Francisco
Status                                     NaN
Name: 89855, dtype: object)
(89856, Id                             89857
EmployeeName         Nii Saka  Brown
JobTitle            Transit Operator
BasePay                     64909.14
OvertimePay                 10651.85
OtherPay                     1086.58
Benefits                    31598.49
TotalPay                    76647.57
TotalPayBenefits           108246.06
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89856, dtype: object)
(89857, Id                               89858
EmployeeName        Alexander  Shukhat
JobTitle                       Painter
BasePay                       77948.04
OvertimePay                        0.0
OtherPay                         945.0
Benefits                      29340.81
TotalPay                      78893.04
TotalPayBenefits             108233.85
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89857, dtype: object)
(89858, Id                                    89859
EmployeeName                  Diane H Trinh
JobTitle            Principal Account Clerk
BasePay                            73899.05
OvertimePay                          5214.4
OtherPay                              648.0
Benefits                           28462.26
TotalPay                           79761.45
TotalPayBenefits                  108223.71
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89858, dtype: object)
(89859, Id                                         89860
EmployeeName                       Ligia  Afu-Li
JobTitle            Health Program Coordinator 1
BasePay                                 77948.05
OvertimePay                                  0.0
OtherPay                                   920.0
Benefits                                29352.69
TotalPay                                78868.05
TotalPayBenefits                       108220.74
Year                                        2013
Notes                                        NaN
Agency                             San Francisco
Status                                       NaN
Name: 89859, dtype: object)
(89860, Id                                 89861
EmployeeName               Thomas S Chiu
JobTitle            Senior Social Worker
BasePay                         77274.07
OvertimePay                          0.0
OtherPay                          1620.0
Benefits                        29325.59
TotalPay                        78894.07
TotalPayBenefits               108219.66
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89860, dtype: object)
(89861, Id                                 89862
EmployeeName               Maggie M Thai
JobTitle            Senior Social Worker
BasePay                         77274.15
OvertimePay                          0.0
OtherPay                          1620.0
Benefits                         29324.5
TotalPay                        78894.15
TotalPayBenefits               108218.65
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89861, dtype: object)
(89862, Id                                           89863
EmployeeName                       Patricia A Tell
JobTitle            Central Processing & Dist Tech
BasePay                                   71469.01
OvertimePay                                7918.91
OtherPay                                     848.0
Benefits                                  27975.49
TotalPay                                  80235.92
TotalPayBenefits                         108211.41
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89862, dtype: object)
(89863, Id                                           89864
EmployeeName                       David A Phillip
JobTitle            Community Police Services Aide
BasePay                                   66123.01
OvertimePay                                6658.43
OtherPay                                   7248.47
Benefits                                  28180.77
TotalPay                                  80029.91
TotalPayBenefits                         108210.68
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89863, dtype: object)
(89864, Id                                 89865
EmployeeName                Jackie M Wan
JobTitle            Senior Social Worker
BasePay                         77274.09
OvertimePay                          0.0
OtherPay                          1600.0
Benefits                        29330.87
TotalPay                        78874.09
TotalPayBenefits               108204.96
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89864, dtype: object)
(89865, Id                           89866
EmployeeName        Daniel E Grogg
JobTitle                  Gardener
BasePay                    64641.0
OvertimePay                15432.5
OtherPay                   1368.94
Benefits                  26755.37
TotalPay                  81442.44
TotalPayBenefits         108197.81
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89865, dtype: object)
(89866, Id                             89867
EmployeeName           Dickson T Mak
JobTitle            Transit Operator
BasePay                     68912.13
OvertimePay                  3876.08
OtherPay                     1694.05
Benefits                    33714.98
TotalPay                    74482.26
TotalPayBenefits           108197.24
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89866, dtype: object)
(89867, Id                                89868
EmployeeName        Sandra R Schlechter
JobTitle             Speech Pathologist
BasePay                        82450.62
OvertimePay                         0.0
OtherPay                            0.0
Benefits                        25744.7
TotalPay                       82450.62
TotalPayBenefits              108195.32
Year                               2013
Notes                               NaN
Agency                    San Francisco
Status                              NaN
Name: 89867, dtype: object)
(89868, Id                               89869
EmployeeName          Thomas  Espinoza
JobTitle            Transit Supervisor
BasePay                       72411.54
OvertimePay                    5680.24
OtherPay                       4327.21
Benefits                      25774.15
TotalPay                      82418.99
TotalPayBenefits             108193.14
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89868, dtype: object)
(89869, Id                             89870
EmployeeName             James  Yang
JobTitle            Transit Operator
BasePay                     68228.43
OvertimePay                  2719.94
OtherPay                     2835.62
Benefits                    34408.92
TotalPay                    73783.99
TotalPayBenefits           108192.91
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89869, dtype: object)
(89870, Id                                           89871
EmployeeName                       Scott J Kolyvas
JobTitle            Electrical Transit System Mech
BasePay                                   78521.45
OvertimePay                                 457.05
OtherPay                                     550.0
Benefits                                  28662.52
TotalPay                                   79528.5
TotalPayBenefits                         108191.02
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89870, dtype: object)
(89871, Id                           89872
EmployeeName            Paul C Kao
JobTitle            Accountant III
BasePay                   78177.06
OvertimePay                    0.0
OtherPay                       0.0
Benefits                  30009.86
TotalPay                  78177.06
TotalPayBenefits         108186.92
Year                          2013
Notes                          NaN
Agency               San Francisco
Status                         NaN
Name: 89871, dtype: object)
(89872, Id                                          89873
EmployeeName                  Precelinda S Manalo
JobTitle            Library Technical Assistant 2
BasePay                                  77153.73
OvertimePay                                   0.0
OtherPay                                  1661.21
Benefits                                 29367.42
TotalPay                                 78814.94
TotalPayBenefits                        108182.36
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89872, dtype: object)
(89873, Id                                            89874
EmployeeName        Sienna Lai Ying  Chan Miyashita
JobTitle                       Senior Social Worker
BasePay                                    77274.17
OvertimePay                                     0.0
OtherPay                                     1580.0
Benefits                                   29327.23
TotalPay                                   78854.17
TotalPayBenefits                           108181.4
Year                                           2013
Notes                                           NaN
Agency                                San Francisco
Status                                          NaN
Name: 89873, dtype: object)
(89874, Id                             89875
EmployeeName              Dan  Huynh
JobTitle            Transit Operator
BasePay                     68331.72
OvertimePay                  4160.93
OtherPay                     2150.84
Benefits                    33536.48
TotalPay                    74643.49
TotalPayBenefits           108179.97
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89874, dtype: object)
(89875, Id                              89876
EmployeeName             Dave  Morgan
JobTitle            Parts Storekeeper
BasePay                       64827.0
OvertimePay                  10630.84
OtherPay                      5181.56
Benefits                     27539.03
TotalPay                      80639.4
TotalPayBenefits            108178.43
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89875, dtype: object)
(89876, Id                                 89877
EmployeeName                Sheila  Finn
JobTitle            Senior Social Worker
BasePay                         77274.18
OvertimePay                          0.0
OtherPay                         1586.14
Benefits                        29316.93
TotalPay                        78860.32
TotalPayBenefits               108177.25
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89876, dtype: object)
(89877, Id                                    89878
EmployeeName               April J McDowell
JobTitle            Parking Control Officer
BasePay                            59203.51
OvertimePay                        22194.49
OtherPay                            1152.24
Benefits                           25624.28
TotalPay                           82550.24
TotalPayBenefits                  108174.52
Year                                   2013
Notes                                   NaN
Agency                        San Francisco
Status                                  NaN
Name: 89877, dtype: object)
(89878, Id                                           89879
EmployeeName                        Bradley M Wong
JobTitle            Community Police Services Aide
BasePay                                   63900.44
OvertimePay                                4904.88
OtherPay                                  10296.14
Benefits                                  29071.85
TotalPay                                  79101.46
TotalPayBenefits                         108173.31
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89878, dtype: object)
(89879, Id                                      89880
EmployeeName                   Selena S Chang
JobTitle            Senior Eligibility Worker
BasePay                               75033.0
OvertimePay                            2735.6
OtherPay                               1540.0
Benefits                             28864.63
TotalPay                              79308.6
TotalPayBenefits                    108173.23
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89879, dtype: object)
(89880, Id                                 89881
EmployeeName            Liana  Petrosyan
JobTitle            Senior Social Worker
BasePay                         77274.14
OvertimePay                          0.0
OtherPay                          1580.0
Benefits                        29317.07
TotalPay                        78854.14
TotalPayBenefits               108171.21
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89880, dtype: object)
(89881, Id                               89882
EmployeeName             Lisa G Rivera
JobTitle            Physical Therapist
BasePay                       81993.84
OvertimePay                        0.0
OtherPay                           0.0
Benefits                      26174.59
TotalPay                      81993.84
TotalPayBenefits             108168.43
Year                              2013
Notes                              NaN
Agency                   San Francisco
Status                             NaN
Name: 89881, dtype: object)
(89882, Id                                           89883
EmployeeName                        David  Oropeza
JobTitle            Electrical Transit System Mech
BasePay                                   61601.48
OvertimePay                               22819.08
OtherPay                                    1068.0
Benefits                                  22675.08
TotalPay                                  85488.56
TotalPayBenefits                         108163.64
Year                                          2013
Notes                                          NaN
Agency                               San Francisco
Status                                         NaN
Name: 89882, dtype: object)
(89883, Id                                 89884
EmployeeName              Catherine H Ma
JobTitle            Senior Social Worker
BasePay                         77274.05
OvertimePay                          0.0
OtherPay                          1565.0
Benefits                        29318.49
TotalPay                        78839.05
TotalPayBenefits               108157.54
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89883, dtype: object)
(89884, Id                                 89885
EmployeeName                 Hang K Chan
JobTitle            Senior Social Worker
BasePay                         77274.05
OvertimePay                          0.0
OtherPay                          1560.0
Benefits                        29317.89
TotalPay                        78834.05
TotalPayBenefits               108151.94
Year                                2013
Notes                                NaN
Agency                     San Francisco
Status                               NaN
Name: 89884, dtype: object)
(89885, Id                             89886
EmployeeName           Zhaoting  Cai
JobTitle            Transit Operator
BasePay                     66892.61
OvertimePay                  7768.95
OtherPay                      367.87
Benefits                     33116.5
TotalPay                    75029.43
TotalPayBenefits           108145.93
Year                            2013
Notes                            NaN
Agency                 San Francisco
Status                           NaN
Name: 89885, dtype: object)
(89886, Id                                   89887
EmployeeName                Larry W Parish
JobTitle            Transit Fare Inspector
BasePay                            66744.0
OvertimePay                        9307.06
OtherPay                             149.6
Benefits                          31942.69
TotalPay                          76200.66
TotalPayBenefits                 108143.35
Year                                  2013
Notes                                  NaN
Agency                       San Francisco
Status                                 NaN
Name: 89886, dtype: object)
(89887, Id                                     89888
EmployeeName               Jorge  Villanueva
JobTitle            Track Maintenance Worker
BasePay                             63681.21
OvertimePay                          6916.14
OtherPay                             9413.32
Benefits                             28132.4
TotalPay                            80010.67
TotalPayBenefits                   108143.07
Year                                    2013
Notes                                    NaN
Agency                         San Francisco
Status                                   NaN
Name: 89887, dtype: object)
(89888, Id                              89889
EmployeeName        Makoto M Tomonaga
JobTitle             Transit Operator
BasePay                      61877.42
OvertimePay                   7231.06
OtherPay                      7296.39
Benefits                      31736.0
TotalPay                     76404.87
TotalPayBenefits            108140.87
Year                             2013
Notes                             NaN
Agency                  San Francisco
Status                            NaN
Name: 89888, dtype: object)
(89889, Id                                          89890
EmployeeName                     Jeannette  Ortiz
JobTitle            Library Technical Assistant 2
BasePay                                  76869.04
OvertimePay                               1393.06
OtherPay                                   792.07
Benefits                                 29083.77
TotalPay                                 79054.17
TotalPayBenefits                        108137.94
Year                                         2013
Notes                                         NaN
Agency                              San Francisco
Status                                        NaN
Name: 89889, dtype: object)
(89890, Id                            89891
EmployeeName        Arturo R Razote
JobTitle              Payroll Clerk
BasePay                     67392.0
OvertimePay                 13712.4
OtherPay                        0.0
Benefits                   27031.76
TotalPay                    81104.4
TotalPayBenefits          108136.16
Year                           2013
Notes                           NaN
Agency                San Francisco
Status                          NaN
Name: 89890, dtype: object)
(89891, Id                                      89892
EmployeeName        Anna Luisa T Martin-Roque
JobTitle                 Senior Social Worker
BasePay                              77274.12
OvertimePay                               0.0
OtherPay                               1540.0
Benefits                             29318.08
TotalPay                             78814.12
TotalPayBenefits                     108132.2
Year                                     2013
Notes                                     NaN
Agency                          San Francisco
Status                                    NaN
Name: 89891, dtype: object)
In [4]:
#1.  Display Top 10 Rows of The Dataset
df.head(10)
Out[4]:
Id EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year Notes Agency Status
0 1 NATHANIEL FORD GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY 167411.18 0.00 400184.25 NaN 567595.43 567595.43 2011 NaN San Francisco NaN
1 2 GARY JIMENEZ CAPTAIN III (POLICE DEPARTMENT) 155966.02 245131.88 137811.38 NaN 538909.28 538909.28 2011 NaN San Francisco NaN
2 3 ALBERT PARDINI CAPTAIN III (POLICE DEPARTMENT) 212739.13 106088.18 16452.60 NaN 335279.91 335279.91 2011 NaN San Francisco NaN
3 4 CHRISTOPHER CHONG WIRE ROPE CABLE MAINTENANCE MECHANIC 77916.00 56120.71 198306.90 NaN 332343.61 332343.61 2011 NaN San Francisco NaN
4 5 PATRICK GARDNER DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT) 134401.60 9737.00 182234.59 NaN 326373.19 326373.19 2011 NaN San Francisco NaN
5 6 DAVID SULLIVAN ASSISTANT DEPUTY CHIEF II 118602.00 8601.00 189082.74 NaN 316285.74 316285.74 2011 NaN San Francisco NaN
6 7 ALSON LEE BATTALION CHIEF, (FIRE DEPARTMENT) 92492.01 89062.90 134426.14 NaN 315981.05 315981.05 2011 NaN San Francisco NaN
7 8 DAVID KUSHNER DEPUTY DIRECTOR OF INVESTMENTS 256576.96 0.00 51322.50 NaN 307899.46 307899.46 2011 NaN San Francisco NaN
8 9 MICHAEL MORRIS BATTALION CHIEF, (FIRE DEPARTMENT) 176932.64 86362.68 40132.23 NaN 303427.55 303427.55 2011 NaN San Francisco NaN
9 10 JOANNE HAYES-WHITE CHIEF OF DEPARTMENT, (FIRE DEPARTMENT) 285262.00 0.00 17115.73 NaN 302377.73 302377.73 2011 NaN San Francisco NaN
In [5]:
#2. Check Last 10 Rows of The Dataset
df.tail(10)
Out[5]:
Id EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year Notes Agency Status
148644 148645 Randy D Winn Stationary Eng, Sewage Plant 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148645 148646 Carolyn A Wilson Human Services Technician 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148646 148647 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148647 148648 Joann Anderson Communications Dispatcher 2 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148648 148649 Leon Walker Custodian 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148649 148650 Roy I Tillery Custodian 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148650 148651 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148651 148652 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148652 148653 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148653 148654 Joe Lopez Counselor, Log Cabin Ranch 0.0 0.0 -618.13 0.0 -618.13 -618.13 2014 NaN San Francisco NaN
In [6]:
df[0:10]
Out[6]:
Id EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year Notes Agency Status
0 1 NATHANIEL FORD GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY 167411.18 0.00 400184.25 NaN 567595.43 567595.43 2011 NaN San Francisco NaN
1 2 GARY JIMENEZ CAPTAIN III (POLICE DEPARTMENT) 155966.02 245131.88 137811.38 NaN 538909.28 538909.28 2011 NaN San Francisco NaN
2 3 ALBERT PARDINI CAPTAIN III (POLICE DEPARTMENT) 212739.13 106088.18 16452.60 NaN 335279.91 335279.91 2011 NaN San Francisco NaN
3 4 CHRISTOPHER CHONG WIRE ROPE CABLE MAINTENANCE MECHANIC 77916.00 56120.71 198306.90 NaN 332343.61 332343.61 2011 NaN San Francisco NaN
4 5 PATRICK GARDNER DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT) 134401.60 9737.00 182234.59 NaN 326373.19 326373.19 2011 NaN San Francisco NaN
5 6 DAVID SULLIVAN ASSISTANT DEPUTY CHIEF II 118602.00 8601.00 189082.74 NaN 316285.74 316285.74 2011 NaN San Francisco NaN
6 7 ALSON LEE BATTALION CHIEF, (FIRE DEPARTMENT) 92492.01 89062.90 134426.14 NaN 315981.05 315981.05 2011 NaN San Francisco NaN
7 8 DAVID KUSHNER DEPUTY DIRECTOR OF INVESTMENTS 256576.96 0.00 51322.50 NaN 307899.46 307899.46 2011 NaN San Francisco NaN
8 9 MICHAEL MORRIS BATTALION CHIEF, (FIRE DEPARTMENT) 176932.64 86362.68 40132.23 NaN 303427.55 303427.55 2011 NaN San Francisco NaN
9 10 JOANNE HAYES-WHITE CHIEF OF DEPARTMENT, (FIRE DEPARTMENT) 285262.00 0.00 17115.73 NaN 302377.73 302377.73 2011 NaN San Francisco NaN
In [7]:
len(df)
Out[7]:
148654
In [8]:
df[len(df)-10:]
Out[8]:
Id EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year Notes Agency Status
148644 148645 Randy D Winn Stationary Eng, Sewage Plant 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148645 148646 Carolyn A Wilson Human Services Technician 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148646 148647 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148647 148648 Joann Anderson Communications Dispatcher 2 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148648 148649 Leon Walker Custodian 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148649 148650 Roy I Tillery Custodian 0.0 0.0 0.00 0.0 0.00 0.00 2014 NaN San Francisco NaN
148650 148651 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148651 148652 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148652 148653 Not provided Not provided NaN NaN NaN NaN 0.00 0.00 2014 NaN San Francisco NaN
148653 148654 Joe Lopez Counselor, Log Cabin Ranch 0.0 0.0 -618.13 0.0 -618.13 -618.13 2014 NaN San Francisco NaN
In [9]:
len(df[len(df)-10:])
Out[9]:
10
In [12]:
for ename in df[len(df)-10:]["EmployeeName"]:
    print(ename)
Randy D Winn
Carolyn A Wilson
Not provided
Joann Anderson
Leon Walker
Roy I Tillery
Not provided
Not provided
Not provided
Joe Lopez
In [13]:
#3. Find Shape of Our Dataset (Number of Rows And Number of Columns)
df.shape
Out[13]:
(148654, 13)
In [14]:
#4.  Getting Information About Our Dataset Like Total Number Rows, Total Number of Columns, 
#Datatypes of Each Column And  Memory Requirement
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 148654 entries, 0 to 148653
Data columns (total 13 columns):
 #   Column            Non-Null Count   Dtype  
---  ------            --------------   -----  
 0   Id                148654 non-null  int64  
 1   EmployeeName      148654 non-null  object 
 2   JobTitle          148654 non-null  object 
 3   BasePay           148045 non-null  float64
 4   OvertimePay       148650 non-null  float64
 5   OtherPay          148650 non-null  float64
 6   Benefits          112491 non-null  float64
 7   TotalPay          148654 non-null  float64
 8   TotalPayBenefits  148654 non-null  float64
 9   Year              148654 non-null  int64  
 10  Notes             0 non-null       float64
 11  Agency            148654 non-null  object 
 12  Status            0 non-null       float64
dtypes: float64(8), int64(2), object(3)
memory usage: 14.7+ MB
In [15]:
#5. Check Null Values In The Dataset
df.isnull().sum()
Out[15]:
Id                       0
EmployeeName             0
JobTitle                 0
BasePay                609
OvertimePay              4
OtherPay                 4
Benefits             36163
TotalPay                 0
TotalPayBenefits         0
Year                     0
Notes               148654
Agency                   0
Status              148654
dtype: int64
In [16]:
#5. Check Null Values In The Dataset
df.isna().sum()
Out[16]:
Id                       0
EmployeeName             0
JobTitle                 0
BasePay                609
OvertimePay              4
OtherPay                 4
Benefits             36163
TotalPay                 0
TotalPayBenefits         0
Year                     0
Notes               148654
Agency                   0
Status              148654
dtype: int64
In [22]:
#6. Drop ID, Notes, Agency, and Status Columns
#Syntax:   dataframe.drop(columns=["col name1","colname2"....],inplace=True)
df.drop(columns=["Id","Notes","Agency","Status"],inplace=True)
In [23]:
print(df)
             EmployeeName                                        JobTitle  \
0          NATHANIEL FORD  GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY   
1            GARY JIMENEZ                 CAPTAIN III (POLICE DEPARTMENT)   
2          ALBERT PARDINI                 CAPTAIN III (POLICE DEPARTMENT)   
3       CHRISTOPHER CHONG            WIRE ROPE CABLE MAINTENANCE MECHANIC   
4         PATRICK GARDNER    DEPUTY CHIEF OF DEPARTMENT,(FIRE DEPARTMENT)   
...                   ...                                             ...   
148649      Roy I Tillery                                       Custodian   
148650       Not provided                                    Not provided   
148651       Not provided                                    Not provided   
148652       Not provided                                    Not provided   
148653          Joe Lopez                      Counselor, Log Cabin Ranch   

          BasePay  OvertimePay   OtherPay  Benefits   TotalPay  \
0       167411.18         0.00  400184.25       NaN  567595.43   
1       155966.02    245131.88  137811.38       NaN  538909.28   
2       212739.13    106088.18   16452.60       NaN  335279.91   
3        77916.00     56120.71  198306.90       NaN  332343.61   
4       134401.60      9737.00  182234.59       NaN  326373.19   
...           ...          ...        ...       ...        ...   
148649       0.00         0.00       0.00       0.0       0.00   
148650        NaN          NaN        NaN       NaN       0.00   
148651        NaN          NaN        NaN       NaN       0.00   
148652        NaN          NaN        NaN       NaN       0.00   
148653       0.00         0.00    -618.13       0.0    -618.13   

        TotalPayBenefits  Year  
0              567595.43  2011  
1              538909.28  2011  
2              335279.91  2011  
3              332343.61  2011  
4              326373.19  2011  
...                  ...   ...  
148649              0.00  2014  
148650              0.00  2014  
148651              0.00  2014  
148652              0.00  2014  
148653           -618.13  2014  

[148654 rows x 9 columns]
In [24]:
df.shape
Out[24]:
(148654, 9)
In [25]:
df.columns
Out[25]:
Index(['EmployeeName', 'JobTitle', 'BasePay', 'OvertimePay', 'OtherPay',
       'Benefits', 'TotalPay', 'TotalPayBenefits', 'Year'],
      dtype='object')
In [26]:
#7. Get Overall Statistics About The Dataframe
df.describe() # or df.describe(include="all") or df.describe(include="object")
Out[26]:
BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
count 148045.000000 148650.000000 148650.000000 112491.000000 148654.000000 148654.000000 148654.000000
mean 66325.448840 5066.059886 3648.767297 25007.893151 74768.321972 93692.554811 2012.522643
std 42764.635495 11454.380559 8056.601866 15402.215858 50517.005274 62793.533483 1.117538
min -166.010000 -0.010000 -7058.590000 -33.890000 -618.130000 -618.130000 2011.000000
25% 33588.200000 0.000000 0.000000 11535.395000 36168.995000 44065.650000 2012.000000
50% 65007.450000 0.000000 811.270000 28628.620000 71426.610000 92404.090000 2013.000000
75% 94691.050000 4658.175000 4236.065000 35566.855000 105839.135000 132876.450000 2014.000000
max 319275.010000 245131.880000 400184.250000 96570.660000 567595.430000 567595.430000 2014.000000
In [27]:
 df.describe(include="all")
Out[27]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
count 148654 148654 148045.000000 148650.000000 148650.000000 112491.000000 148654.000000 148654.000000 148654.000000
unique 110811 2159 NaN NaN NaN NaN NaN NaN NaN
top Kevin Lee Transit Operator NaN NaN NaN NaN NaN NaN NaN
freq 13 7036 NaN NaN NaN NaN NaN NaN NaN
mean NaN NaN 66325.448840 5066.059886 3648.767297 25007.893151 74768.321972 93692.554811 2012.522643
std NaN NaN 42764.635495 11454.380559 8056.601866 15402.215858 50517.005274 62793.533483 1.117538
min NaN NaN -166.010000 -0.010000 -7058.590000 -33.890000 -618.130000 -618.130000 2011.000000
25% NaN NaN 33588.200000 0.000000 0.000000 11535.395000 36168.995000 44065.650000 2012.000000
50% NaN NaN 65007.450000 0.000000 811.270000 28628.620000 71426.610000 92404.090000 2013.000000
75% NaN NaN 94691.050000 4658.175000 4236.065000 35566.855000 105839.135000 132876.450000 2014.000000
max NaN NaN 319275.010000 245131.880000 400184.250000 96570.660000 567595.430000 567595.430000 2014.000000
In [28]:
df.describe(include="object")
Out[28]:
EmployeeName JobTitle
count 148654 148654
unique 110811 2159
top Kevin Lee Transit Operator
freq 13 7036
In [31]:
#8. Find Occurrence of The Employee Names  (Top 10)
	#df["Employee Names"].value_counts()
df["EmployeeName"].value_counts().head(10)
Out[31]:
EmployeeName
Kevin Lee       13
Richard Lee     11
Steven Lee      11
William Wong    11
Stanley Lee      9
KEVIN LEE        9
Michael Wong     9
John Chan        9
Victor Lee       8
DAVID WONG       8
Name: count, dtype: int64
In [37]:
#9. Find The Number of Unique Job Titles
df["JobTitle"].nunique()
Out[37]:
2159
In [38]:
#Extract Question.display The names of Unique Job Titles
df["JobTitle"].unique()
Out[38]:
array(['GENERAL MANAGER-METROPOLITAN TRANSIT AUTHORITY',
       'CAPTAIN III (POLICE DEPARTMENT)',
       'WIRE ROPE CABLE MAINTENANCE MECHANIC', ..., 'Conversion',
       'Cashier 3', 'Not provided'], dtype=object)
In [40]:
#10.Total Number of Job Titles Contain Captain
df[df["JobTitle"].str.contains("CAPTAINS")]
Out[40]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
In [42]:
df[df["JobTitle"].str.contains("CAPTAINS",case=False)]
Out[42]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
In [43]:
df[df["JobTitle"].str.contains("CAPTAINS",case=False)].count()
Out[43]:
EmployeeName        0
JobTitle            0
BasePay             0
OvertimePay         0
OtherPay            0
Benefits            0
TotalPay            0
TotalPayBenefits    0
Year                0
dtype: int64
In [44]:
df[df["JobTitle"].str.contains("CAPTAIN",case=False)].count()
Out[44]:
EmployeeName        552
JobTitle            552
BasePay             551
OvertimePay         552
OtherPay            552
Benefits            411
TotalPay            552
TotalPayBenefits    552
Year                552
dtype: int64
In [45]:
df[df["JobTitle"].str.contains("CAPTAIN",case=False)]
Out[45]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
1 GARY JIMENEZ CAPTAIN III (POLICE DEPARTMENT) 155966.02 245131.88 137811.38 NaN 538909.28 538909.28 2011
2 ALBERT PARDINI CAPTAIN III (POLICE DEPARTMENT) 212739.13 106088.18 16452.60 NaN 335279.91 335279.91 2011
11 PATRICIA JACKSON CAPTAIN III (POLICE DEPARTMENT) 99722.00 87082.62 110804.30 NaN 297608.92 297608.92 2011
17 SEBASTIAN WONG CAPTAIN, EMERGENCYCY MEDICAL SERVICES 140546.87 119397.26 18625.08 NaN 278569.21 278569.21 2011
22 GEORGE GARCIA CAPTAIN, FIRE SUPPRESSION 140546.88 93200.58 39955.25 NaN 273702.71 273702.71 2011
... ... ... ... ... ... ... ... ... ...
116604 Gregory L Stewart Captain, Fire Suppression 73355.21 18517.18 49917.73 25608.77 141790.12 167398.89 2014
120867 Michael J Moran Captain 3 7660.00 1496.09 126560.36 2189.51 135716.45 137905.96 2014
122361 Michael V Rolovich Captain, Fire Suppression 0.00 0.00 130320.75 0.00 130320.75 130320.75 2014
126588 Stephen M Tittel Captain 3 68491.89 0.00 23721.91 19020.79 92213.80 111234.59 2014
132232 Jeanne M Seyler Captain, Fire Suppression 61039.43 2285.30 7548.29 20113.76 70873.02 90986.78 2014

552 rows × 9 columns

In [46]:
len(df[df["JobTitle"].str.contains("CAPTAIN",case=False)])
Out[46]:
552
In [47]:
df[df["JobTitle"].str.contains("CAPTAIN",case=False)].count()
Out[47]:
EmployeeName        552
JobTitle            552
BasePay             551
OvertimePay         552
OtherPay            552
Benefits            411
TotalPay            552
TotalPayBenefits    552
Year                552
dtype: int64
In [48]:
#11. Display All the Employee Names From Fire Department
df[df["JobTitle"].str.contains("fire",case=False)]['EmployeeName']
Out[48]:
4            PATRICK GARDNER
6                  ALSON LEE
8             MICHAEL MORRIS
9         JOANNE HAYES-WHITE
10             ARTHUR KENNEY
                 ...        
145956      Kenneth C Farris
147556         Edward A Dunn
148021        Kari A Johnson
148209          Sheryl K Lee
148554       Lawrence F Gatt
Name: EmployeeName, Length: 5879, dtype: object
In [49]:
df[df["JobTitle"].str.contains("fire",case=False)]['EmployeeName'].count()
Out[49]:
5879
In [56]:
#12. Find Minimum, Maximum, and Average BasePay
df['BasePay'].describe().agg(["max","mean","min"])
Out[56]:
max     319275.010000
mean     96191.348042
min       -166.010000
Name: BasePay, dtype: float64
In [57]:
df[df["EmployeeName"]=="Not Provided"]
Out[57]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
13797 Not Provided PUBLIC SAFETY COMMUNICATIONS DISPATCHER 57963.39 19683.91 4373.86 NaN 82021.16 82021.16 2011
44151 Not Provided Public SafetyComm Disp 82196.52 25934.20 3752.49 38024.3 111883.21 149907.51 2012
In [58]:
df['EmployeeName']=df["EmployeeName"].replace('Not Provided',np.NaN)
In [59]:
df[df["EmployeeName"]=="Not Provided"]
Out[59]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
In [61]:
df.loc[44151]
Out[61]:
EmployeeName                           NaN
JobTitle            Public SafetyComm Disp
BasePay                           82196.52
OvertimePay                        25934.2
OtherPay                           3752.49
Benefits                           38024.3
TotalPay                         111883.21
TotalPayBenefits                 149907.51
Year                                  2012
Name: 44151, dtype: object
In [75]:
#4. Drop The Rows Having 4 Missing Values
df.isnull().sum(axis=1)==4#---boolean array
Out[75]:
0         False
1         False
2         False
3         False
4         False
          ...  
148649    False
148650     True
148651     True
148652     True
148653    False
Length: 148654, dtype: bool
In [76]:
df[df.isnull().sum(axis=1)==4]
Out[76]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
148646 Not provided Not provided NaN NaN NaN NaN 0.0 0.0 2014
148650 Not provided Not provided NaN NaN NaN NaN 0.0 0.0 2014
148651 Not provided Not provided NaN NaN NaN NaN 0.0 0.0 2014
148652 Not provided Not provided NaN NaN NaN NaN 0.0 0.0 2014
In [78]:
#df.drop(df[df.isnull().sum(axis=1)==5],axis=0)--gives KeyErro
In [81]:
df.drop(df[df.isnull().sum(axis=1)==4].index,axis=0,inplace=True)
In [82]:
df[df.isnull().sum(axis=1)==4]
Out[82]:
EmployeeName JobTitle BasePay OvertimePay OtherPay Benefits TotalPay TotalPayBenefits Year
In [83]:
len(df[df.isnull().sum(axis=1)==4])
Out[83]:
0
In [84]:
#15. Find Job Title of ALBERT PARDINI
df[df["EmployeeName"]=="ALBERT PARDINI"]["JobTitle"]
Out[84]:
2    CAPTAIN III (POLICE DEPARTMENT)
Name: JobTitle, dtype: object
In [ ]: